@charset "utf-8";

/* base */
* {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #000000;
}
html {
  font-size: 10px;
}
body {
  position: relative;
  font-size: 1.7rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  background-color: #ffffff;
  overflow-x: clip;
}

main {
  position: relative;
  width: 100%;
  background-color: #24dbef;
  padding: 4.0rem 0 0 0;
  border-radius: 4.0rem 4.0rem 0 0;
  box-shadow: 0px 0.1rem 0.5rem #999999;
  z-index: 1;
}
section {
  position: relative;
  width: 100%;
  z-index: 1;
  padding: 6.0rem 0;
}

#wrapper {
  position: relative;
  width: 58.0rem;
  margin: 0 auto;
  padding: 3.0rem 0 0 0;
  left: 12.0rem;
}

.sec_light {
  background-color: #ffffff;
  color: #000000;
}
.sec_light * {
  color: #000000;
}

.sec_dark {
  background-color: #24dbef;
  color: #000000;
}
.sec_dark * {
  color: #000000;
}

.h2_container {
  position: relative;
  width: 100%;
}
.h2_container .h2 {
  line-height: 1;
  margin: 0 auto;
  text-align: center;
  font-size: 9.2rem;
  padding: 0;
}
.h2_container .h2_subtitle {
  line-height: 1;
  margin: 0.5rem auto 0 auto;
  text-align: center;
  width: fit-content;
  font-size: 2.4rem;
  font-weight: 700;
  padding: 0.5rem 0.5rem 0.9rem 0.5rem;
}
.sec_light .h2_subtitle {
  background-color: #000000;
  color: #ffffff
}
.sec_dark .h2_subtitle {
  background-color: #000000;
  color: #ffffff
}

.body_container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.common_button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 9.6rem;
  border-radius: 4.8rem;
  color: #ffffff;
  background-color: #e93c33;
  font-size: 2.0rem;
  font-weight: 500;
  z-index: 1;
  overflow: visible;
  transition: all 0.3s;
  opacity: 1;
}
.common_button .common_button_icon {
  position: relative;
  width: 5.8rem;
  left: -3.0em;
  top: 0.2em;
}
.common_button .common_button_text {
  color: #ffffff;
  font-size: 2.0rem;
  font-weight: 500;
  text-indent: -1.0em;
}
.common_button:hover {
  opacity: 0.6;
}
.common_button:after {
  content: "→";
  display: block;
  position: absolute;
  width: 2.0rem;
  text-align: center;
  font-size: 2.0rem;
  font-weight: 500;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
}

.font_title_en,
.font_title_en * {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}
.font_serif_jp,
.font_serif_jp * {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
ul.list_style_square li,
li.list_style_square {
  list-style: square;
}



/* Loading */
#loader_bg {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #ffffff;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#loader_bg .loader_img {
  width: 20.0rem;
}

#loader_bg .loader_inner {
  position: relative;
  padding: 1.0rem 0 0 0;
}
#loader_bg .loader_inner_ball_pulse > div {
  background-color: #24dbef;
  width: 1.0rem;
  height: 1.0rem;
  border-radius: 100%;
  margin: 0.2rem;
  animation-fill-mode: both;
  display: inline-block;
}
#loader_bg .loader_inner_ball_pulse > div:nth-child(1) {
  animation: loading_ball_pulse_animation 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
#loader_bg .loader_inner_ball_pulse > div:nth-child(2) {
  animation: loading_ball_pulse_animation 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
#loader_bg .loader_inner_ball_pulse > div:nth-child(3) {
  animation: loading_ball_pulse_animation 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}



/* Header */
header {
  position: relative;
  width: 100%;
}
header .menu_area {
  position: relative;
  width: 100%;
  left: 0;
  top: 0;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  z-index: 94;
}

header .menu_area .heading_container {
  position: relative;
  display: none;
}
header .menu_area .heading_container .heading_logo {
  width: 14.8rem;
}

header .fv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  overflow-x: clip;
}
header .fv .fv_inner {
  position: relative;
  width: 100%;
  height: 100vh;
  text-align: center;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
}
header .fv .fv_inner .fv_bg_image_container {
  position: absolute;
  display: block;
  width: 70.0vh;
  top: 50%;
  transform: translateY(-50%);
  right: calc(50% + 29.0rem - 12.0rem);
  text-align: right;
}
header .fv .fv_inner .fv_bg_image_container .fv_bg_image {
  position: relative;
}

header .fv .fv_bg_pattern_left {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
header .fv .fv_bg_pattern_right {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
}

header .fv .fv_button_container {
  position: absolute;
  width: 100%;
  margin: auto;
  padding: 0;
  left: 0;
  right: 0;
  top: 86%;
}
header .fv .fv_button_container .fv_button.common_button {
  width: 76%;
  margin: 0 auto;
}



/* Footer */
footer {
  position: relative;
  width: 100%;
  background-color: #000000;
}
footer .footer_copyright {
  position: relative;
  width: 100%;
  color: #ffffff;
  text-align: center;
  font-size: 1.2rem;
  padding: 0.4rem 0;
}



/* About */
.sec_about {
  padding: 3.0rem 0 4.0rem 0;
  border-radius: 4.0rem 0 0 0;
}

.sec_about .body_container {
  margin: 3.0rem auto 0 auto;
  padding: 3.0rem 0 5.0rem 0;
  width: 90%;
  background-color: #ffffff;
  border-radius: 3.0rem;
}

.sec_about .about_detail {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.sec_about .about_detail .about_detail_logo {
  position: relative;
  width: 24%;
  margin: 2.0rem auto 0 auto;
  text-align: center;
}
.sec_about .about_detail .about_detail_logo img.about_detail_logo_image {
  width: 100%;
}
.sec_about .about_detail .about_detail_title {
  position: relative;
  width: 100%;
  margin: 2.0rem auto 0 auto;
}
.sec_about .about_detail .about_detail_title .about_detail_title_inner {
  position: relative;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
}
.sec_about .about_detail .about_detail_title .about_detail_title_inner .about_detail_title_highlight {
  position: relative;
  display: inline-block;
  padding: 0rem 0.4rem 0.2rem 0.6rem;
  margin: 0 0.2rem;
  font-size: 2.4rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #e93c33;
}
.sec_about .about_detail .about_detail_catchphrase {
  position: relative;
  width: 100%;
  margin: 2.0rem auto 1.0rem auto;
  font-size: 3.8rem;
  font-weight: 600;
  text-align: center;
  text-indent: 0.6em;
}
.sec_about .about_detail .about_detail_text {
  position: relative;
  width: 90%;
  margin: 0 auto;
}
.sec_about .about_detail .about_detail_text .about_detail_text_inner {
  position: relative;
  width: 100%;
  margin: 1.8rem auto 0 auto;
  line-height: 1.8;
  font-weight: 400;
}

.sec_about .about_photo {
  position: relative;
  width: 90%;
  margin: 1.5rem auto 0 auto;
}
.sec_about .about_photo .about_photo_list {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
}
.sec_about .about_photo .about_photo_list > li {
  position: relative;
  margin: 1.0rem 0 1.0rem 0;
  display: block;
  width: 48%;
  aspect-ratio: 1.32;
}
.sec_about .about_photo .about_photo_list > li > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.sec_about .about_button_container .about_button.common_button {
  width: 84%;
  margin: 4.0rem auto 0 auto;
}



/* Message */
.sec_message {
  padding: 5.0rem 0 4.0rem 0;
}

.sec_message .body_container {
  margin: 3.0rem auto 0 auto;
  padding: 3.0rem 0 5.0rem 0;
  width: 90%;
  background-color: #ffffff;
  border-radius: 3.0rem;
  overflow: clip;
}

.sec_message .message_detail {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.sec_message .message_detail .message_detail_photo {
  position: absolute;
  width: 42%;
  bottom: -18.0rem;
  right: 7%;
}
.sec_message .message_detail .message_detail_photo img.message_detail_photo_image {
  width: 100%;
}

.sec_message .message_detail .message_detail_text {
  position: relative;
  width: 90%;
  margin: 0 auto;
}
.sec_message .message_detail .message_detail_text .message_detail_text_highlight {
  color: #e93c33;
  font-weight: 500;
}
.sec_message .message_detail .message_detail_text .message_detail_text_inner {
  position: relative;
  width: 100%;
  margin: 3.0rem auto 0 auto;
  font-weight: 400;
  line-height: 1.8;
}
.sec_message .message_detail .message_detail_text .message_detail_text_inner:first-child {
  margin: 0 auto;
}
.sec_message .message_detail .message_detail_text .message_detail_text_inner.meaning_detail_text_catchphrase_container {
  line-height: 1.5;
}
.sec_message .message_detail .message_detail_text .message_detail_text_inner.message_detail_text_catchphrase_container {
  margin: 0.4rem auto 0 auto;
  line-height: 1.5;
}
.sec_message .message_detail .message_detail_text .message_detail_text_inner.message_detail_text_profile_container {
  line-height: 1.4;
}
.sec_message .message_detail .message_detail_text .message_detail_text_inner .message_detail_text_meaning,
.sec_message .message_detail .message_detail_text .message_detail_text_inner .message_detail_text_meaning * {
  font-weight: 400;
}
.sec_message .message_detail .message_detail_text .message_detail_text_inner .message_detail_text_meaning .message_detail_text_highlight {
  font-weight: 500;
}
.sec_message .message_detail .message_detail_text .message_detail_text_inner .message_detail_text_catchphrase,
.sec_message .message_detail .message_detail_text .message_detail_text_inner .message_detail_text_catchphrase * {
  font-size: 3.0rem;
  font-weight: 500;
}
.sec_message .message_detail .message_detail_text .message_detail_text_inner .message_detail_text_position,
.sec_message .message_detail .message_detail_text .message_detail_text_inner .message_detail_text_position * {
  font-size: 1.4rem;
  font-weight: 400;
}
.sec_message .message_detail .message_detail_text .message_detail_text_inner .message_detail_text_name,
.sec_message .message_detail .message_detail_text .message_detail_text_inner .message_detail_text_name * {
  font-size: 2.6rem;
  font-weight: 600;
}



/* Voice */
.sec_voice {
  padding: 5.0rem 0 12.0rem 0;
}

.sec_voice .body_container {
  margin: 3.0rem auto 0 auto;
  padding: 3.0rem 0 5.0rem 0;
  width: 90%;
  background-color: #ffffff;
  border-radius: 3.0rem;
  overflow: clip;
}

.sec_voice .voice_detail {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.sec_voice .voice_detail .voice_detail_photo {
  position: absolute;
  width: 42%;
  bottom: -10.0rem;
  right: 4%;
}
.sec_voice .voice_detail .voice_detail_photo img.voice_detail_photo_image {
  width: 100%;
}

.sec_voice .voice_detail .voice_detail_text {
  position: relative;
  width: 90%;
  margin: 0 auto;
}
.sec_voice .voice_detail .voice_detail_text .voice_detail_text_highlight {
  color: #e93c33;
  font-weight: 500;
}
.sec_voice .voice_detail .voice_detail_text .voice_detail_text_inner {
  position: relative;
  width: 100%;
  margin: 3.0rem auto 0 auto;
  font-weight: 400;
  line-height: 1.8;
}
.sec_voice .voice_detail .voice_detail_text .voice_detail_text_inner:first-child {
  margin: 0 auto;
}
.sec_voice .voice_detail .voice_detail_text .voice_detail_text_inner.voice_detail_text_profile_container {
  line-height: 1.4;
}
.sec_voice .voice_detail .voice_detail_text .voice_detail_text_inner .voice_detail_text_position,
.sec_voice .voice_detail .voice_detail_text .voice_detail_text_inner .voice_detail_text_position * {
  font-size: 1.4rem;
  font-weight: 400;
}
.sec_voice .voice_detail .voice_detail_text .voice_detail_text_inner .voice_detail_text_name,
.sec_voice .voice_detail .voice_detail_text .voice_detail_text_inner .voice_detail_text_name * {
  font-size: 2.6rem;
  font-weight: 600;
}



/* Recruit */
.sec_recruit {
  margin: -4.0rem auto 0 auto;
  padding: 6.0rem 0 3.0rem 0;
  border-radius: 4.0rem 0 0 0;
  background-color: #ffffff;
  overflow-x: clip;
}

.sec_recruit .recruit_bg_pattern {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 35%;
}

.sec_recruit .body_container {
  margin: 3.0rem auto 0 auto;
  padding: 0 0 5.0rem 0;
  width: 90%;
}
.sec_recruit .recruit_summary {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.sec_recruit .recruit_summary .recruit_summary_photo {
  position: relative;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.sec_recruit .recruit_summary .recruit_summary_photo img.recruit_summary_photo_image {
  width: 100%;
}
.sec_recruit .recruit_summary .recruit_summary_title {
  position: relative;
  width: 100%;
  margin: 2.0rem auto 0 auto;
  text-align: center;
}
.sec_recruit .recruit_summary .recruit_summary_title .recruit_summary_title_small {
  position: relative;
  font-size: 3.0rem;
  font-weight: 600;
  text-align: center;
}
.sec_recruit .recruit_summary .recruit_summary_title .recruit_summary_title_big_container {
  position: relative;
  display: flex;
  justify-content: space-evenly;
  align-items: start;
}
.sec_recruit .recruit_summary .recruit_summary_title .recruit_summary_title_big {
  position: relative;
  width: fit-content;
  font-size: 5.2rem;
  font-weight: 600;
  color: #e93c33;
}

.sec_recruit .recruit_detail {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.sec_recruit .recruit_detail .recruit_detail_container {
  position: relative;
  width: 100%;
  margin: 3.0rem auto 5.0rem auto;
}
.sec_recruit .recruit_detail .recruit_detail_container .recruit_detail_h3_container {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: start;
  align-items: center;
  margin: 0;
  left: 0;
  top: 0;
}
.sec_recruit .recruit_detail .recruit_detail_container .recruit_detail_h3_container .recruit_detail_h3 {
  position: relative;
  height: 4.4rem;
  line-height: 4.2rem;
  font-size: 2.0rem;
  font-weight: 700;
  text-align: center;
  border-radius: 2.2rem;
  padding: 0 2.5rem;
  color: #ffffff;
  background-color: #000000;
}

.sec_recruit .recruit_detail .recruit_detail_container .recruit_detail_list {
  position: relative;
  width: 100%;
  margin: 1.0rem auto 0 auto;
}
.sec_recruit .recruit_detail .recruit_detail_container .recruit_detail_list > li {
  position: relative;
  margin: 0 auto 0 1.2em;
  font-size: 1.6rem;
  line-height: 1.8;
}
.sec_recruit .recruit_detail .recruit_detail_container .recruit_detail_note {
  position: relative;
  width: fit-content;
  margin: 1.0rem auto 0 auto;
  font-size: 1.9rem;
  color: #e93c33;
  font-weight: 600;
}

.sec_recruit .recruit_detail .recruit_detail_text {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 3.0rem 5% 2.5rem 5%;
  background-color: #f6f6f6;
  border-radius: 3.0rem;
}
.sec_recruit .recruit_detail .recruit_detail_text .recruit_detail_text_highlight {
  color: #e93c33;
  font-weight: 500;
}
.sec_recruit .recruit_detail .recruit_detail_text .recruit_detail_text_inner {
  position: relative;
  width: 100%;
  margin: 3.0rem auto 0 auto;
  font-weight: 400;
  line-height: 1.8;
}
.sec_recruit .recruit_detail .recruit_detail_text .recruit_detail_text_inner:first-child {
  margin: 0 auto;
}

.sec_recruit .recruit_detail .recruit_detail_text .recruit_detail_photo {
  position: relative;
  width: 100%;
  margin: 3.0rem auto 0 auto;
  text-align: center;
  overflow: clip;
  border-radius: 2.0rem;
}
.sec_recruit .recruit_detail .recruit_detail_text .recruit_detail_photo img.recruit_detail_photo_image {
  width: 100%;
}

.sec_recruit .recruit_button_container .recruit_button.common_button {
  width: 84%;
  margin: 5.0rem auto 0 auto;
}



/* Flow */
.sec_flow {
  padding: 3.0rem 0 6.0rem 0;
}

.sec_flow .flow_bg_pattern {
  display: block;
  position: absolute;
  left: 0;
  top: -15%;
  width: 38%;
}

.sec_flow .flow_step {
  position: relative;
  width: 86%;
  margin: 2.5rem auto 0 auto;
}
.sec_flow .flow_step > li {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: start;
  align-items: center;
  left: 0;
  top: 0;
  margin: 0 auto;
  padding: 2.0rem 0;
}
.sec_flow .flow_step > li:not(:first-child) {
  border-top: 1px #a4a4a4 solid;
}
.sec_flow .flow_step > li .flow_step_icon {
  position: relative;
  width: 20%;
  text-align: center;
}
.sec_flow .flow_step > li .flow_step_icon img.flow_step_icon_image {
  width: 80%;
}
.sec_flow .flow_step > li .flow_step_text {
  position: relative;
  width: 80%;
  padding: 0 0.5rem 0 1.5rem;
}
.sec_flow .flow_step > li .flow_step_text .flow_step_text_no {
  position: relative;
  width: fit-content;
  font-size: 1.4rem;
  font-weight: 700;
  height: 2.2rem;
  line-height: 2.1rem;
  border-radius: 1.1rem;
  padding: 0 1.5rem;
  color: #ffffff;
  background-color: #24dbef;
}
.sec_flow .flow_step > li .flow_step_text .flow_step_text_title {
  position: relative;
  font-size: 2.6rem;
  font-weight: 700;
  margin: 0.5rem auto 0 auto;
}
.sec_flow .flow_step > li .flow_step_text .flow_step_text_description {
  position: relative;
  margin: 0.5rem auto 0 auto;
}
.sec_flow .flow_step > li .flow_step_text .flow_step_text_description .flow_step_text_description_detail {
  position: relative;
  margin: 0 auto;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
}
.sec_flow .flow_step > li .flow_step_text .flow_step_text_description .flow_step_text_description_list > li {
  position: relative;
  margin: 0 auto 0 1.2em;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
}



/* Q&A */
.sec_q_and_a {
  padding: 1.0rem 0 6.0rem 0;
}
.sec_q_and_a .q_and_a_detail {
  position: relative;
  width: 90%;
  margin: 0 auto;
}
.sec_q_and_a .q_and_a_detail > li {
  position: relative;
  width: 100%;
  padding: 2.0rem 5% 4.0rem 5%;
}
.sec_q_and_a .q_and_a_detail > li:not(:first-child) {
  border-top: 1px #999999 dashed;
}

.sec_q_and_a .q_and_a_detail > li .q_and_a_detail_q:after,
.sec_q_and_a .q_and_a_detail > li .q_and_a_detail_a:after {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 4.4rem;
  left: -2.2rem;
  font-size: 2.0rem;
  font-weight: 700;
}
.sec_q_and_a .q_and_a_detail > li .q_and_a_detail_q:after {
  content: "Q";
  color: #ffffff;
  background-color: #000000;
  top: 50%;
  transform: translateY(-50%);
}
.sec_q_and_a .q_and_a_detail > li .q_and_a_detail_a:after {
  content: "A";
  color: #000000;
  background-color: #24dbef;
  top: 1.6rem;
}

.sec_q_and_a .q_and_a_detail > li .q_and_a_detail_text {
  padding: 2.8rem 4.4rem;
  line-height: 1.8;
}
.sec_q_and_a .q_and_a_detail > li .q_and_a_detail_q_text {
  font-size: 2.0rem;
  font-weight: 700;
}
.sec_q_and_a .q_and_a_detail > li .q_and_a_detail_a_text {
  background-color: #f6f6f6;
  border-radius: 1.6rem;
  font-weight: 500;
}



/* Company */
.sec_company {
  padding: 6.0rem 0 10.0rem 0;
  background: url(../img/company_bg.jpg) no-repeat center center;
  background-size: cover;
  color: #ffffff;
}
.sec_company * {
  color: #ffffff;
}
.sec_company .body_container {
  margin: 0 auto;
  padding: 0;
  width: 90%;
}
.sec_company .company_title {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.sec_company .company_title .company_title_subtitle {
  position: relative;
  color: #24dbef;
  font-size: 1.4rem;
  font-weight: 700;
}
.sec_company .company_title .company_title_h2 {
  position: relative;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.2;
}

.sec_company .company_information {
  position: relative;
  width: 100%;
  margin: 4.0rem auto 0 auto;
}
.sec_company .company_information > dt {
  position: relative;
  width: fit-content;
  margin: 2.0rem auto 0 0;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0 0.5rem 0.1rem 0.5rem;
  color: #000000;
  background-color: #ffffff;
}
.sec_company .company_information > dd {
  position: relative;
  margin: 0.5rem auto 0 auto;
}

.sec_company .company_contact {
  position: relative;
  width: 100%;
  margin: 4.0rem auto 0 auto;
  padding: 4.0rem 0 0 0;
  border-top: 1px #a4a4a4 solid;
}
.sec_company .company_contact .company_contact_title {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 3.8rem;
  font-weight: 600;
  line-height: 1.3;
}
.sec_company .company_contact .company_contact_note {
  position: relative;
  width: 100%;
  margin: 5.0rem auto 0 auto;
  text-align: center;
}

.sec_company .company_button_container .company_button.common_button {
  width: 84%;
  margin: 2.5rem auto 0 auto;
}



/* responsive */
/*
@media (min-width: 769px) {
*/
@media (min-width: 871px) {
  /* base */
  .visible_in_sp {
    display: none;
  }
}

/*
@media (max-width: 768px) {
*/
@media (max-width: 870px) {
  /* base */
  .visible_in_pc {
    display: none;
  }
  
  main {
    background-color: #ffffff;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
  }
  
  #wrapper {
    width: 100%;
    padding: 0;
    left: 0;
  }
  
  .h2_container .h2 {
    font-size: 15.8vw;
  }
  .h2_container .h2_subtitle {
    font-size: 4.2vw;
    padding: 0.6rem 0.6rem 0.8rem 0.6rem;
  }
  
  .common_button {
    height: 15.2vw;
    border-radius: 7.6vw;
    font-size: 4.2vw;
    font-weight: 700;
  }
  .common_button .common_button_icon {
    width: 10.0vw;
    left: -2.0em;
    top: 0.1em;
  }
  .common_button .common_button_text {
    font-size: 4.2vw;
    font-weight: 700;
  }
  .common_button:after {
    width: 4.2vw;
    font-size: 4.2vw;
    font-weight: 700;
    right: 6%;
  }
  
  
  
  /* Header */
  header .menu_area {
    padding: 1.0rem 2.0rem;
  }
  
  header .menu_area .heading_container {
    display: flex;
    justify-content: start;
    align-items: center;
    margin: 0;
    left: 0;
    top: 0;
  }
  
  header .fv {
    position: relative;
  }
  header .fv .fv_inner {
    height: auto;
    padding: 6.4vw 0 32.4vw 0;
  }
  header .fv .fv_inner .fv_bg_image_container {
    position: relative;
    width: 97%;
    margin: 0 0 0 auto;
    top: 0;
    transform: none;
    left: 0;
    right: auto;
    text-align: center;
  }
  header .fv .fv_inner .fv_bg_image_container .fv_bg_image {
    width: 100%;
  }
  
  header .fv .fv_bg_pattern_left {
    width: 64%;
  }
  header .fv .fv_bg_pattern_right {
    width: 100%;
  }
  
  header .fv .fv_button_container {
    top: auto;
    bottom: 9.3vw;
  }
  
  
  
  /* Footer */
  footer .footer_copyright {
    font-size: 1.4rem;
    padding: 0.8rem 0;
  }
  
  
  
  /* About */
  .sec_about {
    padding: 6.0rem 0 4.0rem 0;
  }
  
  .sec_about .about_detail .about_detail_title .about_detail_title_inner {
    font-size: 4.2vw;
  }
  .sec_about .about_detail .about_detail_title .about_detail_title_inner .about_detail_title_highlight {
    font-size: 4.2vw;
  }
  
  .sec_about .about_detail .about_detail_catchphrase {
    font-size: 6.9vw;
  }
  
  .sec_about .about_detail .about_detail_text .about_detail_text_inner {
    font-size: 3.7vw;
  }
  
  
  
  /* Message */
  .sec_message .message_detail .message_detail_photo {
    bottom: -28.0vw;
    right: 3%;
  }
  .sec_message .message_detail .message_detail_text .message_detail_text_inner,
  .sec_message .message_detail .message_detail_text .message_detail_text_inner * {
    font-size: 3.7vw;
  }
  .sec_message .message_detail .message_detail_text .message_detail_text_inner .message_detail_text_meaning,
  .sec_message .message_detail .message_detail_text .message_detail_text_inner .message_detail_text_meaning * {
    font-size: 3.2vw;
  }
  .sec_message .message_detail .message_detail_text .message_detail_text_inner .message_detail_text_catchphrase,
  .sec_message .message_detail .message_detail_text .message_detail_text_inner .message_detail_text_catchphrase * {
    font-size: 4.8vw;
    font-weight: 600;
  }
  .sec_message .message_detail .message_detail_text .message_detail_text_inner .message_detail_text_position,
  .sec_message .message_detail .message_detail_text .message_detail_text_inner .message_detail_text_position * {
    font-size: 3.2vw;
  }
  .sec_message .message_detail .message_detail_text .message_detail_text_inner .message_detail_text_name,
  .sec_message .message_detail .message_detail_text .message_detail_text_inner .message_detail_text_name * {
    font-size: 4.8vw;
  }
  
  
  
  /* Voice */
  .sec_voice .voice_detail .voice_detail_photo {
    bottom: -15.0vw;
    right: -4%;
  }
  .sec_voice .voice_detail .voice_detail_text .voice_detail_text_inner,
  .sec_voice .voice_detail .voice_detail_text .voice_detail_text_inner * {
    font-size: 3.7vw;
  }
  .sec_voice .voice_detail .voice_detail_text .voice_detail_text_inner .voice_detail_text_position,
  .sec_voice .voice_detail .voice_detail_text .voice_detail_text_inner .voice_detail_text_position * {
    font-size: 3.2vw;
  }
  .sec_voice .voice_detail .voice_detail_text .voice_detail_text_inner .voice_detail_text_name,
  .sec_voice .voice_detail .voice_detail_text .voice_detail_text_inner .voice_detail_text_name * {
    font-size: 4.8vw;
  }
  
  
  
  /* Recruit */
  .sec_recruit .recruit_bg_pattern {
    width: 39%;
  }
  .sec_recruit .recruit_summary .recruit_summary_title .recruit_summary_title_small {
    font-size: 5.5vw;
  }
  .sec_recruit .recruit_summary .recruit_summary_title .recruit_summary_title_big {
    font-size: 9.0vw;
  }
  .sec_recruit .recruit_detail .recruit_detail_text .recruit_detail_text_inner,
  .sec_recruit .recruit_detail .recruit_detail_text .recruit_detail_text_inner * {
    font-size: 3.7vw;
  }
  
  
  
  /* Flow */
  .sec_flow .flow_bg_pattern {
    top: -5%;
  }
  
  
  
  /* Q&A */
  .sec_q_and_a .q_and_a_detail {
    width: 96%;
  }
  .sec_q_and_a .q_and_a_detail > li {
    padding: 2.0rem 2% 5.0rem calc(2% + 2.2rem);
  }
  .sec_q_and_a .q_and_a_detail > li .q_and_a_detail_text {
    padding: 2.4rem 3.2rem;
  }
  
  
  
  /* Company */
  .sec_company .company_contact .company_contact_title {
    font-size: 7.6vw;
  }
}
