@charset "UTF-8";

html {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  color: #222;
  background-color: #fff;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
p {
    line-height: 1.8em;
    text-align: justify;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
li {
  list-style: none;
}
a {
  color: #222;
  transition: all 0.4s ease;
  text-decoration: none;
  cursor: pointer;
}
/* a:hover {
  opacity: 0.5;
} */

/* 共通設定 ------------------------------- */
.pc{
    display: block;
}
.tb{
    display: none;
}
.sp{
    display: none;
}


.btn{
    display: inline-block;
    width: 100%;
    height: 60px;
    border: 1px solid #FF5F09;
    color: #FF5F09;
    background-color: #fff;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-out;
}

.btn:hover{
    border-color:transparent;
    color: #fff;
    background: linear-gradient(270deg, #FF5F09 0%, #FFC0CB 60%);
    background-size: 200% auto;
    background-position: right center;

}

/* 各ページタイトル */
#title-image-area{
    width: 75%;
    min-width: 720px;
    height: 420px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
#title-image-area img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

#page-title-area{
    width: 100%;
    height: 340px;
    position: relative;
}
#page-title-area .page-title{
    position: absolute;
    bottom: 30px;
    left: 5%;
    display: flex;
    flex-direction: column;
}
#page-title-area .page-title span{
    display: block;
    font-weight: 400;
}
#page-title-area .page-title .en{
    font-family: "League Spartan", sans-serif;
    font-size: 36px;
    letter-spacing: 0.1em;
    line-height: 1.2em;
}
#page-title-area .page-title .ja{
    font-size: 16px;
    line-height: 1.2em;
}


/* フェードイン */
.fade-in{
    opacity: 0;
    transform: translateY(80px);
    transition: all 1.3s;
}
.fade-in.inview{
    opacity: 1;
    transform: translateY(0);
}

/* header -------------------------------- */
#header{
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    position: relative;
    z-index: 100;
}

#header .logo{
    width: 140px;
    margin-top: -10px;
}
#header .sp-sns{
    display: none;
}

#header .nav{
    display: flex;
    align-items: center;
    justify-content: center;
}

/* メインメニュー */
#header .nav .main-menu{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
#header .nav .main-menu li{
    margin-right: 60px;
}
#header .nav .main-menu li:last-of-type{
    margin-right: 150px;
}
#header .nav .main-menu li a{
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2em;
    padding: 10px 0;
    position: relative;
}
#header .nav .main-menu li a::after{
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 0;
    /*線の形状*/
    width: 100%;
    height: 2px;
    background:#fff;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: center top;/*上部中央基点*/
}
#header .nav .main-menu li a:hover::after{
    transform: scale(1, 1);/*X方向にスケール拡大*/
}

/* instagram */
#header .nav .sns-menu li{
    position: fixed;
    width: 80px;
    height: 80px;
    top: 0;
    right: 5%;
    z-index: 100;
}
#header .nav .sns-menu li a{
    display: block;
    width: 100%;
    height: 100%;
    background-color: #FF5F09;
    border: 1px solid #FF5F09;
    color: #fff;
    font-size: 12px;
    padding-top: 45px;
    padding-left: 12px;
    position: relative;
}
#header .nav .sns-menu li a::before{
    content: "";
    width: 30px;
    height: 30px;
    background-image: url(../img/icon-instagram-white.png);
    background-size: contain;
    position: absolute;
    top: 15px;
    left: 25px;
    z-index: 101;
}
#header .nav .sns-menu li a:hover{
    background-color: #fff;
    color: #FF5F09;
}
#header .nav .sns-menu li a:hover::before{
    background-image: url(../img/icon-instagram-orange.png);
}

/* 関連会社リンク */
#header .nav .group-company-link{
    display: none;
}

/* メインビジュアル */
#mv-area{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

/* footer  ------------------------------- */
#footer{
    width: 100%;
    background-color: #f5f5f5;
}

/* contact */
#footer .contact{
    width: 100%;
    height: 334px;
    background-image: url(../img/contact-backimage.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    padding: 0;
    margin: 0;
    position: relative;
}
#footer .contact .main-wrap{
    width: 60%;
    max-width: 746px;
    background-color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: -75px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    padding: 55px;
}
#footer .contact .main-wrap p{
    color: #fff;
    text-align: center;
}
#footer .contact .main-wrap .title{
    font-family: "League Spartan", sans-serif;
    font-size: 24px;
    letter-spacing: 0.1em;
    line-height: 1.2em;
    margin-bottom: 20px;
}
#footer .contact .main-wrap .text{
    font-family: "Shippori Mincho B1", serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4em;
    margin-bottom: 20px;
}
#footer .contact .main-wrap .tel-number{
    display: block;
    font-family: "League Spartan", sans-serif;
    font-size: 48px;
    line-height: 1em;
    color: #FF5F09;
    position: relative;
}
#footer .contact .main-wrap .tel-number::before{
    content: "";
    width: 35px;
    height: 35px;
    background-image: url(../img/icon-phone-orange.png);
    background-size: contain;
    position: absolute;
    top: 3px;
    left: -38px;
}
#footer .contact .main-wrap .tel-number:hover{
    cursor: default;
}
#footer .contact .main-wrap .accept-time{
    font-size: 16px;
}

/* footer-main-wrap */
#footer .footer-main-wrap{
    width: 85%;
    display: flex;
    justify-content: space-between;
    padding: 150px 0;
    margin: 0 auto;
}

#footer .footer-main-wrap .text-area .main-catch-copy{
    font-family: "Shippori Mincho B1", serif;
    font-size: 32px;
    line-height: 1.4em;
    margin-bottom: 40px;
}
#footer .footer-main-wrap .text-area .info-wrap .logo{
    width: 150px;
    margin-bottom: 10px;
}
#footer .footer-main-wrap .text-area .info-wrap .post-number{
    font-size: 15px;
}


#footer .footer-main-wrap .footer-nav{
    display: flex;
    justify-content: flex-end;
    gap: 70px;
}
#footer .footer-main-wrap .footer-nav .footer-nav-menu{
    width: 128px;
}
#footer .footer-main-wrap .footer-nav .footer-nav-menu li{
    margin-bottom: 35px;
}
#footer .footer-main-wrap .footer-nav .footer-nav-menu li:last-child{
    margin-bottom: 0;
}
#footer .footer-main-wrap .footer-nav .footer-nav-menu li a{
    font-size: 16px;
    margin-left: 25px;
    position: relative;
}
#footer .footer-main-wrap .footer-nav .footer-nav-menu li a:hover{
    color: #FF5F09;
}
#footer .footer-main-wrap .footer-nav .footer-nav-menu li a::before{
    content: "";
    width: 20px;
    height: 1px;
    background-color: #FF5F09;
    position: absolute;
    top: 12px;
    left: -25px;
}
#footer .footer-main-wrap .footer-nav .footer-nav-menu li:last-child a::before{
    width: 20px;
    height: 20px;
    background-color: transparent;
    background-image: url(../img/icon-instagram-black.png);
    background-size: contain;
    position: absolute;
    top: 3px;
    left: -25px;
}
#footer .footer-main-wrap .footer-nav .footer-nav-menu li:last-child a:hover::before{
    background-image: url(../img/icon-instagram-orange.png);
}

#footer .footer-main-wrap .footer-nav .group-company-wrap .title{
    font-family: "League Spartan", sans-serif;
    font-size: 15px;
    margin-bottom: 30px;
    position: relative;
}
#footer .footer-main-wrap .footer-nav .group-company-wrap .title::before{
    content: "";
    width: 150px;
    height: 1px;
    background-color: #222;
    position: absolute;
    top: 12px;
    right: -5px;
}
#footer .footer-main-wrap .footer-nav .group-company-wrap .text{
    display: block;
    font-size: 15px;
}
#footer .footer-main-wrap .footer-nav .group-company-wrap .banner{
    display: block;
    width: 272px;
    box-shadow: 0px 4px 0px 0px #ddd;
}
#footer .footer-main-wrap .footer-nav .group-company-wrap .banner:hover{
    box-shadow: none;
    transform: translateY(5px);
}

#footer .footer-main-wrap .footer-nav .group-company-wrap .inoue-kensetsu{
    margin-bottom: 25px;
}


#footer .copyright{
    font-family: "League Spartan", sans-serif;
    font-size: 10px;
    color: #aaa;
    text-align: center;
    padding-bottom: 50px;
}

/* top-scroll-btn  ----------------------- */
#page-top a{
	display: block;
	background:#fff;
	width: 50px;
	height: 50px;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
    font-family: "League Spartan", sans-serif;
	font-size:14px;
    line-height: 1em;
    padding-top: 25px;
	transition:all 0.3s;
    position: relative;
}
#page-top a::before{
    content: "";
    width: 19px;
    height: 1px;
    background-color: #222;
    position: absolute;
    top: 15px;
    left: 8px;
    transform: rotate(-40deg);
}
#page-top a::after{
    content: "";
    width: 20px;
    height: 1px;
    background-color: #222;
    position: absolute;
    top: 15px;
    right: 8px;
    transform: rotate(40deg);
}

#page-top a:hover{
	color: #FF5F09;
}
#page-top a:hover::before{
    background-color: #FF5F09;
}
#page-top a:hover::after{
    background-color: #FF5F09;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 100;
	opacity: 0;
	transform: translateX(100px);
}

#page-top.LeftMove{
	animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime{
  from {
    opacity: 0;
	transform: translateX(100px);
  }
  to {
    opacity: 1;
	transform: translateX(0);
  }
}

#page-top.RightMove{
	animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime{
  from {
  	opacity: 1;
	transform: translateX(0);
  }
  to {
  	opacity: 1;
	transform: translateX(100px);
  }
}

/*-------------------------------------------
タブレット
-------------------------------------------*/
@media screen and (max-width: 960px) {

    /* 共通設定 ------------------------------- */
    .pc{
        display: none;
    }
    .tb{
        display: block;
    }

    /* 各ページタイトル */
    #title-image-area{
        width: 70%;
        min-width: auto;
        height: 340px;
        top: 50px;
    }

    /* header -------------------------------- */
    #header{
        height: 50px;
    }

    #header .logo{
        width: 100px;
    }

    /* instagram */
    #header .sp-sns{
        display: block;
        width: 50px;
        height: 50px;
        background-color: #222;
        position: fixed;
        top: 0;
        right: calc(5% + 50px);
        z-index: 100px;
    }
    #header .sp-sns li{
        width: 100%;
        height: 100%;
    }
    #header .sp-sns li a{
        display: block;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    #header .sp-sns li a img{
        width: 30px;
        height: 30px;
    }

    /* ハンバーガー */
    #header .hamburger{
        width: 50px;
        height: 50px;
        background-color: #FF5F09;
        cursor: pointer;
        position: fixed;
        top: 0;
        right: 5%;
        z-index: 120;
    }
    #header .hamburger span{
        width: 24px;
        height: 1px;
        background-color: #fff;
        display: inline-block;
        position: absolute;
        left: 13px;
        transition: all 0.4s;
    }
    #header .hamburger span:nth-of-type(1){
        top: 18px;
    }
    #header .hamburger span:nth-of-type(2){
        top: 25px;
    }
    #header .hamburger span:nth-of-type(3){
        top: 32px;
    }
    /* active */
    #header .hamburger.active span:nth-of-type(1){
        top: 25px;
        transform: rotate(45deg);
    }
    #header .hamburger.active span:nth-of-type(2){
        opacity: 0;
    }
    #header .hamburger.active span:nth-of-type(3){
        top: 25px;
        transform: rotate(-45deg);
    }

    #header .nav{
        flex-direction: column;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.9);
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 110;
    }
    #header .nav.active{
        transform: translateX(0);
        overflow: auto;
    }

    /* メインメニュー */
    #header .nav .main-menu{
        width: 250px;
        flex-direction: column;
        justify-content: center;
    }
    #header .nav .main-menu li{
        width: 100%;
        height: 50px;
        background-color: #222;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 0;
        margin-bottom: 30px;
    }
    #header .nav .main-menu li:last-of-type{
        margin-right: 0;
        margin-bottom: 50px;
    }
    #header .nav .main-menu li a:hover::after{
        transform: scale(0, 1);
    }

    /* instagram */
    #header .nav .sns-menu{
        display: none;
    }

    /* 関連会社リンク */
    #header .nav .group-company-link{
        display: block;
        width: 250px;
    }
    #header .nav .group-company-link .title{
        display: block;
        font-family: "League Spartan", serif;
        font-size: 15px;
        position: relative;
        margin-bottom: 20px;
    }
    #header .nav .group-company-link .title::after{
        content: "";
        width: 125px;
        height: 1px;
        background-color: #222;
        position: absolute;
        top: 7px;
        right: 0;
    }
    #header .nav .group-company-link .group-company-menu{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    #header .nav .group-company-link .group-company-menu li{
        padding-left: 30px;
    }
    #header .nav .group-company-link .group-company-menu li a{
        position: relative;
        line-height: 1em;
    }
    #header .nav .group-company-link .group-company-menu li a::before{
        content: "";
        width: 20px;
        height: 1px;
        background-color: #FF5F09;
        position: absolute;
        bottom: 10px;
        left: -30px;
    }

    /* footer  ------------------------------- */
    /* contact */
    #footer .contact .main-wrap{
        width: 80%;
    }
    #footer .contact .main-wrap .tel-number:hover{
        cursor: pointer;
    }

    /* footer-main-wrap */
    #footer .footer-main-wrap{
        width: 90%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #footer .footer-main-wrap .text-area{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 80px;
    }
    #footer .footer-main-wrap .text-area .info-wrap .logo{
        margin: 0 auto 10px auto;
    }
    #footer .footer-main-wrap .text-area .info-wrap .tel-number{
        text-align: center;
    }

    #footer .footer-main-wrap .footer-nav .footer-nav-menu li a:hover{
        color: #222;
    }
    #footer .footer-main-wrap .footer-nav .footer-nav-menu li:last-child a:hover::before{
        background-image: url(../img/icon-instagram-black.png);
    }

    /* top-scroll-btn  ----------------------- */
    #page-top a:hover{
        color: #222;
    }
    #page-top a:hover::before{
        background-color: #222;
    }
    #page-top a:hover::after{
        background-color: #222;
    }


}

/*-------------------------------------------
スマホ
-------------------------------------------*/
@media screen and (max-width: 767px) {

    /* 共通設定 ------------------------------- */
    .sp{
        display: block;
    }

    /* 各ページタイトル */
    #title-image-area{
        height: 200px;
    }

    #page-title-area::before{
        content: "";
        width: 55%;
        aspect-ratio: 1 / 1;
        background-color: #f5f5f5;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: -2;
    }
    #page-title-area .page-title .en{
        font-size: 32px;
    }

    /* header -------------------------------- */
    /* instagram */
    #header .sp-sns{
        right: 50px;
    }
    /* ハンバーガー */
    #header .hamburger{
        right: 0;
    }

    /* footer  ------------------------------- */
    /* contact */
    #footer .contact{
        height: 160px;
    }
    #footer .contact .main-wrap{
        width: 90%;
        top: 50px;
        bottom: auto;
        padding: 50px 5%;
    }
    #footer .contact .main-wrap .tel-number{
        font-size: 40px;
        margin-left: 25px;
    }
    #footer .contact .main-wrap .tel-number::before{
        width: 25px;
        height: 25px;
        top: 5px;
        left: -25px;
    }
    #footer .contact .main-wrap .tel-number:hover{
        cursor: pointer;
    }

    /* footer-main-wrap */
    #footer .footer-main-wrap{
        padding: 250px 0 150px 0;
    }

    #footer .footer-main-wrap .footer-nav{
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

}