@charset "UTF-8";
/* CSS Document */
body {
	position: relative;
	font-feature-settings: "palt";
}
main {
  min-height: calc(100vh - 130px);
}
h1  {
	font-family: "momochidori-condensed", sans-serif;
	font-weight: 700;
	font-style: normal;
}
h2  {
	font-family: "momochidori-condensed", sans-serif;
    font-style: normal;
    font-weight: 600;
}
h3  {
	font-family: "momochidori-condensed", sans-serif;
    font-style: normal;
    font-weight: 600;
}
h4  {
	font-family: "momochidori", sans-serif;
    font-style: normal;
    font-weight: 700;
}
h5  {
	font-family: "momochidori", sans-serif;
    font-style: normal;
    font-weight: 700;
}
h6  {
	font-family: "momochidori", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
	line-height: 23px;
    letter-spacing: 0.0em;
}

.modal-open-button {
    font-family: "momochidori-condensed", sans-serif;
	color: white;
	background-color: #002255;
    text-align: center;
    margin-top: 10px;
    padding: 5px;
    margin-bottom: 0px;
    width: 155px;
    border-radius: 25px;
	font-size: 13px;
    line-height: 24px;
    letter-spacing: 0.05em;
    font-weight: 700;
	cursor: pointer;
	transition: 0.3s;
	border: 1.5px solid #002255;
}
.modal-open-button:hover {
    background-color: #ffffff;
    color: #002255;
 	border: 1.5px solid #002255;
}
.modal1 {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 60%);
  opacity: 0;
  transition: opacity 0.5s, scale 0s 0.5s;
  scale: 0;
}
.modal2 {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 60%);
  opacity: 0;
  transition: opacity 0.5s, scale 0s 0.5s;
  scale: 0;
}
.modal3 {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 60%);
  opacity: 0;
  transition: opacity 0.5s, scale 0s 0.5s;
  scale: 0;
}
.modal1:target {
  opacity: 1;
  transition: opacity 0.5s;
  scale: 1;
}
.modal2:target {
  opacity: 1;
  transition: opacity 0.5s;
  scale: 1;
}
.modal3:target {
  opacity: 1;
  transition: opacity 0.5s;
  scale: 1;
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    text-decoration: none;
    cursor: pointer;
    transform: translate(50%, -50%);
    color: #002255;
}
.close:hover {
    color: #002255;
}
.close:visited {
    color: #002255;
}
.modal-wrapper {
  position: relative;
  width: 80%;
  max-width: 500px;
  max-height: 70%;
  padding: 20px;
  margin: auto;
  overflow: scroll;
  background-color: #FEFEFE;
  border-radius: 5px;
}

.comment {
    font-family: "momochidori-condensed", sans-serif;
  margin: 0;
  font-size: 21px;
  line-height: 28px;
  letter-spacing: 0.05em;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 10px;
}
