@charset "utf-8";
/* CSS Document */

/*--------------------
01.下層共通
02.lower_service
03.outline
04.news
05.inquiry
06.error
--------------------*/


/*----------
01.下層共通
----------*/


.lower section + section{
    margin-top: 100px;
}
@media all and (max-width: 767px){
    .lower section + section{
        margin-top: 80px;
    }
}

/*============= KV　title =============*/
.lower .title_g{
    display: block;
    border-left: 5px solid var(--color-main);
    padding: 6px 0 0 30px;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    animation: FadeInUp ease .8s forwards;
    animation-delay: .8s;
}

.lower h1{
    font-weight: 600;
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}
.lower .h1_en {
    font-size: 15px;
    color: var(--color-sub-blue);
}
.lower .title_g .service_cat{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}
.lower .title_g .service_cat .num{
    font-size: 40px;
    display: block;
    margin-bottom: 12px;
    color: var(--service-color);
}

.lower #mv_area{
    overflow-x: hidden;
}
.lower #mv_area .contents_in{
    padding: 140px 0 0;
}
.lower #mv_area .mv_img{
    margin-top: 50px;
    min-width: calc(50vw + 600px);
}

@media all and (max-width: 1024px){
    .lower h1{
        font-size: 36px;
    }
    .lower .h1_en {
        font-size: 14px;
    }
    .lower #mv_area .mv_img{
        min-width: 96vw;
    }
    
}

@media all and (max-width: 767px){
    .lower #mv_area .contents_in{
        padding: 120px 0 0;
    }
    .lower h1{
        font-size: 28px;
    }
    .lower .h1_en {
        font-size: 10px;
    }
    .lower .title_g{
        padding: 2px 0 0 12px;
    }
    .lower .title_g .service_cat{
        font-size: 16px;
    }
    .lower .title_g .service_cat .num{
        font-size: 32px;
    }
    .lower #mv_area .mv_img{
        margin-top: 40px;
        min-width: 94.65vw;
    }
    
}

/*============= パンくず =============*/
.breadcrumb{
    padding: 16px 0 0;
}
.breadcrumb ul li{
    display: inline-block;
    margin-right: 20px;
    font-size: 12px;
    line-height: 1.5;
    vertical-align: middle;
    position: relative;
}
.breadcrumb ul li:first-of-type{
    width: 13px;
}
.breadcrumb ul li:first-of-type img{
    margin-top: -4px;
}
.breadcrumb ul li::after {
    content: '';
    display: block;
    background: url(../images/common/icon_arrow.svg) no-repeat center;
    background-size: contain;
    width: 4px;
    height: 8px;
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-4px);
    pointer-events: none;
}
.breadcrumb ul li:last-of-type::after{
    display: none;
}
.title_g + .breadcrumb{
    padding-top: 50px;
}


@media all and (max-width: 767px){
    .breadcrumb{
        padding: 12px 0 0;
    }
    .breadcrumb ul li{
        font-size: 11px;
    }
    .title_g + .breadcrumb{
        padding-top: 40px;
    }
}

.text_bg_round{
    display: block;
    width: fit-content;
    background: var(--color-sub-blue);
    color: #fff;
    border-radius: 14px;
    padding: 2px 16px;
    line-height: 1.3;
}
p > .text_bg_round{
    margin-top: 4px;
}


/*============= コンテンツレイアウト =============*/

.figure{
    max-width: 680px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.column_2-1{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 40px;
}

.column_3-1{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 30px 20px;
}

.column_4-2{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 30px 20px;
}

.column_item {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-bottom: 1px solid var(--color-line-gray);
}

.column_item .item_title{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 12px;
}
.column_item p{
    font-size: 15px;
    margin-bottom: 12px;
}
.column_item .img {
    margin: auto 0 12px 0;
}

.flex_cnt_g{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-line-gray);
}
.flex_cnt_g .flex_cnt_item,
.flex_cnt_g .flex_cnt_text{
    width: 50%;
    display: block;
}
.flex_cnt_text ul{
    font-size: 15px;
}

.license{
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.table_style01 table{
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}
.table_style01 table tr{
    border-bottom: 1px solid #E3E3E3;
}
.table_style01 table th{
    font-weight: 600;
    text-align: left;
    padding: 20px 18px 20px 18px;
    line-height: 1.7;
    width: 20%;
    min-width: calc(6em + 36px);
}
.table_style01 table td {
    padding: 20px 0px 20px 0px;
    line-height: 1.7;
    width: 80%;
}


@media all and (max-width: 1024px){

}


@media all and (max-width: 767px){

    .column_2-1, .column_3-1{
        display: block;
    }
    .column_4-2{
        grid-template-columns: 1fr 1fr;
        gap: 20px 12px;
    }

    .column_2-1 .column_item, 
    .column_3-1 .column_item {
        margin-bottom: 30px;
    }

    .column_item .item_title{
        margin-bottom: 8px;
    }
    .column_item .img{
        margin: 0 auto 12px;
    }

    .flex_cnt_g{
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
    }
    .flex_cnt_g .flex_cnt_item,
    .flex_cnt_g .flex_cnt_text{
        width: 100%;
    }
    .flex_cnt_g.reverse{
        flex-direction: column-reverse;
    }

    .license{
        display: block;
    }
    .license .btn_pdf{
        margin: 0 auto;
    }

    .table_style01 table tr{
        display: block;
        width: 100%;
        margin-bottom: 13px;
    }
    .table_style01 table th{
        display: block;
        font-size: 15px;
        padding: 0px 0px 4px;
        width: 100%;
    }
    .table_style01 table td{
        font-size: 14px;
        padding: 0 0 12px;
        width: 100%;
    }

}




/*----------
02.lower_service
----------*/
.lower_service .title_g{
    border-left: 5px solid var(--service-color);
}
.lower_service .title_g::after {
    content: '';
    display: block;
    width: 200px;
    height: 200px;
    background: url(../images/common/illust_service01.png) no-repeat center;
    background-size: contain;
    position: absolute;
    bottom: -120px;
    right: 0;
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
    animation: FadeInUp ease .8s forwards;
    animation-delay: 1.2s;
}
.lower_service.purchase .title_g::after{
    background-image: url(../images/common/illust_service01.png);
}
.lower_service.disposal .title_g::after{
    background-image: url(../images/common/illust_service02.png);
}
.lower_service.collect .title_g::after{
    background-image: url(../images/common/illust_service03.png);
}

.lower_service .service_contents{
    display: flex;
    gap: 60px;
}
.lower_service .contents_g{
    max-width: 860px;
    width: calc(100% - 320px);
}


.lower_service .contents_nav_g{
    width: 280px;

    .nav_list{
        position: sticky;
        top: 140px;
    }
    .list_title{
        font-weight: 600;
        font-size: 30px;
        margin-bottom: 16px;
    }
    .nav_list li{
        margin-bottom: 16px;
        font-size: 15px;
    }
    .nav_list li:last-of-type{
        margin-bottom: 0;
    }
    .service_list ul{
        padding: 4px 0 8px 8px;
    }
    .service_list .service_cat{
        font-size: 18px;
    }
    .service_list .service_cat .num{
        font-size: 26px;
        margin-right: 8px;
        width: 30px;
    }
    .service_list li a{
        margin-left: 8px;
        padding-left: 30px;
    }
    .nav_list li a::after{
        width: 17px;
        height: 17px;
    }
    .nav_list li a::before{
        width: 5px;
        height: 5px;
        top: 6px;
        left: 6px;
    }

} 

@media all and (max-width: 1024px){
    .lower_service .service_contents{
        flex-direction: column;
    }
    .lower_service .contents_g{
        width: 100%;
        max-width: none;
    }
    .lower_service .contents_nav_g{
        background: #fff;
        max-width: none;
        width: 100vw;
        padding: 40px 4vw;
        margin-left: -4vw;

        .nav_list{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-column-gap: 20px;
            grid-row-gap: 0px;
            position: static;
        }
        .list_title{
            grid-area: 1 / 1 / 2 / 4;
        }
    }
}


@media all and (max-width: 767px){
    .lower_service .title_g::after{
        width: 120px;
        height: 96px;
        bottom: -72px;
    }
    .lower_service .contents_nav_g{
        padding: 40px 5.35vw 20px;
        margin-left: -5.35vw;

        .nav_list{
            display: block;
        }
        .list_title{
            font-size: 24px;
        }
    }
}


/*============= factory_waste =============*/

.areamap_g{
    display: block;
    max-width: 680px;
    margin: 0 auto 40px;
}
.areamap_text{
    margin-top: 80px;
    max-width: 340px;
    position: relative;
    z-index: 1;
}
.areamap_img{
    margin-top: -240px;
}
.column_style + p.note_text{
    margin-top: 20px;
}

/* 産業廃棄物許可一覧表 */

.license_table_top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.license_table_top .license_date{
    font-size: 12px;
}

.license_table_g .color_red{ color: #E8586E;}
.license_table_g .color_yellow{ color: #F2B733;}
.license_table_g .color_green{ color: var(--color-green);}

.license_table{
    width: 100%;
    height: auto;
    overflow: scroll;
    margin-bottom: 20px;
}
.license_table table{
    table-layout: fixed;
    border-collapse: separate;
    width: 980px;
    height: 720px;
    font-size: 13px;
}
.license_table th{
    border: .5px solid #fff;
    padding: 6px;
    vertical-align: middle;
    text-align: center;
}

.license_table td{
    border-right: 1px solid var(--color-line-gray);
    border-bottom: 1px solid var(--color-line-gray);
    padding: 6px;
    width: 32px;
    font-size: 11px;
    vertical-align: middle;
    text-align: center;
}
.license_table thead{
    position: sticky;
    top: 0;
    z-index: 2;
}
.license_table thead tr:first-of-type{ color: #fff;}
.license_table thead tr:nth-of-type(2) th{ 
    border-top: none;
    vertical-align: text-top;
}
.license_table thead th.type,
.license_table thead th.area,
.license_table thead th.prefecture{
    background: var(--color-sub-blue);
    position: sticky;
    text-align: center;
}

.license_table th.cat{ border-bottom: none;}
.license_table th.cat.normal{ background-color: var(--color-green);}
.license_table th.cat.special{ background-color: var(--color-orange);}
.license_table th.normal{ background-color: #D7ECE8;}
.license_table th.special{ background-color: #F9E7D0;}

.license_table tbody th{
    background: #D6E4EF;
    z-index: 1;
    position: sticky;
}
.license_table th.type{ 
    left: 0;
    width: 30px;
}
.license_table th.area{ 
    left: 30px;
    width: 30px;
}
.license_table th.prefecture{ 
    left: 60px;
    width: calc(4.5em + 12px);
    text-align: start;
}
.license_table tbody tr:hover,
.license_table tbody tr:hover > th.prefecture{
    background: #fff;
}

.license_table_bottom{
    font-size: 12px;
    line-height: 1.8;
}

@media all and (max-width: 767px){
    #factory_waste h1{
        letter-spacing: 0.02em;
    }

    .areamap_g{
        max-width: 500px;
        height: 520px;
        position: relative;
    }
    .areamap_img{
        width: 600px;
        margin: 0;
        position: absolute;
        top: 80px;
        right: -5.35vw;
    }
    .areamap_text{
        margin-top: 40px;
        max-width: 240px;
    }

    .license_table_top .text_bg_round{
        font-size: 13px;
        padding: 2px 10px;
    }
    .license_table{
        height: 70vh;
    }
    .license_table table{
        font-size: 12px;
    }
}
.scroll-hint-icon-white{ box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);}
.scroll-hint-icon-wrap.is-active .scroll-hint-icon{
    z-index: 1;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
}


/*============= network =============*/

.extra_height .item_title{
    height: 50px;
}


/*----------
03.outline
----------*/

#outline .map > iframe{
    width:100%; 
    height:240px;
}

#outline p.philosophy_text{
    margin-bottom: 40px;
}

@media all and (max-width: 767px){


}


/*----------
04.news
----------*/
#news .news_list{
    margin-bottom: 60px;
}

.news_detail pre{
    font-size: 16px;
    line-height: 2.0;
    margin-bottom: 40px;
    white-space: pre-wrap;
}
.news_detail pre a{
    text-decoration: underline;
    text-underline-offset: 4px;
}
.news_detail pre a[target="_blank"]::after{
    content: '';
    display: inline-block;
    width: 0.9em;
    height: 0.9em;
    margin: 0 5px 0;
    background: url(../images/common/blank.svg) no-repeat center;
    background-size: contain;
    transform: translateY(0.1em);
}

.news_detail .img_base{
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}
.news_detail .img_base > img{
    width: auto;
    max-width: min(600px, 100%);
    margin: 0 auto;
}
.news_detail .news_contents{
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid var(--color-line-gray);
}
.news_detail .btn_style01{
    margin: 0 auto;
}

@media all and (max-width: 767px){
    #news .news_list{
        margin-bottom: 40px;
    }
    .news_detail pre{
        font-size: 14px;
    }
}


/*============= pagination =============*/

.lower .pagination{
    display: flex;
    justify-content: center;
    gap: 12px;
}
.lower .pagination span:not([class]){
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 30px;
}

.lower .pagination .page_link{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: transparent;
    transition: .4s ease;
    color: var(--color-main);
}
.lower .pagination .page_link:hover{
    background: var(--color-sub-blue);
    color: #fff;
}
.lower .pagination .active .page_link{
    background: var(--color-sub-blue);
    color: #fff;
}
.lower .pagination .top,
.lower .pagination .prev,
.lower .pagination .next,
.lower .pagination .last{
    background: rgb(from var(--color-sub-blue) r g b / 25%);
    position: relative;
}
.lower .pagination .top::before,
.lower .pagination .prev::before,
.lower .pagination .next::before,
.lower .pagination .last::before{
    content: '';
    display: block;
    width: 4.6px;
    height: 9px;
    background-color: var(--color-main);
    mask-image: url(../images/common/icon_arrow.svg);
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
    mask-position: 0 0;
    transition: .4s;
}
.lower .pagination button:hover::before{
    background: #fff;
}
.lower .pagination .top::before,
.lower .pagination .prev::before{
    transform: scale(-1, 1);
}
.lower .pagination .top::before,
.lower .pagination .last::before{
    mask-image: url(../images/common/icon_arrow02.svg);
    width: 8px;
}
.lower .pagination .disabled{
    opacity: .3;
}
.lower .pagination .disabled button{
    pointer-events: none;
}
@media all and (max-width: 767px){
    .lower .pagination{
        gap: 10px;
    }
}

/*----------
05.inquiry
----------*/


input, textarea {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.note_text{
    display: block;
    font-size: 12px;
    margin-top: 8px;
    padding-left: 1em;
    text-indent: -1em;
}

.inquiry_header .header_top{
    width: auto;
}
.inquiry_footer .footer_bottom{
    padding: 24px 0 24px;
}
.inquiry_footer .copyright{
    text-align: center;
}
.inquiry_footer::after{
    display: none;
}

.inquiry .first_text{
    margin-bottom: 80px;
    font-weight: 400;
    font-size: 16px;
}

.form_contents{
    max-width: 800px;
    margin: 0 auto;
}
.progressbar {
    position: relative;
    margin: 0 auto 60px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.progressbar li {
    position: relative;
    list-style-type: none;
    text-align: center;
    text-transform: uppercase;
    width: 33.333%;
    color: #8E8E8E;
}
.progressbar li:before {
    display: block;
    width: 18px;
    height: 18px;
    margin: 8px auto 12px auto;
    content: '';
    text-align: center;
    border-radius: 50%;
    background-color: var(--color-line-gray);
}
.progressbar li:after {
    position: absolute;
    z-index: -1;
    top: 16px;
    left: -50%;
    width: 100%;
    height: 1px;
    content: '';
    background-color: var(--color-line-gray);
}
.progressbar li:first-child:after {
    content: none;
}
.progressbar li.active,
.progressbar li.complete{
    color: var(--color-main);
    font-weight: 500;
}
.progressbar li.active:before,
.progressbar li.complete:before {
    background-color: var(--color-main);
}
.progressbar li.active:after,
.progressbar li.complete:after {
    background-color: var(--color-main);
}


.inquiry_form{
    margin-bottom: 60px;
}
.inquiry_form div{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--color-line-gray);
    padding-bottom: 20px;
}
.inquiry_form dt{
    font-weight: 600;
    font-size: 18px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 0;
    width: 12em;
}
.inquiry_form dt > .required{
    font-size: 12px;
    color: #fff;
    background: #fb3a57;
    padding: 3px 8px;
    border-radius: 10px;
    margin-left: 6px;
    font-weight: 500;
    display: block;
}
.inquiry_form dd{
    width: calc(100% - 12em);
}
.inquiry_form dd > .sub{
    display: block;
    margin: 12px 0;
    font-weight: 600;
}
.inquiry_form dd > .sub:first-child{
    margin-top: 0;
}

input[type="text"], input[type="tel"], input[type="email"], textarea {
    background: #fff;
    padding: 16px 12px;
    border-radius: 5px;
    border: 1px solid var(--color-line-gray);
    width: 100%;
}
input::placeholder{
    color: var(--color-line-gray);
}
input.error , textarea.error{
    border: 1px solid #fb3a57;
    background: #ffdfe3;
}
/* input:focus, textarea:focus{
    border: 1px solid var(--color-green);
    background: rgb(from var(--color-green) r g b / 5%);
} */
 .error_text{
    font-size: 12px;
    line-height: 1.3;
    margin-top: 6px;
    color: #fb3a57;
 }

ul.radiobutton{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.radiobutton label {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 10px 16px 10px 40px;
    background: #fff;
    border-radius: 30px;
    border: 1px solid var(--color-line-gray);
}

.radiobutton label::before,
.radiobutton label::after {
    content: "";
    display: block; 
    border-radius: 50%;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
}

.radiobutton label::before {
    background-color: #fff;
    border: 1px solid var(--color-line-gray);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    left: 10px;
}

.radiobutton label::after {
    background-color: var(--color-sub-blue);
    border-radius: 50%;
    opacity: 0;
    width: 8px;
    height: 8px;
    left: 16px
}

.radiobutton input:checked + label{
    background: var(--color-sub-blue);
    color: #fff;
    border: none;
}
.radiobutton input:checked + label::before {
    border: none;
}
.radiobutton input:checked + label::after {
    opacity: 1;
}

.checkbox label {
    cursor: pointer;
    padding-left: 30px;
    position: relative;
}
.checkbox label::before,
.checkbox label::after {
    content: "";
    display: block; 
    position: absolute;
}
.checkbox label::before {
    background-color: #fff;
    border-radius: 0%;
    border: 1px solid var(--color-line-gray);
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    top: 50%;
    left: 5px;
    border-radius: 5px;
}
.checkbox label::after {
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    opacity: 0;
    height: 8px;
    width: 14px;
    transform: rotate(-45deg);
    top: 4px;
    left: 8px;
}
.checkbox input:checked + label::before {
    background: var(--color-green);
    border: none;
}
.checkbox input:checked + label::after {
    opacity: 1;
}

.privacy_policy .pp_box{
    display: block;
    border: 1px solid var(--color-main);
    background: #fff;
    border-radius: 5px;
    padding: 30px;
    width: 100%;
    height: 150px;
    overflow-y: scroll;
    margin-bottom: 40px;
}
.privacy_policy .pp_box .title{
    font-weight: 600;
    margin-bottom: 20px;
}
.privacy_policy .pp_box p{
    font-size: 14px;
}
.privacy_policy .pp_box p.note_text{
    font-size: 12px;
}
.privacy_policy .checkbox{
    text-align: center;
    margin-bottom: 40px;
}
.privacy_policy .checkbox label{
    font-weight: 500;
    font-size: 18px;
}

.form_button_box{
    display: flex;
    justify-content: center;
    gap: 40px;
}

.submit_button{
    display: block;
    max-width: 320px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
	position: relative;
	background: var(--color-green);
	padding: 8px 40px 9px;
	font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    color: #fff;
	border-radius: 40px;
    min-height: 72px;
    filter: var(--filter-shadow);
}
.submit_button::before{
	content: '';
	display: block;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
	position: absolute;
	top: 50%;
	right: 29px;
	transform: translateY(-50%);
	transition: .4s ease;
}
.submit_button::after{
    content: '';
	display: block;
	width: 30px;
	height: 30px;
    background: #fff;
    opacity: 0.2;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 18px;
    transition: .4s ease;
}
.submit_button:hover::before{
    transform: translateY(-50%) scale(3.75);
}
.submit_button:hover::after{
    opacity: 1;
    background: var(--color-green);
    transform: translateY(-50%) scale(0.26);
}
.submit_button.disabled{
    pointer-events: none;
    opacity: 0.7;
}

.backward_button{
    display: block;
    max-width: 240px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
	position: relative;
	background: var(--color-line-gray);
	padding: 8px 40px 9px;
	font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-main);
	border-radius: 40px;
    min-height: 72px;
    filter: var(--filter-shadow);
}
.backward_button::before{
	content: '';
	display: block;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
	position: absolute;
	top: 50%;
	right: 29px;
	transform: translateY(-50%);
	transition: .4s ease;
}
.backward_button::after{
    content: '';
	display: block;
	width: 30px;
	height: 30px;
    background: #fff;
    opacity: 0.4;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 18px;
    transition: .4s ease;
}
.backward_button:hover::before{
    transform: translateY(-50%) scale(3.75);
}
.backward_button:hover::after{
    opacity: 1;
    background: var(--color-line-gray);
    transform: translateY(-50%) scale(0.26);
}



@media all and (max-width: 767px){
    .inquiry .first_text{
        font-size: 15px;
        margin-bottom: 50px;
    }
    .inquiry_form div{
        flex-direction: column;
    }
    .inquiry_form dt{
        width: 100%;
        font-size: 16px;
        padding: 0 0 12px;
    }
    .inquiry_form dd{
        width: 100%;
    }
    .inquiry_form dd > .sub{
        font-size: 14px;
    }
    .privacy_policy .checkbox label{
        font-size: 16px;
    }

    .form_button_box{
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 30px;
    }

}


#confirm .inquiry_form dd > .sub + span{
    display: block;
    margin-bottom: 24px;
}
#confirm .inquiry_form dd > span:last-of-type{
    margin-bottom: 0;
}

#complete .complete_img{
    display: block;
    width: 68px;
    margin: 0 auto 20px;
}
#complete .complete_box h2{
    text-align: center;
    margin-bottom: 20px;
}
#complete .complete_box .first_text{
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 40px;
}

#complete .attention_box{
    background: #fff;
    padding: 30px;
    line-height: 1.8;
    margin-bottom: 40px;
}
#complete .attention_box .title{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
#complete .attention_box p{
    margin-bottom: 12px;
}

@media all and (max-width: 767px){

    #complete .complete_box .first_text{
        font-size: 18px;
    }
    #complete .attention_box{
        padding: 20px 16px; 
    }
    #complete .attention_box .title{
        font-size: 16px;
    }
    #complete .attention_box p{
        font-size: 14px;
    }

}



/*----------
06.error
----------*/
.error_page .error_message_g{
    padding: 12vh 0 8vh;
    text-align: center;
}
.error_page .error_message_g h1 {
    margin-bottom: 16px;
    font-size: 40px;
}
.error_page .error_message_g h1 span{
    display: block;
    font-size: 16px;
}
.error_page .error_message_g .btn_style01{
    margin: 30px auto 0;
}
@media all and (max-width: 767px){
    .error_page .error_message_g{
        padding: 10vh 0 0;
    }
}