@charset "UTF-8";
/*import
------------------------------------------*/
/*scss*/
/*html body setting*/
html {
  overflow-y: scroll;
  font-size: 62.5%;
  padding: 0;
  margin: 0;
  width: 100%;
}

body {
  position: relative;
  overflow-x: clip;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.6;
  background: #fff;
  color: #333;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  height: 100%;
  margin: auto;
  text-rendering: optimizeLegibility;
  -webkit-font-kerning: normal;
          font-kerning: normal;
  -webkit-font-variant-ligatures: common-ligatures contextual;
          font-variant-ligatures: common-ligatures contextual;
  -webkit-font-feature-settings: "kern", "liga", "clig", "calt";
          font-feature-settings: "kern", "liga", "clig", "calt";
}

/*px base setting*/
#pxBase sup {
  vertical-align: super;
  font-size: 0.5em;
}
#pxBase a:link,
#pxBase a:visited,
#pxBase a:active,
#pxBase a:hover {
  text-decoration: none;
}
#pxBase figure {
  position: relative;
}
#pxBase img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
#pxBase img.object-fit {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

/* visible or hidden
--------------------------------------------------------------------------------*/
@media only screen and (max-width: 991px) {
  .visible-pc {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .visible-pctb {
    display: none !important;
  }
}
@media only screen and (min-width: 992px) {
  .visible-tbsp {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .visible-sp {
    display: none !important;
  }
}
.visible-xs, .visible-sm, .visible-md, .visible-lg {
  display: none !important;
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
  .visible-xs {
    display: block !important;
  }
}
/*数値の設定
------------------------------------------*/
/*上記数値の設定を呼び出しているmixin
------------------------------------------*/
:root {
  --main_green: #071F14;
  --white: #ffffff;
  --main_beige: #F5F4F2;
  --gray: #1D1F1E;
  --accent_beige:#F0EEEB;
  --black:#0E0F0F;
  --big_txt_silver:#D3DADE;
  --txt_silver_dark:#43494D;
  --txt_silber_light:#A2A8AB;
  --calc160-sp40:calc(100% - 160px);
  --background_grad_white:linear-gradient(to right,rgba(255,255,255,0.1),rgba(255,255,255,1),rgba(255,255,255,0.1));
  --background_grad_black:linear-gradient(to right,rgba(7,31,20,0.1),rgba(7,31,20,1),rgba(7,31,20,0.1));
}
@media only screen and (max-width: 1280px) {
  :root {
    --calc160-sp40:calc(100% - 80px);
  }
}
@media only screen and (max-width: 991px) {
  :root {
    --calc160-sp40:calc(100% - 40px);
  }
}

/*
よく使用するmixin
------------------------------------------*/
/*page common
------------------------------------------*/
figure img {
  width: 100%;
  height: auto;
}
figure img.object-fit {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  height: 100%;
}

/*input reset*/
*:focus {
  outline: 1px solid rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

input {
  font-size: 1.6rem;
}

input[type=password],
button[type=submit] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
input[type=password]::-webkit-search-decoration,
button[type=submit]::-webkit-search-decoration {
  display: none;
}
input[type=password]::focus,
button[type=submit]::focus {
  outline-offset: -2px;
}

button[type=submit] {
  cursor: pointer;
}

@-webkit-keyframes shine-btn {
  49% {
    left: -300%;
    opacity: 0;
  }
  50% {
    left: -300%;
    opacity: 0;
  }
  55% {
    left: -300%;
    opacity: 1;
  }
  100% {
    left: -20%;
    opacity: 0;
  }
}

@keyframes shine-btn {
  49% {
    left: -300%;
    opacity: 0;
  }
  50% {
    left: -300%;
    opacity: 0;
  }
  55% {
    left: -300%;
    opacity: 1;
  }
  100% {
    left: -20%;
    opacity: 0;
  }
}
.loginContents {
  position: relative;
  font-size: 1.6rem;
  background-image: url("../img/login/login_bg.jpg");
  background-size: cover;
  line-height: 2;
}
.loginContents .login-ttlWrap {
  padding-top: 300px;
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1440px) {
  .loginContents .login-ttlWrap {
    width: calc(100% - 40px);
  }
}
@media only screen and (max-width: 991px) {
  .loginContents .login-ttlWrap {
    width: calc(100% - 40px);
    padding-top: 150px;
    margin-bottom: 40px;
  }
}
.loginContents .login-ttlWrap h2 {
  font-size: 100px;
  line-height: 1;
  color: var(--txt_silver_dark);
}
@media only screen and (max-width: 991px) {
  .loginContents .login-ttlWrap h2 {
    font-size: 48px;
  }
}
.loginContents .login-ttlWrap p {
  font-size: 18px;
  margin-top: 20px;
}
@media only screen and (max-width: 991px) {
  .loginContents .login-ttlWrap p {
    font-size: 13px;
    margin-top: 10px;
  }
}
.loginContents .sectionWrap {
  width: 100%;
  margin: 0 auto;
}
.loginContents .contentwrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1200px;
  width: calc(100% - 40px);
  margin: 0 auto;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding-bottom: 140px;
  margin-bottom: 160px;
}
@media only screen and (max-width: 991px) {
  .loginContents .contentwrap {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding-bottom: 60px;
    margin-bottom: 80px;
  }
}
.loginContents .contentwrap .sec-login {
  width: 50%;
  display: inline-block;
  background: var(--txt_silver_dark);
  padding: 80px 40px;
}
@media only screen and (max-width: 991px) {
  .loginContents .contentwrap .sec-login {
    width: 100%;
    padding: 60px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .loginContents .contentwrap .sec-login {
    padding: 40px 30px;
  }
}
.loginContents .contentwrap .sec-login #loginForm {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  font-family: "Bellefair", serif;
}
.loginContents .contentwrap .sec-login #loginForm ::-webkit-input-placeholder {
  font-family: "Bellefair", serif;
}
.loginContents .contentwrap .sec-login #loginForm ::-moz-placeholder {
  font-family: "Bellefair", serif;
}
.loginContents .contentwrap .sec-login #loginForm :-ms-input-placeholder {
  font-family: "Bellefair", serif;
}
.loginContents .contentwrap .sec-login #loginForm ::-ms-input-placeholder {
  font-family: "Bellefair", serif;
}
.loginContents .contentwrap .sec-login #loginForm ::placeholder {
  font-family: "Bellefair", serif;
}
.loginContents .contentwrap .sec-login #loginForm #password {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 7px 0 7px 15px;
  height: 60px;
  background: #fff;
  color: #333;
  -webkit-appearance: none;
}
@media only screen and (max-width: 991px) {
  .loginContents .contentwrap .sec-login #loginForm #password {
    height: 50px;
  }
}
.loginContents .contentwrap .sec-login #loginForm #submitBtn {
  position: relative;
  overflow: hidden;
  width: 60px;
  height: 60px;
  font-size: 1.6rem;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #0E0F0F;
  font-family: "Bellefair", serif;
  -webkit-appearance: none;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media only screen and (max-width: 991px) {
  .loginContents .contentwrap .sec-login #loginForm #submitBtn {
    overflow: visible !important;
    width: 50px !important;
    height: 50px;
  }
}
.loginContents .contentwrap .sec-login .btnTtlWrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 15px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .loginContents .contentwrap .sec-login .btnTtlWrap {
    gap: 10px;
  }
}
.loginContents .contentwrap .sec-login .btnTtlWrap .enttl {
  font-size: 48px;
  line-height: 1;
}
@media only screen and (max-width: 991px) {
  .loginContents .contentwrap .sec-login .btnTtlWrap .enttl {
    font-size: 28px;
  }
}
.loginContents .contentwrap .sec-login .btnTtlWrap .jpttl {
  font-size: 14px;
}
@media only screen and (max-width: 991px) {
  .loginContents .contentwrap .sec-login .btnTtlWrap .jpttl {
    font-size: 12px;
  }
}
.loginContents .contentwrap .sec-login p {
  color: #fff;
}
.loginContents .contentwrap .sec-login .formcopy {
  font-size: 18px;
  color: #fff;
  padding-bottom: 90px;
}
@media only screen and (max-width: 991px) {
  .loginContents .contentwrap .sec-login .formcopy {
    font-size: 13px;
    padding-bottom: 40px;
  }
}
.loginContents .contentwrap .sec-about {
  width: 50%;
  display: inline-block;
  background: rgba(255, 255, 255, 0.75);
  padding: 80px 40px;
}
@media only screen and (max-width: 991px) {
  .loginContents .contentwrap .sec-about {
    width: 100%;
    padding: 60px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .loginContents .contentwrap .sec-about {
    padding: 40px 30px;
  }
}
.loginContents .contentwrap .sec-about .btnTtlWrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 15px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .loginContents .contentwrap .sec-about .btnTtlWrap {
    gap: 10px;
  }
}
.loginContents .contentwrap .sec-about .btnTtlWrap .enttl {
  font-size: 48px;
  line-height: 1;
}
@media only screen and (max-width: 991px) {
  .loginContents .contentwrap .sec-about .btnTtlWrap .enttl {
    font-size: 28px;
  }
}
.loginContents .contentwrap .sec-about .btnTtlWrap .jpttl {
  font-size: 14px;
}
@media only screen and (max-width: 991px) {
  .loginContents .contentwrap .sec-about .btnTtlWrap .jpttl {
    font-size: 12px;
  }
}
.loginContents .contentwrap .sec-about p {
  font-size: 14px;
  color: #333333;
}
.loginContents .contentwrap .sec-about .formcopy {
  font-size: 18px;
  padding-bottom: 90px;
}
@media only screen and (max-width: 991px) {
  .loginContents .contentwrap .sec-about .formcopy {
    font-size: 13px;
    padding-bottom: 40px;
  }
}
.loginContents .contentwrap .sec-about .cvBtnWrap .cvBtn {
  max-width: 300px;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: inline-block;
  margin: 0 auto;
  -webkit-box-align: left;
  -webkit-align-items: left;
      -ms-flex-align: left;
          align-items: left;
  padding: 10px 60px 10px 100px;
  font-size: 20px;
  color: #fff;
  background: #778288;
}
@media only screen and (max-width: 991px) {
  .loginContents .contentwrap .sec-about .cvBtnWrap .cvBtn {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .loginContents .contentwrap .sec-about .cvBtnWrap .cvBtn {
    padding: 10px 20px 10px 80px;
  }
}
.loginContents .contentwrap .sec-about .cvBtnWrap .cvBtn:before {
  content: "";
  position: absolute;
  left: 60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url("../../img/icon-req-white.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .loginContents .contentwrap .sec-about .cvBtnWrap .cvBtn:before {
    left: 40px;
  }
}