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

/*--------------------
01.共通
02.header
03.footer


--------------------*/

/*----------
01.共通
----------*/
html { scroll-behavior: smooth;}

*{
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

:root{
    --color-main: #103662;
    --color-sub-blue: #005290;
    --color-orange: #F2A933;
    --color-green: #56BFAC;
    --color-rightblue: #5796CB;
    --color-line-gray: #E3E3E3;
    --filter-shadow: drop-shadow(0px 0px 4px rgba(0 0 0 / 0.06));
}

.wrapper{
    width: 100%;
    overflow: clip;
    font-family: YakuHanJP, 'Inter', 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: var(--color-main);
    background-color: #f7f7f7;
    position: relative;
    overflow-wrap: break-word;
}

.wrapper::before{
    content: '';
    display: block;
    width: 756px;
    height: 756px;
    background: url(../images/common/bg_circle.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: -280px;
    right: -140px;
}
.wrapper.rotation::before{
    animation: Rotation linear 24s infinite;
}

main{
    position: relative;
    z-index: 1;
}

.pc{
    display: block;
}
.sp{
    display: none;
}
.sp_375{
    display: none;
}
.tab{
    display: none;
}

.contents_in{
    max-width: 1200px;
    width: 92%;
    margin: 0 auto;
    padding: 80px 0 120px;
}
.contents_in.min_width{
    max-width: 1000px;
}

a{
    color: var(--color-main);
}
a:hover, a:link {
    color: inherit;
}

img{
    width: 100%;
    height: auto;
    display: block;
}

@media all and (max-width: 1024px){
    .contents_in{
        width: 92%;
    }

    .tab{
        display: block;
    }

}

@media all and (max-width: 767px){
    .wrapper::before{
        width: 540px;
        height: 540px;
        top: -280px;
        right: -250px;
    }

	.pc{
	    display: none;
	}
	.sp{
	    display: block;
	}
	.tab{
	    display: none;
	}

	.contents_in{
	    width: 89.3%;
        padding: 50px 0 90px;
	}

}


/*============= text =============*/

p{
    font-size: 16px;
    line-height: 1.8;
}
p.main_text{
    line-height: 2.0;
    margin-bottom: 30px;
}
p.first_text{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
}

.en, 
[class$="_en"] {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.04em;
    overflow-wrap: normal;
}
.num, 
[class$="_num"] {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: italic;
    overflow-wrap: normal;
}

h2{
	font-size: 28px;
	line-height: 1.3;
	font-weight: 600;
	letter-spacing: 0.03em;
}
.h2_style01{
    margin-bottom: 30px;
    line-height: 1;
}
.h2_style01 .h2_en{
    display: block;
    font-weight: 600;
    color: var(--color-sub-blue);
    font-size: 46px;
    margin-bottom: 6px;
}
.h2_style01 .h2_jp{
    font-size: 16px;
}
h2.line_color_main{
    margin-bottom: 30px;
}

h3{
	font-size: 24px;
	line-height: 1.3;
	font-weight: 600;
	letter-spacing: 0.03em;
    margin-bottom: 12px;
}

h4{
	font-size: 20px;
	line-height: 1.4;
	font-weight: 500;
	letter-spacing: 0;
}

h5{
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 40px;
}

strong{
    font-weight: 500;
}

span.small{
    font-size: .85em;
}

.text_center{
    text-align: center;
}
.line_color_main, 
.line_color_sub{
    width: 100%;
    display: block;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 16px;
}
.line_color_main::before, 
.line_color_sub::before{
    content: '';
    display: block;
    width: 16px;
    height: 1px;
    background: var(--color-green);
    position: absolute;
    bottom: 0;
    left: 0;
}
.line_color_main::after, 
.line_color_sub::after{
    content: '';
    display: block;
    width: calc(100% - 18px);
    height: 1px;
    background: var(--color-main);
    opacity: 0.8;
    position: absolute;
    bottom: 0;
    right: 0;
}
.line_color_sub::after{
    background: var(--color-line-gray);
    opacity: 0.6;
}
.line_left{
    padding-left: 12px;
    border-left: 1px solid var(--color-green);
}

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

	h2{
		font-size: 24px;
	}
    .h2_style01{
        margin-bottom: 30px;
        line-height: 1;
    }
    .h2_style01 .h2_en{
        font-size: 38px;
        margin-bottom: 0px;
    }
    .h2_style01 .h2_jp{
        font-size: 14px;
    }
	h3{
		font-size: 20px;
		margin-bottom: 12px;
	}
	h4{
		font-size: 18px;
		margin-bottom: 12px;
	}
    h5{
        font-size: 16px;
    }
    p{
        font-size: 15px;
    }
    p.first_text{
        font-size: 16px;
    }

}

/*============= button =============*/

/* ボタンスタイルリセット */
button{
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}

.btn_style01{
    max-width: 300px;
    width: 100%;
}
.btn_style01 a{
    display: flex;
    align-items: center;
	position: relative;
	background: #fff;
	padding: 8px 30px 9px;
	font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
	border-radius: 32px;
    min-height: 62px;
    filter: var(--filter-shadow);
}
.btn_style01 a::before, 
.btn_style02 a::before{
	content: '';
	display: block;
    width: 8px;
    height: 8px;
    background: var(--color-sub-blue);
    border-radius: 50%;
	position: absolute;
	top: 50%;
	right: 27px;
	transform: translateY(-50%);
	transition: .4s ease;
}
.btn_style01 a::after, 
.btn_style02 a::after{
    content: '';
	display: block;
	width: 30px;
	height: 30px;
    background: var(--color-sub-blue);
    opacity: 0.2;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
    transition: .4s ease;
}
.btn_style01 a:hover::before, 
.btn_style02 a:hover::before{
    transform: translateY(-50%) scale(3.75);
}
.btn_style01 a:hover::after,
.btn_style02 a:hover::after{
    opacity: 1;
    background: #fff;
    transform: translateY(-50%) scale(0.26);
}
.btn_style01.text_center a{
    text-align: center;
    justify-content: center;
}

.btn_center{
    margin: 0 auto;
}

.btn_style02 a{
    font-weight: 500;
    display: block;
    width: fit-content;
    padding-right: 50px;
    position: relative;
}
.btn_style02 a::before{
    right: 11px;
}
.btn_style02 a::after{
    right: 0;
}

.btn_pdf{
    max-width: 300px;
    width: 100%;
}
.btn_pdf a{
    display: flex;
    align-items: center;
	position: relative;
	background: #fff;
	padding: 8px 30px 9px;
	font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
	border-radius: 32px;
    min-height: 62px;
    filter: var(--filter-shadow);
}
.btn_pdf a::before{
    content: '';
	display: block;
	width: 30px;
	height: 30px;
    background: var(--color-sub-blue);
    opacity: 0.3;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    transition: .4s ease;
    animation: BtnCircle .4s ease forwards;
}
.btn_pdf a::after{
    content: '';
	display: block;
	width: 16px;
	height: 16px;
    background-color: var(--color-sub-blue);
    mask-image: url(../images/common/icon_pdf.svg);
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
    mask-position: 0 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 19px;
    transition: .4s ease;
}
.btn_pdf a:hover::before{
    animation: BtnCircleHover .4s ease forwards;
}
.btn_pdf a:hover::after{
    background-color: #fff;
}

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

    .btn_style02 a{
        font-size: 14px;
        padding-right: 40px;
    }
    .btn_style02 a::before{
        right: 11px;
    }
    .btn_style02 a::after{
        right: 0;
    }

}

/*============= parts =============*/
.list_style01 li,
.check_list li {
	line-height: 1.6;
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 6px;
}

.check_list li::before {
	content: "";
    position: absolute;
	display: block;
	width: .8em;
    height: .8em;
    background: var(--color-line-gray);
    top: .45em;
    left: 0;
    border-radius: 3px;
}
.check_list li::after {
	content: "";
    position: absolute;
	width: .7em;
    height: .4em;
    top: .5em;
    left: .15em;
    border-left: 2px solid var(--color-green);
    border-bottom: 2px solid  var(--color-green);
    transform: rotate(-45deg);
}

.list_style01 li::before{
    content: "";
    position: absolute;
	display: block;
	width: 6px;
    height: 6px;
    background: var(--color-main);
    top: .6em;
    left: 0;
    border-radius: 2px;
}

.news_list dl{
    position: relative;
}
.news_list dl a{
    display: flex;
    gap: 40px;
    padding: 20px 12px 20px;
    line-height: 1.3;
}
.news_list dl::after{
    content: '';
    display: block;
    width: 16px;
    height: 1px;
    background: var(--color-green);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: .6s ease;
}
.news_list dl:hover::after{
    width: 100%;
}
.news_list dl::before{
    content: '';
    display: block;
    width: calc(100% - 18px);
    height: 1px;
    background: var(--color-line-gray);
    position: absolute;
    bottom: 0;
    right: 0;
}
.news_list dl dt{
    width: 96px;
    white-space: nowrap;
}
.news_list dl dd{
    width: calc(100% - 136px);
}

@media all and (max-width: 767px){
    .news_list dl a{
        flex-direction: column;
        gap: 6px;
        font-size: 14px;
        padding: 16px 0 16px;
    }
    .news_list dl dd{
        width: 100%;
    }

}

/*============= animation =============*/

.fadeInUp, .fadeInLeft, .fadeInRight{
	transition: .8s ease;
	transition-delay: .4s;
}

.fadeInUp{
	transform: translateY(30px);
	opacity: 0;
}
.fadeInUp.appear{
	transform: translateY(0px);
	opacity: 1;
}

.fadeInLeft{
	transform: translateX(30px);
	opacity: 0;
}
.fadeInLeft.appear{
	transform: translateX(0px);
	opacity: 1;
}

.fadeInRight{
	transform: translateX(-30px);
	opacity: 0;
}
.fadeInRight.appear{
	transform: translateX(0px);
	opacity: 1;
}

@keyframes Rotation { 
    0%{ transform:rotate(0);}
    100%{ transform:rotate(360deg); }
}
@keyframes BtnCircle { 
    0%{opacity: 1; transform: translateY(-50%) scale(0.1);}
    100%{opacity: 0.3; transform: translateY(-50%) scale(1);}
}
@keyframes BtnCircleHover { 
    0%{opacity: 0.3; transform: translateY(-50%) scale(0.1);}
    100%{opacity: 1; transform: translateY(-50%) scale(1);}
}
@keyframes FadeInUp {
    0%{opacity: 0; transform: translateY(30px);}
    100%{opacity: 1; transform: translateY(0);}
}
@keyframes FadeInRight {
    0%{opacity: 0; transform: translateX(-30px);}
    100%{opacity: 1; transform: translateX(0);}
}




/*----------
02.header
----------*/

header{
    position: relative;
}
header .header_top{
    width: calc(100% - 88px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    padding: 28px 20px 0;
    z-index: 100;
}

header .header_logo a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 160px;
}
header .header_logo .logo_symbol{
    animation: Rotation cubic-bezier(.7,.2,.3,.8) 1.2s forwards;
    animation-delay: .3s;
}
header .header_logo a:hover .logo_symbol{
    animation: Rotation linear 2s infinite;
}

header .header_logo .logo_text{
    width: 87px;
    height: 44px;
}
header .header_logo .logo_text path{
    fill: var(--color-main);
    transition: .6s ease;
}
header.open .header_logo .logo_text path{
    fill: #fff!important;
}

/* --- メニュー開閉ボタン --- */
.btn_menu{
    display: block;
    background: var(--color-sub-blue);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    padding: 24px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
    transition: .6s ease;
    filter: var(--filter-shadow);
}
.btn_menu .menu_line{
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    margin: 0 auto 6.5px;
    transition: cubic-bezier(.71,.12,.18,.81) .6s;
}
.btn_menu.open{
    padding: 24px 26px;
    background: #fff;
}
.btn_menu.open .menu_line{
    background-color: var(--color-sub-blue);
}
.btn_menu.open .menu_line:first-of-type{
    transform-origin:left top;
    transform: rotate(45deg) scaleX(1.25);
}
.btn_menu.open .menu_line:last-of-type{
    transform-origin:left bottom;
    transform: rotate(-45deg) scaleX(1.25);
}
.btn_menu.open .menu_line:nth-last-of-type(2){
    opacity: 0;
    transform: translateX(100%) scaleX(0);
    transform-origin: left;
}


/* --- CVボタン --- */
.cv_btn_g{
    display: flex;
    gap: 12px;
}
.cv_btn_g.sp{
    display: none;
}
.cv_btn_g > [class^="cv_btn_"]{
    width: 210px;
    display: block;
    border-radius: 28px;
    filter: var(--filter-shadow);
}
.cv_btn_g > [class^="cv_btn_"] a{
    display: flex;
    align-items: center;
    justify-content: center;
	position: relative;
	padding: 16px 42px 14px 32px;
	font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
	border-radius: 28px;
}
.cv_btn_form{
    background: var(--color-green);
    color: #fff;
    position: relative;
}
.cv_btn_tel{
    background: #fff;
    color: var(--color-sub-blue);
    position: relative;
}

[class^="cv_btn_"] a::before{
    content: '';
	display: block;
	width: 30px;
	height: 30px;
    background: #fff;
    opacity: 0.3;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    transition: .4s ease;
    animation: BtnCircle .4s ease forwards;
}
[class^="cv_btn_"] a::after{
    content: '';
	display: block;
	width: 16px;
	height: 12px;
    background-color: #fff;
    mask-image: url(../images/common/icon_mail.svg);
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
    mask-position: 0 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 19px;
    transition: .4s ease;
}
[class^="cv_btn_"] a:hover::before{
    animation: BtnCircleHover .4s ease forwards;
}
.cv_btn_form a:hover::after{
    background-color: var(--color-green);
}

.cv_btn_tel a::before{
    background: var(--color-sub-blue);
    opacity: 0.3;
}
.cv_btn_tel a::after{
	width: 14px;
	height: 14px;
    background-color: var(--color-sub-blue);
    mask-image: url(../images/common/icon_tel.svg);
    right: 20px;
}
.cv_btn_tel a:hover::after{
    background-color: #fff;
}


/* --- ナビゲーション --- */
.header_nav{
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgb(from var(--color-main) r g b / 95%);
    z-index: 20;
    transform: translateY(-110%);
    transition: cubic-bezier(.71,.12,.18,.81) .8s;
    overflow: hidden;
}
.header_nav::before{
    content: '';
    display: block;
    width: 460px;
    height: 460px;
    background: url(../images/common/bg_circle.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    bottom: -150px;
    right: -70px;
    opacity: 0.1;
}
header.open .header_nav::before{
    animation: Rotation linear 12s infinite;
}
header.open .header_nav{
    transform: translateY(0);
}
.header_nav .nav_inner{
    overflow-y: scroll;
    overflow-x: hidden;
    width: 100%;
    height: 100vh;
}
.header_nav .contents_in{
    display: flex;
    gap: 40px;
    color: #fff;
    padding-top: 140px;
    opacity: 0;
    transform: translateY(-50px);
    transition: .8s ease;
    transition-delay: 1s;
}
header.open .header_nav .contents_in{
    opacity: 1;
    transform: translateY(0);
}

.header_nav .nav_list{
    width: 50%;
}
.header_nav .nav_list .list_title{
    font-weight: 600;
    font-style: italic;
    font-size: 30px;
    margin-bottom: 30px;
    letter-spacing: 0.02em;
}
.nav_list li{
    margin-bottom: 20px;
    line-height: 1.3;
}
.nav_list li:last-of-type{
    margin-bottom: 0;
}
.nav_list li a{
    display: block;
    width: fit-content;
    position: relative;
    padding-left: 40px;
}
.nav_list li a::before{
	content: '';
	display: block;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
	position: absolute;
	top: 7px;
    left: 7px;
	transition: .4s ease;
}
.nav_list li a::after{
    content: '';
	display: block;
	width: 20px;
	height: 20px;
    background: #fff;
    opacity: 0.2;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0px;
    transition: .4s ease;
}
.nav_list li a:hover::before{
    transform: scale(3.66);
}
.nav_list li a:hover::after{
    opacity: 1;
    background: var(--color-sub-blue);
    transform: scale(0.35);
}
.purchase{
    --service-color: var(--color-rightblue);
}
.disposal{
    --service-color: var(--color-green);
}
.collect{
    --service-color: var(--color-orange);
}
.service_list ul{
    display: block;
    border-left: 5px solid var(--service-color);
    padding: 12px 0 16px 16px;
    margin-bottom: 20px;
}
.service_list .service_cat{
    font-size: 20px;
    font-weight: 600;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.service_list .service_cat .num{
    display: inline-block;
    font-size: 36px;
    color: var(--service-color);
    margin-right: 16px;
    width: 40px;
    text-align: center;
}
.service_list li a{
    margin-left: 16px;
}

.service_list li a::before,
.service_list li a::after{
    background: var(--service-color);
}
.service_list li a:hover::after{
    background: #fff;
}


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

}

@media all and (max-width: 767px){
    header .header_top{
       width: calc(100% - 70px); 
       padding: 20px 5.35% 0 5.35%;
    }
    header .header_logo a{
        width: 108px;
    }
    header .header_logo .logo_symbol{
        width: 36px;
    }
    header .header_logo .logo_text{
        width: 59px;
        height: 30px;
    }

    .btn_menu{
        width: 50px;
        height: 50px;
        padding: 15px 15px;
        right: 5.35%;
        top: 12px;
    }
    .btn_menu.open{
        padding: 16px 17px;
    }

    .cv_btn_g{
        width: 100%;
    }
    .cv_btn_g.sp{
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
    }
    .cv_btn_g.fix{
        position: fixed;    
        bottom: 0;
        left: 0;
        justify-content: center;
        padding: 0 5.35% 10px;
        transition: .4s ease;
        opacity: 0;
        transform: translateY(100%);
    }
    .cv_btn_g.fix.show{
        opacity: 1;
        transform: translateY(0);
    }
    header.open .cv_btn_g.fix{
        opacity: 0;
        transform: translateY(100%);
    }
    .cv_btn_g > [class^="cv_btn_"]{
        max-width: 162px;
        width: 50%;
    }
    .cv_btn_g > [class^="cv_btn_"] a{
        padding: 14px 32px 14px 12px;
        font-size: 15px;
        justify-content: flex-start;
    }
    .cv_btn_form a::before, 
    .cv_btn_tel a::before{
        right: 10px;
    }
    .cv_btn_form a::after{
        right: 17px;
    }
    .cv_btn_tel a::after{
        right: 18px;
    }

    .header_nav::before{
        width: 280px;
        height: 280px;
        bottom: -110px;
        right: -50px;
    }
    .header_nav .contents_in{
        padding-top: 100px;
        display: block;
    }
    .header_nav .nav_list{
        width: 100%;
        margin-bottom: 50px;
    }
    .header_nav .nav_list .list_title{
        font-size: 24px;
        margin-bottom: 20px;
    }
    .nav_list li{
        margin-bottom: 18px;
    }
    .nav_list li a{
        margin-left: 25px;
    }
    .service_list ul{
        padding: 4px 0 8px 12px;
    }
    .service_list .service_cat{
        font-size: 18px;
    }
    .service_list .service_cat .num{
        font-size: 28px;
        width: 32px;
    }
    .service_list li a{
        margin-left: 8px;
    }
}


/*----------
03.footer
----------*/
#contact_area, footer{
    display: block;
    background-color: linear-gradient(0deg, var(--color-main) 80%, var(--color-sub-blue) 100%);
    color: #fff;
    position: relative;
}
#contact_area{
    background: url(../images/common/bg_contact_pc.webp) no-repeat top center;
    background-size: cover;
}
#contact_area::before,
footer::before{
    content: '';
    display: block;
    width: 100%;
    height: 80px;
    background-color: var(--color-sub-blue);
    mask-image: url(../images/common/bg_section_pc.png);
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
    mask-position: 0 0;
    position: absolute;
    top: -79px;
    left: 0;
}
#contact_area::before{
    background-color: var(--color-main);
}
#contact_area .contents_in{
    padding: 80px 0 140px;
}
#contact_area .h2_en{
    color: #fff;
}
#contact_area .point_g{
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}
#contact_area .point_box{
    display: flex;
    flex-direction: column;
    width: 30%;
}
#contact_area .point_box h3{
    flex-grow: 1;
    text-align: center;
}
#contact_area .point_num{
    display: block;
    width: 120px;
    margin: 0 auto 16px;
    padding: 4px 20px 2px;
    background: #fff;
    border-radius: 18px;
    text-align: center;
    color: var(--color-green);
    font-size: 12px;
    font-weight: 300;
}
#contact_area .point_num span{
    font-size: 24px;
    margin-left: 4px;
    font-weight: 200;
}
#contact_area .point_box p{
    font-size: 14px;
}

.contact_btn_g{
    display: flex;
    gap: 40px;
}
.contact_btn_g .contact_btn{
    width: 50%;
    position: relative;
}
.contact_btn_g .contact_btn::before{
    content: '';
    display: block;
    width: 120px;
    height: 100%;
    background: url(../images/common/img_telbtn.webp) no-repeat center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.contact_btn_g .contact_btn a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 36px 70px 38px 144px;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}
.contact_btn_g .cv_btn_tel .number{
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 4px;
}
.contact_btn_g .cv_btn_tel .number span{
    font-size: 18px;
}
.contact_btn_g .cv_btn_tel .time{
    font-size: 14px;
}
.contact_btn_g .cv_btn_form{
    font-size: 24px;
    font-weight: 600;
}
.contact_btn_g .cv_btn_form::before{
    background: url(../images/common/img_mailbtn.webp) no-repeat center;
    background-size: cover;
}
.contact_btn_g [class^="cv_btn_"] a::before{
    right: 18px;
}
.contact_btn_g [class^="cv_btn_"] a::after{
    right: 25px;
}
.contact_btn_g .cv_btn_tel a::after{
    right: 26px;
}

footer{
    background-image: url(../images/common/gradation_blue.png);
    background-color: var(--color-main);
    background-repeat: repeat-x;
    background-size: 1800px auto;
}
footer::after{
    content: '';
    display: block;
    width: 320px;
    height: 320px;
    background: url(../images/common/bg_circle.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    bottom: -110px;
    right: -50px;
    opacity: 0.1;
}
.footer_cnt{
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 0;
}
.footer_logo{
    width: 160px;
    margin-bottom: 24px;
}
.footer_add_g .company_name{
    display: block;
    font-size: 18px;
    margin-bottom: 16px;
}
.footer_add_g .company_name span{
    display: inline-block;
    padding: 2px 10px;
    font-size: 14px;
    border: 1px solid #fff;
    border-radius: 10px;
    margin-right: 10px;
}
.footer_add_g .add{
    font-size: 14px;
    line-height: 1.5;
}
.footer_nav_g{
    display: flex;
    gap: 40px;
    max-width: 500px;
    width: 60%;
}
.footer_nav_g ul{
    width: 50%;
}
.footer_nav_g li{
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.3;
}
.footer_nav_g .list_title{
    font-weight: 600;
    padding-bottom: 12px;
    margin-bottom: 16px;
    position: relative;
}
.footer_bottom{
    padding: 0 0 24px;
}
.footer_bottom .copyright{
    font-size: 10px;
}

.footer_add_g .sponsor{
    max-width: 340px;
    margin-top: 30px;
}
.footer_add_g .sponsor a{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    transition: .4s ease;
}
.footer_add_g .sponsor a:hover{
    opacity: .7;
}
.footer_add_g .sponsor .logo{
    width: 100px;
}
.footer_add_g .sponsor .text{
    width: calc(100% - 116px);
    font-size: 13px;
    line-height: 1.5;
    padding-top: 6px;
}

@media all and (max-width: 1024px){
    #contact_area .point_box{
        width: 31.5%;
    }
    #contact_area .point_box h3{
        font-size: 20px;
    }
    .contact_btn_g{
        gap: 4%;
    }
    .contact_btn_g .contact_btn::before{
        width: 100px;
    }
    .contact_btn_g .contact_btn a{
        padding: 28px 54px 26px 118px;
    }
    .contact_btn_g .cv_btn_form{
        font-size: 20px;
    }
    .contact_btn_g .cv_btn_tel .number{
        font-size: 20px;
    }
    .contact_btn_g .cv_btn_tel .number span{
        font-size: 14px;
    }
    .footer_nav_g{
        gap: 16px;
    }
}

@media all and (max-width: 767px){
    #contact_area::before, footer::before{
        mask-image: url(../images/common/bg_section_sp.png);
        height: 40px;
        top: -39px;
    }
    #contact_area .contents_in{
        padding: 50px 0 90px;
    }
    #contact_area .h2_style01{
        margin-bottom: 50px;
    }
    #contact_area .point_g{
        flex-direction: column;
        gap: 20px;
    }
    #contact_area .point_box{
        width: 100%;
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
    }
    #contact_area .point_num{
        width: 78px;
        height: 78px;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 12px;
    }
    #contact_area .point_num span{
        margin-left: -3px;
        font-size: 28px;
    }
    #contact_area .point_box h3{
        font-size: 18px;
        text-align: start;
    }
    .contact_btn_g{
        flex-direction: column;
        gap: 20px;
    }
    .contact_btn_g .contact_btn{
        width: 100%;
    }
    .contact_btn_g .contact_btn a{
        padding: 28px 42px 26px 112px;
        min-height: 100px;
    }
    .contact_btn_g .cv_btn_form{
        font-size: 18px;
    }
    .contact_btn_g .cv_btn_tel .time{
        font-size: 12px;
    }
    .contact_btn_g .cv_btn_tel .number span{
        font-size: 12px;
    }
    .contact_btn_g [class^="cv_btn_"] a::before{
        right: 12px;
    }
    .contact_btn_g [class^="cv_btn_"] a::after{
        right: 19px;
    }
    .contact_btn_g .cv_btn_tel a::after{
        right: 20px;
    }

    footer::after{
        width: 240px;
        height: 240px;
        bottom: -80px;
        right: -50px;
    }
    .footer_cnt{
        padding: 50px 0 40px;
        flex-direction: column;
    }
    .footer_logo{
        width: 108px;
        margin: 0 auto 20px;
    }
    .footer_add_g{
        text-align: center;
    }
    .footer_add_g .company_name span{
        font-size: 12px;
        padding: 2px 10px 1px;
    }
    .footer_add_g .company_name{
        font-size: 16px;
    }
    .footer_nav_g{
        flex-direction: column;
        gap: 28px;
        width: 100%;
        max-width: none;
    }
    .footer_nav_g ul{
        width: 100%;
    }
    .footer_bottom .copyright{
        text-align: center;
    }
    .footer_add_g .sponsor{
        width: fit-content;
        margin: 30px auto 0;
    }
    .footer_add_g .sponsor a{
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .footer_add_g .sponsor .text{
        width: fit-content;
        padding: 0;
    }

}







@media screen and (orientation: portrait) {
/* 画面の幅より高さが大きい時(スマホ・タブレット等画面が縦長の時) */

}
