@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #323746;
  margin: 0;
  padding: 0;
  background-color: #ebf0fa;
}
body p {
  margin: 0;
}

.head {
  display: grid;
  height: 160px;
  background-color: #323746;
  align-items: end;
  justify-items: center;
}
@media (max-width: 600px) {
  .head {
    height: 150px;
  }
}
@media (max-width: 400px) {
  .head {
    height: 110px;
  }
}
.head img {
  height: 100px;
  width: auto;
  transform: translateY(1px);
}
@media (max-width: 600px) {
  .head img {
    width: 80%;
    height: auto;
    transform: translateY(1px);
  }
}

.comment {
  padding: 40px 0 0 0;
  font-size: 25px;
  text-align: center;
  font-weight: bold;
  color: #323746;
}

#customBtn {
  width: 234px;
  max-width: 234px;
  min-width: min-content;
}
#customBtn .gsi-material-button-icon {
  height: 20px;
  margin-right: 12px;
  min-width: 20px;
  width: 20px;
}
#customBtn .gsi-material-button-content-wrapper {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: space-between;
  position: relative;
  width: 100%;
}
#customBtn .gsi-material-button-contents {
  flex-grow: 1;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}

.login_btn {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
}
.login_btn input {
  width: 600px;
}
.login_btn button {
  height: 40px;
  width: 300px;
}
.login_btn .google_login {
  margin-top: 20px;
}
.login_btn .line_login {
  padding: 10px;
  cursor: pointer;
}
.login_btn .line_login img {
  width: 234px;
  background-color: #06c755;
  border-radius: 30px;
}
.login_btn .line_login:hover img {
  content: url("/assets/img/btn_login_hover.png");
  background-color: #05b34c;
  border-radius: 30px;
}
.login_btn .text {
  color: #323746;
  font-weight: 500;
  padding: 10px;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 830px) {
  input {
    width: 300px;
  }
}
