@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: 105px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .guest_footer_wrap {
    padding-bottom: 75px;
  }
}
.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;
  }
}

@media screen and (max-width: 767px) {
  .guest_header_wrap .guest_header .left_wrap {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .guest_header_wrap .guest_header .back {
    display: block;
    width: 28px;
    height: 28px;
    background-image: url(../images/header/arrow_back_sp.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    cursor: pointer;
  }
}

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 .main_visual_wrap {
  margin-top: 40px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  main .main_visual_wrap {
    margin-top: 0;
  }
}
main .main_visual_wrap .main_visual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  padding-right: 128px;
  width: 1000px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  main .main_visual_wrap .main_visual {
    display: block;
    padding-right: 0;
    width: 100%;
  }
}
main .main_visual_wrap .main_visual .movie_wrap {
  position: relative;
  width: 360px;
  height: 640px;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  main .main_visual_wrap .main_visual .movie_wrap {
    width: 100vw;
    height: 177.7777777778vw;
    border-radius: 0;
  }
}
main .main_visual_wrap .main_visual .movie_wrap iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  main .main_visual_wrap .main_visual .movie_wrap .filter_top {
    position: absolute;
    top: 5%;
    left: 0;
    width: 100%;
    height: 40%;
    z-index: 3;
  }
}
@media screen and (max-width: 767px) {
  main .main_visual_wrap .main_visual .movie_wrap .filter_bottom {
    position: absolute;
    left: 0;
    bottom: 10%;
    width: 100%;
    height: 30%;
    z-index: 3;
  }
}
main .main_visual_wrap .main_visual .info_wrap {
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  main .main_visual_wrap .main_visual .info_wrap {
    margin-left: 0;
  }
}
main .main_visual_wrap .main_visual .info_wrap .button_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  margin-left: auto;
  margin-right: auto;
  left: 80px;
  right: 0;
  bottom: 20px;
  width: 1040px;
  -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: 999;
}
@media screen and (max-width: 767px) {
  main .main_visual_wrap .main_visual .info_wrap .button_wrap {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 62px;
    background-color: #8aea92;
  }
}
main .main_visual_wrap .main_visual .info_wrap .button_wrap form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 340px;
  height: 70px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  main .main_visual_wrap .main_visual .info_wrap .button_wrap form {
    width: 33%;
    height: 100%;
  }
}
main .main_visual_wrap .main_visual .info_wrap .button_wrap form .btn {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  main .main_visual_wrap .main_visual .info_wrap .button_wrap form .btn {
    width: 100%;
  }
}
main .main_visual_wrap .main_visual .info_wrap .button_wrap .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 16px;
  width: 340px;
  height: 70px;
  border-radius: 35px;
  background-color: #8aea92;
  -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 .main_visual_wrap .main_visual .info_wrap .button_wrap .btn {
    margin-top: 0;
    padding-top: 5px;
    padding-left: 0;
    width: 33%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
main .main_visual_wrap .main_visual .info_wrap .button_wrap .btn img {
  width: 48px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  main .main_visual_wrap .main_visual .info_wrap .button_wrap .btn img {
    width: 34px;
  }
}
main .main_visual_wrap .main_visual .info_wrap .button_wrap .btn p {
  margin-left: 18px;
  font-size: 20px;
  font-weight: 600;
  color: #2f2f31;
  letter-spacing: 0.1em;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  main .main_visual_wrap .main_visual .info_wrap .button_wrap .btn p {
    margin-top: 5px;
    margin-left: 0;
    font-size: 10px;
  }
}
main .main_visual_wrap .main_visual .info_wrap .button_wrap a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 340px;
  height: 70px;
  border-radius: 35px;
  background-color: #8aea92;
  -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 .main_visual_wrap .main_visual .info_wrap .button_wrap a {
    padding-top: 5px;
    padding-left: 0;
    width: 33%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
main .main_visual_wrap .main_visual .info_wrap .button_wrap a.open .keep img.keep_2 {
  opacity: 1;
}
main .main_visual_wrap .main_visual .info_wrap .button_wrap a.tel_link {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  main .main_visual_wrap .main_visual .info_wrap .button_wrap a.tel_link {
    pointer-events: auto;
  }
}
main .main_visual_wrap .main_visual .info_wrap .button_wrap a img {
  width: 48px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  main .main_visual_wrap .main_visual .info_wrap .button_wrap a img {
    width: 34px;
  }
}
main .main_visual_wrap .main_visual .info_wrap .button_wrap a .keep {
  position: relative;
  width: 48px;
  height: 48px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  main .main_visual_wrap .main_visual .info_wrap .button_wrap a .keep {
    width: 34px;
    height: 34px;
  }
}
main .main_visual_wrap .main_visual .info_wrap .button_wrap a .keep img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
main .main_visual_wrap .main_visual .info_wrap .button_wrap a .keep img.keep_1 {
  z-index: 1;
}
main .main_visual_wrap .main_visual .info_wrap .button_wrap a .keep img.keep_2 {
  opacity: 0;
  z-index: 2;
}
main .main_visual_wrap .main_visual .info_wrap .button_wrap p {
  margin-left: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #2f2f31;
  letter-spacing: 0.1em;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  main .main_visual_wrap .main_visual .info_wrap .button_wrap p {
    margin-top: 5px;
    margin-left: 0;
    font-size: 10px;
  }
}
main .main_visual_wrap .main_visual .info_wrap .button_wrap p.p_pc {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  main .main_visual_wrap .main_visual .info_wrap .button_wrap p.p_pc {
    display: none;
  }
}
main .main_visual_wrap .main_visual .info_wrap .button_wrap p.p_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  main .main_visual_wrap .main_visual .info_wrap .button_wrap p.p_sp {
    display: block;
  }
}
main .main_visual_wrap .main_visual .info_wrap h1 {
  display: none;
}
@media screen and (max-width: 767px) {
  main .main_visual_wrap .main_visual .info_wrap h1 {
    display: block;
    margin-top: 14px;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.5;
  }
}
main .main_visual_wrap .main_visual .info_wrap .review_wrap {
  margin-top: 20px;
  width: 173px;
}
@media screen and (max-width: 767px) {
  main .main_visual_wrap .main_visual .info_wrap .review_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    height: 68px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -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;
  }
}
main .main_visual_wrap .main_visual .info_wrap .review_wrap .review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 8px;
  -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 .main_visual_wrap .main_visual .info_wrap .review_wrap .review {
    margin-top: 0;
    width: 134px;
  }
}
main .main_visual_wrap .main_visual .info_wrap .review_wrap .review:first-child {
  margin-top: 0;
}
main .main_visual_wrap .main_visual .info_wrap .review_wrap .review p {
  font-size: 12px;
  font-weight: bold;
  color: #626367;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  main .main_visual_wrap .main_visual .info_wrap .review_wrap .review p {
    font-size: 10px;
  }
}
main .main_visual_wrap .main_visual .info_wrap .review_wrap .review .star_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100px;
  -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 .main_visual_wrap .main_visual .info_wrap .review_wrap .review .star_wrap {
    width: 78px;
  }
}
main .main_visual_wrap .main_visual .info_wrap .review_wrap .review .star_wrap .star {
  position: relative;
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 767px) {
  main .main_visual_wrap .main_visual .info_wrap .review_wrap .review .star_wrap .star {
    width: 14px;
    height: 14px;
  }
}
main .main_visual_wrap .main_visual .info_wrap .review_wrap .review .star_wrap .star.open img.star_2 {
  opacity: 1;
}
main .main_visual_wrap .main_visual .info_wrap .review_wrap .review .star_wrap .star img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
main .main_visual_wrap .main_visual .info_wrap .review_wrap .review .star_wrap .star img.star_1 {
  opacity: 1;
}
main .main_visual_wrap .main_visual .info_wrap .review_wrap .review .star_wrap .star img.star_2 {
  opacity: 0;
  z-index: 2;
}
main .detail_contents {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 1000px;
}
@media screen and (max-width: 767px) {
  main .detail_contents {
    width: 90%;
  }
}
main .detail_contents h1 {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  main .detail_contents h1 {
    display: none;
  }
}
main .detail_contents .comment {
  margin-top: 20px;
  padding: 20px 40px 15px 40px;
  border-radius: 8px;
  background-color: #35383c;
}
@media screen and (max-width: 767px) {
  main .detail_contents .comment {
    margin-top: 0;
    padding: 16px 15px;
  }
}
main .detail_contents .comment .p_1 {
  font-size: 14px;
  font-weight: bold;
  color: #898989;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  main .detail_contents .comment .p_1 {
    font-size: 12px;
  }
}
main .detail_contents .comment .p_2 {
  margin-top: 10px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.09em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  main .detail_contents .comment .p_2 {
    margin-top: 15px;
    font-size: 16px;
  }
}
main .detail_contents .job {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  width: 920px;
}
@media screen and (max-width: 767px) {
  main .detail_contents .job {
    margin-top: 20px;
    width: 100%;
  }
}
main .detail_contents .job .title {
  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) {
  main .detail_contents .job .title {
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: solid 1px #ffffff;
    border-bottom: solid 1px #ffffff;
  }
}
main .detail_contents .job .title img {
  width: 32px;
}
@media screen and (max-width: 767px) {
  main .detail_contents .job .title img {
    width: 24px;
  }
}
main .detail_contents .job .title h2 {
  margin-left: 10px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  main .detail_contents .job .title h2 {
    margin-left: 8px;
    font-size: 16px;
  }
}
main .detail_contents .job .job_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 918px;
  -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 .detail_contents .job .job_contents {
    display: block;
    width: 80vw;
  }
}
main .detail_contents .job .job_contents .jc {
  margin-top: 20px;
  margin-left: 21px;
  width: 292px;
}
@media screen and (max-width: 767px) {
  main .detail_contents .job .job_contents .jc {
    margin-left: 0;
    width: 100%;
  }
}
main .detail_contents .job .job_contents .jc:nth-child(-n+3) {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  main .detail_contents .job .job_contents .jc:nth-child(-n+3) {
    margin-top: 20px;
  }
}
main .detail_contents .job .job_contents .jc:nth-child(3n+1) {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  main .detail_contents .job .job_contents .jc:first-child {
    margin-top: 0;
  }
}
main .detail_contents .job .job_contents .jc .img_wrap {
  width: 100%;
  height: 219px;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  main .detail_contents .job .job_contents .jc .img_wrap {
    height: auto;
  }
}
main .detail_contents .job .job_contents .jc .img_wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .detail_contents .job .job_contents .jc .text {
  margin-top: 10px;
}
main .detail_contents .job .job_contents .jc .text .p_1 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 20px;
}
main .detail_contents .job .job_contents .jc .text .p_2 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 20px;
  white-space: pre-wrap;
}
main .detail_contents .overview_wrap {
  margin-top: 50px;
  padding-top: 30px;
  padding-bottom: 40px;
  width: 100%;
  border-radius: 6px;
  background-color: #2f2f31;
}
@media screen and (max-width: 767px) {
  main .detail_contents .overview_wrap {
    margin-top: 30px;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
  }
}
main .detail_contents .overview_wrap .overview {
  margin-left: auto;
  margin-right: auto;
  width: 920px;
}
@media screen and (max-width: 767px) {
  main .detail_contents .overview_wrap .overview {
    width: 100%;
  }
}
main .detail_contents .overview_wrap .overview .title {
  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) {
  main .detail_contents .overview_wrap .overview .title {
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: solid 1px #ffffff;
    border-bottom: solid 1px #ffffff;
  }
}
main .detail_contents .overview_wrap .overview .title img {
  width: 32px;
}
@media screen and (max-width: 767px) {
  main .detail_contents .overview_wrap .overview .title img {
    width: 24px;
  }
}
main .detail_contents .overview_wrap .overview .title h2 {
  margin-left: 10px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  main .detail_contents .overview_wrap .overview .title h2 {
    margin-left: 8px;
    font-size: 16px;
  }
}
main .detail_contents .overview_wrap .overview .info_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  -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 .detail_contents .overview_wrap .overview .info_wrap {
    display: block;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    width: 80vw;
  }
}
main .detail_contents .overview_wrap .overview .info_wrap .info_block {
  width: 440px;
}
@media screen and (max-width: 767px) {
  main .detail_contents .overview_wrap .overview .info_wrap .info_block {
    margin-top: 12px;
    width: 100%;
  }
}
main .detail_contents .overview_wrap .overview .info_wrap .info_block .info {
  margin-top: 12px;
  padding-bottom: 12px;
  width: 100%;
  border-bottom: solid 1px #555555;
}
main .detail_contents .overview_wrap .overview .info_wrap .info_block .info:first-child {
  margin-top: 0;
}
main .detail_contents .overview_wrap .overview .info_wrap .info_block .info .p_1 {
  font-size: 12px;
  font-weight: bold;
  color: #898989;
  letter-spacing: 0.05em;
}
main .detail_contents .overview_wrap .overview .info_wrap .info_block .info .p_2 {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 20px;
}
@media screen and (max-width: 767px) {
  main .detail_contents .overview_wrap .overview .info_wrap .info_block .info .p_2 {
    font-size: 14px;
  }
}
main .detail_contents .overview_wrap .overview .info_wrap .info_block .info .tag_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
main .detail_contents .overview_wrap .overview .info_wrap .info_block .info .tag_wrap .tag {
  margin-top: 6px;
  margin-right: 6px;
  padding: 4px 6px;
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0.05em;
  border-radius: 2px;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  main .detail_contents .overview_wrap .overview .info_wrap .info_block .info .tag_wrap .tag {
    font-size: 14px;
  }
}
main .detail_contents .company_wrap {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  main .detail_contents .company_wrap {
    margin-top: 50px;
  }
}
main .detail_contents .company_wrap .company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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 .detail_contents .company_wrap .company {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80vw;
  }
}
main .detail_contents .company_wrap .company .img_wrap {
  padding: 20px;
  width: 370px;
  height: 185px;
  border: solid 1px #707070;
}
@media screen and (max-width: 767px) {
  main .detail_contents .company_wrap .company .img_wrap {
    padding: 50px 30px;
    width: 100%;
    height: auto;
  }
}
main .detail_contents .company_wrap .company .img_wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
main .detail_contents .company_wrap .company .text {
  width: 605px;
}
.p_2, .p_2 div,
.p_2 p {
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  main .detail_contents .company_wrap .company .text {
    width: 100%;
  }
}
main .detail_contents .company_wrap .company .text .p_1 {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  main .detail_contents .company_wrap .company .text .p_1 {
    margin-top: 10px;
    font-size: 16px;
  }
}
main .detail_contents .company_wrap .company .text .more_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  main .detail_contents .company_wrap .company .text .more_sp {
    display: block;
    margin-top: 20px;
    width: 100%;
    height: 50px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.11em;
    line-height: 48px;
    text-align: center;
    border-radius: 8px;
    border: solid 1px #ffffff;
  }
}
main .detail_contents .company_wrap .company .text .p_2 {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 25px;
  white-space: pre-wrap;
}
@media screen and (max-width: 767px) {
  main .detail_contents .company_wrap .company .text .p_2 {
    margin-top: 25px;
    font-size: 14px;
    line-height: 20px;
  }
}
main .detail_contents .company_wrap .more {
  margin-top: 35px;
  margin-left: auto;
  margin-right: auto;
  width: 520px;
  height: 60px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.11em;
  line-height: 58px;
  text-align: center;
  border-radius: 8px;
  border: solid 1px #ffffff;
}
@media screen and (max-width: 767px) {
  main .detail_contents .company_wrap .more {
    display: none;
  }
}
main .detail_contents .company_wrap .gallery_wrap {
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  main .detail_contents .company_wrap .gallery_wrap {
    margin-top: 20px;
    padding-left: 5%;
    width: 100%;
  }
}
main .detail_contents .company_wrap .gallery_wrap .splide_gallery {
  width: 100%;
}
main .detail_contents .company_wrap .gallery_wrap .splide_gallery .splide__track {
  width: 100%;
}
main .detail_contents .company_wrap .gallery_wrap .splide_gallery .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 .detail_contents .company_wrap .gallery_wrap .splide_gallery .splide__track .splide__list .splide__slide {
  width: 300px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
main .detail_contents .company_wrap .gallery_wrap .splide_gallery .splide__track .splide__list .splide__slide .img_wrap {
  width: 300px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
}
main .detail_contents .company_wrap .gallery_wrap .splide_gallery .splide__track .splide__list .splide__slide .img_wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .detail_contents .company_wrap .gallery_wrap .splide_gallery .splide__track .splide__list .splide__slide p {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 20px;
}
@media screen and (max-width: 767px) {
  main .detail_contents .company_wrap .gallery_wrap .splide_gallery .splide__track .splide__list .splide__slide p {
    margin-top: 10px;
  }
}
main .detail_contents .other_wrap {
  margin-top: 65px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  main .detail_contents .other_wrap {
    margin-top: 30px;
  }
}
main .detail_contents .other_wrap .other {
  width: 100%;
}
main .detail_contents .other_wrap .other:first-child .title_wrap {
  border-top: solid 1px #ffffff;
}
main .detail_contents .other_wrap .other .title_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 9px 40px;
  -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;
}
@media screen and (max-width: 767px) {
  main .detail_contents .other_wrap .other .title_wrap {
    padding: 10px 10px 10px 0;
  }
}
main .detail_contents .other_wrap .other .title_wrap.open {
  border-bottom: solid 1px #ffffff;
}
main .detail_contents .other_wrap .other .title_wrap.open .plus div:first-child {
  opacity: 0;
}
main .detail_contents .other_wrap .other .title_wrap .title {
  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;
  pointer-events: none;
}
main .detail_contents .other_wrap .other .title_wrap .title img {
  width: 32px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  main .detail_contents .other_wrap .other .title_wrap .title img {
    width: 24px;
  }
}
main .detail_contents .other_wrap .other .title_wrap .title h2 {
  margin-left: 10px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  main .detail_contents .other_wrap .other .title_wrap .title h2 {
    margin-left: 8px;
    font-size: 16px;
  }
}
main .detail_contents .other_wrap .other .title_wrap .plus {
  position: relative;
  width: 20px;
  height: 20px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  main .detail_contents .other_wrap .other .title_wrap .plus {
    width: 16px;
    height: 16px;
  }
}
main .detail_contents .other_wrap .other .title_wrap .plus div {
  position: absolute;
  background-color: #ffffff;
  pointer-events: none;
}
main .detail_contents .other_wrap .other .title_wrap .plus div:first-child {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
main .detail_contents .other_wrap .other .title_wrap .plus div:last-child {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}
main .detail_contents .other_wrap .other .dormitory_wrap {
  width: 100%;
  height: 0;
  border-bottom: solid 1px #ffffff;
  overflow: hidden;
  -webkit-transition: height 0.2s;
  transition: height 0.2s;
}
main .detail_contents .other_wrap .other .dormitory_wrap .dormitory {
  margin-top: 20px;
  margin-bottom: 30px;
  padding: 20px 40px 30px 40px;
  background-color: #2f2f31;
  border-radius: 6px;
}
@media screen and (max-width: 767px) {
  main .detail_contents .other_wrap .other .dormitory_wrap .dormitory {
    margin-top: 0;
    margin-bottom: 0;
    padding: 20px 0;
    background-color: transparent;
  }
}
@media screen and (max-width: 767px) {
  main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .slider {
    padding-left: 5%;
  }
}
main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .slider .splide_dormitory {
  margin-left: auto;
  margin-right: auto;
  width: 520px;
}
@media screen and (max-width: 767px) {
  main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .slider .splide_dormitory {
    width: 100%;
  }
}
main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .slider .splide_dormitory .splide__track {
  width: 100%;
}
main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .slider .splide_dormitory .splide__track .splide__list {
  width: 100%;
}
main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .slider .splide_dormitory .splide__track .splide__list .splide__slide {
  width: 520px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .slider .splide_dormitory .splide__track .splide__list .splide__slide {
    width: 300px;
  }
}
main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .slider .splide_dormitory .splide__track .splide__list .splide__slide img {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .slider .splide_dormitory .splide__track .splide__list .splide__slide img {
    height: 200px;
  }
}
main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .slider .splide_dormitory_thumbnail {
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  width: 790px;
}
@media screen and (max-width: 767px) {
  main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .slider .splide_dormitory_thumbnail {
    display: none;
  }
}
main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .slider .splide_dormitory_thumbnail .splide__track {
  width: 100%;
}
main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .slider .splide_dormitory_thumbnail .splide__track .splide__list {
  width: 520px;
}
main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .slider .splide_dormitory_thumbnail .splide__track .splide__list .splide__slide {
  width: 150px;
  height: 100px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  border: none;
}
main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .slider .splide_dormitory_thumbnail .splide__track .splide__list .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .info_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  -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 .detail_contents .other_wrap .other .dormitory_wrap .dormitory .info_wrap {
    display: block;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 80vw;
  }
}
@media screen and (max-width: 767px) {
  main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .info_wrap.company_info {
    margin-top: 0;
  }
}
main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .info_wrap .info_block {
  width: 440px;
}
@media screen and (max-width: 767px) {
  main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .info_wrap .info_block {
    margin-top: 12px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .info_wrap .info_block:first-child {
    margin-top: 0;
  }
}
main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .info_wrap .info_block .info {
  margin-top: 12px;
  padding-bottom: 12px;
  width: 100%;
  border-bottom: solid 1px #555555;
}
main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .info_wrap .info_block .info:first-child {
  margin-top: 0;
}
main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .info_wrap .info_block .info .p_1 {
  font-size: 12px;
  font-weight: bold;
  color: #898989;
  letter-spacing: 0.05em;
}
main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .info_wrap .info_block .info .p_2 {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 20px;
}
main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .info_wrap .info_block .info .p_2.ws {
  white-space: pre-wrap;
}
main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .info_wrap .info_block .info .merit_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .info_wrap .info_block .info .merit_wrap .merit {
  margin-top: 5px;
  margin-left: 1px;
  width: 62px;
  height: 56px;
}
@media screen and (max-width: 767px) {
  main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .info_wrap .info_block .info .merit_wrap .merit {
    margin-top: 0;
    margin-left: 0;
    margin-bottom: 5px;
    width: 60px;
  }
}
main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .info_wrap .info_block .info .merit_wrap .merit:nth-child(-n+5) {
  margin-top: 0;
}
main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .info_wrap .info_block .info .merit_wrap .merit:nth-child(7n+1) {
  margin-left: 0;
}
main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .info_wrap .info_block .info .merit_wrap .merit.open .img_wrap img.img_2 {
  opacity: 1;
}
main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .info_wrap .info_block .info .merit_wrap .merit.open p {
  color: #ffffff;
}
main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .info_wrap .info_block .info .merit_wrap .merit .img_wrap {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 38px;
  height: 38px;
}
main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .info_wrap .info_block .info .merit_wrap .merit .img_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .info_wrap .info_block .info .merit_wrap .merit .img_wrap img.img_1 {
  opacity: 1;
}
main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .info_wrap .info_block .info .merit_wrap .merit .img_wrap img.img_2 {
  opacity: 0;
  z-index: 2;
}
main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .info_wrap .info_block .info .merit_wrap .merit p {
  margin-top: 3px;
  font-size: 10px;
  color: #626367;
  letter-spacing: 0;
  text-align: center;
  white-space: pre-wrap;
}
main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .info_wrap .info_block .info .merit_p {
  margin-top: 27px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 20px;
}
@media screen and (max-width: 767px) {
  main .detail_contents .other_wrap .other .dormitory_wrap .dormitory .info_wrap .info_block .info .merit_p {
    margin-top: 20px;
  }
}
main .detail_contents .other_wrap .other .flow_wrap {
  width: 100%;
  height: 0;
  border-bottom: solid 1px #ffffff;
  overflow: hidden;
  -webkit-transition: height 0.2s;
  transition: height 0.2s;
}
main .detail_contents .other_wrap .other .flow_wrap .flow {
  margin-top: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  main .detail_contents .other_wrap .other .flow_wrap .flow {
    margin-top: 0;
    margin-bottom: 0;
    padding: 20px 0;
  }
}
main .detail_contents .other_wrap .other .flow_wrap .flow .flow_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  padding: 20px 40px;
  background-color: #2f2f31;
  border-radius: 6px;
  -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 .detail_contents .other_wrap .other .flow_wrap .flow .flow_contents {
    display: block;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    padding: 15px;
    width: 80vw;
  }
}
main .detail_contents .other_wrap .other .flow_wrap .flow .flow_contents:first-child {
  margin-top: 0;
}
main .detail_contents .other_wrap .other .flow_wrap .flow .flow_contents .flow_header {
  width: 320px;
}
@media screen and (max-width: 767px) {
  main .detail_contents .other_wrap .other .flow_wrap .flow .flow_contents .flow_header {
    width: 100%;
  }
}
main .detail_contents .other_wrap .other .flow_wrap .flow .flow_contents .flow_header .p_1 {
  font-size: 12px;
  font-weight: bold;
  color: #eb764d;
  letter-spacing: 0.05em;
}
main .detail_contents .other_wrap .other .flow_wrap .flow .flow_contents .flow_header .p_2 {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 20px;
}
@media screen and (max-width: 767px) {
  main .detail_contents .other_wrap .other .flow_wrap .flow .flow_contents .flow_header .p_2 {
    font-size: 15px;
  }
}
main .detail_contents .other_wrap .other .flow_wrap .flow .flow_contents .p_3 {
  width: 600px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 20px;
}
@media screen and (max-width: 767px) {
  main .detail_contents .other_wrap .other .flow_wrap .flow .flow_contents .p_3 {
    margin-top: 5px;
    width: 100%;
    font-size: 14px;
  }
}
main .main_contents {
  margin-top: 80px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  main .main_contents {
    margin-top: 50px;
  }
}
main .main_contents .block {
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  width: 1000px;
}
@media screen and (max-width: 767px) {
  main .main_contents .block {
    margin-top: 50px;
    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 p {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.11em;
}
@media screen and (max-width: 767px) {
  main .main_contents .block .theme p {
    font-size: 18px;
  }
}
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 {
  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;
}
main .main_contents .block .splide_default .list_wrap .list .parts a .movie_wrap .player {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
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 .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;
  visibility: visible;
  opacity: 0;
  z-index: 999;
}
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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  main .modal_wrap.open.open_1 #modal_1 {
    display: block;
  }
}
main .modal_wrap .modal {
  display: none;
  width: 940px;
  height: 120px;
  opacity: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal {
    display: block;
    width: 300px;
    height: 400px;
  }
}
main .modal_wrap .modal a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-left: 20px;
  width: 300px;
  height: 120px;
  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;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal a {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}
main .modal_wrap .modal a:first-child {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  main .modal_wrap .modal a:first-child {
    margin-top: 0;
    margin-left: auto;
  }
}
main .modal_wrap .modal a:hover {
  background-color: #ffffff;
}
main .modal_wrap .modal a:hover .text .p_1 {
  color: #2f2f31;
}
main .modal_wrap .modal a:hover .text .p_2 {
  color: #2f2f31;
}
main .modal_wrap .modal a img {
  position: absolute;
  top: -11px;
  left: -11px;
  width: 94px;
  height: 94px;
}
main .modal_wrap .modal a .text .p_1 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
main .modal_wrap .modal a .text .p_2 {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-align: center;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
