@charset "UTF-8";

html {
    font-size: 100%;
}

body {
    font-size: 1rem;
    color: #707070;
    font-family: Verdana, Roboto, "Droid Sans", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "MS Ｐゴシック", sans-serif;
    font-family: 'Ruluko', sans-serif;
}

img {
    max-width: 100%;
}

a {
    display: inline-block;
    text-decoration: none;
    color: #707070;
}

li {
    list-style: none;
}

.container {
    opacity: 0;
    transition: all 0.4s ease;
}

.wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2%;
}

.section-title {
    font-size: 3rem;
    margin: 0 0 20px 0;
}

h2,h3,h4 {
    font-weight: normal;
}

.policy {
    width: 80%;
}

.policy .section-title {
    margin: 120px 0 40px 0;
}

.policy .sub-title {
    font-size: 1.4rem;
    margin: 60px 0 40px 0;
}

.policy ol {
    margin: 20px -20px 20px 0;
}

.policy li {
    list-style: decimal;
    list-style-position:inside;
}

.policy p {
    margin: 0 0 40px 0;
}

.sub-li {
    margin: 0 0 0 40px;
}

.link-btn {
    width: 360px;
    padding: 15px 0;
    border: 1px solid #00A882;
    border-radius: 100px;
    text-align: center;
    transition: all 0.2s ease;
}

.link-btn:hover {
    color: #fff;
    background-color: #00A882;
}

.fade {
    animation-name:fadeAnime;
    animation-duration: 1.2s;
    animation-fill-mode:forwards;
    opacity:0;
}
  
@keyframes fadeAnime{
    from {
        opacity: 0;
    }
    
    to {
        opacity: 1;
    }
}

.fadeTrigger {
    opacity: 0;
}

/* header */
#header {
    position: relative;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.site-title {
    position: relative;
    width: 240px;
    margin: 6px 0 0 0;
    z-index: 5000;
}

.openbtn {
    position: fixed;
    right: 2%;
    width: 70px;
    height: 70px;
    cursor: pointer;
    background-color: #fff;
    border-radius: 100%;
    z-index: 10000;
    transition: all 0.4s ease;
}

.openbtn:hover {
    transform: scale(1.2,1.2);
}

.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    width: 50%;
    right: 17.5px;
    height: 2px;
    background-color: #707070;
}

.openbtn span:nth-of-type(1) {
    top: 25px;
}

.openbtn span:nth-of-type(2) {
    top: 35px;
}

.openbtn span:nth-of-type(3) {
    top: 45px;
}

.openbtn-active span:nth-of-type(1) {
    transform: translateY(10px) rotateZ(-45deg);
    transform-origin: center;
}

.openbtn-active span:nth-of-type(2) {
    transform: translateY(0px) rotateZ(45deg);
    transform-origin: center;
    opacity: 0;
}

.openbtn-active span:nth-of-type(3) {
    transform: translateY(-10px) rotateZ(45deg);
    transform-origin: center;
}

.mask {
    position: fixed;
    top: -120%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9000;
    transition: all 0.6s ease;
    opacity: 0;
}

.mask-active {
    top: 0;
    opacity: 1;
}

.mask .site-title {
    margin: 16px 0 0 2%;
}

.mask .menu {
    position: absolute;
    z-index: 9000;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    text-align: center;
    font-size: 1.2rem;
}

.mask .menu .btn {
    margin: 0 0 40px 0;
    transition: all 0.2s ease;
}

.mask .menu .reserve {
    width: 360px;
    padding: 20px 0;
    border: 1px solid #00A882;
    border-radius: 100px;
}

.mask .menu .btn:hover {
    color: #00A882;
}

.mask .menu .reserve:hover {
    background-color: #00A882;
    color: #fff;
}

.mask .sns-link .icon {
    margin: 0 5px 0 0;
    color: #00A882;
}

.mask .sns-link a {
    margin: 0 20px 0 0;
    color: #00A882;
}

.mask .sns-link a:last-of-type {
    margin: 0;
}

.mask .sns-link a:hover {
    opacity: 0.6;
}

/* footer */
.footer {
    margin: -20px 0 0 0;
    padding: 120px 0 20px 0;
    background-color: #00A882;
    border-radius: 20px 20px 0 0;
    color: #fff;
}

.footer a {
    color: #fff;
}

.footer .flex-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 120px 0;
}

.footer .footer-logo {
    width: 46%;
    padding: 0 80px 0 0;
}

.footer .flex-item img {
    object-fit: contain;
}

.footer .content {
    text-align: center;
}

.footer .content ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 30px 0;
}

.footer li {
    margin: 0 20px 0 0;
    font-size: 0.875rem;
    border-bottom: 2px solid #00A882;
    transition: all 0.2s ease;
}

.footer li:last-of-type {
    margin: 0;
}

.footer .copy p {
    margin: 0 0 0 20px;
}

.footer li:hover {
    border-bottom: 2px solid #fff;
}

.footer .content .link-btn {
    border: 1px solid #fff;
}

.footer .content .link-btn:hover {
    background-color: #fff;
    color: #707070;
}

.footer .copy {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* about共通 */
#title {
    display: flex;
    align-items: center;
    z-index: 1001;
    margin: 80px 0 0 0;
}

#title .item01 {
    width: 54%;
    height: 120%;
    z-index: 1001;
    margin: 0 80px 80px 0;
}

#title .item01 img {
    width: 100%;
    object-fit: cover;
    object-position: left top;
    border-radius: 0 20px 20px 0;
    filter: drop-shadow(0 0 20px rgba(106, 106, 106, 0.2));
}

#title .item02 {
    width: 46%;
    line-height: 1;
    z-index: 1001;
    margin: -80px 0 0 0;
}

#title .route {
    margin: 20px 0 0 20%;
    display: flex;
}

#title .route li {
    margin: 0 20px 0 0;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

#title .route li:first-of-type {
    border-bottom: 1px solid #707070;
}

#title .route li:hover:first-of-type  {
    opacity: 0.6;
}

#title .route .icon {
    color: #00A882;
    font-size: 0.875rem;
    padding: 2px 0 0 0;
}

.background {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #E9F7EE;
    width: 68%;
    z-index: 1000;
}

#title .item02 .section-title span {
    font-size: 1.2rem;
    margin: 0 0 0 5px;
}

.about {
    position: relative;
    z-index: 2000;
    margin: 0 auto;
}

.about .text {
    width: 80%;
    border-radius: 20px;
    text-align: center;
    padding: 80px 0;
    margin: 0 auto;
    line-height: 4;
    filter: drop-shadow(0 0 20px rgba(106, 106, 106, 0.2));
    background-color: #fff;
}

.about .text p {
    margin: 0 0 80px 0;
}

.about .text p:last-of-type {
    margin: 0;
}

.about .image img {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 100%;
    object-fit: cover;
}

.about .image img:first-of-type {
    top: 8%;
    right: 2%;
}

.about .image img:nth-of-type(2) {
    top: 38%;
    left: 2%;
}

.about .image img:last-of-type {
    top: 68%;
    right: 2%;
}

.back-home {
    margin: 120px auto 140px auto;
    width: 80%;
    display: block;
    text-align: left;
}

.back-home a {
    transition: all 0.2s ease;
}

.back-home a:hover {
    opacity: 0.6;
}

/* レスポンシブ */
@media screen and (max-width: 1023px) {
    body {
        font-size: 0.9rem;
    }

    .footer {
        padding: 100px 0 20px 0;
    }

    .footer .flex-item {
        flex-direction: column;
        margin: 0 0 80px 0;
    }

    .footer .footer-logo {
        width: 80%;
        margin: 0 auto 60px auto;
        padding: 0;
    }

    .footer .content {
        width: 90%;
    }

    .footer .content ul {
        width: 70%;
        margin: 0 auto 60px auto;
    }

    /*about*/
    .background {
        width: 66%;
    }

    #title .route {
        margin: 20px 0 0 8%;
    }

    #title .item01 {
        margin: 0 40px 80px 0;
    }

    .about .text {
        width: 90%;
        padding: 60px 0;
    }

    .about .image img {
        width: 160px;
        height: 160px;
    }
}

@media screen and (max-width: 600px) {
    body {
        font-size: 0.7rem;
    }

    .openbtn {
        width: 50px;
        height: 50px;
    }
    
    .openbtn span{
        right: 12.5px;
    }
    
    .openbtn span:nth-of-type(1) {
        top: 17px;
    }
    
    .openbtn span:nth-of-type(2) {
        top: 25px;
    }
    
    .openbtn span:nth-of-type(3) {
        top: 33px;
    }
    
    .openbtn-active span:nth-of-type(1) {
        transform: translateY(8px) rotateZ(-45deg);
    }

    .openbtn-active span:nth-of-type(3) {
        transform: translateY(-8px) rotateZ(45deg);
    }

    .mask .menu {
        font-size: 0.9rem;
    }

    .mask .menu .reserve {
        width: 260px;
        padding: 15px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .site-title {
        width: 160px;
    }

    .link-btn {
        width: 100%;
        padding: 15px 0;
    }

    .footer li {
        margin: 0 10px 0 0;
        font-size: 0.6rem;
    }


    .footer .footer-logo {
        margin: 0 auto 60px auto;
    }

    .footer .content ul {
        width: 100%;
        margin: 0 auto 30px auto;
    }

    .footer .copy p {
        margin: 0 0 0 10px;
    }

    /* about */
    .background {
        width: 100%;
    }

    .about .text {
        width: 96%;
        padding: 40px 0;
    }

    .about .text p {
        margin: 0 0 40px 0;
    }

    #title .item01 {
        margin: 0 20px 40px 0;
    }

    #title .item02 .section-title span {
        font-size: 0.7rem;
    }
    
    #title .route li {
        margin: 0 10px 0 0;
        font-size: 0.6rem;
    }

    #title .route {
        margin: 20px 0 0 14%;
    }

    #title .route .icon {
        font-size: 0.7rem;
        padding: 2px 0 0 0;
    }

    .about .image img {
        width: 70px;
        height: 70px;
    }

    .about .image img:first-of-type {
        top: 10%;
    }
    
    .about .image img:nth-of-type(2) {
        top: 40%;
    }
    
    .about .image img:last-of-type {
        top: 70%;
    }
}