* {
    box-sizing: border-box;
}

html, body{
    overflow-x: hidden;
}

html{
    scroll-behavior: smooth;
}

body {
    font-family: "Zen Kaku Gothic Antique", "Source Sans Pro", "Hiragino Kaku Gothic ProN", Meiryo, Arial, sans-serif;
	background-color:#eeeeee;
    margin: 0;
}

.inner{
    max-width: 1000px;
    width: 95%;
    margin: 0 auto;
}

a,
button{
    text-decoration: none;
    transition: 0.3s;
}

img{
    max-width: 100%;
    width: 100%;
}

ul, h1, h2, p, button{
    margin: 0;
    padding: 0;
}

li{
    list-style: none;
}

@media(max-width:767px) {
    .body{
        padding: 0 16px;
    }
}

header {
    border-bottom: 5px solid #8b7a69;
    background-color: #fff;
}

header .menu > li > a:any-link{
    color: #333;
}

header .container{
    width: 90%;
    max-width: 1000px;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .container > a{
    width: 200px;
}

header .nav-pc ul.menu{
    display: flex;
    justify-content: space-between;
    font-size: 30px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}

header .nav-pc ul.menu > li {
    margin: 30px 0px 0 40px;
    padding-bottom: 10px;
    position: relative;
}

header .nav-pc ul.sub-menu {
    display: none;
    position: absolute;
    transition: scale .4s;
    z-index: 50;
    width: 250px;
    top: 45px;
    left: -110%;
    background: #333333f2;
    padding: 20px 20px 20px 24px;
    list-style: none;
    border: 2px solid #8b7a69e6;
}

header .nav-pc .sub-menu li{
	line-height: 0.7 !important;
    margin-bottom: 20px !important;
}

header .nav-pc .sub-menu a{
    font-size: 16px;
    color: #fff;
}

header .nav-pc .sub-menu a:hover{
    opacity: 0.6;
}

header .hum-btn, 
header .hum-nav{
    display: none;
}

@media(max-width:767px) {
    header{
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        border: none;
        z-index: 100;
    }
    header .container{
        width: 100%;
        margin: 0 5%;
    }
    header .container > a{
        margin-top: 8px;
    }
    header .nav-pc{
        display: none;
    }

    /*--- 展開前のメニューボタン ---*/
    header .hum-btn{
        display: block;
        position: fixed;
        top: 15px;
        right: clamp(20px, 7.5vw, 60px);
        width: 50px;
        height: 40px;
        background-color: transparent;
        border: none;
        cursor: pointer;
        z-index: 300;
    }
    header .hum-btn > span{
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 50px;
        height: 5px;
        background-color: #333;
        transform: translateX(-50%);
    }
    header .hum-btn > span:first-child {
        transform: translate(-50%, calc(-50% - 15px));
        transition: transform 0.3s ease;
    }
    header .hum-btn > span:nth-child(2) {
        transform: translate(-50%, -50%);
        transition: opacity 0.3s ease;
    }
    header .hum-btn > span:last-child {
        transform: translate(-50%, calc(-50% + 15px));
        transition: transform 0.3s ease;
    }

    /*--- 展開時のメニューボタン ---*/
    header .hum-btn.active > span:first-child {
        transform: translate(-50%, -50%) rotate(-45deg);
    }
    header .hum-btn.active > span:nth-child(2) {
        opacity: 0;
    }
    header .hum-btn.active > span:last-child {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    /*--- ハンバーガーメニュー ---*/
    header .hum-nav {
        display: block;
        position: fixed;
        width: 100%;
        height: 100vh;
        background-color: #33333380;
        transition: opacity 0.3s ease;
        z-index: 200;
        opacity: 0;
        visibility: hidden;
    }
    header ul.hum-menu {
        position: relative;
        width: 80%;
        height: 100%;
        background-color: #333;
        padding: 64px 32px 48px 64px;
        margin: 0 0 0 auto;
        transform: translateX(100%);
    }
    header ul.hum-menu > li a {
        display: block;
        color: #fff;
        font-size: 40px;
        font-family: "Bebas Neue", sans-serif;
        font-weight: 400;
        letter-spacing: 0.1em;
        text-decoration: none;
        padding: 32px 16px;
    }
    header ul.hum-menu > li > a:first-child{
        padding-bottom: 0;
    }
    header ul.hum-submenu > li a{
        font-size: clamp(16px, 4vw, 26px);
        font-family: "Zen Kaku Gothic Antique", sans-serif;
        padding: 16px 0 16px 48px;
    }
    header ul.hum-menu a:hover{
        opacity: 0.6;
    }
    header .hum-nav.active {
        visibility: visible;
        opacity: 1;
    }
    header .hum-nav.active .hum-menu {
        transform: translateX(0);
    }
}


.mv-container {
    position: relative;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
}

.mv h1{
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);

    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;

    font-size: clamp(50px, 3.5vw, 62px);
    color: #fff;
    font-style: italic;
    text-align: left;
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.9);
	opacity:0;
}

.mv h1.is-active{
	    animation: fadeInRight 2s ease-in forwards;
}

/* fadeInRight */
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50%);
  }
  100% {
    opacity: 1;
  }
}

.mv strong{
    color: #c8b463;
    font-size: clamp(70px, 5vw, 88px);
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.06em;
}

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

@media(max-width:767px) {
    main{
        margin-top: 40px;
    }
    .mv h1{
        padding: 0;
        padding-left: 10px;
        padding-bottom: clamp(10px, 10vw, 100px);
        font-size: clamp(28px, 9vw, 62px);
    }
    .mv strong{
        font-size: clamp(48px, 12vw, 88px);
    }
}

main h2{
    font-size: 40px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    letter-spacing: 0.1em;
	opacity:0;
    padding: 64px 0 30px;
}

main h2.is-active {
	animation: fadeIn2 2s ease forwards;
}

/* fadeIn */
@keyframes fadeIn2 {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
  }
}

.service{
    background-color: #ededed;
}

.service-flex{
    display: flex;
    align-items: center;
    text-align: center;
}

.service-flex > a{
	display:block;
	color:#333;
    width: 50%;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
    margin: 0 50px 100px;
}

.service span{
    display: flex;
    justify-content: center;
    align-items: center;
	height: 80px;
    padding: 10px;
    font-size: 20px;
}

@media(max-width:767px) {
    main h2{
        font-size: 56px;
        padding: 45px 0 35px;
    }
    .service-flex{
        flex-direction: column;
        gap: 60px;
        padding-bottom: 75px;
    }
    .service-flex > a{
		display:block;
        width: 65%;
        margin: 0;
    }
    .service span{
        font-size: clamp(16px, 4vw, 32px);
        padding: 0.5em;
    }
}


.company{
    color: #fff;
    background-image: url('../images/company-img1.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding-bottom: 60px;
}

.company .inner > div{
    width: 424px;
    margin: 20px auto;
}

.company p{
    text-align: center;
    line-height: 2;
    font-size: 18px;
    padding-bottom: 30px;
}

.company .br-sp{
    display: none;
}

.company .inner .link{
    border: 2px solid #fff;;
    text-align: center;
    width: 424px;
    min-width: 220px;
    margin: 0 auto;
}

.company .link a{
    display: block;
    color: #fff;
    font-size: 30px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.15rem;
    line-height: 70px;
    position: relative;
    padding: 2px 20px 0 0;
}

.company .link a::before{
    background-color: #fff;
    position: absolute;
    top: 48%;
    right: 22%;
    width: 20px;
    height: 2px;
    margin-top: 0px;
    content: "";
}

.company .link a::after{
    content: "";
    margin: auto;
    position: absolute;
    top: calc(48% - 6px);
    right: 22%;
    width: 13px;
    height: 13px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg); 
}

.company .link a:hover{
    background-color: #333;
}

@media(max-width:767px) {
    .company{
        background-image: url(../images/company-img-sp.png);
        padding-bottom: 55px;
    }
    .company h2{
        padding: 70px 0 25px;
    }
    .company p{
        font-size: clamp(16px, 4vw, 32px);
        padding-bottom: 20px;
    }
    .company .br-sp{
        display: block;
    }
    .company .inner > div{
        width: 75%;
        margin: 20px auto;
    }
    .company .inner .link{
        width: 60%;
    }
    .company .link a{
        font-size: clamp(24px, 6vw, 40px);
        padding-left: clamp(20px, 2vw, 100px);
        padding-right: 50px;
        white-space: nowrap;
    }
    .company .link a::before, 
    .company .link a::after{
        right: clamp(20px, 6vw, 80px);
    }
}

.contact{
    background-color: #eee;
    padding-bottom: 50px;
}

.contact .inner .link{
    border: 2px solid #333;
    text-align: center;
    width: 424px;
    min-width: 220px;
    margin: 0 auto;
}

.contact h2{
    margin-bottom: 20px;
}

.contact .link a{
    display: block;
    color: #333;
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 72px;
    position: relative;
    padding-right: 30px;
}

.contact .br-sp{
    display: none;
}

.contact .link a::before{
    background-color: #333;
    position: absolute;
    top: 48%;
    right: 15%;
    width: 20px;
    height: 2px;
    margin-top: 0px;
    content: "";
}

.contact .link a::after{
    content: "";
    margin: auto;
    position: absolute;
    top: calc(48% - 6px);
    right: 15%;
    width: 13px;
    height: 13px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(45deg); 
}

.contact .link a:hover{
    font-weight: 500;
}

.contact .link a:hover::before{
    background-color: #111;
    height: 3px;
}

.contact .link a:hover::after{
    border-top: 3px solid #111;
    border-right: 3px solid #111;
}

@media(max-width:767px){
    .contact{
        padding-bottom: 95px;
    }
    .contact h2{
        padding: 55px 0 ;
        margin: 0 auto;
    }
    .contact .inner > div{
        width: 75%;
        margin: 20px auto;
    }
    .contact .inner .link{
        width: 60%;
    }
    .contact a .br-sp{
        display: block;
    }
    .contact .link a{
        font-size: clamp(16px, 4vw, 35px);
        line-height: 1.2;
        letter-spacing: 0;
        padding-top: 25px;
        padding-bottom: 25px;
        padding-left: clamp(20px, 2vw, 100px);
        padding-right: 50px;
    }
    .company .link a::before, 
    .company .link a::after{
        right: clamp(20px, 6vw, 80px);
    }
}


footer{
    color: #dfdfdf;
    background-color: #333333;
    padding: 75px 0 55px;
    border-top: 5px solid #8b7a69;
}

footer a:any-link{
    display: block;
    color: #dfdfdf;
}

footer .container{
    display: flex;
    justify-content: space-between;
    gap: clamp(40px, 5vw, 100px);
    margin: 0 auto;
    font-size: clamp(14px, 1.8vw, 16px);
}

footer .logo_address img{
    width: 121px;
    margin-bottom: 25px;
}

footer .footer-menu{
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
}

footer .footer-menulist p {
    padding-bottom: 8px;
}

footer .footer-menulist a{
    padding: 0 0 8px 16px;
}

footer .footer-menulist a:hover, 
footer .footer-menu-sp a:hover{
    opacity: 0.6;
}

footer .footer-menu > div:nth-child(2) a{
    position: relative;
    padding: 0 0 8px 32px;
}

footer .footer-menu > div:nth-child(2) a::before{
    background-color: #dfdfdf;
    position: absolute;
    top: 13px;
    left: 16px;
    width: 14px;
    height: 1px;
    margin-top: 0px;
    content: "";
}

footer .footer-menu > div:nth-child(3) a {
    margin-bottom: 32px;
}

.sns{
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 4px;
}

.sns img{
    width: 40px;
}

.footer-menu-sp{
    display: none;
}

.copyright{
    font-size: 14px;
    text-align: center;
}

@media(max-width:767px){
    footer{
        padding: 35px 0 25px;
    }
    footer .container{
        justify-content: space-evenly;
        margin: 0 auto 40px;
        font-size: clamp(14px, 3vw, 20px);
        gap: 10px;
    }
    footer .logo_address img{
        margin-bottom: 20px;
    }
    footer .footer-menu{
        flex-direction: column;
        flex-grow: 0;
        gap: 30px;
    }
    footer .footer-menulist a{
        padding: 0 0 8px 20px;
    }
    footer .footer-menu > div:nth-child(3){
        display: none;
    }
    .sns{
        gap: 20px;
        margin-bottom: 30px;
    }
    .sns img{
        width: 47px;
    }
    footer .footer-menu-sp{
        display: flex;
        justify-content: center;
        gap: 15px;
        font-size: clamp(12px, 2vw, 20px);
        margin-bottom: 15px;
    }
}