@charset "utf-8";
body{
  width: 1110px;
  margin:0 auto;
  min-height: 100vh;
  display: grid;
  grid-template:
              " header "150px
               "  nav   "60px
               " center "1fr
               "......."50px
                " footer "50px
                / 1fr ;

}
.inner{
  width: 1110px;
  margin: 0 auto;
}
h1{font-family: 'Noto Serif JP', serif;
   font-size:40px;
   font-weight: bold;

}
header h3{
  font-family: 'M PLUS 1p', sans-serif;
  color: #f6e5cc;
  font-weight: normal;
  font-size: 1.17em;
}

/*見出し*/
header {
    background:-moz-linear-gradient(top left,#e8383d,transparent),url(uedabaceball/IMG_0861.JPG);
    background: -webkit-linear-gradient(top left,#e8383d,transparent),url(uedabaceball/IMG_0861.JPG);
    background: linear-gradient(to bottom right,#e8383d,transparent),url(uedabaceball/IMG_0861.JPG);
    background-size: contain;
    background-repeat:repeat;/*写真の繰り返し*/
    background-position: right;/*写真の位置*/
    height: 150px;
    grid-area:header;
    background-color: #efefff;
}

/*ナヴィゲーション*/
nav{
  grid-area:nav;
}
.naa{
  padding:  5px 10px 5px 16px;
  margin-right: 10px;
  text-align: center;
  background: #d7847e;
  text-decoration: none;
  color:white;
  list-style:none;
  border-top-left-radius:10px;
  border-top-right-radius:10px;
  float:left;
  font-weight: bold;
  font-family: 'M PLUS 1p', sans-serif;
}
.naa:hover{
  background:#c3003a;
  color: white;
}

/**/
main{
  grid-area:center;
  background: #eff7ff;
}

/*代表者用*/
img{
   text-align: center;
   width:300px;
   height:300px;
}
.item-1{
  display: flex;  /*横並びにするコード*/
  flex-direction: row;
 justify-content: space-evenly;
  background: #eff7ff;
}
.img-1{
  float: left;
  width:580px;
  height:350px;
}
.aisatu{
  font-family: 'M PLUS 1p', sans-serif;
  float: right;
  text-align: justify;
  margin: 40px 80px;
}

/**/
.section-title {
  border-bottom: 2px solid #dee7ec;
  font-size: 35px;
  padding-bottom: 15px;
  margin-bottom: 50px;
  top:0;left:0;
}

.member-name{
  font-size: 28px;
  text-shadow: 2px 2px 3px #ff8484;
}
.member-syoukai{
  color:#3d3123;
  font-size: 18px;
}
.containar-1{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap:15px;
}
.containar{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap:15px;
}
.item{
  text-align: center;
}

/*お問い合わせ*/
input, textarea {
  width: 400px;
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 20px;
  font-size: 18px;
  border: 2px solid #dee7ec;
}

/* contact-submitのCSSを指定してください */
.contact-submit {
  background-color: #dee7ec;
  color: #889eab;
}

/*スケジュール表*/
.sav{
  margin-top: 50px;
}
table{
  width: 90%;

}
.nittei-midasi{
  border: solid 3px black;
  border-collapse: collapse;
  background: #c83955;
}




/*フッターの中身*/
footer{
  background:-moz-linear-gradient(bottom right,red,#fff9f9);
    background: -webkit-linear-gradient(bottom right,red,#fff9f9);
    background: linear-gradient(to top left,red,#fff9f9);
  width: 1110px;
  text-align: center;
  position: fixed;
  bottom:0;

  }
.btan{
  float:right;
}

.facebook {
 background-color: #0f5ca0;
 color: white;
 border-radius: 5px;
 margin-right: 15px;
 padding: 6px 3px;
}
.facebook:hover{
  color: #eabd00;
}
.twitter {
 background-color: #65ace4;
 color:white;
 border-radius: 5px;
 margin-right: 30px;
 padding: 6px 3px;
}
.twitter:hover{
  background: #65ace4;
  color: #eabd00;
}
.Insstagram{
  background-color: #c30068;
  color: white;
  border-radius: 5px;
  padding: 6px 3px;
}
.Insstagram:hover{
  color: #eabd00;
}
.fa{
  float:right;
  list-style: none;
  margin: 10px 10px;
}

@media screen and (max-width:600px){
  body{
    margin:20px;
    grid-template: "header"150px
                   "nav"30px
                   "center"1fr
                  "footer"50px
  }
}
