@charset "UTF-8";

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

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

.section-title .en{
    display: block;
    color: #EEF4FF;
    font-family: "Ubuntu", sans-serif;
    font-size: 112px;
    font-weight: 600;
    line-height: 0.8em;
    letter-spacing: 0.05em;
}
.section-title .ja{
    display: block;
    color: #335592;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.13rem;
    font-weight: 600;
    line-height: 1.2em;
}
.section-title .ja .small{
    font-size: 1.8rem;
}


.btn{
    display: block;
    width: 250px;
    min-width: 250px;
    height: 50px;
    color: #fff;
    background-color: #335592;
    border: 1px solid #335592;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 20px;
    position: relative;
}
.btn:hover{
    opacity: 1;
    color: #335592;
    background-color: #EEF4FF;
}
.btn::after{
    content: "";
    width: 20px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 24px;
    right: 23px;
}
.btn:hover::after{
    background-color: #335592;
    right: 18px;
}

/* 各ページタイトル */
.page-title{
    width: 100%;
    height: 334px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.page-title .title-wrap{
    display: block;
    width: 260px;
    height: 60px;
    color: #222;
    font-size: 2.13rem;
    font-weight: 500;
    line-height: 1em;
    text-align: center;
    padding: 15px;
    background-color: #fff;
    border-radius: 0 20px 0 0;
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 10;
}

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

/* header -------------------------------- */
#header{
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

#header .logo{
    width: 170px;
}

#header .nav .menu{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 60px;
    background-color: #fff;
    border-radius: 40px;
    box-shadow: 0 0 10px 5px rgba(204, 204, 204, 0.25);
}
#header .nav .menu li{
    margin-left: 40px;
}
#header .nav .menu li:last-of-type{
    margin-right: 40px;
}
#header .nav .menu li a{
    text-decoration: none;
}
#header .nav .menu .sns a{
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: #C58D1F;
    border-radius: 50%;
}

/* contact ------------------------------- */
#contact{
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

#contact .info-area{
    width: 60%;
}
#contact .info-area .text{
    font-size: 1.33rem;
    text-align: center;
    margin-bottom: 5px;
}

#contact .info-area .tel{
    display: block;
    width: 350px;
    height: 70px;
    background-color: #335592;
    border-radius: 45px;
    border: 1px solid #335592;
    text-decoration: none;
    padding: 14px 0;
    margin: 0 auto 5px auto;
}
#contact .info-area .tel .tel-number{
    width: 245px;
    color: #fff;
    font-size: 2.3rem;
    font-weight: 500;
    line-height: 1em;
    margin: 0 35px 0 70px;
    position: relative;
}
#contact .info-area .tel .tel-number::before{
    content: "";
    width: 40px;
    height: 40px;
    background-image: url(../img/icon-phone-white.png);
    background-size: contain;
    position: absolute;
    top: 0;
    left: -45px;
}
#contact .info-area .tel:hover{
    background-color: #EEF4FF;
    opacity: 1;
}
#contact .info-area .tel:hover .tel-number{
    color: #335592;
}
#contact .info-area .tel:hover .tel-number::before{
    background-image: url(../img/icon-phone.png);
}

#contact .info-area .recept-time{
    text-align: center;
}

#contact .img-area{
    width: 40%;
    height: 384px;
    background-image: url(../img/contact.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 0 0 0 20px;
    position: relative;
}
#contact .img-area .section-title .en{
    color: #fff;
    font-size: 5.2rem;
    letter-spacing: -0.05em;
    writing-mode: vertical-rl;
    position: absolute;
    top: 0;
    left: -3px;
    z-index: 10;
}


/* footer  ------------------------------- */
#footer{
    width: 100%;
    position: relative;
}

#footer .img-wrap{
    width: 375px;
    height: 413px;
    border-radius: 0 20px 20px 0;
    position: absolute;
    top: -60px;
    left: 0;
    z-index: 10;
}
#footer .img-wrap img{
    width: 100%;
    border-radius: 0 20px 20px 0;
}

#footer .main-wrap{
    width: calc(100% - 110px);
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin: 0 0 0 auto;
}
#footer .main-wrap .copyright{
    display: block;
    width: 20px;
    flex-shrink: 0;
    color: #335592;
    font-size: 0.66rem;
    writing-mode: vertical-rl;
    margin-bottom: 5px;
}

#footer .main-wrap .main-area{
    width: calc(100% - 20px);
    background-color: #335592;
    background-image: url(../img/footer-english.png);
    background-position: top right;
    background-size: 50%;
    padding-left: 280px;
    padding-bottom: 120px;
}

#footer .main-wrap .main-area .info-wrap{
    margin-top: 60px;
    margin-bottom: 60px;
}
#footer .main-wrap .main-area .info-wrap .footer-logo{
    width: 230px;
    margin-bottom: 10px;
}
#footer .main-wrap .main-area .info-wrap .footer-logo img{
    width: 100%;
}
#footer .main-wrap .main-area .info-wrap p{
    color: #fff;
    line-height: 1.2em;
}
#footer .main-wrap .main-area .info-wrap .address{
    margin-bottom: 10px;
}
#footer .main-wrap .main-area .info-wrap .address span{
    display: block;
}
#footer .main-wrap .main-area .info-wrap .address .post-number{
    font-size: 0.8rem;
}
#footer .main-wrap .main-area .info-wrap .fax{
    margin-bottom: 10px;
}

#footer .main-wrap .main-area .footer-nav{
    width: 560px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 280px 40px auto;
}
#footer .main-wrap .main-area .footer-nav li{
    margin-left: 30px;
}
#footer .main-wrap .main-area .footer-nav li a{
    color: #fff;
}

#footer .main-wrap .main-area .banner-list{
    width: 560px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 280px 0 auto;
}
#footer .main-wrap .main-area .banner-list li:first-child{
    width: 340px;
    margin-right: 20px;
}
#footer .main-wrap .main-area .banner-list li:last-child{
    width: 198px;
}

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

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

    .section-title .en{
        font-size: 80px;
    }
    .section-title .ja{
        font-size: 1.6rem;
    }
    .section-title .ja .small{
        font-size: 1.3rem;
    }


    .btn:hover{
        opacity: 1;
        color: #fff;
        background-color: #335592;
    }
    .btn:hover::after{
        background-color: #fff;
        right: 23px;
    }

    /* header -------------------------------- */

    /* ハンバーガーメニュー */
    #header .hamburger{
        width: 40px;
        height: 40px;
        background-color: #fff;
        border-radius: 15px;
        box-shadow: 0 0 10px 5px rgba(204, 204, 204, 0.25);
        cursor: pointer;
        position: fixed;
        top: 25px;
        right: 40px;
        z-index: 100;
    }
    #header .hamburger span{
        width: 24px;
        height: 1px;
        background-color: #222;
        display: inline-block;
        position: absolute;
        left: 8px;
        transition: all 0.4s;
    }
    #header .hamburger span:nth-of-type(1){
        top: 13px;
    }
    #header .hamburger span:nth-of-type(2){
        top: 20px;
    }
    #header .hamburger span:nth-of-type(3){
        top: 27px;
    }
    /* active */
    #header .hamburger.active span:nth-of-type(1){
        top: 20px;
        transform: rotate(45deg);
    }
    #header .hamburger.active span:nth-of-type(2){
        opacity: 0;
    }
    #header .hamburger.active span:nth-of-type(3){
        top: 20px;
        transform: rotate(-45deg);
    }

    #header .nav{
        width: 70%;
        height: 100vh;
        background-color: #335592;
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 90;
    }
    #header .nav.active{
        transform: translateX(0);
        overflow: auto;
    }


    #header .nav .menu{
        flex-direction: column;
        justify-content: center;
        height: 100%;
        background-color: #335592;
        box-shadow: none;
    }
    #header .nav .menu li{
        margin-left: 0;
        margin-bottom: 50px;
    }
    #header .nav .menu li:last-of-type{
        margin-right: 0;
        margin-bottom: 0;
    }
    #header .nav .menu li a{
        color: #fff;
    }
    #header .nav .menu .sns a{
        background-color: #335592;
    }
    #header .nav .menu .sns a .instagram-icon{
        display: none;
    }
    #header .nav .menu .sns a .tb{
        position: relative;
    }
    #header .nav .menu .sns a .tb::before{
        content: "";
        background-image: url(../img/icon-insta-white-sp.png);
        background-size: contain;
        width: 35px;
        height: 35px;
        position: absolute;
        top: -5px;
        left: -35px;
    }

    /* contact ------------------------------- */
    #contact .info-area .tel:hover{
        background-color: #335592;
        opacity: 1;
    }
    #contact .info-area .tel:hover .tel-number{
        color: #fff;
    }
    #contact .info-area .tel:hover .tel-number::before{
        background-image: url(../img/icon-phone-white.png);
    }

    /* footer  ------------------------------- */
    #footer .img-wrap{
        width: 185px;
        height: auto;
    }

    #footer .main-wrap{
        width: calc(100% - 55px);
    }

    #footer .main-wrap .main-area{
        padding-left: 140px;
    }

    #footer .main-wrap .main-area .footer-nav{
        margin: 0 130px 40px auto;
    }
    #footer .main-wrap .main-area .footer-nav li:first-child{
        margin-left: 0;
    }

    #footer .main-wrap .main-area .banner-list{
        flex-direction: column-reverse;
        justify-content: flex-end;
        align-items: flex-end;
        margin: 0 130px 0 auto;
    }
    #footer .main-wrap .main-area .banner-list li:first-child{
        margin-right: 40px;
    }
    #footer .main-wrap .main-area .banner-list li:last-child{
        margin-right: 40px;
        margin-bottom: 10px;
    }

}

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

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

    .section-title .en{
        font-size: 48px;
    }

    /* 各ページタイトル */
    .page-title{
        height: 174px;
    }
    .page-title .title-wrap{
        width: 175px;
        height: 45px;
        font-size: 1.3rem;
        padding: 13px;
    }

    /* header -------------------------------- */
    #header{
        height: 80px;
        padding: 0 20px;
    }
    
    #header .logo{
        width: 130px;
    }

    /* ハンバーガーメニュー */
    #header .hamburger{
        top: 18px;
        right: 20px;
    }

    /* contact ------------------------------- */
    #contact{
        flex-direction: column-reverse;
    }

    #contact .info-area{
        width: 100%;
        padding: 60px 0;
    }
    #contact .info-area .text{
        font-size: 1rem;
    }

    #contact .info-area .tel{
        width: 320px;
        height: 68px;
        padding: 14px 0;
    }
    #contact .info-area .tel .tel-number{
        width: 220px;
        font-size: 2.13rem;
        margin: 0 35px 0 65px;
    }
    #contact .info-area .tel .tel-number::before{
        width: 30px;
        height: 30px;
        top: 3px;
        left: -35px;
    }

    #contact .img-area{
        width: 100%;
        height: 260px;
        border-radius: 0;
    }
    #contact .img-area .section-title .en{
        font-size: 3.2rem;
        letter-spacing: 0em;
    }

    /* footer  ------------------------------- */
    #footer .img-wrap{
        width: 100%;
        height: 230px;
        border-radius: 0;
        top: 0;
        overflow: hidden;
    }

    #footer .img-wrap img{
        height: 100%;
        object-fit: cover;
        border-radius: 0;
    }

    #footer .main-wrap{
        width: 100%;
        padding-top: 230px;
        margin: 0 auto;
    }

    #footer .main-wrap .main-area{
        padding-left: 0;
        padding-bottom: 80px;
        margin: 0 auto;
    }

    #footer .main-wrap .main-area .info-wrap{
        margin-left: 5%;
    }

    #footer .main-wrap .main-area .footer-nav{
        width: 80%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin: 0 auto 40px;
    }
    #footer .main-wrap .main-area .footer-nav li{
        margin-left: 0;
    }
    #footer .main-wrap .main-area .footer-nav li:first-child{
        margin-left: 0;
    }

    #footer .main-wrap .main-area .banner-list{
        width: 100%;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    #footer .main-wrap .main-area .banner-list li:first-child{
        width: 300px;
        margin-right: 0;
    }
    #footer .main-wrap .main-area .banner-list li:last-child{
        margin-right: 0;
    }

}