*{
    margin:0;
    padding:0;
}

body{
    background-color: #f8f8f8;
    font-family: "Noto Sans", sans-serif;
}


/*共通パーツ*/
.br_768,.br_425{
    display: none;
}
@media(max-width:768px){
    .br_768{
        display: block;
    }
}
@media(max-width:425px){
    .br_425{
        display: block;
    }
}

.inner,
.footer_bottom .inner{
    width:1280px;
    margin:0 auto;
}
@media(max-width:1440px){
    .inner,
    .footer_bottom .inner{
        width:clamp(900px , 88.89vw, 1280px);
    }
}
@media(max-width:1024px){
    .inner,
    .footer_bottom .inner {
        width: 90%;
    }
}

/*フェードイン*/
.fadein-item {
    opacity: 0;
    transform: translateY(70px);
    transition: opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1),
                transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
  }
  
  .fadein-item.is-animated {
    opacity: 1;
    transform: translateY(0);
  }

/*ヘッダー*/

header {
    position:fixed;
    padding:1.188rem 0 1.313rem 0;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(149,103,118,0);
    backdrop-filter: blur(30px) brightness(1.15);
    -webkit-backdrop-filter: blur(30px) brightness(1.15);
    mix-blend-mode: exclusion;
}

.header_container{
    display: flex;
    justify-content:flex-end;
    align-items: center;
    position: relative;
    z-index: 1;
}


/*ロゴ*/
h1{
    position: fixed;
    top:1.5vw;
    left:1.5rem;
    width:235.44px;
    height:60.1px;
    z-index: 1001;
}
h1 img{
    width:100%;
    height:100%;
}

/*ハンバーガーメニュー*/
.hamburger,
.sp_nav{
    display: none;
}

/*ナビ*/
.header_container .nav_container{
    margin-right:2rem;
}
.header_container .nav_container ul{
    display: flex;
    align-items: center;
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
}
.header_container .nav_container ul li{
    list-style: none;
    margin-right:5.47vw;
}
.header_container .nav_container ul li a{
    text-decoration: none;
    color:#F4E1C9;
    mix-blend-mode: exclusion;
    transition: .3s;
}
.header_container .nav_container ul li a:hover{
    color:#2E2436;
}

.contact_btn a{
    text-decoration: none;
    padding:1.35vw 2.81vw 1.3vw 3.28vw;
    background-color: #CDB7AF;
    mix-blend-mode: exclusion;
    border-radius: 99999px;
    color:#2E2436;
    display: inline-block;
    font-family:"Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro",
               "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3",
               "Hiragino Sans", sans-serif;
    transition: .3s;
}
.contact_btn a:hover{
    transform: scale(1.1);
    background-color: #1D1326;
    color:#CDB7AF;
}





/*フッター*/
.footer{
   
    padding:4.406rem 0 1.25rem 0;
}

.contact_bg{
    background-color: #1D1326;
    padding:4.406rem 0;
    transition: .3s;
}
.contact_bg .contact{
    position: relative;
}
.contact_bg .contact a{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact_bg:hover{
    background-color: white;
}

.contact img{
    width:339.04px;
    height:auto;
    mix-blend-mode: exclusion;
}
.contact .contact_info{
    color:#CDB7AF;
    mix-blend-mode: exclusion;
    position: absolute;
    top:50%;
    left:160px;
    transform: translateY(-50%);
}
.contact .contact_info h3{
    font-size: 126px;
    font-family: "Lato", sans-serif;
    font-weight: 900;
}
.contact .contact_info p{
    font-size: 1.25rem;
    font-weight: 600;
}
.contact .arrow{
    width:127px;
    border-bottom:1px solid #CDB7AF;
    position: relative;
    mix-blend-mode: exclusion;
}
.contact .arrow::before,
.contact .arrow::after{
    content:"";
    display: block;
    width:64px;
    height:1px;
    background-color:#CDB7AF;
    position: absolute;
    right:-10.5px;
}
.contact .arrow::before{
    top:-23px;
    transform: rotate(45deg);
}
.contact .arrow::after{
    bottom:-23px;
    transform: rotate(-45deg);
}

.footer_bottom{
    background-color: #1D1326;
    padding:5.188rem 0 1.25rem 0;
    border-top:solid 2px #D9C2B6;
}
.footer_bottom .inner{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.footer_nav ul li{
    list-style: none;
    mix-blend-mode: exclusion;
    font-size: 1.5rem;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    margin-bottom:1.5rem;
}
.footer_nav ul li a{
    text-decoration: none;
    color:#D9C2B6;
    transition: .3s;
}
.footer_nav ul li a:hover{
    color:white;
}
.footer_nav ul .sub_nav{
    font-size: 1.25rem;
    margin-bottom:0.625rem;
    position: relative;
    left:1.5rem;
}
.footer_nav ul .sub_nav::after{
    content:"ー";
    position: absolute;
    top:50%;
    left:-1.5rem;
    transform: translateY(-50%);
    color:#D9C2B6;
}

.footer_logo{
    width:311px;
}
.footer_logo img{
    width:100%;
    height:auto;
}
.footer_logo .address{
    width:100%;
    color:#D9C2B6;
    mix-blend-mode: exclusion;
    margin-top:2.375rem;
}
.copy_right{
    font-size: 1.5rem;
    font-family: "Lato", sans-serif;
    margin-top:4.5rem;
    color:#D9C2B6;
    mix-blend-mode: exclusion;
    text-align: center;
}














/*----------------------------------------------
                    レスポンシブ
------------------------------------------------*/

@media(max-width:1200px){
    /*ヘッダー*/
    .header_container .nav_container ul li{
        margin-right:4.5vw;
    }
}



@media(max-width:1024px){
    html{
        font-size: 14px;
    }
    /*ヘッダー*/
    h1{
        width:200px;
        height:51.1px;
        top:12px;
    }
    .header_container .nav_container ul li{
        margin-right:4vw;
    }


    /*お問い合わせ*/
    .contact img{
        width: clamp(230px, 29.3vw, 300px);
    }
    .contact .contact_info{
        left: 14.65vw;
    }
    .contact .contact_info h3{
        font-size: 9.77vw;
    }
}


@media(max-width:768px){
    /*ヘッダー*/
    header{
        padding:0;
		background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: none;
        -webkit-backdrop-filter:none;
        mix-blend-mode: normal;
    }
    .header_container{
        width:95%;
    }
    .hamburger{
        display: block;
        width:80px;
        height:80px;
        position: relative;
        background-color: transparent;
        border:none;
        cursor: pointer;
    }
    .hamburger span{
        width:60%;
        height:1px;
        background-color: #1D1326;
        mix-blend-mode: exclusion;
        position: absolute;
        left:50%;
        transform: translateX(-50%);
        transition: .3s;

    }
    .hamburger span:first-of-type{
        top:2rem;
    }
    .hamburger span:last-of-type{
        bottom:2rem;
    }
    .hamburger.nav-open span:first-of-type{
        transform: translateX(-50%)rotate(25deg);
        top:2.8rem
    }
    .hamburger.nav-open span:last-of-type{
        transform: translateX(-50%)rotate(-25deg);
        bottom:2.8rem;
    }
    .hamburger.nav-open span:nth-of-type(2){
        opacity: 0;
    }

    .header_container .nav_container{
        display: none;
    }
    .sp_nav{
        display: block;
        position:fixed;
        width:100%;
        height:100vh;
        top:80px;
        left:50%;
        transform: translateX(-50%);
        margin-right:0;
        background: rgba(255, 255, 255, 0.95);
        pointer-events: none;
        transition: .5s;
        opacity: 0;
        z-index: 1000;
    }
    .sp_nav.nav-open{
        opacity: 1;
        pointer-events: all;
    }
    .sp_nav ul{
        display: flex;
        justify-content: center;
        flex-flow: column;
        align-items: center;
        font-family: "Lato", sans-serif;
        font-weight: 900;
        font-size: 1.25rem;    
    }
    .sp_nav ul li{
        font-size: 1.429rem;
        margin-top:2.857rem;
        margin-right:0;
        list-style: none;
    }
    .sp_nav ul li a{
        text-decoration: none;
        color:#F4E1C9;
        mix-blend-mode: exclusion;
    }
    .sp_nav ul .contact_btn{
        margin-top:3rem;
    }


    /*お問い合わせ*/
    .contact img {
        width: 29.95vw;
    }
    .contact .contact_info h3 {
        font-size: 10.42vw;
    }
    .contact .contact_info p {
        font-size: 2.6vw;
    }
    .contact .arrow {
        width: 15.63vw;
    }
    .contact .arrow::before, 
    .contact .arrow::after{
        width: 7.81vw;
        right: -1.11vw;
    }
    .contact .arrow::before {
        top: -2.75vw;
    }
    .contact .arrow::after {
        bottom: -2.99vw;
    }




    /*フッター*/
    .footer_bottom .inner {
        flex-flow: column;
    }
    .footer_logo{
        margin: 2rem auto 0 auto;
    }
}


@media(max-width:425px){
    /*ヘッダー*/
    h1{
        width:162px;
        height:41.35px;
        top: 8px;
    }
    .hamburger{
        width:60px;
        height:60px;
    }
    .hamburger span:first-of-type {
        top: 1.6rem;
    }
    .hamburger span:last-of-type {
        bottom: 1.6rem;
    }
    .header_container .nav_container{
        top:60px;
    }
    .hamburger.nav-open span:first-of-type{
        top: 2.3rem;
    }
    .hamburger.nav-open span:last-of-type{
        bottom: 1.95rem;
    }
    .header_container .nav_container ul .contact_btn{
        width: 100%;
        text-align: center;
    }

    .sp_nav{
        top: 60px;
    }
    .sp_nav ul .contact_btn{
        width:100%;
        text-align: center;
    }
    .sp_nav .contact_btn a{
        width: 86.97%;
        padding:1.857rem 0;
        text-align: center;
    }


    /*フッター*/
    .footer_bottom{
        padding: 5.65vw 0 2.82vw 0;
    }
    .footer_nav ul li{
        margin-bottom: 2.5rem;
    }
    .footer_nav ul .sub_nav{
        margin-bottom: 1.286rem;
    }
    .footer_logo{
        width: 207px;
        margin: 2.643rem auto 0 auto;
    }
    .footer_logo .address{
        margin-top: 1.571rem;
    }
    .copy_right{
        font-size: 0.857rem;
        margin-top: 4rem;
    }



    /*お問い合わせ*/
    .contact_bg{
        padding: 2.143rem 0;
    }
    .contact img {
        width: 35.29vw;
    }
    .contact .contact_info h3 {
        font-size: 11.76vw;
    }
    .contact .contact_info p {
        font-size: 1rem;
    }
    .contact .arrow{
        display: none;
    }
}



@media(max-width:375px){
    /*お問い合わせ*/
    .contact img {
        width: 128.22px;
    }
}