@charset "utf-8";
/* ===========================================================

	Title: login.css
	Created: 2021-3-26

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

	main
	main-visual


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

	main

=========================================================== */
main {
  width: 100%;
}

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

	login

=========================================================== */
.mainvisual {
  width: auto;
  height: 100%;
  max-height: 580px;
  display: flex;
  align-items: center;
  position: relative;
  aspect-ratio: 1440 / 640;
  margin: 90px auto 0;
}
.mainvisual-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.mainvisual-box > img {
  height: auto;
}
.mainvisual-box .upper,
.mainvisual-box .lower {
  height: 50%;
}
.mainvisual-box .upper img,
.mainvisual-box .lower img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.mainvisual .catch-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 40px;
  text-align: left;
  width: max-content;
  height: fit-content;
  margin: 0 auto;
  font-size: 19px;
  font-weight: 500;
  line-height: 160%; /* 30.4px */
  color: #fff;
  position: relative;
  background: rgba(0, 0, 0, 0.4);
  padding: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mainvisual .catch-copy span {
  color: #fff;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 32px */
  letter-spacing: 1.28px;
}
.mainvisual .catch-copy ul li {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  position: relative;
  padding-left: 36px;
}
.mainvisual .catch-copy ul li + li {
  margin-top: 16px;
}
.mainvisual .catch-copy ul li::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 4px solid #fff;
  border-radius: 100px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -10px;
}
.is-login .login-box {
  position: relative;
  width: 1114px;
  margin: 48px auto;
  border: 1px solid #cecece;
}
.login-form {
  margin: 0 auto;
  padding: 40px 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.login-box h2 {
  position: relative;
  font-weight: 700;
  font-size: 24px;
  color: #3b3b3b;
  border: none;
  padding: 0;
  width: 100%;
  border-left: 4px solid #d8381e;
  padding-left: 24px;
  text-align: left;
}
form {
  display: flex;
  align-items: center;
  gap: 8px;
}
.username,
.password {
  position: relative;
}
.login-form input {
  border: none;
  padding: 0 16px;
  width: 300px;
  height: 56px;
  line-height: 56px;
  font-size: 14px;
  color: #666;
  background-color: #fff;
  font-family: "Noto Sans JP";
  border-radius: 2px;
  border: 1px solid #ccc;
}
.login-form input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #c7d6ea inset;
}
.login-box input value,
.login-box input.ph::-webkit-input-placeholder,
.login-box input.ph:-ms-input-placeholder,
.login-box input.ph::-moz-placeholder {
  color: #666 !important;
  font-weight: normal;
}
.login-box input value,
.login-box input.ph::-webkit-input-placeholder,
.login-box input.ph:-ms-input-placeholder,
.login-box input.ph::-moz-placeholder {
  color: #666 !important;
  font-weight: normal;
}
.login-box input[type="button"],
.login-box input[type="submit"] {
  display: inline-block;
  width: 219px;
  height: 56px;
  padding: 0;
  color: #fff;
  background-color: #d8381e;
  border: 1px solid #d8381e;
  box-sizing: border-box;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  line-height: 56px;
  border-radius: 8px;
  padding-left: 16px;
}
.login-button {
  position: relative;
}
.login-button::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 70px;
  top: 50%;
  margin-top: -6px;
  border-style: solid;
  border-color: transparent transparent transparent #ffffff;
  border-width: 7.5px 0px 7.5px 8px;
  transition: 0.3s ease-in-out;
}
.login-box input[type="button"]:hover,
.login-box input[type="submit"]:hover,
.login-button a:hover {
  background-color: #fff;
  color: #d8381e;
}
.login-button:hover::before {
  border-color: transparent transparent transparent #d8381e;
}
.login-box .forget {
  display: block;
}
.login-box .forget a {
  position: relative;
  color: #494948;
  transition: all 0.3s;
  margin-left: 8px;
}
.login-box .forget a::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -16px;
  top: 50%;
  margin-top: -6px;
  border-style: solid;
  border-color: transparent transparent transparent #d8381e;
  border-width: 7.5px 0px 7.5px 8px;
  transition: 0.3s ease-in-out;
}

.login-box .forget a:hover {
  color: #e94829;
}
.login-box #subcontent {
  display: none;
  padding: 5px;
  background-color: #fff;
  border: 2px solid #004831;
  text-align: center;
  font-size: 13px;
  font-size: 1.3rem;
}
/* login-contents__error
----------------------------------------------------------- */
.login-box p.login-contents__error {
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  background-color: #004831;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-size: 1.3rem;
  white-space: nowrap;
}
.login-box p.login-contents__error:before {
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin: 0 0 0 -8px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 8px 0 8px;
  border-color: #004831 transparent transparent transparent;
}
.error {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
/* login-contents
----------------------------------------------------------- */
.login-contents {
  display: flex;
  justify-content: center;
  gap: 16px;
  background-color: #f7f7f7;
  padding: 80px;
}
.login-contents .top-link {
  position: relative;
  width: 640px;
  height: 318px;
}
.login-contents .top-link:before {
  content: "";
  display: inline-block;
  width: 80px;
  height: 20px;
  background-image: url("/assets/img/top/top-linkarrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 26px;
  bottom: 26px;
  z-index: 2;
}
.login-contents .top-link:after {
  content: "";
  display: inline-block;
  width: 72px;
  height: 72px;
  border-radius: 4px;
  background-color: #d8381e;
  position: absolute;
  right: 0;
  bottom: 0;
}
.login-contents .top-link a {
  text-decoration: none;
  position: relative;
  transition: 0.3s ease-in-out;
  overflow: hidden;
}
.login-contents .top-link a img {
  width: 632px;
  height: 310px;
  transition: 0.3s ease-in-out;
}
.login-contents .top-link a span {
  position: absolute;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  right: 120px;
  bottom: 13px;
}

.login-contents .top-link a:hover {
}

.login-contents .top-link a:hover img {
  scale: 1.05;
  opacity: 0.7;
}
/* banner-area
----------------------------------------------------------- */

.banner-area {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0 48px;
  min-width: 1208px;
  gap: 32px;
}
.banner-area a {
  width: 624px;
  margin: 0;
  text-align: center;
  color: #000;
  transition: all 0.5s;
  text-decoration: none;
}
.banner-area a img {
  transition: all 0.5s;
}
.banner-area a:hover {
  color: #000 !important;
}
.banner-area a:hover img {
  opacity: 0.6;
}
.banner-area a span {
  display: block;
  padding-bottom: 8px;
  position: relative;
  margin-bottom: 24px;
}
.banner-area a span::before {
  content: "";
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, #ff9d00 0%, #d8381e 100%);
  position: absolute;
  left: 50%;
  margin-left: -32px;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: all 0.3s;
}
.banner-area a:hover span::before {
  transform: scale(1, 1);
}
.banner-area a:last-child span::before {
  background: linear-gradient(90deg, #ff9d00 0%, #006d3a 100%);
}
.banner-area a:last-child {
  margin: 0;
}
