@charset "UTF-8";
body {
  width: 100%;
  font-size: 14px;
  font-weight: normal;
  color: #3E3E3E;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 12px;
  }
}

main {
  position: relative;
  z-index: 10;
  margin-top: 82px;
}
@media screen and (max-width: 1100px) {
  main {
    margin-top: 53px;
  }
}

.sub_title {
  font-size: 18px;
  letter-spacing: 1.08px;
  font-weight: bold;
  margin-top: -20px;
}
@media screen and (max-width: 767px) {
  .sub_title {
    font-size: 16px;
    letter-spacing: 0.96px;
    margin-top: -30px;
  }
}

.control_wrap {
  width: 100%;
  text-align: center;
}
.control_wrap a, .control_wrap button {
  width: 100%;
  max-width: 345px;
}
.control_wrap a.more, .control_wrap button.more {
  width: auto;
}
.control_wrap.more {
  text-align: right;
  color: #114095;
}

a, button, input[type=submit] {
  text-decoration: none;
  line-height: 23px;
}
a.btn, button.btn, input[type=submit].btn {
  padding: 13px 35px;
  background-color: #114095;
  border: 1px solid #114095;
  border-radius: 5px;
  max-width: 320px;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1.12px;
  display: inline-block;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  a.btn, button.btn, input[type=submit].btn {
    font-size: 14px;
    letter-spacing: 0.98px;
    line-height: 16px;
    max-width: 345px;
  }
}
a.back, button.back, input[type=submit].back {
  font-size: 16px;
  color: #114095;
  font-weight: 500;
  position: relative;
}
a.back::before, button.back::before, input[type=submit].back::before {
  content: "";
  display: inline-block;
  background-image: url(../images/icon_arrow_backward_1.svg);
  width: 36px;
  height: 36px;
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  position: relative;
  top: -3px;
  left: -10px;
}
@media screen and (max-width: 767px) {
  a.back, button.back, input[type=submit].back {
    font-size: 14px;
  }
  a.back::before, button.back::before, input[type=submit].back::before {
    width: 26px;
    height: 26px;
    top: -2px;
    left: -8px;
  }
}
a.front, button.front, input[type=submit].front {
  font-size: 17px;
  border-radius: 3px;
  position: relative;
  margin: 0 auto;
  padding: 12px 25px;
  font-weight: 500;
}
a.front::after, button.front::after, input[type=submit].front::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  border-top: solid 2px;
  border-right: solid 2px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
a.cancel, button.cancel, input[type=submit].cancel {
  font-size: 17px;
  background-color: #BEBEBE;
  border: 1px solid #BEBEBE;
  border-radius: 3px;
  position: relative;
  margin: 0 auto;
  padding: 12px 25px;
  font-weight: 500;
}
a.cancel::after, button.cancel::after, input[type=submit].cancel::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  width: 8px;
  height: 8px;
  border-top: solid 2px;
  border-right: solid 2px;
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
}
a.link, button.link, input[type=submit].link {
  display: inline-block;
  color: #114095;
  padding-bottom: 5px;
  border-bottom: 1px solid #114095;
}
a.link:hover, button.link:hover, input[type=submit].link:hover {
  border-bottom: 1px solid #FFFFFF;
}
a.more, button.more, input[type=submit].more {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.28px;
  color: #114095;
  display: inline-block;
  border-bottom: 1px solid #114095;
  position: relative;
  padding-right: 16px;
}
a.more::after, button.more::after, input[type=submit].more::after {
  content: "";
  display: inline-block;
  background-image: url(../images/icon_arrow_forward_1.svg);
  width: 6px;
  height: 11px;
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  margin-left: 10px;
  position: absolute;
  top: 6px;
}
a.more:hover, button.more:hover, input[type=submit].more:hover {
  border-bottom: 1px solid #FFFFFF;
}
@media screen and (max-width: 767px) {
  a.more, button.more, input[type=submit].more {
    font-size: 12px;
  }
}
a:hover, button:hover, input[type=submit]:hover {
  opacity: 0.7;
}
a.nonaction:hover, button.nonaction:hover, input[type=submit].nonaction:hover {
  opacity: 1;
}
a.nonaction img:hover, button.nonaction img:hover, input[type=submit].nonaction img:hover {
  opacity: 0.7;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 46px;
  color: #114095;
  letter-spacing: 3.68px;
  font-weight: bold;
  line-height: 108px;
}
@media screen and (max-width: 767px) {
  h1, h2, h3, h4, h5, h6 {
    font-size: 32px;
    letter-spacing: 2.56px;
  }
}

p {
  display: block;
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  p {
    letter-spacing: 0.6px;
    line-height: 23px;
  }
}

ul, ol {
  display: inline-block;
}

img {
  vertical-align: middle;
}

.head_left {
  display: inline-block;
  color: #3E3E3E;
  font-size: 18px;
  border-left: 3px solid #114095;
  padding-left: 15px;
  letter-spacing: 1.08px;
}
.head_left span {
  margin-left: 10px;
  font-size: 12px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.72px;
}
@media screen and (max-width: 767px) {
  .head_left {
    font-size: 16px;
    letter-spacing: 0.96px;
  }
  .head_left span {
    font-size: 11px;
    letter-spacing: 0.66px;
  }
}

.breadcrumbs {
  max-width: 1440px;
  margin: 12px auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-size: 12px;
}
.breadcrumbs li:not(:last-child) {
  font-weight: normal;
  margin-right: 11px;
}
.breadcrumbs li:not(:last-child)::after {
  content: "";
  display: inline-block;
  background-image: url(../images/icon_arrow_forward_1.svg);
  width: 6px;
  height: 11px;
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  margin-left: 9px;
}
.breadcrumbs li:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 1440px) {
  .breadcrumbs {
    padding: 0 15px;
  }
}

.poppins {
  font-family: "Poppins", sans-serif;
}

.noto {
  font-family: "Noto Sans JP", sans-serif;
}

.field {
  font-weight: 500;
  color: #114095;
}

.jump_out {
  font-family: "shelby", sans-serif;
  color: #114095;
  font-size: 100px;
  z-index: 100;
  font-weight: 500;
}

.bg_wrap {
  position: absolute;
  top: 117px;
  z-index: 0;
}
.bg_wrap img {
  width: 382px;
  height: 529px;
}
@media screen and (max-width: 767px) {
  .bg_wrap img {
    width: 160px;
    height: 221px;
  }
}

.center {
  text-align: center;
}

.flex_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.hidden {
  display: none;
}

.list_message {
  background-color: #FCFCFC;
  padding: 20px;
  width: 100%;
  margin: 0;
}

@media screen and (max-width: 1100px) {
  .pc_only {
    display: none;
  }
}

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

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

.swiper-button-hidden {
  display: none;
}

.swiper-button-disabled {
  display: none !important;
}

.scroll-button {
  width: 70px;
  height: 70px;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 22px;
  background-color: #114095;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  font-size: 30px;
}
@media screen and (max-width: 1100px) {
  .scroll-button {
    width: 55px;
    height: 55px;
    right: 15px;
  }
}

.contact_wrap {
  background-color: #FCFCFC;
  margin-top: 20px;
  width: 100%;
  font-size: 16px;
  padding: 20px;
  line-height: 33px;
  letter-spacing: 0.8px;
}

.category {
  width: 101px;
  font-size: 10px;
  text-align: center;
  color: #000000;
  letter-spacing: 0;
}
.category span {
  display: inline-block;
  width: 101px;
  padding: 3px;
  background-color: #F3F5F8;
  line-height: 17px;
}

.category_wrap {
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  color: #114095;
  margin-bottom: 14px;
  margin-top: -10px;
}
.category_wrap li {
  font-size: 13px;
  border: 1px solid #114095;
  border-radius: 3px;
  margin-right: 10px;
  margin-top: 10px;
}
.category_wrap li a {
  display: inline-block;
  padding: 5px 20px;
}
@media screen and (max-width: 1100px) {
  .category_wrap li a {
    padding: 6px 16px;
  }
}
@media screen and (max-width: 767px) {
  .category_wrap li a {
    font-size: 11px;
    padding: 3px inherit;
  }
}
.category_wrap li a:active {
  background-color: #114095;
  color: #FFFFFF;
}
.category_wrap li.all {
  margin-right: 20px;
}
.category_wrap li.current {
  color: #FFFFFF;
  background-color: #114095;
}
@media screen and (max-width: 1100px) {
  .category_wrap li {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
}
@media screen and (max-width: 1100px) {
  .category_wrap {
    margin-top: 30px;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .category_wrap {
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 4px;
  }
}

.item_list .item .field {
  font-size: 12px;
}
@media screen and (max-width: 1100px) {
  .item_list .item .field {
    font-size: 10px;
  }
}
.item_list .item .name {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  letter-spacing: 1px;
}
.item_list .item .link_wrap {
  margin-top: 10px;
  text-align: right;
}
.item_list .item .link_wrap a {
  font-size: 12px;
  font-weight: 500;
  color: #114095;
  text-align: right;
  line-height: 23px;
  letter-spacing: 0.24px;
}
.item_list .item .link_wrap a::after {
  content: "";
  display: inline-block;
  background-image: url(../images/icon_round_arrow_forward.svg);
  width: 25px;
  height: 26px;
  background-size: contain;
  vertical-align: middle;
  margin-right: 5px;
  background-repeat: no-repeat;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .item_list .item .link_wrap a::after {
    width: 18px;
    height: 18px;
    margin-bottom: 3px;
  }
}
@media screen and (max-width: 767px) {
  .item_list .item .link_wrap a {
    font-size: 10px;
  }
}

.pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination .page-numbers {
  padding: 12px 19px;
  background-color: #EFEFEF;
  border-radius: 3px;
  margin-right: 5px;
  color: #114095;
  letter-spacing: 1.12px;
  line-height: 18px;
  font-family: "Poppins", sans-serif;
}
.pagination .page-numbers.prev, .pagination .page-numbers.next {
  border-radius: 3px;
  position: relative;
  padding: 12px 24px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .pagination .page-numbers.prev, .pagination .page-numbers.next {
    padding: 12px 18px;
  }
}
.pagination .page-numbers.prev::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  width: 7px;
  height: 7px;
  border-top: solid 1px;
  border-right: solid 1px;
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
}
.pagination .page-numbers.next::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  text-align: center;
  width: 7px;
  height: 7px;
  border-top: solid 1px;
  border-right: solid 1px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.pagination .page-numbers:active {
  background-color: #FFFFFF;
  border: 1px solid #114095;
  color: #114095;
  opacity: 1;
}
.pagination .page-numbers:last-child {
  margin-right: 0;
}
.pagination .page-numbers.current {
  background-color: #114095;
  color: #FFFFFF;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .pagination .page-numbers {
    padding: 11px 13px;
  }
}

.title_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-weight: Bold;
  text-align: left;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.title_wrap h1 {
  color: #114095;
  font-family: "Poppins", sans-serif;
  font-size: 52px;
  letter-spacing: 4.16px;
}
@media screen and (max-width: 767px) {
  .title_wrap h1 {
    margin-top: -20px;
    font-size: 40px;
    letter-spacing: 2.4px;
    white-space: nowrap;
  }
}
.title_wrap h2 {
  color: #114095;
  font-family: "Poppins", sans-serif;
  font-size: 46px;
  letter-spacing: 3.68px;
}
@media screen and (max-width: 767px) {
  .title_wrap h2 {
    font-size: 32px;
    letter-spacing: 2.56px;
  }
}
.title_wrap .sub_title_wrap {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 1.08px;
  color: #3E3E3E;
  margin-top: -15px;
}
.title_wrap .sub_title_wrap img {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .title_wrap .sub_title_wrap {
    font-size: 16px;
    letter-spacing: 0.96px;
    margin-top: -30px;
  }
}
.title_wrap .heading_text {
  width: 70%;
}
.title_wrap > img {
  width: 30%;
  max-width: 280px;
}

.schedule_list {
  width: 100%;
  font-size: 12px;
}
.schedule_list .row {
  min-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #EFEFEF;
  padding: 10px 0;
  position: relative;
}
.schedule_list .row div {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .schedule_list .row div {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.schedule_list .row div .date {
  color: #888888;
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
  text-align: left;
  letter-spacing: 0.84px;
  width: 66px;
}
.schedule_list .row div .date span {
  font-family: "Noto Sans JP", sans-serif;
}
.schedule_list .row div .category {
  width: 100px;
  font-size: 10px;
  text-align: center;
  color: #000000;
  letter-spacing: 0;
  margin: 0 25px;
}
.schedule_list .row div .category p {
  width: 100px;
  background-color: #F3F5F8;
}
@media screen and (max-width: 767px) {
  .schedule_list .row div .category {
    font-size: 10px;
    margin: 0 20px;
  }
}
.schedule_list .row div .title {
  width: auto;
  letter-spacing: 0.84px;
  line-height: 20px;
  text-align: left;
  padding-right: 25px;
  position: relative;
}
.schedule_list .row div .title p {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .schedule_list .row div .title {
    width: 95%;
    letter-spacing: 0.48px;
    line-height: 18px;
  }
}
.schedule_list .row div.link {
  width: 23px;
  position: absolute;
  right: 0;
}
.schedule_list .row div.link a::after {
  content: "";
  display: inline-block;
  background-image: url(../images/icon_round_arrow_forward.svg);
  width: 23px;
  height: 23px;
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .schedule_list .row div.link {
    font-size: 12px;
  }
}

section#schedule {
  margin-top: 140px;
  position: relative;
}
@media screen and (max-width: 1100px) {
  section#schedule .flex_box {
    display: block;
  }
}
section#schedule .left {
  position: relative;
  margin-top: 50px;
  text-align: left;
  margin-right: 63px;
}
@media screen and (max-width: 1100px) {
  section#schedule .left {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  section#schedule .left {
    text-align: left;
  }
}
section#schedule .right {
  width: 100%;
}
@media screen and (max-width: 1100px) {
  section#schedule .right {
    margin: 0 auto;
  }
}
section#schedule .jump_out {
  width: 300px;
  position: absolute;
  top: 120px;
  left: 0;
  -webkit-transform: rotate(349deg);
          transform: rotate(349deg);
  font-weight: 500;
  font-size: 87px;
}
@media screen and (max-width: 1100px) {
  section#schedule .jump_out {
    width: auto;
    left: auto;
    top: 20px;
    right: -60px;
  }
}
@media screen and (max-width: 767px) {
  section#schedule .jump_out {
    width: auto;
    font-size: 46px;
    font-weight: 500;
    top: 50px;
    right: -50px;
  }
}

section#information_list .category_wrap {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
}
section#information_list .item_list {
  margin-top: 52px;
  margin-bottom: 92px;
}
section#information_list .item_list .item {
  text-align: left;
  width: 285px;
}
section#information_list .item_list .item a {
  display: inline;
}
section#information_list .item_list .item a p {
  display: inline-block;
}
section#information_list .item_list .item a p.category {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 11px;
  line-height: 13px;
}
section#information_list .item_list .item a p.name {
  display: block;
  color: #114095;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 19px;
}
section#information_list .item_list .item .img_wrap {
  background-color: #3E3E3E;
  border-radius: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
section#information_list .item_list .item .img_wrap img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  section#information_list .item_list .item .img_wrap {
    width: 237px;
  }
}

#audition_header {
  width: 100%;
  min-height: 360px;
  background-image: url(../images/audition.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  position: relative;
}
#audition_header::before {
  content: "";
  display: block;
  padding-top: 40.8333333333%;
}
#audition_header .title_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  color: #114095;
  text-align: center;
  position: absolute;
  left: 25%;
  top: 50%;
  -webkit-transform: translate(-25%, -50%);
          transform: translate(-25%, -50%);
}
#audition_header .title_wrap h1 {
  font-size: 46px;
  line-height: 1;
  letter-spacing: 3.68px;
}
@media screen and (max-width: 767px) {
  #audition_header .title_wrap h1 {
    font-size: 32px;
    line-height: 1;
    letter-spacing: 2.56px;
  }
}
#audition_header .title_wrap .sub_title {
  margin-top: 10px;
  margin-bottom: 22px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #audition_header .title_wrap .sub_title {
    display: block;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0;
  }
}
#audition_header .title_wrap p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  letter-spacing: 0.8px;
  line-height: 33px;
}
@media screen and (max-width: 767px) {
  #audition_header .title_wrap p {
    font-size: 12px;
    letter-spacing: 2.56px;
    line-height: 23px;
  }
}
#audition_header .title_wrap .btn {
  width: 345px;
  font-size: 17px;
  letter-spacing: 1.19px;
  font-weight: bold;
  margin-top: 45px;
}
@media screen and (max-width: 1100px) {
  #audition_header .title_wrap .btn {
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  #audition_header .title_wrap .btn {
    font-size: 14px;
    letter-spacing: 0.98px;
    line-height: 1;
    text-align: center;
  }
}
@media screen and (max-width: 1100px) {
  #audition_header .title_wrap {
    left: 35%;
  }
}
@media screen and (max-width: 767px) {
  #audition_header .title_wrap {
    left: 25%;
    top: 60%;
    text-align: left;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
#audition_header .jump_out {
  position: absolute;
  top: 0px;
  left: -35%;
  -webkit-transform: rotate(344deg);
          transform: rotate(344deg);
  font-size: 110px;
  color: #FFFFFF;
  line-height: 27px;
}
@media screen and (max-width: 1100px) {
  #audition_header .jump_out {
    font-size: 70px;
    top: 5%;
    left: -30%;
  }
}
@media screen and (max-width: 767px) {
  #audition_header .jump_out {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    font-size: 48px;
    left: 5%;
    top: -35%;
  }
}

input, textarea, select {
  width: 100%;
  border: 1px solid #DDDDDD;
  border-radius: 3px;
  background-color: #FFFFFF;
  padding: 0 10px;
  font-size: 16px;
}
input.hidden, textarea.hidden, select.hidden {
  display: none !important;
}
@media screen and (max-width: 1100px) {
  input, textarea, select {
    max-width: 550px;
  }
}
@media screen and (max-width: 767px) {
  input, textarea, select {
    max-width: none;
    padding: 0 15px;
  }
}

input, select {
  height: 42px;
}

textarea {
  padding-top: 10px;
  padding-bottom: 10px;
}

form {
  font-size: 14px;
  letter-spacing: 0.7px;
  line-height: 27px;
}
form .table_wrap {
  background-color: #FCFCFC;
}
form .table_wrap table {
  text-align: left;
  width: 100%;
  margin-bottom: 20px;
  border-collapse: separate;
  border-spacing: 40px;
}
form .table_wrap table:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  form .table_wrap table th, form .table_wrap table td {
    display: block;
  }
}
form .table_wrap table th {
  font-weight: 500;
  width: 15%;
  text-align: left;
  vertical-align: middle;
}
form .table_wrap table th.required::after {
  content: "※";
  color: #114095;
  padding-left: 5px;
}
form .table_wrap table th p.required::after {
  content: "※";
  color: #114095;
  padding-left: 5px;
}
form .table_wrap table th.textarea_head {
  vertical-align: 0;
  padding: 5px 0px;
}
form .table_wrap table th .annotation {
  font-size: 11px;
}
form .table_wrap table td {
  width: 85%;
  margin-right: 40px;
  vertical-align: middle;
}
form .table_wrap table td label {
  min-width: 126px;
  height: 33px;
  text-align: center;
  margin-right: 21px;
  border: 2px solid #114095;
}
form .table_wrap table td textarea {
  height: 170px;
  resize: none;
}
form .table_wrap table td .birth {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
form .table_wrap table td .birth p {
  margin-left: 10px;
  margin-right: 26px;
}
@media screen and (max-width: 767px) {
  form .table_wrap table td .birth p {
    margin-left: 5px;
    margin-right: 10px;
  }
}
form .table_wrap table td .birth p:last-child {
  margin-right: 0;
}
form .table_wrap table td .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
form .table_wrap table td .container::after {
  content: url(../images/icon_arrow_forward_1.svg);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  position: absolute;
  right: 18px;
  top: 9px;
  pointer-events: none;
}
form .table_wrap table td .s {
  width: 160px;
}
form .table_wrap table td .m {
  width: 320px;
}
@media screen and (max-width: 767px) {
  form .table_wrap table td .m {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  form .table_wrap table td {
    text-align: left;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  form .table_wrap table {
    width: auto;
    text-align: left;
    border-spacing: 30px;
  }
}
form .table_wrap table td input[name=height] {
  margin-right: 10px;
}
form [type=file] {
  display: none !important;
}
form .mw-wp-form_file {
  display: none !important;
}
form .mwform-file-delete {
  display: none !important;
}
form .upload-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
form .upload-box .select_label:hover {
  cursor: pointer;
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  form .upload-box {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}

header {
  width: 100%;
  position: fixed;
  background-color: #FFFFFF;
  z-index: 900;
  text-align: center;
  border-bottom: 1px solid #EFEFEF;
  /*========= ボタンのためのCSS ===============*/
  /*×に変化*/
  /*========= ナビゲーションのためのCSS ===============*/
  /*アクティブクラスがついたら位置を0に*/
  /*ナビゲーションの縦スクロール*/
  /*ナビゲーション*/
  /*リストのレイアウト設定*/
}
@media screen and (max-width: 1100px) {
  header .sp_menu {
    display: block;
    background-color: #114095;
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header .nav {
    display: none;
  }
}
header .outline {
  max-width: 1440px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}
header .outline .title {
  line-height: 0;
}
header .outline .title img {
  width: 120px;
  height: auto;
  margin: 14px 0 14px 0;
}
@media screen and (max-width: 767px) {
  header .outline .title img {
    margin: 11px;
  }
}
@media screen and (max-width: 1440px) {
  header .outline .title img {
    margin: 0 15px;
  }
}
header .outline nav {
  line-height: 12px;
}
header .outline nav .menu_item {
  font-weight: 500;
  font-size: 14px;
  list-style: none;
  display: inline-block;
  position: relative;
}
header .outline nav .menu_item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 16px 20px;
}
header .outline nav .menu_item .sub_title {
  color: #BEBEBE;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  margin-top: 2px;
  font-weight: 500;
}
header .outline nav .menu_item.current {
  font-weight: Bold;
  color: #114095;
}
header .outline nav .menu_item.current::after {
  background-color: #114095;
  bottom: 0;
  content: "";
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  width: 100%;
}
header .outline nav .menu_item.current .sub_title {
  color: #114095;
}
header .outline nav .menu_item.contact {
  font-weight: 600;
  margin-left: 40px;
  color: #FFFFFF;
  background-color: #114095;
  list-style: none;
  display: inline-block;
}
header .outline nav .menu_item.contact a {
  margin: 1px;
}
header .outline nav .menu_item.contact a img {
  width: 18px;
  height: 13px;
  margin-bottom: 7px;
}
header .outline nav .menu_item::after {
  background-color: #114095;
  bottom: 0;
  content: "";
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  width: 0;
}
header .outline nav .menu_item:hover::after {
  width: 100%;
}
@media screen and (max-width: 1100px) {
  header .openbtn1 {
    display: inline-block;
  }
}
header .openbtn1 {
  background-color: #114095;
  position: -webkit-sticky;
  position: sticky;
  z-index: 9999; /*ボタンを最前面に*/
  top: 10px;
  cursor: pointer;
  width: 50px;
  height: 53px;
}
header .openbtn1 span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #FFFFFF;
  width: 45%;
}
header .openbtn1 span:nth-of-type(1) {
  top: 15px;
}
header .openbtn1 span:nth-of-type(2) {
  top: 23px;
}
header .openbtn1 span:nth-of-type(3) {
  top: 31px;
}
header .openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
header .openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}
header .openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
header #g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: #114095;
  /*動き*/
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
header #g-nav.panelactive {
  right: 0;
}
header #g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
header #g-nav ul {
  /*ナビゲーション天地中央揃え*/
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 999;
  top: 60px;
}
header #g-nav li {
  list-style: none;
  text-align: center;
}
header #g-nav li a {
  color: #FFFFFF;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}
header #g-nav {
  font-size: 18px;
  letter-spacing: 1.08px;
  line-height: 108px;
}
header #g-nav li {
  list-style: none;
  margin-top: -20px;
}
header #g-nav li.menu_item > * {
  display: inline-block;
}
header #g-nav li.menu_item .sp_sub_title {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  letter-spacing: 0.84px;
  font-weight: 500;
}
header #g-nav li.contact {
  margin-left: 0;
}

footer {
  margin-top: 98px;
  height: 321px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  footer {
    display: block;
  }
}
footer .left {
  min-width: 38%;
  background-color: #114095;
  color: #FFFFFF;
  text-align: center;
  vertical-align: middle;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .left p {
  font-weight: 500;
  letter-spacing: 0;
}
footer .left p#footer_title {
  font-family: "Poppins", sans-serif;
  font-size: 46px;
  font-weight: bold;
  letter-spacing: 3.68px;
  line-height: 108px;
}
@media screen and (max-width: 767px) {
  footer .left p#footer_title {
    font-size: 32px;
    letter-spacing: 2.56px;
    line-height: 73px;
  }
}
footer .left p#footer_sub_title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 27px;
  margin-top: -20px;
}
@media screen and (max-width: 767px) {
  footer .left p#footer_sub_title {
    font-size: 14px;
    letter-spacing: 0;
    line-height: 18px;
    margin-top: -10px;
  }
}
footer .left p.sentence {
  line-height: 26px;
}
@media screen and (max-width: 767px) {
  footer .left p.sentence {
    font-size: 13px;
    letter-spacing: 0;
    line-height: 22px;
  }
}
footer .left div {
  margin-top: 24px;
}
footer .left div .btn {
  background-color: #01B2FC;
  border-color: #01B2FC;
}
footer .left div .btn::before {
  content: "";
  display: inline-block;
  background-image: url(../images/icon_mail.svg);
  width: 18px;
  height: 13px;
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  margin-right: 11px;
}
footer .left div .btn:active {
  color: inherit;
}
@media screen and (max-width: 767px) {
  footer .left div {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1100px) {
  footer .left {
    min-width: 45%;
  }
}
@media screen and (max-width: 767px) {
  footer .left {
    padding-bottom: 30px;
  }
}
footer .right {
  width: 62%;
  padding: 40px 60px;
  background-color: #FCFCFC;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
}
footer .right a {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
footer .right p {
  font-weight: normal;
}
footer .right p.address {
  margin-bottom: 5px;
  line-height: 22px;
  letter-spacing: 0.7px;
}
footer .right p.tel {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 18px;
  letter-spacing: 0.7px;
  line-height: 14px;
  font-family: "Poppins", sans-serif;
}
footer .right p.tel::before {
  content: "";
  display: inline-block;
  background-image: url(../images/icon_tel.svg);
  width: 16px;
  height: 16px;
  background-size: contain;
  vertical-align: middle;
  margin-right: 5px;
  background-repeat: no-repeat;
}
footer .right p.policy {
  font-weight: 500;
  font-size: 12px;
  display: inline-block;
  letter-spacing: 0.6px;
  line-height: 14px;
}
footer .right p.copyright {
  margin-top: 18px;
  font-weight: 500;
  font-size: 12px;
  font-family: "Poppins", sans-serif;
}
footer .right #footer_logo {
  margin-bottom: 10px;
}
footer .right #footer_logo img {
  width: 159px;
  height: 53px;
}
footer .right .twitter_icon {
  margin-bottom: 20px;
}
footer .right .twitter_icon img {
  width: 25px;
  height: 20px;
}
@media screen and (max-width: 767px) {
  footer .right {
    width: 100%;
    padding: 30px 15px;
  }
}

section {
  text-align: center;
  position: relative;
  z-index: 0;
  width: 100%;
}
section .inner_wrap {
  max-width: 1101px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  padding: 0 15px;
}
@media screen and (max-width: 1100px) {
  section .inner_wrap {
    padding: 0 15px;
  }
}
section.outline_max {
  max-width: 1440px;
}

#page_top #visual_wrap {
  margin: 0 auto;
  background: url(../images/main_visual.png) no-repeat 0 0/cover;
  background-position: center;
  max-width: 1920px;
  z-index: 10;
}

/*
  XO Slider
*/
#page_top #visual_wrap .xo-slider-template-default .swiper-slide img {
  height: 600px;
}

.xo-slider img.slide-image {
  object-fit: contain;
}

#page_top #visual_wrap .swiper-wrapper {
  align-items: center;
}

@media screen and (max-width: 767px) {
  .xo-slider-template-default .swiper-slide img, .swiper-autoheight {
    height: auto !important;
  }
}

#page_top #visual_wrap .main_visual {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: right;
  -webkit-justify-content: right;
      -ms-flex-pack: right;
          justify-content: right;
}
#page_top #visual_wrap .main_visual .bg {
  -o-object-fit: none;
     object-fit: none;
  width: 100%;
  height: 100%;
}
#page_top #visual_wrap .main_visual .logo_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
#page_top #visual_wrap .main_visual .logo_wrap img {
  width: 420px;
  height: auto;
}
@media screen and (max-width: 767px) {
  #page_top #visual_wrap .main_visual .logo_wrap img {
    width: 240px;
  }
}
#page_top #visual_wrap .main_visual .logo_wrap p {
  color: #114095;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.9px;
  line-height: 20px;
  font-family: "Poppins", sans-serif;
  opacity: 0.4;
  margin-top: -5px;
}
@media screen and (max-width: 767px) {
  #page_top #visual_wrap .main_visual .logo_wrap p {
    font-size: 10px;
  }
}
@media screen and (max-width: 1100px) {
  #page_top #visual_wrap .main_visual .logo_wrap {
    position: static;
    -webkit-transform: none;
            transform: none;
  }
}
@media screen and (max-width: 1100px) {
  #page_top #visual_wrap .main_visual {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  #page_top #visual_wrap .main_visual {
    height: auto;
  }
}
#page_top #visual_wrap .pc_banner {
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 20px;
  position: relative;
  margin-top: 20px;
}
#page_top #visual_wrap .pc_banner .ad a {
  max-width: 320px;
  display: inline-block;
  margin: 0 10px 20px;
  background-color: #FFFFFF;
}
#page_top #visual_wrap .pc_banner .ad a img {
  max-width: 100%;
}
#page_top #visual_wrap .pc_banner .ad a img:hover {
  opacity: 0.7;
}
#page_top #visual_wrap .pc_banner .ad a:last-of-type {
  margin-bottom: 20px;
}
#page_top #visual_wrap .pc_banner .ad a:hover {
  opacity: 1;
}
#page_top #visual_wrap .pc_banner .banner_contact {
  width: 100%;
  border: 1px solid #114095;
  padding: 31px 16px;
  margin-top: 58px;
  margin-bottom: 20px;
  position: relative;
  background-color: #FFFFFF;
}
#page_top #visual_wrap .pc_banner .banner_contact p {
  letter-spacing: 0.84px;
  line-height: 20px;
  font-family: "noto-sans-cjk-jp", sans-serif;
}
#page_top #visual_wrap .pc_banner .banner_contact p.head {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 11px;
}
#page_top #visual_wrap .pc_banner .banner_contact .btn {
  width: 100%;
  max-width: 345px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.98px;
  margin-top: 19px;
}
#page_top #visual_wrap .pc_banner .banner_contact .jump_out {
  left: 20px;
  top: -20px;
  position: absolute;
  font-size: 60px;
  line-height: 28px;
  -webkit-transform: rotate(351deg);
          transform: rotate(351deg);
}
@media screen and (max-width: 1100px) {
  #page_top #visual_wrap .pc_banner {
    display: none;
  }
}
#page_top .tab_sp_banner {
  display: none;
  width: 100%;
}
#page_top .tab_sp_banner .ad {
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#page_top .tab_sp_banner .ad *, #page_top .tab_sp_banner .ad *:before, #page_top .tab_sp_banner .ad *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#page_top .tab_sp_banner .ad.col_2 {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
#page_top .tab_sp_banner .ad.col_2 > * {
  width: calc(50% - 6px);
  margin-right: 12px;
  margin-bottom: 30px;
}
#page_top .tab_sp_banner .ad.col_2 > *:nth-child(2n) {
  margin-right: 0;
}
#page_top .tab_sp_banner .ad.col_2 > * > * {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 300px) {
  #page_top .tab_sp_banner .ad.col_2 > * {
    width: 100%;
    margin-right: 0;
  }
}
#page_top .tab_sp_banner .ad a {
  max-width: 49%;
  background-color: #FFFFFF;
  margin-right: 20px;
}
#page_top .tab_sp_banner .ad a img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
}
#page_top .tab_sp_banner .ad a img:hover {
  opacity: 0.7;
}
#page_top .tab_sp_banner .ad a:last-child {
  margin-right: 0;
}
#page_top .tab_sp_banner .ad a:hover {
  opacity: 1;
}
#page_top .tab_sp_banner .banner_contact {
  width: 100%;
  max-width: 600px;
  border: 1px solid #114095;
  padding: 31px 16px;
  margin-top: 58px;
  position: relative;
  background-color: #FFFFFF;
  text-align: center;
}
#page_top .tab_sp_banner .banner_contact p {
  letter-spacing: 0.84px;
  line-height: 20px;
  font-family: "noto-sans-cjk-jp", sans-serif;
}
#page_top .tab_sp_banner .banner_contact p.head {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 11px;
}
#page_top .tab_sp_banner .banner_contact .btn {
  width: 100%;
  max-width: 345px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.98px;
  margin-top: 19px;
}
#page_top .tab_sp_banner .banner_contact .jump_out {
  left: 20px;
  top: -20px;
  position: absolute;
  font-size: 60px;
  line-height: 28px;
  -webkit-transform: rotate(351deg);
          transform: rotate(351deg);
}
@media screen and (max-width: 1100px) {
  #page_top .tab_sp_banner .banner_contact {
    margin-top: 55px;
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 1100px) {
  #page_top .tab_sp_banner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 15px;
    margin: 0 auto;
    margin-top: 30px;
  }
}
#page_top #schedule {
  margin-top: 76px;
}
#page_top #schedule .right {
  max-width: 877px;
}
#page_top #schedule .control_wrap {
  margin-top: 26px;
}
#page_top #information_list {
  margin-top: 115px;
}
#page_top #information_list .item_list {
  max-width: none;
  margin-bottom: 45px;
}
#page_top #information_list .item_list .item {
  width: 100%;
  max-width: none;
  margin-bottom: 0;
}
#page_top #information_list .item_list .item .img_wrap {
  position: relative;
  overflow: hidden;
  padding-top: 60%;
  width: auto;
}
#page_top #information_list .item_list .item .img_wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}
#page_top #information_list .item_list .item .category {
  font-size: 11px;
}
#page_top #information_list .item_list .item .category span {
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  border-radius: 3px;
}
@media screen and (max-width: 767px) {
  #page_top #information_list .item_list .item .category {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  #page_top #information_list .item_list .item .name {
    font-size: 13px;
  }
}
#page_top #information_list .item_list .item .link_wrap a {
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  #page_top #information_list .item_list .item .link_wrap a {
    font-size: 10px;
  }
}
#page_top #information_list .swiper {
  overflow: hidden;
  position: static;
  width: 90%;
  /* 任意の画像に変更 */
}
#page_top #information_list .swiper .swiper-button-prev {
  position: absolute; /* ボタンの絶対位置を設定 */
  top: 44%;
  left: 1%;
}
#page_top #information_list .swiper .swiper-button-prev::after {
  content: url(../images/icon_arrow_backward_1.svg);
}
@media screen and (max-width: 767px) {
  #page_top #information_list .swiper .swiper-button-prev {
    top: 47%;
  }
}
#page_top #information_list .swiper .swiper-button-next {
  position: absolute; /* ボタンの絶対位置を設定 */
  top: 44%;
  right: 1%;
}
#page_top #information_list .swiper .swiper-button-next::after {
  content: url(../images/icon_round_arrow_forward.svg);
}
@media screen and (max-width: 767px) {
  #page_top #information_list .swiper .swiper-button-next {
    top: 47%;
  }
}
@media screen and (max-width: 767px) {
  #page_top #information_list .swiper {
    width: 80%;
  }
}
#page_top #information_list .control_wrap {
  margin-top: 0px;
}
@media screen and (max-width: 767px) {
  #page_top #information_list .control_wrap {
    margin-top: -30px;
  }
}
@media screen and (max-width: 1100px) {
  #page_top #information_list {
    margin-top: 30px;
    padding: 0 15px;
  }
  #page_top #information_list.col_4 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
#page_top #talent_list {
  margin-top: 85px;
}
#page_top #talent_list .item_list {
  width: 85%;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 0;
}
#page_top #talent_list .item_list *, #page_top #talent_list .item_list *:before, #page_top #talent_list .item_list *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#page_top #talent_list .item_list.col_3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
#page_top #talent_list .item_list.col_3 > * {
  width: calc(33.33333% - 17px);
  margin-right: 17px;
  margin-bottom: 46px;
}
#page_top #talent_list .item_list.col_3 > * > * {
  background: #ff0000;
  height: 120px;
  position: relative;
  overflow: hidden;
}
#page_top #talent_list .item_list .item a.img_wrap:hover {
  opacity: 1;
}
#page_top #talent_list .item_list .item .img_wrap {
  background-color: #FFFFFF;
  margin-bottom: 10px;
  border-radius: 5px;
}
#page_top #talent_list .item_list .item .img_wrap img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
#page_top #talent_list .item_list .item .img_wrap img:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  #page_top #talent_list .item_list .item .img_wrap img {
    width: 100%;
    height: auto;
  }
}
#page_top #talent_list .item_list .item .field {
  font-size: 9px;
  line-height: 15px;
  margin-bottom: 3px;
}
#page_top #talent_list .item_list .item .name {
  font-size: 16px;
  line-height: 18px;
}
#page_top #talent_list .item_list .item .name::after {
  content: "";
  position: absolute;
  background-image: url(../images/icon_round_arrow_forward.svg);
  width: 25px;
  height: 25px;
  background-size: contain;
  vertical-align: middle;
  margin-right: 3px;
  top: -3px;
  right: 0;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  #page_top #talent_list .item_list .item .name {
    font-size: 14px;
  }
}
@media screen and (max-width: 1100px) {
  #page_top #talent_list .item_list .item {
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  #page_top #talent_list .item_list {
    width: 100%;
    margin-top: 40px;
  }
  #page_top #talent_list .item_list *, #page_top #talent_list .item_list *:before, #page_top #talent_list .item_list *:after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #page_top #talent_list .item_list.col_2 {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  #page_top #talent_list .item_list.col_2 > * {
    width: calc(50% - 6px);
    margin-right: 12px;
    margin-bottom: 30px;
  }
  #page_top #talent_list .item_list.col_2 > *:nth-child(2n) {
    margin-right: 0;
  }
  #page_top #talent_list .item_list.col_2 > * > * {
    position: relative;
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) and (max-width: 300px) {
  #page_top #talent_list .item_list.col_2 > * {
    width: 100%;
    margin-right: 0;
  }
}
#page_top #talent_list .swiper {
  overflow: hidden;
  position: static;
  width: 85%;
  /* 任意の画像に変更 */
}
#page_top #talent_list .swiper .swiper-button-prev {
  position: absolute; /* ボタンの絶対位置を設定 */
  top: 58%;
  left: 0%;
}
#page_top #talent_list .swiper .swiper-button-prev::after {
  content: url(../images/icon_arrow_backward_1.svg);
}
@media screen and (max-width: 1250px) {
  #page_top #talent_list .swiper .swiper-button-prev {
    left: 3%;
  }
}
#page_top #talent_list .swiper .swiper-button-next {
  position: absolute; /* ボタンの絶対位置を設定 */
  top: 58%;
  right: 0%;
}
#page_top #talent_list .swiper .swiper-button-next::after {
  content: url(../images/icon_round_arrow_forward.svg);
}
@media screen and (max-width: 1250px) {
  #page_top #talent_list .swiper .swiper-button-next {
    right: 3%;
  }
}
@media screen and (max-width: 767px) {
  #page_top #talent_list .swiper {
    width: 80%;
  }
}
#page_top #talent_list .control_wrap {
  margin-top: 26px;
}
#page_top #talent_list .control_wrap a {
  color: #114095;
}
@media screen and (max-width: 1100px) {
  #page_top #talent_list {
    margin-top: 60px;
  }
}
#page_top #audition_header {
  max-width: 1101px;
  margin: 0 auto;
  margin-top: 116px;
}
#page_top #audition_header .title_box {
  padding-left: 10px;
}
#page_top #audition_header .control_wrap {
  background-color: #FFFFFF;
  border-radius: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 40px;
}
#page_top #audition_header .control_wrap .btn {
  margin-top: 0;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media screen and (max-width: 767px) {
  #page_top #audition_header .control_wrap .btn {
    padding: 20px 20px;
  }
}
@media screen and (max-width: 767px) {
  #page_top #audition_header .control_wrap {
    margin-top: 29px;
  }
}
#page_top #audition_header .jump_out {
  top: -10px;
  left: -45%;
}
@media screen and (max-width: 1100px) {
  #page_top #audition_header .jump_out {
    top: 5%;
    left: -30%;
  }
}
@media screen and (max-width: 767px) {
  #page_top #audition_header .jump_out {
    top: -36px;
    left: 5%;
  }
}
@media screen and (max-width: 767px) {
  #page_top #audition_header {
    margin-top: 50px;
  }
  #page_top #audition_header .title_wrap {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    padding: 20px 20px;
    top: 65%;
  }
  #page_top #audition_header .title_wrap > p {
    width: 100%;
  }
  #page_top #audition_header .title_container {
    margin-right: auto;
  }
  #page_top #audition_header .title_box {
    padding-left: 10px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #page_top .sp {
    display: inline-block;
  }
  #page_top #sp_audition_contents {
    width: 100%;
    padding: 0 15px;
    text-align: center;
  }
  #page_top #sp_audition_contents p {
    text-align: left;
    margin: 16px 0;
    font-size: 12px;
    letter-spacing: 0.6px;
    line-height: 23px;
  }
  #page_top #sp_audition_contents .btn {
    width: 100%;
    max-width: 345px;
    font-size: 14px;
    letter-spacing: 0.98px;
    line-height: 24px;
    color: #FFFFFF;
    max-width: none;
  }
}
#page_top #bg_1 {
  top: -77px;
}
#page_top #bg_2 {
  top: 0;
  right: 0px;
}
#page_top #bg_3 {
  top: 0;
}
@media screen and (max-width: 1100px) {
  #page_top #bg_3 img {
    width: 240px;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  #page_top #bg_3 img {
    width: 120px;
  }
}
#page_top footer {
  margin-top: 123px;
}
@media screen and (max-width: 1100px) {
  #page_top footer {
    margin-top: 100px;
  }
}

#page_talent_list section#talent_list h1 {
  margin-top: 20px;
  font-family: "Poppins", sans-serif;
}
#page_talent_list section#talent_list .item_list {
  width: 85%;
  margin: 0 auto;
  margin-top: 60px;
  margin-bottom: 112px;
}
#page_talent_list section#talent_list .item_list *, #page_talent_list section#talent_list .item_list *:before, #page_talent_list section#talent_list .item_list *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#page_talent_list section#talent_list .item_list.col_3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
#page_talent_list section#talent_list .item_list.col_3 > * {
  width: calc(33.33333% - 17px);
  margin-right: 17px;
  margin-bottom: 46px;
}
#page_talent_list section#talent_list .item_list.col_3 > * > * {
  background: #ff0000;
  height: 120px;
  position: relative;
  overflow: hidden;
}
#page_talent_list section#talent_list .item_list .item .img_wrap {
  background-color: #FFFFFF;
  border-radius: 5px;
  margin-bottom: 10px;
}
#page_talent_list section#talent_list .item_list .item .img_wrap:hover {
  opacity: 1;
}
#page_talent_list section#talent_list .item_list .item .img_wrap img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
#page_talent_list section#talent_list .item_list .item .img_wrap img:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  #page_talent_list section#talent_list .item_list .item .img_wrap img {
    width: 100%;
    height: auto;
  }
}
#page_talent_list section#talent_list .item_list .item .field {
  font-size: 9px;
  line-height: 15px;
  margin-bottom: 3px;
}
#page_talent_list section#talent_list .item_list .item .name {
  font-size: 14px;
  line-height: 18px;
}
#page_talent_list section#talent_list .item_list .item .name::after {
  content: "";
  position: absolute;
  background-image: url(../images/icon_round_arrow_forward.svg);
  width: 25px;
  height: 25px;
  background-size: contain;
  vertical-align: middle;
  margin-right: 3px;
  top: -3px;
  right: 0;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1100px) {
  #page_talent_list section#talent_list .item_list .item {
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  #page_talent_list section#talent_list .item_list {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 65px;
  }
  #page_talent_list section#talent_list .item_list *, #page_talent_list section#talent_list .item_list *:before, #page_talent_list section#talent_list .item_list *:after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #page_talent_list section#talent_list .item_list.col_2 {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  #page_talent_list section#talent_list .item_list.col_2 > * {
    width: calc(50% - 6px);
    margin-right: 12px;
    margin-bottom: 30px;
  }
  #page_talent_list section#talent_list .item_list.col_2 > *:nth-child(2n) {
    margin-right: 0;
  }
  #page_talent_list section#talent_list .item_list.col_2 > * > * {
    position: relative;
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) and (max-width: 300px) {
  #page_talent_list section#talent_list .item_list.col_2 > * {
    width: 100%;
    margin-right: 0;
  }
}
#page_talent_list section#talent_list a.back {
  margin-top: 111px;
}
#page_talent_list #bg_1 {
  top: -10px;
}
#page_talent_list footer {
  margin-top: 98px;
}
@media screen and (max-width: 767px) {
  #page_talent_list footer {
    margin-top: 63px;
  }
}

#page_artist section#artist {
  position: relative;
}
#page_artist section#artist h2 {
  font-family: "Poppins", sans-serif;
}
#page_artist section#artist #profile .inner_wrap {
  max-width: 1086px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 200px;
}
#page_artist section#artist #profile .inner_wrap .profile_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#page_artist section#artist #profile .inner_wrap .profile_wrap #img_wrap {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 60px;
  position: relative;
}
#page_artist section#artist #profile .inner_wrap .profile_wrap #img_wrap img {
  max-width: 427px;
  height: auto;
}
@media screen and (max-width: 1100px) {
  #page_artist section#artist #profile .inner_wrap .profile_wrap #img_wrap img {
    width: 100%;
    height: auto;
  }
}
#page_artist section#artist #profile .inner_wrap .profile_wrap #img_wrap .jump_out {
  color: #3E3E3E;
  position: absolute;
  left: 20px;
  bottom: -25%;
  -webkit-transform: rotate(349deg);
          transform: rotate(349deg);
  white-space: nowrap;
}
@media screen and (max-width: 1100px) {
  #page_artist section#artist #profile .inner_wrap .profile_wrap #img_wrap .jump_out {
    left: auto;
    bottom: -5%;
    right: 0;
    color: #BEBEBE;
  }
}
@media screen and (max-width: 767px) {
  #page_artist section#artist #profile .inner_wrap .profile_wrap #img_wrap .jump_out {
    font-size: 60px;
    line-height: 28px;
    bottom: 3%;
    right: 15px;
  }
}
@media screen and (max-width: 1100px) {
  #page_artist section#artist #profile .inner_wrap .profile_wrap #img_wrap {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 0;
  }
}
#page_artist section#artist #profile .inner_wrap .profile_wrap #introduction {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
  margin-left: 79px;
  text-align: left;
  margin-top: 60px;
}
#page_artist section#artist #profile .inner_wrap .profile_wrap #introduction .field {
  font-size: 14px;
  letter-spacing: 0.28px;
  line-height: 20px;
}
@media screen and (max-width: 767px) {
  #page_artist section#artist #profile .inner_wrap .profile_wrap #introduction .field {
    font-size: 12px;
    letter-spacing: 0.24px;
    margin: 0;
  }
}
#page_artist section#artist #profile .inner_wrap .profile_wrap #introduction h1 {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 4px;
  line-height: 20px;
  color: #3E3E3E;
  margin: 20px 0;
}
@media screen and (max-width: 767px) {
  #page_artist section#artist #profile .inner_wrap .profile_wrap #introduction h1 {
    font-size: 26px;
    letter-spacing: 1.82px;
    line-height: 47px;
    margin: 0;
  }
}
#page_artist section#artist #profile .inner_wrap .profile_wrap #introduction #en_name {
  letter-spacing: 0.84px;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  #page_artist section#artist #profile .inner_wrap .profile_wrap #introduction #en_name {
    letter-spacing: 0.72px;
    line-height: 16px;
    margin: 0;
  }
}
#page_artist section#artist #profile .inner_wrap .profile_wrap #introduction table {
  margin-top: 20px;
  padding: 20px 15px;
  width: 100%;
  background-color: #FCFCFC;
  border-collapse: separate;
  border-spacing: 0 10px;
  line-height: 16px;
}
@media screen and (max-width: 1100px) {
  #page_artist section#artist #profile .inner_wrap .profile_wrap #introduction table {
    padding: 20px 15px;
    max-width: 560px;
  }
}
@media screen and (max-width: 767px) {
  #page_artist section#artist #profile .inner_wrap .profile_wrap #introduction table {
    font-size: 13px;
    padding: 20px 5px;
  }
}
#page_artist section#artist #profile .inner_wrap .profile_wrap #introduction #history {
  margin-top: 20px;
  letter-spacing: 0.7px;
  line-height: 25px;
}
#page_artist section#artist #profile .inner_wrap .profile_wrap #introduction .btn {
  max-width: 230px;
  margin-top: 20px;
  background-color: #114095;
  color: #FFFFFF;
  text-align: center;
}
#page_artist section#artist #profile .inner_wrap .profile_wrap #introduction .btn::before {
  content: "";
  display: inline-block;
  background-image: url(../images/icon_mail.svg);
  width: 18px;
  height: 13px;
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  margin-right: 11px;
}
#page_artist section#artist #profile .inner_wrap .profile_wrap #introduction .link_wrap {
  margin-top: 28px;
  color: #114095;
}
#page_artist section#artist #profile .inner_wrap .profile_wrap #introduction .link_wrap div {
  margin-bottom: 20px;
}
#page_artist section#artist #profile .inner_wrap .profile_wrap #introduction .link_wrap div::after {
  content: "";
  display: inline-block;
  background-image: url(../images/icon_external_link.svg);
  width: 18px;
  height: 13px;
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  #page_artist section#artist #profile .inner_wrap .profile_wrap #introduction .link_wrap div {
    margin-bottom: 14px;
  }
}
@media screen and (max-width: 1100px) {
  #page_artist section#artist #profile .inner_wrap .profile_wrap #introduction {
    margin-top: 20px;
    margin-left: 0;
  }
}
@media screen and (max-width: 1100px) {
  #page_artist section#artist #profile .inner_wrap .profile_wrap {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 100%;
  }
}
@media screen and (max-width: 1100px) {
  #page_artist section#artist #profile .inner_wrap {
    margin-bottom: 67px;
  }
}
#page_artist section#artist #works {
  margin-top: 154px;
}
#page_artist section#artist #works .inner_wrap {
  max-width: 1100px;
  margin: 0 auto;
}
#page_artist section#artist #works .inner_wrap .work_wrap {
  text-align: left;
  margin: 43px;
}
#page_artist section#artist #works .inner_wrap .work_wrap .head_left {
  line-height: 27px;
}
#page_artist section#artist #works .inner_wrap .work_wrap table {
  border-collapse: separate;
  border-spacing: 0 20px;
  margin-bottom: -20px;
  line-height: 1.8;
}
#page_artist section#artist #works .inner_wrap .work_wrap table th {
  padding-right: 25px;
  font-weight: normal;
  vertical-align: top;
  white-space: nowrap;
}
#page_artist section#artist #works .inner_wrap .work_wrap .other {
  margin-top: 20px;
}
#page_artist section#artist #works .inner_wrap .work_wrap .other p {
  margin-bottom: 15px;
}
#page_artist section#artist #works .inner_wrap .work_wrap .other p :last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  #page_artist section#artist #works .inner_wrap .work_wrap {
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  #page_artist section#artist #works {
    margin-top: 65px;
    margin-bottom: 0;
  }
}
#page_artist section#artist #schedule .inner_wrap {
  max-width: 1100px;
  margin: 0 auto;
}
#page_artist section#artist #schedule .inner_wrap .control_wrap {
  margin-top: 25px;
}
#page_artist section#artist #movie {
  margin-top: 154px;
  margin-bottom: 0;
  position: relative;
}
#page_artist section#artist #movie .inner_wrap {
  max-width: 1101px;
  margin: 0 auto;
}
#page_artist section#artist #movie .inner_wrap .swiper {
  width: 90%;
  margin-top: 60px;
  overflow: hidden;
  position: static;
  /* 任意の画像に変更 */
}
#page_artist section#artist #movie .inner_wrap .swiper .swiper-button-prev {
  position: absolute; /* ボタンの絶対位置を設定 */
  top: 70%;
  left: 2%;
}
#page_artist section#artist #movie .inner_wrap .swiper .swiper-button-prev::after {
  content: url(../images/icon_arrow_backward_1.svg);
}
@media screen and (max-width: 1101px) {
  #page_artist section#artist #movie .inner_wrap .swiper .swiper-button-prev {
    top: 68%;
  }
}
@media screen and (max-width: 550px) {
  #page_artist section#artist #movie .inner_wrap .swiper .swiper-button-prev {
    left: 1%;
    top: 75%;
  }
}
#page_artist section#artist #movie .inner_wrap .swiper .swiper-button-next {
  position: absolute; /* ボタンの絶対位置を設定 */
  top: 70%;
  right: 1%;
}
#page_artist section#artist #movie .inner_wrap .swiper .swiper-button-next::after {
  content: url(../images/icon_round_arrow_forward.svg);
}
@media screen and (max-width: 1101px) {
  #page_artist section#artist #movie .inner_wrap .swiper .swiper-button-next {
    top: 68%;
  }
}
@media screen and (max-width: 550px) {
  #page_artist section#artist #movie .inner_wrap .swiper .swiper-button-next {
    right: 1%;
    top: 75%;
  }
}
#page_artist section#artist #movie .inner_wrap .swiper .swiper_box iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1100px) {
  #page_artist section#artist #movie .inner_wrap .swiper {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  #page_artist section#artist #movie .inner_wrap .swiper {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  #page_artist section#artist #movie {
    margin-top: 65px;
    margin-bottom: 0;
  }
}
#page_artist section#artist .control_wrap {
  margin-top: 157px;
  color: #114095;
  letter-spacing: 0.32px;
}
@media screen and (max-width: 767px) {
  #page_artist section#artist .control_wrap a {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  #page_artist section#artist .control_wrap {
    margin-top: 96px;
  }
}
#page_artist #bg_1 {
  right: 0;
  top: -80px;
}
#page_artist #bg_1 img {
  width: 288px;
  height: 400px;
}
@media screen and (max-width: 767px) {
  #page_artist #bg_1 img {
    width: 160px;
    height: 222px;
  }
}
@media screen and (max-width: 767px) {
  #page_artist #bg_1 {
    top: -20px;
  }
}
#page_artist #bg_2 {
  left: 0;
  top: 0;
}
#page_artist #bg_2 img {
  width: 382px;
  height: 583px;
}
@media screen and (max-width: 767px) {
  #page_artist #bg_2 img {
    width: 160px;
    height: 222px;
  }
}
#page_artist #bg_3 {
  right: 0;
  top: 0px;
}
#page_artist #bg_3 img {
  width: 436px;
  height: 603px;
}
@media screen and (max-width: 767px) {
  #page_artist #bg_3 {
    display: none;
  }
}
#page_artist #bg_4 {
  left: 0;
  top: 220px;
}
#page_artist #bg_4 img {
  width: 210px;
  height: 160px;
}
@media screen and (max-width: 767px) {
  #page_artist #bg_4 {
    display: block;
  }
}
#page_artist footer {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  #page_artist footer {
    margin-top: 64px;
  }
}

#page_schedule_list #schedule_list .inner_wrap {
  max-width: 876px;
  margin: 0 auto;
}
#page_schedule_list #schedule_list .inner_wrap .category_wrap {
  margin-top: 70px;
  margin-bottom: 45px;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  #page_schedule_list #schedule_list .inner_wrap .category_wrap {
    margin-top: 40px;
  }
}
#page_schedule_list #schedule_list .inner_wrap .pagination {
  margin-top: 40px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #page_schedule_list #schedule_list .inner_wrap .pagination {
    margin-bottom: 84px;
  }
}
#page_schedule_list #schedule_list #bg_1 {
  position: absolute;
  top: -5px;
}
#page_schedule_list #schedule_list #bg_1 img {
  width: 436px;
  height: 603px;
}
@media screen and (max-width: 767px) {
  #page_schedule_list #schedule_list #bg_1 img {
    width: 160px;
    height: 221px;
  }
}
#page_schedule_list footer {
  margin-top: 133px;
}
@media screen and (max-width: 767px) {
  #page_schedule_list footer {
    margin-top: 63px;
  }
}

#page_schedule_deteil .detail .article_wrap, #page_information_deteil .detail .article_wrap {
  padding: 0 15px;
}
#page_schedule_deteil .detail .article_wrap .inner_wrap, #page_information_deteil .detail .article_wrap .inner_wrap {
  padding: 40px;
  max-width: 878px;
  margin: 50px auto 67px auto;
  background-color: #FFFFFF;
  border: 1px solid #EFEFEF;
  text-align: left;
  min-height: 412px;
}
@media screen and (max-width: 767px) {
  #page_schedule_deteil .detail .article_wrap .inner_wrap, #page_information_deteil .detail .article_wrap .inner_wrap {
    min-height: 300px;
  }
}
#page_schedule_deteil .detail .article_wrap .inner_wrap .article_title, #page_information_deteil .detail .article_wrap .inner_wrap .article_title {
  padding-bottom: 16px;
  border-bottom: 1px solid #EFEFEF;
}
#page_schedule_deteil .detail .article_wrap .inner_wrap .article_title h1, #page_information_deteil .detail .article_wrap .inner_wrap .article_title h1 {
  font-size: 20px;
  letter-spacing: 1.2px;
  line-height: 1.5;
  color: #3E3E3E;
}
@media screen and (max-width: 767px) {
  #page_schedule_deteil .detail .article_wrap .inner_wrap .article_title h1, #page_information_deteil .detail .article_wrap .inner_wrap .article_title h1 {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}
#page_schedule_deteil .detail .article_wrap .inner_wrap .article_title #info, #page_information_deteil .detail .article_wrap .inner_wrap .article_title #info {
  margin-top: 11px;
}
#page_schedule_deteil .detail .article_wrap .inner_wrap .article_title #info .date, #page_information_deteil .detail .article_wrap .inner_wrap .article_title #info .date {
  font-size: 12px;
  color: #888888;
  margin-right: 15px;
  letter-spacing: 0.84px;
  font-family: "Poppins", sans-serif;
}
#page_schedule_deteil .detail .article_wrap .inner_wrap .article_title #info .date span, #page_information_deteil .detail .article_wrap .inner_wrap .article_title #info .date span {
  font-family: "Noto Sans JP", sans-serif;
}
#page_schedule_deteil .detail .article_wrap .inner_wrap .article_body, #page_information_deteil .detail .article_wrap .inner_wrap .article_body {
  margin-top: 31px;
  letter-spacing: 0.98px;
  line-height: 22px;
}
#page_schedule_deteil .detail .article_wrap .inner_wrap .article_body .img_wrap, #page_information_deteil .detail .article_wrap .inner_wrap .article_body .img_wrap {
  width: 100%;
  margin: 41px 0;
}
#page_schedule_deteil .detail .article_wrap .inner_wrap .article_body .img_wrap img, #page_information_deteil .detail .article_wrap .inner_wrap .article_body .img_wrap img {
  max-width: 100%;
}
#page_schedule_deteil .detail .article_wrap .inner_wrap .article_body a, #page_information_deteil .detail .article_wrap .inner_wrap .article_body a {
  color: #114095;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  #page_schedule_deteil .detail .article_wrap .inner_wrap .article_body, #page_information_deteil .detail .article_wrap .inner_wrap .article_body {
    font-size: 13px;
    letter-spacing: 0.65px;
    line-height: 22px;
  }
}
@media screen and (max-width: 767px) {
  #page_schedule_deteil .detail .article_wrap .inner_wrap, #page_information_deteil .detail .article_wrap .inner_wrap {
    margin-bottom: 97px;
    padding: 20px;
  }
}
#page_schedule_deteil .detail #bg_1, #page_information_deteil .detail #bg_1 {
  position: absolute;
  top: -40px;
}
#page_schedule_deteil .detail #bg_1 img, #page_information_deteil .detail #bg_1 img {
  width: 482px;
  height: 666px;
}
@media screen and (max-width: 767px) {
  #page_schedule_deteil .detail #bg_1 img, #page_information_deteil .detail #bg_1 img {
    width: 137px;
    height: 190px;
  }
}
#page_schedule_deteil .detail .control_wrap, #page_information_deteil .detail .control_wrap {
  position: relative;
}
#page_schedule_deteil .detail .control_wrap .jump_out, #page_information_deteil .detail .control_wrap .jump_out {
  position: absolute;
  right: 30px;
  top: -50px;
  -webkit-transform: rotate(349deg);
          transform: rotate(349deg);
  font-size: 100px;
}
@media screen and (max-width: 767px) {
  #page_schedule_deteil .detail .control_wrap .jump_out, #page_information_deteil .detail .control_wrap .jump_out {
    top: -90px;
    font-size: 50px;
  }
}
#page_schedule_deteil footer, #page_information_deteil footer {
  margin-top: 112px;
}
@media screen and (max-width: 767px) {
  #page_schedule_deteil footer, #page_information_deteil footer {
    margin-top: 64px;
  }
}

#page_information_list .inner_wrap {
  max-width: 1101px;
}
#page_information_list .inner_wrap .category_wrap {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #page_information_list .inner_wrap .category_wrap {
    margin-top: 40px;
  }
}
#page_information_list .inner_wrap .item_list *, #page_information_list .inner_wrap .item_list *:before, #page_information_list .inner_wrap .item_list *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#page_information_list .inner_wrap .item_list.col_4 {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
#page_information_list .inner_wrap .item_list.col_4 > * {
  width: calc(25% - 20px);
  margin-right: 20px;
  margin-bottom: 40px;
}
#page_information_list .inner_wrap .item_list.col_4 > *:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 1100px) {
  #page_information_list .inner_wrap .item_list.col_4 > * {
    width: calc(33.33333% - 20px);
  }
  #page_information_list .inner_wrap .item_list.col_4 > *:nth-child(4n) {
    margin-right: 20px;
  }
  #page_information_list .inner_wrap .item_list.col_4 > *:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  #page_information_list .inner_wrap .item_list.col_4 > * {
    width: calc(50% - 20px);
  }
  #page_information_list .inner_wrap .item_list.col_4 > *:nth-child(3n) {
    margin-right: 20px;
  }
  #page_information_list .inner_wrap .item_list.col_4 > *:nth-child(2n) {
    margin-right: 0;
  }
}
#page_information_list .inner_wrap .item_list .list_message {
  width: 100%;
  margin: 0;
}
#page_information_list .inner_wrap .item_list .item .img_wrap {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  padding-top: 60%;
}
#page_information_list .inner_wrap .item_list .item .img_wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  #page_information_list .inner_wrap .item_list .item .link_wrap a {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  #page_information_list .inner_wrap .item_list .item {
    margin-right: 0;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #page_information_list .inner_wrap .item_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column;
    margin-top: 45px;
    margin-bottom: 65px;
  }
}
#page_information_list footer {
  margin-top: 111px;
}
@media screen and (max-width: 767px) {
  #page_information_list footer {
    margin-top: 64px;
  }
}
#page_information_list #bg_1 {
  top: -5px;
  left: 0;
}
@media screen and (max-width: 767px) {
  #page_information_list #bg_1 img {
    width: 160px;
    height: 221px;
  }
}

#page_entry_completed section#completed, #page_contact_completed section#completed {
  max-width: 1440px;
  margin: 0 auto;
}
#page_entry_completed section#completed .title_wrap h1, #page_contact_completed section#completed .title_wrap h1 {
  font-size: 38px;
  letter-spacing: 2.2px;
}
@media screen and (max-width: 767px) {
  #page_entry_completed section#completed .title_wrap h1, #page_contact_completed section#completed .title_wrap h1 {
    font-size: 36px;
  }
}
#page_entry_completed section#completed .title_wrap .sub_title_wrap, #page_contact_completed section#completed .title_wrap .sub_title_wrap {
  font-size: 16px;
  letter-spacing: 0.96px;
  line-height: 24px;
}
#page_entry_completed section#completed .inner_wrap, #page_contact_completed section#completed .inner_wrap {
  max-width: 880px;
  margin: 0 auto;
}
#page_entry_completed section#completed .inner_wrap .message_wrap, #page_contact_completed section#completed .inner_wrap .message_wrap {
  margin-bottom: 106px;
  font-weight: bold;
}
#page_entry_completed section#completed .inner_wrap .message_wrap .jump_out, #page_contact_completed section#completed .inner_wrap .message_wrap .jump_out {
  -webkit-transform: rotate(353deg);
          transform: rotate(353deg);
  margin-top: 22px;
  margin-bottom: 30px;
  font-size: 90px;
  color: #114095;
}
@media screen and (max-width: 767px) {
  #page_entry_completed section#completed .inner_wrap .message_wrap .jump_out, #page_contact_completed section#completed .inner_wrap .message_wrap .jump_out {
    font-size: 60px;
    line-height: 19px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
#page_entry_completed section#completed .inner_wrap .message_wrap p, #page_contact_completed section#completed .inner_wrap .message_wrap p {
  line-height: 33px;
  letter-spacing: 0.7px;
}
@media screen and (max-width: 767px) {
  #page_entry_completed section#completed .inner_wrap .message_wrap p, #page_contact_completed section#completed .inner_wrap .message_wrap p {
    font-size: 14px;
    letter-spacing: 0.7px;
    line-height: 26px;
  }
}
@media screen and (max-width: 767px) {
  #page_entry_completed section#completed .inner_wrap .message_wrap, #page_contact_completed section#completed .inner_wrap .message_wrap {
    margin-bottom: 64px;
  }
}
#page_entry_completed footer, #page_contact_completed footer {
  margin-top: 47px;
}
@media screen and (max-width: 767px) {
  #page_entry_completed footer, #page_contact_completed footer {
    margin-top: 103px;
  }
}

#page_privacy_policy section#privacy_policy {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
#page_privacy_policy section#privacy_policy .title_wrap {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #page_privacy_policy section#privacy_policy .title_wrap {
    margin-bottom: 40px;
  }
  #page_privacy_policy section#privacy_policy .title_wrap h1 {
    font-size: 30px;
  }
}
#page_privacy_policy section#privacy_policy .inner_wrap .page_wrap {
  max-width: 880px;
  margin: 0 auto;
  display: inline-block;
  text-align: left;
  line-height: 30px;
  letter-spacing: 0.7px;
}
#page_privacy_policy section#privacy_policy .inner_wrap .page_wrap h2 {
  color: #3E3E3E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: bold;
  margin-top: 41px;
  margin-bottom: 20px;
  line-height: 30px;
}
@media screen and (max-width: 767px) {
  #page_privacy_policy section#privacy_policy .inner_wrap .page_wrap h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 16px;
    letter-spacing: 0.8px;
  }
}
#page_privacy_policy section#privacy_policy .inner_wrap .page_wrap p {
  line-height: 33px;
}
@media screen and (max-width: 767px) {
  #page_privacy_policy section#privacy_policy .inner_wrap .page_wrap p {
    font-size: 13px;
    line-height: 26px;
    letter-spacing: 0.65px;
  }
}
#page_privacy_policy section#privacy_policy .inner_wrap .page_wrap .privacy_comply_with p {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  #page_privacy_policy section#privacy_policy .inner_wrap .page_wrap .contact_wrap {
    margin-top: 32px;
  }
}
#page_privacy_policy section#privacy_policy .inner_wrap .page_wrap #revision {
  margin-top: 100px;
  margin-bottom: 68px;
}
@media screen and (max-width: 767px) {
  #page_privacy_policy section#privacy_policy .inner_wrap .page_wrap #revision {
    margin-top: 40px;
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 767px) {
  #page_privacy_policy section#privacy_policy .inner_wrap .control_wrap {
    font-size: 14px;
  }
}
#page_privacy_policy footer {
  margin-top: 96px;
}

#page_audition #audition {
  position: relative;
}
#page_audition #audition .control_wrap {
  margin-top: 200px;
}
#page_audition #audition .inner_wrap {
  max-width: 1101px;
  margin: 0 auto;
  text-align: center;
}
#page_audition #audition .inner_wrap #audition_header {
  min-height: auto;
}
#page_audition #audition .inner_wrap #audition_header .title_wrap h1 {
  font-size: 41px;
  letter-spacing: 3.28px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #page_audition #audition .inner_wrap #audition_header .title_wrap h1 {
    font-size: 32px;
    letter-spacing: 2.56px;
  }
}
#page_audition #audition .inner_wrap #audition_header .title_wrap .sub_title {
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  #page_audition #audition .inner_wrap #audition_header .title_wrap .sub_title {
    margin: 0;
    font-size: 16px;
  }
}
#page_audition #audition .inner_wrap #audition_header .jump_out {
  top: -30%;
  left: -30%;
}
@media screen and (max-width: 1100px) {
  #page_audition #audition .inner_wrap #audition_header .jump_out {
    top: -10%;
    left: -20%;
  }
}
@media screen and (max-width: 767px) {
  #page_audition #audition .inner_wrap #audition_header .jump_out {
    top: -120%;
    left: 0%;
  }
}
#page_audition #audition .inner_wrap .content_wrap {
  width: 100%;
  max-width: 880px;
  margin: 43px auto 21px auto;
  text-align: left;
}
#page_audition #audition .inner_wrap .content_wrap p {
  font-size: 16px;
  line-height: 33px;
}
@media screen and (max-width: 767px) {
  #page_audition #audition .inner_wrap .content_wrap p {
    font-size: 14px;
    line-height: 24px;
  }
}
#page_audition #audition .inner_wrap .content_wrap .unit {
  margin-bottom: 43px;
}
#page_audition #audition .inner_wrap .content_wrap .unit .head_left {
  line-height: 27px;
  margin-bottom: 15px;
}
#page_audition #audition .inner_wrap .content_wrap .unit .head_left span {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  #page_audition #audition .inner_wrap .content_wrap .unit .head_left span {
    font-size: 11px;
  }
}
#page_audition #audition .inner_wrap .content_wrap .unit#how {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  #page_audition #audition .inner_wrap .content_wrap .unit {
    margin-bottom: 33px;
  }
}
#page_audition #audition .inner_wrap .content_wrap .contact_wrap {
  margin-bottom: 51px;
}
#page_audition #audition .inner_wrap .content_wrap .contact_wrap .head {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #page_audition #audition .inner_wrap .content_wrap .contact_wrap {
    margin-top: 15px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  #page_audition #audition .inner_wrap .content_wrap {
    margin-top: 33px;
  }
}
#page_audition #audition .inner_wrap .control_wrap {
  position: relative;
  margin-top: 0;
  margin-bottom: 120px;
}
#page_audition #audition .inner_wrap .control_wrap a {
  width: 100%;
  max-width: 320px;
}
@media screen and (max-width: 767px) {
  #page_audition #audition .inner_wrap .control_wrap a {
    width: 100%;
    max-width: 345px;
    font-size: 14px;
  }
}
#page_audition #audition .inner_wrap .control_wrap:last-of-type {
  margin-bottom: 0;
}
#page_audition #jump_out_1 {
  position: absolute;
  top: 90px;
  right: 0;
  -webkit-transform: rotate(350deg);
          transform: rotate(350deg);
  font-size: 86px;
  line-height: 27px;
  color: #114095;
}
@media screen and (max-width: 767px) {
  #page_audition #jump_out_1 {
    font-size: 50px;
    top: 100px;
  }
}
#page_audition #bg_1 {
  position: absolute;
  top: auto;
  bottom: 40px;
  right: 0;
}
@media screen and (max-width: 767px) {
  #page_audition #bg_1 {
    bottom: 100px;
  }
}
#page_audition footer {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  #page_audition footer {
    margin-top: 60px;
  }
}

#page_company #company {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
#page_company #company #overview {
  margin-top: 20px;
}
#page_company #company #overview .inner_wrap {
  max-width: 880px;
  margin: 0 auto;
}
#page_company #company #overview .inner_wrap .title_wrap {
  display: block;
}
@media screen and (max-width: 767px) {
  #page_company #company #overview .inner_wrap .title_wrap {
    text-align: center;
  }
}
#page_company #company #overview .inner_wrap table {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 60px;
  text-align: left;
}
#page_company #company #overview .inner_wrap table th, #page_company #company #overview .inner_wrap table td {
  padding: 20px 0;
  vertical-align: middle;
  font-size: 16px;
  letter-spacing: 0.96px;
  line-height: 24px;
  border-bottom: 1px solid #114095;
}
@media screen and (max-width: 767px) {
  #page_company #company #overview .inner_wrap table th, #page_company #company #overview .inner_wrap table td {
    font-size: 14px;
    letter-spacing: 0.84px;
    display: block;
  }
}
#page_company #company #overview .inner_wrap table th {
  width: 170px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #page_company #company #overview .inner_wrap table th {
    border: none;
  }
}
#page_company #company #overview .inner_wrap table td {
  padding-left: 20px;
  border-bottom: 1px solid #EFEFEF;
}
@media screen and (max-width: 767px) {
  #page_company #company #overview .inner_wrap table td {
    position: relative;
    padding-left: 0;
    margin-top: -30px;
  }
  #page_company #company #overview .inner_wrap table td::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100px;
    border-bottom: 1px solid #114095;
    z-index: -1;
  }
}
@media screen and (max-width: 767px) {
  #page_company #company #overview .inner_wrap table {
    margin-bottom: 40px;
  }
}
#page_company #company #access {
  margin-bottom: 102px;
}
#page_company #company #access .inner_wrap {
  max-width: 1101px;
  margin: 0 auto;
  position: relative;
}
#page_company #company #access .inner_wrap .title_wrap {
  max-width: 880px;
  margin: 0 auto;
  display: block;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #page_company #company #access .inner_wrap .title_wrap {
    text-align: center;
  }
}
#page_company #company #access .inner_wrap .map {
  margin: 0 auto;
}
#page_company #company #access .inner_wrap .map iframe {
  width: 100%;
  height: 460px;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 767px) {
  #page_company #company #access .inner_wrap .map iframe {
    height: 200px;
  }
}
#page_company #company #access .inner_wrap .route {
  max-width: 880px;
  margin: 0 auto;
  margin-top: 42px;
  margin-bottom: 102px;
  text-align: left;
  font-size: 16px;
  letter-spacing: 0.96px;
  line-height: 26px;
}
#page_company #company #access .inner_wrap .route .head {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1.08px;
  line-height: 24px;
  margin-bottom: 20px;
}
#page_company #company #access .inner_wrap .route .head::before {
  content: "";
  display: inline-block;
  background-image: url(../images/icon_map_pin.svg);
  width: 21px;
  height: 30px;
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  margin-right: 15px;
  background-position: center;
}
@media screen and (max-width: 767px) {
  #page_company #company #access .inner_wrap .route .head {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  #page_company #company #access .inner_wrap .route > p:last-child {
    font-size: 14px;
  }
}
#page_company #company #access .inner_wrap .route .nearest {
  line-height: 26px;
}
#page_company #company #access .jump_out {
  top: 110%;
  right: 20px;
}
@media screen and (max-width: 1100px) {
  #page_company #company #access .jump_out {
    top: 105%;
  }
}
@media screen and (max-width: 767px) {
  #page_company #company #access .jump_out {
    font-size: 50px;
    top: 105%;
  }
}
@media screen and (max-width: 767px) {
  #page_company #company #access {
    margin-bottom: 80px;
  }
}
#page_company #company .jump_out {
  top: 180px;
  right: 0px;
  position: absolute;
  font-size: 120px;
  line-height: 28px;
  -webkit-transform: rotate(349deg);
          transform: rotate(349deg);
  color: #114095;
}
@media screen and (max-width: 1100px) {
  #page_company #company .jump_out {
    font-size: 70px;
  }
}
@media screen and (max-width: 767px) {
  #page_company #company .jump_out {
    top: 100px;
    right: 15px;
    font-size: 40px;
    line-height: 19px;
  }
}
#page_company footer {
  margin-top: 107px;
}
@media screen and (max-width: 767px) {
  #page_company footer {
    margin-bottom: 63px;
  }
}

#page_entry_form #section_form, #page_contact_form #section_form {
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #page_entry_form #section_form .title_wrap h1, #page_contact_form #section_form .title_wrap h1 {
    font-size: 36px;
  }
}
#page_entry_form #section_form .inner_wrap .form_wrap, #page_contact_form #section_form .inner_wrap .form_wrap {
  margin: 0 auto;
  max-width: 880px;
  text-align: left;
  width: 100%;
}
#page_entry_form #section_form .inner_wrap .form_wrap .text, #page_contact_form #section_form .inner_wrap .form_wrap .text {
  margin-bottom: 31px;
  margin-top: 41px;
}
#page_entry_form #section_form .inner_wrap .form_wrap form .table_wrap, #page_contact_form #section_form .inner_wrap .form_wrap form .table_wrap {
  margin-bottom: 20px;
}
#page_entry_form #section_form .inner_wrap .form_wrap form .table_wrap table th, #page_contact_form #section_form .inner_wrap .form_wrap form .table_wrap table th {
  width: 25%;
}
@media screen and (max-width: 767px) {
  #page_entry_form #section_form .inner_wrap .form_wrap form .table_wrap table th, #page_contact_form #section_form .inner_wrap .form_wrap form .table_wrap table th {
    white-space: nowrap;
    width: 100%;
  }
}
#page_entry_form #section_form .inner_wrap .form_wrap form .table_wrap table td, #page_contact_form #section_form .inner_wrap .form_wrap form .table_wrap table td {
  width: 75%;
}
@media screen and (max-width: 767px) {
  #page_entry_form #section_form .inner_wrap .form_wrap form .table_wrap table td, #page_contact_form #section_form .inner_wrap .form_wrap form .table_wrap table td {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #page_entry_form #section_form .inner_wrap .form_wrap form .table_wrap table, #page_contact_form #section_form .inner_wrap .form_wrap form .table_wrap table {
    text-align: center;
  }
}
#page_entry_form #section_form .inner_wrap .form_wrap form .table_wrap table.entry th, #page_contact_form #section_form .inner_wrap .form_wrap form .table_wrap table.entry th {
  width: 120px;
  min-width: 120px;
  white-space: nowrap;
}
#page_entry_form #section_form .inner_wrap .form_wrap form .table_wrap table.entry td, #page_contact_form #section_form .inner_wrap .form_wrap form .table_wrap table.entry td {
  width: auto;
}
#page_entry_form #section_form .inner_wrap .form_wrap form .table_wrap table.entry td label > span, #page_contact_form #section_form .inner_wrap .form_wrap form .table_wrap table.entry td label > span {
  display: none;
}
#page_entry_form #section_form .inner_wrap .form_wrap form .table_wrap table.entry td label .select_label, #page_contact_form #section_form .inner_wrap .form_wrap form .table_wrap table.entry td label .select_label {
  display: inline;
}
@media screen and (max-width: 1100px) {
  #page_entry_form #section_form .inner_wrap .form_wrap form .table_wrap table.entry td .birth .container, #page_contact_form #section_form .inner_wrap .form_wrap form .table_wrap table.entry td .birth .container {
    width: 70px;
  }
  #page_entry_form #section_form .inner_wrap .form_wrap form .table_wrap table.entry td .birth .container.year, #page_contact_form #section_form .inner_wrap .form_wrap form .table_wrap table.entry td .birth .container.year {
    width: 83px;
  }
}
@media screen and (max-width: 767px) {
  #page_entry_form #section_form .inner_wrap .form_wrap form .table_wrap, #page_contact_form #section_form .inner_wrap .form_wrap form .table_wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
#page_entry_form #section_form .control_wrap .btn, #page_contact_form #section_form .control_wrap .btn {
  font-size: 17px;
  margin-top: 41px;
}
@media screen and (max-width: 767px) {
  #page_entry_form #section_form .control_wrap .btn, #page_contact_form #section_form .control_wrap .btn {
    font-size: 14px;
    letter-spacing: 0.98px;
    line-height: 24px;
  }
}
#page_entry_form #section_form .jump_out, #page_contact_form #section_form .jump_out {
  top: 180px;
  right: 0px;
  position: absolute;
  font-size: 120px;
  line-height: 28px;
  -webkit-transform: rotate(349deg);
          transform: rotate(349deg);
  color: #114095;
}
@media screen and (max-width: 1100px) {
  #page_entry_form #section_form .jump_out, #page_contact_form #section_form .jump_out {
    font-size: 70px;
  }
}
@media screen and (max-width: 767px) {
  #page_entry_form #section_form .jump_out, #page_contact_form #section_form .jump_out {
    top: 120px;
    right: 15px;
    font-size: 40px;
    line-height: 19px;
  }
}
#page_entry_form #section_form footer, #page_contact_form #section_form footer {
  margin-top: 100px;
}

#page_contact_confirmation #confirmation, #page_entry_confirmation #confirmation {
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #page_contact_confirmation #confirmation .title_wrap h1, #page_entry_confirmation #confirmation .title_wrap h1 {
    font-size: 36px;
  }
}
#page_contact_confirmation #confirmation .inner_wrap .confirmation_wrap, #page_entry_confirmation #confirmation .inner_wrap .confirmation_wrap {
  margin: 0 auto;
  max-width: 880px;
  text-align: left;
  width: 100%;
}
#page_contact_confirmation #confirmation .inner_wrap .confirmation_wrap .text, #page_entry_confirmation #confirmation .inner_wrap .confirmation_wrap .text {
  margin-bottom: 31px;
  margin-top: 41px;
}
#page_contact_confirmation #confirmation .inner_wrap .confirmation_wrap form .table_wrap, #page_entry_confirmation #confirmation .inner_wrap .confirmation_wrap form .table_wrap {
  margin-bottom: 20px;
}
#page_contact_confirmation #confirmation .inner_wrap .confirmation_wrap form .table_wrap table th, #page_contact_confirmation #confirmation .inner_wrap .confirmation_wrap form .table_wrap table td, #page_entry_confirmation #confirmation .inner_wrap .confirmation_wrap form .table_wrap table th, #page_entry_confirmation #confirmation .inner_wrap .confirmation_wrap form .table_wrap table td {
  display: block;
  width: auto;
}
#page_contact_confirmation #confirmation .inner_wrap .confirmation_wrap form .table_wrap table th, #page_entry_confirmation #confirmation .inner_wrap .confirmation_wrap form .table_wrap table th {
  width: 25%;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  #page_contact_confirmation #confirmation .inner_wrap .confirmation_wrap form .table_wrap table th, #page_entry_confirmation #confirmation .inner_wrap .confirmation_wrap form .table_wrap table th {
    width: 100%;
  }
}
#page_contact_confirmation #confirmation .inner_wrap .confirmation_wrap form .table_wrap table td, #page_entry_confirmation #confirmation .inner_wrap .confirmation_wrap form .table_wrap table td {
  width: 75%;
}
#page_contact_confirmation #confirmation .inner_wrap .confirmation_wrap form .table_wrap table td .container::after, #page_entry_confirmation #confirmation .inner_wrap .confirmation_wrap form .table_wrap table td .container::after {
  display: none;
}
@media screen and (max-width: 767px) {
  #page_contact_confirmation #confirmation .inner_wrap .confirmation_wrap form .table_wrap table td, #page_entry_confirmation #confirmation .inner_wrap .confirmation_wrap form .table_wrap table td {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #page_contact_confirmation #confirmation .inner_wrap .confirmation_wrap form .table_wrap table, #page_entry_confirmation #confirmation .inner_wrap .confirmation_wrap form .table_wrap table {
    text-align: center;
  }
}
#page_contact_confirmation #confirmation .inner_wrap .confirmation_wrap form .table_wrap table.entry th, #page_entry_confirmation #confirmation .inner_wrap .confirmation_wrap form .table_wrap table.entry th {
  width: auto;
}
#page_contact_confirmation #confirmation .inner_wrap .confirmation_wrap form .table_wrap table.entry td .birth .container, #page_entry_confirmation #confirmation .inner_wrap .confirmation_wrap form .table_wrap table.entry td .birth .container {
  width: 10px;
}
#page_contact_confirmation #confirmation .inner_wrap .confirmation_wrap form .table_wrap table.entry td .birth .container.year, #page_entry_confirmation #confirmation .inner_wrap .confirmation_wrap form .table_wrap table.entry td .birth .container.year {
  width: 40px;
}
#page_contact_confirmation #confirmation .inner_wrap .confirmation_wrap form .table_wrap table.entry td .birth > p, #page_entry_confirmation #confirmation .inner_wrap .confirmation_wrap form .table_wrap table.entry td .birth > p {
  margin-left: 10px;
  margin-right: 15px;
}
#page_contact_confirmation #confirmation .inner_wrap .confirmation_wrap form .table_wrap table.entry td .upload-box label, #page_entry_confirmation #confirmation .inner_wrap .confirmation_wrap form .table_wrap table.entry td .upload-box label {
  border: none;
}
#page_contact_confirmation #confirmation .inner_wrap .confirmation_wrap form .table_wrap table.entry td .select_label, #page_entry_confirmation #confirmation .inner_wrap .confirmation_wrap form .table_wrap table.entry td .select_label {
  display: none;
}
@media screen and (max-width: 767px) {
  #page_contact_confirmation #confirmation .inner_wrap .confirmation_wrap form .table_wrap, #page_entry_confirmation #confirmation .inner_wrap .confirmation_wrap form .table_wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
#page_contact_confirmation #confirmation .inner_wrap .confirmation_wrap form .mw-wp-form_file, #page_entry_confirmation #confirmation .inner_wrap .confirmation_wrap form .mw-wp-form_file {
  display: none !important;
}
#page_contact_confirmation #confirmation .control_wrap .btn, #page_entry_confirmation #confirmation .control_wrap .btn {
  font-size: 17px;
  margin-top: 41px;
}
#page_contact_confirmation #confirmation .control_wrap .btn.cancel, #page_entry_confirmation #confirmation .control_wrap .btn.cancel {
  display: block;
  margin: 0 auto;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  #page_contact_confirmation #confirmation .control_wrap .btn, #page_entry_confirmation #confirmation .control_wrap .btn {
    font-size: 14px;
    letter-spacing: 0.98px;
    line-height: 24px;
  }
}
#page_contact_confirmation #confirmation .jump_out, #page_entry_confirmation #confirmation .jump_out {
  top: 180px;
  right: 0px;
  position: absolute;
  font-size: 120px;
  line-height: 28px;
  -webkit-transform: rotate(349deg);
          transform: rotate(349deg);
  color: #114095;
}
@media screen and (max-width: 1100px) {
  #page_contact_confirmation #confirmation .jump_out, #page_entry_confirmation #confirmation .jump_out {
    font-size: 70px;
  }
}
@media screen and (max-width: 767px) {
  #page_contact_confirmation #confirmation .jump_out, #page_entry_confirmation #confirmation .jump_out {
    top: 120px;
    right: 15px;
    font-size: 40px;
    line-height: 19px;
  }
}
#page_contact_confirmation #confirmation footer, #page_entry_confirmation #confirmation footer {
  margin-top: 100px;
}

#page_404 section#error_404 {
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #page_404 section#error_404 .title_wrap .heading_text {
    margin-left: -20px;
  }
  #page_404 section#error_404 .title_wrap > img {
    min-width: 105px;
    width: 25%;
  }
  #page_404 section#error_404 .title_wrap h1 {
    font-size: 30px;
    letter-spacing: 1.8px;
  }
  #page_404 section#error_404 .title_wrap .sub_title_wrap {
    font-size: 14px;
    letter-spacing: 0.84px;
    line-height: 24px;
  }
  #page_404 section#error_404 .title_wrap .sub_title_wrap > img {
    width: 20px;
    margin-right: 10px;
  }
}
#page_404 section#error_404 .inner_wrap {
  max-width: 880px;
  margin: 0 auto;
}
#page_404 section#error_404 .inner_wrap .message_wrap {
  margin-bottom: 80px;
  font-weight: bold;
}
#page_404 section#error_404 .inner_wrap .message_wrap .not_found {
  font-size: 40px;
  font-weight: bold;
  margin-top: 60px;
  margin-bottom: 46px;
  line-height: 24px;
  letter-spacing: 2.4px;
}
@media screen and (max-width: 767px) {
  #page_404 section#error_404 .inner_wrap .message_wrap .not_found {
    margin-top: 60px;
    font-size: 18px;
    letter-spacing: 1.08px;
  }
}
#page_404 section#error_404 .inner_wrap .message_wrap p {
  margin: 0 auto;
  max-width: 410px;
  line-height: 33px;
  letter-spacing: 0.7px;
}
@media screen and (max-width: 767px) {
  #page_404 section#error_404 .inner_wrap .message_wrap p {
    text-align: left;
    font-size: 14px;
    letter-spacing: 0.7px;
    line-height: 26px;
  }
}
@media screen and (max-width: 767px) {
  #page_404 section#error_404 .inner_wrap .message_wrap {
    margin-bottom: 61px;
  }
}
#page_404 footer {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  #page_404 footer {
    margin-top: 113px;
  }
}/*# sourceMappingURL=style.css.map */
