@charset "UTF-8";

/* Windowsでの游ゴシックかすれ回避
---------------------------------------------------- */
@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 100;
}
@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 200;
}
@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 300;
}
@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 400;
}
@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic");
    font-weight: 700;
}

/* 追加フォント
---------------------------------------------------- */
@font-face {
    font-family: "NotoSansJP";
    src: url("../webfonts/NotoSansJP-Regular.otf") format("opentype");
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "NotoSansJP";
    src: url("../webfonts/NotoSansJP-Medium.otf") format("opentype");
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: "NotoSansJP";
    src: url("../webfonts/NotoSansJP-Bold.otf") format("opentype");
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: "Roboto";
    src: url("../webfonts/Roboto-Regular.ttf") format("truetype");
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "Roboto";
    src: url("../webfonts/Roboto-Bold.ttf") format("truetype");
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: "Roboto";
    src: url("../webfonts/Roboto-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "Roboto";
    src: url("../webfonts/Roboto-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* common
---------------------------------------------------- */
body {
    position: relative;
    color: #000;
    margin: 0px;
    font-family: "NotoSansJP", YuGothic, "Yu Gothic", Meiryo, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}
body::after{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 38vw;
    height: 65.7vw;
    background: url(../images/common/bg-top.png) no-repeat top left / cover;
    content: "";
    z-index: -1;
}
body.scroll-prevent{
    position: fixed;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    padding-right: 5px;
}
@media screen and (max-width:767px){
    body {
        font-size: 14px;
    }
    body::after{
        width: 47vw;
        height: 82vw;
    }
}
@media all and (-ms-high-contrast:none){
    *::-ms-backdrop, body{
        font-family:  Meiryo, sans-serif; /* IEでの表記崩れ回避 */
    }
}

main{
    padding-top: 124px;
    overflow: hidden;
}
@media screen and (max-width:1399px){
    main{
        padding-top: 100px;
    }
}
@media screen and (max-width:991px){
    main{
        padding-top: 54px;
    }
}

.bg-blue-left{
    position: relative;
}
.bg-blue-left::after{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: calc(50% - 620px);
    height: 100%;
    background: #104c94;
    content: "";
    z-index: -2;
}
.bg-blue-right{
    position: relative;
}
.bg-blue-right::after{
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: calc(50% - 620px);
    height: 100%;
    background: #104c94;
    content: "";
    z-index: -2;
}
@media screen and (max-width:1399px){
    .bg-blue-left::after{
        width: calc(50% - 585px);
    }
    .bg-blue-right::after{
        width: calc(50% - 585px);
    }
}
@media screen and (max-width:1199px){
    .bg-blue-left::after{
        width: calc(50% - 495px);
    }
    .bg-blue-right::after{
        width: calc(50% - 495px);
    }
}
@media screen and (max-width:991px){
    .bg-blue-left::after{
        width: calc(50% - 375px);
    }
    .bg-blue-right::after{
        width: calc(50% - 375px);
    }
}
@media screen and (max-width:767px){
    .bg-blue-left::after{
        width: calc(50% - 285px);
    }
    .bg-blue-right::after{
        width: calc(50% - 285px);
    }
}

.overlay{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9;
}
.overlay.on{
    display: block;
}

/* common section
---------------------------------------------------- */
.sec-common01{padding: 50px 0;}
.sec-common02{padding: 0px 0 50px;}

/* common ttl
------------------------------------------------------------------*/
.ttl-sec01{
    position: relative;
    padding-top: 60px;
    margin-bottom: 40px;
    text-align: center;
}
.ttl-sec01::after{
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 50px;
    background: #fc172e;
    content: "";
}
.ttl-sec01 .en{
    display: block;
    margin-bottom: 10px;
    font-family: "Roboto";
    font-size: 20px;
    font-weight: bold;
    font-style: italic;
    color: #fc172e;
    line-height: 1;
}
.ttl-sec01 .jp{
    display: block;
    font-size: 40px;
    font-weight: bold;
}
.ttl-sec01 small{
    font-size: 70%;
}
@media screen and (max-width:1399px){
    .ttl-sec01{
        padding-top: 55px;
    }
    .ttl-sec01::after{
        height: 45px;
    }
    .ttl-sec01 .en{
        font-size: 18px;
    }
    .ttl-sec01 .jp{
        font-size: 36px;
    }
}
@media screen and (max-width:1199px){
    .ttl-sec01{
        padding-top: 50px;
    }
    .ttl-sec01::after{
        height: 40px;
    }
    .ttl-sec01 .en{
        font-size: 16px;
    }
    .ttl-sec01 .jp{
        font-size: 32px;
    }
}
@media screen and (max-width:991px){
    .ttl-sec01{
        padding-top: 45px;
    }
    .ttl-sec01::after{
        height: 35px;
    }
    .ttl-sec01 .en{
        font-size: 14px;
    }
    .ttl-sec01 .jp{
        font-size: 28px;
    }
}
@media screen and (max-width:767px){
    .ttl-sec01{
        padding-top: 40px;
        margin-bottom: 30px;
    }
    .ttl-sec01::after{
        height: 30px;
    }
    .ttl-sec01 .jp{
        font-size: 24px;
    }
}

.ttl-sec02{
    position: relative;
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
}
.ttl-sec02::after{
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background: #1c1c1c;
    content: "";
    z-index: -1;
}
.ttl-sec02 span{
    display: inline-block;
    padding: 0 10px;
    background: #fff;
}
@media screen and (max-width:991px){
    .ttl-sec02{
        font-size: 24px;
    }
}
@media screen and (max-width:767px){
    .ttl-sec02{
        font-size: 20px;
    }
}

.ttl-underline{
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    padding-bottom: 5px;
    border-bottom: 1px solid #1c1c1c;
}
@media screen and (max-width:1199px){
    .ttl-underline{
        font-size: 30px;
    }
}
@media screen and (max-width:991px){
    .ttl-underline{
        font-size: 26px;
    }
}
@media screen and (max-width:767px){
    .ttl-underline{
        font-size: 22px;
        margin-bottom: 30px;
    }
}

.ttl-band{
    padding: 15px;
    margin-bottom: 30px;
    background: #1c1c1c;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
}
@media screen and (max-width:991px){
    .ttl-band{
        font-size: 20px;
    }
}
@media screen and (max-width:767px){
    .ttl-band{
        font-size: 18px;
    }
}

.ttl-simple{
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: bold;
}
@media screen and (max-width:991px){
    .ttl-simple{
        font-size: 26px;
    }
}
@media screen and (max-width:767px){
    .ttl-simple{
        font-size: 24px;
    }
}

.ttl-sub{
    font-size: 20px;
    font-weight: bold;
}
@media screen and (max-width:1199px){
    .ttl-sub{
        font-size: 18px;
    }
}
@media screen and (max-width:767px){
    .ttl-sub{
        font-size: 16px;
    }
}

/* box
---------------------------------------------------- */
.box-common{
    position: relative;
    height: 100%;
    padding: 30px;
    border: 1px solid #ccc;
}
.box-common .treat{
    position: absolute;
    top: -30px;
    left: 20px;
    padding: 0 10px;
    background: #fff;
    font-family: "Roboto";
    font-size: 50px;
    font-weight: bold;
    font-style: italic;
    color: #fc172e;
    line-height: 1;
}
.box-common figure{
    margin-bottom: 15px;
}
.box-common .ttl{
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}
.box-common .text{
    line-height: 1.8;
}
@media screen and (max-width:575px){
    .box-common{
        padding: 30px 15px;
    }
}

/* scollbar
---------------------------------------------------- */
::-webkit-scrollbar {
    width: 5px;
    height: 3px;
}
:-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 10px;
}

/* common page-title
---------------------------------------------------- */
#used .page-title-wrapper{ background: url(../images/bg-pagetitle-used.jpg) no-repeat center / cover;}
#sale .page-title-wrapper{ background: url(../images/bg-pagetitle-sale.jpg) no-repeat center / cover;}
#inspection .page-title-wrapper{ background: url(../images/bg-pagetitle-inspection.jpg) no-repeat center / cover;}
#repair .page-title-wrapper{ background: url(../images/bg-pagetitle-repair.jpg) no-repeat center / cover;}
#sheel-metal .page-title-wrapper{ background: url(../images/bg-pagetitle-sheel-metal.jpg) no-repeat center / cover;}
#insurance .page-title-wrapper{ background: url(../images/bg-pagetitle-insurance.jpg) no-repeat center / cover;}
#company .page-title-wrapper{ background: url(../images/bg-pagetitle-company.jpg) no-repeat center / cover;}
#contact .page-title-wrapper{ background: url(../images/bg-pagetitle-contact.jpg) no-repeat center / cover;}

.page-title-wrapper {
    position: relative;
    height: 400px;
    width: 85%;
    margin-left: auto;
}
.page-title-wrapper h2 {
    position: absolute;
    bottom: 60px;
    left: -60px;
    display: block;
    min-width: 500px;
    padding: 40px;
    background: rgba(252,23,46,0.9);
    font-weight: bold;
    color: #fff;
    line-height: 1;
}
.page-title-wrapper h2 .jp{
    display: block;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #fff;
    font-size: 48px;
    line-height: 1;
}
.page-title-wrapper h2 .en{
    display: block;
    font-family: "Roboto";
    font-size: 24px;
    font-style: italic;
    line-height: 1;
}
@media screen and (max-width: 1199px) {
    .page-title-wrapper h2 .jp{
        font-size: 42px;
    }
    .page-title-wrapper h2 .en{
        font-size: 20px;
    }
}
@media screen and (max-width: 991px) {
    .page-title-wrapper {
        height: 300px;
    }
    .page-title-wrapper h2 {
        bottom: 40px;
        left: -40px;
        min-width: 400px;
        padding: 30px;
    }
    .page-title-wrapper h2 .jp{
        padding-bottom: 15px;
        margin-bottom: 15px;
        font-size: 36px;
    }
    .page-title-wrapper h2 .en{
        font-size: 18px;
    }
}
@media screen and (max-width: 767px) {
    .page-title-wrapper {
        width: 90%;
    }
    .page-title-wrapper h2 {
        left: -40px;
        bottom: 40px;
        min-width: 300px;
    }
    .page-title-wrapper h2 .jp{
        padding-bottom: 10px;
        margin-bottom: 10px;
        font-size: 30px;
    }
    .page-title-wrapper h2 .en{
        font-size: 16px;
    }
}
@media screen and (max-width: 575px) {
    .page-title-wrapper {
        height: 200px;
    }
    .page-title-wrapper h2 {
        left: -20px;
        bottom: 20px;
        min-width: 250px;
        padding: 20px;
    }
    .page-title-wrapper h2 .jp{
        font-size: 26px;
    }
    .page-title-wrapper h2 .en{
        font-size: 14px;
    }
}

/* common page-lead
---------------------------------------------------- */
.page-lead{
    text-align: center;
    line-height: 2;
}
@media screen and (max-width: 767px) {
    .page-lead{
        text-align: left;
    }
}

/* common box
---------------------------------------------------- */
.box-external-link{
    display: block;
    height: 100%;
    border: 1px solid #000;
}
.box-external-link figure{
    background: #fff;
    text-align: center;
}
.box-external-link .body{
    padding: 15px;
    background: #f5f5f5;
    transition: .2s;
}
.box-external-link .body .ttl{
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #fc172e;
    text-align: center;
    line-height: 1;
    transition: .2s;
}
.box-external-link .body .text{
    font-size: 15px;
    line-height: 1.6;
}
.box-external-link .btn-merchant{
    padding: 5px;
    background: #fc172e;
    font-size: 18px;
    font-weight: bold;
    font-style: italic;
    color: #fff;
    text-align: center;
    line-height: 1;
    transition: .2s;
}
.box-external-link:hover .body{
    background: #fc172e;
    color: #fff;
}
.box-external-link:hover .body .ttl{
    color: #fff;
}
.box-external-link:hover .btn-merchant{
    background: #fff;
    color: #fc172e;
}
@media screen and (max-width:767px){
    .box-external-link .body .ttl{
        font-size: 18px;
    }
    .box-external-link .body .text{
        font-size: 14px;
    }
    .box-external-link .btn-merchant{
        font-size: 16px;
    }
}

/*  common-flex-photo-area
------------------------------------------------------------------*/
.row-common-flex{
    display: flex;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ccc;
}
.row-common-flex.even{ 
    flex-direction: row-reverse;
}
.row-common-flex:last-of-type{
    margin-bottom: inherit;
    border-bottom: none;
}
.row-common-flex .photo-area{
    flex-shrink: 0;
    max-width: 400px;
    margin-right: 30px;
}
.row-common-flex.even .photo-area{
    margin-left: 30px;
    margin-right: inherit;
}
.row-common-flex .text-area{
    width: 100%;
}
.row-common-flex .text-area .ttl{
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #fc172e;
}
.row-common-flex .text-area .text{
    line-height: 2;
}
@media screen and (max-width:991px){
    .row-common-flex,
    .row-common-flex.even{
        flex-direction: column-reverse;
    }
    .row-common-flex .photo-area{
        max-width: 540px;
        margin: 0 auto;
    }
    .row-common-flex.even .photo-area{
        margin: 0 auto;
    }
    .row-common-flex .text-area{
        max-width: 540px;
        margin: 0 auto 30px;
    }
    .row-common-flex .text-area .ttl{
        font-size: 20px;
        text-align: center;
    }
}



/*　汎用
------------------------------------------------------------------*/
.bold { font-weight: bold !important;;}

.line-yellow{ background:rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #fcff29 0%) repeat scroll 0 0;}

a.link-text{
    text-decoration: underline;
    transition: .4s;
}
a.link-text:hover{
    color: #ff0f0f;
}

a.link-img img{ transition: .2s;}
a.link-img:hover img{ opacity: 0.6;}

.fs60{font-size: 60%;}
.fs70{font-size: 70%;}
.fs80{font-size: 80%;}
.fs90{font-size: 90%;}
.fs105{font-size: 105%;}
.fs110{font-size: 110%;}
.fs120{font-size: 120%;}
.fs130{font-size: 130%;}
.fs140{font-size: 140%;}
.fs150{font-size: 150%;}

.ls0 { letter-spacing: 0 !important;}
.ls5 { letter-spacing: 0.05em !important;}
.ls10 { letter-spacing: 0.1em !important;}
.ls20 { letter-spacing: 0.2em !important;}

.text-red { color: #fc172e !important;}
.text-blue { color: #104c94 !important;}
.text-black { color: #000 !important;}
.text-white { color: #fff !important;}

.lh11 { line-height: 1.1 !important;}
.lh12 { line-height: 1.2 !important;}
.lh15 { line-height: 1.5 !important;}
.lh18 { line-height: 1.8 !important;}
.lh20 { line-height: 2 !important;}

.mb0 {margin-bottom: 0 !important;}
.mb5 {margin-bottom: 5px !important;}
.mb10 {margin-bottom: 10px !important;}
.mb15 {margin-bottom: 15px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb40 {margin-bottom: 40px !important;}
.mb50 {margin-bottom: 50px !important;}
.mb60 {margin-bottom: 60px !important;}
.mb70 {margin-bottom: 70px !important;}
.mb80 {margin-bottom: 80px !important;}
.mb90 {margin-bottom: 90px !important;}

.n-mb30{margin-bottom: -30px !important;}

/*　header
------------------------------------------------------------------*/
header{
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 0 0 15px;
    background: transparent;
    z-index: 999;
    overflow: hidden;
    transition: .2s;
}
header.on{
    background: rgba(255,255,255,0.9);
}

.header-right-top{
    display: flex;
    justify-content: flex-end;
    align-items: center
}
.header-right-top .tel-area{
    display: flex;
    align-items: center;
    flex-direction: column;
}
.header-right-top .tel-area .tel{
    margin-right: 20px;
    font-family: "Roboto", serif;
    font-size: 30px;
    font-weight: bold;
    font-style: italic;
    color: #fc172e;
    line-height: 1;
}
.header-right-top .tel-area .time{
    margin-right: 20px;
    font-size: 14px;
    line-height: 1;
}
.header-right-top .btn-contact a{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 30px;
    background: #fc172e;
    border: 2px solid #fc172e;
    font-size: 20px;
    font-weight: bold;
    color: #Fff;
    line-height: 1;
    transition: .2s;
}
.header-right-top .btn-contact a i{
    margin-right: 10px;
    font-size: 36px;
}
.header-right-top .btn-contact a:hover{
    background: #fff;
    color: #fc172e;
}

.header-nav{
  	display:flex;
    justify-content: flex-end;
    padding: 0 15px;
}
.header-nav li a{
    position: relative;
    display: block;
    padding: 20px 15px;
    font-weight: 500;
    text-align: center;
    line-height: 1;
    transition: .2s;
}
.header-nav li a::after{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    width: 0;
    height: 3px;
    background: #fc172e;
    transition: .2s;
}
.header-nav li a:hover,
.header-nav li.active a{
    color: #fc172e;
}
.header-nav li a:hover::after,
.header-nav li.active a::after{
    width: 100%;
}
.header-tel-icon,
.header-contact-icon{
    display: none;
}
#hamburger{
    display: none;
}
@media screen and (max-width:1399px){
    header .logo{
        width: 250px;
    }
    .header-right-top .tel-area{
        flex-direction: column;
    }
    .header-right-top .tel-area .tel{
        margin-bottom: 5px;
    }
    .header-right-top .tel-area .time{
        font-size: 11px;
    }
    .header-right-top .btn-contact a{
        padding: 14px 20px;
        font-size: 18px;
    }
    .header-right-top .btn-contact a i{
        font-size: 24px;
    }
    .header-nav{
        padding: 0 10px;
    }
    .header-nav li a{
        position: relative;
        display: block;
        padding: 15px 10px;
        font-size: 14px;
    }
}
@media screen and (max-width:991px){
    header{
        height: 54px;
        padding: 0 15px;
        overflow: initial;
    }
    header .container{
        max-width: inherit;
    }
    header .logo{
        width: 180px;
        z-index: 1;
    }
    .header-right-top{
        display: none;
    }
    .header-nav{
        display: block;
        position: absolute;
        top: 0;
        left: 100%;
        background: #104c94;
        margin: 0;
        padding-top: 54px;
        width: 360px;
        height: 100vh;
        transition: .4s;
    }
    .header-nav.in{
        transform: translateX(-100%);
    }
    .header-nav li{
        margin-left: 0;
        padding: 0;
        border-bottom: 1px solid #fff;
    }
    .header-nav li a{
        display: block;
        padding: 15px 10px;
        font-size: 16px;
        color: #fff;
        text-align: center;
    }
    .header-nav li a::after{
        display: none;
    }
    .header-nav li a:hover,
    .header-nav li.active a{
        background: #fc172e;
        color: #fff;
    }
    #hamburger {
        display: block;
        position: fixed;
        top: 7px;
        right: 7px;
        width: 40px;
        height: 40px;
        cursor: pointer;
        background: #104c94;
        z-index: 1000;
    }
    #hamburger .inner_line {
        display: block;
        position: absolute;
        left: 10px;
        width: 20px;
        height: 2px;
        background-color: #fff;
        border-radius: 4px;
        transition: .2s;
    }
    #hamburger #line1 {
        top: 10px;
    }
    #hamburger #line2 {
        top: 19px;
    }
    #hamburger #line3 {
        bottom: 10px;
    }
    #hamburger .line_1 {
        -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg);
        top: 19px !important;
    }
    #hamburger .line_2 {
        opacity: 0;
    }
    #hamburger .line_3 {
        -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
        bottom: 19px !important;
    }
    .header-tel-icon{
        position: fixed;
        top: 12px;
        right: 114px;
        display: block;
        font-family: "Roboto";
        font-size: 30px;
        font-weight: bold;
        font-style: italic;
        color: #fc172e;
        line-height: 1;
        z-index: 1000;
    }
    .header-contact-icon{
        position: fixed;
        top: 7px;
        right: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: #fc172e;
        font-size: 22px;
        color: #fff;
        line-height: 1;
        z-index: 1000;
    }
}
@media screen and (max-width:767px){
    header .logo{
        width: 110px;
    }
    .header-tel-icon{
        top: 7px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: #fc172e;
        font-size: 22px;
        color: #fff;
    }
    .header-nav{
        width: 300px;
    }
}

.sns_area_pc  {
    display: flex;
 }
 .sns_area_pc div  {
    margin-right: 12px;;
 }
.sns_area_pc img {
   max-width: 48px;
}


@media screen and (max-width:991px){
    .sns_area_pad {
        display: flex !important;
        position: fixed;
        top: 6px;
        right: 355px;
        display: block;
        font-family: "Roboto";
        z-index: 1000;
    }
    .sns_area_pad div  {
        margin-right: 6px;;
     }
    .sns_area_pad img {
        max-width: 42px;
    }
    
}
@media screen and (min-width:992px){
    .sns_area_pad {
        display: none !important;
    }
}
@media screen and (max-width:767px){
    .sns_area_pad {
        display: none !important;
    }
}

.sns_area_sp {
    display: flex;
    justify-content: center;
    align-items: center;
}
.sns_area_sp img {
    max-width: 42px;
}

@media screen and (min-width:992px){
    .sns_area_sp {
        display: none !important;
    }
}
/* mainvis
---------------------------------------------------- */
#mainvis-slider{
    padding-bottom: 30px;
}
#mainvis-slider .swiper-slide{
    overflow: inherit;
}
#mainvis-slider .swiper-button-prev:after, .swiper-button-next:after {
    color: #c71919;
    font-weight: bold;
}
#mainvis-slider .swiper-pagination-bullets {
    width: inherit;
    bottom: 5px;
    left: inherit;
    right: 0;
}
#mainvis-slider .swiper-pagination-bullet {
    border-radius: inherit;
    margin: 0 5px!important;
    width: 50px;
    height: 10px;
    opacity: 1;
    background: #c9c9c9;
}
#mainvis-slider .swiper-pagination-bullet-active {
    background: #fc172e;
    opacity: 1;
}
@media screen and (max-width:767px){
    #mainvis-slider{
        padding-bottom: 10px;
    }
    #mainvis-slider .swiper-slide{
        height: 100vw;
    }
    #mainvis-slider .swiper-pagination-bullets {
        right: 50%;
        transform: translateX(50%);
        white-space: nowrap;
    }
    #mainvis-slider .swiper-pagination-bullet {
        margin: 0 3px!important;
        width: 30px;
        height: 7px;
    }
}
@media screen and (max-width:575px){
    #mainvis-slider .swiper-slide{
        height: 120vw;
    } 
}
@media screen and (max-width:429px){
    #mainvis-slider .swiper-slide{
        height: 145vw;
    } 
}

.main-photo{
    width: 84%;
    margin-left: auto;
    margin-right: 0;
}
@media screen and (max-width:991px){
    .main-photo{
        width: 90%;
    }
}

.main-text{
    position: absolute;
    top: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 760px;
    height: 450px;
    padding: 30px;
    background: rgba(252,23,46,0.9);
    transform: translateX(100px);
    visibility: hidden;
    opacity: 0;
    color: #fff;
    z-index: 1;
}
.swiper-slide-active .main-text{
    animation-name: mainText-fadeIn;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-fill-mode: both;
}
@keyframes mainText-fadeIn {
    0%{
        transform: translateX(100px);
        visibility: hidden;
        opacity: 0;
    }
    100%{
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
    }
}
.main-text .ttl{
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #fff;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.4;
}
.main-text span{
    font-size: 50px;
}
.main-text .text{
    font-weight: bold;
    line-height: 1.8;
}
.main-text .text + .text{
    margin-top: 20px;
}
.main-text .btn-main-text{
    display: inline-block;
    width: 200px;
    padding: 5px;
    margin-top: 20px;
    background: #fff;
    border: 1px solid #fff;
    font-family: "Roboto";
    font-size: 18px;
    font-weight: bold;
    color: #fc172e;
    text-align: center;
    line-height: 1;
    transition: .2s;
}
.main-text .btn-main-text:hover{
    background: #fc172e;
    color: #fff;
}
@media screen and (max-width:1399px){
    .main-text{
        width: 650px;
        height: 350px;
    }
    .main-text .ttl{
        font-size: 20px;
    }
    .main-text span{
        font-size: 36px;
    }
    .main-text .text{
        font-size: 15px;
    }
}
@media screen and (max-width:1199px){
    .main-text{
        width: 590px;
        height: 300px;
    }
    .main-text .text + .text{
        margin-top: 15px;
    }
    .main-text .ttl{
        padding-bottom: 15px;
        margin-bottom: 15px;
        font-size: 18px;
    }
    .main-text span{
        font-size: 30px;
    }
    .main-text .text{
        font-size: 14px;
    }
    .main-text .btn-main-text{
        margin-top: 15px;
    }
}
@media screen and (max-width:991px){
    .main-text{
        top: inherit;
        bottom: 20px;
        left: 20px;
        width: 70%;
        height: 250px;
        margin-left: auto;
    }
    .main-text .text + .text{
        margin-top: 10px;
    }
    .main-text .ttl{
        padding-bottom: 10px;
        margin-bottom: 10px;
        font-size: 16px;
    }
    .main-text span{
        font-size: 24px;
    }
    .main-text .text{
        font-size: 14px;
    }
}
@media screen and (max-width:767px){
    .main-text{
        width: 90%;
        height: 300px;
    }
    .main-text .ttl{
        font-size: 15px;
    }
    .main-text span{
        font-size: 22px;
    }
    .main-text .text{
        font-size: 13px;
    }
}
@media screen and (max-width:575px){
    .main-text{
        padding: 0 15px;
    }
    .main-text .text{
        font-size: 12px;
    }
}

.scrolldown{
    position: absolute;
    bottom: 120px;
    left: 60px;
    color: #fff;
    writing-mode: vertical-lr;
    -ms-writing-mode: bt-lr;
    z-index: 1;
}
.scrolldown span{
    font-size: 12px;
    letter-spacing: 0.125em;
}
.scrolldown::after{
	content: "";
    position: absolute;
	top: 0;
    left: 10px;
	width: 1px;
	height: 70px;
	background: #eee;
	animation: pathmove 1.4s ease-in-out infinite;
	opacity:0;
}
@keyframes pathmove{
	0%{
		height:0;
		top:60px;
		opacity: 0;
	}
	30%{
		height:70px;
		opacity: 1;
	}
	100%{
		height:0;
		top:180px;
		opacity: 0;
	}
}
@media screen and (max-width:767px) {
    .scrolldown{
        display: none;
    }
}

/*  home-about
------------------------------------------------------------------*/
.sec-home-about{
    padding: 20px 0 120px;
}
@media screen and (max-width:1199px){
    .sec-home-about{
        padding: 20px 0 80px;
    }
}
@media screen and (max-width:767px){
    .sec-home-about{
        padding: 20px 0 60px;
    }
}

.wrap-home-about{
    position: relative;
    padding: 0 4.25%;
}
.wrap-home-about::before{
    position: absolute;
    top: -50px;
    right: 0;
    display: block;
    width: 1px;
    height: calc(100% + 100px);
    background: #c3c3c3;
    content: "";
}
.wrap-home-about::after{
    position: absolute;
    top: -50px;
    right: -100px;
    display: block;
    width: 93px;
    height: 434px;
    background: url(../images/home-about-treat.png) no-repeat top / cover;
    content: "";
}
.wrap-home-about .text{
    padding: 0 50px;
    line-height: 1.8;
}
@media screen and (max-width:1399px){
    .wrap-home-about{
        padding: 0 10%;
    }
    .wrap-home-about::before{
        right: 70px;
    }
    .wrap-home-about::after{
        right: -30px;
    }
    .wrap-home-about .text{
        padding: 0;
    }
}
@media screen and (max-width:1199px){
    .wrap-home-about::before{
        right: 50px;
    }
    .wrap-home-about::after{
        right: -50px;
    }
}
@media screen and (max-width:991px){
    .wrap-home-about::before{
        top: -40px;
        right: 30px;
        height: calc(100% + 80px);
    }
    .wrap-home-about::after{
        top: -40px;
        right: -70px;
    }
}
@media screen and (max-width:767px){
    .wrap-home-about{
        padding: 0;
    }
    .wrap-home-about::before{
        right: -30px;
        height: calc(100% + 80px);
    }
    .wrap-home-about::after{
        right: -85px;
        width: 50px;
        height: 232px;
    }
}
@media screen and (max-width:575px){
    .wrap-home-about::before{
        display: none;
    }
    .wrap-home-about::after{
        display: none;
    }
}

/*  home-contents
------------------------------------------------------------------*/
.list-home-pagelink{
    display: flex;
    flex-wrap: wrap;
}
.list-home-pagelink li{
    position: relative;
    width: 33.333333333333%;
    padding-top: 14.95%;
}
.list-home-pagelink li:nth-of-type(1){
    background: url(../images/home-pagelink01.jpg) no-repeat center / cover;
}
.list-home-pagelink li:nth-of-type(2){
    background: url(../images/home-pagelink02.jpg) no-repeat center / cover;
}
.list-home-pagelink li:nth-of-type(3){
    background: url(../images/home-pagelink03.jpg) no-repeat center / cover;
}
.list-home-pagelink li:nth-of-type(4){
    background: url(../images/home-pagelink04.jpg) no-repeat center / cover;
}
.list-home-pagelink li:nth-of-type(5){
    background: url(../images/home-pagelink05.jpg) no-repeat center / cover;
}
.list-home-pagelink li:nth-of-type(6){
    background: url(../images/home-pagelink06.jpg) no-repeat center / cover;
}
.list-home-pagelink li .text-area{
    position: absolute;
    bottom: 17px;
    right: 17px;
    text-align: right;
}
.list-home-pagelink li .text-area .ttl{
    margin-bottom: 15px;
    color: #fff;
}
.list-home-pagelink li .text-area .ttl .en{
    display: block;
    margin-bottom: 15px;
    font-family: "Roboto";
    font-size: 16px;
    font-weight: bold;
    font-style: italic;
    line-height: 1;
}
.list-home-pagelink li .text-area .ttl .jp{
    display: block;
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
}
@media screen and (max-width:1399px){
    .list-home-pagelink li .text-area .ttl .en{
        margin-bottom: 10px;
        font-size: 15px;
    }
    .list-home-pagelink li .text-area .ttl .jp{
        font-size: 30px;
    }
}
@media screen and (max-width:1199px){
    .list-home-pagelink li .text-area .ttl .en{
        font-size: 14px;
    }
    .list-home-pagelink li .text-area .ttl .jp{
        font-size: 26px;
    }
}
@media screen and (max-width:991px){
    .list-home-pagelink li{
        width: 50%;
        padding-top: 20.425%;
    }
}
@media screen and (max-width:767px){
    .list-home-pagelink li{
        padding-top: 30%;
    }
    .list-home-pagelink li .text-area .ttl .en{
        font-size: 12px;
    }
    .list-home-pagelink li .text-area .ttl .jp{
        font-size: 20px;
    }
}
@media screen and (max-width:575px){
    .list-home-pagelink li{
        padding-top: 33%;
    }
    .list-home-pagelink li .text-area{
        bottom: 50%;
        right: 50%;
        transform: translate(50%,50%);
        text-align: center;
        white-space: nowrap;
    }
}

.btn-home-pagelink{
    display: inline-block;
    width: 200px;
    padding: 5px 10px;
    background: #fff;
    font-family: "Roboto";
    font-size: 18px;
    font-weight: bold;
    color: #fc172e;
    text-align: center;
    line-height: 1;
    transition: .2s;
}
.btn-home-pagelink:hover{
    background: #fc172e;
    color: #fff;
}
@media screen and (max-width:1199px){
    .btn-home-pagelink{
        width: 150px;
        font-size: 16px;
    }
}
@media screen and (max-width:767px){
    .btn-home-pagelink{
        width: 120px;
        font-size: 14px;
    }
}

/*  home-access
------------------------------------------------------------------*/
.sec-home-access{
    position: relative;
    padding: 50px 0;
}
.sec-home-access::after{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 968px;
    height: 850px;
    background: url(../images/bg-home-access.jpg)no-repeat top left / cover;
    content: "";
    z-index: -1;
}
@media screen and (max-width:1199px){
    .sec-home-access::after{
        width: 805px;
        height: 707px;
    }
}
@media screen and (max-width:991px){
    .sec-home-access::after{
        width: 670px;
        height: 588px;
    }
}
@media screen and (max-width:767px){
    .sec-home-access::after{
        display: none;
    }
}

.home-access-address{
    margin-bottom: 15px;
    text-align: right;
}
@media screen and (max-width:767px){
    .home-access-address{
        text-align: center;
    }
}

/*  home-news
------------------------------------------------------------------*/
.news-area{
    max-height: 600px;
    border: 1px solid #000;
    overflow-y: scroll;
}
.news-contents{
    display: flex;
    padding: 30px;
    border-bottom: 1px solid #c9c9c9;
}
.news-contents .photo-area{
    flex-shrink: 0;
    width: 180px;
    margin-right: 30px;
}
.news-contents dl dt{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.news-contents dl dt .date{
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
}
.news-contents dl dt .new{
    display: inline-block;
    padding: 2px 5px;
    background: #fc172e;
    font-family: "Roboto";
    font-size: 18px;
    font-weight: bold;
    font-style: italic;
    color: #fff;
    line-height: 1;
}
@media screen and (max-width:991px){
    .news-contents .photo-area{
        width: 150px;
    }
    .news-contents dl dt{
        margin-bottom: 10px;
    }
    .news-contents dl dt .date{
        font-size: 16px;
    }
    .news-contents dl dt .new{
        font-size: 16px;
    }
}
@media screen and (max-width:767px){
    .news-area{
        max-height: 400px;
    }
    .news-contents{
        padding: 15px;
    }
    .news-contents .photo-area{
        width: 120px;
        margin-right: 15px;
    }
    .news-contents dl dt .date{
        font-size: 14px;
    }
    .news-contents dl dt .new{
        font-size: 14px;
    }
}
@media screen and (max-width:575px){
    .news-contents .photo-area{
        width: 80px;
    }
}

/*  home-cashless
------------------------------------------------------------------*/
.box-cashless{
    height: 100%;
    background: #fff;
    border: 1px solid #000;
}
.box-cashless .ttl{
    padding: 5px;
    background: #000;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}
.box-cashless .body{
    padding: 30px 15px;
}
.box-cashless .list-cashless{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    height: 100%;
}
.box-cashless .list-cashless li{
    padding: 15px 15px;
}
@media screen and (max-width:767px){
    .box-cashless .body{
        padding: 15px 0;
    }
    .box-cashless .list-cashless li{
        padding: 7.5px 7.5px;
    }
}

/*  home-merchant
------------------------------------------------------------------*/
.sec-home-merchant{
    position: relative;
    padding: 0 0 100px;
}
.sec-home-merchant::after{
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 798px;
    height: 820px;
    background: url(../images/bg-home-merchant.jpg) no-repeat bottom left / cover;
    content: "";
    z-index: -1;
}
@media screen and (max-width:767px){
    .sec-home-merchant{
        padding: 0 0 60px;
    }
    .sec-home-merchant::after{
        display: none;
    }
}



/*　footer
------------------------------------------------------------------*/
footer{
    padding: 60px 0;
    background: #104c94;
    color: #fff;
}
.wrap-footer{
    display: flex;
    justify-content: space-between;
}
footer .logo{
    margin-bottom: 20px;
}
footer .tel{
    margin-bottom: 10px;
    font-family: "Roboto";
    font-size: 20px;
    font-weight: bold;
    font-style: italic;
}
footer .time{
    margin-bottom: 20px;
    font-size: 14px;
}
.btn-footer-contact{
    display: inline-block;
    padding: 15px 20px;
    background: #fff;
    border: 1px solid #fff;
    font-size: 20px;
    font-weight: bold;
    color: #104c94;
    line-height: 1;
    transition: .2s;
}
.btn-footer-contact:hover{
    background: #104c94;
    color: #fff;
}

footer .right{
    display: flex;
}
.footer-nav + .footer-nav{
    margin-left: 100px;
}
.footer-nav li{
    position: relative;
    padding-left: 10px;
    margin-bottom: 15px;
}
.footer-nav li::before{
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    content: "-";
}
@media screen and (max-width:991px){
    .footer-nav + .footer-nav{
        margin-left: 40px;
    }
}
@media screen and (max-width:767px){
    .wrap-footer{
        display: block;
    }
    footer .left{
        text-align: center;
        margin-bottom: 30px;
    }
    .btn-footer-contact{
        font-size: 16px;
    }
    footer .right{
       justify-content: center;
    }
}



/*  used
------------------------------------------------------------------*/
.sec-used-sales{
    padding: 50px 0;
    background: url(../images/bg-used-info.jpg) no-repeat bottom right / 900px;
}
@media screen and (max-width:991px){
    .sec-used-sales{
        background: none;
    }
}

.card-used-sales{
    position: relative;
    height: 100%;
    border: 1px solid #000;
}
.card-used-sales .body{
    padding: 15px;
    background: #fff;
}
.card-used-sales .body .ttl{
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: bold;
    color: #fc172e;
}
.card-used-sales .body .text{
    font-size: 14px;
}
@media screen and (max-width:991px){
    .card-used-sales{
        display: flex;
        padding-bottom: 30px;
        border: inherit;
        border-bottom: 1px solid #ccc
    }
    .card-used-sales figure{
        flex-shrink: 0;
        width: 200px;
        margin-right: 20px;
    }
    .card-used-sales .body{
        padding: 0;
    }
}
@media screen and (max-width:767px){
    .card-used-sales figure{
        width: 120px;
        margin-right: 15px;
    }
    .card-used-sales .body .ttl{
        font-size: 18px;
    }
}
@media screen and (max-width:767px){
    .card-used-sales figure{
        width: 80px;
    }
}


.used-campaign-precautions{
    max-width: 670px;
    margin: 0 auto;
}
.used-campaign-precautions li{
    padding-left: 1.85em;
    text-indent: -1.85em;
    margin-bottom: 5px;
    font-weight: bold;
    color: #fc172e;
}

/*  sale
------------------------------------------------------------------*/
.box-sale-lease{
    padding: 40px 50px;
    margin-bottom: 60px;
    background: #f8f8f8;
}
.box-sale-lease figure{
    margin-bottom: 30px;
    text-align: center;
}
.box-sale-lease figure img{
    max-width: 300px;
}
.box-sale-lease .ttl{
    margin-bottom: 30px;
    font-size: 26px;
    font-weight: bold;
    text-align: center;
}
.box-sale-lease .ttl2{
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}
.box-sale-lease .text{
    text-align: center;
    line-height: 2;
}
@media screen and (max-width:991px){
    .box-sale-lease{
        padding: 30px;
    }
    .box-sale-lease .ttl{
        font-size: 22px;
    }
}
@media screen and (max-width:767px){
    .box-sale-lease .ttl{
        font-size: 20px;
    }
    .box-sale-lease .text{
        text-align: left;
    }
}
@media screen and (max-width:575px){
    .box-sale-lease{
        padding: 30px 15px;
    }
}

.ttlarea-lease-service{
    margin-bottom: 60px;
    text-align: center;
}
.ttlarea-lease-service .ttl{
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
}
.ttlarea-lease-service .ttl span{
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
    color: #fc172e;
}
.ttlarea-lease-service .text{
    line-height: 2;
}
@media screen and (max-width:1199px){
    .ttlarea-lease-service .ttl{
        font-size: 30px;
    }
    .ttlarea-lease-service .ttl span{
        font-size: 15px;
    }
}
@media screen and (max-width:991px){
    .ttlarea-lease-service .ttl{
        font-size: 28px;
    }
    .ttlarea-lease-service .ttl span{
        font-size: 14px;
    }
}
@media screen and (max-width:767px){
    .ttlarea-lease-service .ttl{
        font-size: 24px;
    }
    .ttlarea-lease-service .text{
        text-align: left;
    }
}

.list-lease-service{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}
.list-lease-service li{
    padding: 0 15px;
}

.list-7max-course{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}
.list-7max-course li{
    width: 33.3333333333%;
    padding: 0 5px;
    margin-bottom: 10px;
    line-height: 1;
}
.list-7max-course li span{
    display: block;
    padding: 10px 5px;
    border: 1px solid #fc172e;
    font-size: 17px;
    font-weight: bold;
    color: #fc172e;
    text-align: center;
}
@media screen and (max-width:575px){
    .list-7max-course li{
        width: 100%;
    }
}


/*  sheel metal
------------------------------------------------------------------*/
.list-check{
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto 40px;
}
.list-check li{
    position: relative;
    width: 33.33333%;
    padding-left: 1.5em;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
}
.list-check li::before{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "\f14a";
    font-family: "Font Awesome 5 Free";
    color: #fc172e;
}
@media screen and (max-width:1199px){
    .list-check li{
        font-size: 17px;
    }
}
@media screen and (max-width:991px){
    .list-check{
        max-width: 540px;
        margin: 0 auto 30px;
    }
    .list-check li{
        width: 50%;
    }
}
@media screen and (max-width:575px){
    .list-check li{
        width: 100%;
        padding-bottom: 5px;
        border-bottom: 1px solid #ccc;
    }
}

/*  company
------------------------------------------------------------------*/
.wrap-greeting{
    display: flex;
}
.wrap-greeting .photo-area{
    flex-shrink: 0;
    width: 300px;
    margin-right: 30px;
}
.wrap-greeting .text-area .text{
    line-height: 2;
    margin-bottom: 20px;
}
.ceo-name{
    font-family: "YuMincho", Yu Mincho;
    font-weight: bold;
    text-align: right;
}
.ceo-name span{
    font-size: 24px;
}
@media screen and (max-width:991px){
    .wrap-greeting .photo-area{
        width: 200px;
        margin-right: 15px;
    }
    .ceo-name span{
        font-size: 20px;
    }
}
@media screen and (max-width:991px){
    .wrap-greeting{
        display: block;
    }
    .wrap-greeting .photo-area{
        margin: 0 auto 30px;
    }
}


.box-staff{
    height: 100%;
    padding: 30px;
    border: 1px solid #ccc;
}
.box-staff .staff-detail{
    display: flex;
    margin-bottom: 15px;
}
.box-staff .staff-detail .photo-area{
    flex-shrink: 0;
    width: 150px;
    margin-right: 15px;
}
.staff-name{
    display: block;
    margin-bottom: 20px;
    font-weight: bold;
}
.staff-name .position{
    display: block;
    font-size: 90%;
    color: #fc172e;
}
.staff-name .name{
    font-size: 120%;
}
.ttl-license{
    font-weight: bold;
}
.ttl-message{
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: 1px solid #104c94;
    font-weight: bold;
    color: #104c94;
}
@media screen and (max-width:575px){
    .box-staff .staff-detail .photo-area{
        width: 100px;
    }
}

/*  contact
------------------------------------------------------------------*/
.tel-box{
    max-width: 500px;
    padding: 30px 15px;
    margin: 0 auto;
    border: 1px solid #1c1c1c;
    text-align: center;
}
.tel-box .ttl{
    font-size: 20px;
}
.tel-box .tel{
    font-family: "Roboto", sans-serif;
    font-size: 36px;
    font-weight: bold;
    font-style: italic;
    color: #fc172e;
}
@media screen and (max-width:575px){
    .tel-box .tel{
        font-size: 28px;
    }
}

.required {
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #cc0000;
    font-size: 12px;
    font-weight: bold;
    color: #cc0000;
    text-align: center;
    line-height: 1;
}

th .required{
    float: right;
}
.form-xs {
    width: 150px;
}
.form-s {
    width: 200px;
}
.form-m {
    width: 300px;
}
.form-l {
    width: 100%;
}
.form-h {
    width: 100%;
    height: 150px;
}
.form-time {
    width: 70px;
}
@media screen and (max-width: 767px) {
    .form-xs, .form-s, .form-m, .form-l, .form100 {
      width: 100%;
    }
    .form-h {
      width: 100%;
      height: 100px;
    }
}

input[type="text"],
input[type="password"],
input[type="tel"],
input[type="email"],
input[type="date"],
select,
textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  line-height: normal;
}

label:hover,
select:hover {
  cursor: pointer;
}
.select-box {
  position: relative;
  display: inline-block;
}
.select-box::before {
    position: absolute;
    content: "\f078";
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-weight: bold;   
    pointer-events: none;
}
@media screen and (max-width: 767px) {
  .select-box {
    display: block;
    margin-bottom: 10px;
  }
  .select-box:last-of-type{
      margin-bottom: inherit;
  }
  .select-box.time{
      display: inline-block;
      margin-bottom: inherit;
  }
  input[type="file"]{
      font-size: 12px;
  }
}

.inputfile_box {
  margin-bottom: 15px;
}

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

:-moz-placeholder {
  color: #aaa;
}

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

:-ms-input-placeholder {
  color: #aaa;
}


.radio-list input,
.checkbox-list input {
    display: none;
}
.radio-list label,
.checkbox-list label {
    position:relative;
    padding-left: 20px;
    margin-right: 15px;
    margin-bottom: 10px;
    line-height: 1;
}
.radio-list input + span::before{
    content: "";
    display: block;
    position: absolute;
    top: 6px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #999;
    border-radius: 50%;
}
.radio-list input:checked + span{
    color: #fc172e;
}
.radio-list input:checked + span::after{
    content: "";
    display: block;
    position: absolute;
    top: 9px;
    left: 3px;
    width: 9px;
    height: 9px;
    background: #fc172e;
    border-radius: 50%;
}
.checkbox-list span::before{
    content: "";
    display: block;
    position: absolute;
    top: 6px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #999;
    border-radius: 4px;
  }
  .checkbox-list input:checked + span{
    color: #2cace7;
  }
  .checkbox-list input:checked + span::after{
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 5px;
    width: 7px;
    height: 14px;
    transform: rotate(40deg);
    border-bottom: 3px solid #cc0000;
    border-right: 3px solid #cc0000;
  }
  @media screen and (max-width:767px){
    .radio-list label,
    .checkbox-list label {
        display: block;
        margin-right: 0;
        margin-bottom: 15px;
    }
    .radio-list input + span::before{
        top: 0;
        width: 13px;
        height: 13px;
    }
    .radio-list input:checked + span::after{
        top: 3px;
        left: 3px;
        width: 7px;
        height: 7px;
    }
}

.policy {
  height: 300px;
  padding: 30px 15px;
  margin-bottom: 50px;
  background: #fff;
  border: 1px solid #e0e9f7;
  overflow-y: scroll;
}

.rightRed{
    text-align: right; 
    color:red;
}
