@charset "utf-8";

/* -------------------------------- root -------------------------------- */
:root{
    --header_height: 13vh;
    --font_family_nav: "Oswald", sans-serif;
    --font-family_p: "Noto Sans JP", sans-serif;
    --font_size_p: clamp(14px , 10vw, 17px);
    --lineheight_p: 1.4;
    --font_color: #343434;
    --accent_color: #F47C32;
}
  

@media all and (max-width:767px) {
    :root{
        
    }
}

.test{
    background-color: #D9D9D9;
}

/* ---------------------------------------------------------------------- */

html {
    scroll-padding-top: var(--header_height);
	scroll-behavior: smooth;
    font-family: var(--font-family_p);
    font-size: var(--font_size_p);
    line-height: var(--lineheight_p);
    font-weight: 400;
    font-style: normal;
    color: var(--font_color);
}

a {
    color: var(--font_color);
}

img {
    width: 100%;
    max-width:100%
}

.sp{
    display: none;
}

@media (max-width:767px) {
    .sp{
        display: block;
    }

    .pc{
        display: none;
    }
    
}

/* -------------------------------- header -------------------------------- */

header{
    width: 100vw;
    max-height: 140px;
    height: var(--header_height);
    background-color: rgba(255, 255, 255, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

header .header_inner{
    width: 90%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .header_inner h1{
    display: flex;
    align-items: center;
    max-width: 387px;

}

header .header_inner nav{
    flex: 1;
    max-width: 800px;
    margin-left: 50px;
    font-family: var(--font_family_nav);
    font-weight: 700;
    font-size: 1.47rem;
}

header .header_inner nav ul{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
}

header .header_inner nav ul li a{
    transition: all 0.3s ease;
    background: #000;
    background: linear-gradient(180deg,  rgba(0,0,0,1) 1em, rgba(255,198,69,1) 5em, rgba(245,94,0,1));
    background-size:100% 6em;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

header .header_inner nav ul li a:hover{
    font-size: 1.2em;
    background-position: 0 100%;
}  

@media (max-width:767px) {

    header{
        padding: 1rem 0;
        max-height: 50px;
    }
    
    .openbtn{
        position: relative;
        width: 30px;
        height: 30px;
        cursor: pointer;
    }

    .openbtn span{
        content: "";
        position: absolute;
        top: 10px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #343434;
    }

    .openbtn span:last-child{
        top: 20px;
    }

    header .header_inner h1{
        width: 70%;
    }

    .sp_nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        visibility: hidden;
        opacity: 0;
        background-color: rgba(0, 0, 0, 0.5);
        transition: all 0.5s;
    }

    .sp_nav.is-active{
        visibility: visible;
        opacity: 1;
    }

    .sp_nav nav{
        width: 80%;
        height: 100%;
        background-color: #fff;
        position: fixed;
        top: 0;
        left: 100%;
        transition: all 1s;
    }

    .sp_nav.is-active nav{
        left: 20%;
    }

    .sp_nav_inner{
        overflow-y:scroll;
        height: 100vh;
        width: 100%;
        position: relative;
    }

    .sp_nav nav ul{
        position:absolute;
        top: 15%;
        right: 1rem;
        font-family: var(--font_family_nav);
        font-weight: 700;
        font-size: 1.47rem;
    }

    .sp_nav nav ul li a{
        transition: all 0.3s ease;
        background: #000;
        background: linear-gradient(180deg,  rgba(0,0,0,1) 1em, rgba(255,198,69,1) 5em, rgba(245,94,0,1));
        background-size:100% 6em;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .sp_nav nav ul li a:hover{
        font-size: 1.2em;
        background-position: 0 100%;
    }  

    .sp_nav nav ul li{
        margin-bottom: 2em;
    }

    .sp_nav nav ul li span{
        font-size: 1rem;
        padding-left: 5em;
        position: relative;
        -webkit-text-fill-color: #000;
    }

    .sp_nav nav ul li span::before{
        content: "";
        position: absolute;
        left: 1em;
        top: 50%;
        width: 3em;
        height: 1px;
        background-color: #343434;
    }

    .closebtn{
        position: relative;
        width: 30px;
        height: 30px;
        top: 5%;
        left: 85%;
        cursor: pointer;
    }

    .closebtn span{
        content: "";
        position: absolute;
        top: 10px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #343434;
        transform: rotate(30deg);
    }

    .closebtn span:last-child{
        top: 10px;
        left: 0;
        transform: rotate(-30deg);
    }

}

/* -------------------------------- mv -------------------------------- */

#mv{
    height: 100vh;
    background: url(../img/mv_bg.jpg) no-repeat;
    background-size: cover;
    background-position: bottom center;
    position: relative;
    font-family: var(--font-family_p)
    
}

#mv .mv_inner{
    height: 80%;
    position: relative;
    text-shadow: 5px 5px 5px rgba(0,0,0,0.5);
    text-align: right;
    font-weight: 700;
    color: #fff;
}

#mv .mv_inner::before{
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(16,65,17);
    background: linear-gradient(-120deg, rgba(16,65,17,0.27) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 100%);
    clip-path: polygon(0 55%, 100% 0, 50% 100%, 0% 100%);
    position: absolute;
    top: 0;
    left: 0;
}

#mv .mv_inner div{
    width: 50%;
    position: absolute;
    bottom: 0;
    left: 5%;
}

#mv .mv_inner div img{
    max-width: 1100px;
}

#mv .mv_catch{
    font-size: 6.9rem;
    position: absolute;
    top: 35%;
    right: 15%;
    line-height: 1.1;
}

#mv .mv_name.pc{
    position: absolute;
    bottom: 0.5em;
    right: 10%;
    font-size: 4rem;
}

#mv .mv_catch .mv_catch_m{
    font-size: 4.9rem;
}

#mv .mv_catch .mv_catch_s{
    font-size: 3.6rem;
    padding-right: 1.5em;
    padding-left: 0.2em;
}

#mv .band{
    background: #000;
    color: #fff;
    padding: 0.5em 10% 0.5em 0;
    text-align: right;
    font-size: 1.7rem;
    letter-spacing: 0.2em;
}

#mv .scroll{
    width: 40%;
    background-color: #F2F2F2;
    font-family: var(--font_family_nav);
    font-weight: 700;
    font-size: 1.47rem;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 1em 3em;
    clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
}

#mv .scroll img{
    width: 1em;
    margin-left: 0.5em;
}

@media (max-width:767px) {

    #mv .mv_inner{
        height: 65%;
    }

    #mv .mv_inner::before{
        clip-path: polygon(0 55%, 100% 0, 60% 100%, 0% 100%);
    }

    #mv .mv_inner div{
        width: 65%;
        padding-bottom: 1rem;
    }

    #mv .mv_catch{
        width: 90%;
        font-size: 23.41vw;
        position: absolute;
        top: 30%;
        left: 50%;
        transform: translateX(-50%);
        line-height: 0.8;
    }

    #mv .mv_catch .mv_catch_s{
        font-size: 11.96vw;
    }

    #mv .mv_catch .mv_catch_m {
        font-size: 16.54vw;
    }

    #mv .mv_name.sp{
        font-size: 8vw;
        text-shadow: 5px 5px 5px rgba(0,0,0,0.5);
        text-align: right;
        font-weight: 700;
        color: #fff;
        padding-top: 1rem;
        padding-right: 0.5rem;
    }

    #mv .band{
        font-size: 1rem;
    }

}

/* -------------------------------- slider -------------------------------- */

#slider{
    max-height: 700px;
    background-color: #F2F2F2;
    padding-top: 50px;
    position: relative;
}

#slider::after{
    content: "";
    font-size: 1.47rem;
    width: calc(50% + 6em);
    height: 3em;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.swiper {
    width: 100%;
  }

#slider .swiper .swiper-wrapper {
    transition-timing-function: linear;
  }

.slider_wrap{
    position: relative;
}

.slider_catch{
    position: absolute;
    bottom: -3em;
    left: 10%;
    z-index: 1;
    background-color: #F2F2F2;
    padding: 1em;
    font-family: var(--font_family_nav);
    font-weight: 700;
    font-size: 2.67rem;
    line-height: 1.4;
}
.slider_catch span{
    color: var(--accent_color);
}

@media (max-width:767px) {
    .slider_catch{
        font-size: 1.5rem;
    }

    .swiper {
        margin-bottom: 50px;
      }
}

/* -------------------------------- section -------------------------------- */
section{
    position: relative;
}

.section_inner{
    width: 90%;
    margin: 0 auto;
    max-width: 1520px;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.vertical_title{
    font-family: var(--font_family_nav);
    font-weight: 700;
    font-size: 14.05rem;
    writing-mode: vertical-rl;
    min-width: 0;
}

.title_accent{
    color: var(--accent_color);
}

.bg_gray{
    background-color: #F7F7F7;
}

.title_wrap{
    width: 100%;
    position: absolute;
    top: -4.4rem;
    left: 50%;
    transform: translateX(-50%);
}

.text-right{
    text-align: right;
}

.title_wrap .section_title{
    display: inline-block;
    text-align: right;
}

.title_alp{
    font-family: var(--font_family_nav);
    font-weight: 700;
    font-size: 8.82rem;
    display: block;
}

@media (max-width:767px) {
    .vertical_title{
        font-size: 6rem;
    }

    .title_alp{
        font-size: 16.28vw;
    }

    .title_wrap{
        top: -2rem;
    }
}

/* -------------------------------- news -------------------------------- */
#news{
    padding: 100px 0 300px;
}

.section_inner .news_inner{
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    justify-content: space-between;
    min-width: 0;
}

.section_inner .news_inner ul{
    width: 100%;
    max-width: 669px;
    margin: 3em 0;
    min-width: 0;
}

.section_inner .news_inner ul li{
    border-bottom: solid 0.5px #707070;
    overflow-wrap:break-word;
    padding: 1.5rem 0;
    line-height: 1.8;
    width: 100%;
}

.section_inner .news_inner ul li time{
    margin-right: 2em;
}

.section_inner .news_inner ul li:last-child{
    text-align: right;
    border-bottom: none;
}

.section_inner .news_inner ul li .view-all{
    font-family: var(--font_family_nav);
    font-weight: 700;
    font-size: 1.05rem;
    position: relative;
    margin-right: 50px;
}

.section_inner .news_inner ul li .view-all::before{
    content: "";
    width: 40px;
    height:40px;
    border-bottom: solid 1px #707070;
    position: absolute;
    bottom: 0.3em;
    right: -50px;
}

.section_inner .news_inner ul li .view-all::after{
    content: "";
    width: 12px;
    height: 12px;
    border-right: solid 1px #707070;
    position: absolute;
    bottom: 0em;
    right: -48px;
    transform: rotate(-45deg);
}

@media (max-width:767px) {

    .section_inner .news_inner h2{
        width: 100%;
    }
    

    .section_inner .news_inner ul li {
        line-height: 1.5;
        padding: 1em 0;
    }

    .section_inner .news_inner ul li time{
        display: block;
    }
}

/* -------------------------------- company -------------------------------- */
#company .section_inner,
#company .title_wrap{
    width: 100%;
    max-width: 1300px;
}

#company table{
    max-width: 480px;
    margin-top: 240px;
    margin-bottom: 5em;
    line-height: 4em;
}

#company table tr th{
    padding: 0 2em;
    min-width: 4em;
    width: 20%;
    text-align: left;
}

#company table tr td{
    width: 80%;
    line-height: 1.4em;
}

.company_img{
    position:absolute;
    bottom: -10%;
    right: 0;
    width: 50%;
    max-width: 1000px;
    aspect-ratio: 819 / 559;
}

@media (max-width:767px) {
    .company_img{
        position:relative;
        left: 40%;
        width: 60%;
    }

    #company .title_wrap{
        width: 80%;
    }

    #company table{
        width: 90%;
    }
}

/* -------------------------------- business -------------------------------- */

#business{
    padding: 300px 0 280px;
}

#business .section_inner{
    padding-top: 200px;
    gap: 5%;
}

.business_item{
    position: relative;
}

.business_item div{
    border: solid 20px #F2F2F2;
    width: 85%;
}

.business_item p{
    position: absolute;
    bottom: -1em;
    right: 0;
    display: inline-block;
    padding: 0.5em 3em;
    background: rgb(255,243,154);
    background: linear-gradient(180deg, rgba(255,243,154,1) 0%, rgba(253,181,83,1) 100%);
    font-size: 1.58rem;
    font-weight: 500;
}

@media (max-width:767px) {
    #business .section_inner{
        flex-wrap: wrap;
    }

    .business_item{
        margin-bottom: 100px;
    }

    .business_item p{
        font-size: 1.3rem;
    }
}

/* -------------------------------- map -------------------------------- */

#map{
    height: 80vh;
    margin-bottom: 230px;
    position: relative;
}

#map::before {
    content: "";
    display: block;
    padding-top: calc(297 / 526 * 100%);
}

#map iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}


/* -------------------------------- form -------------------------------- */

#form {
    font-weight: 500;
    padding-top: 165px;
}

#form .title_wrap{
    width: 80%;
    max-width: 1300px;
}

#form .contact_form_wrap{
    flex: 1;
    max-width: 810px;
    margin-bottom: 80px;
}


#form .contact_form_wrap .contact7 > p{
    padding: 2em 0;
    line-height: var(--lineheight_p);
    border-top: solid 1px #000;
    border-bottom: solid 1px #000;
    text-align: center;
    margin-bottom: 2em;
}

.contact_form dl dd input{
    width: 100%;
    height: 45px;
    margin-bottom: 2em;
    border:none;
    appearance: none;
    -webkit-appearance: none;
}

.contact_form dl dd textarea{
    width: 100%;
    height: 12em;
    margin-bottom: 2em;
    border: none;
    appearance: none;
    -webkit-appearance: none;
}

.contact_form dl dt{
    padding-bottom: 1em;
}

.required{
    color: var(--accent_color);
}

.contact_form .contact_form_btn input{
    width: 100%;
    max-width: 430px;
    padding: 1em 0;
    text-align: center;
    border: none;
    display: block;
    background: rgb(255,243,154);
    background: linear-gradient(120deg, rgba(255,243,154,1) 0%, rgba(253,181,83,1) 100%);
    cursor: pointer;
    margin: 0 auto;
    opacity: 1;
    transition: 0.5s;
    border-radius: 25px;
}

.contact_form .contact_form_btn input:hover{
    opacity: 0.5;
}


/* -------------------------------- footer -------------------------------- */

footer{
    width: 100%;
    margin-top: 80px;
}

.footer_wrap{
    position: relative;
    width: 100%;
    z-index: 0;
}

.footer_wrap::before{
    content: "";
    width: 100%;
    height: 100%;
    background: #808080;
    z-index: -2;
    position: absolute;
    top: 0;
    left: 0;
    clip-path: polygon(100% 0, 0 0, 100% 100%);

}

.footer_wrap::after{
    content: "";
    width: 100%;
    height: 100%;
    background: #D3D3D3;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    clip-path: polygon(45% 0, 0 0, 0 35%);
}

footer .footer_wrap .footer_inner{
    width: 90%;
    height: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 68px 0;
}

footer .footer_wrap .footer_inner .footer_logo{
    display: flex;
    flex-wrap: wrap;
    width: 70%;
    margin-top: auto;
    max-width: 810px;
}

footer .footer_wrap .footer_inner .footer_logo .footer_logo_img{
    width: 60%;
}

footer .footer_wrap .footer_inner .footer_logo .footer_logo_text{
    flex: 1;
    width: 40%;
    margin-top: auto;
}

footer .footer_wrap .footer_inner .footer_logo .footer_logo_text p{
    margin-top: 1em;
    line-height: 1.4;
}

footer .footer_wrap .footer_inner ul{
    font-family: var(--font_family_nav);
    font-weight: 700;
    font-size: 1.17rem;
}

footer .footer_wrap .footer_inner ul li{
    margin-bottom: 1.5em;
    text-align: right;
}

footer .footer_wrap .footer_inner ul li a{
    color: #fff;
}

footer .copyright{
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 2em 0;
    font-family: var(--font_family_nav);
    font-size: 0.88rem;
    position: relative;
}

.privacy-policy{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 90%;
    text-align: right;
}

.privacy-policy a{
    color: #fff;
}

@media (max-width:767px) {

    .footer_wrap::before{
        display: none;
    
    }
    
    .footer_wrap::after{
        display: none;
    }

    footer .footer_wrap .footer_inner{
        padding-bottom: 2em;
    }

    footer .footer_wrap .footer_inner .footer_logo{
        width: 50%;
        max-width: 400px;
        margin-top: 0;
    }

    footer .footer_wrap .footer_inner .footer_logo .footer_logo_img{
        width: 100%;
    }

    footer .footer_wrap .footer_inner .footer_logo .footer_logo_text{
        margin-top: 0;
    }

    footer .footer_wrap .footer_inner ul{
        width: 50%;
        margin-top: 0;
    }

    footer .footer_wrap .footer_inner ul li a{
        color: #000;
    }

    .privacy-policy{
        position: relative;
        margin-top: 1em;
    }
}

/* -------------------------------- page -------------------------------- */

.page{
    min-height: 50vh;
    margin: calc(var(--header_height) + 50px) auto 0;
}

.page_inner{
    padding: 50px 0;
    min-height: 40vh;
}

.page_inner .page_title_wrap{
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.page h2{
    font-size: 2rem;
    font-weight: 700;
}

.page time{
    margin-top: 1em;
    display: block;
}

.page .page_content{
    padding: 50px 0;
    width: 90%;
    margin: 0 auto;
    max-width: 1300px;
    line-height: var(--lineheight_p);
}

/* -------------------------------- news list -------------------------------- */


.news_list li{
    border-bottom: solid 0.5px #707070;
    overflow-wrap:break-word;
    padding: 1.5rem 0;
    line-height: 1.8;
    width: 100%;
}

.news_list li time{
    margin-right: 2em;
}

.numberposts{
    display: flex;
    width: 90%;
    justify-content: center;
    padding: 2em 0;
    gap: 2em;
}

/* -------------------------------- privacy policy -------------------------------- */

#privacypolicy section{
    margin: 3em 0;

}

#privacypolicy section h3{
    font-size: 1.5em;
    font-weight: 500;
    margin-bottom: 1rem;
}

#privacypolicy p{
    line-height: var(--lineheight_p);
}

#privacypolicy ol {
    margin-left: 2em;
    margin-top: 1em;
}

#privacypolicy ol li{
    list-style: decimal;
    padding: 0.5em 0;
}