@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;
}

/* デフォルトの見出し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"] {
    max-width: 90%;
    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%;
}

a[href*="tel:"]{
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  a[href*="tel:"]{
    pointer-events: auto;
  }
}

/***基本設定***/
html {
    font-size: 62.5%;
}
/*パーツ内ではremで余白やフォントサイズの指定を行うため、この数値*/

body {
    background: #ffffff;
    background:#f3f3f3;
    color: #313131;
    color:#313131;
    line-height: 1.8;
    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:#f3f3f3;
}
.-w-txt.-w-background-r {
    color: #000;
    color:#313131;
}
.-w-txt.-w-main {
    color: #001754;
    color:#585958;
}
.-w-txt.-w-main-r {
    color: #fff;
    color:#ffffff;
}
.-w-txt.-w-accent {
    color: #4f0506;
    color:#999999;
}
.-w-txt.-w-accent-r {
    color: #fff;
    color:#ffffff;
}
/*背景色＋テキスト色*/
.-w-bg.-w-background {
    background: #fff;
    background:#f3f3f3;
    color: #000;
    color:#313131;
}
.-w-bg.-w-main {
    background: #001754;
    background:#585958;
    color: #fff;
    color:#ffffff;
}
.-w-bg.-w-accent {
    background: #4f0506;
    background:#999999;
    color: #fff;
    color:#ffffff;
}
/*反転ver*/
.-w-bg.-w-background-r {
    background: #000;
    background:#313131;
    color: #fff;
    color:#f3f3f3;
}
.-w-bg.-w-main-r {
    background: #fff;
    background:#ffffff;
    color: #001754;
    color:#585958;
}
.-w-bg.-w-accent-r {
    background: #fff;
    background:#ffffff;
    color: #4f0506;
    color:#999999;
}
/*hover時背景色指定*/
a.-w-bg.-w-background:hover {
    background: #000;
    background:#313131;
    color: #fff;
    color:#f3f3f3;
}
a.-w-bg.-w-main:hover {
    background: #fff;
    background:#ffffff;
    color: #001754;
    color:#f3f3f3;
}
a.-w-bg.-w-accent:hover {
    background: #fff;
    background:#ffffff;
    color: #4f0506;
    color:#999999;
}
a.-w-bg.-w-background-r:hover {
    background: #fff;
    background:#f3f3f3;
    color: #000;
    color:#313131;
}
a.-w-bg.-w-main-r:hover {
    background: #001754;
    background:#585958;
    color: #fff;
    color:#ffffff;
}
a.-w-bg.-w-accent-r:hover {
    background: #4f0506;
    background:#999999;
    color: #fff;
    color:#ffffff;
}

/***ボーダー色指定***/
.-w-bd.-w-background {
    border-color: #fff;
    border-color:#f3f3f3;
}
.-w-bd.-w-main {
    border-color: #001754;
    border-color:#585958;
}
.-w-bd.-w-accent {
    border-color: #4f0506;
    border-color:#999999;
}
.-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:#f3f3f3;
}
a.-w-bd.-w-bg.-w-main:hover,
a.-w-bd.-w-main-r:hover {
    border-color: #001754;
    border-color:#585958;
}
a.-w-bd.-w-bg.-w-accent:hover,
a.-w-bd.-w-accent-r:hover {
    border-color: #4f0506;
    border-color:#999999;
}


/*見出し設定*/
.-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.2rem;
    margin-bottom:1.0rem;
    display: block;
    line-height: 1.0;
    color:#313131;
    color:rgba(49,49,49,1);
}
h2.-w-general{
    font-size: 2.0rem;
    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(88,89,88,1);
}
h4.-w-general {
    font-size: 2.0rem;
    color:#313131;
    color:rgba(49,49,49,1);
    margin-bottom: 1.5rem;
}
[data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] .-w-wrapper .-w-ttl-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 1.0rem;
}
[data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] h2.-w-general .-w-font_title2{
    letter-spacing: -2px;
}
[data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] h3.-w-general{
    letter-spacing: -2px;
}
@media (max-width: 1020px) and (min-width: 768px) {
    h2.-w-general {
        font-size: 2.1rem;
    }
    h3.-w-general{
        font-size: 2.05rem;
        letter-spacing: 0;
    }
    h4.-w-general {
        font-size: 1.9rem;
    }
    [data-lib="2578"] table tr th {
        width:20%!important;
    }
}
@media (max-width: 768px) {
    .-w-ttl_wrap {
        text-align: center;
    }
    .-w-section_inner h3.-w-general{
        text-align: left;
    }
    span.-w-general,
    .-w-ttl-en.-w-font_en,
    .-w-general .-w-font_en,
    .-w-ttl-en.-w-font_en {
        font-size: 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(153,153,153,1);
    color:rgba(255,255,255,1);
    border-color:rgba(153,153,153,1);
}

.-w-more_btn a.current,
.-w-more_btn a:hover{
    opacity: 1;
    background-color:#ffffff;
    color:#ff6600;
    color:rgba(153,153,153,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(243,243,243,1);
}
.owlet-form .alert {
    font-weight: bold;
    color: #ff0000;
    
        color: hsla(0,100%,50%,1);
    
}
.owlet-form .-w-require{
    border-radius: 2px;
    margin-left: 10px;
    font-size: 1.4rem;
    font-weight: normal;
    padding: 5px 8px;
    color:#fff;
    color:rgba(255,255,255,1);
}
.owlet-form .require{
    border-radius: 2px;
    margin-left: 10px;
    font-size: 1.4rem;
    font-weight: normal;
    padding: 5px 8px;
    background : #CE0000;
    
        color: hsla(0,100%,40%,1);
    
    color: #fff;
    
        color: hsla(0,0%,100%,1);
    
}
.owlet-form table{
    width: 1170px;
    width:1170px;
    margin:0 auto;
    margin-bottom: 20px;
    border-collapse: collapse;
}
.owlet-form table tr {
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
}
.owlet-form table tr th {
    background: #cecece;
    background:rgba(153,153,153,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:#999999;
    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(153,153,153,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(153,153,153,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:#999999;
    font-family:'Zen Kaku Gothic New';
    background-color:#999999;
    color:#ffffff;
}
.owlet-form .form_button input[type="button"]:hover {
    background-color:#ffffff;
    color:#999999;
    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:#999999;
        padding: 0;
        min-width: auto;
    }
    .owlet-form table tr td {
        display: block;
        width: 100%;
        padding: 10px 2%;
        border-bottom: none;
        text-align:left;
        border-bottom-right-radius: initial;
        border-bottom-left-radius: initial;
        min-width: auto;
        background:#f3f3f3;
    }
    .owlet-form .-w-rules-agree{
        font-size:1.3rem;
    }
    .owlet-form .-w-form_wrap{
        background: none;
    }
    .owlet-form .-w-require{
        color:#999999;
    }
}

/*
フォーム 規約
**************************************/
.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;
        
    }
    @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;
        font-weight:400;
    }
    /*MVフォント*/
  .-w-font_title2{
        font-family:'Zen Kaku Gothic New', 'Zen Kaku Gothic New',sans-serif;
        font-style:normal;
        font-weight:500;
    }
    /*英数字フォント*/
  .-w-font_en{
        font-family:'Zen Kaku Gothic New', 'Zen Kaku Gothic New', 'Zen Kaku Gothic New',sans-serif;
        font-style:normal;
        font-weight:900;
    }
    .-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:900;
    }











































@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;
    }
}



/*================================================================*/


















































/*ボタン*/





















.-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: 12px 15px;
    line-height: 1;
    text-align: center;
    min-width: 246px;
    background-color:#ff6600;
    color:#ffffff;
    border-color:#ff6600;
    background-color:rgba(153,153,153,1);
    color:rgba(255,255,255,1);
    border-color:rgba(153,153,153,1);
    font-size: 1.5rem;
    border-radius: 33px;
    overflow: hidden;
}
.-w-more_btn a:hover{
    opacity: 1;
    background-color:#ffffff;
    color:#ff6600;
    color:rgba(153,153,153,1);
    background-color:rgba(255,255,255,1);
}
.-w-more_btn a:before {
    display: block;
    content: "";
    z-index: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100.1% + 4px);
    height: calc(100.1% + 4px);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 1;
    visibility: visible;
    background: #fff;
    background-color:rgba(153,153,153,1);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    transition: all 200ms ease;
    -webkit-transition: all 200ms ease;
}
.-w-more_btn a:after {
    display: block;
    content: "→";
    position: absolute;
    top: 50%;
    right: 5%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 18px;
    line-height: 1;
}
.-w-more_btn a span {
    position: relative;
    z-index: 10;
}
.-w-more_btn a:hover:before {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) scale(0.5);
    -webkit-transform: translate(-50%, -50%) scale(0.5);
}
.-w-more_btn a:hover:after {}
.-w-more_btn a:hover span {}
footer .-w-more_btn a {
    border-radius: 50px;
}
footer .-w-more_btn a span.material-icons::before {
    content: none !important;
}
@media (max-width: 768px) {
    .-w-more_btn a{
      padding: 15px 10px;
      min-width: 100%;
      font-size: 4vw;
    }
}

#foot_fixed .-w-contact_btn{
    text-align: center;
}    
#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:#999999;
    color:#ffffff;
    border-color:#999999;
    font-size: 1.5rem;
    border-radius: 33px;
    overflow: hidden;
}
#foot_fixed .-w-contact_btn a:hover{
    opacity: 1;
    background-color:#ffffff;
    color:#ff6600;
    background-color:#ffffff;
    color:#999999;
}
#foot_fixed .-w-contact_btn a span.material-icon::before {
    background-color:#ffffff;
    color:#999999;
}
#foot_fixed .-w-contact_btn a:hover span.material-icon::before {
    background-color:#999999;
    color:#ffffff;
}
#foot_fixed .-w-contact_btn a:before {
    display: block;
    content: "";
    z-index: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100.1% + 4px);
    height: calc(100.1% + 4px);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 1;
    visibility: visible;
    background: #fff;
    background-color:rgba(153,153,153,1);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    transition: all 200ms ease;
    -webkit-transition: all 200ms ease;
}
#foot_fixed .-w-contact_btn a:after {
    display: block;
    content: "→";
    position: absolute;
    top: 50%;
    right: 5%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 18px;
    line-height: 1;
}
#foot_fixed .-w-contact_btn a span {
    position: relative;
    z-index: 10;
}
#foot_fixed .-w-contact_btn a:hover:before {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) scale(0.5);
    -webkit-transform: translate(-50%, -50%) scale(0.5);
}

@media (max-width: 768px) {
    #foot_fixed tr td .-w-contact_btn a {
        min-width: 100%;
        padding: 9px 0px 8px;
    }
    #foot_fixed table td .-w-contact_btn span{
        font-size:3.0vw;
    }
}































@media (max-width: 768px) {
  .-w-more_btn a {
    min-width: 250px;
  }
}

/* POINTパーツと隣接しているパーツの上部余白調整 */
[data-lib="28209"]:has(.-w-imgright img) + *:not([data-lib='28209']) {
    padding-top: 8rem;
}

@media (width <= 768px) {
  [data-lib='28209']:has(.-w-imgright img) + *:not([data-lib='28209']) {
    padding-top: 2rem;
  }
}
/*layout:182*/*, ::before, ::after {
  box-sizing: border-box
}

::before, ::after {
  text-decoration: inherit;
  vertical-align: inherit
}

html {
  cursor: default;
  line-height: 1.5;
  -moz-tab-size: 4;
  tab-size: 4;
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  word-break: break-word
}

body {
  margin: 0
}

h1 {
  font-size: 2em;
  margin: 0.67em 0
}

dl dl, dl ol, dl ul, ol dl, ul dl {
  margin: 0
}

ol ol, ol ul, ul ol, ul ul {
  margin: 0
}

hr {
  height: 0;
  overflow: visible
}

main {
  display: block
}

nav ol, nav ul {
  list-style: none;
  padding: 0
}

pre {
  font-family: monospace, monospace;
  font-size: 1em
}

a {
  background-color: transparent
}

abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted
}

b, strong {
  font-weight: bolder
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em
}

small {
  font-size: 80%
}

audio, canvas, iframe, img, svg, video {
  vertical-align: middle
}

audio, video {
  display: inline-block
}

audio:not([controls]) {
  display: none;
  height: 0
}

iframe {
  border-style: none
}

img {
  border-style: none
}

svg:not([fill]) {
  fill: currentColor
}

svg:not(:root) {
  overflow: hidden
}

table {
  border-collapse: collapse
}

button, input, select {
  margin: 0
}

button {
  overflow: visible;
  text-transform: none
}

button, [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button
}

fieldset {
  border: 1px solid #a0a0a0;
  padding: 0.35em 0.75em 0.625em
}

input {
  overflow: visible
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal
}

progress {
  display: inline-block;
  vertical-align: baseline
}

select {
  text-transform: none
}

textarea {
  margin: 0;
  overflow: auto;
  resize: vertical
}

[type="checkbox"], [type="radio"] {
  padding: 0
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px
}

::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
  height: auto
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54
}

::-webkit-search-decoration {
  -webkit-appearance: none
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit
}

::-moz-focus-inner {
  border-style: none;
  padding: 0
}

:-moz-focusring {
  outline: 1px dotted ButtonText
}

:-moz-ui-invalid {
  box-shadow: none
}

details {
  display: block
}

dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content
}

dialog:not([open]) {
  display: none
}

summary {
  display: list-item
}

canvas {
  display: inline-block
}

template {
  display: none
}

a, area, button, input, label, select, summary, textarea, [tabindex] {
  -ms-touch-action: manipulation;
  touch-action: manipulation
}

[hidden] {
  display: none
}

[aria-busy="true"] {
  cursor: progress
}

[aria-controls] {
  cursor: pointer
}

[aria-disabled="true"], [disabled] {
  cursor: not-allowed
}

[aria-hidden="false"][hidden] {
  display: initial
}

[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute
}

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  background: #fff;
  line-height: 1;
  margin: auto;
  max-width: 2000px;
}

h1, h2, h3, h4, h5, dl, dt, dd, ul, ol, li {
  font-size: 100%;
  line-height: 1;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

ul, ol, li {
  list-style: none;
}

img {
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.main {
  min-width: 750px;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .main {
    min-width: 100vw;
  }
}

.ctx {
  width: 750px;
  margin: 0 auto;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
@media screen and (max-width: 1000px) {
  .ctx {
    width: 100vw;
  }
}

section {
  position: relative;
  background-color: #fff;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

.btn_wrap01 {
  position: relative;
}
.btn_wrap01 .btn01 {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  top: -26px;
}
@media screen and (max-width: 1000px) {
  .btn_wrap01 .btn01 {
    top: -3.4666666667vw;
  }
}
.btn_wrap01 .btn01 a {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  width: 670px;
  height: 197px;
}
@media screen and (max-width: 1000px) {
  .btn_wrap01 .btn01 a {
    width: 89.3333333333vw;
    height: 26.2666666667vw;
  }
}
.btn_wrap01 .btn01 img {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 736px;
}
@media screen and (max-width: 1000px) {
  .btn_wrap01 .btn01 img {
    width: 98.1333333333vw;
  }
}
.btn_wrap01 .btn02 {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  top: 310px;
  width: 388px;
}
@media screen and (max-width: 1000px) {
  .btn_wrap01 .btn02 {
    top: 41.3333333333vw;
    width: 51.7333333333vw;
  }
}

.btn_wrap02 {
  position: relative;
}
.btn_wrap02 .btn01 {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  top: 698px;
}
@media screen and (max-width: 1000px) {
  .btn_wrap02 .btn01 {
    top: 93.0666666667vw;
  }
}
.btn_wrap02 .btn01 a {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  width: 670px;
  height: 197px;
  top: 26px;
}
@media screen and (max-width: 1000px) {
  .btn_wrap02 .btn01 a {
    width: 89.3333333333vw;
    height: 26.2666666667vw;
    top: 3.4666666667vw;
  }
}
.btn_wrap02 .btn01 img {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 736px;
}
@media screen and (max-width: 1000px) {
  .btn_wrap02 .btn01 img {
    width: 98.1333333333vw;
  }
}
.btn_wrap02 .btn02 {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  top: 1014px;
  width: 388px;
}
@media screen and (max-width: 1000px) {
  .btn_wrap02 .btn02 {
    top: 135.2vw;
    width: 51.7333333333vw;
  }
}

.btn_wrap03 {
  position: relative;
}
.btn_wrap03 .btn01 {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  bottom: 62px;
  width: 530px;
}
@media screen and (max-width: 1000px) {
  .btn_wrap03 .btn01 {
    bottom: 8.2666666667vw;
    width: 70.6666666667vw;
  }
}

.form {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 350%;
}
@media screen and (max-width: 1000px) {
  .form {
    padding-top: 400%;
  }
}
.form iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1000px) {
  .form iframe {
    top: 22%;
    transform: scale(1.4);
  }
}

/*# sourceMappingURL=styles.css.map */