@charset "UTF-8";
/*-------------------------------------
        セレクタの不要CSSをリセット
  -------------------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
ul,
li,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 16px;
  vertical-align: baseline;
  font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
th,
td,
a {
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
}

img {
  pointer-events: none;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input[type=email],
input[type=text],
input[type=password],
input[type=submit],
input[type=button],
input[type=radio],
input[type=tel],
textarea,
select {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

input[type=email]::-webkit-search-decoration,
input[type=text]::-webkit-search-decoration,
input[type=password]::-webkit-search-decoration,
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=radio]::-webkit-search-decoration,
input[type=tel]::-webkit-search-decoration,
textarea::-webkit-search-decoration,
select::-webkit-search-decoration {
  display: none;
}

input[type=email]:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=submit]:focus,
input[type=button]:focus,
input[type=radio]:focus,
input[type=tel]:focus,
textarea:focus,
select:focus {
  outline-offset: -2px;
  outline: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

* {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  line-height: 1;
}

html {
  scroll-behavior: smooth;
  background-color: #1c1c1e;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #ffffff;
  background-color: #1c1c1e;
  width: 100%;
}
@media screen and (max-width: 767px) {
  body {
    width: 100%;
  }
}

::-webkit-scrollbar {
  display: none;
}

img,
a {
  display: block;
}

select {
  background-color: transparent;
}
select option {
  color: #000000;
  background-color: #ffffff;
}

.fadein {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.fadein.init {
  opacity: 1;
}

.spVisible {
  display: none;
}
@media screen and (max-width: 767px) {
  .spVisible {
    display: block;
  }
}

.spInvisible {
  display: block;
}
@media screen and (max-width: 767px) {
  .spInvisible {
    display: none;
  }
}

@font-face {
  font-family: "Falling Sky";
  src: url("../font/FallingSkyBd.otf");
}
@font-face {
  font-family: "FallingSkyBlk";
  src: url("../font/FallingSkyBlk.otf");
}
.original-color {
  color: #eb764d !important;
  border-color: #eb764d !important;
}
.original-color:hover {
  color: #ffffff !important;
  background-color: #eb764d !important;
}

.sidebar_wrap {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .sidebar_wrap {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 50px;
  }
}
.sidebar_wrap.open .hamburger_wrap .hamburger div:first-child {
  -webkit-transform: rotate(45deg) translate(6px, 6px);
          transform: rotate(45deg) translate(6px, 6px);
}
.sidebar_wrap.open .hamburger_wrap .hamburger div:nth-child(2) {
  opacity: 0;
}
.sidebar_wrap.open .hamburger_wrap .hamburger div:last-child {
  -webkit-transform: rotate(-45deg) translate(5px, -5px);
          transform: rotate(-45deg) translate(5px, -5px);
}
.sidebar_wrap.open .sidebar.simple {
  left: -80px;
}
@media screen and (max-width: 767px) {
  .sidebar_wrap.open .sidebar.simple {
    left: 0;
  }
}
.sidebar_wrap.open .sidebar.detail {
  left: 0;
}
@media screen and (max-width: 767px) {
  .sidebar_wrap.open .sidebar.detail {
    bottom: 50px;
  }
}
.sidebar_wrap .hamburger_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80px;
  height: 70px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .sidebar_wrap .hamburger_wrap {
    display: none;
  }
}
.sidebar_wrap .hamburger_wrap .hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 32px;
  height: 17px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sidebar_wrap .hamburger_wrap .hamburger div {
  width: 22px;
  height: 1px;
  background-color: #ffffff;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, transform 0.2s;
  transition: opacity 0.2s, transform 0.2s, -webkit-transform 0.2s;
}
.sidebar_wrap .sidebar {
  position: absolute;
  padding-top: 12px;
  padding-bottom: 12px;
  top: 70px;
  height: calc(100% - 70px);
  background-color: #1c1c1e;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-transition: left 0.2s;
  transition: left 0.2s;
}
@media screen and (max-width: 767px) {
  .sidebar_wrap .sidebar {
    padding: 0 20px;
    top: auto;
    height: 50px;
  }
}
.sidebar_wrap .sidebar.simple {
  display: none;
}
@media screen and (max-width: 767px) {
  .sidebar_wrap .sidebar.simple {
    position: relative;
    padding-top: 5px;
    width: 100%;
    z-index: 2;
    display: block;
  }
}
.sidebar_wrap .sidebar.detail {
  left: -200px;
  width: 200px;
}
@media screen and (max-width: 767px) {
  .sidebar_wrap .sidebar.detail {
    left: 0;
    bottom: -100vh;
    width: 100%;
    height: calc(100vh - 100px);
    background-color: #2f2f31;
    -webkit-transition: bottom 0.2s;
    transition: bottom 0.2s;
    z-index: 1;
  }
}
.sidebar_wrap .sidebar .sidebar_parts {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sidebar_wrap .sidebar .sidebar_parts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.sidebar_wrap .sidebar .sidebar_parts a {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .sidebar_wrap .sidebar .sidebar_parts a {
    margin-top: 0;
  }
}
.sidebar_wrap .sidebar .sidebar_parts a:first-child {
  margin-top: 0;
}
.sidebar_wrap .sidebar .sidebar_parts a:last-child {
  display: none;
}
@media screen and (max-width: 767px) {
  .sidebar_wrap .sidebar .sidebar_parts a:last-child {
    display: block;
    cursor: pointer;
  }
}
.sidebar_wrap .sidebar .sidebar_parts a img {
  margin-left: auto;
  margin-right: auto;
  width: 24px;
}
.sidebar_wrap .sidebar .sidebar_parts a p {
  margin-top: 6px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sidebar_wrap .sidebar .sidebar_parts a p {
    font-size: 8px;
  }
}
.sidebar_wrap .sidebar .sidebar_detail {
  margin-left: auto;
  margin-right: auto;
  width: 170px;
}
@media screen and (max-width: 767px) {
  .sidebar_wrap .sidebar .sidebar_detail {
    padding: 25px 0;
    width: 338px;
  }
}
.sidebar_wrap .sidebar .sidebar_detail .detail_block {
  padding-top: 25px;
  padding-bottom: 20px;
  border-top: solid 1px #707070;
}
@media screen and (max-width: 767px) {
  .sidebar_wrap .sidebar .sidebar_detail .detail_block {
    padding: 20px 0;
  }
}
.sidebar_wrap .sidebar .sidebar_detail .detail_block:first-child {
  padding-top: 0;
  border-top: none;
}
.sidebar_wrap .sidebar .sidebar_detail .detail_block p {
  margin-left: 14px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .sidebar_wrap .sidebar .sidebar_detail .detail_block p {
    margin-left: 0;
  }
}
.sidebar_wrap .sidebar .sidebar_detail .detail_block .detail_list {
  padding-left: 14px;
}
@media screen and (max-width: 767px) {
  .sidebar_wrap .sidebar .sidebar_detail .detail_block .detail_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.sidebar_wrap .sidebar .sidebar_detail .detail_block .detail_list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .sidebar_wrap .sidebar .sidebar_detail .detail_block .detail_list a {
    width: 50%;
  }
}
.sidebar_wrap .sidebar .sidebar_detail .detail_block .detail_list a:first-child {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .sidebar_wrap .sidebar .sidebar_detail .detail_block .detail_list a:nth-child(-n+2) {
    margin-top: 0;
  }
}
.sidebar_wrap .sidebar .sidebar_detail .detail_block .detail_list a img {
  width: 24px;
}
.sidebar_wrap .sidebar .sidebar_detail .detail_block .detail_list a p {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .sidebar_wrap .sidebar .sidebar_detail .detail_block .detail_list a p {
    margin-left: 14px;
  }
}

.point_get_button {
  display: none;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 170px;
  height: 170px;
  z-index: 9;
}
.point_get_button.db {
  display: block;
}
.point_get_button button {
  width: 100%;
  height: 100%;
}

.point_get {
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 200px;
  height: 50px;
  opacity: 0;
  visibility: hidden;
}
.point_get.db {
  opacity: 1;
  visibility: visible;
}
.point_get img {
  width: 100%;
  height: 100%;
}

.guest_header_wrap .guest_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  padding-left: 80px;
  padding-right: 32px;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: #1c1c1e;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 100;
}
@media (max-width: 959px) {
  .guest_header_wrap .guest_header {
    padding-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .guest_header_wrap .guest_header {
    padding-left: 20px;
    padding-right: 10px;
    height: 50px;
  }
}
.guest_header_wrap .guest_header .left_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.guest_header_wrap .guest_header .left_wrap .logo {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .guest_header_wrap .guest_header .left_wrap .logo {
    width: 150px;
  }
}
.guest_header_wrap .guest_header .left_wrap .logo img {
  width: 100%;
}
.guest_header_wrap .guest_header .left_wrap .search_wrap {
  margin-left: 45px;
}
@media (max-width: 1279px) {
  .guest_header_wrap .guest_header .left_wrap .search_wrap {
    display: none;
  }
}
.guest_header_wrap .guest_header .left_wrap .search_wrap .search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 300px;
  height: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 20px;
  border: solid 1px #ffffff;
  overflow: hidden;
}
.guest_header_wrap .guest_header .left_wrap .search_wrap .search img {
  position: absolute;
  left: 10px;
  width: 24px;
}
.guest_header_wrap .guest_header .left_wrap .search_wrap .search input {
  margin: 0;
  padding: 0 10px 0 40px;
  width: 100%;
  height: 100%;
  background-color: transparent;
  outline: none;
  border: none;
  border-radius: 20px;
}
.guest_header_wrap .guest_header .left_wrap .search_wrap .search input:focus {
  outline: solid 1px #ffffff;
  outline-offset: 0;
}
.guest_header_wrap .guest_header .left_wrap .num_wrap {
  margin-left: 25px;
}
@media screen and (max-width: 767px) {
  .guest_header_wrap .guest_header .left_wrap .num_wrap {
    display: none;
    margin-left: 15px;
  }
}
.guest_header_wrap .guest_header .left_wrap .num_wrap .num {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .guest_header_wrap .guest_header .left_wrap .num_wrap .num {
    font-size: 12px;
    letter-spacing: 0;
  }
}
.guest_header_wrap .guest_header .left_wrap .num_wrap .num span {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .guest_header_wrap .guest_header .left_wrap .num_wrap .num span {
    font-size: 18px;
    letter-spacing: 0;
  }
}
.guest_header_wrap .guest_header .left_wrap .num_wrap .date {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .guest_header_wrap .guest_header .left_wrap .num_wrap .date {
    display: none;
  }
}
.guest_header_wrap .guest_header .back {
  display: none;
}
.guest_header_wrap .guest_header .sp_logo {
  display: none;
}
@media screen and (max-width: 767px) {
  .guest_header_wrap .guest_header .sp_logo {
    display: block;
    margin-right: auto;
    width: 150px;
  }
}
.guest_header_wrap .guest_header .right_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.guest_header_wrap .guest_header .right_wrap .login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .guest_header_wrap .guest_header .right_wrap .login {
    margin-left: 5px;
    margin-right: 5px;
    width: 85px;
    height: 32px;
    line-height: 30px;
    border-radius: 8px;
    border: solid 1px #8aea92;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.guest_header_wrap .guest_header .right_wrap .login img {
  width: 32px;
}
@media screen and (max-width: 767px) {
  .guest_header_wrap .guest_header .right_wrap .login img {
    display: none;
  }
}
.guest_header_wrap .guest_header .right_wrap .login p {
  margin-left: 8px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .guest_header_wrap .guest_header .right_wrap .login p {
    margin-left: 0;
    font-size: 12px;
    color: #8aea92;
    text-align: center;
  }
}
.guest_header_wrap .guest_header .right_wrap .logout {
  margin-left: 20px;
  width: 150px;
  height: 40px;
  font-size: 15px;
  font-weight: 600;
  color: #eb764d;
  letter-spacing: 0;
  line-height: 38px;
  border: solid 1px #eb764d;
  border-radius: 10px;
  text-align: center;
  -webkit-transition: color 0.2s, background-color 0.2s;
  transition: color 0.2s, background-color 0.2s;
}
@media (max-width: 959px) {
  .guest_header_wrap .guest_header .right_wrap .logout {
    margin-left: 15px;
  }
}
@media screen and (max-width: 767px) {
  .guest_header_wrap .guest_header .right_wrap .logout {
    margin-left: 0;
    width: 85px;
    height: 32px;
    font-size: 12px;
    line-height: 30px;
    border-radius: 8px;
  }
}
.guest_header_wrap .guest_header .right_wrap .logout:hover {
  color: #2f2f31;
  background-color: #eb764d;
}
.guest_header_wrap .guest_header .right_wrap .register {
  margin-left: 20px;
  width: 150px;
  height: 40px;
  font-size: 15px;
  font-weight: 600;
  color: #eb764d;
  letter-spacing: 0;
  line-height: 38px;
  border: solid 1px #eb764d;
  border-radius: 10px;
  text-align: center;
  -webkit-transition: color 0.2s, background-color 0.2s;
  transition: color 0.2s, background-color 0.2s;
}
@media (max-width: 959px) {
  .guest_header_wrap .guest_header .right_wrap .register {
    margin-left: 15px;
  }
}
@media screen and (max-width: 767px) {
  .guest_header_wrap .guest_header .right_wrap .register {
    margin-left: 0;
    width: 85px;
    height: 32px;
    font-size: 12px;
    line-height: 30px;
    border-radius: 8px;
  }
}
.guest_header_wrap .guest_header .right_wrap .register:hover {
  color: #2f2f31;
  background-color: #eb764d;
}
.guest_header_wrap .guest_header .right_wrap .admin {
  margin-left: 10px;
  width: 150px;
  height: 40px;
  font-size: 15px;
  font-weight: 600;
  color: #8aea92;
  letter-spacing: 0;
  line-height: 38px;
  border: solid 1px #8aea92;
  border-radius: 10px;
  text-align: center;
  -webkit-transition: color 0.2s, background-color 0.2s;
  transition: color 0.2s, background-color 0.2s;
}
@media (max-width: 959px) {
  .guest_header_wrap .guest_header .right_wrap .admin {
    display: none;
  }
}
.guest_header_wrap .guest_header .right_wrap .admin:hover {
  color: #2f2f31;
  background-color: #8aea92;
}

.guest_footer_wrap {
  padding-bottom: 25px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .guest_footer_wrap {
    padding-bottom: 60px;
  }
}
.guest_footer_wrap.pos_fixed {
  position: fixed;
  left: 0;
  bottom: 0;
}
.guest_footer_wrap .guest_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.guest_footer_wrap .guest_footer small {
  font-size: 12px;
  font-weight: 500;
  color: #626367;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .guest_footer_wrap .guest_footer small {
    font-size: 10px;
  }
}
.guest_footer_wrap .guest_footer a {
  font-size: 12px;
  font-weight: 500;
  color: #626367;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .guest_footer_wrap .guest_footer a {
    font-size: 10px;
  }
}
.guest_footer_wrap .guest_footer p {
  font-size: 12px;
  font-weight: 500;
  color: #626367;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .guest_footer_wrap .guest_footer p {
    font-size: 10px;
  }
}

.guest_header_wrap .guest_header .sp_logo {
  display: none;
}
@media screen and (max-width: 767px) {
  .guest_header_wrap .guest_header .sp_logo {
    display: none;
  }
}

main {
  margin-left: 80px;
  padding-top: 85px;
  padding-bottom: 60px;
  width: calc(100% - 80px);
}
@media screen and (max-width: 767px) {
  main {
    margin-left: 0;
    padding-top: 55px;
    padding-bottom: 50px;
    width: 100%;
  }
}
main .login_wrap {
  width: 100%;
}
main .login_wrap .login {
  margin-left: auto;
  margin-right: auto;
  width: 1000px;
}
@media screen and (max-width: 767px) {
  main .login_wrap .login {
    width: 100%;
  }
}
main .login_wrap .login .h1_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  main .login_wrap .login .h1_wrap {
    display: block;
    width: 100%;
  }
}
main .login_wrap .login .h1_wrap h1 {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  main .login_wrap .login .h1_wrap h1 {
    height: 30px;
    font-size: 16px;
    color: #ffffff;
    line-height: 30px;
    text-align: center;
    background-color: #2f2f31;
  }
}
main .login_wrap .login .login_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 55px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  main .login_wrap .login .login_block {
    display: block;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
}
main .login_wrap .login .login_block .lb {
  width: 450px;
}
@media screen and (max-width: 767px) {
  main .login_wrap .login .login_block .lb {
    width: 100%;
  }
}
main .login_wrap .login .login_block .lb.lb_2 {
  padding: 30px 40px;
  width: 480px;
  border-radius: 6px;
  background-color: #2f2f31;
}
@media screen and (max-width: 767px) {
  main .login_wrap .login .login_block .lb.lb_2 {
    margin-top: 50px;
    padding: 15px 20px 20px 20px;
    width: 100%;
  }
}
main .login_wrap .login .login_block .lb.lb_2 .text .p_2 {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  main .login_wrap .login .login_block .lb.lb_2 .text .p_2 {
    font-size: 14px;
  }
}
main .login_wrap .login .login_block .lb.lb_2 .text .p_3 {
  margin-top: 15px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 25px;
}
@media screen and (max-width: 767px) {
  main .login_wrap .login .login_block .lb.lb_2 .text .p_3 {
    margin-top: 10px;
    font-size: 12px;
    letter-spacing: 0.05em;
    line-height: 20px;
  }
}
main .login_wrap .login .login_block .lb.lb_2 button {
  margin-top: 55px;
  color: #eb764d;
  border: solid 1px #eb764d;
}
@media screen and (max-width: 767px) {
  main .login_wrap .login .login_block .lb.lb_2 button {
    margin-top: 20px;
  }
}
main .login_wrap .login .login_block .lb .p_1 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  main .login_wrap .login .login_block .lb .p_1 {
    font-size: 12px;
    line-height: 20px;
  }
}
main .login_wrap .login .login_block .lb input {
  margin-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  height: 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 8px;
  border: solid 1px #ffffff;
  background-color: transparent;
}
main .login_wrap .login .login_block .lb input::-webkit-input-placeholder {
  color: #898989;
}
main .login_wrap .login .login_block .lb input::-moz-placeholder {
  color: #898989;
}
main .login_wrap .login .login_block .lb input:-ms-input-placeholder {
  color: #898989;
}
main .login_wrap .login .login_block .lb input::-ms-input-placeholder {
  color: #898989;
}
main .login_wrap .login .login_block .lb input::placeholder {
  color: #898989;
}
main .login_wrap .login .login_block .lb input:focus {
  outline: solid 1px #ffffff;
}
main .login_wrap .login .login_block .lb a {
  margin-top: 12px;
  font-size: 14px;
  font-weight: bold;
  color: #eb764d;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  main .login_wrap .login .login_block .lb a {
    font-size: 12px;
  }
}
main .login_wrap .login .login_block .lb button {
  display: block;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  width: 220px;
  height: 46px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 23px;
  border: solid 1px #ffffff;
}
@media screen and (max-width: 767px) {
  main .login_wrap .login .login_block .lb button {
    margin-top: 20px;
    width: 160px;
    height: 40px;
    font-size: 14px;
    border-radius: 20px;
  }
}
