@charset "UTF-8";
body{
  margin: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
.body{
  margin:0;
}
.site{
  overflow-x: hidden;
}
p.text{
  word-break: normal;
}
h1 {
  font-size: 250%;
  letter-spacing: 1rem;
  color: #3d5445;
}
.top__text-caption {
  font-size: 1rem;
  letter-spacing: 0.8rem;
  padding-left: 2rem;
  line-height: 2em;
}
.top{
  display: flex;
  overflow: hidden;
}
.top__image-flower{
  height: 95vh;
  width: auto;
  flex-direction: row;
  padding-left: 10vw;
}
.top__image-name{
  padding: 0 auto;
  color: #414D67;
  flex-direction: row;
  line-height: 2rem;
  position: relative;
  left: 40vw;
  bottom: 10vh;
}

.top__text{
  flex-direction: row;
  position: relative;
  top: 30vh;
  padding-left:9vw;

}
.main {
  height: 0.5px;
  border: none;
  border-top: 3px #B9ACCC solid;
}
.line {
  height: 0.03px;
  border: none;
  border-top: 0.1px #adccba solid;
}



/* ハンバーガーメニュー*/
header {
  padding:10px 0 10px 0;
  width: 100%;
  background:rgba(153, 184, 132, 0.384);
  border:0;
  margin: 0;
}

#nav-drawer {
  position: relative;
  left:10px;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 60px;
  height: 22px;
  vertical-align: middle;
}

/*ハンバーガー*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #19241d;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -16px;
}

/*薄黒カバー*/
#nav-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;
}

/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 90%;
  max-width: 30vw;
  height: 100%;
  background: #E8DCE8;
  transition: .3s ease-in-out;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}
#nav-content ul{
  padding-top: 5rem;
}
#nav-content li{
  list-style-type: none;
  padding-bottom: 1rem;
  padding-left: 3rem;
}
#nav-content a{
  text-decoration: none;
  color: #19231C;
  font-size: 1.3rem;
  letter-spacing: 0.1vw;
  cursor: pointer;
  position: relative;
}
#nav-content a::after{
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #333;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: .3s;
}
#nav-content a:hover::after{
  transform: scale(1, 1);
}


#nav-input:checked ~ #nav-close {
  display: block;
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

/*profile*/
.y{
  color: #49804e;
  font-weight: bold;
}

.prof__image{
  height: auto;
  width: 50vw;
  margin: 0 25vw;
  text-align: center;
  border-radius:20px;
}

.prof__text{
  position: relative;
  text-align: center;
  padding: 0 auto;
  color: #414D67;
  flex-direction: row;
  line-height: 2rem;
  border-left: inset 3px #B9ACCC solid;
}
.prof__works{
  text-align: left;
  padding-left: 10vw;
  display: flex;
  line-height: 2rem;
}
.prof__works-image{
  width: auto;
  height: 40vw;
  margin: 10vw 0 0 1vw;
  flex-direction: row;
  border-radius: 25px;
}
h2{
  color: #3d5445;
  letter-spacing: 0.9rem;
  border-left: inset 10px #B9ACCC solid;
}
.prof__works-text{
  padding: 3vw 0 0 13vw;
}

.prof__books{
  display: flex;
}
.prof__books img{
  padding: 3vw 2vw 2vw 2vw;
  margin: 0;
  width: auto;
  height: 35vw;
}
.prof__books-text{
  text-align: left;
  padding: 3vw 6vw 0 5vw;
  flex-direction: row;
}

.prof__group{
  display:flex;
}
.prof__group img{
  padding: 1vw 10vw 2vw 16vw;
  margin:0;
  width: auto;
  height: 30vw;
}
.prof__group-text{
  text-align: left;
  padding: 3vw 8vw 10vw 8vw;
  flex-direction: row;
}

/*lesson*/
.sp{
  display: none;
}
#lesson{
  height: 100vh;
  background-image: url("../images/flowers.jpg");
  background-repeat: no-repeat;
  background-size: 100vw;
}
.lesson{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.title{
  text-align: center;
}

.lesson__detail{
  display: flex;
  flex-direction: column;
  background-color: rgba(255,255,255,0.8);
  border: 5px;
  border-radius: 5%;
  width: 20rem;
  margin-left: 5%;
  margin-bottom: 5%;
  line-height: 2rem;
}
.lesson__place{
  position: relative;
  text-align: center;
  padding: 0 auto;
  background-color: #B9ACCC;
  color: white;
  flex-direction: row;
  line-height: 2rem;
  border-left: inset 3px #B9ACCC solid;
}
.lesson__text{
  padding: 3vw 0;
  background-color: rgba(255,255,255,0.4);

  text-align:center;
}
table {
margin: 0 auto;
border-width: 0;
}
.lesson__place a{
  text-decoration: none;
  color: white;
  cursor: pointer;
}

/* works*/
.gallary{
  display:flex;
  flex-direction:row;
  width: 100vw;
  flex-wrap: wrap;
  justify-content: center;
}
.gallary_img img{
  width: 20vw;
  padding: 5vh 4vw 0 0;
}
.gallary_name{
  text-align: center;
}

/* footer */

footer{
  font-size: 0.7rem;
  text-align: center;
}

/* news */
span.news__day{
  color: #3d5445;
}
.news__text{
  margin: 5%;
  color: #444946;
}
.news{
  margin:0;
  border: 0;
  padding: 20px;
  /* background-color: #E8DCE8; */
}

/* 管理ページ */
.button_see-news{
  text-align: center;
  margin-top:5px;
  line-height: 48px;
  position: absolute;
  left: 3px;
  top:50px;
  background-color: #8a759ee0;
  color: #fff;
  border-radius: 50px;
  height: 50px;
  width: 200px;
  cursor:pointer;
}
/* .button_see-news::before {
    content:  '';
    width: 200px;
    height: 20px;
    display:  block;
    border-top: solid 2px;
    border-right: solid 2px;
    transform: rotate(135deg);
    position:  absolute;
    top: 0px;
    bottom:  10px;
    left:  0;
    right:  0;
    margin:  auto;
} */

table.owner__table{
  margin: 0;
}
.owner__text{
  width: 80%;
  text-align: center;
  white-space: pre-wrap;
  height: 5vh;
}
.owner__textbox{
  width: 95%;
  white-space: pre-wrap;
  height: 5vh;

}

.submit{
  cursor: pointer;
  margin: 3px;
  font-size: 16px;
}
input{
  border-color: rgba(153, 184, 132, 0.384);
  }
.login{
  text-align: center;
  width: 40%;
  font-size: 1em;
  line-height: 2em;
}
/* スマートフォン用 */
@media screen and (max-width: 767px){
  .body{
    background-image: url(../images/flowerps.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position-y: 15vh;
    background-position-x: 0vw;
    margin:0;
    overflow-x: hidden;
  }
h2{
  letter-spacing: 0.5rem;
}
  .top__text{
    padding:0;
    text-align: center;
  }
  .top__text a,h1{
    background-color: rgba(255,255,255,0.8);
    text-align:center;
  }
  .top__text h1{
    font-size: 196%;
    position: relative;
    bottom: 10vh;
    left: 1rem;
  }
  .top__text-caption{
    width: 100vw;
    padding-top: 1rem ;
    text-align: center;
    letter-spacing: 0.5rem;
    font-size: 1.3rem;
    position: relative;
  }
  .main{
    display:none;
  }
  .line {
    height: 0.03px;
    border: none;
    border-top: 0.1px #adccba solid;
  }

  .top__image img{
    display: none;
  }
  .top__image-name{
    display:none;
  }
 .top{
    overflow: visible;
  }

/*menu*/
#nav-content {
  max-width: 60vw;
  height: 100%;
}

#nav-content li{
  padding-left: 0;
}

/* prof */
.prof__image{
  width: 100%;
  margin: 0;
}
.prof__message{
  text-align:left;
  width: 90vw;
  margin: 0 auto;
}
.prof__works{
  text-align: left;
  display: block;
  line-height: 2rem;
  padding: 0;
}
.prof__works-image{
  width: 100%;
  height: auto;
  margin: 0 ;
  border-radius: 25px;
}
.prof__works-text{
  padding: 0;
}

.prof__books{
  display: block;
}
.prof__books img{
  padding: 0;
  width: 90%;
  height: auto;
}
.prof__books-text{
  text-align: left;
  padding: 0;
}

.prof__group{
  display:block;
}
.prof__group img{
display: none;
}
.prof__group-text{
  text-align: left;
  padding: 0;
}
/* lesson */
#lesson{
  height: 100vh;
  background-image: none;
}
.pc{
  display: none;
}
.sp{
  display: initial;
}

table{
  width:100vw;
}
th{
  background-color: #E8DCE8;
}

.gallary{
  display:block;
  width: 100vw;
  text-align: center;
}
.gallary_img img{
  width: 90vw;
  margin: 0 auto;
}
.gallary_name{
  text-align: center;
}
span.news__day{
  color: #3d5445;
}
.news__text{
  margin: 6%;
  margin-right:12%;
  padding: 20px 0;
}
.news{
  margin:115% 0 0 0;
  border: 0;
  padding: 0;
  background-color: rgba(153, 184, 132, 0.384);
}
p.text{
  word-break: break-all;
}
.login{
  width: 70%;
  font-size: 1em;
  line-height: 2em;
  text-align: center;
}
div.login{
  width:100%;
  font-size: 1em;
  line-height: 2em;
}
form.login{
  width:100%;
}

input{
border-color: rgba(153, 184, 132, 0.384);
}
.button_see-news{
  text-align: center;
  margin-top:3px;
  line-height: 40px;
  position: absolute;
  left: 3px;
  top:50px;
  background-color: #8a759ee0;
  color: #fff;
  border-radius: 50px;
  height: 40px;
  width: 200px;
  cursor:pointer;
}
}