@charset "UTF-8";
/* CSS Document */
html{
    scroll-behavior: smooth;
    font-size: 62.5%;
    font-size: .625vw;
}
body{
    font-family: YakuHanJPs, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Noto Sans JP", Meiryo, "メイリオ", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8em;
    letter-spacing: .02rem;
    color: #222;
    -webkit-font-smoothing: antialiased;
}
.mincho{
    font-family: 'Noto Serif JP', '游明朝', 'Yu Mincho', serif;
    font-weight: 500;
}
.en{
    font-family: 'Cormorant Garamond', sans-serif;
    font-weight: 500;
    letter-spacing: .07rem;
}
*{
    box-sizing: border-box;
}
img{
    vertical-align: bottom;
    width: 100%;
    height: auto;
}
li{
    list-style: none;
}
a{
    cursor: pointer;
    text-decoration: none;
    color: #222;
    letter-spacing: normal;
    line-height: 1em;
    transition: .4s;
}
.pc_none{
    display: none;
}


/*---------------------------------

  画面遷移

---------------------------------*/
body{
	animation: fadein 3.2s forwards;
}

@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}



/*---------------------------------

  フェードイン

---------------------------------*/
.element {
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  transition: transform 1.6s, opacity 1.6s, visibility 1.6s;
}
.is-fadein {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}


/*---------------------------------

  header

---------------------------------*/
header.sp{
    display: none;
}
header{
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: hsla(0,0%,100%,0.9);
}
header .logo{
    transition: .4s;
}
header .logo:hover{
    opacity: .6;
}
header h1{
    width: 130px;
    margin-left: 10px;
}
header h1 .top{
    display: none;
}
header nav ul{
    display: flex;
    align-items: center;
}
header nav ul li{
    margin: 0 5px;
}
header nav ul li:nth-of-type(4){
    margin: 0 10px;
}
header nav ul li:nth-of-type(5){
    margin: 0;
}
header nav ul li a{
    font-weight: 600;
    display: inline-block;
    padding: 10px;
    transition: .4s;
}
header nav ul li a:hover{
    opacity: .6;
}
header nav ul li a.button{
    position: relative;
    color: #fff;
    display: block;
    width: 160px;
    text-align: center;
    padding: 15px 0;
    transition: all 0.4s ease-out;
}
header nav ul li a.button::before{
    content:"";
    width:100%;
    height:100%;
    position:absolute;
    z-index:-1;
    top: 0;
    left:0;
    transition:0.5s;
    background: linear-gradient(45deg, rgba(189,177,144,0.8) 0%, rgba(131,117,78,0.8) 100%);
}
header nav ul li a.button::after{
    content:"";
    width:100%;
    height:100%;
    position:absolute;
    z-index:-2;
    top: 0;
    left:0;
    background:linear-gradient(45deg, rgba(131,117,78,0.8) 0%, rgba(189,177,144,0.8) 100%);
}
header nav ul li a.button:hover::before{
    opacity: 0;
}
header nav ul li a.button:hover{
    opacity: 1;
}


/*---------------------------------

  footer

---------------------------------*/
.footer_contact{
    position: relative;
}
.footer_contact::before{
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #e0e0e0;
}
.footer_contact::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
}
.footer_contact .inner{
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 12rem 0;
}
.footer_contact .contact,.footer_contact .assessment{
    width: 50%;
    display: flex;
    justify-content: center;
}
.footer_contact .contact .container,.footer_contact .assessment .container{
    width: 70%;
    max-width: 500px;
}
.footer_contact .heading{
    position: relative;
    margin-bottom: 80px;
}
.footer_contact .heading::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -45px;
    width: 40px;
    height: 1px;
    background-color: #e0e0e0;
}
.footer_contact .heading h3{
    font-size: 14px;
    line-height: 1em;
    position: relative;
    padding-left: 20px;
    margin-bottom: 30px;
}
.footer_contact .heading h3::before{
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #e0e0e0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.footer_contact .heading span{
    font-size: 44px;
    line-height: 1em;
    font-weight: 600;
}
.footer_contact .contact .text{
    padding-bottom: 30px;
}
.footer_contact .assessment .text{
    padding-bottom: 40px;
}
.footer_contact .contact .tel{
    position: relative;
    display: block;
    margin-bottom: 40px;
    padding-left: 60px;
    transition: .4s;
}
.footer_contact .contact .tel:hover{
    opacity: .6;
}
.footer_contact .contact .tel::before{
    content: '';
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: solid 1px #e0e0e0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url("../img/common/tel.png")center/ 14px auto no-repeat;
}
.footer_contact .contact .tel span{
    display: block;
}
.footer_contact .contact .tel span.number{
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 2px;
    padding-bottom: 10px;
    line-height: 40px;
}
.footer_contact .contact .tel span.hours{
    font-size: 14px;
}
.footer_contact .contact .button,.footer_contact .assessment .button{
    position: relative;
    color: #fff;
    display: block;
    width: 100%;
    max-width: 360px;
    padding: 18px 30px;
    transition: all 0.4s ease-out;
    font-weight: 600;
}
.footer_contact .contact .button::before,.footer_contact .assessment .button::before{
    content:"";
    width:100%;
    height:100%;
    position:absolute;
    z-index:-1;
    top: 0;
    left:0;
    transition:0.5s;
    background: linear-gradient(45deg, rgba(189,177,144,0.8) 0%, rgba(131,117,78,0.8) 100%);
}
.footer_contact .contact .button::after,.footer_contact .assessment .button::after{
    content:"";
    width:100%;
    height:100%;
    position:absolute;
    z-index:-2;
    top: 0;
    left:0;
    background: linear-gradient(45deg, rgba(131,117,78,0.8) 0%, rgba(189,177,144,0.8) 100%);
}
.footer_contact .contact .button:hover::before,.footer_contact .assessment .button:hover::before{
    opacity: 0;
}
.footer_contact .button .arrow{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    padding-right: 20px;
    width: 12px;
    height: 12px;
    background: url("../img/common/arrow.png")center/ 12px auto no-repeat;
    transition: .4s;
}
.footer_contact .button:hover .arrow{
    right: 12px;
}
footer{
    background: linear-gradient(90deg, rgba(252,250,250,1) 0%, rgba(226,226,226,1) 100%);
}
footer .top{
    width: 80%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding-bottom: 9rem;
    padding-top: 12rem;
}
footer .top .logo{
    display: block;
    width: 130px;
    padding-bottom: 50px;
    transition: .4s;
}
footer .top .logo:hover{
    opacity: .7;
}
footer .top .info p{
    font-size: 14px;
    line-height: 1.7em;
}
footer .top .sitemap{
    display: flex;
}
footer .top .sitemap ul:last-of-type{
    padding-left: 40px;
}
footer .top .sitemap ul li{
    margin-bottom: 15px;
}
footer .top .sitemap a{
    font-size: 14px;
    display: block;
    line-height: 1em;
    padding-left: 20px;
    position: relative;
    transition: .4s;
}
footer .top .sitemap a::before{
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
footer .top .sitemap a:hover{
    opacity: .6;
}
footer .bottom{
    font-size: 12px;
    width: 80%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding-bottom: 7rem;
}
footer .bottom a{
    transition: .4s;
}
footer .bottom a:hover{
    opacity: .6;
}
@media print, screen and (max-width: 1200px) {
    .footer_contact .heading span {
        font-size: 36px;
    }
    .footer_contact .contact .tel span.number {
        font-size: 36px;
    }
}
@media print, screen and (max-width: 1000px) {
    .footer_contact .contact .tel span.number {
        font-size: 30px;
    }
}


/*---------------------------------

  下層ページ共通title

---------------------------------*/
.common_title{
    margin-top: 5rem;
    margin-bottom: 4rem;
    position: relative;
}
.common_title::before{
    content: '';
    position: absolute;
    right: 0;
    bottom: 5rem;
    height: 1px;
    width: 100vw;
    background-color: #e0e0e0;
    z-index: -1;
}
.common_title::after{
    content: '';
    position: absolute;
    right: 0;
    bottom: calc(12rem + 88px + 7rem);
    height: 1px;
    width: 100vw;
    background-color: #e0e0e0;
    z-index: -1;
}
.common_title .inner{
    width: 86%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.common_title .inner .image{
    width: 55%;
}
.common_title .h2{
    width: 45%;
    padding-left: 12rem;
    padding-bottom: 12rem;
}
.common_title .h2 h2{
    font-size: 14px;
    line-height: 1em;
    position: relative;
    padding-left: 20px;
    margin-bottom: 30px;
}
.common_title .h2 h2::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #e0e0e0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.common_title .h2 span{
    font-size: 44px;
    line-height: 1em;
    font-weight: 600;
}
.common_title .img-wrap {
  overflow: hidden;
  position: relative;
}
.common_title .img-wrap:before {
  animation: img-wrap 0.8s ease-out forwards;
  background: #e0e0e0;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
@keyframes img-wrap {
  0% {
    transform: translateX(20%);
  }
  100% {
    transform: translateX(100%);
  }
}
.common_title .img-wrap img{
  animation: img-scale 1.5s ease-out forwards;
}
@keyframes img-scale {
  0% {
    transform: scale(1.12);
    filter:blur(2px);
  }
  100% {
    transform: scale(1);
    filter:blur(0); 
  }
}
.fadeUpTrigger{
  transform: translateY(60px);
  opacity: 0;
  visibility: hidden;
  transition: transform 1.6s, opacity 1.6s, visibility 1.6s;
  transition-delay: 1s;    
}
.fadeUpTrigger.fadeUp{
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.pankuzu{
    margin-bottom: 12rem;
}
.pankuzu .inner{
    width: 86%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    font-size: 12px;
    line-height: 1em;
}
.pankuzu .inner a{
    font-size: 12px;
    display: inline-block;
    padding-right: 5px;
    transition: .4s;
}
.pankuzu .inner a:hover{
    opacity: .6;
}
.pankuzu .inner span{
    font-size: 12px;
    display: inline-block;
    padding-left: 5px;
}


@media print, screen and (max-width: 1000px) {
    /*---------------------------------

      header

    ---------------------------------*/
    header.pc{
        display: none;
    }
    header.sp{
        display: block;
        height: 60px;
        background: linear-gradient(90deg, rgba(252,250,250,0.95) 0%, rgba(226,226,226,0.95) 100%);
    }
    header.sp .logo{
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        width: 120px;
    }
    header.sp h1 {
        margin-left: 0;
    }
    header.sp nav ul{
        display: block;
    }
    header.sp nav ul li a{
        text-shadow: none;
    }
    header nav ul li a.button{
        width: 100%;
        max-width: 320px;
    }
    /*ハンバーガーメニュー*/
    .hamburger {
        width: 50px;
        height: 40px;
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hamburger__container {
        display: block;
    }
    .hamburger__top, .hamburger__middle, .hamburger__bottom {
        display: block;
        width: 40px;
        height: 1px;
        background-color: #222;
    }
    .hamburger__middle {
        margin: 6px 0 6px 0;
        opacity: 1;
        transition: margin 300ms ease-in-out, opacity 0s ease-in-out;
    }
    .hamburger__top, .hamburger__bottom {
        transform: rotate(0);
        transition: transform 300ms ease-in-out, background-color 300ms ease-in-out;
    }
    .hamburger.js-menu-open {
        transition-delay: 300ms;
    }
    .hamburger.js-menu-open .hamburger__top,
    .hamburger.js-menu-open .hamburger__middle,
    .hamburger.js-menu-open .hamburger__bottom {
        background-color: #222;
    }
    .hamburger.js-menu-open .hamburger__middle {
        margin: -1px 0 -1px 0;
        opacity: 0;
        transition: margin 300ms ease-in-out, opacity 0s ease-in-out;
    }
    .hamburger.js-menu-open .hamburger__top,
    .hamburger.js-menu-open .hamburger__bottom {
        transition-delay: 300ms;
    }
    .hamburger.js-menu-open .hamburger__top {
        transform: rotate(25deg);
    }
    .hamburger.js-menu-open .hamburger__bottom {
        transform: rotate(-25deg);
    }

    /*スマホナビメニュー*/
    .sp__menu {
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        z-index: -10;
        background: linear-gradient(90deg, rgba(252,250,250,0.98) 0%, rgba(226,226,226,0.98) 100%);
        visibility: hidden;
        opacity: 0;
        transition: 0.3s cubic-bezier(0.11, 0.24, 0.64, 1);
    }
    .sp__menu.js-open {
        z-index: 100;
        opacity: 1;
        visibility: visible;
        transition: 0.3s cubic-bezier(0.11, 0.24, 0.64, 1);
    }
    .sp__menu__container {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .sp__menu__nav{
        width: 100%;
    }
    .sp__menu__nav ul li {
        text-align: center;
        overflow: hidden;
        margin: 0;
    }
    header nav ul li:nth-of-type(4),header nav ul li:nth-of-type(5){
        margin: 0 0 35px;
    }
    header .sp__menu__nav ul li{
        margin-bottom: 35px;
    }
    .sp__menu__nav ul li:nth-child(1) a {
        transition-delay: 60ms;
    }
    .sp__menu__nav ul li:nth-child(2) a {
        transition-delay: 110ms;
    }
    .sp__menu__nav ul li:nth-child(3) a {
        transition-delay: 160ms;
    }
    .sp__menu__nav ul li:nth-child(4) a {
        transition-delay: 210ms;
    }
    .sp__menu__nav ul li:nth-child(5) a {
        transition-delay: 260ms;
    }
    .sp__menu__nav ul li:nth-child(6) a {
        transition-delay: 310ms;
    }
    .sp__menu__nav ul li:nth-child(7) a {
        transition-delay: 365ms;
        transition-duration: 0.35s;
    }
    .sp__menu__nav ul li a {
        font-size: 18px;
        color: #222;
        text-decoration: none;
        display: inline-block;
        letter-spacing: .05rem;;
        opacity: 0;
        transform: translate3d(0, 100%, 0);
        transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
        position: relative;
    }
    .sp__menu__nav ul li a.js-menu-open {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    .sp__menu__nav ul li a.js-menu-open::before {
        transform-origin: 0 0;
        transform: scaleX(1);
    }
    .sp__menu__nav ul li:nth-child(5) a{
        margin: 10px 0;
    }
    .sp__menu__nav ul li a.tel{
        display: block;
        padding-left: 0;
        padding-right: 0;
    }
    .sp__menu__nav ul li a.tel span{
        display: block;
    }
    .sp__menu__nav ul li a.tel span.number{
        font-size: 32px;
        font-weight: 400;
        letter-spacing: 2px;
        padding-bottom: 5px;
        padding-left: 35px;
        line-height: 40px;
        width: fit-content;
        position: relative;
        display: block;
        margin: 0 auto;
    }
    .sp__menu__nav ul li a.tel span.number::before{
        content: '';
        width: 25px;
        height: 25px;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        background: url("../img/common/tel.png")center/ 23px auto no-repeat;
    }
    .sp__menu__nav ul li a.tel span.hours{
        font-size: 13px;
        font-weight: 300;
    }
    .common_title{
        margin-top: 10rem;
    }
    .common_title .h2 span{
        font-size: 34px;
    }
    .common_title::after{
        bottom: calc(12rem + 80px + 7rem);
    }


}


@media print, screen and (max-width: 750px) {
    body{
        font-size: 15px;
        line-height: 1.7em;
    }
    .sp_none{
        display: none;
    }
    .pc_none{
        display: block;
    }


    /*---------------------------------

      header

    ---------------------------------*/
    header nav ul li:nth-of-type(4),header nav ul li:nth-of-type(5){
        margin: 0 0 20px;
    }
    header .sp__menu__nav ul li{
        margin-bottom: 8rem;
    }
    .sp__menu__nav ul li a{
        font-size: 16px;
        padding: 12px;
    }
    header nav ul li a.button{
        padding: 18px 0;
    }


    /*---------------------------------

      footer

    ---------------------------------*/
    .footer_contact .inner{
        display: block;
        padding: 20rem 0;
    }
    .footer_contact .contact, .footer_contact .assessment{
        width: 100%;
    }
    .footer_contact .contact{
        padding-bottom: 20rem;
        border-bottom: solid 1px #e0e0e0;
        margin-bottom: 20rem;
    }
    .footer_contact::before{
        display: none;
    }
    .footer_contact .contact .container, .footer_contact .assessment .container{
        width: 80%;
    }
    .footer_contact .heading {
        margin-bottom: 18rem;
    }
    .footer_contact .heading::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: -8rem;
        width: 40px;
        height: 1px;
        background-color: #e0e0e0;
    }
    .footer_contact .heading h3 {
        font-size: 13px;
        margin-bottom: 10px;
    }
    .footer_contact .contact .text{
        padding-bottom: 6rem;
    }
    .footer_contact .contact .tel{
        padding-left: 55px;
        margin-bottom: 10rem;
    }
    .footer_contact .contact .tel span.hours{
        font-size: 13px;
    }
    .footer_contact .contact .tel span.number{
        padding-bottom: 3px;
    }
    .footer_contact .assessment .heading h3{
        margin-bottom: 15px;
    }
    .footer_contact .assessment .heading span{
        line-height: 34px;
    }
    .footer_contact .assessment .text{
        padding-bottom: 10rem;
    }
    footer .top {
        padding-bottom: 16rem;
        padding-top: 25rem;
        display: block;
    }
    footer .top .logo {
        padding-bottom: 18rem;
    }
    footer .top .info p{
        padding-bottom: 10rem;
    }
    footer .top .sitemap{
        display: block;
    }
    footer .top .sitemap ul:last-of-type{
        padding-left: 0;
    }
    footer .top .sitemap a::before {
        width: 6px;
        height: 1px;
        border-radius: 0;
        background-color: #bbb;
    } 
    footer .top .sitemap a{
        padding-left: 18px;
    }
    footer .bottom {
        font-size: 12px;
        display: block;
        padding-bottom: 18rem;
        text-align: center;
    }
    footer .bottom a{
        display: block;
        padding-bottom: 2rem;
    }


    /*---------------------------------

      下層ページ共通title

    ---------------------------------*/
    .common_title .inner{
        display: block;
        padding: 0 10rem;
        width: 100%;
    }
    .common_title {
        margin-top: 18rem;
        margin-bottom: 20rem;
    }
    .common_title .inner .image{
        width: 90%;
        margin: 0 0 14rem auto;
    }
    .common_title .h2 {
        width: 100%;
        padding: 0;
    }
    .common_title .h2 h2{
        margin-bottom: 5rem;
    }
    .common_title .h2 span {
        font-size: 36px;
    }
    .common_title::before{
        bottom: -12rem;
    }
    .pankuzu {
        margin-bottom: 20rem;
    }





















}