@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru&display=swap');

.main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 320px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1)),url(../img/main.png) no-repeat center center;
  color: #fff;
  font-size: 36px;
}

.members {
  display: flex;
  flex-flow: column;
  align-items: center;
  max-width: 400px;
  margin: 100px auto 200px;
  padding: 0;
  background: none;
}

form {
  width: 100%;
}

.label {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.input-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.input {
  width: 100%;
  margin-bottom: 32px;
  padding: 8px;
  border-radius: 3px;
  border: 1px solid #C0C0C0;
}

.input::placeholder {
  font-weight: bold;
  opacity: 0.5;
  color: #222;
}

.error {
  margin-top: 20px;
  color: #B84C4A;
}

.toggle-password {
  position: absolute;
  top: calc(50% - 16px);
  right: 12px;
  padding: 4px;
  border-radius: 3px;
  background: #888;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  user-select: none;
  transform: translateY(-50%);
  cursor: pointer;
}

.button {
  width: 100%;
  padding: 8px;
  border-radius: 3px;
  background: #B84C4A;
  color: #fff;
  text-align: center;
}

object{
  display: block;
  width: 100%;
  height: 100vh;
}

.news {
  max-width: 800px;
  margin: 40px auto 120px;
}

.news-contents {
  font-size: 18px;
  line-height: 1.5;
  text-align: justify;
}

.sub-date {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
  font-size: 16px;
}

.external-link {
  color: #B84C4A;
  text-decoration: underline;
}

.external-link-icon {
  color: #B84C4A;
  font-size: 20px !important;
  margin-left: 4px;
  vertical-align: middle;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .main {
    padding: 0 20px;
    font-size: 24px;
  }

  .members,.news {
    padding: 0 16px;
  }

  .news-contents {
    font-size: 16px;
  }
  
}


@media screen and (max-width: 316px) {

}