@charset "UTF-8";
main {
  background: top/cover no-repeat;
}

.black {
  color: #272727;
}

.center {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.v_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.j_start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.lt200 {
  letter-spacing: 0.2em;
}

.lt150 {
  letter-spacing: 0.15em;
}

.lt100 {
  letter-spacing: 0.1em;
}

.lt50 {
  letter-spacing: 0.05em;
}

.arrow {
  display: inline-block;
  height: 6px;
  width: 22px;
  -webkit-transition: background-image .5s;
  transition: background-image .5s;
  background: url(../img/arrow.svg) center/contain no-repeat;
}

.l_arrow {
  display: inline-block;
  height: 6px;
  width: 47px;
  -webkit-transition: background-image .5s;
  transition: background-image .5s;
  background: url(../img/long_arrow.svg) center/contain no-repeat;
}

.arrow_bottom {
  display: inline-block;
  width: 7px;
  height: 64px;
  -webkit-transition: background-image .5s;
  transition: background-image .5s;
  background: url(../img/arrow_bottom.svg) center/contain no-repeat;
}

a {
  opacity: 1;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

a:hover {
  opacity: 0.7;
}

.button {
  color: white;
  -webkit-transition-property: background-color, color;
  transition-property: background-color, color;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
  opacity: 1;
}

.button:hover {
  opacity: 1;
  color: #272727;
  background-color: white;
}

.rect_button {
  border: solid 1px white;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.rect_button span {
  padding: .3rem 1.1rem .2rem;
  font-size: 1.4rem;
}

.rect_button .arrow {
  background: url(../img/arrow.svg) center/contain no-repeat;
  margin: 1.1rem 2.2rem .75rem 0;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}

.rect_button:hover .arrow {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

.rect_back_button {
  border: solid 1px white;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.rect_back_button span {
  padding: .3rem 1.1rem .2rem;
  font-size: 1.4rem;
}

.rect_back_button .arrow {
  background: url(../img/arrow_back.svg) center/contain no-repeat;
  margin: 1.1rem 0rem .75rem 2.4rem;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}

.rect_back_button:hover .arrow {
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
}

.round_button {
  background-color: transparent;
  border: solid white 1px;
  border-radius: 24px;
  min-height: 29px;
  min-width: 157px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2px 15px;
}

@media screen and (max-width: 767px) {
  .round_button {
    padding: 2px 5px;
    min-width: unset;
  }
}

.with_arrow .arrow {
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.with_arrow:hover .arrow {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

.circle {
  border: solid 1px white;
  border-radius: 100vw;
  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;
}

.fixed_circle {
  position: fixed;
  right: 127px;
  bottom: 50px;
  width: 9.9rem;
  height: 9.9rem;
  border: solid 1px white;
  border-radius: 9.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  z-index: 500;
}

.fixed_circle:hover .arrow {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.fixed_circle span {
  font-size: 1.4rem;
  line-height: 1.35rem;
}

.fixed_circle .arrow {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
  top: 12%;
  width: 29%;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

@media screen and (max-width: 1600px) {
  .fixed_circle {
    right: 30px;
  }
}

@media screen and (max-width: 767px) {
  .fixed_circle {
    bottom: 47px;
    width: 72px;
    height: 72px;
  }
  .fixed_circle span {
    font-size: 1.1rem;
    line-height: 1.5;
  }
}

@media screen and (max-width: 767px) and (max-width: 579px) {
  .fixed_circle span {
    font-size: 1.8vw;
  }
}

.one_screen {
  height: 100vh;
}

.fixed_circle_top {
  position: fixed;
  right: 127px;
  top: 120px;
  width: 9.9rem;
  height: 9.9rem;
  border: solid 1px white;
  border-radius: 9.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  z-index: 500;
}

.fixed_circle_top:hover .arrow {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.fixed_circle_top span {
  font-size: 1.4rem;
  line-height: 1.35rem;
}

.fixed_circle_top .arrow {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
  top: 12%;
  width: 29%;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

@media screen and (max-width: 1600px) {
  .fixed_circle_top {
    right: 100px;
  }
}

@media screen and (max-width: 767px) {
  .fixed_circle_top {
    top: inherit;
    bottom: 5%;
    right: 50px;
    width: 72px;
    height: 72px;
  }
  .fixed_circle_top span {
    font-size: 1.1rem;
    line-height: 1.5;
  }
}

@media screen and (max-width: 767px) and (max-width: 579px) {
  .fixed_circle_top span {
    font-size: 1.8vw;
  }
}

.scroll_down {
  position: fixed;
  right: 63px;
  bottom: 60px;
  z-index: 500;
}

.scroll_down span {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 1rem;
  line-height: 1.4;
  padding-bottom: 15px;
  display: block;
}

@media screen and (max-width: 579px) {
  .scroll_down span {
    font-size: 2vw;
  }
}

.scroll_down .arrow_bottom {
  position: relative;
  left: 50%;
}

@media screen and (max-width: 1600px) {
  .scroll_down {
    right: 19px;
    bottom: 117px;
  }
  .scroll_down span {
    padding-bottom: 7px;
  }
  .scroll_down .arrow_bottom {
    width: 6px;
    height: 47px;
  }
}

@media screen and (max-width: 399px) {
  .scroll_down {
    right: 8px;
  }
}

.scroll_down_top {
  position: fixed;
  right: 63px;
  top: 88px;
  z-index: 500;
}

.scroll_down_top span {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 1rem;
  line-height: 1.4;
  padding-bottom: 15px;
  display: block;
}

@media screen and (max-width: 579px) {
  .scroll_down_top span {
    font-size: 2vw;
  }
}

.scroll_down_top .arrow_bottom {
  position: relative;
  left: 50%;
}

@media screen and (max-width: 1600px) {
  .scroll_down_top {
    right: 45px;
  }
  .scroll_down_top span {
    padding-bottom: 7px;
  }
  .scroll_down_top .arrow_bottom {
    width: 6px;
    height: 47px;
  }
}

@media screen and (max-width: 399px) {
  .scroll_down_top {
    top: inherit;
    bottom: 5%;
    right: 3%;
  }
}

.mb_set .mb_ss {
  margin-bottom: -1px;
}

@media screen and (max-width: 767px) {
  .mb_set .mb_ss {
    margin-bottom: 5px;
  }
}

.mb_set .mb_s {
  margin-bottom: 6px;
}

@media screen and (max-width: 767px) {
  .mb_set .mb_s {
    margin-bottom: 7px;
  }
}

.mb_set .mb_m {
  margin-bottom: 8px;
}

@media screen and (max-width: 767px) {
  .mb_set .mb_m {
    margin-bottom: 11px;
  }
}

.mb_set .mb_last {
  margin-bottom: 38px;
}

@media screen and (max-width: 767px) {
  .mb_set .mb_last {
    margin-bottom: 110px;
  }
}

.mb_set .ll_text {
  margin-left: -4px;
}

@media screen and (max-width: 767px) {
  .mb_set .ll_text {
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) {
  table {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  table {
    overflow-x: scroll;
  }
}

table th, table td {
  font-weight: inherit;
  text-align: center;
  border-top: solid 1px white;
  border-left: solid 1px white;
  padding: 13px 12px;
  font-size: 1.4rem;
  vertical-align: middle;
}

@media screen and (max-width: 579px) {
  table th, table td {
    font-size: 2.8vw;
  }
}

table th:last-child, table td:last-child {
  border-right: solid 1px white;
}

table.mini th, table.mini td, table .mini th, table .mini td {
  padding-top: 10px;
  padding-bottom: 10px;
}

table tr:last-child th, table tr:last-child td {
  border-bottom: solid 1px white;
}

table .w_65 {
  width: 65%;
}

table .w_45 {
  width: 45%;
}

.scroll_wrap {
  overflow-x: scroll;
  /* IE, Edge 対応 */
  -ms-overflow-style: none;
  /* Firefox 対応 */
  scrollbar-width: none;
}

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

@media screen and (max-width: 767px) {
  .scroll_wrap {
    width: 100%;
  }
}

.search_title {
  margin-bottom: 8px;
}

.search_inputs_wrap {
  margin-bottom: 23px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  max-width: 100%;
}

.search_inputs_wrap .search_input {
  padding: 0 15px;
  margin-right: 15px;
  font-size: 16px;
  width: 326px;
}

@media screen and (max-width: 767px) {
  .search_inputs_wrap .search_input {
    margin-right: 5px;
    -ms-flex-negative: 1;
        flex-shrink: 1;
    -ms-flex-preferred-size: 61vw;
        flex-basis: 61vw;
    width: 61vw;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}

.search_inputs_wrap .search_button {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .search_inputs_wrap .search_button {
    width: 157px;
    -ms-flex-negative: 1;
        flex-shrink: 1;
    -ms-flex-preferred-size: 20vw;
        flex-basis: 20vw;
    width: 20vw;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 767px) and (max-width: 579px) {
  .search_inputs_wrap .search_button {
    font-size: 3vw;
  }
}

.tax_title {
  margin-bottom: 11px;
}

@media screen and (max-width: 767px) {
  .tax_title {
    margin-bottom: 8px;
  }
}

.tag_wrap ul li input[type="checkbox"] {
  display: none;
}

.tag_wrap ul li input[type="checkbox"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.tax_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 6px;
  width: calc(100% + 15px);
  margin-right: -15px;
}

@media screen and (max-width: 767px) {
  .tax_wrap {
    margin-bottom: 23px;
  }
}

.tax_wrap .tag {
  margin-bottom: 13px;
  margin-right: 15px;
}

.tax_wrap .tag.active {
  background-color: white;
  color: #272727;
}

@media screen and (min-width: 768px) {
  .tax_wrap .tag {
    min-height: 29px;
    min-width: 157px;
  }
}

@media screen and (max-width: 767px) {
  .tax_wrap .tag {
    width: unset;
    min-width: unset;
    -ms-flex-preferred-size: calc(33% - 15px);
        flex-basis: calc(33% - 15px);
  }
}

@media screen and (max-width: 579px) {
  .tax_wrap .tag {
    -ms-flex-preferred-size: calc(50% - 15px);
        flex-basis: calc(50% - 15px);
  }
}

.tax_wrap:last-child {
  margin-bottom: 28px;
}

.casts_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(100% + 30px);
  margin-right: -30px;
  padding-bottom: 98px;
}

.casts_wrap.schedule_wrap {
  padding-bottom: 30px;
}

.casts_wrap .cast {
  display: block;
  margin-right: 30px;
  -ms-flex-preferred-size: calc(33% - 30px);
      flex-basis: calc(33% - 30px);
  margin-bottom: 34px;
}

@media screen and (max-width: 1199px) {
  .casts_wrap .cast {
    -ms-flex-preferred-size: calc(50% - 30px);
        flex-basis: calc(50% - 30px);
  }
}

@media screen and (max-width: 767px) {
  .casts_wrap .cast {
    -ms-flex-preferred-size: calc(100% - 30px);
        flex-basis: calc(100% - 30px);
  }
}

.casts_wrap .cast .images_wrap {
  position: relative;
  color: #272727;
  margin-bottom: 38px;
  padding-top: 90%;
}

.casts_wrap .cast img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.casts_wrap .cast .cast-caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: white;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 0.5rem 1rem;
}

.casts_wrap .cast .cast-caption .cast-name {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.casts_wrap .cast .cast-caption .name_en {
  display: none;
}

.casts_wrap .cast .cast-caption .cast-job {
  border: 1.5px solid #272727;
  border-radius: 2rem;
  padding: 0.1rem 2.5rem;
  margin: 0.2rem auto 0 auto;
}

.casts_wrap .cast .cast-schedule {
  margin-top: -10px;
  margin-bottom: 10px;
}

.casts_wrap .cast .ranking_icon {
  position: absolute;
  top: 5px;
  z-index: 10;
  width: 40px;
  color: #fff;
  height: 40px;
  left: 5px;
  text-align: center;
}

.casts_wrap .cast .ranking_icon p {
  margin-top: 15px;
  letter-spacing: 0;
}

.casts_wrap .cast .rect_button .arrow {
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

.casts_wrap .cast:hover .rect_button .arrow {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

.btn_wrap {
  margin-bottom: 60px;
}

.btn_wrap a {
  display: inline-block;
  border-radius: 100px;
  margin-bottom: 20px;
  padding: 5px 100px;
}

@media screen and (max-width: 579px) {
  .btn_wrap a {
    width: 100%;
    text-align: center;
    padding: 5px 10px;
  }
}

.wb_line_pc {
  position: relative;
}

@media screen and (min-width: 768px) {
  .wb_line_pc::before {
    content: "";
    height: 353px;
    width: 1px;
    position: absolute;
    left: -19px;
    top: calc(50% - 218px);
    background-color: white;
  }
  .wb_line_pc::after {
    content: "";
    height: 218px;
    width: 1px;
    position: absolute;
    left: -19px;
    bottom: 50%;
    background-color: #272727;
  }
}

.wb_line_sp {
  position: relative;
}

@media screen and (max-width: 767px) {
  .wb_line_sp::before {
    content: "";
    height: 353px;
    width: 1px;
    position: absolute;
    left: -10px;
    top: calc(50% - 218px);
    background-color: white;
  }
  .wb_line_sp::after {
    content: "";
    height: 218px;
    width: 1px;
    position: absolute;
    left: -10px;
    bottom: 50%;
    background-color: #272727;
  }
}

@media screen and (min-width: 768px) {
  .gallery {
    position: absolute;
    right: 0;
    top: -111px;
    width: 310px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .gallery {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    max-width: 100%;
    overflow: scroll;
    height: 107px;
    margin-bottom: 36px;
  }
}

.gallery .gallery_item {
  opacity: 1 !important;
  -webkit-transition: outline .5s;
  transition: outline .5s;
  outline: solid 1px transparent;
}

.gallery .gallery_item:hover {
  outline: solid 1px white;
  outline-offset: -1px;
}

@media screen and (min-width: 768px) {
  .gallery .gallery_item {
    width: 141px;
    margin-left: 14px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .gallery .gallery_item {
    height: 100%;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 5px;
  }
}

.gallery .gallery_item img, .gallery .gallery_item video {
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (min-width: 768px) {
  .gallery .gallery_item img, .gallery .gallery_item video {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .gallery .gallery_item img, .gallery .gallery_item video {
    height: 100%;
  }
}

.gallery .gallery_item.video_item {
  position: relative;
}

.gallery .gallery_item.video_item:after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url(../img/video_icon.png) center/contain no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
}

.fancybox-content .fancybox-image {
  -o-object-fit: contain;
     object-fit: contain;
}

.steps .step .step_img_wrap {
  position: relative;
}

.steps .step .step_number {
  position: absolute;
  width: 41px;
  height: 41px;
  right: 0;
}

.steps .step .step_point {
  position: absolute;
  left: 0;
  bottom: 0;
  background: white;
  color: #272727;
  padding: 4px 15px;
  font-size: 2.3rem;
}

@media screen and (max-width: 579px) {
  .steps .step .step_point {
    font-size: 4.6vw;
  }
}

.steps .step:last-child {
  margin-bottom: 0;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media screen and (min-width: 768px) {
  .steps .step:last-child {
    padding-bottom: 128px;
  }
}

@media screen and (max-width: 767px) {
  .steps .step:last-child {
    padding-bottom: 140px;
  }
}

@media screen and (max-width: 1199px) and (min-width: 768px) {
  .steps .step .step_content {
    padding-top: 41px;
    padding-bottom: 41px;
  }
}

@media screen and (min-width: 768px) {
  .steps .step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 205px;
    margin-bottom: 45px;
  }
  .steps .step img {
    height: 100%;
    width: 294px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .steps .step .step_img_wrap {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .steps .step .step_content {
    height: 100%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
  }
  .steps .step .step_text {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .steps .step .step_number {
    top: 0;
  }
  .steps .step:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .steps .step:nth-child(2n) .step_content {
    margin-right: 30px;
  }
  .steps .step:nth-child(2n+1) .step_img_wrap {
    margin-right: 30px;
  }
}

@media screen and (max-width: 767px) {
  .steps .step {
    margin-bottom: 42px;
  }
  .steps .step .step_img_wrap {
    position: relative;
    margin-bottom: 15px;
  }
  .steps .step .step_number {
    bottom: 3px;
    right: 3px;
  }
  .steps .step img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.first_text {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .first_text {
    margin-bottom: 27px;
  }
}

ul.page-numbers {
  font-size: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 579px) {
  ul.page-numbers {
    font-size: 3vw;
  }
}

ul.page-numbers li {
  height: 41px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

ul.page-numbers li:not(:last-child) {
  margin-right: 30px;
}

ul.page-numbers li a, ul.page-numbers li span {
  display: inline;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

ul.page-numbers li a.prev, ul.page-numbers li a.next, ul.page-numbers li span.prev, ul.page-numbers li span.next {
  width: 41px;
  height: 41px;
  border-radius: 100vw;
  border: solid 1px white;
  position: relative;
  display: block;
}

ul.page-numbers li a.prev::after, ul.page-numbers li a.next::after, ul.page-numbers li span.prev::after, ul.page-numbers li span.next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 6px;
  width: 20px;
}

ul.page-numbers li a.prev::after, ul.page-numbers li span.prev::after {
  background: url(../img/arrow_back.svg) center/cover no-repeat;
}

ul.page-numbers li a.next::after, ul.page-numbers li span.next::after {
  background: url(../img/arrow.svg) center/cover no-repeat;
}

ul.page-numbers li a.current::after, ul.page-numbers li span.current::after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 1px;
  background: white;
  bottom: -4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

main.index {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

@media screen and (max-width: 767px) {
  main.index {
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-image: url("../img/oliva/sp/sp-top-bg.png") !important;
  }
}

main.index .loading-view {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: black;
  z-index: 1000;
  opacity: 1;
  -webkit-transition: all 2s;
  transition: all 2s;
  pointer-events: none;
}

main.index .is-hidden {
  opacity: 0 !important;
}

main.index .mv_wrap {
  position: absolute;
  top: 30%;
  left: 12%;
  z-index: 11000 !important;
  text-align: right;
}

@media screen and (max-width: 767px) {
  main.index .mv_wrap {
    z-index: 11000;
    position: inherit;
    text-align: center;
  }
}

main.index .mv_wrap h1 {
  font-size: 6.8rem;
  line-height: 1.32;
  padding-right: 5rem;
}

@media screen and (max-width: 767px) {
  main.index .mv_wrap h1 {
    font-size: 3.8rem;
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) and (max-width: 579px) {
  main.index .mv_wrap h1 {
    font-size: 7.5vw;
  }
}

main.index .mv_wrap h1 > img {
  width: 50.3rem;
  margin-bottom: 2rem;
}

@media screen and (max-width: 767px) {
  main.index .mv_wrap h1 > img {
    width: 33.4rem;
  }
}

@media screen and (max-width: 579px) {
  main.index .mv_wrap h1 > img {
    width: 64vw;
  }
}

main.index .mv_wrap h2 {
  font-size: 2.8rem;
  font-weight: normal;
  color: #f4ce00;
  line-height: 1.32;
}

@media screen and (max-width: 767px) {
  main.index .mv_wrap h2 {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) and (max-width: 579px) {
  main.index .mv_wrap h2 {
    font-size: 3.6vw;
  }
}

main.index .text_wrap .text1 {
  font-size: 1.9rem;
  line-height: 1.36;
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  main.index .text_wrap .text1 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
}

@media screen and (max-width: 767px) and (max-width: 579px) {
  main.index .text_wrap .text1 {
    font-size: 3.2vw;
  }
}

main.index .text_wrap .text2 {
  font-size: 1.4rem;
  line-height: 1.35;
  margin-bottom: 85px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  main.index .text_wrap .text2 {
    font-size: 1.2rem;
    line-height: 1.55;
    margin-bottom: 105px;
  }
}

@media screen and (max-width: 767px) and (max-width: 579px) {
  main.index .text_wrap .text2 {
    font-size: 2.4vw;
  }
}

main.index .text_wrap .copyright {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  main.index .text_wrap .copyright {
    font-size: 0.9rem;
    margin-bottom: 19px;
  }
}

@media screen and (max-width: 767px) and (max-width: 579px) {
  main.index .text_wrap .copyright {
    font-size: 1.8vw;
  }
}

@media screen and (max-width: 1600px) {
  main .fixed_circle {
    right: 127px;
  }
}

@media screen and (max-width: 999px) {
  main .fixed_circle {
    right: 30px;
  }
}

main .fv-content {
  margin: 50rem 5rem 20rem 15rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  max-width: 1200px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media screen and (max-width: 767px) {
  main .fv-content {
    margin: 0 auto 0 auto;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}

main {
  overflow: inherit !important;
}

main.lazyloaded {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

main.index2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

main.index2 .swiper-container {
  margin: 8rem auto;
  width: 66%;
  height: 580px;
  border-radius: 1rem;
  overflow: hidden;
}

main.index2 .swiper-container .bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

main.index2 .swiper-container .bg img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

main.index2 .swiper-container .swiper-wrapper .slide_box {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

main.index2 .swiper-container .swiper-wrapper .slide_box .mb_set {
  position: relative;
  z-index: 10;
}

main.index2 .swiper-container .swiper-button-next,
main.index2 .swiper-container .swiper-button-prev {
  color: #fff;
}

main.index2 .swiper-container .swiper-button-next:after,
main.index2 .swiper-container .swiper-button-prev:after {
  font-size: 3rem;
}

main.index2 .swiper-slide {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

main.index2 .swiper-slide-active .bg,
main.index2 .swiper-slide-duplicate-active .bg,
main.index2 .swiper-slide-prev .bg {
  /* 12秒かけて拡大させる */
  -webkit-animation: zoomUp 12s linear 0s;
  animation: zoomUp 12s linear 0s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoomUp {
  /* 1.15倍させる指定 */
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

main.index2 .to-allcast {
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
}

main.index2 .to-allcast-link {
  margin: 1rem auto 5rem auto;
}

main.index2 .index2-textcontent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 11rem auto 4rem auto;
  text-align: center;
  max-width: 800px;
}

main.index2 .index2-textcontent h2 {
  font-size: 2rem;
  margin: 1rem auto 2rem auto;
}

main.index2 .index2-textcontent .text-wrapper {
  max-width: 93%;
  margin: auto;
}

main.index2 .index2-textcontent .text-wrapper p {
  line-height: 3rem;
}

.footer_fixed {
  opacity: 1;
  pointer-events: auto;
}

main.index3 {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
	main.index2 .index2-textcontent{
		    margin: 11rem 40px 4rem 40px;
	}
  main.index3.lazyloaded {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

main.casts.lazyloaded {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top center;
  background-attachment: fixed;
}

@media screen and (max-width: 767px) {
  main.casts.lazyloaded {
    background-repeat: repeat;
    background-size: 100% auto;
    background-image: url("../img/oliva/sp/sp-casts-bg.png") !important;
  }
}

main.casts.schedule.lazyloaded {
  background-position: bottom center;
}

@media screen and (max-width: 767px) {
  main.casts.schedule.lazyloaded {
    background-position: top center;
  }
}

@media screen and (max-width: 999px) {
  main.casts .w {
    padding-left: 110px;
    padding-right: 110px;
  }
}

@media screen and (max-width: 767px) {
  main.casts .w {
    padding-left: 90px;
    padding-right: 90px;
  }
}

@media screen and (max-width: 579px) {
  main.casts .w {
    padding-left: 30px;
    padding-right: 30px;
  }
}

main.cast {
  position: relative;
}

main.cast.lazyloaded {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top center;
}

@media screen and (max-width: 767px) {
  main.cast.lazyloaded {
    background-repeat: repeat;
    background-size: 100% auto;
    background-image: url("../img/oliva/sp/sp-cast-bg.png") !important;
  }
}

main.cast .bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 767px) {
  main.cast .wxx {
    padding-left: 40px;
  }
}

@media screen and (min-width: 768px) {
  main.cast .max_m {
    max-width: 387px;
  }
}

@media screen and (min-width: 768px) {
  main.cast .max_l {
    max-width: 688px;
  }
}

main.cast .wxx {
  position: relative;
}

main.cast .cast_inner {
  position: relative;
}

main.cast .f_middle_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.cast .f_middle_wrap .ll_text {
  margin-right: 17px;
}

main.cast .f_middle_wrap .circle {
  width: 41px;
  height: 41px;
}

main.cast .f_middle_wrap .circle span {
  font-size: .9rem;
}

@media screen and (max-width: 767px) {
  main.cast .left10 {
    margin-left: -10px;
  }
}

main.cast .mb_set .mb_ms {
  margin-bottom: 14px;
}

@media screen and (max-width: 767px) {
  main.cast .mb_set .mb_ms {
    margin-bottom: 12px;
  }
}

main.cast .mb_set .mb_ml {
  margin-bottom: 23px;
}

main.cast .mb_set .mb_l {
  margin-bottom: 29px;
}

main.cast .mb_set .mb_ll {
  margin-bottom: 36px;
}

main.cast .mb_set .mb_xl {
  margin-bottom: 52px;
}

@media screen and (max-width: 767px) {
  main.cast .mb_set .mb_xl {
    margin-bottom: 48px;
  }
}

main.cast .mb_set .mb_last {
  margin-bottom: 0;
  padding-bottom: 63px;
}

@media screen and (max-width: 767px) {
  main.cast .mb_set .mb_last {
    padding-bottom: 125px;
  }
}

main.cast table.tag {
  width: unset;
}

main.howTo.lazyloaded {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

@media screen and (max-width: 767px) {
  main.howTo.lazyloaded {
    background-repeat: repeat;
    background-size: 100% auto;
  }
}

@media screen and (max-width: 1199px) {
  main.howTo .w {
    padding-left: 70px;
    padding-right: 70px;
    padding-top: 21.4rem;
  }
}

@media screen and (max-width: 767px) {
  main.howTo .w {
    padding-left: 30px;
    padding-right: 30px;
  }
}

body.system header {
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

body.system header.onBanSection {
  opacity: 0;
  pointer-events: none;
}

body.system .logo {
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

body.system .logo.onBanSection {
  opacity: 0;
  pointer-events: none;
}

body.system .lazyloaded {
  background: center/cover no-repeat;
}

body.system .price {
  padding-bottom: 123px;
}

@media screen and (max-width: 767px) {
  body.system .price {
    padding-bottom: 96px;
    background-image: url("../img/oliva/sp/sp-system-bg-1.png");
  }
}

body.system .class {
  padding-bottom: 45px;
}

@media screen and (max-width: 767px) {
  body.system .class {
    padding-bottom: 97px;
    background-image: url("../img/oliva/sp/sp-system-bg-2.png");
  }
}

body.system .ban {
  padding-bottom: 17px;
}

@media screen and (max-width: 767px) {
  body.system .ban {
    padding-bottom: 0px;
    background-image: url("../img/oliva/sp/sp-system-bg-3.png");
  }
  body.system .ban .steps .step:last-child {
    padding-bottom: 115px;
  }
}

@media (min-width: 1400px) {
  body.system .fixed_circle {
    right: 127px;
  }
}

body.system .mb_set .mb_ms {
  margin-bottom: 7px;
}

@media screen and (max-width: 767px) {
  body.system .mb_set .mb_ms {
    margin-bottom: 10px;
  }
}

body.system .mb_set .mb_mss {
  margin-bottom: 13px;
}

body.system .mb_set .mb_l {
  margin-bottom: 14px;
}

@media screen and (max-width: 767px) {
  body.system .mb_set .mb_l {
    margin-bottom: 9px;
  }
}

body.system .mb_set .mb_ssl {
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  body.system .mb_set .mb_ssl {
    margin-bottom: 8px;
  }
}

body.system .mb_set .mb_sll {
  margin-bottom: 15px;
}

body.system .mb_set .mb_ssll {
  margin-bottom: 17px;
}

@media screen and (max-width: 767px) {
  body.system .mb_set .mb_ssll {
    margin-bottom: 14px;
  }
}

body.system .mb_set .mb_slll {
  margin-bottom: 19px;
}

@media screen and (max-width: 767px) {
  body.system .mb_set .mb_slll {
    margin-bottom: 37px;
  }
}

body.system .mb_set .mb_ll {
  margin-bottom: 29px;
}

@media screen and (max-width: 767px) {
  body.system .mb_set .mb_ll {
    margin-bottom: 25px;
  }
}

body.system .mb_set .mb_xl {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  body.system .mb_set .mb_xl {
    margin-bottom: 24px;
  }
}

body.system .mb_set .mb_xsll {
  margin-bottom: 35px;
}

@media screen and (max-width: 767px) {
  body.system .mb_set .mb_xsll {
    margin-bottom: 12px;
  }
}

body.system .mb_set .mb_xslll {
  margin-bottom: 35px;
}

body.system .mb_set .mb_xll {
  margin-bottom: 38px;
}

@media screen and (max-width: 767px) {
  body.system .mb_set .mb_xll {
    margin-bottom: 33px;
  }
}

@media screen and (max-width: 767px) {
  body.system .mb_set .mb_xll.mb_xll_sp {
    margin-bottom: 18px;
  }
}

body.system .mb_set .mb_xxl {
  margin-bottom: 44px;
}

body.system .rect_button span {
  font-size: 1.4rem;
}

@media screen and (max-width: 579px) {
  body.system .rect_button span {
    font-size: 2.8vw;
  }
}

body.system .bgcolor-gold {
  background-color: rgba(244, 207, 0, 0.258);
}

@media screen and (max-width: 767px) {
  body.system table {
    min-width: 100%;
  }
}

body.system table .pd_w {
  padding-right: 21px;
  padding-left: 21px;
}

body.system table.nowrap {
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  body.system table.table_type_a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    table-layout: fixed;
  }
  body.system table.table_type_a th, body.system table.table_type_a td {
    width: 18rem;
  }
  body.system table.table_type_a th:first-child, body.system table.table_type_a td:first-child {
    width: 30rem;
  }
}

@media screen and (min-width: 768px) {
  body.system .max583 {
    max-width: 583px;
  }
}

@media screen and (min-width: 768px) {
  body.system main > div > * {
    max-width: 1040px;
  }
}

@media screen and (min-width: 768px) {
  body.system .f_top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  body.system .f_top .half_item {
    width: 49%;
  }
}

@media screen and (max-width: 767px) {
  body.system .f_top .half_item:not(:last-child) {
    margin-bottom: 23px;
  }
}

body.system .f_top .round_button {
  width: 157px;
  max-width: 100%;
}

body.system .f_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

body.system .right2 {
  margin-right: 2px;
}

@media screen and (min-width: 1000px) {
  body.system .class_table_img_wrap {
    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;
    gap: 10px;
  }
  body.system .class_table_img_wrap .l_table {
    width: 67%;
  }
  body.system .class_table_img_wrap img {
    width: 30%;
  }
}

@media screen and (max-width: 999px) {
  body.system .class_table_img_wrap .l_table table {
    margin-bottom: 8px;
  }
  body.system .class_table_img_wrap .l_table table tr th, body.system .class_table_img_wrap .l_table table tr td {
    padding-left: 5px;
    padding-right: 5px;
  }
  body.system .class_table_img_wrap .l_table table tr th:first-child, body.system .class_table_img_wrap .l_table table tr td:first-child {
    width: 33rem;
  }
  body.system .class_table_img_wrap .l_table .scroll_arrow {
    margin-bottom: 20px;
  }
  body.system .class_table_img_wrap img {
    width: 400px;
  }
}

body.system .class_table_img_wrap img {
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 767px) {
  body.system .common_img {
    max-width: 100%;
    width: 400px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

@media screen and (max-width: 1199px) and (min-width: 768px) {
  body.system .steps .step .step_content {
    padding: 0;
  }
}

body.system .steps .step .step_content .step_content_inner {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

main.news.lazyloaded {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
}

@media screen and (max-width: 767px) {
  main.news.lazyloaded {
    background-repeat: repeat;
    background-size: 100% auto;
    background-image: url("../img/oliva/sp/sp-news-bg.png") !important;
  }
}

main.news .casts_wrap {
  padding-bottom: 0px;
}

@media screen and (min-width: 768px) {
  main.news .casts_wrap {
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 768px) {
  main.news .casts_wrap {
    margin-bottom: 30px;
  }
}

main.news .casts_wrap .images_wrap {
  margin-bottom: 10px;
}

main.news .casts_wrap .date {
  margin-bottom: 10px;
}

main.news .casts_wrap .news_title {
  margin-bottom: 19px;
}

@media screen and (max-width: 999px) {
  main.news .w {
    padding-right: 45px;
    padding-left: 45px;
    padding-top: 21.4rem;
  }
}

@media screen and (max-width: 767px) {
  main.news .w {
    padding-right: 30px;
    padding-left: 30px;
  }
}

main.news ul.page-numbers {
  height: 41px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding-bottom: 125px;
}

@media screen and (max-width: 767px) {
  main.news ul.page-numbers {
    padding-bottom: 120px;
  }
}

main.news_single .mb_set .mb_l {
  margin-bottom: 15px;
}

main.news_single .mb_set .mb_ml {
  margin-bottom: 14px;
}

@media screen and (max-width: 767px) {
  main.news_single .mb_set .mb_ml {
    margin-bottom: 6px;
  }
}

main.news_single .mb_set .mb_mll {
  margin-bottom: 36px;
}

@media screen and (max-width: 767px) {
  main.news_single .mb_set .mb_mll {
    margin-bottom: 14px;
  }
}

main.news_single .mb_set .mb_xl {
  margin-bottom: 40px;
}

main.news_single .mb_set .mb_xxl {
  margin-bottom: 127px;
}

@media screen and (max-width: 767px) {
  main.news_single .mb_set .mb_xxl {
    margin-bottom: 64px;
  }
}

main.news_single .w_img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

main.contact.lazyloaded {
  background-repeat: no-repeat;
  background-position-y: -200px;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  main.contact.lazyloaded {
    background-repeat: repeat;
    background-size: 100% auto;
    background-image: url("../img/oliva/sp/sp-contact-bg.png") !important;
  }
}

main.contact .contact_h1 {
  font-size: 3.0rem;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) and (max-width: 579px) {
  main.contact .contact_h1 {
    font-size: 6vw;
  }
}

main.contact .mb_set .mb_l {
  margin-bottom: 15px;
}

main.contact .mb_set .mb_ll {
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  main.contact .mb_set .mb_ll {
    margin-bottom: 20px;
  }
}

main.contact .mb_set .mb_lll {
  margin-bottom: 45px;
}

main.contact .mb_set .mb_xl {
  margin-bottom: 75px;
}

@media screen and (max-width: 767px) {
  main.contact .mb_set .mb_xl {
    margin-bottom: 42px;
  }
}

main.contact .pd_last {
  padding-bottom: 127px;
}

@media screen and (max-width: 767px) {
  main.contact .pd_last {
    padding-bottom: 120px;
  }
}

main.contact .contact_form input:not([type="submit"]), main.contact .contact_form textarea {
  font-size: 16px;
  padding: 5px 15px;
  width: 100%;
}

main.contact .contact_form input[type="text"], main.contact .contact_form input[type="email"] {
  height: 38px;
}

main.contact .contact_form select {
  font-size: 16px;
  padding: 5px 15px;
  width: 100%;
  height: 38px;
  position: relative;
}

main.contact .contact_form .select_wrap {
  position: relative;
}

main.contact .contact_form .select_wrap::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: solid 2px white;
  border-bottom: solid 2px white;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-75%) rotate(45deg);
          transform: translateY(-75%) rotate(45deg);
}

main.contact .contact_form option {
  color: black;
}

main.contact .contact_form textarea {
  height: 122px;
}

main.contact .contact_form input[type="submit"] {
  margin-right: auto;
  margin-left: auto;
  min-width: 157px;
  width: 157px;
}

main.contact .contact_form .white_border {
  border: solid 1px white;
}

main.contact .contact_form .submit_wrap {
  text-align: center;
}

main.contact .contact_form .error {
  display: inline-block;
  margin-top: 5px;
  color: red;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  main.contact .contact_form .error {
    font-size: 1.2rem;
    letter-spacing: 0.15em;
  }
}

@media screen and (max-width: 767px) and (max-width: 579px) {
  main.contact .contact_form .error {
    font-size: 2.4vw;
  }
}

main.contact .wpcf7-response-output {
  border: none;
  color: red;
  padding-left: 0;
}

main.contact .wpcf7-spinner {
  display: none;
}

main.recruit .mb_set .mb_xl {
  margin-bottom: 7px;
}

main.recruit .mb_set .mb_xxl {
  margin-bottom: 50px;
}

main.recruit .circle {
  width: 9.9rem;
  height: 9.9rem;
  border: solid 1px white;
  border-radius: 9.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  z-index: 500;
}

main.recruit .circle span {
  font-size: 1.4rem;
  line-height: 1.35rem;
}

main.recruit .circle .arrow {
  position: relative;
  top: 12%;
  width: 29%;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

@media screen and (max-width: 1600px) {
  main.recruit .circle {
    right: 30px;
  }
}

@media screen and (max-width: 767px) {
  main.recruit .circle {
    bottom: 47px;
    width: 72px;
    height: 72px;
  }
  main.recruit .circle span {
    font-size: 1.1rem;
    line-height: 1.5;
  }
}

@media screen and (max-width: 767px) and (max-width: 579px) {
  main.recruit .circle span {
    font-size: 1.8vw;
  }
}

main.recruit .title_recruit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 42px;
  font-size: 2.5rem;
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  main.recruit .title_recruit {
    font-size: 4.0vw;
  }
}

main.recruit .title_recruit::before {
  content: "";
  display: inline-block;
  width: 58px;
  height: 1px;
  background: white;
  margin-right: 23px;
}

main.recruit .recruit_mv {
  padding: 133px 136px 75px;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #000000;
}

@media (max-width: 1360px) {
  main.recruit .recruit_mv {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 100px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 1200px) {
  main.recruit .recruit_mv .recruit_mv_inner {
    background: url(../img/oliva/sp/sm-recruit-top-bg.png) 100% 100%/cover no-repeat;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_bg {
    display: none;
  }
}

@media (max-height: 750px) {
  main.recruit .recruit_mv {
    padding-top: 95px;
    padding-bottom: 60px;
  }
  main.recruit .recruit_mv .recruit_mv_inner {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media (max-height: 700px) {
  main.recruit .recruit_mv {
    max-height: unset;
    height: auto;
    padding-bottom: 70px;
  }
  main.recruit .recruit_mv .recruit_mv_inner {
    height: auto;
    max-height: unset;
  }
}

main.recruit .recruit_mv .recruit_mv_inner {
  width: 100%;
  margin: 0 auto 0 auto;
  position: relative;
  max-height: 580px;
}

@media (max-width: 1360px) {
  main.recruit .recruit_mv .recruit_mv_inner {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-height: 700px) {
  main.recruit .recruit_mv .recruit_mv_inner {
    max-height: unset;
  }
}

main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  height: 100%;
}

main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap {
  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;
  width: 100%;
  max-height: 580px;
}

@media screen and (max-width: 767px) {
  main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-height: 700px) {
  main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap {
    max-height: unset;
  }
}

main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap .recruit_mv_left {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap .recruit_mv_left .recruit_mv_left_ja {
  position: relative;
  font-size: 9rem;
  letter-spacing: 0.5em;
  margin-left: 6rem;
  white-space: nowrap;
  margin-top: -3rem;
  max-height: 580px;
}

@media (max-width: 1360px) {
  main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap .recruit_mv_left .recruit_mv_left_ja {
    margin-left: 12rem;
  }
}

@media (max-height: 700px) {
  main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap .recruit_mv_left .recruit_mv_left_ja {
    max-height: unset;
  }
}

main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap .recruit_mv_left .recruit_mv_left_en {
  font-size: 1.6rem;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap .recruit_mv_left {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
  main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap .recruit_mv_left .recruit_mv_left_ja {
    margin-left: 0;
    margin-top: 6rem;
    letter-spacing: .2em;
    font-size: 5.5rem;
    margin-bottom: 6rem;
  }
  main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap .recruit_mv_left .recruit_mv_left_en {
    top: calc(100% + 4rem);
  }
}

main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap .recruit_mv_right {
  padding-right: 6.8rem;
  padding-bottom: 3rem;
  padding-top: 3rem;
  max-width: 53rem;
  max-height: 100%;
}

main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap .recruit_mv_right .mv_text_l {
  font-size: 1.6rem;
  line-height: 2.25;
}

@media (max-height: 699px) {
  main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap .recruit_mv_right .mv_text_l {
    margin-bottom: 1rem;
  }
}

main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap .recruit_mv_right .mv_right_line {
  position: relative;
}

main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap .recruit_mv_right .mv_right_line .mv_right_line_inner {
  position: absolute;
  display: block;
  right: -3rem;
}

main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap .recruit_mv_right .mv_right_line .mv_right_line_inner::after {
  content: "";
  position: absolute;
  width: 1px;
  background: #7400B1;
  height: 24%;
  display: block;
  top: 0;
}

main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap .recruit_mv_right .mv_right_line .mv_right_line_inner::before {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 1px;
  height: 100%;
  background: #fff;
}

@media screen and (max-width: 767px) {
  main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap .recruit_mv_right .mv_right_line .mv_right_line_inner {
    right: -.3rem;
  }
}

main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap .recruit_mv_right .mv_text_s {
  line-height: 1.9;
  max-height: 22vh;
  overflow-y: auto;
  margin-right: -4rem;
  padding-right: 4rem;
}

main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap .recruit_mv_right .mv_text_s, main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap .recruit_mv_right .mv_text_s * {
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap .recruit_mv_right .mv_text_s::-webkit-scrollbar, main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap .recruit_mv_right .mv_text_s *::-webkit-scrollbar {
  display: none !important;
}

main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap .recruit_mv_right .mv_text_s .simplebar-content-wrapper, main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap .recruit_mv_right .mv_text_s .simplebar-offset, main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap .recruit_mv_right .mv_text_s .simplebar-mask, main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap .recruit_mv_right .mv_text_s .simplebar-wrapper, main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap .recruit_mv_right .mv_text_s .simplebar-content {
  overflow-x: hidden !important;
}

main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap .recruit_mv_right .mv_text_s .simplebar-track.simplebar-vertical {
  background: #ffffff;
  width: 1px;
}

main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap .recruit_mv_right .mv_text_s .simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  opacity: 1;
  border-radius: 0;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  background: #7400B1;
}

@media screen and (max-width: 767px) {
  main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap .recruit_mv_right .mv_text_s {
    max-height: 18vh;
    margin-right: -.4rem;
    padding-right: .4rem;
  }
}

@media (max-height: 699px) {
  main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap .recruit_mv_right .mv_text_s {
    max-height: 137px;
  }
}

@media screen and (max-width: 767px) {
  main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap .recruit_mv_right {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media screen and (max-width: 579px) {
  main.recruit .recruit_mv .recruit_mv_inner .recruit_mv_text_wrap .recruit_mv_right .mv_text_s {
    line-height: 1.4;
  }
}

main.recruit .recruit_woman_staff {
  color: #272727;
  margin: 0 auto;
  background: #fff;
  position: relative;
}

main.recruit .recruit_woman_staff .wonam_inner {
  position: relative;
  z-index: 1;
}

main.recruit .recruit_woman_staff .hira_sans {
  font-family: "Hiragino Kaku Gothic ProN";
}

main.recruit .recruit_woman_staff .w_600 {
  font-weight: 600;
}

main.recruit .recruit_woman_staff .text_mll {
  font-size: 1.9rem;
}

main.recruit .recruit_woman_staff .text_mll > .l_text {
  margin-left: 2rem;
}

main.recruit .recruit_woman_staff .recruit_section_title {
  font-size: 2.5rem;
  letter-spacing: .1em;
  line-height: 1.32;
  position: relative;
}

main.recruit .recruit_woman_staff .recruit_section_title::after {
  content: "";
  display: block;
  height: 1px;
  width: 5.8rem;
  background: #272727;
  position: absolute;
  right: calc(100% + 2.3rem);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

main.recruit .recruit_woman_staff .recruit_section_title .section_label {
  position: absolute;
  left: -15rem;
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  font-size: 4rem;
}

@media screen and (max-width: 999px) {
  main.recruit .recruit_woman_staff .recruit_section_title {
    left: 5.5rem;
    display: inline-block;
  }
  main.recruit .recruit_woman_staff .recruit_section_title::after {
    width: 2.6rem;
  }
}

main.recruit .recruit_woman_staff .mb_127 {
  margin-bottom: 12.7rem;
}

main.recruit .recruit_woman_staff .mb_80 {
  margin-bottom: 8rem;
}

main.recruit .recruit_woman_staff .mb_62 {
  margin-bottom: 6.2rem;
}

main.recruit .recruit_woman_staff .mb_55 {
  margin-bottom: 5.5rem;
}

main.recruit .recruit_woman_staff .mb_42 {
  margin-bottom: 4.2rem;
}

main.recruit .recruit_woman_staff .mb_35 {
  margin-bottom: 3.5rem;
}

main.recruit .recruit_woman_staff .mb_16 {
  margin-bottom: 1.6rem;
}

main.recruit .recruit_woman_staff .mb_12 {
  margin-bottom: 1.2rem;
}

main.recruit .recruit_woman_staff .lh_40 {
  line-height: 2.6;
}

main.recruit .recruit_woman_staff .lh_35 {
  line-height: 2.3;
}

main.recruit .recruit_woman_staff .lh_28 {
  line-height: 1.86;
}

main.recruit .recruit_woman_staff .lh_25 {
  line-height: 1.66;
}

main.recruit .recruit_woman_staff .lh_20 {
  line-height: 1.33;
}

main.recruit .recruit_woman_staff .recruit_table {
  max-width: 77rem;
}

main.recruit .recruit_woman_staff .recruit_table th {
  border-color: #272727;
  font-size: 2rem;
  font-weight: 400;
}

@media screen and (min-width: 1000px) {
  main.recruit .recruit_woman_staff .recruit_table th {
    width: 24rem;
    text-align: left;
    padding-left: 6rem;
  }
}

main.recruit .recruit_woman_staff .recruit_table td {
  text-align: left;
  padding: 2.5rem 4rem;
  border-color: #272727;
}

main.recruit .recruit_woman_staff .woman_wrap {
  padding-top: 10.8rem;
  padding-right: 26rem;
  padding-left: 26rem;
  position: relative;
}

@media screen and (max-width: 999px) {
  main.recruit .recruit_woman_staff .woman_wrap {
    padding-right: 30px;
    padding-left: 30px;
  }
}

main.recruit .recruit_woman_staff .woman_wrap .gray_bg1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 44rem;
  height: 79rem;
  max-width: 60%;
  background: #EFEFEF;
}

main.recruit .recruit_woman_staff .woman_wrap .gray_bg2 {
  position: absolute;
  bottom: 35rem;
  right: 0;
  width: 51rem;
  height: 119rem;
  max-width: 60%;
  background: #EFEFEF;
}

main.recruit .recruit_woman_staff .woman_wrap .img_bg {
  position: absolute;
  bottom: -17rem;
  right: 0;
  width: 35rem;
  height: 76rem;
  max-width: 40%;
}

main.recruit .recruit_woman_staff .woman_wrap .img_bg.lazyloaded {
  background: url(../img/recruit_women.png) center/cover no-repeat;
}

main.recruit .recruit_woman_staff .staff_wrap {
  padding-top: 20rem;
  padding-right: 26rem;
  padding-left: 26rem;
  position: relative;
}

@media screen and (max-width: 999px) {
  main.recruit .recruit_woman_staff .staff_wrap {
    padding-right: 30px;
    padding-left: 30px;
  }
}

main.recruit .recruit_woman_staff .staff_wrap .staff_inner {
  position: relative;
  z-index: 1;
}

main.recruit .recruit_woman_staff .staff_wrap .gray_bg1 {
  position: absolute;
  width: 54rem;
  height: 162rem;
  background: #EFEFEF;
  top: 12rem;
  left: 15rem;
  max-width: 40%;
}

@media screen and (max-width: 999px) {
  main.recruit .recruit_woman_staff .staff_wrap .gray_bg1 {
    left: 10%;
  }
}

main.recruit .recruit_woman_staff .staff_wrap .gray_bg2 {
  position: absolute;
  width: 54rem;
  height: 104rem;
  max-width: 50%;
  right: 10%;
  bottom: 9rem;
  background: #EFEFEF;
}

main.recruit .recruit_woman_staff .staff_wrap .img_bg {
  position: absolute;
  bottom: 90rem;
  right: 0;
  width: 58rem;
  height: 75rem;
  max-width: 50%;
}

main.recruit .recruit_woman_staff .staff_wrap .img_bg.lazyloaded {
  background: url(../img/recruit_treatment.png) center/cover no-repeat;
}

main.recruit .recruit_woman_staff .staff_wrap .recruit_scrolldown {
  top: 35rem;
}

main.recruit .recruit_woman_staff .recruit_scrolldown {
  position: absolute;
  right: 13rem;
  top: 25rem;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 999px) {
  main.recruit .recruit_woman_staff .recruit_scrolldown {
    right: 2rem;
  }
}

main.recruit .recruit_woman_staff .recruit_scrolldown .scrollline {
  width: 22rem;
  height: 1px;
  background: #808080;
  position: relative;
  margin-right: 1.7rem;
}

main.recruit .recruit_woman_staff .recruit_scrolldown .scrollline::after {
  content: "";
  display: block;
  width: 3.6rem;
  height: 1px;
  background: #7400B1;
  position: absolute;
  right: 0;
}

main.recruit .recruit_woman_staff .recruit_scrolldown .scroll_img {
  width: 2.7rem;
  height: 1.3rem;
  background: url(../img/recruit_scroll.png) center/contain no-repeat;
  margin-right: 1.5rem;
}

main.recruit .recruit_woman_staff .recruit_scrolldown .scrolldown {
  font-size: 1rem;
  font-weight: 400;
  white-space: nowrap;
}

main.recruit .recruit_woman_staff .scroll_box {
  max-height: 38.4rem;
  overflow: hidden auto;
  position: relative;
  padding-right: 14rem;
  margin-right: -14rem;
}

@media screen and (max-width: 999px) {
  main.recruit .recruit_woman_staff .scroll_box {
    padding-right: 2rem;
    margin-right: -2rem;
  }
}

main.recruit .recruit_woman_staff .scroll_box::-webkit-scrollbar {
  display: none;
}

main.recruit .recruit_woman_staff .scroll_box .simplebar-content-wrapper, main.recruit .recruit_woman_staff .scroll_box .simplebar-offset, main.recruit .recruit_woman_staff .scroll_box .simplebar-mask, main.recruit .recruit_woman_staff .scroll_box .simplebar-wrapper, main.recruit .recruit_woman_staff .scroll_box .simplebar-content {
  overflow-x: hidden !important;
}

main.recruit .recruit_woman_staff .scroll_box .simplebar-track.simplebar-vertical {
  background: #808080;
  margin-top: 15.1rem;
  width: 1px;
  -webkit-transform: translate(0.5px, 0px);
          transform: translate(0.5px, 0px);
  margin-right: 1rem;
}

main.recruit .recruit_woman_staff .scroll_box .simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  opacity: 1;
  border-radius: 0;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  background: #7400B1;
}

main.recruit .recruit_woman_staff .scroll_box::after {
  content: "SCROLL DOWN";
  font-size: 1rem;
  font-weight: 400;
  white-space: nowrap;
  letter-spacing: 0.1em;
  position: absolute;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  right: 1rem;
  top: 0;
  -webkit-transform: rotate(-90deg) translate(0%, 0);
          transform: rotate(-90deg) translate(0%, 0);
}

main.recruit .recruit_woman_staff .scroll_box::before {
  content: "";
  position: absolute;
  display: block;
  background: url(../img/recruit_scroll.png) center/contain no-repeat;
  width: 2.7rem;
  height: 1.3rem;
  top: 10.1rem;
  right: 1rem;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: rotate(-90deg) translate(0%, 0%);
          transform: rotate(-90deg) translate(0%, 0%);
}

main.recruit .recruit_qa {
  position: relative;
  padding: 143px 26rem;
}

main.recruit .recruit_qa.lazyloaded {
  background: url(../img/recruit_qa.png) center/cover no-repeat;
}

@media screen and (max-width: 767px) {
  main.recruit .recruit_qa.lazyloaded {
    background: url(../img/sp/recruit_qa.png) center/cover no-repeat;
  }
}

main.recruit .recruit_qa .recruit_qa_title {
  position: absolute;
  left: 90px;
  top: 100px;
  font-size: 40px;
  font-weight: bold;
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

@media screen and (max-width: 767px) and (max-width: 579px) {
  main.recruit .recruit_qa .recruit_qa_title {
    font-size: 6.4vw;
  }
}

main.recruit .recruit_qa .qa_wrap {
  margin: 0 auto;
}

main.recruit .recruit_qa .qa_wrap .title_recruit {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) and (max-width: 579px) {
  main.recruit .recruit_qa .qa_wrap .title_recruit {
    font-size: 4vw;
  }
}

main.recruit .recruit_qa .qa_wrap .qa_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 50px;
}

main.recruit .recruit_qa .qa_wrap .qa_q_wrap {
  margin-bottom: 20px;
}

main.recruit .recruit_qa .qa_wrap .qa_a_wrap {
  margin-bottom: 50px;
}

main.recruit .recruit_qa .qa_wrap .qa_a, main.recruit .recruit_qa .qa_wrap .qa_q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100vw;
  border: solid white 1px;
  background: transparent;
  font-size: 1.9rem;
  font-weight: 700;
  font-family: "Hiragino Kaku Gothic Std", sans-serif;
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  main.recruit .recruit_qa .qa_wrap .qa_a, main.recruit .recruit_qa .qa_wrap .qa_q {
    width: 8vw;
    height: 8vw;
    margin-right: 20px;
  }
}

@media screen and (max-width: 767px) and (max-width: 579px) {
  main.recruit .recruit_qa .qa_wrap .qa_a, main.recruit .recruit_qa .qa_wrap .qa_q {
    font-size: 4.2vw;
  }
}

main.recruit .recruit_qa .qa_wrap .qa_q {
  color: white;
}

main.recruit .recruit_qa .qa_wrap .qa_a {
  color: white;
}

main.recruit .recruit_qa .qa_wrap .qa_text {
  font-size: 1.5rem;
}

@media screen and (max-width: 999px) {
  main.recruit .recruit_qa {
    padding: 58px 30px 170px 30px;
  }
  main.recruit .recruit_qa .recruit_qa_title {
    position: static;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    max-width: 800px;
    margin: 0 auto 58px auto;
  }
  main.recruit .recruit_qa .qa_content {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

main.recruit .recruit_contact {
  padding: 100px 80px;
}

main.recruit .recruit_contact.lazyloaded {
  background:#000000;
}

main.recruit .recruit_contact .recruit_contact_wrap {
  height: 380px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 90px 100px;
  position: relative;
}

main.recruit .recruit_contact .recruit_contact_wrap.lazyloaded {
  background: url(../img/recruit_contact.png) center/cover no-repeat;
}

main.recruit .recruit_contact .recruit_contact_wrap .contact_title {
  font-size: 4rem;
  font-family: "Helvetica";
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  main.recruit .recruit_contact .recruit_contact_wrap .contact_title {
    font-size: 6.4vw;
  }
}

main.recruit .recruit_contact .recruit_contact_wrap .contact_content {
  text-align: center;
  max-width: 620px;
}

@media screen and (max-width: 767px) {
  main.recruit .recruit_contact .recruit_contact_wrap .circle {
    position: absolute;
  }
}

@media screen and (max-width: 767px) {
  main.recruit .recruit_contact .recruit_contact_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  main.recruit .recruit_contact {
    padding: 40px 30px;
  }
  main.recruit .recruit_contact .recruit_contact_wrap {
    padding: 155px 30px 135px 30px;
  }
  main.recruit .recruit_contact .recruit_contact_wrap.lazyloaded {
    background: url(../img/sp/recruit_contact.png) center/cover no-repeat;
  }
}

.header_hidden {
  pointer-events: none;
}

.header_hidden {
  opacity: 0;
}


/*# sourceMappingURL=sub.css.map */