@charset "UTF-8";

/* WordPressの表示調整用 */
:where(figure){
  margin: 0 !important;
}
/*======================================
	■Animation
======================================*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-duration: 1.5s;
  animation-name: fadeIn;
  animation-fill-mode: both;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft {
  animation-duration: 1.5s;
  animation-name: fadeInLeft;
  animation-fill-mode: both;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight {
  animation-duration: 1.5s;
  animation-name: fadeInRight;
  animation-fill-mode: both;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translatey(-50px);
  }
  100% {
    opacity: 1;
    transform: translatey(0);
  }
}
.fadeInDown {
  animation-duration: 1.5s;
  animation-name: fadeInDown;
  animation-fill-mode: both;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translatey(50px);
  }
  100% {
    opacity: 1;
    transform: translatey(0);
  }
}
.fadeInUp {
  animation-duration: 1.5s;
  animation-name: fadeInUp;
  animation-fill-mode: both;
}

@keyframes reflection {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  30% {
    transform: scale(0) rotate(45deg);
    opacity: 0.3;
  }
  31% {
    transform: scale(4) rotate(45deg);
    opacity: 0.7;
  }
  45% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.reflection {
  border-radius: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.reflection::before {
  content: "";
  height: 100%;
  width: 30px;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #fff;
  opacity: 0;
  z-index: 1;
  animation-duration: 3s;
  animation-name: reflection;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes loop {
  100% {
    transform: translateX(-50%);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  40% {
    opacity: 1;
    transform: scale(1.05);
  }
  80% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.bounceIn {
  animation-name: bounceIn;
  animation-duration: 0.5s;
}

@keyframes zoomIn {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.zoomIn {
  animation-name: zoomIn;
  animation-duration: 0.75s;
}

@keyframes arrowDown {
  0% {
    height: 1vw;
  }
  66% {
    height: 18vw;
  }
}
.arrowDown {
  position: absolute;
  top: 0;
  left: 2.5vw;
  animation: 2s arrowDown ease-in-out;
  width: 0;
  height: 18vw;
  border: 0.1vw solid #fff;
  z-index: 9;
}
.arrowDown::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -0.5vw;
  width: 1vw;
  height: 1vw;
  border-right: 0.2vw solid #fff;
  border-bottom: 0.2vw solid #fff;
  transform: rotate(45deg);
  transition: all 0.3s ease-out;
}

@keyframes arrowDownShort {
  0% {
    height: 0;
  }
  66% {
    height: 10vw;
  }
}
.arrowDownShort {
  position: absolute;
  top: 0;
  left: 0;
  animation: 2s arrowDownShort ease-in-out;
  width: 0;
  height: 10vw;
  border: 0.1vw solid #fff;
  z-index: 9;
}
.arrowDownShort::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -0.5vw;
  width: 1vw;
  height: 1vw;
  border-right: 0.2vw solid #fff;
  border-bottom: 0.2vw solid #fff;
  transform: rotate(45deg);
  transition: all 0.3s ease-out;
}

@keyframes arrowDownShort2 {
  0% {
    height: 0;
  }
  66% {
    height: 7vw;
  }
}
.arrowDownShort2 {
  position: absolute;
  top: 0;
  left: 0;
  animation: 2s arrowDownShort2 ease-in-out;
  width: 0;
  height: 7vw;
  border: 0.1vw solid #fff;
  z-index: 9;
}
.arrowDownShort2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -0.5vw;
  width: 1vw;
  height: 1vw;
  border-right: 0.2vw solid #fff;
  border-bottom: 0.2vw solid #fff;
  transform: rotate(45deg);
  transition: all 0.3s ease-out;
}

@keyframes arrowDownTop {
  0% {
    height: 1vw;
  }
  66% {
    height: 18vw;
  }
}
.arrowDownTop {
  position: absolute;
  top: 34vw;
  left: 2.5vw;
  animation: 2s arrowDownTop ease-in-out;
  width: 0;
  height: 18vw;
  border: 0.1vw solid #fff;
  z-index: 9;
}

.arrowDown {
  left: 3.5vw;
  border: 0.2vw solid #fff;
}
.arrowDown::before {
  bottom: 0;
  left: -0.95vw;
  width: 2vw;
  height: 2vw;
  border-right: 0.4vw solid #fff;
  border-bottom: 0.4vw solid #fff;
}

body {
  background-color: #222;
  color: #fff;
  font: 3vw/1.75 "A1明朝", "A1 Mincho";
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

a {
  color: #222;
  text-decoration: none;
}

img, iframe {
  max-width: 100%;
  height: auto;
}

a.withArrow {
  background-image: none;
  padding-bottom: 0;
  position: relative;
  color: #222;
}
a.withArrow::before {
  content: "";
  position: absolute;
  bottom: 1.5vw;
  right: 1.5vw;
  width: 2vw;
  height: 2vw;
  border-right: 0.4vw solid #222;
  border-bottom: 0.4vw solid #222;
}
a.withArrow::after {
  content: "";
  position: absolute;
  bottom: 2.5vw;
  right: 1.35vw;
  width: 3vw;
  height: 0.4vw;
  background: #222;
  transform: rotate(45deg);
}

#entryBtn {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  line-height: 1.4;
  text-align: center;
}
#entryBtn a {
  display: block;
  background-color: #fff;
  border: 2px solid #222;
  border-right: none;
  position: relative;
  padding: 3vw 0 1vw;
  border-radius: 5vw 5vw 0 0;
  font-size: 7vw;
  letter-spacing: 3px;
}
#entryBtn a p {
  display: block;
  font-size: 3.5vw;
  letter-spacing: 0;
}
#entryBtn a::before {
  content: "";
  position: absolute;
  bottom: 7vw;
  right: 5.7vw;
  width: 2.5vw;
  height: 2.5vw;
  border-right: 0.5vw solid #222;
  border-bottom: 0.5vw solid #222;
  transform: rotate(-45deg);
}
#entryBtn a::after {
  content: "";
  position: absolute;
  bottom: 7.9vw;
  right: 5.45vw;
  width: 5vw;
  height: 0.5vw;
  background: #222;
}

.arrowEffect {
  position: relative;
}
.arrowEffect p {
  writing-mode: vertical-rl;
  position: absolute;
  left: 2vw;
  top: 20vw;
  height: max-content;
  font-size: 2.1vw;
  letter-spacing: 2px;
  z-index: 9;
}

header {
  background-color: #fff;
  border-bottom: 2px solid #222;
  padding: 5vw 0 4vw;
  position: fixed;
  height: 18vw;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
  transition: all 0.3s ease-out;
}
header.scrolled {
  background-color: transparent;
  border-bottom: 2px solid transparent;
}
header #header_logo {
  text-align: center;
}
header #header_logo img {
  width: 40vw;
}
header #header_navBtn {
  position: absolute;
  right: 3vw;
  top: 6.5vw;
  width: 7vw;
  color: #222;
  text-align: center;
}
header #header_navBtn .header_hamburger {
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
header #header_navBtn .header_hamburger span, header #header_navBtn .header_hamburger span::before, header #header_navBtn .header_hamburger span::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #222;
}
header #header_navBtn .header_hamburger span::before {
  top: -2vw;
}
header #header_navBtn .header_hamburger span::after {
  bottom: -2vw;
}
header #header_navBtn small {
  padding-top: 3vw;
  display: block;
  font-size: 2.1vw;
}
header #header_navMenu {
  background-color: rgba(0, 0, 0, 0.75);
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease-out;
}
header #header_navMenu #header_navMenu_navBtn {
  text-align: right;
  padding: 5vw 3vw 0 0;
}
header #header_navMenu #header_navMenu_navBtn label {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 7vw;
  height: 0.4vw;
  background-color: #fff;
  position: relative;
  transform: rotate(45deg);
}
header #header_navMenu #header_navMenu_navBtn label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}
header #header_navMenu #header_navMenu_list {
  padding-left: 5vw;
  overflow-y: scroll;
}
header #header_navMenu #header_navMenu_list nav {
  padding-left: 5vw;
}
header #header_navMenu #header_navMenu_list nav li {
  padding: 3vw 0;
}
header #header_navMenu #header_navMenu_list nav li a {
  color: #fff;
  font-size: 4vw;
}
header #header_navMenu #header_navMenu_list nav li a span {
  font-size: 3.4vw;
  letter-spacing: 2px;
}
header #header_navMenu #header_navMenu_list #header_navMenu_list_separate {
  margin: 5vw 0 3vw;
  position: relative;
  font-size: 3.4vw;
}
header #header_navMenu #header_navMenu_list #header_navMenu_list_separate::before {
  content: "";
  width: 58vw;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 30vw;
  top: 2.5vw;
}
header #header_navMenu #header_navMenu_logo {
  padding-bottom: 2vw;
  width: 40vw;
  margin: 0 auto;
}
header #header_navMenu #header_navMenu_logo img {
  width: 100%;
}
header #header_navMenu.hidden {
  right: -100%;
}

main {
  margin-top: 18vw;
}
main section {
  position: relative;
  border: 2px solid #000;
  border-top: none;
}

footer {
  color: #222;
  background-color: #fff;
  padding: 2vw 0 20vw;
}
footer #footer_nav #footer_nav_image {
  display: none;
}
footer #footer_nav #footer_nav_menu {
  width: 100%;
}
footer #footer_nav #footer_nav_menu #footer_nav_menu_list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2vw 3vw;
  padding: 2vw;
}
footer #footer_nav #footer_nav_menu #footer_nav_menu_list ul li {
  font-size: 2.7vw;
}
footer #footer_nav #footer_nav_menu #footer_nav_menu_list ul li span {
  font-size: 1.7vw;
}
footer #footer_nav #footer_nav_menu #footer_nav_menu_list h4 {
  position: relative;
  padding-left: 2vw;
  display: flex;
  align-items: baseline;
  gap: 1vw;
}
footer #footer_nav #footer_nav_menu #footer_nav_menu_list h4::after {
  content: "";
  width: 48vw;
  height: 0.2vw;
  background-color: #222;
  position: relative;
  top: 0.2vw;
  left: 1vw;
  align-self: center;
  display: block;
}
footer #footer_nav #footer_nav_menu #footer_nav_menu_list h4 span {
  font-size: 2vw;
}
footer #footer_nav #footer_nav_menu #footer_nav_menu_aside {
  border-top: 2px solid #222;
  display: flex;
  justify-content: space-between;
  padding-left: 2vw;
  height: calc(6.9vw + 2px);
  position: relative;
  align-items: center;
}
footer #footer_nav #footer_nav_menu #footer_nav_menu_aside p img {
  width: 16vw;
}
footer #footer_nav #footer_nav_menu #footer_nav_menu_aside button {
  border: none;
  background-color: #222;
  color: #fff;
  width: 8vw;
  height: 7vw;
}
footer #footer_nav #footer_nav_menu #footer_nav_menu_aside button::before {
  content: "";
  position: absolute;
  bottom: 2.9vw;
  right: 3.3vw;
  width: 1.5vw;
  height: 1.5vw;
  border-right: 0.4vw solid #fff;
  border-bottom: 0.4vw solid #fff;
  transform: rotate(-135deg);
}
footer #footer_nav #footer_nav_menu #footer_nav_menu_aside button::after {
  content: "";
  position: absolute;
  bottom: 3.2vw;
  right: 3vw;
  width: 2.2vw;
  height: 0.4vw;
  background: #fff;
  transform: rotate(90deg);
}
footer #footer_copyright {
  text-align: center;
  padding: 3vw 0;
  border-top: 2px solid #222;
}

#top_kv {
  background: url("../img/top/top_kv.jpg") no-repeat center top/cover;
  height: 150vw;
  text-align: center;
}
#top_kv h1 {
  padding-top: 30vw;
  font-size: 5vw;
}
#top_kv h1 span {
  font-size: 14vw;
  letter-spacing: 3px;
  line-height: 1.3;
}
#top_kv p {
  padding-top: 7.5vw;
  font-size: 3.2vw;
}
#top_kv .arrowEffect {
  position: initial;
}
#top_kv .arrowEffect .arrowDownTop {
  top: 132vw;
  left: 3.5vw;
  border: 0.2vw solid #fff;
}
#top_kv .arrowEffect .arrowDownTop::before {
  bottom: 0;
  left: -0.95vw;
  width: 2vw;
  height: 2vw;
  border-right: 0.4vw solid #fff;
  border-bottom: 0.4vw solid #fff;
}
#top_kv .arrowEffect p {
  top: 110vw;
  font-size: 2.1vw;
}

#top_concept {
  background: url("../img/top/top_concept.png") no-repeat center top/cover;
  color: #222;
}
#top_concept .arrowDown {
  border-color: #222;
}
#top_concept .arrowDown::before {
  border-right: 0.4vw solid #222;
  border-bottom: 0.4vw solid #222;
}
#top_concept h2 {
  padding: 10vw 0 5vw;
  font-size: 12vw;
  text-align: center;
}
#top_concept #top_concept_main {
  text-align: center;
  padding-bottom: 15vw;
}
#top_concept #top_concept_main h3 {
  font-size: 5vw;
  padding-bottom: 5vw;
  margin: 0 auto 5vw;
  width: fit-content;
  border-bottom: 2px solid #222;
}

#top_message {
  background-color: #222;
  text-align: center;
  color: #fff;
}
#top_message h2 {
  font-size: 7vw;
  padding-top: 5vw;
}
#top_message h3 {
  font-size: 5vw;
  padding-top: 3vw;
}
#top_message #top_message_text {
  padding-top: 3vw;
  padding-bottom: 5vw;
}

#top_workStyle {
  background: url("../img/top/top_workStyle.png") no-repeat center top/cover;
  padding-bottom: 5vw;
}
#top_workStyle #top_workStyle_header {
  width: 80vw;
  margin: 0 auto;
  padding-top: 5vw;
}
#top_workStyle #top_workStyle_header div h2 {
  font-size: 7vw;
}
#top_workStyle #top_workStyle_header div h3 {
  font-size: 5vw;
}
#top_workStyle #top_workStyle_header p {
  padding-top: 3vw;
}
#top_workStyle ul {
  width: 80vw;
  margin: 0 auto;
}
#top_workStyle ul li {
  width: 100%;
  margin-top: 2vw;
}
#top_workStyle ul li a {
  display: block;
  width: 100%;
  border: 2px solid #222;
  background-color: #fff;
  padding: 2vw 4vw 3vw;
}
#top_workStyle ul li a p {
  display: inline-block;
  border-bottom: 1px solid #222;
  padding-bottom: 1vw;
  margin-bottom: 1vw;
}
#top_workStyle ul li a h4 {
  font-size: 3.4vw;
}
#top_workStyle ul li a span {
  display: block;
  font-size: 2.4vw;
}

#top_interview #top_interview_message {
  position: relative;
  width: 100%;
  height: 100vw;
  text-align: center;
}
#top_interview #top_interview_message div, #top_interview #top_interview_message figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vw;
  object-fit: cover;
}
#top_interview #top_interview_message img {
  height: 100%;
  object-fit: cover;
  object-position: 10%;
}
#top_interview #top_interview_message div {
  z-index: 1;
  padding: 20vw 10vw 0;
  color: #fff;
  text-shadow: #000 0 0 10px;
}
#top_interview #top_interview_message div h2 {
  font-size: 7vw;
}
#top_interview #top_interview_message div h3 {
  font-size: 5vw;
  display: inline-block;
  line-height: 1.3;
  padding: 5vw 0;
  margin-bottom: 5vw;
}
#top_interview #top_interview_message div p {
  font-size: 3.2vw;
}
#top_interview ul li {
  position: relative;
  padding-top: 51.0416666667vw;
}
#top_interview ul li#top_interview_staff01 {
  background: url("../img/top/top_staff_01-sp.png") no-repeat center top/contain;
}
#top_interview ul li#top_interview_staff02 {
  background: url("../img/top/top_staff_02-sp.png") no-repeat center top/contain;
}
#top_interview ul li#top_interview_staff03 {
  background: url("../img/top/top_staff_03-sp.png") no-repeat center top/contain;
}
#top_interview ul li .top_interview_staff_stamp {
  width: 15vw;
  position: absolute;
  top: 3vw;
  right: 3vw;
  z-index: 1;
}
#top_interview ul li .top_interview_staff_stamp img {
  width: 100%;
}
#top_interview ul li div {
  display: block;
  width: 100%;
  background-color: #fff;
  color: #222;
  padding: 4vw 8vw;
}
#top_interview ul li div h4 {
  font-size: 5vw;
}
#top_interview ul li div p {
  letter-spacing: 2px;
  border-bottom: 2px solid #222;
  padding-bottom: 2.5vw;
  margin-bottom: 2.5vw;
}
#top_interview ul li div small {
  font-size: 2vw;
  line-height: 1.4;
  display: block;
}
#top_interview ul li div small span {
  font-size: 1.7vw;
  display: block;
}

#top_schedule .arrowDown {
  margin-top: -5vw;
}
#top_schedule .arrowEffect p {
  margin-top: -5vw;
}
#top_schedule #top_schedule_content {
  width: 80vw;
  margin: 5vw auto;
  border: 2px solid #fff;
  border-radius: 2.8vw 2.8vw 0 0;
  overflow: hidden;
}
#top_schedule #top_schedule_content #top_schedule_content_tab button {
  display: block;
  width: 100%;
  border: none;
  padding: 2vw 0;
  position: relative;
  background-color: #222;
  color: #fff;
}
#top_schedule #top_schedule_content #top_schedule_content_tab button:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.4vw 1vw 0 1vw;
  position: absolute;
  top: 50%;
  right: 2vw;
  margin-top: -1vw;
  border-color: #fff transparent transparent transparent;
}
#top_schedule #top_schedule_content #top_schedule_content_tab button.current {
  background-color: #fff;
  color: #222;
}
#top_schedule #top_schedule_content #top_schedule_content_tab button.current:before {
  border-color: #222 transparent transparent transparent;
}
#top_schedule #top_schedule_content #top_schedule_content_body {
  border-top: 2px solid #fff;
  padding-top: 2vw;
  text-align: center;
}
#top_schedule #top_schedule_content #top_schedule_content_body .top_schedule_content_body_headline {
  padding-bottom: 2.5vw;
}
#top_schedule #top_schedule_content #top_schedule_content_body .top_schedule_content_body_headline div {
  display: inline-block;
  margin: 0 auto;
  padding: 0.5vw 2vw;
  border: 2px solid #fff;
  border-radius: 2vw;
  font-size: 2vw;
  position: relative;
}
#top_schedule #top_schedule_content #top_schedule_content_body .top_schedule_content_body_headline div .arrowDownShort {
  top: 4.5vw;
  left: 50%;
  z-index: 9;
  height: 10vw;
  border: 0.2vw solid #fff;
}
#top_schedule #top_schedule_content #top_schedule_content_body .top_schedule_content_body_headline div .arrowDownShort::before {
  left: calc(50% - 1.1vw);
  width: 2vw;
  height: 2vw;
  z-index: 9;
  border-right: 0.4vw solid #fff;
  border-bottom: 0.4vw solid #fff;
}
#top_schedule #top_schedule_content #top_schedule_content_body #top_schedule_content_body_schedule_list {
  height: 42vh;
  overflow-y: auto;
  scrollbar-width: none;
}
#top_schedule #top_schedule_content #top_schedule_content_body #top_schedule_content_body_schedule_list::-webkit-scrollbar {
  display: none;
}
#top_schedule #top_schedule_content #top_schedule_content_body #top_schedule_content_body_schedule_list li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60vw;
  text-shadow: #000 0 0 10px;
}
#top_schedule #top_schedule_content #top_schedule_content_body #top_schedule_content_body_schedule_list li#top_schedule_content_body_schedule_list01 {
  background: url("../img/top/top_schedule_schedule01.png") no-repeat center top/cover;
}
#top_schedule #top_schedule_content #top_schedule_content_body #top_schedule_content_body_schedule_list li#top_schedule_content_body_schedule_list02 {
  background: url("../img/top/top_schedule_schedule02.jpg") no-repeat center top/cover;
}
#top_schedule #top_schedule_content #top_schedule_content_body #top_schedule_content_body_schedule_list li#top_schedule_content_body_schedule_list03 {
  background: url("../img/top/top_schedule_schedule03.jpg") no-repeat center top/cover;
}
#top_schedule #top_schedule_content #top_schedule_content_body #top_schedule_content_body_schedule_list li#top_schedule_content_body_schedule_list04 {
  background: url("../img/top/top_schedule_schedule04.jpg") no-repeat center top/cover;
}
#top_schedule #top_schedule_content #top_schedule_content_body #top_schedule_content_body_schedule_list li#top_schedule_content_body_schedule_list05 {
  background: url("../img/top/top_schedule_schedule05.jpg") no-repeat center top/cover;
}
#top_schedule #top_schedule_content #top_schedule_content_body #top_schedule_content_body_schedule_list li#top_schedule_content_body_schedule_list06 {
  background: url("../img/top/top_schedule_schedule06.png") no-repeat center top/cover;
}
#top_schedule #top_schedule_content #top_schedule_content_body #top_schedule_content_body_schedule_list li#top_schedule_content_body_schedule_list07 {
  background: url("../img/top/top_schedule_schedule07.jpg") no-repeat center top/cover;
}
#top_schedule #top_schedule_content #top_schedule_content_body #top_schedule_content_body_schedule_list li#top_schedule_content_body_schedule_list08 {
  background: url("../img/top/top_schedule_schedule08.jpg") no-repeat center top/cover;
}
#top_schedule #top_schedule_content #top_schedule_content_body #top_schedule_content_body_schedule_list li .top_schedule_content_body_list_arrow {
  position: absolute;
  bottom: -2.5vw;
  left: 50%;
  width: 0;
  height: 5vw;
  border: 0.1vw solid #fff;
  z-index: 9;
}
#top_schedule #top_schedule_content #top_schedule_content_body #top_schedule_content_body_schedule_list li .top_schedule_content_body_list_arrow::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -0.5vw;
  width: 1vw;
  height: 1vw;
  border-right: 0.2vw solid #fff;
  border-bottom: 0.2vw solid #fff;
  transform: rotate(45deg);
}
#top_schedule #top_schedule_content #top_schedule_content_body #top_schedule_content_body_schedule_list li .top_schedule_content_body_list_icon img {
  width: 12vw;
}
#top_schedule #top_schedule_content #top_schedule_content_body #top_schedule_content_body_schedule_list li .top_schedule_content_body_list_time {
  font-size: 7.5vw;
  border-bottom: 2px solid #fff;
  padding-bottom: 2vw;
  margin-bottom: 2vw;
  line-height: 1.4;
  box-shadow: 0px 4px 4px -2px rgba(0, 0, 0, 0.1);
}
#top_schedule #top_schedule_content #top_schedule_content_body #top_schedule_content_body_schedule_list li .top_schedule_content_body_list_time span {
  font-size: 2.7vw;
  display: block;
}
#top_schedule #top_schedule_content #top_schedule_content_body #top_schedule_content_body_schedule_list li .top_schedule_content_body_list_time span em {
  font-size: 2.1vw;
  font-style: normal;
}
#top_schedule #top_schedule_content #top_schedule_content_body #top_schedule_content_body_schedule_list li .top_schedule_content_body_list_message {
  font-size: 2.2vw;
}
#top_schedule #top_schedule_content #top_schedule_content_body #top_schedule_content_body_flow {
  display: none;
}
#top_schedule #top_schedule_content #top_schedule_content_body #top_schedule_content_body_flow_section {
  margin: 15vw 4vw 10vw;
  text-align: left;
}
#top_schedule #top_schedule_content #top_schedule_content_body #top_schedule_content_body_flow_section li {
  display: flex;
}
#top_schedule #top_schedule_content #top_schedule_content_body #top_schedule_content_body_flow_section li span {
  flex: 0 0 15vw;
  padding-top: 1vw;
}
#top_schedule #top_schedule_content #top_schedule_content_body #top_schedule_content_body_flow_section li div {
  border-left: 2px solid #fff;
}
#top_schedule #top_schedule_content #top_schedule_content_body #top_schedule_content_body_flow_section li div h3 {
  font-size: 3.8vw;
  margin: 0 0 2vw 10vw;
  position: relative;
}
#top_schedule #top_schedule_content #top_schedule_content_body #top_schedule_content_body_flow_section li div h3::before {
  content: "";
  position: relative;
  left: -10vw;
  top: 3.5vw;
  width: 8vw;
  height: 2px;
  display: block;
  background-color: #fff;
}
#top_schedule #top_schedule_content #top_schedule_content_body #top_schedule_content_body_flow_section li div h3::after {
  content: "";
  position: relative;
  left: -3.8vw;
  top: -4.3vw;
  width: 2vw;
  height: 2vw;
  display: block;
  background-color: #fff;
  border-radius: 50%;
}
#top_schedule #top_schedule_content #top_schedule_content_body #top_schedule_content_body_flow_section li div img {
  width: 100%;
  padding-left: 1vw;
  margin-bottom: 5vw;
}
#top_schedule #top_schedule_content #top_schedule_content_body #top_schedule_content_body_flow_section li div p {
  padding-bottom: 7.5vw;
  padding-left: 2vw;
}

#top_thumbs {
  width: 100%;
  overflow: hidden;
}
#top_thumbs .swiper-slide img {
  width: 100%;
}
#top_thumbs #top_thumbs_text {
  position: absolute;
  bottom: 5vw;
  left: 30vw;
  width: 40vw;
  text-align: center;
  z-index: 9;
  color: #222;
}
#top_thumbs #top_thumbs_text img {
  width: 100%;
}

#top_join {
  background-color: #fff;
  color: #222;
  padding-bottom: 5vw;
}
#top_join .arrowDown {
  border: 0.15vw solid #222;
}
#top_join .arrowDown::before {
  border-right: 0.2vw solid #222;
  border-bottom: 0.2vw solid #222;
}
#top_join h2 {
  font-size: 7vw;
  text-align: center;
  padding-top: 5vw;
}
#top_join h3 {
  font-size: 5vw;
  text-align: center;
  padding-top: 3vw;
}
#top_join dl {
  margin: 3vw auto 0;
  width: 75vw;
}
#top_join dl div {
  padding: 4vw 0;
  border-bottom: 1px solid #222;
}
#top_join dl div:first-child {
  border-top: 1px solid #222;
}
#top_join dl div dt {
  font-size: 3.4vw;
  margin-bottom: 1vw;
}
#top_join dl div dd {
  line-height: 1.4;
  font-size: 2.8vw;
}

#top_salary {
  background-color: #000;
}
#top_salary h2 {
  font-size: 7vw;
  text-align: center;
  padding-top: 7.5vw;
}
#top_salary h3 {
  font-size: 5vw;
  text-align: center;
  padding-top: 3vw;
}
#top_salary ul {
  width: 80vw;
  margin: 7.5vw auto;
}
#top_salary ul li {
  padding: 5vw;
  margin: 5vw auto;
  width: 100%;
  border: 2px solid #FFF;
  text-align: center;
}
#top_salary ul li h3 {
  font-size: 5.4vw;
}
#top_salary ul li h3 span {
  font-size: 7vw;
}
#top_salary ul li h4 {
  margin-top: 5vw;
  font-size: 4.4vw;
}
#top_salary ul li dl {
  font-size: 4.4vw;
}
#top_salary ul li dl div {
  display: flex;
  justify-content: space-between;
}
#top_salary ul li .top_salary_contents_s {
  font-size: 3.1vw;
  text-align: left;
  margin-bottom: 5vw;
}
#top_salary ul li .top_salary_contents_m {
  font-size: 3.4vw;
}
#top_salary ul li .top_salary_contents_l {
  font-size: 5.8vw;
  line-height: 1.4;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 5vw 0;
  margin-bottom: 5vw;
}
#top_salary ul li .top_salary_contents_l .small {
  font-size: 2.4vw;
  display: block;
}
#top_salary ul li .smaller {
  font-size: 2vw;
  display: block;
}
#top_salary ul li .top_salary_contents_h {
  border-top: 1px solid #fff;
  padding: 5vw 0;
  margin-top: 5vw;
}
#top_salary ul li .top_salary_thumb {
  margin: 5vw 0;
}
#top_salary ul li .top_salary_thumb img {
  width: 100%;
}

#top_entry {
  padding-bottom: 5vw;
}
#top_entry h2 {
  font-size: 7vw;
  text-align: center;
  padding-top: 5vw;
}
#top_entry #top_entry_phone {
  margin: 5vw auto 10vw;
  padding: 3.5vw 0;
  width: 63vw;
  border: 1px solid #fff;
  line-height: 1.2;
}
#top_entry #top_entry_phone #top_entry_phone_inner {
  width: fit-content;
  text-align: center;
  margin: 0 auto;
}
#top_entry #top_entry_phone #top_entry_phone_inner h3 {
  font-size: 2vw;
}
#top_entry #top_entry_phone #top_entry_phone_inner a {
  color: #fff;
  text-decoration: underline;
  display: inline-block;
  font-size: 5.2vw;
}
#top_entry #top_entry_insta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  width: 63vw;
  padding: 2vw 3vw;
  margin: 2vw auto 5vw;
  border: 1px solid #fff;
  color: #fff;
}
#top_entry #top_entry_insta img {
  width: 10vw;
}
#top_entry #top_entry_insta p {
  padding-bottom: 0.5vw;
}
#top_entry #top_entry_insta p span {
  display: block;
  font-size: 2vw;
}
#top_entry #top_entry_announce {
  text-align: center;
  height: 18vw;
}
#top_entry #top_entry_announce .arrowDownShort2 {
  display: block;
  left: 50%;
  position: relative;
  top: 5vw;
  border: 0.2vw solid #fff;
}
#top_entry #top_entry_announce .arrowDownShort2::before {
  left: -1vw;
  width: 2vw;
  height: 2vw;
  border-right: 0.4vw solid #fff;
  border-bottom: 0.4vw solid #fff;
}
#top_entry form {
  width: 75vw;
  margin: 5vw auto 0;
}
#top_entry form dl div {
  padding: 2vw 0;
  border-bottom: 1px solid #222;
}
#top_entry form dl div:first-child {
  border-top: 1px solid #222;
}
#top_entry form dl div dt {
  font-size: 3.4vw;
  margin-bottom: 1vw;
}
#top_entry form dl div dt span {
  display: inline-block;
  padding: 0.5vw 2vw;
  border: 1px solid #fff;
  font-size: 2vw;
  margin-right: 1.5vw;
  vertical-align: middle;
}
#top_entry form dl div dd input, #top_entry form dl div dd textarea, #top_entry form dl div dd select {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  width: 100%;
  padding: 2vw 0;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif !important;
}
#top_entry form dl div dd option {
  background-color: #444;
}
#top_entry form dl div dd option.option_disabled {
  display: none;
}
#top_entry form dl div dd textarea {
  height: 20vw;
}
#top_entry form .form_privacy {
  background: #fff;
  color: #0F1521;
  margin-bottom: 4vw;
}
#top_entry form .form_privacy .privacy-inner {
  padding: 2vw;
  overflow-y: scroll;
  height: 40vw;
}
#top_entry form .privacy_wrap-item {
  font-weight: 400;
  font-size: 2.4vw;
  line-height: 200%;
  letter-spacing: 0.1em;
  margin-bottom: 1.5vw;
}
#top_entry form .privacy_wrap-item.mb0 {
  margin-bottom: 0;
}
#top_entry form .privacy_wrap-number {
  list-style-type: decimal;
  text-indent: 0em;
  margin-left: 2em;
  margin-bottom: 1.5vw;
}
#top_entry form .privacy_wrap-abc {
  list-style-type: lower-alpha;
  text-indent: 0em;
  margin-left: 2em;
}
#top_entry form .privacy_wrap-child {
  list-style-type: lower-roman;
  text-indent: 0em;
  margin-left: 2em;
}
#top_entry form .mwform-checkbox-field label {
  display: flex;
  justify-content: center;
  font-size: 3.2vw;
  align-items: center;
  letter-spacing: 0.1em;
  line-height: 200%;
}
#top_entry form .mwform-checkbox-field label, .mwform-radio-field label {
  font-weight: normal;
  margin-bottom: 0;
}
#top_entry form .mwform-checkbox-field input {
  width: 3.4vw;
  height: 3.4vw;
  margin-right: 1rem;
}
#top_entry form .js-mw-checkbox {
  margin-bottom: 4vw;
}
#top_entry form #top_entry_submitBox {
  text-align: center;
}
#top_entry form #top_entry_submitBox button[type=submit] {
  background-color: transparent;
  border: 1px solid #fff;
  padding: 2vw 10vw;
}
#top_entry #thanks_kv > h2{
  font-size: 4.5vw;
}

#welfare_kv {
  background: url("../img/welfare/welfare_kv_sp.png") no-repeat center top/cover;
  height: 70vh;
  text-align: center;
}
#welfare_kv h1 {
  padding-top: 80vw;
  font-size: 7.6vw;
  line-height: 1.3;
}
#welfare_kv h1 span {
  padding-top: 5vw;
  font-size: 7vw;
  letter-spacing: 3px;
  display: inline-block;
}
#welfare_kv p {
  padding-top: 7.5vw;
  font-size: 4.2vw;
}

#welfare_slides {
  background-color: #fff;
  color: #222;
  padding-bottom: 5vw;
}
#welfare_slides .arrowDown {
  border: 0.2vw solid #222;
}
#welfare_slides .arrowDown::before {
  width: 2vw;
  height: 2vw;
  border-right: 0.4vw solid #222;
  border-bottom: 0.4vw solid #222;
}
#welfare_slides #welfare_slides_header {
  padding: 5vw 10vw 0;
  text-align: center;
}
#welfare_slides #welfare_slides_header h2 {
  font-size: 7vw;
}
#welfare_slides #welfare_slides_header p {
  font-size: 3.5vw;
  line-height: 1.4;
}
#welfare_slides .slider {
  overflow: hidden;
  margin: 5vw 12.5vw 0;
}
#welfare_slides .slider .swiper-wrapper img {
  width: 98%;
  margin: 0 auto;
  padding: 0 1px;
}
#welfare_slides .swiper-button-next, #welfare_slides .swiper-button-prev {
  color: #222;
}
#welfare_slides .swiper-button-next {
  right: 3.5vw;
}
#welfare_slides .swiper-button-prev {
  left: 3.5vw;
}
#welfare_slides .swiper-button-next:after, #welfare_slides .swiper-button-prev:after {
  font-size: 8vw;
}
#welfare_slides .thumbnail {
  margin: 3vw 5vw 0;
}
#welfare_slides .thumbnail .swiper-slide {
  text-align: center;
  border-left: 2px solid #222;
  cursor: pointer;
  margin-top: 2vw;
  color: #bbb;
  font-size: 2vw;
  line-height: 1.4;
  width: 33.3% !important;
}
#welfare_slides .thumbnail .swiper-slide:nth-of-type(1), #welfare_slides .thumbnail .swiper-slide:nth-of-type(4) {
  border-left: none;
}
#welfare_slides .thumbnail .swiper-slide span {
  font-size: 1.7vw;
  display: block;
  padding-top: 1.5vw;
}
#welfare_slides .thumbnail .swiper-slide-thumb-active {
  color: #222;
}
#welfare_slides .thumbnail .swiper-wrapper {
  flex-wrap: wrap;
  justify-content: center;
}
#welfare_slides .swiper-slide_inner div h3 {
  border: 2px solid #222;
  padding: 1vw 4vw 0.5vw;
  position: relative;
  margin: 0 0.1vw 0 2.5vw;
  font-size: 5vw;
  line-height: 1.4;
}
#welfare_slides .swiper-slide_inner div h3::before {
  position: absolute;
  content: "";
  width: 5vw;
  height: 2px;
  background-color: #222;
  left: -2.5vw;
  top: 50%;
  transform: translateY(-50%);
}
#welfare_slides .swiper-slide_inner div h3 span {
  font-size: 2.4vw;
  display: block;
}
#welfare_slides .swiper-slide_inner div p {
  line-height: 1.4;
  margin: 3vw;
}
#welfare_slides .swiper-slide_inner figure {
  width: 100%;
}
#welfare_slides .swiper-slide_inner figure img {
  width: 100%;
}

#welfare_message {
  background-color: #222;
}
#welfare_message #welfare_message_inbox {
  padding: 8vw 14vw 20vw;
}
#welfare_message #welfare_message_inbox h2 {
  font-size: 13.8vw;
  line-height: 1.4;
}
#welfare_message #welfare_message_inbox p {
  font-size: 5vw;
  margin-top: 7vw;
}
#welfare_message .arrowDownShort {
  top: 132vw;
  left: 50%;
  position: absolute;
  z-index: 9;
  height: 10vw;
  border: 0.2vw solid #fff;
}
#welfare_message .arrowDownShort::before {
  left: calc(50% - 1vw);
  z-index: 9;
  width: 2vw;
  height: 2vw;
  border-right: 0.4vw solid #fff;
  border-bottom: 0.4vw solid #fff;
}

#welfare_entryBtn {
  background-color: #fff;
}
#welfare_entryBtn a {
  display: block;
  position: relative;
  text-align: center;
  padding: 4vw 0;
  font-size: 3.4vw;
}
#welfare_entryBtn a span {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  position: relative;
  width: 3vw;
  height: 0.4vw;
  background-color: #222;
  left: 2vw;
}
#welfare_entryBtn a span::before {
  content: "";
  width: 2vw;
  height: 2vw;
  border: 0.4vw solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.15vw;
}

#welfare_interview {
  background-color: #fff;
  color: #222;
}
#welfare_interview .arrowDown {
  border: 0.2vw solid #222;
}
#welfare_interview .arrowDown::before {
  width: 2vw;
  height: 2vw;
  border-right: 0.4vw solid #222;
  border-bottom: 0.4vw solid #222;
}
#welfare_interview .welfare_interview_headline {
  padding: 5vw 10vw;
  text-align: center;
}
#welfare_interview .welfare_interview_headline h2 {
  font-size: 7vw;
}
#welfare_interview .welfare_interview_headline p {
  font-size: 4.2vw;
  line-height: 1.4;
  margin-top: 3vw;
}
#welfare_interview ul li {
  position: relative;
  padding-top: 51.0416666667vw;
}
#welfare_interview ul li#welfare_interview_staff01 {
  background: url("../img/top/top_staff_01-sp.png") no-repeat center top/contain;
}
#welfare_interview ul li#welfare_interview_staff02 {
  background: url("../img/top/top_staff_02-sp.png") no-repeat center top/contain;
}
#welfare_interview ul li#welfare_interview_staff03 {
  background: url("../img/top/top_staff_03-sp.png") no-repeat center top/contain;
}
#welfare_interview ul li .welfare_interview_staff_stamp {
  width: 15vw;
  position: absolute;
  top: 3vw;
  right: 3vw;
  z-index: 1;
}
#welfare_interview ul li .welfare_interview_staff_stamp img {
  width: 100%;
}
#welfare_interview ul li a {
  display: block;
  width: 100%;
  background-color: #fff;
  color: #222;
  padding: 4vw 8vw;
}
#welfare_interview ul li a h4 {
  font-size: 5vw;
}
#welfare_interview ul li a p {
  letter-spacing: 2px;
  border-bottom: 2px solid #222;
  padding-bottom: 2.5vw;
  margin-bottom: 2.5vw;
}
#welfare_interview ul li a small {
  font-size: 2vw;
  line-height: 1.4;
  display: block;
}
#welfare_interview ul li a small span {
  font-size: 1.7vw;
  display: block;
}

#interview_kv {
  background: url("../img/interview/interview_kv_sp.png") no-repeat center top/cover;
  height: 70vh;
  text-align: center;
}
#interview_kv h1 {
  padding-top: 80vw;
  font-size: 7.6vw;
}
#interview_kv h1 span {
  padding-top: 5vw;
  font-size: 7vw;
  letter-spacing: 3px;
  display: inline-block;
  line-height: 1.3;
}
#interview_kv p {
  padding-top: 7.5vw;
  font-size: 4.2vw;
}

.staff_kv {
  height: 55.5208333333vw;
  text-align: center;
  padding-top: 10vw;
}
.staff_kv#staff_kv_01 {
  background: url("../img/staff/kv_staff_01.png") no-repeat center top/cover;
}
.staff_kv#staff_kv_02 {
  background: url("../img/staff/kv_staff_02.png") no-repeat center top/cover;
}
.staff_kv#staff_kv_03 {
  background: url("../img/staff/kv_staff_03.png") no-repeat center top/cover;
}
.staff_kv #staff_kv_headline {
  font-size: 2.4vw;
}
.staff_kv h1 {
  padding: 5vw 0;
}
.staff_kv .arrowDownShort {
  left: 50%;
  top: 50vw;
  border: 0.2vw solid #fff;
}
.staff_kv .arrowDownShort::before {
  left: calc(50% - 1vw);
  width: 2vw;
  height: 2vw;
  border-right: 0.4vw solid #fff;
  border-bottom: 0.4vw solid #fff;
}

#staff_interview h2 {
  padding-top: 8vw;
  width: 30vw;
  margin: 0 auto;
  border-bottom: 2px solid #fff;
  text-align: center;
}

#staff_interview_textWrapper {
  margin: 8vw 8vw 0;
  padding: 5vw 5vw 0;
  background-color: #fff;
  color: #222;
}
#staff_interview_textWrapper .staff_interview_textWrapper_question {
  display: flex;
  justify-content: flex-start;
  gap: 2.5vw;
  padding-bottom: 5vw;
}
#staff_interview_textWrapper .staff_interview_textWrapper_question figure {
  flex: 0 0 10vw;
  height: 10vw;
}
#staff_interview_textWrapper .staff_interview_textWrapper_question figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #222;
}
#staff_interview_textWrapper .staff_interview_textWrapper_question p {
  flex: 0 0 calc(100% - 20vw);
  padding-top: 1.5vw;
}
#staff_interview_textWrapper .staff_interview_textWrapper_answer {
  display: flex;
  flex-direction: row-reverse;
  gap: 2.5vw;
  padding-bottom: 5vw;
}
#staff_interview_textWrapper .staff_interview_textWrapper_answer figure {
  flex: 0 0 10vw;
  height: 10vw;
}
#staff_interview_textWrapper .staff_interview_textWrapper_answer figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
#staff_interview_textWrapper .staff_interview_textWrapper_answer p {
  width: fit-content;
  padding-top: 1.5vw;
}
#staff_interview_textWrapper .staff_interview_textWrapper_thumb {
  padding-bottom: 5vw;
}
#staff_interview_textWrapper .staff_interview_textWrapper_thumb img {
  width: 100%;
}

#staff_footer {
  text-align: center;
  padding: 7.5vw 0;
}
#staff_footer h3 {
  width: 15vw;
  margin: 0 auto;
  border-bottom: 2px solid #fff;
  text-align: center;
}
#staff_footer figure {
  width: 30vw;
  margin: 3vw auto;
}
#staff_footer figure img {
  width: 100%;
}
#staff_footer #staff_footer_profile {
  width: fit-content;
  margin: 0 auto;
}
#staff_footer #staff_footer_profile span {
  display: block;
  border-top: 2px solid #fff;
  margin-top: 1vw;
  padding-top: 1vw;
}
#staff_footer #staff_footer_btn {
  width: 80vw;
  margin: 5vw auto 0;
}
#staff_footer #staff_footer_btn a {
  display: block;
  position: relative;
  text-align: center;
  padding: 4vw 0;
  font-size: 3.4vw;
  border: 1px solid #fff;
  color: #fff;
}
#staff_footer #staff_footer_btn a span {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  position: relative;
  width: 3vw;
  height: 0.4vw;
  background-color: #fff;
  left: 2vw;
}
#staff_footer #staff_footer_btn a span::before {
  content: "";
  width: 2vw;
  height: 2vw;
  border: 0.4vw solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.15vw;
}

#entry_content {
  text-align: center;
  padding: 7.5vw 0;
}
#entry_content h2 {
  font-size: 7.5vw;
}
#entry_content a img {
  width: 80vw;
}
#entry_content div {
  margin: 5vw auto 0;
  width: 80vw;
}
#entry_content div:last-child {
  border-top: 1px solid #fff;
  padding: 5vw 0;
}
#entry_content div address a {
  color: #fff;
  background-image: linear-gradient(#fff, #fff);
  font-size: 5vw;
}

#thanks_kv {
  background-color: #222;
  color: #f0f0f0;
  padding: 3vw;
  text-align: center;
}

#thanks_content {
  text-align: center;
  background-color: #fff;
  padding: 5vw 0;
  color: #222;
}
#thanks_content figure img {
  width: 30vw;
}
#thanks_content figure figcaption {
  color: #999;
  padding-top: 2vw;
}
#thanks_content p {
  padding-top: 5vw;
}
#thanks_content p span {
  font-size: 2vw;
}

#top_schedule_content_body_schedule.is_paged #top_schedule_content_body_schedule_list {
  height: inherit !important;
}

#top_schedule_content_body_flow.is_paged {
  display: block !important;
}

.pc_only {
  display: none !important;
}

.sp_only {
  display: block;
}

.clear::after {
  content: "";
  display: block;
  clear: both;
}

.isError {
  color: #cc0044;
}/*# sourceMappingURL=style_sp.css.map */