@media screen and (max-width: 768px) {
	.-w-more_btn a, .-w-more_btn a span {
		transition: none !important;
	}
}/*common_css*/
@font-face {
    font-family: 'icomoon';
    src:  url('/fonts/icomoon.eot?4b5hyb');
    src:  url('/fonts/icomoon.eot?4b5hyb#iefix') format('embedded-opentype'),
    url('/fonts/icomoon.ttf?4b5hyb') format('truetype'),
    url('/fonts/icomoon.woff?4b5hyb') format('woff'),
    url('/fonts/icomoon.svg?4b5hyb#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

[class^="icon-"], [class*=" icon-"] {
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Box sizingの定義 */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* デフォルトのpaddingを削除 */
ul,
li,
ul[class],
ol[class] {
    padding: 0;
}

/* デフォルトのmarginを削除 */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
ul,
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

/* bodyのデフォルトを定義 */
body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

/* class属性を持つul、ol要素のリストスタイルを削除 */
ul[class],
ol[class] {
    list-style: none;
}

/* classを持たない要素はデフォルトのスタイルを取得 */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* img要素の扱いを簡単にする */
img {
    max-width: 100%;
    display: block;
}

/* article要素内の要素に自然な流れとリズムを定義 */
article > * + * {
    margin-top: 1em;
}

/* inputやbuttonなどのフォントは継承を定義 */
input,
button,
textarea,
select {
    font: inherit;
}

/***幅指定***/
[data-w-width] {
    max-width: 100%;
}

/*コンテンツ幅での設置*/
[data-w-width="1"] {
    width: 1170px;
    width:1170px;
    margin: 0 auto;
}
@media (max-width: 1169px) {
    [data-w-width="1"] {
        width: calc(100% - 5%);
    } 
}
@media (max-width: 768px) {
    [data-w-width="1"] {
        width: calc(100% - 12%);
    } 
}
/*リソース設定無い場合とリソース設定がある場合。*/
/*margin設定はデザインによって変更OK*/

/*ウィンドウ幅での設置*/
[data-w-width="0"] {
    width: 100%;
}

/***基本設定***/
html {
    font-size: 62.5%;
}
/*パーツ内ではremで余白やフォントサイズの指定を行うため、この数値*/

body {
    background: #ffffff;
    background:#f7f7f7;
    color: #313131;
    color:#313131;
    line-height: 1.6;
    font-size: 1.6rem;
    font-feature-settings: "palt";
    -webkit-text-size-adjust: 100%;
}
@media (max-width: 768px) {
    body {
        font-size:3.5vw;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



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

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


/*見出し設定*/
.-w-ttl_wrap {
    text-align: center;
}
.-w-section_inner h3.-w-general{
    text-align: center;
}
span.-w-general,
.-w-ttl-en.-w-font_en,
.-w-general .-w-font_en,
.-w-ttl-en.-w-font_en {
    font-size: 4.8rem;
    margin-bottom:1.0rem;
    display: block;
    line-height: 1.0;
    color:#313131;
    color:rgba(49,49,49,1);
}
h2.-w-general{
    font-size: 2.2rem;
    margin-bottom: 3.0rem;
    letter-spacing: 0px;
    color:#313131;
    color:rgba(49,49,49,1);
}
h3.-w-general{
    font-size: 2.0rem;
    margin-bottom: 3.0rem;
    letter-spacing: 0px;
    color:#EA7C5D;
    color:rgba(142,153,150,1);
}
h4.-w-general {
    font-size: 2.0rem;
    color:#313131;
    color:rgba(49,49,49,1);
    margin-bottom: 1.5rem;
}
[data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] .-w-wrapper .-w-ttl-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 1.0rem;
}
[data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] h2.-w-general .-w-font_title2{
    letter-spacing: 0;
}
[data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] h3.-w-general{
    letter-spacing: 0;
}
@media (max-width: 1020px) and (min-width: 768px) {
    h2.-w-general {
        font-size: 2.1rem;
    }
    h3.-w-general{
        font-size: 2.05rem;
        letter-spacing: 0;
    }
    h4.-w-general {
        font-size: 1.9rem;
    }
    [data-lib="2578"] table tr th {
        width:20%!important;
    }
}
@media (max-width: 768px) {
    .-w-ttl_wrap {
        text-align: center;
    }
    .-w-section_inner h3.-w-general{
        text-align: left;
    }
    span.-w-general,
    .-w-ttl-en.-w-font_en,
    .-w-general .-w-font_en,
    .-w-ttl-en.-w-font_en {
        font-size: 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;
    }
    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(109,191,165,1);
    color:rgba(255,255,255,1);
    border-color:rgba(109,191,165,1);
    font-weight: 500;
}
.-w-more_btn a.current,
.-w-more_btn a:hover{
    opacity: 1;
    background-color:#ffffff;
    color:#ff6600;
    color:rgba(109,191,165,1);
    background-color:rgba(255,255,255,1);
}
@media (max-width: 768px) {
    .-w-more_btn a{
        padding: 15px 10px;
        min-width: 100%;
        font-size: 4vw;
    }
}

.-w-more_btn a span,
.-w-contact_btn a > span > span {
    position: relative;
    z-index: 2;
    color:inherit;
}
.-w-more_btn a:hover span,
.-w-contact_btn a:hover > span > span {
    color:inherit;
}

/*ajaxフォーム*/
.owlet-form{
    position: relative;
    z-index: 1;
    padding: 5.0rem 0;
    border-bottom: 1px solid #dddddd;
    background-color: #fff;
    color:rgba(49,49,49,1);
    background-color:rgba(247,247,247,1);
}
.owlet-form .alert {
    font-weight: bold;
    color: #ff0000;
    
        color: hsla(0,100%,50%,1);
    
}
.owlet-form .-w-require{
    border-radius: 2px;
    margin-left: 10px;
    font-size: 1.4rem;
    font-weight: normal;
    padding: 5px 8px;
    color:#fff;
    color:rgba(255,255,255,1);
}
.owlet-form .require{
    border-radius: 2px;
    margin-left: 10px;
    font-size: 1.4rem;
    font-weight: normal;
    padding: 5px 8px;
    background : #CE0000;
    
        color: hsla(0,100%,40%,1);
    
    color: #fff;
    
        color: hsla(0,0%,100%,1);
    
}
.owlet-form table{
    width: 1170px;
    width:1170px;
    margin:0 auto;
    margin-bottom: 20px;
    border-collapse: collapse;
}
.owlet-form table tr {
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
}
.owlet-form table tr th {
    background: #cecece;
    background:rgba(109,191,165,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:#6dbfa5;
    background: #ffffff;
    color: #313131;
    width: 70%;
    padding: 15px 20px;
    vertical-align: middle;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    min-width: 785px;
}
.owlet-form .owlet-input-sample{
    font-size: 1.6rem;
    padding: 0 10px;
}
.owlet-form table input,
.owlet-form table select,
.owlet-form table textarea,
.owlet-form table label,
.owlet-form table .input_address{
    font-size:1.6rem;
}
.owlet-form input.owlet-input-tel1 + span,
.owlet-form input.owlet-input-tel2 + span{
    font-size:1.6rem;
}
.owlet-form input[type="text"]{
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
}
.owlet-form input.owlet-input-name-sei[type="text"],
.owlet-form input.owlet-input-name-mei[type="text"]{
    width: 40%;
    padding: 10px;
    margin: 0 10px 0 0;
}
.owlet-form input[type="text"],select {
    min-height: 30px;
    border: 1px solid ;
    border-color: #dddddd;
    border-color:rgba(49,49,49,0.8);
}
.owlet-form input.owlet-input-tel1[type="text"],
.owlet-form input.owlet-input-tel2[type="text"],
.owlet-form input.owlet-input-tel3[type="text"],
.owlet-form input.zip1[type="text"],
.owlet-form input.zip2[type="text"]{
    line-height: 1.2;
    padding: 10px;
    border-radius: 3px;
    min-height: 30px;
    box-sizing: border-box;
    border: 1px solid #dcdcdc;
    width: 115px;
}
.owlet-form textarea {
    min-height: 150px;
    line-height: 1.2;
    padding: 10px;
    border-radius: 3px;
    box-sizing: border-box;
    border: 1px solid #dcdcdc;
    width: 100%;
}
.owlet-form select {
    line-height: 1.2;
    border-radius: 3px;
    min-height: 30px;
    box-sizing: border-box;
    border: 1px solid #dcdcdc;
    width: 180px;
}
.owlet-form .owlet-input-name-sei,
.owlet-form .owlet-input-name-mei {
    width: 90px;
    margin: 0 5px;
}
.owlet-form input[name="input[email]"],
.owlet-form input[name="input[email_confirm]"] {
        
}
.owlet-form .zip1,.owlet-form .zip2 {
    width: 60px;
    margin-bottom: 10px;
}
.owlet-form .zip2addr {
    margin-bottom: 10px;
    padding: 10px 13px 6px;
    box-sizing: border-box;
    display: inline-block;
    background:rgba(109,191,165,1);
    color:rgba(255,255,255,1);
}
.owlet-form select.prefectures,
.owlet-form select.city {
    margin: 0 5px 10px 0;
    padding: 10px;
}
.owlet-form .address,
.owlet-form input[name="input[address_address]"],
.owlet-form input[name="input[address_address2]"],
.owlet-form input[name="input[address2_address]"],
.owlet-form input[name="input[address2_address2]"] {
    width: 100%;
    margin-left: 0;
}
.owlet-form .address,
.owlet-form input[name="input[address_address]"] {
    margin-bottom: 5px;
}
.owlet-form .owl-datepicker {
    width: 150px;
    margin-right: 5px;
}
.owlet-form select[name="input[date_hour]"],
.owlet-form select[name="input[date_minute]"] {
    margin-right: 5px;
}
.owlet-form .owlet-input-tel1,
.owlet-form .owlet-input-tel2,
.owlet-form .owlet-input-tel3 {
    width: 60px;
}
.owlet-form .owlet-input-tel2,
.owlet-form .owlet-input-tel3 {
    margin-left: 5px;
}
.owlet-form input[name="input[company_name]"] {
    width: 80%;
    line-height: 1.2;
    padding: 2px;
}
.owlet-form textarea[name="input[text]"] {
    width: 80%;
}
.owlet-form table tr td label {
    display: block;
}
.owlet-form input[name="input[select_etc]"],
.owlet-form input[name="input[radio_etc]"],
.owlet-form input[name="input[check_etc]"] {
    width: 80%;
    margin-top: 5px;
}
.owlet-form .-w-rules-agree {
    text-align: center;
    margin-bottom: 3.0rem;
}
.owlet-form .-w-rules-agree a{
  display: inline-block;
}
.owlet-form input[type="submit"], .owlet-form input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
.owlet-form input[type="button"], .owlet-form select {
    border-radius: 3px;
    min-height: 30px;
    box-sizing: border-box;
    border: 1px solid #dcdcdc;
}
.owlet-form .form_button {
    text-align: center;
}

.owlet-form .form_button input[type="button"],
.owlet-form .owlet-form-confirm a{
    border-radius: 0px;
    cursor: pointer;
    padding: 8px 5px;
    cursor: pointer;
    width:170px;
    font-size: 1.5rem;
}

.owlet-form .form_button input[type="button"]{
    border:1px solid;
    border-color:#6dbfa5;
    
    background-color:#6dbfa5;
    color:#ffffff;
}
.owlet-form .form_button input[type="button"]:hover {
    background-color:#ffffff;
    color:#6dbfa5;
    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:#6dbfa5;
        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:#f7f7f7;
    }
    .owlet-form .-w-rules-agree{
        font-size:1.3rem;
    }
    .owlet-form .-w-form_wrap{
        background: none;
    }
    .owlet-form .-w-require{
        color:#6dbfa5;
    }
}

/*
フォーム 規約
**************************************/
.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%;
    }
}


/*
 フォント
****************************************/











































@media (max-width: 768px) {
    
    /*
     フォント
    ****************************************/
    
    
    
    
    
    
    
    
    
    
    
    
    
    
}

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



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






    /*英語見出しアイコン*/
    .-w-general.-w-font_en {
        background: url(/_img/ja/resource/9191/icon_ttl/) no-repeat center top;
        background-size: 50px;
        padding-top: 50px;
        margin-bottom:0!important;
    }
    [data-lib-uuid="39b5aae9-779f-4dbe-b19f-6f2c4da60b5f"] .-w-general .-w-font_en {
        background: url(/_img/ja/resource/9191/icon_ttl/) no-repeat center top;
        background-size: 50px;
        padding-top: 50px;
        margin-bottom:0!important;
    }
    [data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] h2.-w-general .-w-font_en {
        background: url(/_img/ja/resource/9191/icon_ttl/) no-repeat 60px top;
        background-size: 50px;
        padding-top: 50px;
        margin-bottom:1.0rem;
    }
    [data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] h2.-w-general {
        font-weight: 600;
    }
    [data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] .-w-ttl-en.-w-font_en{
        background: url(/_img/ja/resource/9191/icon_ttl/) no-repeat center top;
        background-size: 50px;
        padding-top: 50px;
        margin-bottom:1.0rem;
        margin-right: 0;
    }
    .-w-ttl-en.-w-font_en{
        background: url(/_img/ja/resource/9191/icon_ttl/) no-repeat center top;
        background-size: 50px;
        padding-top: 50px;
        margin-bottom:1.0rem;
        margin-right: 0;
    }
    /*h3見出しアイコン*/
    h3.-w-general {
        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;
    }
    .-w-content h3.-w-general {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .-w-content h3.-w-general:before,
    .-w-content h3.-w-general:after {
        display: none;
    }
    @media (max-width: 768px) {
        .-w-general.-w-font_en {
            text-align: center!important;
            margin-bottom:1.0rem!important;
        }
        [data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] h2.-w-general .-w-font_en {
            background: url(/_img/ja/resource/9191/icon_ttl/) no-repeat center top;
            text-align: center;
            background-size: 50px;
            padding-top: 50px;
            margin-bottom:1.0rem;
        }
        [data-lib-uuid="4e2deb4d-ce40-46c8-a981-fa597c617b16"] h2.-w-general .-w-font_en {
            background: url(/_img/ja/resource/9191/icon_ttl/) no-repeat center top;
            background-size: 50px;
            padding-top: 50px;
            margin-bottom:0!important;
        }
        h3.-w-general {
            -webkit-box-pack: start;
            -ms-flex-pack: start;
            justify-content: flex-start;
        }
    }
    h3.-w-general:before,
    h3.-w-general:after {
        content: '';
        height: 1px;
        background:#8e9996;
        display: block;
        width: 80px;
        margin: 0 auto;
    }
    h3.-w-general:before {
        margin-right: .8em;
    }
    h3.-w-general:after {
        margin-left: .8em;
    }
    @media (max-width: 768px) {
        h3.-w-general:before,
        h3.-w-general:after {
            width: 1em;
            content: none;
        }
        [data-lib-uuid="a4ade1d2-b495-4ce9-aaf4-e5b5d3155cbc"] h3.-w-general {
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }
    }
    /*h3見出しアイコン　黒透過時に使用。uuidを変えて*/
    [data-lib-uuid="3c9a323e-4072-497a-a01a-310878ef92a6"] .-w-section_inner h3.-w-general:before,
    [data-lib-uuid="3c9a323e-4072-497a-a01a-310878ef92a6"] .-w-section_inner h3.-w-general:after {
        border-color:#ffffff!important;
    }
    
    /*アクセスの調整*/
    [data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] h3.-w-general {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: 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-access-wrapper h3.-w-general:before,
    [data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] .-w-access-wrapper h3.-w-general:after {
        display: none;
    }
    @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:1.0rem!important;
        }
        [data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] .-w-ttl-wrapper .-w-en {
            background: url(/_img/ja/resource/9191/icon_ttl/) no-repeat center top;
            background-size: 50px;
            padding-top: 30px;
            margin-bottom:0!important;
        }
    }
    @media (max-width: 768px) {
        [data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] .-w-ttl-wrapper .-w-en {
            background: url(/_img/ja/resource/9191/icon_ttl/) no-repeat center top;
            background-size: 50px;
            padding-top: 30px;
            margin-bottom:0!important;
        }
        [data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] .-w-left {
            text-align: center;
        }
        [data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] .-w-summary {
            width:100%;
        }
    
        [data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] h2.-w-general .-w-font_title2{
            line-height:1.5
        }
        h3.-w-general {
        }
        [data-lib-uuid="b3fade74-b018-4ba9-a23e-279b51d8051b"] .-w-box span {
            font-size: 10.0vw;
        }
        [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 {
            font-size: 6.0vw;
            text-align: left;
            line-height: 1.5;
        }
        [data-lib-uuid="9ea8d087-d13e-4c77-951e-6b4ec872d51a"] .-w-blog_main h3.-w-general {
            font-size: 3.5vw;
        }
    }






















/*ボタン*/



























    /*ボタン12*/
.-w-more_btn{
    margin-top:3.0rem;
    text-align: center;
}    
#foot_fixed .-w-contact_btn a,
.-w-more_btn a {
    min-width: 225px;
    font-weight: 500;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 12px 20px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    border: 2px solid;
    background-color: #f7f7f7 !important;
    color: #6dbfa5 !important;
    border-color: none !important;
}
[data-lib-uuid="44a1a35d-7f8d-4245-b7b4-c745739912f3"] #foot_fixed table .-w-contact_btn a{
    padding: 18px 5px;
}
#foot_fixed .-w-contact_btn a:before,
.-w-more_btn a:before {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    content: '';
    -webkit-transition: all .3s;
    transition: all .3s;
    border: 1px solid;
    border-color:rgba(109,191,165,1);
}
.-w-more_btn a.current:before,
#foot_fixed .-w-contact_btn a:hover:before,
.-w-more_btn a:hover:before {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.-w-more_btn a span.icon-arrow::before,
.-w-more_btn a span.material-icons::before,
#foot_fixed table td .-w-contact_btn span.material-icons::before {
    display: none!important;
}
@media (max-width: 768px) {
    .-w-more_btn a{
      padding: 15px 10px;
      min-width: 100%;
      font-size: 4vw;
    }
}













/*widget:f7483bc9-f72d-4123-85d6-b819c4a6a082*/[data-lib="641"]{background: none;
	color:#ffffff;
	padding:0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1004;
	min-height: 90px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;}[data-lib="641"]: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-events: none;
	left: 0px;
	top: 0;}[data-lib="641"].-w-navfixed_off{position: relative;}[data-lib="641"].fixed:after{height: 100%;
	background:rgba(0,0,0,0.4);}[data-lib="641"] [data-w-width="0"]{width: 95%;}[data-lib="641"] .-w-wrapper{margin:0 auto;
	position: relative;
	z-index: 1;}[data-lib="641"] .-w-head_main{display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;}[data-lib="641"] a{color:#ffffff;
	text-decoration: none;}[data-lib="641"] a:hover{text-decoration: none;}[data-lib="641"] .-w-h1-wrap{margin-left: auto;
	margin-top: 1rem;}[data-lib="641"] .-w-h1-wrap h1{font-size:1.2rem;
	line-height: 1.0;
	font-weight: 500;
	text-align: right;
	margin-left:1rem;
	color: #ffffff;}[data-lib="641"] .-w-sp{display: none;}[data-lib="641"] .-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="641"] .-w-tel{position: relative;
	font-size: 26px;
	line-height: 1;
	padding-left: 26px;
	margin: 0 1rem 0 0;}[data-lib="641"] .-w-tel svg{display: block;
	position: absolute;
	fill: #ffffff;
	width: 22px;
	height: 22px;
	top: calc(50% - 11px);
	left: 0;}[data-lib="641"] .-w-contact a{display: block;
	text-align: center;
	min-width: 150px;
	background: #ffffff;
	background: #ffffff;
	color:#6dbfa5;
	padding: 5px 10px;
	font-size: 1.4rem;
	transition: 0.2s ease-in-out;
	text-shadow: none;}[data-lib="641"] .-w-contact a:hover{opacity: 0.8;}[data-lib="641"] .-w-translate svg{margin: 0% auto 0;
	fill: #ffffff;}[data-lib="641"] .-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;
	z-index: 1111;}[data-lib="641"] .-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="641"] .-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: 310px;
	max-height: 90px;}[data-lib="641"] .-w-logo a{display: block;}[data-lib="641"] .-w-logo img{padding:0px;
	background:none;
	max-height: 90px;}[data-lib="641"] .-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="641"] .-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 rgba(225,225,225,1);}[data-lib="641"] .-w-gnav ul{display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none;}[data-lib="641"] .-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="641"] .-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 19px;
	font-size: 1.6rem;
	color: #fff;}[data-lib="641"] .-w-gnav ul li a:hover{text-decoration: underline;}[data-lib="641"] .-w-gnav ul li ul li a{padding:10px 25px 10px 10px;
	font-size: 1.4rem;
	text-shadow: none;
	color: #313131;}[data-lib="641"] .-w-menu-item{position: relative;}[data-lib="641"] .-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="641"] .-w-menu-item:hover:before{width: 100%;
	left: 0%;
	transition: 0.2s ease-in-out;}[data-lib="641"] .-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="641"] .-w-sub-menu .-w-menu-item{display: block;}[data-lib="641"] .-w-sub-menu li{background: #FFF;
	background-color:#f7f7f7;}[data-lib="641"] .-w-sub-menu li a{color: #313131;
	color:#313131;}[data-lib="641"] ul li .-w-sub-menu li a:hover{color: #252525;
	opacity: 0.7;
	color:#6dbfa5;}[data-lib="641"] .-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="641"] .-w-menu-item:hover .-w-sub-menu{max-height: 320px;
	width: 320px;
	width:max-content;
	opacity: 1;}[data-lib="641"] .-w-menu-item:hover .-w-sub-menu-item a{transition: 0.15s ease all;}[data-lib="641"] .-w-menu-item:hover .-w-sub-menu-item{-webkit-transform: translateY(0px);
	transform: translateY(0px);
	opacity: 1;
	visibility: visible;
	display: block;}[data-lib="641"] .-w-menu-item:hover .-w-sub-menu-item:first-child{transition-delay: 0.15s;}[data-lib="641"] .-w-menu-item:hover .-w-sub-menu-item:nth-child(2){transition-delay: 0.30s;}[data-lib="641"] .-w-menu-item:hover .-w-sub-menu-item:nth-child(3){transition-delay: 0.45s;}[data-lib="641"] .-w-menu-item:hover .-w-sub-menu-item:nth-child(4){transition-delay: 0.6s;}[data-lib="641"] .-w-menu-item:hover .-w-sub-menu-item:nth-child(5){transition-delay: 0.75s;}[data-lib="641"] .-w-menu-item:hover .-w-sub-menu-item:nth-child(n + 6){transition-delay: 0.90s;}[data-lib="641"] .-w-sub-menu-item + .-w-sub-menu-item{border-top: 1px solid #313131;}[data-lib="641"] .-w-sub-menu-item{position: relative;}[data-lib="641"] .-w-sub-menu-item:after{content:'>';
	position: absolute;
	color: #313131;
	color:#313131;
	;
	right: 0;
	top:50%;
	transform: translateY(-50%);
	margin-right: 1rem;
	font-size: 0.8em;
	text-shadow: none;}[data-lib="641"] .-w-wrap{width: 100%;}[data-lib="641"] .-w-gnav ul li.-w-menu-item:first-of-type:after{display: none;}[data-lib="641"] #google_translate_element .goog-te-gadget img{display: inline-block;}[data-lib="641"] .-w-translate_li{width: 34px;
	height: 34px;
	margin-left: 15px;}[data-lib="641"] .-w-translate_li .-w-translate{width: 100%;
	height: 100%;
	position: relative;
	top: 0;
	right: 0;}[data-lib="641"] .-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="641"] #google_translate_element{position: relative;
	height: 100%;
	width: 100%;
	overflow: hidden;
	opacity: 0;
	z-index: 1;}[data-lib="641"] #google_translate_element:hover{cursor: pointer;}[data-lib="641"] .skiptranslate.goog-te-gadget{height: 100%;
	width: 100%;}[data-lib="641"] #google_translate_element .skiptranslate > div{display: block !important;
	height: 100%;
	width: 100%;}[data-lib="641"] #google_translate_element .skiptranslate > span{display: none;}[data-lib="641"] #google_translate_element select{color: #333 !important;
	cursor: pointer;
	margin: 0;
	height: 100%;
	width: 100%;
	-webkit-appearance: button;
	appearance: button;}[data-lib="641"] .-w-translate_li .-w-translate svg{width: 34px;
	fill: #ffffff;}@media (max-width: 1023px){[data-lib="641"]{min-height: 90px;}[data-lib="641"] .-w-pc{display: none;}[data-lib="641"] .-w-sp{display: block;}[data-lib="641"] .-w-sp-menu-btn{top: 0;
	right: 0;}[data-lib="641"] .-w-sp-menu-btn input{position: fixed;
	opacity: 0;}[data-lib="641"] .-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="641"] .-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="641"] .-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="641"] .-w-sp-menu-btn label .-w-burger::before,[data-lib="641"] 
.-w-sp-menu-btn label .-w-burger .-w-bar,[data-lib="641"] 
.-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="641"] .-w-sp-menu-btn label .-w-burger .-w-bar{top: 45%;}[data-lib="641"] .-w-sp-menu-btn label .-w-burger::before{top: 10px;
	transform-origin: top left;}[data-lib="641"] .-w-sp-menu-btn label .-w-burger::after{bottom: 13px;
	transform-origin: bottom left;}[data-lib="641"] .-w-sp-menu-btn input:focus + label .-w-burger,[data-lib="641"] 
.-w-sp-menu-btn label:hover .-w-burger{opacity: .75;}[data-lib="641"] 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.6);
	background:#6dbfa5;}[data-lib="641"] nav#-w-hamburger_menu ul{display:block;
	height:auto;}[data-lib="641"] nav#-w-hamburger_menu > ul{overflow-y: scroll;
	text-align: left;
	width: 100%;
	margin: 0 0 0px;}[data-lib="641"] nav#-w-hamburger_menu > ul > li{width: 95%;
	padding: 1rem 0;
	margin: 0 auto;
	border-top: 1px solid #cccccc;
	list-style: none;}[data-lib="641"] nav#-w-hamburger_menu li > a{margin: .5em 0;
	display: block;
	padding: 0 1em;
	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:rgba(49,49,49,1);
	color:#ffffff;
	text-shadow: none;}[data-lib="641"] nav#-w-hamburger_menu a:hover,[data-lib="641"]  nav#-w-hamburger_menu a:focus{font-weight:700;}[data-lib="641"] [id="navcheck"]:checked + label::before{opacity: 1;
	pointer-events: auto;}[data-lib="641"] [id="navcheck"]:checked + label .-w-burger{right: 10px;}[data-lib="641"] [id="navcheck"]:checked + label .-w-burger::before,[data-lib="641"]  [id="navcheck"]:checked + label .-w-burger::after{width: 141.42%;}[data-lib="641"] [id="navcheck"]:checked + label .-w-burger::before{transform: rotate(45deg) translateY(-50%);
	top: 4px;}[data-lib="641"] [id="navcheck"]:checked + label .-w-burger::after{transform: rotate(-45deg) translateY(50%);
	bottom: 1px;}[data-lib="641"] [id="navcheck"]:checked + label .-w-burger .-w-bar{transform: scale(0.1);
	display:none;}[data-lib="641"] [id="navcheck"]:checked ~ nav#-w-hamburger_menu{transform: translateX(0);}[data-lib="641"] [id="navcheck"]:checked ~ nav#-w-hamburger_menu::before{transform: skewX(15deg) translateX(0);}[data-lib="641"] [id="navcheck"]:checked ~ nav#-w-hamburger_menu a{transform: translateX(0);}[data-lib="641"] [id="navcheck"]:checked ~ main .-w-content{transform: translateX(3em);
	transform-origin: left center;
	-webkit-filter: blur(2px);
	filter: blur(2px);}[data-lib="641"] .-w-visuallyhidden{border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;}[data-lib="641"] .-w-inner{display: none;}[data-lib="641"] .-w-h1-wrap{display: none;}[data-lib="641"] .-w-gnav ul li.-w-menu-item{display: none;}[data-lib="641"] .-w-translate_li{position: relative;
	z-index: 10;
	margin:0 10px 0 0;}[data-lib="641"] .-w-translate_li .-w-translate{margin: 0;
	position: relative;
	right: 0;
	top: 0;
	width: 34px;
	height: 34px;
	filter: brightness(130%);}[data-lib="641"] .-w-header_contents .-w-tel,[data-lib="641"]  .-w-header_contents .-w-contact{display: none;}[data-lib="641"] .-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="641"] .-w-sp .-w-head_middle .-w-tel{left: 25%;}[data-lib="641"] .-w-sp .-w-head_middle .-w-tel a{color:rgba(49,49,49,1);}[data-lib="641"] .-w-sp .-w-head_middle .-w-contact{width: 50%;
	left: 25%;
	position: relative;}[data-lib="641"] .-w-sp .-w-head_middle .-w-contact a{width: 100%;
	margin: 0!important;}[data-lib="641"] .-w-sp nav#-w-hamburger_menu .-w-head_middle .-w-tel{left: 0;
	text-align: center;
	padding: 0;
	margin: 0 0 2rem;}[data-lib="641"] .-w-sp nav#-w-hamburger_menu .-w-head_middle .-w-tel .-w-sp{display: inline;}[data-lib="641"] .-w-sp nav#-w-hamburger_menu .-w-head_middle .-w-contact{left:initial;}[data-lib="641"] .-w-sp nav#-w-hamburger_menu .-w-head_middle .-w-tel span{display: inline-block;}[data-lib="641"] .-w-sp nav#-w-hamburger_menu .-w-head_middle .-w-tel a{font-size: 4.5vw;
	display: inline;
	padding: 0;
	transform: none;}[data-lib="641"] nav#-w-hamburger_menu li > a,[data-lib="641"] 
.-w-sp .-w-head_middle .-w-tel a{color: #ffffff;}[data-lib="641"] .-w-tel svg{position: relative;
	display: inline;}[data-lib="641"] .-w-pc_logo{display:none;}[data-lib="641"] .-w-sp_logo{display:-webkit-box;
	display:-ms-flexbox;
	display:flex;}}@media (min-width: 769px) and (max-width: 1400px){[data-lib="641"] .-w-gnav ul{font-size: 1vw;}[data-lib="641"] .-w-gnav ul li a{font-size: 1.4rem;}[data-lib="641"] .-w-number{font-size: 2.5vw;}}@media (max-width: 768px){[data-lib="641"]{padding:0;
	height:80px;
	min-height: initial;}[data-lib="641"]:after{content: "";
	height: 100%;
	max-height: none;}[data-lib="641"] .-w-pc{display: none;}[data-lib="641"] .-w-sp{display: block;}[data-lib="641"] .-w-gnav ul li.-w-menu-item.-w-pc{display: none;}[data-lib="641"] .-w-h1-wrap{display: none;}[data-lib="641"] .-w-head_main{display:-webkit-box;
	display:-ms-flexbox;
	display:flex;}[data-lib="641"] .-w-header_contents + .-w-header_contents{margin-left: auto;
	margin-right: 0;}[data-lib="641"] .-w-logo{max-width: 62vw;
	max-height: 60px;
	padding: 0;
	box-sizing: border-box;
	z-index: 9999;}[data-lib="641"] .-w-logo img{padding:0;}[data-lib="641"] .-w-tel-wrap{margin-left:inherit;
	margin-top: inherit;
	width:70%;
	margin:0 auto;}[data-lib="641"] .-w-sp-menu-btn label{width: 60px;
	height: 60px;
	top: 0px;}[data-lib="641"] .-w-sp-menu-btn label::before{top: 60px;}[data-lib="641"] nav#-w-hamburger_menu{height:100vh;
	top: -2px;
	padding: 90px 0 10vh;
	justify-content: flex-start;}[data-lib="641"] [id="navcheck"]:checked + label .-w-burger{right: 0px;}[data-lib="641"] .-w-translate_li{margin:0 10px 0 0;}[data-lib="641"] .-w-translate_li .-w-translate{right: 0;
	top: 0;
	z-index: 9999;}[data-lib="641"] nav#-w-hamburger_menu li > a{font-size: 3.4vw;
	margin: .0em 0;}[data-lib="641"] nav#-w-hamburger_menu > ul{margin-bottom: 0px;
	max-height: 65vh;}[data-lib="641"] .-w-sp nav#-w-hamburger_menu .-w-head_middle .-w-tel{left: 0;}[data-lib="641"] .-w-hours{font-size: 4vw;
	padding-top: 1vw;}}/*widget:f5ef860f-2253-4ba7-b25f-dd119e91a239*/[data-lib="814"]{padding-top: 120px;
	color:#313131;}[data-lib="814"] .-w-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: center;
	-ms-flex-pack: center;
	justify-content: center;
	height:400px;}[data-lib="814"] [data-w-width="0"].-w-wrapper{padding:0 2%;}[data-lib="814"] .-w-box span{font-size: 6.8rem;
	line-height: 1;
	margin: 0 0 30px;
	display: block;
	text-shadow: 1px 3px 9px #ffffff, 1px 3px 9px #ffffff, 1px 3px 9px #ffffff, 1px 3px 8px #ffffff, 0px 2px 3px #ffffff, 0px 2px 3px #ffffff;}[data-lib="814"] .-w-box h2{font-size: 2.4rem;
	line-height: 1;
	text-shadow: 1px 3px 9px #ffffff, 1px 3px 9px #ffffff, 1px 3px 9px #ffffff, 1px 3px 8px #ffffff, 0px 2px 3px #ffffff, 0px 2px 3px #ffffff;}[data-lib="814"] .-w-sp{display: none;}@media (max-width: 1169px){[data-lib="814"] .-w-wrapper{width: calc(100% - 12%);}}@media (max-width: 1023px){[data-lib="814"]{padding-top: 90px;}}@media (max-width: 768px){[data-lib="814"]{padding-top:6.0rem;}[data-lib="814"] .-w-wrapper{padding: 70px 0;}[data-lib="814"] .-w-box span{font-size:8.0vw;}[data-lib="814"] .-w-box h2{font-size: 6.0vw;}[data-lib="814"] .-w-sp{display: block;}}[data-instance="333"]{background-image:url(/_img/ja/cms/333/bg_image/_/session//);
	background-size: cover;
	background-position: center center;}/*instance mediea*/@media (max-width: 768px){[data-instance="333"]{background-position: 50% 0;}}/*instance mediea*/@media (max-width: 768px){[data-instance="333"]{background-position: 50% 0;}}/*instance mediea*/@media (max-width: 768px){[data-instance="333"]{background-position: 50% 0;}}/*widget:375f5eb8-1c0e-49d5-be05-480a632bd9eb*/[data-lib="657"]{position: relative;
	z-index: 103;}[data-lib="657"] a[href^="tel:"]{cursor: default;}[data-lib="657"] a[href^="tel:"]:hover{text-decoration: none;}[data-lib="657"] .-w-pc{display: block;}[data-lib="657"] .-w-sp{display: none;}[data-lib="657"] #-w-side_sns{display: none;}[data-lib="657"] #-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="657"] #-w-side_sns ul li{margin-bottom:0;}[data-lib="657"] #-w-side_sns ul li:last-child{margin-bottom:0;}[data-lib="657"] #-w-side_sns.fixed{display: block;
	position: fixed;
	right: 0px;
	bottom: 110px;
	z-index: 100;
	text-align: center;
	width: 50px;
	background: rgba(20,24,34,0.7);
	background-color: hsla(0,0%,0%,0.6);}[data-lib="657"] #-w-side_sns.fixed a{display: block;
	padding: 20px 5px;}@media (max-width: 768px){[data-lib="657"]{z-index: 100;}[data-lib="657"] .-w-pc{display: none;}[data-lib="657"] .-w-sp{display: block;}[data-lib="657"] #-w-side_sns{display: none;}[data-lib="657"] #-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(0,0%,0%,0.6);}[data-lib="657"] #-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="657"] #-w-side_sns ul li{width: 24%;
	padding:0;
	margin-bottom:0;}[data-lib="657"] #-w-side_sns ul li img{margin:0 auto;}[data-lib="657"] #-w-side_sns ul li:last-child{display: none;}}/*widget:69a16d0c-648b-4bda-872c-b422ecb7b119*/[data-lib="1046"]{min-width: auto;
	min-height: 4.2rem;
	box-sizing: border-box;
	font-size: 1.4rem;
	line-height: 1.4;
	margin: 0 auto;
	position: relative;
	z-index: 10;
	top: -4.2rem;
	margin-bottom: -4.2rem;
	background:#f7f7f7;}[data-lib="1046"] ol{margin: 0px;}[data-lib="1046"] ol li:last-child:after{content:none;}[data-lib="1046"] ol li{margin: 0px 4px 0 0;
	display: table-cell;
	vertical-align: middle;
	position: relative;
	color:rgba(49,49,49,1);}[data-lib="1046"] ol li > span{padding: 11px 0;
	display: block;
	text-align:center;}[data-lib="1046"] ol li > a > span{padding: 12px 0 11px;
	display: block;
	text-align:center;}[data-lib="1046"] ol li a{text-decoration: none;
	display: block;
	padding:0 10px 0 30px;
	position:relative;
	min-width: 55px;
	min-height: 37px;
	color:rgba(49,49,49,1);}[data-lib="1046"] ol li:first-child a{padding:0;}[data-lib="1046"] ol li:last-child span{display: block;
	padding:0 10px 0 30px;}[data-lib="1046"] ol li a:hover{text-decoration: none;}[data-lib="1046"] ol li:after{content: ">";
	position: absolute;
	right: -11px;
	top: 12px;
	width: 0;
	height: 0;
	z-index: 2;}[data-lib="1046"] ol li a[itemprop="item"]:after{content: "";
	position: absolute;
	right: -8px;
	top: 0px;
	width: 0;
	height: 0;
	z-index: 1;}@media (max-width: 768px){[data-lib="1046"]{display:none;}}/*widget:da41ff3c-c941-4f33-b2ea-99ca4c2dae8a*/[data-lib="647"]{padding:5.0rem 0 0 0;
	background:url(/_img/ja/resource/3/common_bg/___/) no-repeat center top;
	background-size:cover;
	position: relative;
	z-index: 100;
	overflow-x: hidden;}[data-lib="647"] a[href^="tel:"]{cursor: default;}[data-lib="647"] a[href^="tel:"]:hover{text-decoration: none;}[data-lib="647"] .-w-pc{display: block;}[data-lib="647"] .-w-sp{display: none;}[data-lib="647"]::before{content: "";
	background-color: rgba(0,0,0,0.3);
	background-color: hsla(0,0%,0%,0.3);
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	z-index: -1;
	top:0;}[data-lib="647"] .-w-foot-main{display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-bottom: 5.5rem;}[data-lib="647"] .-w-more_btn a{width: 370px;
	padding: 30px 0;
	font-size: 1.8rem;}[data-lib="647"] .-w-more_btn a span.material-icons{width:100%;}[data-lib="647"] .-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: 18px;
	display: inline-block;}[data-lib="647"] .-w-more_btn a span::before{background-color:#ffffff;
	color:#6dbfa5;}[data-lib="647"] .-w-more_btn a:hover span::before{background-color:#6dbfa5;
	color:#ffffff;}[data-lib="647"] .-w-foot-nav{width:100%;
	padding:45px 0 0;
	background:rgba(0,0,0,0.5);
	background-color: hsla(0,0%,0%,0.5);}[data-lib="647"] .-w-flogo{margin-bottom: 25px;}[data-lib="647"] .-w-flogo a{display: block;}[data-lib="647"] .-w-flogo img{padding:0px;
	background:none;
	object-fit: contain;
	max-width: 300px;}[data-lib="647"] .-w-address{font-size: 2.4rem;
	margin-bottom: 15px;
	color: #ffffff;
	color:#ffffff;}[data-lib="647"] .-w-tel{font-size: 4.8rem;
	line-height: 1.0;}[data-lib="647"] .-w-tel a{color: #ffffff;
	color:#ffffff;
	text-decoration: none;}[data-lib="647"] .-w-time{font-size: 2.0rem;
	letter-spacing: 0.2em;
	color: #ffffff;
	color:#ffffff;}[data-lib="647"] .-w-line-btn{margin-bottom: 10px;}[data-lib="647"] .-w-line-btn-text{font-size: 1.8rem;
	text-align: center;}[data-lib="647"] .-w-fnav{width:780px;
	margin:0 auto;}[data-lib="647"] .-w-fnav ul{display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style:none;}[data-lib="647"] .-w-fnav ul li{margin:0 10px 10px;
	font-size: 1.4rem;}[data-lib="647"] .-w-fnav ul li.-w-link8{display: none;}[data-lib="647"] .-w-fnav ul li a{color: #ffffff;
	text-decoration: none;}[data-lib="647"] .-w-fnav ul li a:hover{color: #ffffff;
	text-decoration: underline;}[data-lib="647"] .-w-copyright{color: #ffffff;
	text-align: center;
	font-size:1.6rem;}[data-lib="647"] .-w-copyright a{color: #ffffff;
	text-decoration: none;}[data-lib="647"] .-w-sp-tel{display: none;}[data-lib="647"] .-w-fixed_off .-w-foot-nav{padding-bottom:5rem;}[data-lib="647"] .-w-fixed_on .-w-foot-nav{padding-bottom:5rem;}[data-lib="647"] .-w-address a{text-decoration: none;
	color:#ffffff;}[data-lib="647"] .-w-address a:hover{color:#6dbfa5;}@media (max-width: 768px){[data-lib="647"] .-w-pc{display: none;}[data-lib="647"] .-w-sp{display: block;}[data-lib="647"] .-w-foot-main{padding:0 2rem;}[data-lib="647"] .-w-address{text-align: center;
	padding: 0 3rem;
	font-size: 3.5vw;}[data-lib="647"] .-w-line-btn-text{font-size: 1.4rem;}[data-lib="647"] .-w-fnav{display: none;}[data-lib="647"] .-w-line-btn img{max-width:60%;
	margin:0 auto;}[data-lib="647"] .-w-foot-nav{position: static;
	background:none;}[data-lib="647"] .-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="647"] .-w-tel{font-size: 9vw;}[data-lib="647"] .-w-tel-wrap{width: 80%;
	margin: 0 auto;
	color:#313131;
	background: url(/_img/ja/cms_parts_library//image/_/) no-repeat left center;
	padding-left: 60px;}[data-lib="647"] .-w-tel-wrap a{color:#313131;
	text-decoration: none;}[data-lib="647"] .-w-tel-wrap a:hover{text-decoration: underline;}[data-lib="647"] .-w-tel-wrap a[href^="tel:"]{cursor: default;}[data-lib="647"] .-w-tel-wrap a[href^="tel:"]:hover{text-decoration: none;}[data-lib="647"] .-w-number{font-size:3.0rem;
	line-height: 1.0;
	margin-bottom: 5px;}[data-lib="647"] .-w-time{font-size:1.4rem;
	margin-bottom:0;}[data-lib="647"] .-w-fixed_on .-w-foot-nav{background: rgba(0, 0, 0, 0.6);
	padding:15px 1rem;
	margin-top: 5.0rem;}[data-lib="647"] .-w-fixed_on .-w-foot-nav .-w-copyright{line-height: 1;
	font-size:1.4rem;}[data-lib="647"] .-w-more_btn{width:100%;}[data-lib="647"] .-w-more_btn a{width: 100%;
	padding: 20px 15px;}}@media (min-width: 769px){[data-lib="647"] .-w-tel{pointer-events: none;}}/*widget:46a1a8d3-d501-4874-ba0f-49d3fdc87292*/[data-lib="933"]{padding:5.0rem 0;
	margin:0 auto;}[data-lib="933"] *{box-sizing:border-box;}[data-lib="933"] .-w-wrapper{width:77.0rem;
	margin:0 auto;}[data-lib="933"] .-w-image{margin-bottom:4.0rem;}[data-lib="933"] .-w-image img{margin:0 auto;}[data-lib="933"] h3.-w-general{margin-bottom:2.0rem;
	font-size: 2.8rem;
	color: rgba(49,49,49,1);}[data-lib="933"] .-w-text{margin: 0 auto 4.0rem;}[data-lib="933"] .-w-text jodit{display: inline-block!important;}[data-lib="933"] .-w-text iframe{max-width: 100%;}[data-lib="933"] table{width: 100%;
	margin: 0 auto 4.0rem;
	border-collapse: collapse;
	border-spacing: 0;}[data-lib="933"] table tr th,[data-lib="933"] table tr td{border-top: 1px solid;
	border-color: #d2d2d2;
	border-color: hsla(0,0%,86%,1);
	padding: 25px 30px;
	vertical-align: top;
	text-align: left;}[data-lib="933"] table tr:last-child th,[data-lib="933"] table tr:last-child td{border-bottom: 1px solid;
	border-color: #d2d2d2;
	border-color: hsla(0,0%,86%,1);}[data-lib="933"] table tr th{width:25%;
	font-weight: 400;
	color:rgba(142,153,150,1);}[data-lib="933"] table tr td{width:75%;}@media (max-width: 1169px){[data-lib="933"] .-w-text{margin: 0 auto 3.0rem;
	width: calc(100% - 6%);}}@media (max-width: 1023px){[data-lib="933"]{padding: 12rem 2rem 5rem;}[data-lib="933"] table tr th,[data-lib="933"] table tr td{width:100%;
	display: block;}[data-lib="933"] table tr:last-child th{border-bottom:0;}}@media (max-width: 900px){[data-lib="933"]{width: 100%;}[data-lib="933"] .-w-wrapper{width:100%;}[data-lib="933"] h3.-w-general{font-size: 2.5rem;}[data-lib="933"] .-w-text{font-size:1.4rem;}}@media (max-width: 768px){[data-lib="933"]{width: calc(100% - 12%);
	padding:10.0rem 0 5.0rem;}[data-lib="933"] .-w-text iframe{margin: 0 auto;}}/*layout:8*/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(247,247,247,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(109,191,165,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:#6dbfa5;
    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(109,191,165,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: #6dbfa5;
    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: #6dbfa5;
    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(109,191,165,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:#6dbfa5;
    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;
}