@charset "utf-8";

img{
    width: 100%;
}

*{
    box-sizing: border-box;
}

html{
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    overflow: hidden;
}

section{
    padding: 10% 0;
}

.inner{
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
}

.ttl_en{
    font-size: 48px;
    font-weight: 800;
    border-bottom: 3px solid #000;
    width: fit-content;
    margin: 0 auto;
    letter-spacing: 1.55px;
    
}

.ttl_en::first-letter{
    color: #de0012;
}

h4{
    font-size: 18px;
}

.ttl{
    font-size: 16px;
    text-align: center;
    font-weight: 700;
}


.is-sp{
    display: none;
}

/* header */

header {
	height: 100%;
    max-height: 60px;
	border-bottom: 1px solid #eeeeee;
}

.header_inner {
    padding: 0 2%;
}

header a {
	color: #22a973;
	text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
}

nav a::after{
    content: "/";
    margin: 0 10px 0 12px;
    pointer-events: none;
}

nav li:last-child a::after {
    content: "";
    padding: 0;
}

nav ul li:nth-last-child(2) a::after{
    content: "";
    padding: 0;
}

.nav-contact {
    background:#22a973;
    color: white;
    padding: 3px 0 5px 17px;
    border-radius: 50px;
    transition: all .2s;
}
.nav-contact:hover{
    background: #137d54;
}

header ul li {
	list-style: none;
    padding:0 0 0 10px;
}

header ul li a{
    position: relative;

}


header ul li .pl::before{
    content: '';
    position: absolute;
    bottom: -15%;
    left: 0;
    width: 90%;
    height: 2px;
    background:#22a973;
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: left top;

}

header ul li .pl:hover::before{
    transform: scale(1,1);
}

header .menu {
	display: flex;
    flex-wrap: nowrap;
    justify-content: right;
    line-height: 60px;
    width: 80%;
}

header h1#logo {
	width: 15%;
	float:left;
    line-height: 60px;
}

header nav#global-navi {
	float:right;
    width: 0%;
}

.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    background-color: rgba(255,255,255,0.95);
}


/* mv */

section#mv {
    background: url(../img/mv.png) no-repeat center bottom / cover;
    height: 86vh;
    padding: 60px 0 0;
}

p.mv-text {
    text-align: center;
    color: white;
    font-size: 4em;
    padding-top: 16vh;
    text-shadow: 1px 2px 4px #272727;
    font-weight: 700;
}

/* about */

#about {
    padding: 10% 0 2%;
    position: relative;
}

.about_bg{
    position: absolute;
    width: 100%;
    top: 0;
    z-index: -1;
    opacity: 1;
}

.about_container{
    display: flex;
    gap: 5%;
}

.about_left-content{
    width: 45%;
}

.about_right-content{
    width: 50%;
}

.about_head{
    display: flex;
    flex-wrap: nowrap;
    align-items: end;
    padding: 0 0 5%;
    width: 100%;
    gap: 5%;
}

.about_ttl{
    border-bottom: none;
    font-size: 36px;
    width: 30%;
    margin: 0 0 0 0;
}

.about_subttl{
    padding: 0 0 1% 0%;
    margin: 0 0 2%;
    border-bottom: 1px solid #000;
    white-space: nowrap;
    font-size: 16px;
    width: 65%;
    text-align: right;
    font-weight: 700;
}

.about_txt{
    text-align: left;
    line-height: 1.8;
    width: 100%;
    margin: 0 auto;
    font-size: 16px;
}

    /*service*/

#service .attention{
    display: block;
    text-align: center;
    padding: 1% 0 0 0;
    font-size: 16px;
}

#service h3{
    text-align: left;
    font-size: 36px;
    font-weight: 500;
    vertical-align: bottom;
    margin: 0 0 40px;
    position: relative;
    letter-spacing: -1.55px;
    font-weight: 500;
}

#service h3 .shikaku{
    color:#137d54 ;
}

#service h3 .shikaku-color{
    color: #22a973;
}

#service h3 .shikaku,#service h3 .shikaku-color{
    font-size: 24px;
}

#service h3 span{
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .8px;
}



.delivery{
    padding:10% 0;
}

.delivery_container{
    display: flex;
    gap: 3%;
}

.delivery_content{
    display: flex;
    background: #137d54;
    border-radius: 20px;
    padding: 5%;
}

.delivery_content img{
    display: block;
    width: 50%;
}

.delivery_content dl{
    width: 50%;
    color: #fff;
    text-align: left;
}

.delivery_content dt{
    padding: 0 0 3%;
}

.delivery_content dd{
    font-weight: 400;
}


.housing_container,
.lp_container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3%;
    padding: 0 0 10%;
    width: 100%;
}

.lp_container{
    justify-content: flex-start;
}

.housing_content,
.lp_content{
    background: #22a973;
    border-radius: 20px;
    width: calc(100% / 3 - 3% * 2 / 3);
    padding: 3% 0;
}

.housing_content img,
.lp_content img{
    height: 80px;
    object-fit: contain;
}

.housing_content h4,
.lp_content h4{
    color: #fff;
}


.gasoline_bg{
    position: relative;
    width: 100%;
}

.gasoline_bg::before{
    content: '';
    background: #d3eee3;
    position: absolute;
    width: 92%;
    height: 100%;
    left: 0;
    top: -10%;
    border-radius: 0 120px 0 0;

}

.gasoline{
    position: relative;
}




#service .gasoline ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3%;
}

#service .gasoline li{
    width: calc(100% / 3 - 3% * 2 / 3);
    border: #22a973 solid;
    border-width: 2px 2px 14px;
    padding: 2% 0;
    border-radius: 10px;
    background: #fff;
}

#service .gasoline ul > :nth-child(n + 4){
    margin: 3% 0 0;
}

#service .gasoline ul li h4{
    color: #22a973;
    font-weight: 500;
    padding: 5% 0 0;
}

#service .gasoline ul li img{
    object-fit: contain;
    height: 80px;
}


/*gas_station*/

#gas_station{
    background:#d3eee3;
}

#gas_station .gas_container{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: #fff;
    padding: 5%;
    margin-top: 5%;
}

#gas_station .gas_left,
#gas_station .gas_right
{
    width: calc(50% - 40px * 1 / 2);
}

#gas_station h3{
    font-size: 24px;
    font-weight: 500;
}

#gas_station dl{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    font-size: 18px;
    padding: 5% 0 8%;
}
#gas_station dl dt,
#gas_station dl dd{
    text-align: left;
    margin-bottom: 3%;
}

#gas_station dl dt:last-of-type,
#gas_station dl dd:last-of-type{
    margin-bottom: 0;
}

#gas_station dl dt{
    width: 38%;
    text-align: right;
    margin-right: 2%;
    display: flex;
    justify-content: end;
    align-items: center;
}
#gas_station dl dd{
    width: 56%;
    padding-left: 4%;
    border-left: #22a973 solid 3px;
}

#gas_station .map_link a{
    text-decoration: none;
    background: #22a973;
    color: #fff;
    width: 30%;
    margin: 0 auto;
    padding: 10px 25px;
    border-radius: 20px;
}

#gas_station dl dd span{
    color: #de0012;
}

#gas_station .map_link a:hover{
    background: #005952;
    transition: all .3s;
}

/*company*/

#company{
    padding-right: 0;
}

.company_bg{
    position: relative;
    padding: 0 0 0 6%;
}

.company_head{
    background: #fff;
    position: absolute;
    bottom: -1%;
    left: -1%;
    padding: 4% 12% 2% 12%;
    border-radius: 0 25px 0 0;
}

.company_head h2{
    font-size: 16px;
}

.company_head p{
    font-size: 36px;
}

.logo{
    display: block;
    width: 40%;
    padding: 3% 0 10% 10%;
}

.inner-s{
    max-width: 580px;
    width: 100%;
    margin: 0 auto;
}

#company dl{
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    font-weight: 500;
    font-size: 20px;
}

#company dt,#company dd{
    border-bottom: 1px dotted #000;
    padding: 3% 0;
}

#company dt:nth-of-type(9),#company dd:last-child{
    border-bottom: none;
}

#company dt{
    width: 20%;
}

#company dd{
    width: 80%;
}

/*info-link*/

#info-link{
    background: #d3eee3;
    padding: 5% 0;
}

.info-link_container{
    display: flex;
    justify-content: center;
    gap: 4%;
    transition: all .2s;
}

.info-link_container a {
    width: calc((100% - 8%) / 3);
}

.info-link_container a img{
    transition: all .2s;
}
.info-link_container a img:hover{
    opacity: .7;
}


/*footer*/

.tme{
    width: 100%;
    background: #137d54;
    padding: 1% 0;
}

.tmo{
    width: 100%;
    background: #f5f3ea;
    padding: 1% 0;
}

.tmo  img,
.tme  img{
    width: 40%;
}

.shop_container{
    display: flex;
}
.shop_container a img{
    width: 40%;
}

.shop_container a:first-child{
    background: #005952;
}

.shop_container a:last-child{
    background: #f18900;
}



footer small{
    background: #000;
    color: #fff;
    display: block;
    letter-spacing: -0.5px;
    padding: 2% 0;
}

/*page-top*/

.page-top{
    color: white;
    display: inline-block;
    background: #22a973;
    font-size: 220%;
    position: fixed;
    bottom: 4%;
    right: 2%;
    padding: 0 10px 5px;
    opacity: 0;
    visibility: hidden;
    transition: all .4s;
}

.active{
    opacity: 1;
    visibility: visible;
}

footer .page-top a{
    text-decoration: none;
    color: inherit;
}

footer .page-top:hover{
    opacity: .7;
}

@media screen and (max-width: 1280px) {
    .inner{
        padding: 0 4%;
    }
    header .menu {
        display: block;
        width: 100%;
    }

    header h1#logo {
        padding: 0 0 0 0;
    }

    header nav {
        position: fixed;
        width: 100%;
        top: 0;
        right: -100%;
        background:rgba(255, 255, 255, 0.95);
        height: 100%;
        padding-top: 60px;
    }

    header nav#global-navi {
        float:right;
        width: 100%;
    }

    #global-navi ul li {
        width: 100%;
        padding-left: 0;
    }

    header ul li:first-child{
        display:block;
    }

    header nav ul li a {
        color: #000;
        display: block;
        width: 100%;
    }

    header nav ul li .pl:hover{
        color: #005952;
    }

    .nav-contact{
        width: 50%;
        margin: 0 auto;
        padding: 0 ;
        line-height: 4;
    }

    nav a::after{
        display: none;
    }

    header .btn-gnavi {
        position: fixed;
        top: 15px;
        right: 30px;
        width: 30px;
        height: 24px;
        z-index: 3;
        cursor: pointer;
        transition: all 400ms;
        -webkit-transition:all 400ms;
    }

    header .btn-gnavi span {
        position: absolute;
        width: 30px;
        height: 4px;
        background: #666;
        border-radius: 10px;
        -webkit-transition: all 400ms;
        transition: all 400ms
    }

    header .btn-gnavi span:nth-child(1) {
        top: 0;
    }

    header .btn-gnavi span:nth-child(2) {
        top: 10px;
    }

    header .btn-gnavi span:nth-child(3) {
        top: 20px;
    }

    header .btn-gnavi.hb-open {
        transform: rotate(180deg);
        -webkit-transform:rotate(180deg);
    }

    header .btn-gnavi.hb-open span:nth-child(1) {
        width: 24px;
        transform: translate(-7px, 17px) rotate(45deg);
        -webkit-transform: translate(-7px, 17px) rotate(45deg);
    }

    header .btn-gnavi.hb-open span:nth-child(3) {
        width: 24px;
        transform: translate(-7px, -17px) rotate(-45deg);
        -webkit-transform: translate(-7px, -17px) rotate(-45deg);
    }

    header nav#global-navi {
        width: 100%;
    }

    header ul li .pl::before{
        content: '';
        position: static;
        bottom: -15%;
        left: 0;
        width: 90%;
        height: 2px;
        background:#2b85da;
        transition: all .3s;
        transform: scale(0,0);
        transform-origin: left top;
        display: none;
    }
    
    header ul li .pl:hover::before{
        transform: scale(0,0);
    }
    

    #mv{
        margin-top: 56px;
    }

    p.mv-text{
        font-size: 2.8em;
        padding-top: 3vh;
    }

    .about_head{
        justify-content: center;
        width: 60%;
    }
    
    .about_ttl{
        font-size: 24px;
        margin: 0;
    }
    .about_subttl{
        padding: 0 0 1% 20%;
        margin: 0 0 1%;
        font-size: 16;
        border-bottom: 1px solid #000;
        white-space: nowrap;
    }

    .about_txt{
        font-size: 16px;
    }

    #gas_station ul li{
        width: calc(100% / 2 - 3% * 1 / 2);
    }

    }
    @media (max-width:1280px) and (min-width: 649px) {
        .nav-contact{
            width: 20%;
        }
    
    
    }

    @media screen and (max-width: 648px){

        .is-pc{
            display: none;
        }

        .is-sp{
            display: block;
        }

        h2{
            font-size: 200%;
        }

        p{
            font-size: 80%;
        }

        .ttl{
            font-size: 100%;
            padding-top: 2%;
        }

        .ttl_en{
            font-size: 40px;
        }

        section{
            padding: 8% 0;
        }

        header h1#logo {
            width: 60%;
        }

        header .btn-gnavi{
            right: 40px;
        }


        section#mv{
            background: url(../img/mv.png) no-repeat 30% top / cover ;
            height: 60vh;
        }

        p.mv-text{
            font-size: 1.8em;
            padding-top: 10vh;
        }

        #about {
            background: url(../img/about_bg.png) no-repeat 10% top / cover;
            padding: 20% 0 10%;
        }
        
        .about_container{
            display: block;
        }
        
        .about_left-content{
            width: 100%;
        }

        .about_head{
            display: block;
            width: 100%;
        }
        
        .about_ttl{
            font-size: 36px;
            margin: 0 auto 2%;
            border-bottom: 3px solid #000;
            width: fit-content;
                }

        .about_subttl{
            padding:0;
            margin:0;
            font-size: 16px;
            border-bottom:none;
            text-align: center;
            display: inline;
        }
        
        .about_txt{
            padding: 5% 0 0 0;
            line-height: 1.8;
            letter-spacing: -1px;
        }

        #service{
            padding: 20% 0 10%;
        }

        #service .attention{
            font-size: 12px;
        }
        
        #service h3{
            font-size: 24px;
            padding: 0 0 0 7%;
            margin: 0 0 8%;
        }
        
        #service h3 span{
            font-size: 16px;
        }
  
        
        #service .inner .gasoline .gasoline_h3{
            padding-left: 9.5%;
        }

        #service h3 .shikaku-color{
            font-size: 24px !important;
        }
        
        .delivery_container{
            flex-direction: column;
            width: 90%;
            margin: 0 auto;
            gap: 0;
        }
        
        .delivery_content{
            margin-bottom: 5%;
        }

        .delivery_content h4{
            font-size: 20px;
        }
        
        .delivery_content img{
            width: 50%;
            height: 50%;
            margin: auto 0;
        }
        
        .delivery_content dl{
            width: 50%;
            font-size: 16px;
        }
        
        .housing_container,
        .lp_container{
            width: 100%;
            display: block;
        }
        
        .housing_content,
        .lp_content{
            width: 90%;
            padding: 3% 2%;
            margin:0 auto 5%;
        }
        
        
        .housing_content h4,
        .lp_content h4{
            font-size: 20px;
        }
        
        
        #service .gasoline h3 span{
            margin-left: -10px;
            font-size: 14px;
        }

        #service .gasoline ul{
            justify-content: center;
            gap: 5%;
        }
        
        #service .gasoline li{
            width: calc(100% / 2.2 - 5% * 1 / 2);
        }
        
        #service .gasoline ul > :nth-child(n + 5){
            margin: 0 0 0;
        }

        #service .gasoline ul > :not(:nth-child(n + 7)){
            margin-bottom: 3%;
        }
        
        #service .gasoline ul li h4{
            font-size: 16px;
        }

        .gasoline_bg::before{
            width: 100%;
            top: -5%;
            border-radius: 0;
        }

        #gas_station{
            padding: 20% 0 10%;
        }

        #gas_station h3{
            padding-top: 2%;
            font-size: 20px;
        }

        #gas_station .gas_container{
            display: block;
            padding: 5% 5% 10%;
        }

        #gas_station .gas_right,
        #gas_station .gas_left{
            width: 100%;
        }

        #gas_station dl{
            font-size: 16px;
        }

        #gas_station dl dt{
            width: 25%;

        }

        #gas_station dl dd{
            width: 65%;
        }

        #gas_station dl dd:nth-of-type(3n){
            letter-spacing: -0.8px;
        }

        #gas_station dl dd:last-of-type{
            color: #de0012;
            letter-spacing: -0.8px;

        }

        #company{
            padding:20% 0 5%;
        }

        .company_bg{
            background: url(../img/company_bg.png) no-repeat 15% center / cover;
            height: 20vh;
            padding: 0 0 0 0;
        }

        .company_head{
            bottom: -1%;
            left: 50%;
            transform: translateX(-50%);
            padding: 5% 12% 5% 12%;
            border-radius: 25px 25px 0 0;
        }


        .company_head h2{
            font-size: 16px;
        }

        .company_head p{
            font-size: 24px;
        }

        .logo{
            width: 60%;
            padding:8% 0 5%;
            margin: 0 auto;
        }

        #company dl{
            font-size: 16px;
            padding: 5% 10%;
        }

        #company dt,#company dd{
            padding: 5% 0;
        }

        #company dt:nth-of-type(9),#company dd:last-child{
            border-bottom: none;
        }

        #company dt{
            width: 30%;
        }

        #company dd{
            width: 70%;
        }

        #info-link{
            padding-bottom: 3%;
        }

        .info-link_container{
            display: block;
        }


        .info-link_container a img{
            width: 70%;
            margin-bottom: 5%;
        }

        .tme,
        .tmo{
            padding: 2% 0;
        }

        .tme img,
        .tmo img{
            width: 90%;
        }

        .shop_container a img{
            width: 100%;
        }

        footer small{
            font-size: 14px;
        }

        .page-top{
            font-size: 16px;
            padding: 8px 12px 10px;
        }

            }