@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a, a:visited, a:focus {
  color: #fff;
}

a:hover {
  opacity: 0.5;
  transition: 0.2s;
}
@media screen and (max-width: 700px) {
  a:hover {
    opacity: 1;
  }
}

*:focus {
  outline: none;
}

a, button {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

@-webkit-keyframes animate__fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 60px, 0);
    transform: translate3d(0, 60px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes animate__fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 60px, 0);
    transform: translate3d(0, 60px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpSmall {
  -webkit-animation-name: animate__fadeInUpSmall;
  animation-name: animate__fadeInUpSmall;
}

@media screen and (max-width: 700px) {
  .modaal-close {
    top: 5px;
    right: 5px;
  }
}
.modaal-close::before, .modaal-close::after {
  width: 2px;
  height: 30px;
  background: #fff;
  transition: 0.2s;
}
.modaal-close:focus, .modaal-close:hover {
  background: none;
}
.modaal-close:focus::before, .modaal-close:focus::after, .modaal-close:hover::before, .modaal-close:hover::after {
  opacity: 0.3;
  background: #fff;
}

@media screen and (max-width: 700px) {
  .modaal-video-wrap {
    margin: 0;
  }
}

@media screen and (max-width: 700px) {
  .modaal-inner-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}

.loading {
  width: 100vw;
  height: 100%;
  min-height: -webkit-fill-available;
  transition: all 1s;
  background-color: #1B1B1B;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.loading-animation {
  width: 50%;
  max-width: 400px;
  height: auto;
  transition: all 1s;
  background-color: #1B1B1B;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}
.loading-animation img {
  width: 100%;
}

.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}

i.icon_youtube {
  background-image: url(../images/icon_youtube.svg);
  width: 34px;
  height: 25px;
  display: block;
  background-repeat: no-repeat;
}

i.icon_twitter {
  background-image: url(../images/icon_twitter.svg);
  width: 34px;
  height: 27px;
  display: block;
  background-repeat: no-repeat;
}

i.icon_instagram {
  background-image: url(../images/icon_instagram.svg);
  width: 30px;
  height: 30px;
  display: block;
  background-repeat: no-repeat;
}

i.icon_external {
  background-image: url(../images/icon_external_white.png);
  width: 18px;
  height: 18px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 2px;
}
@media screen and (max-width: 900px) {
  i.icon_external {
    width: 12px;
    height: 12px;
  }
}

input.arrow_input {
  display: none;
}

label.arrow {
  position: relative;
  cursor: pointer;
  display: block;
}
label.arrow::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 32px;
  width: 12px; /* くの字を山なりに見た時、左側の長さ */
  height: 12px; /* くの字を山なりに見た時、右側の長さ */
  border-top: 1px solid #626262; /* くの字を山なりに見た時、左側の太さと色 */
  border-right: 1px solid #626262; /* くの字を山なりに見た時、右側の太さと色 */
  transform: rotate(45deg); /* くの字の向き */
  transition: 0.2s;
  transform-origin: 60% 40% 0;
}
@media screen and (max-width: 700px) {
  label.arrow::before {
    right: 24px;
    width: 7px; /* くの字を山なりに見た時、左側の長さ */
    height: 7px; /* くの字を山なりに見た時、右側の長さ */
  }
}

input.arrow_input:checked ~ label.arrow::before {
  transform: rotate(135deg); /* くの字の向き */
}

.btn_square {
  padding: 24px 0;
  width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  text-align: center;
  border: 1px solid #fff;
  position: relative;
}
@media screen and (max-width: 700px) {
  .btn_square {
    width: 200px;
    padding: 20px 0;
  }
}
.btn_square.long {
  width: 390px;
}
@media screen and (max-width: 700px) {
  .btn_square.long {
    width: 275px;
    max-width: 100%;
  }
}
.btn_square::after {
  position: absolute;
  content: "";
  display: block;
  z-index: 0;
  background: #fff;
  top: 0;
  bottom: 0;
  left: 0;
  transition: 0.2s ease-out;
  width: 0;
}
@media screen and (max-width: 900px) {
  .btn_square::after {
    content: none;
  }
}
.btn_square span {
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.3em;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 700px) {
  .btn_square span {
    font-size: 12px;
    line-height: 17px;
    letter-spacing: 0.3em;
  }
}
.btn_square:hover {
  opacity: 1;
}
.btn_square:hover::after {
  width: 100%;
}
.btn_square:hover span {
  color: #1B1B1B;
  transition-delay: 0.3s;
  transition: 0.2s;
}
@media screen and (max-width: 900px) {
  .btn_square:hover span {
    color: #fff;
  }
}
.btn_square:hover i.icon_external {
  background-image: url(../images/icon_external_black.png);
  transition: 0.2s;
  position: relative;
  z-index: 2;
}

.double_line {
  position: relative;
  border: solid 1px #4A4A4A;
}
.double_line::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 8px;
  right: 8px;
  border: solid 1px #4A4A4A;
  pointer-events: none;
}
@media screen and (max-width: 700px) {
  .double_line::before {
    top: 4px;
    bottom: 4px;
    left: 4px;
    right: 4px;
  }
}

.line_list li {
  line-height: 24px;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 700px) {
  .line_list li {
    line-height: 18px;
  }
}
.line_list li .title {
  width: 100%;
  display: flex;
}
.line_list li .title::after {
  content: "";
  display: block;
  width: 100%;
  border-top: 1px dotted #333333;
  flex-shrink: 9999;
  margin: 12px 12px 0;
}
.line_list li .description {
  width: 192px;
  flex-shrink: 0;
}

html,
body {
  width: 100%;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #fff;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}
@media screen and (max-width: 900px) {
  html,
body {
    font-size: 12px;
  }
}
@media screen and (max-width: 700px) {
  html,
body {
    font-size: 11px;
  }
}

body {
  background-color: #1B1B1B;
  height: 100%;
}

.wrapper {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

header {
  position: absolute;
  width: 100%;
  z-index: 100;
}
@media screen and (max-width: 700px) {
  header {
    padding: 16px 16px;
  }
}
header .header_pc_inner {
  padding: 22px 32px;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 900px) {
  header .header_pc_inner {
    display: none;
  }
}
header .header_pc_inner .header_logo {
  width: 130px;
  height: auto;
  display: block;
}
header .header_pc_inner .header_logo a {
  padding: 8px;
}
header .header_pc_inner .header_logo img {
  width: 100%;
  image-rendering: -webkit-optimize-contrast;
}
header .header_pc_inner .header_list {
  display: flex;
  align-items: center;
}
header .header_pc_inner .header_list .header_listitem {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.2em;
  color: #FFFFFF;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}
header .header_pc_inner .header_list .header_listitem a {
  padding: 8px;
  display: block;
}
header .header_pc_inner .header_list .header_listitem:not(:last-child) {
  margin-right: 20px;
}
header .header_pc_inner .header_list .header_listitem.sns:not(:last-child) {
  margin-right: 14px;
}
header .header_pc_inner.fixed {
  position: fixed;
  top: 0;
  left: 0;
  padding: 16px 40px;
}
header .header_pc_inner.fixed .header_logo a {
  display: block !important;
}
header .header_sp_inner {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: auto;
}
@media screen and (max-width: 900px) {
  header .header_sp_inner {
    display: block;
  }
}
header .header_sp_inner .header_logo {
  width: 130px;
  height: auto;
  display: block;
  position: absolute;
  left: 24px;
  top: 16px;
}
@media screen and (max-width: 700px) {
  header .header_sp_inner .header_logo {
    width: 110px;
    left: 10px;
    top: 10px;
  }
}
header .header_sp_inner .header_logo img {
  width: 100%;
  image-rendering: -webkit-optimize-contrast;
  display: block;
}

.drawer--right .drawer-hamburger {
  position: absolute;
  width: 30px;
  padding: 20px 24px 30px;
  top: 8px;
  right: 0;
}
@media screen and (max-width: 700px) {
  .drawer--right .drawer-hamburger {
    padding: 24px 16px 30px;
    top: 0;
  }
}
.drawer--right .drawer-hamburger .drawer-hamburger-icon,
.drawer--right .drawer-hamburger .drawer-hamburger-icon:after,
.drawer--right .drawer-hamburger .drawer-hamburger-icon:before {
  background: #fff;
  height: 1.5px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 700px) {
  .drawer--right .drawer-hamburger .drawer-hamburger-icon,
.drawer--right .drawer-hamburger .drawer-hamburger-icon:after,
.drawer--right .drawer-hamburger .drawer-hamburger-icon:before {
    height: 1px;
  }
}
.drawer--right .drawer-nav {
  right: 0;
  height: 0;
  background-color: #90042B;
  width: 100%;
  transition: 0.4s;
  animation-timing-function: ease-out;
}
.drawer--right .drawer-nav .drawer_inner {
  height: calc(100% - 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.drawer--right .drawer-nav .drawer_inner .animate__animated {
  opacity: 0;
  animation-duration: 0.4s;
}
.drawer--right .drawer-nav .drawer_inner .animate__animated.appear {
  opacity: 1;
}
.drawer--right .drawer-nav .drawer_inner .drawer_logo {
  width: 230px;
  height: auto;
  margin-bottom: 40px;
}
.drawer--right .drawer-nav .drawer_inner .drawer_logo img {
  width: 100%;
}
.drawer--right .drawer-nav .drawer_inner .drawer_list {
  text-align: center;
  margin-bottom: 58px;
}
.drawer--right .drawer-nav .drawer_inner .drawer_list .drawer_listitem {
  padding: 8px;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.2em;
  font-family: "Montserrat", sans-serif;
}
.drawer--right .drawer-nav .drawer_inner .drawer_list .drawer_listitem:not(:last-child) {
  margin-bottom: 20px;
}
.drawer--right .drawer-nav .drawer_inner .drawer_list .drawer_listitem:nth-child(1) {
  animation-delay: 0.1s;
}
.drawer--right .drawer-nav .drawer_inner .drawer_list .drawer_listitem:nth-child(2) {
  animation-delay: 0.2s;
}
.drawer--right .drawer-nav .drawer_inner .drawer_list .drawer_listitem:nth-child(3) {
  animation-delay: 0.3s;
}
.drawer--right .drawer-nav .drawer_inner .drawer_sns_list {
  display: flex;
  align-items: center;
  animation-delay: 0.5s;
}
.drawer--right .drawer-nav .drawer_inner .drawer_sns_list .drawer_sns_listitem:not(:last-child) {
  margin-right: 45px;
}
.drawer--right.drawer-open .drawer-hamburger {
  right: 0px;
}
.drawer--right.drawer-open .drawer-hamburger .drawer-hamburger-icon {
  background-color: transparent;
}
.drawer--right.drawer-open .drawer-hamburger .drawer-hamburger-icon,
.drawer--right.drawer-open .drawer-hamburger .drawer-hamburger-icon:after,
.drawer--right.drawer-open .drawer-hamburger .drawer-hamburger-icon:before {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0);
}
.drawer--right.drawer-open .drawer-nav {
  height: 100%;
}

.drawer-overlay {
  background-color: rgba(0, 0, 0, 0.6);
}

footer {
  background-color: #1B1B1B;
}
footer .footer_inner {
  padding: 0 40px;
}
@media screen and (max-width: 700px) {
  footer .footer_inner {
    padding: 0 16px;
  }
}
footer .footer_link {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 0 56px;
}
@media screen and (max-width: 700px) {
  footer .footer_link {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 0 36px;
  }
}
@media screen and (max-width: 700px) {
  footer .footer_link .footer_link_unit:not(:last-child) {
    margin-bottom: 44px;
  }
}
footer .footer_link .footer_link_unit .footer_link_unit_title {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.2em;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 900px) {
  footer .footer_link .footer_link_unit .footer_link_unit_title {
    font-size: 14px;
    line-height: 17px;
  }
}
footer .footer_link .footer_link_unit .footer_link_unit_title i {
  width: 14px;
  height: 12px;
  background-size: contain;
  display: inline-block;
}
footer .footer_link .footer_link_unit .footer_link_unit_title::after {
  content: "";
  width: 22px;
  height: 1px;
  background-color: #fff;
  display: block;
  margin: 24px 0;
}
@media screen and (max-width: 900px) {
  footer .footer_link .footer_link_unit .footer_link_unit_title::after {
    margin: 10px 0 20px;
  }
}
@media screen and (max-width: 700px) {
  footer .footer_link .footer_link_unit .footer_link_unit_title::after {
    margin: 10px auto 20px;
  }
}
footer .footer_link .footer_link_unit .footer_link_list .footer_link_listitem {
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 900px) {
  footer .footer_link .footer_link_unit .footer_link_list .footer_link_listitem {
    font-size: 11px;
  }
}
footer .footer_link .footer_link_unit .footer_link_list .footer_link_listitem:not(:last-child) {
  margin-bottom: 16px;
}
@media screen and (max-width: 900px) {
  footer .footer_link .footer_link_unit .footer_link_list .footer_link_listitem:not(:last-child) {
    margin-bottom: 12px;
  }
}
footer .footer_copyright {
  padding: 24px 40px;
  text-align: center;
  font-size: 9px;
  line-height: 14px;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 700px) {
  footer .footer_copyright {
    padding: 24px 16px;
  }
}

footer.notfound_footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
}

section .section_inner {
  padding: 120px 40px 140px;
}
@media screen and (max-width: 900px) {
  section .section_inner {
    padding: 120px 40px 100px;
  }
}
@media screen and (max-width: 700px) {
  section .section_inner {
    padding: 90px 16px 80px;
  }
}
section .section_inner .section_title {
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 700px) {
  section .section_inner .section_title {
    margin-bottom: 40px;
  }
}
section .section_inner .section_title .section_title_main {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 25px;
  line-height: 30px;
  letter-spacing: 0.2em;
  position: relative;
}
@media screen and (max-width: 700px) {
  section .section_inner .section_title .section_title_main {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.2em;
  }
}
section .section_inner .section_title .section_title_sub {
  position: absolute;
  font-family: "Mrs Saint Delafield", cursive;
  font-weight: 100;
  font-size: 64px;
  line-height: 98px;
  bottom: -20px;
  left: -70px;
  transform: rotate(-10.81deg);
  opacity: 0.07;
  letter-spacing: -1px;
}
@media screen and (max-width: 700px) {
  section .section_inner .section_title .section_title_sub {
    font-size: 42px;
    line-height: 64px;
    bottom: -10px;
    left: -60px;
  }
}
section .section_inner .section_title::after {
  content: "";
  display: block;
  width: 50px;
  margin: 22px auto 0;
  border-top: 1px solid #fff;
}
@media screen and (max-width: 700px) {
  section .section_inner .section_title::after {
    width: 25px;
    margin: 12px auto 0;
  }
}
section .section_inner .section_subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
@media screen and (max-width: 700px) {
  section .section_inner .section_subtitle {
    font-size: 16px;
    line-height: 22px;
  }
}
section .section_inner .section_content {
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 700px) {
  section .section_inner .section_content {
    max-width: 450px;
    margin: 0 auto;
  }
}

.qa_list .qa_listitem:not(:last-child) {
  margin-bottom: 16px;
}
@media screen and (max-width: 700px) {
  .qa_list .qa_listitem:not(:last-child) {
    margin-bottom: 12px;
  }
}
.qa_list .qa_listitem .qa_q .qa_description, .qa_list .qa_listitem .qa_a .qa_description {
  display: flex;
}
.qa_list .qa_listitem .qa_q .qa_description::before, .qa_list .qa_listitem .qa_a .qa_description::before {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 1px solid #1B1B1B;
  text-align: center;
  line-height: 30px;
  margin-right: 16px;
  flex-shrink: 0;
}
@media screen and (max-width: 700px) {
  .qa_list .qa_listitem .qa_q .qa_description::before, .qa_list .qa_listitem .qa_a .qa_description::before {
    margin-right: 12px;
    width: 24px;
    height: 24px;
    line-height: 24px;
  }
}
.qa_list .qa_listitem .qa_q {
  padding: 24px;
  background: #fff;
  color: #1B1B1B;
  font-weight: 700;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 900px) {
  .qa_list .qa_listitem .qa_q {
    font-size: 14px;
  }
}
@media screen and (max-width: 700px) {
  .qa_list .qa_listitem .qa_q {
    font-size: 13px;
    padding: 12px 16px;
    line-height: 26px;
  }
}
.qa_list .qa_listitem .qa_q .qa_description::before {
  content: "Q";
}
.qa_list .qa_listitem .qa_a {
  padding: 21px 24px 24px;
  background: #fff;
  color: #1B1B1B;
  line-height: 28px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 700px) {
  .qa_list .qa_listitem .qa_a {
    line-height: 22px;
    padding: 0px 16px;
  }
}
.qa_list .qa_listitem .qa_a .qa_description::before {
  content: "A";
  background: #1B1B1B;
  color: #fff;
}

#page_top.main::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(../images/hero_bg_01.png);
  background-size: cover;
  background-position: center center;
}
#page_top #top_hero {
  max-height: 650px;
  height: 80vh;
  position: relative;
  display: flex;
}
@media screen and (max-width: 700px) {
  #page_top #top_hero {
    max-height: 600px;
  }
}
#page_top #top_hero .hero_bg {
  width: 100%;
  height: 100%;
}
#page_top #top_hero .hero_logo {
  width: 590px;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: -50px;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  #page_top #top_hero .hero_logo {
    bottom: -20px;
  }
}
@media screen and (max-width: 700px) {
  #page_top #top_hero .hero_logo {
    bottom: 20px;
  }
}
#page_top #top_hero .hero_logo img {
  width: 100%;
}
@media screen and (max-width: 900px) {
  #page_top #top_hero .hero_logo {
    width: 500px;
  }
}
@media screen and (max-width: 700px) {
  #page_top #top_hero .hero_logo {
    min-width: 280px;
    width: 60%;
  }
}
#page_top #top_hero::after {
  content: "";
  position: absolute;
  background: #1B1B1B;
  transform: skewY(-5deg);
  right: 0;
  left: 0;
  bottom: -70px;
  height: 140px;
}
@media screen and (min-width: 1600px) {
  #page_top #top_hero::after {
    bottom: -140px;
    height: 250px;
  }
}
@media screen and (max-width: 700px) {
  #page_top #top_hero::after {
    bottom: -70px;
    height: 150px;
    transform: skewY(-10deg);
  }
}
#page_top #top_profile {
  background-color: #1B1B1B;
  position: relative;
}
#page_top #top_profile::after {
  bottom: -50px;
  height: 120px;
  content: "";
  position: absolute;
  background: #1B1B1B;
  transform: skewY(-5deg);
  right: 0;
  left: 0;
}
@media screen and (min-width: 1600px) {
  #page_top #top_profile::after {
    bottom: -140px;
    height: 250px;
  }
}
@media screen and (max-width: 700px) {
  #page_top #top_profile::after {
    transform: skewY(-10deg);
  }
}
#page_top #top_profile .section_inner {
  position: relative;
  z-index: 2;
  padding-top: 180px;
  padding-bottom: 100px;
  background-image: url(../images/bg_splash.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 66% center;
}
@media screen and (max-width: 900px) {
  #page_top #top_profile .section_inner {
    padding-top: 130px;
  }
}
@media screen and (max-width: 700px) {
  #page_top #top_profile .section_inner {
    padding-top: 70px;
    padding-bottom: 24px;
    background-size: 220%;
    background-position: 49% 390px;
  }
}
@media screen and (max-width: 700px) {
  #page_top #top_profile .section_inner .section_title {
    margin-bottom: 80px;
  }
}
#page_top #top_profile .profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 48px 20px 48px 44px;
}
@media screen and (max-width: 900px) {
  #page_top #top_profile .profile {
    padding: 36px 36px;
  }
}
@media screen and (max-width: 900px) {
  #page_top #top_profile .profile {
    flex-direction: column-reverse;
    padding: 36px 24px;
    margin-bottom: 16px;
  }
}
#page_top #top_profile .profile .profile_info {
  max-width: 400px;
}
@media screen and (max-width: 900px) {
  #page_top #top_profile .profile .profile_info {
    max-width: 100%;
  }
}
@media screen and (max-width: 700px) {
  #page_top #top_profile .profile .profile_info {
    max-width: 100%;
    margin-right: 0;
  }
}
#page_top #top_profile .profile .profile_info > *:not(:last-child) {
  border-bottom: 1px dotted #4A4A4A;
}
#page_top #top_profile .profile .profile_info .profile_name {
  display: flex;
  align-items: flex-end;
  padding-bottom: 24px;
}
@media screen and (max-width: 900px) {
  #page_top #top_profile .profile .profile_info .profile_name {
    font-size: 40px;
    padding-bottom: 20px;
  }
}
#page_top #top_profile .profile .profile_info .profile_name .profile_name_main {
  font-weight: 700;
  font-size: 57px;
  line-height: 57px;
  letter-spacing: 0.13em;
  margin-right: 18px;
}
@media screen and (max-width: 900px) {
  #page_top #top_profile .profile .profile_info .profile_name .profile_name_main {
    font-size: 40px;
    margin-right: 10px;
    line-height: 40px;
    letter-spacing: 0.08em;
  }
}
#page_top #top_profile .profile .profile_info .profile_name .profile_name_sub {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.3em;
  margin-bottom: -3px;
}
@media screen and (max-width: 900px) {
  #page_top #top_profile .profile .profile_info .profile_name .profile_name_sub {
    font-size: 12px;
    line-height: 12px;
  }
}
#page_top #top_profile .profile .profile_info .profile_description {
  line-height: 24px;
  letter-spacing: 0.03em;
  padding: 20px 0;
  font-size: 12px;
}
@media screen and (max-width: 900px) {
  #page_top #top_profile .profile .profile_info .profile_description {
    line-height: 24px;
    padding: 12px 0;
  }
}
@media screen and (max-width: 700px) {
  #page_top #top_profile .profile .profile_info .profile_description {
    font-size: 11px;
  }
}
#page_top #top_profile .profile .profile_info .profile_detail_list {
  padding: 20px 0;
  font-size: 12px;
}
@media screen and (max-width: 900px) {
  #page_top #top_profile .profile .profile_info .profile_detail_list {
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 169px;
    align-content: space-between;
  }
}
@media screen and (max-width: 700px) {
  #page_top #top_profile .profile .profile_info .profile_detail_list {
    height: auto;
  }
}
@media screen and (max-width: 900px) {
  #page_top #top_profile .profile .profile_info .profile_detail_list .profile_detail_listitem {
    width: calc((100% - 24px) / 2);
  }
}
@media screen and (max-width: 700px) {
  #page_top #top_profile .profile .profile_info .profile_detail_list .profile_detail_listitem {
    width: 100%;
  }
}
#page_top #top_profile .profile .profile_info .profile_detail_list .profile_detail_listitem:not(:last-child) {
  margin-bottom: 6px;
}
@media screen and (max-width: 900px) {
  #page_top #top_profile .profile .profile_info .profile_detail_list .profile_detail_listitem .title {
    min-width: 110px;
  }
}
@media screen and (max-width: 700px) {
  #page_top #top_profile .profile .profile_info .profile_detail_list .profile_detail_listitem .title {
    min-width: 100px;
  }
}
#page_top #top_profile .profile .profile_info .profile_detail_list .profile_detail_listitem .description {
  width: 215px;
  line-height: 20px;
}
#page_top #top_profile .profile .profile_info .profile_detail_list .profile_detail_listitem .description br.sp {
  display: none;
}
@media screen and (max-width: 900px) {
  #page_top #top_profile .profile .profile_info .profile_detail_list .profile_detail_listitem .description {
    max-width: 55%;
  }
}
@media screen and (max-width: 700px) {
  #page_top #top_profile .profile .profile_info .profile_detail_list .profile_detail_listitem .description {
    width: 165px;
    min-width: 145px;
  }
  #page_top #top_profile .profile .profile_info .profile_detail_list .profile_detail_listitem .description br.sp {
    display: block;
  }
}
#page_top #top_profile .profile .profile_info .profile_sns_list {
  padding-top: 20px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 900px) {
  #page_top #top_profile .profile .profile_info .profile_sns_list {
    padding-top: 26px;
  }
}
@media screen and (max-width: 700px) {
  #page_top #top_profile .profile .profile_info .profile_sns_list {
    justify-content: center;
  }
}
#page_top #top_profile .profile .profile_info .profile_sns_list .profile_sns_listitem:not(:last-child) {
  margin-right: 36px;
}
#page_top #top_profile .profile .profile_image {
  z-index: 2;
}
@media screen and (max-width: 900px) {
  #page_top #top_profile .profile .profile_image {
    max-width: 50%;
  }
}
@media screen and (max-width: 700px) {
  #page_top #top_profile .profile .profile_image {
    margin-bottom: 32px;
    max-width: 100%;
  }
}
#page_top #top_profile .profile .profile_image .costume_list {
  width: 400px;
  margin-top: -130px;
}
@media screen and (max-width: 900px) {
  #page_top #top_profile .profile .profile_image .costume_list {
    max-width: 100%;
    margin-top: 0;
  }
}
@media screen and (max-width: 700px) {
  #page_top #top_profile .profile .profile_image .costume_list {
    width: 100% px;
    margin-top: -110px;
  }
}
#page_top #top_profile .profile .profile_image .costume_list .costume_listitem {
  height: 850px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 900px) {
  #page_top #top_profile .profile .profile_image .costume_list .costume_listitem {
    height: 600px;
  }
}
#page_top #top_profile .profile .profile_image .costume_list .costume_listitem img {
  height: 100%;
}
#page_top #top_profile .profile .profile_image .slick-next, #page_top #top_profile .profile .profile_image .slick-prev {
  display: block;
  width: 30px;
  height: 30px;
  z-index: 2;
}
#page_top #top_profile .profile .profile_image .slick-next::before, #page_top #top_profile .profile .profile_image .slick-prev::before {
  content: "";
  right: 0;
  position: absolute;
  width: 14px; /* くの字を山なりに見た時、左側の長さ */
  height: 14px; /* くの字を山なりに見た時、右側の長さ */
  border-top: 1px solid #626262; /* くの字を山なりに見た時、左側の太さと色 */
  border-right: 1px solid #626262; /* くの字を山なりに見た時、右側の太さと色 */
  transform: translate(-80%, -50%) rotate(45deg); /* くの字の向き */
}
#page_top #top_profile .profile .profile_image .slick-next {
  right: 16px;
}
@media screen and (max-width: 700px) {
  #page_top #top_profile .profile .profile_image .slick-next {
    right: 0px;
  }
}
#page_top #top_profile .profile .profile_image .slick-prev {
  left: 16px;
}
@media screen and (max-width: 700px) {
  #page_top #top_profile .profile .profile_image .slick-prev {
    left: 0px;
  }
}
#page_top #top_profile .profile .profile_image .slick-prev::before {
  transform: translate(-20%, -50%) rotate(-135deg);
}
#page_top #top_profile .profile .profile_image .slick-dots {
  bottom: -15px;
}
#page_top #top_profile .profile .profile_image .slick-dots li {
  width: 4px;
  height: 4px;
  margin: 0 4px;
}
#page_top #top_profile .profile .profile_image .slick-dots li button {
  width: 4px;
  height: 4px;
}
#page_top #top_profile .profile .profile_image .slick-dots li button::before {
  opacity: 1;
  content: "";
  display: block;
  border: 1px solid #303030;
  padding: 0;
  border-radius: 50%;
  width: 4px;
  height: 4px;
}
#page_top #top_profile .profile .profile_image .slick-dots li.slick-active button::before {
  border: 1px solid #4A4A4A;
  background: #4A4A4A;
}
#page_top #top_profile .hashtag {
  width: 100%;
  padding: 34px 44px;
}
@media screen and (max-width: 900px) {
  #page_top #top_profile .hashtag {
    padding: 36px 36px;
  }
}
@media screen and (max-width: 700px) {
  #page_top #top_profile .hashtag {
    padding: 0;
  }
}
#page_top #top_profile .hashtag label {
  cursor: default;
}
@media screen and (max-width: 700px) {
  #page_top #top_profile .hashtag label {
    display: block;
    padding: 24px 24px 0;
  }
}
#page_top #top_profile .hashtag label::before {
  display: none;
}
@media screen and (max-width: 700px) {
  #page_top #top_profile .hashtag label::before {
    display: block;
    top: 25px;
  }
}
@media screen and (max-width: 700px) {
  #page_top #top_profile .hashtag label .section_subtitle {
    margin-bottom: 0;
  }
}
#page_top #top_profile .hashtag .hashtag_list_wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 700px) {
  #page_top #top_profile .hashtag .hashtag_list_wrap {
    flex-direction: column;
    margin-top: 20px;
    padding: 0 24px 0;
    height: 0;
    overflow: hidden;
    transition: 0.2s;
    opacity: 0;
  }
}
@media screen and (max-width: 700px) {
  #page_top #top_profile .hashtag input.arrow_input:checked ~ .hashtag_list_wrap {
    flex-direction: column;
    margin-top: 20px;
    padding: 0 24px 24px;
    height: auto;
    opacity: 1;
  }
}
#page_top #top_profile .hashtag .hashtag_list {
  width: 100%;
  flex-shrink: 2;
}
@media screen and (max-width: 900px) {
  #page_top #top_profile .hashtag .hashtag_list {
    flex-shrink: 1;
  }
}
#page_top #top_profile .hashtag .hashtag_list .hashtag_listitem:not(:last-child) {
  margin-bottom: 10px;
}
#page_top #top_profile .hashtag .hashtag_list .hashtag_listitem .description {
  width: 94px;
  display: flex;
}
@media screen and (max-width: 900px) {
  #page_top #top_profile .hashtag .hashtag_list .hashtag_listitem .description {
    flex-direction: column;
    width: 100px;
  }
}
@media screen and (max-width: 700px) {
  #page_top #top_profile .hashtag .hashtag_list .hashtag_listitem .description {
    width: 93px;
  }
}
#page_top #top_profile .hashtag .hashtag_list .hashtag_listitem .description a {
  background: #303030;
  padding: 4px;
  width: fit-content;
}
@media screen and (max-width: 900px) {
  #page_top #top_profile .hashtag .hashtag_list .hashtag_listitem .description a {
    padding: 0px 4px;
  }
}
@media screen and (max-width: 700px) {
  #page_top #top_profile .hashtag .hashtag_list .hashtag_listitem .description a {
    padding: 2px;
  }
}
#page_top #top_profile .hashtag .hashtag_list .hashtag_listitem .description a:not(:last-child) {
  margin-right: 8px;
}
@media screen and (max-width: 900px) {
  #page_top #top_profile .hashtag .hashtag_list .hashtag_listitem .description a:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
#page_top #top_profile .hashtag .hashtag_list .hashtag_listitem .description a:hover {
  background: #fff;
  color: #1B1B1B;
  opacity: 1;
}
#page_top #top_profile .hashtag .hashtag_list:first-child {
  margin-right: 36px;
}
@media screen and (max-width: 900px) {
  #page_top #top_profile .hashtag .hashtag_list:first-child {
    flex-shrink: 1;
  }
}
@media screen and (max-width: 700px) {
  #page_top #top_profile .hashtag .hashtag_list:first-child {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
#page_top #top_profile .hashtag .hashtag_list:first-child .description {
  width: 122px;
}
@media screen and (max-width: 700px) {
  #page_top #top_profile .hashtag .hashtag_list:first-child .description {
    width: 93px;
  }
}
#page_top #top_music {
  background-color: rgba(23, 23, 23, 0.8);
  background-image: url(../images/bg_dot.png);
  background-repeat: repeat;
}
#page_top #top_music .section_inner {
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 170px;
}
@media screen and (min-width: 1600px) {
  #page_top #top_music .section_inner {
    padding-top: 340px;
  }
}
#page_top #top_music .section_inner .section_content {
  max-width: none;
  width: 100%;
}
#page_top #top_music .music_slide_list {
  margin-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 700px) {
  #page_top #top_music .music_slide_list {
    margin-bottom: 50px;
  }
}
#page_top #top_music .music_slide_list .music_listitem {
  margin-right: 24px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 700px) {
  #page_top #top_music .music_slide_list .music_listitem {
    margin-right: 16px;
  }
}
#page_top #top_music .music_slide_list .music_listitem a {
  width: 424px;
  height: 236px;
  display: flex;
  overflow: hidden;
  align-items: center;
}
#page_top #top_music .music_slide_list .music_listitem a:hover {
  opacity: 1;
}
@media screen and (max-width: 700px) {
  #page_top #top_music .music_slide_list .music_listitem a {
    width: 234px;
    height: 131px;
  }
}
#page_top #top_music .music_slide_list .music_listitem a img {
  width: 100%;
}
#page_top #top_music .music_slide_list .music_listitem .music_info {
  display: none;
}
#page_top #top_music .music_slide_list .slick-next, #page_top #top_music .music_slide_list .slick-prev {
  z-index: 2;
  background-image: url(../images/allow_shadow.png);
  width: 21px;
  height: 35px;
  background-size: cover;
  display: block;
}
#page_top #top_music .music_slide_list .slick-next::before, #page_top #top_music .music_slide_list .slick-prev::before {
  content: none;
}
#page_top #top_music .music_slide_list .slick-next {
  right: 40px;
}
@media screen and (max-width: 700px) {
  #page_top #top_music .music_slide_list .slick-next {
    right: 16px;
  }
}
#page_top #top_music .music_slide_list .slick-prev {
  left: 40px;
  transform: translate(0, -50%) scale(-1, 1);
}
@media screen and (max-width: 700px) {
  #page_top #top_music .music_slide_list .slick-prev {
    left: 16px;
  }
}
#page_top #top_qa {
  background-color: #333333;
  background-image: url(../images/bg_stone.png);
  background-repeat: no-repeat;
  background-size: 200% auto;
  background-position: top center;
}
@media screen and (max-width: 900px) {
  #page_top #top_qa {
    background-size: 300% auto;
  }
}
@media screen and (max-width: 900px) {
  #page_top #top_qa {
    background-size: 500% auto;
  }
}
#page_top #top_qa .qa_list {
  margin-bottom: 60px;
}
@media screen and (max-width: 700px) {
  #page_top #top_qa .qa_list {
    margin-bottom: 40px;
  }
}
#page_top #top_qa .qa_list .qa_listitem .qa_a {
  padding: 0px 24px 0px;
  background: #F2F2F2;
  height: 0px;
  overflow: hidden;
  transition: 0.2s;
}
@media screen and (max-width: 700px) {
  #page_top #top_qa .qa_list .qa_listitem .qa_a {
    padding: 0px 16px;
  }
}
#page_top #top_qa .qa_list .qa_listitem .qa_a .qa_description {
  opacity: 0;
  transition: 0.2s;
}
#page_top #top_qa .qa_list .qa_listitem .qa_a .qa_description .small {
  font-size: 11px;
  color: #303030;
}
#page_top #top_qa .qa_list .qa_listitem input.arrow_input:checked ~ .qa_a {
  padding: 21px 24px 24px;
  background: #F2F2F2;
  height: auto;
  transition: 0.2s;
}
@media screen and (max-width: 700px) {
  #page_top #top_qa .qa_list .qa_listitem input.arrow_input:checked ~ .qa_a {
    padding: 12px 16px;
  }
}
#page_top #top_qa .qa_list .qa_listitem input.arrow_input:checked ~ .qa_a .qa_description {
  opacity: 1;
  transition: 0.2s;
}
#page_top #top_twitter {
  background-color: #1B1B1B;
}
#page_top #top_twitter .twitter_wrap {
  padding: 8px;
  max-width: 600px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 700px) {
  #page_top #top_twitter .twitter_wrap {
    padding: 4px;
    margin: 0 auto 40px;
  }
}
#page_top #top_contact {
  background: rgba(23, 23, 23, 0.6);
}
#page_top #top_contact .section_content {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid #FFFFFF;
  padding: 60px 24px;
}
@media screen and (max-width: 700px) {
  #page_top #top_contact .section_content {
    padding: 24px;
  }
}
#page_top #top_contact .section_content .contact_description {
  line-height: 30px;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
@media screen and (max-width: 700px) {
  #page_top #top_contact .section_content .contact_description {
    margin-bottom: 20px;
    text-align: left;
    line-height: 24px;
  }
  #page_top #top_contact .section_content .contact_description br.pc {
    display: none;
  }
}

#page_music.main::before, #page_qa.main::before, #page_404.main::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(../images/bg_stone.png);
  background-size: cover;
}
#page_music section .section_inner, #page_qa section .section_inner, #page_404 section .section_inner {
  padding-top: 160px;
  padding-bottom: 70px;
}
@media screen and (max-width: 700px) {
  #page_music section .section_inner, #page_qa section .section_inner, #page_404 section .section_inner {
    padding-top: 120px;
  }
}

#page_music #music .section_inner .section_title {
  margin-bottom: 50px;
}
@media screen and (max-width: 700px) {
  #page_music #music .section_inner {
    padding-left: 0;
    padding-right: 0;
    padding-top: 120px;
  }
}
@media screen and (max-width: 700px) {
  #page_music #music .section_inner .section_content {
    max-width: 100%;
  }
}
#page_music #music .solo {
  margin-bottom: 115px;
}
@media screen and (max-width: 700px) {
  #page_music #music .solo {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 700px) {
  #page_music #music .section_subtitle {
    margin-bottom: 16px;
    text-align: center;
    font-size: 14px;
  }
}
#page_music #music .music_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: stretch;
}
#page_music #music .music_list::before, #page_music #music .music_list::after {
  content: "";
  display: block;
  height: 0;
  width: calc((100% - 32px) / 3);
  order: 9999;
}
@media screen and (max-width: 700px) {
  #page_music #music .music_list::before, #page_music #music .music_list::after {
    width: calc((100% - 8px) / 2);
  }
}
#page_music #music .music_list .music_listitem {
  width: calc((100% - 32px) / 3);
  margin-bottom: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 700px) {
  #page_music #music .music_list .music_listitem {
    width: calc((100% - 8px) / 2);
    margin-bottom: 12px;
  }
}
#page_music #music .music_list .music_listitem a {
  position: relative;
  width: 100%;
  display: flex;
  height: auto;
  overflow: hidden;
  align-items: center;
  flex-grow: 0;
  flex-shrink: 0;
}
#page_music #music .music_list .music_listitem a::before {
  content: "";
  display: block;
  padding-top: 56%;
}
#page_music #music .music_list .music_listitem a img {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
}
#page_music #music .music_list .music_listitem .music_info {
  background: #1B1B1B;
  padding: 12px 16px 12px;
  height: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 700px) {
  #page_music #music .music_list .music_listitem .music_info {
    padding: 8px;
  }
}
#page_music #music .music_list .music_listitem .music_info .music_info_top .music_date_wrap {
  height: auto;
  margin-bottom: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#page_music #music .music_list .music_listitem .music_info .music_info_top .music_date_wrap .music_date {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.12em;
  color: #888888;
  margin-right: 12px;
}
@media screen and (max-width: 700px) {
  #page_music #music .music_list .music_listitem .music_info .music_info_top .music_date_wrap .music_date {
    font-size: 9px;
    margin-right: 8px;
  }
}
#page_music #music .music_list .music_listitem .music_info .music_info_top .music_date_wrap .music_unit {
  background-color: #303030;
  padding: 4px 6px;
  font-size: 10px;
  letter-spacing: 0.11em;
}
#page_music #music .music_list .music_listitem .music_info .music_info_top .music_date_wrap .music_unit:empty {
  display: none;
}
@media screen and (max-width: 700px) {
  #page_music #music .music_list .music_listitem .music_info .music_info_top .music_date_wrap .music_unit {
    font-size: 9px;
    padding: 2px 4px;
  }
}
#page_music #music .music_list .music_listitem .music_info .music_info_top .music_date_wrap .music_unit::before {
  content: "#";
}
#page_music #music .music_list .music_listitem .music_info .music_info_top .music_title {
  line-height: 23px;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
@media screen and (max-width: 700px) {
  #page_music #music .music_list .music_listitem .music_info .music_info_top .music_title {
    line-height: 18px;
  }
}
#page_music #music .music_list .music_listitem .music_info .music_info_bottom {
  border-top: 1px dotted #4A4A4A;
  padding: 8px 0 0;
}
#page_music #music .music_list .music_listitem .music_info .music_info_bottom .music_song {
  font-size: 12px;
  letter-spacing: 0.03em;
  line-height: 18px;
}
@media screen and (max-width: 700px) {
  #page_music #music .music_list .music_listitem .music_info .music_info_bottom .music_song {
    font-size: 9px;
    letter-spacing: 0.01em;
  }
}
#page_music #music .collabo_unit_list {
  display: flex;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
@media screen and (max-width: 700px) {
  #page_music #music .collabo_unit_list {
    margin-bottom: 12px;
    justify-content: center;
    padding-left: 16px;
    padding-right: 16px;
  }
}
#page_music #music .collabo_unit_list .collabo_unit_listitem {
  margin-bottom: 8px;
}
#page_music #music .collabo_unit_list .collabo_unit_listitem:not(:last-child) {
  margin-right: 8px;
}
#page_music #music .collabo_unit_list .collabo_unit_listitem label {
  font-size: 12px;
  letter-spacing: 0.11em;
  background: #1B1B1B;
  padding: 4px 8px;
  transition: 0.2s;
  display: block;
  cursor: pointer;
}
#page_music #music .collabo_unit_list .collabo_unit_listitem label::before {
  content: "#";
}
#page_music #music .collabo_unit_list .collabo_unit_listitem label:hover {
  background: #fff;
  color: #1B1B1B;
}
#page_music #music .collabo_unit_list .collabo_unit_listitem label input {
  display: none;
}
#page_music #music .collabo_unit_list .collabo_unit_listitem label:has(input:checked) {
  background: #fff;
  color: #1B1B1B;
}

#page_qa .qa_a {
  padding: 0px 24px;
}
@media screen and (max-width: 700px) {
  #page_qa .qa_a {
    line-height: 22px;
    padding: 0px 16px;
  }
}
#page_qa .qa_a .qa_description {
  padding-top: 21px;
  padding-bottom: 24px;
  border-top: 1px dotted #1B1B1B;
}
@media screen and (max-width: 700px) {
  #page_qa .qa_a .qa_description {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

#page_404 .notfound_block {
  background: #fff;
  color: #1B1B1B;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 650px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 700px) {
  #page_404 .notfound_block {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }
}
#page_404 .notfound_block img {
  width: 20%;
  height: auto;
  text-align: center;
  margin-right: 30px;
}
@media screen and (max-width: 700px) {
  #page_404 .notfound_block img {
    margin-right: 0px;
    width: 50%;
    margin-bottom: 30px;
  }
}
#page_404 .notfound_block .notofound_text {
  line-height: 22px;
}
@media screen and (max-width: 700px) {
  #page_404 .notfound_block .notofound_text {
    line-height: 18px;
  }
}/*# sourceMappingURL=style.css.map */