@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 {
  display: none;
}
@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: 40px;
  padding-top: 85px;
  padding-bottom: 60px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  main {
    margin-left: 0;
    padding-top: 55px;
    padding-bottom: 50px;
    width: 100%;
  }
}
main .category_wrap {
  width: 100%;
}
@media screen and (max-width: 767px) {
  main .category_wrap {
    padding-left: 5%;
    padding-right: 5%;
    overflow-x: scroll;
    overflow-y: hidden;
  }
}
main .category_wrap .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
  width: 1330px;
  justify-self: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  main .category_wrap .category {
    margin-right: 0;
    width: auto;
  }
}
main .category_wrap .category a {
  margin-left: 10px;
  padding: 10px 18px;
  height: 34px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  background-color: #2B2C30;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  main .category_wrap .category a {
    margin-left: 8px;
    padding: 9px 14px;
    font-size: 13px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
main .category_wrap .category a:first-child {
  color: #000000;
  background-color: #eb764d;
}
main .category_wrap .category a:first-child {
  margin-left: 0;
}
main .main_visual_wrap {
  margin-top: 55px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  main .main_visual_wrap {
    margin-top: 35px;
  }
}
main .main_visual_wrap .main_visual {
  margin-right: auto;
  width: calc(100% - 80px);
}
@media screen and (max-width: 767px) {
  main .main_visual_wrap .main_visual {
    width: 100%;
  }
}
main .main_visual_wrap .main_visual .splide_main {
  width: 100%;
}
main .main_visual_wrap .main_visual .splide_main .splide__track {
  width: 100%;
}
main .main_visual_wrap .main_visual .splide_main .splide__track .splide__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
main .main_visual_wrap .main_visual .splide_main .splide__track .splide__list .splide__slide {
  width: 1000px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
main .main_visual_wrap .main_visual .splide_main .splide__track .splide__list .splide__slide a {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  main .main_visual_wrap .main_visual .splide_main .splide__track .splide__list .splide__slide a {
    border-radius: 0;
  }
}
main .main_visual_wrap .main_visual .splide_main .splide__track .splide__list .splide__slide a img {
  width: 100%;
}
main .main_visual_wrap .main_visual .splide_main .splide__pagination {
  position: static;
  margin-top: 16px;
}
main .main_visual_wrap .main_visual .splide_main .splide__pagination li {
  margin-left: 10px;
  width: 12px;
  height: 12px;
}
@media screen and (max-width: 767px) {
  main .main_visual_wrap .main_visual .splide_main .splide__pagination li {
    margin-left: 8px;
    width: 8px;
    height: 8px;
  }
}
main .main_visual_wrap .main_visual .splide_main .splide__pagination li:first-child {
  margin-left: 0;
}
main .main_visual_wrap .main_visual .splide_main .splide__pagination li button {
  display: block;
  margin: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 0.3;
}
main .main_visual_wrap .main_visual .splide_main .splide__pagination li button.is-active {
  opacity: 1;
}
main .search_wrap {
  margin-top: 60px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  main .search_wrap {
    margin-top: 50px;
  }
}
main .search_wrap .search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  width: 1220px;
  -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;
}
@media screen and (max-width: 767px) {
  main .search_wrap .search {
    display: block;
    width: 90%;
  }
}
main .search_wrap .search .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  width: 600px;
  height: 70px;
  border-radius: 12px;
  border: solid 1px #ffffff;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  main .search_wrap .search .block {
    margin-top: 15px;
    width: 100%;
    height: 50px;
    border-radius: 8px;
  }
}
main .search_wrap .search .block:nth-child(-n+2) {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  main .search_wrap .search .block:nth-child(-n+2) {
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  main .search_wrap .search .block:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  main .search_wrap .search .block.more {
    margin-top: 35px;
  }
}
main .search_wrap .search .block.more a {
  padding-left: 20px;
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.11em;
  line-height: 68px;
  text-align: left;
  border-left: none;
  background-image: url(../images/index/arrow.png);
  background-size: 32px 32px;
  background-position: center right 20px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  main .search_wrap .search .block.more a {
    padding-left: 15px;
    font-size: 16px;
    line-height: 48px;
    background-size: 28px 28px;
    background-position: center right 15px;
  }
}
main .search_wrap .search .block .parts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 20px;
  width: 100%;
  background-image: url(../images/index/search_arrow.png);
  background-size: 24px 24px;
  background-position: center right 20px;
  background-repeat: no-repeat;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  main .search_wrap .search .block .parts {
    padding-left: 15px;
    background-image: url(../images/index/search_arrow_sp.png);
    background-size: 20px 20px;
    background-position: center right 10px;
    background-repeat: no-repeat;
  }
}
main .search_wrap .search .block .parts img {
  width: 32px;
}
@media screen and (max-width: 767px) {
  main .search_wrap .search .block .parts img {
    width: 28px;
  }
}
main .search_wrap .search .block .parts p {
  margin-left: 24px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.11em;
  line-height: 68px;
}
@media screen and (max-width: 767px) {
  main .search_wrap .search .block .parts p {
    margin-left: 10px;
    font-size: 16px;
    color: #626367;
    line-height: 48px;
  }
}
main .search_wrap .search button {
  margin-top: 20px;
  width: 600px;
  height: 70px;
  font-size: 20px;
  font-weight: bold;
  color: #eb764d;
  letter-spacing: 0.11em;
  border-radius: 12px;
  border: solid 1px #eb764d;
  -webkit-transition: color 0.2s, background-color 0.2s;
  transition: color 0.2s, background-color 0.2s;
}
@media screen and (max-width: 767px) {
  main .search_wrap .search button {
    margin-top: 15px;
    width: 100%;
    height: 50px;
    font-size: 16px;
    border-radius: 8px;
  }
}
main .search_wrap .search button:hover {
  color: #1c1c1e;
  background-color: #eb764d;
}
main .main_contents {
  margin-top: 60px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  main .main_contents {
    margin-top: 35px;
  }
}
main .main_contents.new {
  margin-top: 45px;
}
@media screen and (max-width: 767px) {
  main .main_contents.new {
    margin-top: 25px;
  }
}
main .main_contents .block {
  width: calc(100% - 20px);
}
@media screen and (max-width: 767px) {
  main .main_contents .block {
    padding-left: 5%;
    width: 100%;
  }
}
main .main_contents .block:first-child {
  margin-top: 0;
}
main .main_contents .block .theme {
  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;
}
main .main_contents .block .theme img {
  margin-right: 8px;
  width: 38px;
}
@media screen and (max-width: 767px) {
  main .main_contents .block .theme img {
    margin-right: 6px;
    width: 24px;
  }
}
main .main_contents .block .theme h2 {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.11em;
}
@media screen and (max-width: 767px) {
  main .main_contents .block .theme h2 {
    font-size: 18px;
  }
}
main .main_contents .block .theme .num_wrap {
  display: none;
  margin-left: 25px;
}
@media screen and (max-width: 767px) {
  main .main_contents .block .theme .num_wrap {
    display: block;
    margin-left: 15px;
  }
}
main .main_contents .block .theme .num_wrap .num {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  main .main_contents .block .theme .num_wrap .num {
    font-size: 12px;
    letter-spacing: 0;
  }
}
main .main_contents .block .theme .num_wrap .num span {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  main .main_contents .block .theme .num_wrap .num span {
    font-size: 18px;
    letter-spacing: 0;
  }
}
main .main_contents .block .theme .num_wrap .date {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  main .main_contents .block .theme .num_wrap .date {
    display: none;
  }
}
main .main_contents .block .splide_default {
  margin-top: 20px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  main .main_contents .block .splide_default {
    margin-top: 10px;
  }
}
main .main_contents .block .splide_default .list_wrap {
  width: 100%;
}
main .main_contents .block .splide_default .list_wrap .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
main .main_contents .block .splide_default .list_wrap .list .parts {
  position: relative;
  width: 226px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  main .main_contents .block .splide_default .list_wrap .list .parts {
    width: 140px;
  }
}
main .main_contents .block .splide_default .list_wrap .list .parts a {
  width: 100%;
}
main .main_contents .block .splide_default .list_wrap .list .parts a .movie_wrap {
  position: relative;
  width: 100%;
  height: 401.7777777778px;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  main .main_contents .block .splide_default .list_wrap .list .parts a .movie_wrap {
    height: 248.8888888889px;
  }
}
main .main_contents .block .splide_default .list_wrap .list .parts a .movie_wrap:hover .thumbnail {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  main .main_contents .block .splide_default .list_wrap .list .parts a .movie_wrap:hover .thumbnail {
    opacity: 1;
  }
}
main .main_contents .block .splide_default .list_wrap .list .parts a .movie_wrap .player {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
main .main_contents .block .splide_default .list_wrap .list .parts a .movie_wrap .thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
main .main_contents .block .splide_default .list_wrap .list .parts a .movie_wrap .filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
main .main_contents .block .splide_default .list_wrap .list .parts a .info_wrap {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  main .main_contents .block .splide_default .list_wrap .list .parts a .info_wrap {
    margin-top: 8px;
  }
}
main .main_contents .block .splide_default .list_wrap .list .parts a .info_wrap .title {
  display: -webkit-box;
  height: 40px;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.07em;
  line-height: 20px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  main .main_contents .block .splide_default .list_wrap .list .parts a .info_wrap .title {
    height: 32px;
    font-size: 12px;
    line-height: 16px;
  }
}
main .main_contents .block .splide_default .list_wrap .list .parts a .info_wrap .info {
  margin-top: 5px;
  font-size: 14px;
  font-weight: bold;
  color: #626367;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  main .main_contents .block .splide_default .list_wrap .list .parts a .info_wrap .info {
    font-size: 10px;
  }
}
main .main_contents .block .splide_ranking {
  margin-top: 20px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  main .main_contents .block .splide_ranking {
    margin-top: 10px;
  }
}
main .main_contents .block .splide_ranking .list_wrap {
  width: 100%;
}
main .main_contents .block .splide_ranking .list_wrap .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
main .main_contents .block .splide_ranking .list_wrap .list .parts {
  position: relative;
  width: 312px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  main .main_contents .block .splide_ranking .list_wrap .list .parts {
    width: 225px;
    overflow: hidden;
  }
}
main .main_contents .block .splide_ranking .list_wrap .list .parts a {
  width: 100%;
}
main .main_contents .block .splide_ranking .list_wrap .list .parts a .movie_wrap {
  position: relative;
  margin-left: auto;
  width: 180px;
  height: 320px;
  border-radius: 8px;
  overflow: hidden;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  main .main_contents .block .splide_ranking .list_wrap .list .parts a .movie_wrap {
    width: 135px;
    height: 240px;
  }
}
main .main_contents .block .splide_ranking .list_wrap .list .parts a .movie_wrap:hover .thumbnail {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  main .main_contents .block .splide_default .list_wrap .list .parts a .movie_wrap:hover .thumbnail {
    opacity: 1;
  }
}
main .main_contents .block .splide_ranking .list_wrap .list .parts a .movie_wrap .player {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
main .main_contents .block .splide_ranking .list_wrap .list .parts a .movie_wrap .thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
main .main_contents .block .splide_ranking .list_wrap .list .parts a .movie_wrap .filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
main .main_contents .block .splide_ranking .list_wrap .list .parts a .info_wrap {
  margin-top: 15px;
  margin-left: auto;
  width: 180px;
}
@media screen and (max-width: 767px) {
  main .main_contents .block .splide_ranking .list_wrap .list .parts a .info_wrap {
    margin-top: 8px;
    width: 135px;
  }
}
main .main_contents .block .splide_ranking .list_wrap .list .parts a .info_wrap .title {
  display: -webkit-box;
  height: 40px;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.07em;
  line-height: 20px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  main .main_contents .block .splide_ranking .list_wrap .list .parts a .info_wrap .title {
    height: 32px;
    font-size: 12px;
    line-height: 16px;
  }
}
main .main_contents .block .splide_ranking .list_wrap .list .parts a .info_wrap .info {
  margin-top: 5px;
  font-size: 14px;
  font-weight: bold;
  color: #626367;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  main .main_contents .block .splide_ranking .list_wrap .list .parts a .info_wrap .info {
    font-size: 10px;
  }
}
main .main_contents .block .splide_ranking .list_wrap .list .parts a .num {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 156px;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  main .main_contents .block .splide_ranking .list_wrap .list .parts a .num {
    left: -10px;
    bottom: -10px;
    width: 117px;
  }
}
main .main_contents .block .splide_pickup {
  margin-top: 20px;
  width: calc(100% - 60px);
}
@media screen and (max-width: 767px) {
  main .main_contents .block .splide_pickup {
    position: relative;
    margin-top: 10px;
    padding-right: 5%;
    width: 100%;
  }
}
main .main_contents .block .splide_pickup .list_wrap {
  width: 100%;
}
main .main_contents .block .splide_pickup .list_wrap .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
main .main_contents .block .splide_pickup .list_wrap .list .parts {
  padding: 20px 30px 45px 30px;
  width: 660px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 8px;
  border: solid 1px #ffffff;
  background-color: #2f2f31;
}
@media screen and (max-width: 767px) {
  main .main_contents .block .splide_pickup .list_wrap .list .parts {
    padding: 12px 18px 10px 18px;
    width: 100%;
  }
}
main .main_contents .block .splide_pickup .list_wrap .list .parts .title {
  display: -webkit-box;
  height: 60px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.07em;
  line-height: 30px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  main .main_contents .block .splide_pickup .list_wrap .list .parts .title {
    height: 40px;
    font-size: 15px;
    line-height: 20px;
  }
}
main .main_contents .block .splide_pickup .list_wrap .list .parts .thumbnail {
  margin-top: 20px;
  width: 100%;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  main .main_contents .block .splide_pickup .list_wrap .list .parts .thumbnail {
    margin-top: 10px;
  }
}
main .main_contents .block .splide_pickup .list_wrap .list .parts .info_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
  -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 .main_contents .block .splide_pickup .list_wrap .list .parts .info_wrap {
    display: block;
    margin-top: 10px;
  }
}
main .main_contents .block .splide_pickup .list_wrap .list .parts .info_wrap .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 30px;
  -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 .main_contents .block .splide_pickup .list_wrap .list .parts .info_wrap .info {
    margin-left: 0;
  }
}
main .main_contents .block .splide_pickup .list_wrap .list .parts .info_wrap .info:first-child {
  margin-left: 0;
}
main .main_contents .block .splide_pickup .list_wrap .list .parts .info_wrap .info img {
  width: 24px;
}
main .main_contents .block .splide_pickup .list_wrap .list .parts .info_wrap .info p {
  margin-left: 10px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  main .main_contents .block .splide_pickup .list_wrap .list .parts .info_wrap .info p {
    font-size: 14px;
  }
}
main .main_contents .block .splide_pickup .list_wrap .list .parts .total {
  position: absolute;
  right: 30px;
  bottom: 20px;
  font-size: 14px;
  font-weight: bold;
  color: #626367;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  main .main_contents .block .splide_pickup .list_wrap .list .parts .total {
    right: 18px;
    bottom: 10px;
    font-size: 10px;
  }
}
main .main_contents .block .splide_pickup .splide__arrows {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  top: calc(50% - 19px);
  left: 0;
  right: 0;
  width: 660px;
}
@media screen and (max-width: 767px) {
  main .main_contents .block .splide_pickup .splide__arrows {
    top: auto;
    bottom: 5px;
    width: 100%;
  }
}
main .main_contents .block .splide_pickup .splide__arrows .splide__arrow {
  display: block;
  width: 38px;
  height: 38px;
  background: none;
  border-radius: 0;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
main .main_contents .block .splide_pickup .splide__arrows .splide__arrow--prev {
  left: -59px;
  background-image: url(../images/index/pickup_prev.png);
}
@media screen and (max-width: 767px) {
  main .main_contents .block .splide_pickup .splide__arrows .splide__arrow--prev {
    left: 0;
  }
}
main .main_contents .block .splide_pickup .splide__arrows .splide__arrow--next {
  right: -59px;
  background-image: url(../images/index/pickup_next.png);
}
@media screen and (max-width: 767px) {
  main .main_contents .block .splide_pickup .splide__arrows .splide__arrow--next {
    right: 5%;
  }
}
@media screen and (max-width: 767px) {
  main .main_contents .block .splide_pickup .splide__pagination {
    position: static;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  main .main_contents .block .splide_pickup .splide__pagination li {
    margin-left: 8px;
    width: 8px;
    height: 8px;
  }
}
@media screen and (max-width: 767px) {
  main .main_contents .block .splide_pickup .splide__pagination li:first-child {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  main .main_contents .block .splide_pickup .splide__pagination li button {
    display: block;
    margin: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.3;
  }
}
@media screen and (max-width: 767px) {
  main .main_contents .block .splide_pickup .splide__pagination li button.is-active {
    opacity: 1;
  }
}
main .modal_wrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  visibility: hidden;
  opacity: 0;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  main .modal_wrap {
    height: calc(100vh - 50px);
  }
}
main .modal_wrap.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: visible;
  opacity: 1;
}
main .modal_wrap.open.open_1 #modal_1 {
  display: block;
  visibility: visible;
  opacity: 1;
}
main .modal_wrap.open.open_2 #modal_2 {
  display: block;
  visibility: visible;
  opacity: 1;
}
main .modal_wrap.open.open_3 #modal_3 {
  display: block;
  visibility: visible;
  opacity: 1;
}
main .modal_wrap.open.open_4 #modal_4 {
  display: block;
  visibility: visible;
  opacity: 1;
}
main .modal_wrap .modal {
  display: none;
  position: absolute;
  margin: auto;
  padding-top: 20px;
  padding-bottom: 15px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 1000px;
  height: 570px;
  border-radius: 6px;
  background-color: #2f2f31;
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal {
    padding-top: 0;
    padding-bottom: 65px;
    width: 100%;
    height: 100%;
    background-color: #1c1c1e;
  }
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    height: 50px;
    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;
  }
}
main .modal_wrap .modal .modal_head .close {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_head .close {
    position: static;
    top: 0;
    right: 0;
    width: 28px;
    height: 28px;
  }
}
main .modal_wrap .modal .modal_head .close img {
  width: 100%;
  height: 100%;
}
main .modal_wrap .modal .modal_head .register {
  display: none;
}
@media (max-width: 959px) {
  main .modal_wrap .modal .modal_head .register {
    display: block;
    margin-left: 15px;
    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 screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_head .register {
    margin-left: 0;
    width: 90px;
    height: 32px;
    font-size: 12px;
    line-height: 30px;
    border-radius: 8px;
  }
}
main .modal_wrap .modal .modal_head .register:hover {
  color: #2f2f31;
  background-color: #eb764d;
}
main .modal_wrap .modal .title_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 30px;
  -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 .modal_wrap .modal .title_wrap {
    padding-left: 0;
    width: 100%;
    height: 40px;
    background-color: #2f2f31;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
main .modal_wrap .modal .title_wrap img {
  margin-right: 10px;
  width: 32px;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .title_wrap img {
    width: 24px;
  }
}
main .modal_wrap .modal .title_wrap p {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.11em;
  line-height: 32px;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .title_wrap p {
    font-size: 16px;
    line-height: 1;
  }
}
main .modal_wrap .modal .modal_contents {
  position: relative;
  margin-top: 18px;
  width: 100%;
  height: 420px;
  border-top: solid 1px #626367;
  border-bottom: solid 1px #626367;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents {
    margin-top: 0;
    border-top: 30px;
    border-bottom: 0;
    height: calc(100% - 85px);
    overflow: hidden;
  }
}
main .modal_wrap .modal .modal_contents.scroll {
  overflow-x: hidden;
  overflow-y: scroll;
}
main .modal_wrap .modal .modal_contents .place {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -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 .modal_wrap .modal .modal_contents .place {
    display: block;
    position: relative;
    width: 100%;
  }
}
main .modal_wrap .modal .modal_contents .place .region_wrap {
  width: 290px;
  height: 100%;
  border-right: solid 1px #626367;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .place .region_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    padding-top: 30px;
    width: 90%;
    border-right: 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-line-pack: start;
        align-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
main .modal_wrap .modal .modal_contents .place .region_wrap p {
  padding-left: 30px;
  width: 100%;
  height: 60px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 59px;
  border-bottom: solid 1px #626367;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .place .region_wrap p {
    display: block;
    position: relative;
    margin-top: 12px;
    padding-left: 0;
    width: calc((100% - 12px) / 2);
    height: 50px;
    font-size: 15px;
    line-height: 48px;
    border: solid 1px #ffffff;
    border-radius: 8px;
    text-align: center;
  }
}
main .modal_wrap .modal .modal_contents .place .region_wrap p:nth-child(7) {
  height: 59px;
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .place .region_wrap p:nth-child(7) {
    height: 50px;
    border: solid 1px #ffffff;
  }
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .place .region_wrap p:nth-child(-n+2) {
    margin-top: 0;
  }
}
main .modal_wrap .modal .modal_contents .place .region_wrap p.open {
  color: #2f2f31;
  background-color: #eb764d;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .place .region_wrap p.open {
    color: #ffffff;
    background-color: transparent;
  }
}
main .modal_wrap .modal .modal_contents .place .city_wrap {
  position: relative;
  padding: 15px 30px;
  width: 710px;
  height: 100%;
  overflow: scroll;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .place .city_wrap {
    position: absolute;
    padding: 0;
    top: 0;
    right: -100vw;
    width: 100%;
    background-color: #1c1c1e;
    -webkit-transition: right 0.2s;
    transition: right 0.2s;
  }
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .place .city_wrap.sp_open {
    right: 0;
  }
}
main .modal_wrap .modal .modal_contents .place .city_wrap .city {
  display: none;
  position: absolute;
  top: 15px;
  left: 30px;
  width: calc(100% - 60px);
  height: calc(100% - 30px);
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .place .city_wrap .city {
    top: 30px;
    left: 0;
    width: 100%;
    height: calc(100% - 30px);
  }
}
main .modal_wrap .modal .modal_contents .place .city_wrap .city.open {
  display: block;
  visibility: visible;
}
main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents {
    margin-top: 12px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    width: 90%;
    border-radius: 8px;
    border: solid 1px #ffffff;
  }
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .prefectures {
    position: relative;
    padding-top: 15px;
    padding-left: 20px;
    padding-bottom: 15px;
    width: 100%;
  }
}
main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .prefectures.open svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .prefectures input {
  display: none;
}
main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .prefectures input:checked + label::before {
  background-color: #ffffff;
}
main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .prefectures input:checked + label::after {
  opacity: 1;
}
main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .prefectures label {
  position: relative;
  padding-left: 34px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 24px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .prefectures label {
    padding-left: 25px;
    font-size: 14px;
  }
}
main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .prefectures label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: solid 1px #ffffff;
  border-radius: 2px;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .prefectures label::before {
    width: 20px;
    height: 20px;
  }
}
main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .prefectures label::after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 5px;
  width: 14px;
  height: 8px;
  border-left: solid 2px #000000;
  border-bottom: solid 2px #000000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  opacity: 0;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .prefectures label::after {
    top: 5px;
    left: 4px;
    width: 12px;
    height: 6px;
  }
}
main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .prefectures svg {
  display: none;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .prefectures svg {
    display: block;
    position: absolute;
    top: 18px;
    right: 10px;
    height: 20px !important;
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .prefectures svg g path {
    stroke: #ffffff;
  }
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .municipality_wrap {
    margin-top: 0;
    padding-left: 20px;
    padding-right: 20px;
    height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: padding-top 0.2s, padding-bottom 0.2s, height 0.2s, opacity 0.2s;
    transition: padding-top 0.2s, padding-bottom 0.2s, height 0.2s, opacity 0.2s;
  }
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .municipality_wrap.open {
    padding-top: 12px;
    padding-bottom: 20px;
    opacity: 1;
    border-top: solid 1px #ffffff;
  }
}
main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .municipality_wrap .municipality {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  width: calc(100% - 24px);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .municipality_wrap .municipality {
    width: 100%;
  }
}
main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .municipality_wrap .municipality.hide_block {
  margin-top: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: margin-top 0.2s, height 0.2s, opacity 0.2s;
  transition: margin-top 0.2s, height 0.2s, opacity 0.2s;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .municipality_wrap .municipality.hide_block {
    margin-top: 12px;
    height: auto;
    overflow: auto;
    opacity: 1;
  }
}
main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .municipality_wrap .municipality.hide_block.open {
  opacity: 1;
}
main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .municipality_wrap .municipality .parts {
  margin-top: 20px;
  width: 33%;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .municipality_wrap .municipality .parts {
    margin-top: 12px;
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .municipality_wrap .municipality .parts:nth-child(-n+2) {
    margin-top: 0;
  }
}
main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .municipality_wrap .municipality .parts input {
  display: none;
}
main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .municipality_wrap .municipality .parts input:checked + label::before {
  background-color: #ffffff;
}
main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .municipality_wrap .municipality .parts input:checked + label::after {
  opacity: 1;
}
main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .municipality_wrap .municipality .parts label {
  position: relative;
  padding-left: 34px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 24px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .municipality_wrap .municipality .parts label {
    padding-left: 25px;
    font-size: 14px;
  }
}
main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .municipality_wrap .municipality .parts label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: solid 1px #ffffff;
  border-radius: 2px;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .municipality_wrap .municipality .parts label::before {
    width: 20px;
    height: 20px;
  }
}
main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .municipality_wrap .municipality .parts label::after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 5px;
  width: 14px;
  height: 8px;
  border-left: solid 2px #000000;
  border-bottom: solid 2px #000000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  opacity: 0;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .municipality_wrap .municipality .parts label::after {
    top: 5px;
    left: 4px;
    width: 12px;
    height: 6px;
  }
}
main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .municipality_wrap .more_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: margin-bottom 0.2s;
  transition: margin-bottom 0.2s;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .municipality_wrap .more_block {
    display: none;
  }
}
main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .municipality_wrap .more_block.hidden {
  display: none;
}
main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .municipality_wrap .more_block .line {
  width: 230px;
  height: 1px;
  background-color: #626367;
}
main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .municipality_wrap .more_block .more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 18px;
  padding-right: 10px;
  width: 160px;
  height: 32px;
  border-radius: 16px;
  border: solid 1px #626367;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .municipality_wrap .more_block .more.open .plus div:first-child {
  opacity: 0;
}
main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .municipality_wrap .more_block .more p {
  font-size: 14px;
  font-weight: 600;
  color: #626367;
  letter-spacing: 0;
  pointer-events: none;
}
main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .municipality_wrap .more_block .more .plus {
  position: relative;
  width: 14px;
  height: 14px;
  pointer-events: none;
}
main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .municipality_wrap .more_block .more .plus div {
  position: absolute;
  background-color: #626367;
  pointer-events: none;
}
main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .municipality_wrap .more_block .more .plus div:first-child {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
main .modal_wrap .modal .modal_contents .place .city_wrap .city .city_contents .municipality_wrap .more_block .more .plus div:last-child {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}
main .modal_wrap .modal .modal_contents .occupation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 858px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .occupation {
    margin-bottom: 20px;
    width: 90%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
main .modal_wrap .modal .modal_contents .occupation input {
  display: none;
}
main .modal_wrap .modal .modal_contents .occupation label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 12px;
  margin-left: 12px;
  width: 162px;
  height: 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
  border-radius: 8px;
  border: solid 1px #ffffff;
  -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) {
  main .modal_wrap .modal .modal_contents .occupation label {
    margin-left: 0;
    width: calc((100% - 12px) / 2);
  }
}
main .modal_wrap .modal .modal_contents .occupation label:nth-of-type(-n + 5) {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .occupation label:nth-of-type(-n + 5) {
    margin-top: 12px;
  }
}
main .modal_wrap .modal .modal_contents .occupation label:nth-of-type(5n + 1) {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .occupation label:nth-of-type(-n + 2) {
    margin-top: 0;
  }
}
main .modal_wrap .modal .modal_contents .occupation label.open {
  color: #2f2f31;
  border: solid 1px #eb764d;
  background-color: #eb764d;
}
main .modal_wrap .modal .modal_contents .occupation label.disabled {
  color: #2f2f31;
  border: solid 1px #626367;
  background-color: #626367;
}
main .modal_wrap .modal .modal_contents .other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 100%;
  -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 .modal_wrap .modal .modal_contents .other {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
}
main .modal_wrap .modal .modal_contents .other .region_wrap {
  width: 250px;
  height: 100%;
  border-right: solid 1px #626367;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .other .region_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    padding-top: 30px;
    width: 90%;
    border-right: 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-line-pack: start;
        align-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
main .modal_wrap .modal .modal_contents .other .region_wrap p {
  padding-left: 30px;
  width: 100%;
  height: 60px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 59px;
  border-bottom: solid 1px #626367;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .other .region_wrap p {
    display: block;
    position: relative;
    margin-top: 12px;
    padding-left: 0;
    width: calc((100% - 12px) / 2);
    height: 50px;
    font-size: 15px;
    line-height: 48px;
    border: solid 1px #ffffff;
    border-radius: 8px;
    text-align: center;
  }
}
main .modal_wrap .modal .modal_contents .other .region_wrap p:nth-child(7) {
  height: 59px;
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .other .region_wrap p:nth-child(7) {
    height: 50px;
    border: solid 1px #ffffff;
  }
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .other .region_wrap p:nth-child(-n+2) {
    margin-top: 0;
  }
}
main .modal_wrap .modal .modal_contents .other .region_wrap p.open {
  color: #2f2f31;
  background-color: #eb764d;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .other .region_wrap p.open {
    color: #ffffff;
    background-color: transparent;
  }
}
main .modal_wrap .modal .modal_contents .other .tag_wrap {
  position: relative;
  padding: 15px 30px;
  width: 750px;
  height: 100%;
  overflow: scroll;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .other .tag_wrap {
    position: absolute;
    padding: 0;
    top: 0;
    right: -100vw;
    width: 100%;
    background-color: #1c1c1e;
    -webkit-transition: right 0.2s;
    transition: right 0.2s;
  }
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .other .tag_wrap.sp_open {
    right: 0;
  }
}
main .modal_wrap .modal .modal_contents .other .tag_wrap .tag {
  display: none;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  top: 15px;
  left: 0;
  right: 0;
  width: 684px;
  height: calc(100% - 30px);
  visibility: hidden;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .other .tag_wrap .tag {
    top: 20px;
    width: 90%;
    height: calc(100% - 20px);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
main .modal_wrap .modal .modal_contents .other .tag_wrap .tag.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: visible;
}
main .modal_wrap .modal .modal_contents .other .tag_wrap .tag input {
  display: none;
}
main .modal_wrap .modal .modal_contents .other .tag_wrap .tag label {
  margin-top: 12px;
  margin-left: 12px;
  width: 162px;
  height: 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 48px;
  text-align: center;
  border-radius: 8px;
  border: solid 1px #ffffff;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .other .tag_wrap .tag label {
    margin-left: 0;
    width: calc((100% - 12px) / 2);
  }
}
main .modal_wrap .modal .modal_contents .other .tag_wrap .tag label:nth-of-type(-n + 4) {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .other .tag_wrap .tag label:nth-of-type(-n + 4) {
    margin-top: 12px;
  }
}
main .modal_wrap .modal .modal_contents .other .tag_wrap .tag label:nth-of-type(4n + 1) {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .other .tag_wrap .tag label:nth-of-type(-n + 2) {
    margin-top: 0;
  }
}
main .modal_wrap .modal .modal_contents .other .tag_wrap .tag label.open {
  color: #2f2f31;
  border: solid 1px #eb764d;
  background-color: #eb764d;
}
main .modal_wrap .modal .modal_contents .multi {
  position: absolute;
  right: 30px;
  bottom: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .modal_contents .multi {
    top: 5px;
    right: 20px;
    bottom: auto;
  }
}
main .modal_wrap .modal .button_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
  margin-left: auto;
  margin-right: 30px;
  width: 416px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .button_wrap {
    position: fixed;
    left: 0;
    bottom: 50px;
    width: 100%;
    height: 60px;
    background-color: #626367;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
main .modal_wrap .modal .button_wrap .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 16px;
  width: 200px;
  height: 46px;
  border-radius: 23px;
  background-color: #626367;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .button_wrap .btn {
    padding-left: 0;
    width: 80px;
    height: 100%;
    border-radius: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .button_wrap .btn:first-child {
    margin-right: 50px;
  }
}
main .modal_wrap .modal .button_wrap .btn:hover {
  background-color: #eb764d;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .button_wrap .btn:hover {
    background-color: #626367;
  }
}
main .modal_wrap .modal .button_wrap .btn:hover .img_wrap img:last-child {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .button_wrap .btn:hover .img_wrap img:last-child {
    opacity: 0;
  }
}
main .modal_wrap .modal .button_wrap .btn:hover p {
  color: #2f2f31;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .button_wrap .btn:hover p {
    color: #eb764d;
  }
}
main .modal_wrap .modal .button_wrap .btn:hover p span {
  color: #2f2f31;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .button_wrap .btn:hover p span {
    color: #eb764d;
  }
}
main .modal_wrap .modal .button_wrap .btn.submit {
  background-color: #eb764d;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .button_wrap .btn.submit {
    background-color: #626367;
  }
}
main .modal_wrap .modal .button_wrap .btn.submit .img_wrap img:last-child {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .button_wrap .btn.submit .img_wrap img:last-child {
    opacity: 0;
  }
}
main .modal_wrap .modal .button_wrap .btn.submit p {
  color: #2f2f31;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .button_wrap .btn.submit p {
    color: #8aea92;
  }
}
main .modal_wrap .modal .button_wrap .btn.submit p span {
  color: #2f2f31;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .button_wrap .btn.submit p span {
    color: #8aea92;
  }
}
main .modal_wrap .modal .button_wrap .btn .img_wrap {
  position: relative;
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .button_wrap .btn .img_wrap {
    margin-left: auto;
    margin-right: auto;
    width: 34px;
    height: 34px;
  }
}
main .modal_wrap .modal .button_wrap .btn .img_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
main .modal_wrap .modal .button_wrap .btn .img_wrap img:first-child {
  opacity: 1;
}
main .modal_wrap .modal .button_wrap .btn .img_wrap img:last-child {
  opacity: 0;
  z-index: 2;
}
main .modal_wrap .modal .button_wrap .btn .img_wrap img.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .button_wrap .btn .img_wrap img.sp {
    display: block;
    z-index: 1;
  }
}
main .modal_wrap .modal .button_wrap .btn p {
  width: 145px;
  font-size: 16px;
  font-weight: bold;
  color: #eb764d;
  letter-spacing: 0.05em;
  text-align: center;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .button_wrap .btn p {
    margin-top: 4px;
    width: auto;
    font-size: 10px;
    color: #8aea92;
  }
}
main .modal_wrap .modal .button_wrap .btn p span {
  font-size: 16px;
  font-weight: bold;
  color: #eb764d;
  letter-spacing: 0.05em;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .button_wrap .btn p span {
    font-size: 10px;
  }
}
main .modal_wrap .modal .button_wrap .btn p span.sp_on {
  display: none;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .button_wrap .btn p span.sp_on {
    display: inline;
  }
}
main .modal_wrap .modal .button_wrap .btn p span.sp_off {
  display: inline;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal .button_wrap .btn p span.sp_off {
    display: none;
  }
}
