@charset "UTF-8";
/*------------------------------------------------------------
	サイト幅でセンタリング
------------------------------------------------------------*/
/*------------------------------------------------------------
	breakpoint
------------------------------------------------------------*/
/*------------------------------------------------------------
	フォント
------------------------------------------------------------*/
@font-face {
  font-family: "Noto";
  src: url("../font/Noto.ttf") format("truetype");
}
/*------------------------------------------------------------
	clearfix
------------------------------------------------------------*/
/*------------------------------------------------------------
	flex
------------------------------------------------------------*/
/*------------------------------------------------------------
	Other
------------------------------------------------------------*/
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
figcaption,
figure,
section {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 1em;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}
@media (min-width: 851px) and (max-width: 1919px) {
  html {
    font-size: 0.520833vw;
  }
}
@media screen and (max-width: 374px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body,
table,
input,
textarea,
select,
option {
  font-family: "Noto", sans-serif;
  font-weight: 400;
}

article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
main,
hgroup,
menu,
nav,
section,
summary {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

chrome_annotation {
  border: none !important;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}
a:visited {
  color: #000;
}
a:hover {
  color: #000;
}
a:active {
  color: #000;
}
a[href^="tel:"] {
  cursor: default;
  pointer-events: none;
}
@media screen and (max-width: 850px) {
  a[href^="tel:"] {
    cursor: pointer;
    pointer-events: auto;
  }
}

body {
  background-color: #ececec;
}

.login_container {
  width: 100vw;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.login_container .login_form {
  width: 35rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.login_container .login_form .error {
  color: #c60f0f;
  font-weight: 500;
  font-size: 1.4rem;
  margin-top: 1rem;
}
.login_container .login_logo {
  width: 20rem;
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  position: relative;
}
.login_container .login_logo .seasonal_image {
  opacity: 0.5;
  position: absolute;
  top: -50%;
  right: -50%;
  width: 10rem;
  z-index: -1;
  object-fit: cover;
  transform: rotate(20deg);
}
.login_container .login_title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 3rem;
  color: #5b6b62;
}
.login_container .test_env {
  font-size: 1.8rem;
  font-weight: bold;
  background: #e96d6d;
  color: #fff;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  width: 30rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login_container .form_group {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login_container .form_group input {
  width: 35rem;
  height: 4rem;
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 0 1rem;
  border: none;
  font-size: 1.6rem;
  color: #333;
}
.login_container .form_group input:focus {
  outline: none;
}
.login_container .form_group button {
  width: 30rem;
  height: 5rem;
  background-color: #000;
  color: #fff;
  border-radius: 2.5rem;
  border: none;
  font-size: 1.6rem;
  color: #fff;
  cursor: pointer;
  margin-top: 3rem;
}
.login_container .form_group button:hover {
  background-color: #333;
}

.maintenance_container {
  width: 100vw;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.maintenance_container .maintenance_logo {
  width: 20rem;
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  position: relative;
}
.maintenance_container .main_title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 3rem;
  color: #5b6b62;
}
.maintenance_container .maintenance_content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.maintenance_container .maintenance_content .maintenance_content_title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #5b6b62;
}
.maintenance_container .maintenance_content .maintenance_content_description {
  font-size: 1.6rem;
  color: #5b6b62;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 3rem;
}