@charset "utf-8";

body {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 400;
  overflow: visible;
  color: #443D3D;
  background-image: url(../images/body-background-img.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}


ul{
    padding: 0;
    list-style: none;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-left{
    padding: 20px,0;
    margin-left: 7%;
}

.nav-left img{
    width: 60%;
}

.nav-right ul{
    display: flex;
    align-items: center;
    margin-right: 100px;
    margin-bottom: 0;
    color: #B9788A;
}

.nav-right li{
    margin-left: 3.5rem;
    font-family: "Zen Maru Gothic";
    font-weight: 600;
    font-size: clamp(0.813rem, 0.19rem + 1.05vw, 1.5rem);
}

a{
    text-decoration: none;
    color: #B9788A;
}

.header-box{
    height: auto;
    animation: fadeIn 2s ease forwards;
}

h1{
    text-align: center;
}

.header-img-sp{
    display: none;
}

.message,.business,.president,.contact,.about{
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

h2{
    color: #B9788A;
    font-family: "Zen Maru Gothic";
    /* 最小文字サイズ23px */
    font-size: clamp(1.438rem, 1.215rem + 1.111vw, 2.188rem);
    font-weight: 700;
    letter-spacing: 3px;
    text-align: center;
    line-height: 220%;
    margin-top: 9rem;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 3px #7b7474;
}

.message-title{
    background: url(../images/message.png) no-repeat center;
    background-size: contain;
}

p{
    margin-top: 3rem;
    margin-bottom: 2rem;
    font-size: 16px;
    letter-spacing: 1px;
    text-align: center;
}

strong{
    font-size: 1.1rem;
    display: block;
    padding-bottom: 0.7rem;
}

.p-left{
    text-align: left;
}

.p-title{
    margin-top: 1rem;
}

.message-box{
    width: 100%;
    color: #fff;
    text-align: center;
    background: linear-gradient(90deg,#D47CAC,#E9B2AB);
    border-radius: 34px;
    align-items: center;
    padding: 2rem 3rem;
    margin-left: 0;
}

.message-btn{
    padding-bottom: 1rem;
}

.message-img{
    width: 80%;
}

.business ul{
    text-align: left;
    color: #fff;
    width: 100%;
    background: linear-gradient(90deg,#D47CAC,#E9B2AB);
    border-radius: 34px;
    align-items: stretch;
    height: 100%;
    padding: 2rem 2rem 1.5rem 2rem;
}

.business li{
    margin-bottom: 3px;
}

.business-title{
    background: url(../images/business.png) no-repeat center;
    background-size: contain;

}

.president-title{
    background: url(../images/president.png) no-repeat center;
    background-size: contain;
}

.president-sp{
    display: none;
}

.contact-title{
    background: url(../images/contact.png) no-repeat center;
    background-size: contain;
}

.contact-btn{
    width: 40%;
    margin: 2rem auto 3rem auto;
    display: block;
    overflow: visible;
    animation: fadeIn 2s ease forwards;
}

#about{
    background: linear-gradient(90deg,#D47CAC,#E9B2AB);
    background-size: cover;
    padding-top: 2rem;
    margin-top: 7rem;
} 

.about-title{
    width: 100%;
    color: #fff;
    background: url(../images/about.png) no-repeat center;
    background-size: contain;
    margin-top: 0;
}

.about-box{
    padding: 0 5% 5% 5%;
}

.about-text1,.about-text2{
    color: #fff;
    align-items: center;
    padding: 20px auto;
    letter-spacing: 1px;
}

.about-text1 li,.about-text2 li{
    padding-top: 3px;
    padding-bottom: 3px;
    font-size: 14px;
}

.about-text1{
    text-align: right;
}

iframe{
    height: 90%;
    width: 100%;
}

.footer{
    height: 80px;
}

.copyright{
    text-align: center;
    padding: 30px;
    margin-bottom: 0;
    margin-top: 0;
}


/* アニメーション */
@keyframes fadeIn{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}


/* ハンバーガー */
#drawer {
    position: sticky;
    top: 10px;
    left: 10px;
    z-index: 60;
    padding-left: 10px;
    margin-top: -35px;
    padding-bottom: 10px;

  }

  .unshown {
    display:none;
  }
  #open {
    display: inline-block;
    width: 30px;
    height: 22px;
    vertical-align: middle;
  }
  #open span, #open span::before, #open span::after {
    position: absolute;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #555;
    display: block;
    content: "";
    cursor: pointer;
  }
  #open span::before {
    bottom: -8px;
  }
  #open span::after {
    bottom: -16px;
  }
  #close {
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .3s ease-in-out;
  }
  #menu-content {
    overflow: visible;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 90%;
    max-width: 230px;
    height: 100%;
    padding-top: 30px;
    background: #fff;
    transition: .3s ease-in-out;
    transform: translateX(-105%);
  }
  #menu-content li{
    padding: 20px;
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-weight: 500;
  }
  #input:checked ~ #close {
    display: block;
    opacity: .5;
  }
  #input:checked ~ #menu-content {
    transform: translateX(0%);
    box-shadow: 6px 0 25px rgba(0,0,0,.15);
  }
  
  @media screen and (min-width:961px) {
    #open {
      display:none;
    }
 }


/* レスポンシブ */

@media screen and (max-width:960px){

    nav{
        position: initial;
        height: 50px;
        justify-content: center;
        padding-top: 10px;
    }
    
    .nav-right{
        display: none;
     }

    .nav-left{
        padding: 9% 10% 10% 10%;
        margin-left: 0;
        text-align: center;
    }

    .nav-left img{
        width: 40%;
    }

    h2{
    margin-top: 5rem;
    margin-bottom: 2rem;
    }

    .message,.business,.president,.contact,.about{
       max-width: 900px;
       width: 90%;
    }

    .message-box{
        padding: 2rem 2rem;
    }

    .message-text{
        text-align: left;
    }

    strong{
        padding-bottom: 0.4rem;
    }

    .message-img{
        width: 90%;
    }

}


@media screen and (max-width:768px){

    #drawer{
        padding-bottom: 1%;
    }

   p{
        font-size: 12px;
    }

    .p-left{
        text-align: center;
    }

    .business-text,.about-text2{
        text-align: left;
    }

    .message-box{
        padding: 2rem 2rem 3rem 2rem;
    }
    
    .message-img{
        width: 70%;
    }

    .message-btn{
        padding-bottom: 2rem;
        width: 80%;
    }

    .business ul{
        text-align: center;
        font-size: 13px;
    }

    .business-list{
        gap: 1rem;
    }

    .contact-btn{
    width: 60%;
    }

    #about{
        margin-top: 4rem;
    }

   .about-box-left{
    width: 100%;
    padding: 0;
    }

    .about-list{
        padding-bottom: 0;

    }

    .about-text1,.about-text2{
        padding: 0;
        font-size: 12px;
    }

    .about-text li{
        padding-top: 2px;
        padding-bottom: 2px;
    }

    .about-map{
        width: 60%;
        height: 8%;
        position: relative;
        padding-top: 56.25%;
        padding-bottom: 20px;
    }

    iframe{
        position: absolute;
        top: 0;
        left: 10%;
        width: 145%;
        height: 80%;
    }

    .copyright{
        text-align: center;
        font-size: 12px;
        padding: 20px;
    }
  

}


@media screen and (max-width:598px){

    #drawer{
        padding-bottom: 2%;
    }    

    .message,.business,.president,.contact,.about{
       width: 100%;
    }

    .header-img{
        display: none;
    }

    .header-img-sp{
        display: block;
    }

    h2{
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    }

    p{
        margin-top: 2rem;
    }

    .message-box{
        padding: 1rem 0 2rem 0;
    }

    .message-img{
        width: 90%;
    }

    .message-btn{
        width: 90%;
    }

    .business ul{
    padding: 1rem;
    }

    .president-hp{
        display: none;
    }

    .president-sp{
        display: block;
    }

    .contact-btn{
    width: 80%;
    }

    .about-padding{
        padding-left: 0;
    }


}