
html {
  height: 100%;
}

body {
  background-image: url("../bg/ike.jpg");
  background-size: 100%;
  background-position: center;
  background-repeat: repeat;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

h1 {
  font-size: 1.5em;
  font-weight: normal;
  margin-block-start: .25em;
  margin-block-end: 0em;
  font-family: "tetsubin";
}

h1 jp {
  font-family: Chalk;
  font-size: .85em;
}


jp {
  font-family: Meiryo;
}

h2 {
  margin-block-start: .1em;
  margin-block-end: 0em;
  text-align: right;
  font-weight: normal;
  font-family: Hafizabad;
  font-size: 2em;
}

h2 jp {
  font-family: Chalk;
  font-size: .8em;
}
  

#hi {
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.sidebar {
  width: 13%;
  height: 30%;
  margin-top: 17%;
  margin-right: 6em;
  position: relative;
  border: 2px solid black;
  padding: 20px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(201,189,162,.75);
  backdrop-filter: blur(2px);
}
  

.box {
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(2px);
  width: 70%;
  height: 90%;
  margin-top: 4.75em;
  position: relative;
  border: 2px solid black;
  display: flex;
  align-items: center;
  justify-content: center
}

.box > .inner {
  margin: 2em 0em;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  height: 94%;
  overflow: auto;
}

.album {
  width: 17em;
  height: 27em;
  padding: 20px;
  border: 1px solid black;
  text-align: left;
  background: #fff1e7;
  margin-right: 2em;
  margin-top: 2.25em;
  transition: all .3s ease;
}

.album > .scroll {
  max-height: 155px;
  overflow: auto;
}


.album:nth-child(5n) {
    margin-right: 0em;
}

.album:nth-child(n+1):nth-child(-n+5) {
    margin-top: 0em;
}

.album p {
  text-align: center;
  font-family: 'Assistant', sans-serif;
  font-size: 1.1em;
}

.album p jp {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.1em;
}

.album span {
  font-family: "heart";
  color: #ff83bd;
  font-size: 1.2em;
}

.album img {
  transition: all .3s ease;
  filter: grayscale(1)  sepia(.25);
  transform: scale(.97);
}

.album img:hover {
  transform: scale(1.0);
  filter: grayscale(0) sepia(0);
}

.album img:active {
  transform: scale(.97);
}

.text {
  position: absolute;
  padding: 2em;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(5px);
  width: 40%;
  border: 2px solid black;
  border-radius: 10px;
  transition: all .3s ease;
  box-shadow: 0px 0px 15px 0px black;
}

.al {
  max-height: 500px;
  overflow: auto;
  display: none;
}

.close {
  position: absolute;
  right: 1%;
  top: 1%;
  width: 32px;
  height: 32px;
  opacity: 0.3;
}
.close:hover {
  opacity: 1;
}
.close:before, .close:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 33px;
  width: 2px;
  background-color: #333;
}
.close:before {
  transform: rotate(45deg);
}
.close:after {
  transform: rotate(-45deg);
}
