@charset "UTF-8";
/*=======================================
login
=======================================*/
.login_wrap {
  border-radius: 10px;
  inline-size: min(100%, 400px);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background: #fff;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.8) 0%, white 50%, rgba(255, 255, 255, 0.8) 100%);
  padding: 2em;
  -webkit-transform: translateY(-2em);
          transform: translateY(-2em);
}

.login_title {
  inline-size: -webkit-max-content;
  inline-size: max-content;
  margin-inline: auto;
  -webkit-margin-after: 24px;
          margin-block-end: 24px;
}
.login_title .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  white-space: nowrap;
}
.login_title .logo img {
  inline-size: 2.5em;
  block-size: auto;
}
@media print, screen and (min-width: 370px) {
  .login_title .logo img {
    inline-size: 4em;
  }
}
.login_title .logo span {
  font-weight: 700;
  font-size: 1.2em;
}
@media print, screen and (min-width: 370px) {
  .login_title .logo span {
    font-size: 1.4em;
  }
}
.login_title .subtitle {
  -webkit-margin-before: 0.2em;
          margin-block-start: 0.2em;
  background: #dce8f1;
  border-radius: 100px;
}

.login_input > div {
  text-align: start;
}
.login_input > div + div {
  -webkit-margin-before: 16px;
          margin-block-start: 16px;
}
.login_input > div > dt {
  line-height: 1.2;
  font-weight: 700;
  font-size: 1.4rem;
}
.login_input > div > dt::after {
  content: "：";
}
.login_input > div > dd :is(input) {
  padding-block: 0.8em;
}
.login_input + .login_btn {
  -webkit-margin-before: 24px;
          margin-block-start: 24px;
}

.login_btn > input,
.login_btn > button,
.login_btn > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4em;
  font-weight: 700;
  color: #fff;
  background: #6098bd;
  inline-size: 100%;
  border-radius: 3px;
  text-decoration: none;
  padding: 0.5em;
  cursor: pointer;
  transition: 0.4s;
}
.login_btn > input:hover, .login_btn > input:active,
.login_btn > button:hover,
.login_btn > button:active,
.login_btn > a:hover,
.login_btn > a:active {
  background: #366381;
}
.login_btn + .forget_tx {
  -webkit-margin-before: 16px;
          margin-block-start: 16px;
}

.forget_tx {
  font-size: clamp(1.2rem, 1.02vw, 1.4rem);
}

.login_footer {
  position: absolute;
  bottom: 0;
}

/*=======================================
select
=======================================*/
.select_wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.93vw, 40px);
  inline-size: min(100%, 480px);
  margin-inline: auto;
}
.select_wrap > li {
  inline-size: 100%;
}
@media print, screen and (min-width: 768px) {
  .select_wrap {
    flex-direction: row;
    inline-size: min(100%, 768px);
  }
  .select_wrap > li {
    inline-size: calc(50% - clamp(16px, 2.93vw, 40px) / 2);
  }
}

[class^=select_btn0] {
  aspect-ratio: 4/1.5;
}
@media print, screen and (min-width: 768px) {
  [class^=select_btn0] {
    aspect-ratio: 4/3;
  }
}
[class^=select_btn0] > a {
  display: flex;
  align-items: center;
  justify-content: center;
  block-size: 100%;
  border-radius: 10px;
  text-decoration: none;
  position: relative;
}
[class^=select_btn0] > a::before {
  content: "";
  display: block;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
  background: #fff;
  position: absolute;
  inset: 1em auto auto 1em;
  inline-size: clamp(16px, 1.76vw, 24px);
  aspect-ratio: 1;
}
[class^=select_btn0] > a:hover {
  opacity: 0.8;
}
[class^=select_btn0] > a:active {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  box-shadow: 0 4px 0 transparent;
}

.select_btn01 > a {
  background: #6098bd;
  box-shadow: 0 4px 0 #457fa5;
}

.select_btn02 > a {
  background: #61A142;
  box-shadow: 0 4px 0 #4b7d33;
}

.select_ti {
  color: #fff;
  font-weight: 700;
  font-size: clamp(2.4rem, 2.93vw, 4rem);
}
.select_ti .s_tx {
  display: block;
  font-size: 0.8em;
}

/*=======================================

=======================================*/
.bg_box01 {
  background: #dce8f1;
  border-radius: 10px;
  padding: clamp(16px, 2.34vw, 32px);
}

.form_table {
  inline-size: 100%;
  border-collapse: collapse;
}
.form_table + [class^=btn0] {
  margin-block: clamp(16px, 1.76vw, 24px);
}
@media print, screen and (min-width: 768px) {
  .form_table + [class^=btn0] {
    margin-block: clamp(16px, 1.76vw, 24px) 0;
  }
}
.form_table tr th,
.form_table tr td {
  display: block;
  text-align: start;
}
.form_table tr th {
  padding-block: 0;
  padding-inline: 0;
}
.form_table tr td {
  padding-block: 0 1em;
  padding-inline: 0;
}
@media print, screen and (min-width: 768px) {
  .form_table tr th,
  .form_table tr td {
    display: table-cell;
  }
  .form_table tr th {
    inline-size: 140px;
    padding: 0.5em;
  }
  .form_table tr td {
    padding: 0.5em;
  }
}