@charset "UTF-8";
html {
  font-size: 100%;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN",
        "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
        "MS PGothic", sans-serif;
  color: #333;
}

@media screen and (min-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-weight: 400;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}



/* video */
.video{

  width: 100%;
  height: 100vh;
  /*background: url(/login-resource/img/kv-alternative.jpg) no-repeat center/cover;*/
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}

.video::after{
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  opacity: .1;
}



.video video{
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}


@media screen and (max-width: 798px) {
  .video{

    width: 100%;
    height: 100vh;
    /*background: url(../img/kv-alternative.jpg) no-repeat center/cover;*/
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
    background-position:left;
  }

}


/* video */
.video2{
  width: 100%;
  height: 100vh;
  /*background: url(../img/kv-alternative.jpg) no-repeat center/cover;*/
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}

.video2::after{
  content: '';
  width: 100%;
  height: 100%;
  display: block;

  position: absolute;
  left: 0;
  top: 0;
  opacity: .1;
}

.video2 video{
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

@media screen and (min-width: 768px) {
  /* kv */
  .kv{
    min-width: 960px;
  }

  .kv .main-copy{
    font-size: 60px;
  }

  .kv .sub-copy{
    font-size: 30px;
  }
}

/*=========================================================================
# 2023.08.14追記 コンテンツ部分
========================================================================== */
.login {
  position: relative;
  width: 100%;
  height: 100vh;
}

.login_inner {
  position: relative;
  padding: 0 40px 0 0;
  width: 95%;
  max-width: 1800px;
  margin: 0 auto;
}

.login_left {
  position: relative;
  z-index: 1;
  width: 548px;
}

.login_logo img {
  width: 252px;
}

.login_form {
  background: rgba(210,209,209, 0.5);
  padding: 15px;
  margin: 15px 0 10px;
}

.login_form-row {
  display: flex;
  align-items: center;
}

.login_form-parts {
  display: flex;
  align-items: flex-end;
  margin-right: 20px;
}

.login_form-input {

}

.login_form-input input[type="text"] ,
.login_form-input input[type="email"],
.login_form-input input[type="password"]{
  /*フォームスタイルリセット*/
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;

  border-bottom: 2px solid #48545B;
  padding: 4px 6px;
  max-width: 165px;
  width: 100%;
  font-size: 14px;
}

.login_form-input input.wide{
    max-width: 255px;
    width: 255px;
    margin-right: 20px;
}

.login_form-input input[type="text"]::placeholder ,
.login_form-input input[type="email"]::placeholder,
.login_form-input input[type="password"]::placeholder {
  color: #B1B8BD;
}

/** Chromeの自動補完対応 **/
.login_form-input input:-webkit-autofill {
    box-shadow: 0 0 0 1000px rgba(210,209,209, 0.5) inset;
}

.login_form-icon {
  text-align: center;
  margin-right: 10px;
}

.login_form-icon img {
  width: 25px;
}

.login_form-btn {

}

.login_form-btn a,
.login_form-btn span {
  background-color: #000;
  color: #fff;
  border-radius: 50px;
  padding: 4px 20px 6px;
  text-align: center;
  display: inline-block;
  font-size: 14px;
}

.login_form_link {
  color: #A5A6A6;
  text-decoration: underline;
  text-align: right;
  margin-top: 15px;
  font-size: 14px;
}

.login_form_link a {
  cursor: pointer;
}

.login_text {
  font-size: 17px;
  color: #8f8f8f;
  letter-spacing: 0.05em;
}

.login_right {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 55%;
}

@media screen and (min-width: 1100px) {
  .login_inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    justify-content: space-between;
  }
}

@media screen and (max-width: 1099px) {

  .login_inner {
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    padding: 0;
  }
  .login_left {
    position: absolute;
    /*top: 50%;*/
    top: 40%; /** 少し上に **/
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 548px;
    width: 90%;
  }
  .login_logo img {
    width: 225px;
  }
  .login_form {
    padding: 25px;
    margin: 15px 0 5px;
  }
  .login_form-row {
    display: block;
  }
  .login_form-parts {
    margin-bottom: 20px;
    margin-right: 0;
    flex-wrap: wrap;
    justify-content: center;
  }
  .login_form-icon{}
  .login_form-input {
    width: 80%;
  }
  .login_form-input input[type="text"],
  .login_form-input input[type="email"],
  .login_form-input input[type="password"]{
    padding: 4px 6px;
    max-width: 100%;
    width: 100%;
    font-size: 14px;
  }
    .login_form-input input[type="text"]:focus,
    .login_form-input input[type="email"]:focus,
    .login_form-input input[type="password"]:focus{
        font-size: 16px;
    }
  .login_form-btn {
    text-align: center;
    margin-top: 35px;
  }
  .login_form_link {
    text-align: center;
    margin-top: 25px;
    font-size: 12px;
  }
  .login_text {
    font-size: 14px;
  }
  .login_right {
    display: none;
  }
}
