body {
    background-color: #ffffff;
    background-image: url(../images/背景画像３.jpg);
    background-size: cover;
    background-repeat: repeat-y;
    font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}
  
.Header {
  width: 100%;
  height: 60px;
  /*background-color: #000;*/
  display: flex;
  justify-content: center;
  align-items: center;
}

.Logo {
  color: #fff;
  font-size: 32px;
  font-weight: bold;
}

.Main {
  width: 100%;
  padding-top: 12px;
  padding-left: 32px;
  padding-right: 32px;
  padding-bottom: 32px;
  background-color: #eee;
}

.Section {
  margin-top: 20px;
  width: 100%;
  height: 400px;
  background-color: lightgreen;
}

.Menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 20;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: #fff;
  transform: translateX(100%);
  transition: all 0.3s;
}

.Menu-Header {
  width: 100%;
  height: 60px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 32px;
}

.Menu-List {
  width: 100%;
  padding-left: 8px;
  padding-right: 8px;
  list-style: none;
}

.Menu-List-Item {
  border-bottom: 1px solid #ccc;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 32px;
  font-weight: bold;
}

.MenuIsOpen {
  transform: translateX(0);
}

.Button {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 30;
  height: 60px;
  padding-left: 10px;
  padding-right: 20px;
}

.Button-LineTop {
  position: absolute;
  top: 15px;
  width: 40px;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s;
}

.ButtonIsOpen .Button-LineTop {
  /* 子孫セレクタ */
  transform: translateY(13.5px) rotate(45deg);
}

.Button-LineMedium {
  width: 40px;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s;
}

.ButtonIsOpen .Button-LineMedium {
  opacity: 0;
}

.Button-LineBottom {
  position: absolute;
  bottom: 15px;
  width: 40px;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s;
}

.ButtonIsOpen .Button-LineBottom {
  transform: translateY(-13.5px) rotate(-45deg);
}

.Overlay {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: all 0.3s;
}

.OverlayIsOpen {
  visibility: visible;
  opacity: 1;
}

.container{
    position: absolute;
    top: 70px;
    left: 1px;
    right: 1px;
}

.title{
    text-align: center  ;
    font-size: 30px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    margin-bottom: 30px;
}

.main{
    padding: 30px;
    padding-top: 30px;
    padding-bottom: 1px;
    margin-bottom: 40px;
    border-radius: 10px;
    margin-left: 8%;
    margin-right: 8%;
    background-color: #fffaf0;
    border: 5px;
    font-family: Arial, Helvetica, sans-serif;
}

.item{
    margin-bottom: 30px;
    text-align: center;
}

.uni-name{
  text-align: center;
}