@charset "UTF-8";
/*
Theme Name:
License: うとね
License URI: https://utone.jp
Version : 1.0
*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --black: #000;
  --white: #fff;
  --color_key: #204D7A;
  --color_key_deep: #113050;
  --beige: #F9F4EC;
  --blue_light: #EBF0F5;
  --blue_light_02: #DAE8FA;
  --beige_light: #F9F4EC;
  --line_blue: #98A5B1;
  --key_orange: #E8A935;
  --gray: #E3E5E7;
  --font_title: "Shippori Mincho B1", serif;
  --font_text: "Zen Kaku Gothic New", sans-serif;
  --font_en: "Slackside One", cursive;
  --font_base: var(--font_text);
  --font_size_m: max(17px, 1.4rem);
}

@-webkit-keyframes fade_in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade_in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 全体的なサイト設定
========================== */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 0.6944444444vw;
  margin: 0;
  padding: 0;
  line-height: 1.7;
}
@media (min-width: 1441px) {
  html {
    font-size: clamp(10px, 0.65vw, 11px);
  }
}
@media (max-width: 768px) {
  html {
    font-size: 10px;
  }
}
html.scroll {
  scroll-behavior: auto;
}

html {
  scroll-padding-top: 5rem;
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 1rem;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font_base);
  font-weight: 400;
  color: var(--black);
  font-size: max(1.8rem, 16px);
  letter-spacing: 0.05em;
  position: relative;
  counter-reset: number 0;
  word-break: break-all;
  text-align: justify;
  text-justify: inter-ideograph;
  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;
  min-height: 100svh;
}
@media (max-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}
body.open, body.modal_active {
  overflow: hidden !important;
}

main {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  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;
  padding-top: 7rem;
}
main.is_front {
  padding-top: 0;
}
@media (max-width: 768px) {
  main {
    padding-top: 65px;
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

i {
  font-weight: bold;
}

a {
  text-decoration: none;
  display: inline-block;
  color: var(--black);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
a.block {
  display: block;
}

strong {
  font-weight: bold;
}

button {
  border: none;
  background: none;
  padding: 0;
  outline: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

/* width関連
========================== */
.w_xl {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 96vw;
}
@media (max-width: 768px) {
  .w_xl {
    width: 94vw;
  }
}
.w_l {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 92vw;
  max-width: 1200px;
}
@media (min-width: 1701px) {
  .w_l {
    max-width: 120rem;
  }
}
@media (min-width: 2001px) {
  .w_l {
    max-width: 132rem;
  }
}
@media (max-width: 768px) {
  .w_l {
    width: 90vw;
  }
}
.w_m {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 88vw;
  max-width: 1050px;
}
@media (min-width: 1701px) {
  .w_m {
    max-width: 105rem;
  }
}
@media (min-width: 2001px) {
  .w_m {
    max-width: 126rem;
  }
}
@media (max-width: 768px) {
  .w_m {
    width: 90vw;
  }
}
.w_m_right {
  margin-right: auto;
  width: 88vw;
  max-width: calc(1050px + (100% - 1050px) / 2);
}
@media (min-width: 1701px) {
  .w_m_right {
    max-width: calc(105rem + (100% - 105rem) / 2);
  }
}
@media (min-width: 2001px) {
  .w_m_right {
    max-width: calc(126rem + (100% - 126rem) / 2);
  }
}
@media (max-width: 768px) {
  .w_m_right {
    width: 90vw;
  }
}
.w_m_left {
  margin-left: auto;
  width: 94vw;
  max-width: calc(1050px + (100% - 1050px) / 2);
}
@media (min-width: 1701px) {
  .w_m_left {
    max-width: calc(105rem + (100% - 105rem) / 2);
  }
}
@media (min-width: 2001px) {
  .w_m_left {
    max-width: calc(126rem + (100% - 126rem) / 2);
  }
}
@media (max-width: 768px) {
  .w_m_left {
    width: 90vw;
  }
}
.w_s {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 89vw;
  max-width: 835px;
}
@media (min-width: 1701px) {
  .w_s {
    max-width: 83.5rem;
  }
}
@media (min-width: 2001px) {
  .w_s {
    max-width: 100.2rem;
  }
}
@media (max-width: 600px) {
  .w_s {
    width: 90vw;
  }
}

.mb_xxxl {
  margin-bottom: 17.5rem;
}
@media (max-width: 768px) {
  .mb_xxxl {
    margin-bottom: 14rem;
  }
}
.mb_xxl {
  margin-bottom: 15rem;
}
@media (max-width: 768px) {
  .mb_xxl {
    margin-bottom: 12rem;
  }
}
.mb_xl {
  margin-bottom: 12.5rem;
}
@media (max-width: 768px) {
  .mb_xl {
    margin-bottom: 10rem;
  }
}
.mb_l {
  margin-bottom: 10rem;
}
@media (max-width: 768px) {
  .mb_l {
    margin-bottom: 8rem;
  }
}
.mb_m {
  margin-bottom: 7.5rem;
}
@media (max-width: 768px) {
  .mb_m {
    margin-bottom: 6rem;
  }
}
.mb_s {
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .mb_s {
    margin-bottom: 4rem;
  }
}
.mb_xs {
  margin-bottom: 3.5rem;
}
@media (max-width: 768px) {
  .mb_xs {
    margin-bottom: 2.8rem;
  }
}
.mb_xxs {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .mb_xxs {
    margin-bottom: 1.6rem;
  }
}
.mb_2 {
  margin-bottom: 2em;
}
.mb_15 {
  margin-bottom: 1.5em;
}
.mb_1 {
  margin-bottom: 1em;
}
.mb_075 {
  margin-bottom: 0.75em;
}
.mb_05 {
  margin-bottom: 0.5em;
}
.mb_025 {
  margin-bottom: 0.25em;
}
.mb_02 {
  margin-bottom: 0.2em;
}
.mb_0 {
  margin-bottom: 0;
}

.mt_xl {
  margin-top: 12.5rem;
}
@media (max-width: 768px) {
  .mt_xl {
    margin-top: 10rem;
  }
}
.mt_l {
  margin-top: 10rem;
}
@media (max-width: 768px) {
  .mt_l {
    margin-top: 8rem;
  }
}
.mt_m {
  margin-top: 7.5rem;
}
@media (max-width: 768px) {
  .mt_m {
    margin-top: 6rem;
  }
}
.mt_s {
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .mt_s {
    margin-top: 4rem;
  }
}
.mt_05 {
  margin-top: 0.5em;
}
.mt_1 {
  margin-top: 1em;
}
.mt_15 {
  margin-top: 1.5em;
}

.pb_xl {
  padding-bottom: 12.5rem;
}
@media (max-width: 768px) {
  .pb_xl {
    padding-bottom: 10rem;
  }
}
.pb_l {
  padding-bottom: 10rem;
}
@media (max-width: 768px) {
  .pb_l {
    padding-bottom: 8rem;
  }
}
.pb_m {
  padding-bottom: 7.5rem;
}
@media (max-width: 768px) {
  .pb_m {
    padding-bottom: 6rem;
  }
}
.pb_s {
  padding-bottom: 5rem;
}
@media (max-width: 768px) {
  .pb_s {
    padding-bottom: 4rem;
  }
}
.pb_xs {
  padding-bottom: 3.5rem;
}
@media (max-width: 768px) {
  .pb_xs {
    padding-bottom: 2.8rem;
  }
}
.pb_xxs {
  padding-bottom: 2rem;
}
@media (max-width: 768px) {
  .pb_xxs {
    padding-bottom: 1.6rem;
  }
}

.pt_xl {
  padding-top: 12.5rem;
}
@media (max-width: 768px) {
  .pt_xl {
    padding-top: 10rem;
  }
}
.pt_l {
  padding-top: 10rem;
}
@media (max-width: 768px) {
  .pt_l {
    padding-top: 8rem;
  }
}
.pt_m {
  padding-top: 7.5rem;
}
@media (max-width: 768px) {
  .pt_m {
    padding-top: 6rem;
  }
}
.pt_s {
  padding-top: 5rem;
}
@media (max-width: 768px) {
  .pt_s {
    padding-top: 4rem;
  }
}
.pt_xs {
  padding-top: 3.5rem;
}
@media (max-width: 768px) {
  .pt_xs {
    padding-top: 2.8rem;
  }
}
.pt_xxs {
  padding-top: 2rem;
}
@media (max-width: 768px) {
  .pt_xxs {
    padding-top: 1.6rem;
  }
}

.sct_l {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media (max-width: 768px) {
  .sct_l {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}
.sct_m {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}
@media (max-width: 768px) {
  .sct_m {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.sct_s {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 768px) {
  .sct_s {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

.pl_1 {
  padding-left: 1em;
}

.fz_14 {
  font-size: 1.4em;
}
.fz_13 {
  font-size: 1.3em;
}
.fz_12 {
  font-size: 1.2em;
}
.fz_11 {
  font-size: 1.1em;
}
.fz_105 {
  font-size: 1.05em;
}
.fz_095 {
  font-size: 0.95em;
}
.fz_09 {
  font-size: 0.9em;
}
.fz_085 {
  font-size: 0.85em;
}
.fz_08 {
  font-size: 0.8em;
}
.fz_07 {
  font-size: 0.7em;
}
.fz_s {
  font-size: max(1.6rem, 14px);
}
@media (max-width: 768px) {
  .fz_s {
    font-size: 14px;
  }
}
.fz_xs {
  font-size: max(1.6rem, 13px);
}
@media (max-width: 768px) {
  .fz_xs {
    font-size: 13px;
  }
}

.fw_700 {
  font-weight: 700;
}
.fw_500 {
  font-weight: 500;
}

@media (max-width: 1250px) {
  .none_medium {
    display: none;
  }
}
@media (max-width: 1100px) {
  .none_1100 {
    display: none;
  }
}
@media (max-width: 960px) {
  .none_tb {
    display: none;
  }
}
@media (max-width: 768px) {
  .none_tbs {
    display: none;
  }
}
@media (max-width: 600px) {
  .none_sp {
    display: none;
  }
}
@media (max-width: 425px) {
  .none_sps {
    display: none;
  }
}

.block_medium {
  display: none;
}
@media (max-width: 1250px) {
  .block_medium {
    display: block;
  }
}
.block_1100 {
  display: none;
}
@media (max-width: 1100px) {
  .block_1100 {
    display: block;
  }
}
.block_tb {
  display: none;
}
@media (max-width: 960px) {
  .block_tb {
    display: block;
  }
}
.block_tbs {
  display: none;
}
@media (max-width: 768px) {
  .block_tbs {
    display: block;
  }
}
.block_sp {
  display: none;
}
@media (max-width: 600px) {
  .block_sp {
    display: block;
  }
}
.block_sps {
  display: none;
}
@media (max-width: 425px) {
  .block_sps {
    display: block;
  }
}

.ta_center {
  text-align: center;
}

.lh_1 {
  line-height: 1;
}
.lh_185 {
  line-height: 1.85;
}
.lh_2 {
  line-height: 2;
}
.lh_2_3 {
  line-height: 2.3;
}

.cmmn_text p:not(:last-child) {
  margin-bottom: 1em;
}

.cmmn_ul > li {
  padding-left: 1.25em;
  position: relative;
}
.cmmn_ul > li::before {
  content: "・";
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0;
  left: 0;
}
.cmmn_ul > li:not(:last-child) {
  margin-bottom: 0.8em;
}
.cmmn_ul.dot > li::before {
  content: "";
  width: 0.4em;
  height: 0.4em;
  position: absolute;
  top: 0.6em;
  left: 0;
  border-radius: 50%;
  background-color: var(--color_key);
}

.cmmn_sct_title {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  line-height: 1.3;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--color_key);
}
.cmmn_sct_title .ja {
  font-size: max(4.2rem, 26px);
  font-family: var(--font_title);
  letter-spacing: 0.18em;
}
@media (max-width: 768px) {
  .cmmn_sct_title .ja {
    font-size: 2.6rem;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 600px) {
  .cmmn_sct_title .ja.sp_s {
    font-size: 1.9rem;
  }
}
.cmmn_sct_title .en {
  font-size: max(2.6rem, 18px);
  font-family: var(--font_en);
}
@media (max-width: 768px) {
  .cmmn_sct_title .en {
    font-size: 1.8rem;
  }
}

.cmmn_title_blur {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: var(--font_title);
  font-size: max(1.8rem, 16px);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  color: var(--color_key);
  line-height: 1.3;
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.25em;
}
@media (max-width: 768px) {
  .cmmn_title_blur {
    font-size: 1.6rem;
  }
}
.cmmn_title_blur .blur_bg {
  content: "";
  display: block;
  width: 100%;
  height: 200%;
  background-color: var(--blue_light_02);
  position: absolute;
  top: -2.5em;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  padding: 2.5em;
  -webkit-filter: blur(2.75rem);
          filter: blur(2.75rem);
  border-radius: 5.6rem;
  pointer-events: none;
  will-change: transform;
  -webkit-transform: none;
          transform: none;
}

.cmmn_title_border {
  padding: 0.8em 0 0.8em 0.5em;
  color: #000;
  position: relative;
  font-family: var(--font_title);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  padding: 0.8em 0.5em;
  color: var(--color_key);
  font-family: var(--font_title);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 1.62px;
}
@media (max-width: 768px) {
  .cmmn_title_border {
    font-size: 2rem;
  }
}
.cmmn_title_border span {
  display: block;
}
.cmmn_title_border span::before, .cmmn_title_border span::after {
  content: "";
  display: block;
  width: 0.25em;
  height: 100%;
  background-image: url("./assets/images/icon/border_v_gray.svg");
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.cmmn_title_border span::after {
  top: 0;
  left: unset;
  right: -0.2em;
}

.cmmn_title_under {
  font-family: var(--font_title);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 1.62px;
  color: var(--color_key);
  padding-bottom: 0.5em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.cmmn_title_under::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/icon/border_h_gray.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 10px;
  bottom: 0;
  left: 0;
}
.cmmn_title_under.center {
  margin-left: auto;
  margin-right: auto;
}

.cmmn_btn {
  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: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.5em;
  padding: 0.8em 0 0.8em 0.5em;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #000;
  position: relative;
  width: 17.5em;
  font-family: var(--font_title);
}
.cmmn_btn::after {
  content: "";
  display: block;
  width: 2.75em;
  height: 1.5em;
  background-image: url("./assets/images/icon/arrow_right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cmmn_btn::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.5em;
  background-image: url("./assets/images/icon/border_h.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
}
.cmmn_btn:hover::after {
  background-image: url("./assets/images/icon/arrow_right_bg.png");
}
.cmmn_btn.vertical {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  width: auto;
  padding: 0.8em 0.5em;
}
.cmmn_btn.vertical::before {
  display: none;
}
.cmmn_btn.vertical span::before, .cmmn_btn.vertical span::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 100%;
  background-image: url("./assets/images/icon/border_v.svg");
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.cmmn_btn.vertical span::after {
  top: 0;
  left: unset;
  right: -0.2em;
}

@-webkit-keyframes waveFloat {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-1.5rem);
            transform: translateY(-1.5rem);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes waveFloat {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-1.5rem);
            transform: translateY(-1.5rem);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.cmmn_wave_float {
  -webkit-animation: waveFloat 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
          animation: waveFloat 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.cmmn_list_bor {
  font-family: var(--font_title);
  font-size: max(2.2rem, 17px);
}
@media (max-width: 768px) {
  .cmmn_list_bor {
    font-size: 1.7rem;
  }
}
.cmmn_list_bor li {
  display: block;
  position: relative;
  padding: 1.5em 0 1.5em 1.2em;
}
.cmmn_list_bor li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.cmmn_list_bor li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--gray);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}

.cmmn_list_arrow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 4rem;
}
@media (max-width: 768px) {
  .cmmn_list_arrow {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cmmn_list_arrow li {
  position: relative;
}
.cmmn_list_arrow li a {
  display: block;
  padding: 1.1em 3em 1.1em 0.5em;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cmmn_list_arrow li a::after {
  content: "";
  display: block;
  width: 2.5em;
  height: 1.5em;
  background-image: url("./assets/images/icon/arrow_bottom.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 0.5em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.cmmn_list_arrow li a:hover::after {
  background-image: url("./assets/images/icon/arrow_bottom_bg.png");
}
.cmmn_list_arrow.border li {
  border-top: 1px solid var(--line_blue);
}
.cmmn_list_arrow.border li:nth-last-child(2), .cmmn_list_arrow.border li:last-child {
  border-bottom: 1px solid var(--line_blue);
}
@media (max-width: 768px) {
  .cmmn_list_arrow.border li:nth-last-child(2) {
    border-bottom: none;
  }
}
.cmmn_list_arrow.bg {
  gap: 1.5rem;
}
.cmmn_list_arrow.bg li {
  background-color: var(--beige);
  border-radius: 0.25em;
}
.cmmn_list_arrow.bg li a {
  padding: 1em 3em 1em 0.5em;
}

.cmmn_plus_box {
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cmmn_plus_box:hover {
  opacity: 0.7;
}
.cmmn_plus_box .plus {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  right: 1em;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1em;
  height: 1em;
}
.cmmn_plus_box .plus:before, .cmmn_plus_box .plus::after {
  content: "";
  display: block;
  background-color: #000;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 10px;
  -webkit-transform: none;
          transform: none;
}
.cmmn_plus_box .plus::before {
  width: 100%;
  height: 2px;
  z-index: 1;
}
.cmmn_plus_box .plus::after {
  width: 2px;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cmmn_plus_box.active span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  opacity: 0;
}

.cmmn_apply_btn {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  width: 100%;
  background-color: var(--color_key);
  padding: 1.75em;
  margin-bottom: 2.5em;
  color: #fff;
  font-size: max(2rem, 18px);
  font-family: var(--font_title);
}
@media (max-width: 768px) {
  .cmmn_apply_btn {
    font-size: 1.8rem;
  }
}
@media (max-width: 600px) {
  .cmmn_apply_btn {
    padding: 1.5em 0.5em;
  }
}
.cmmn_apply_btn:hover {
  background-color: var(--color_key_deep);
}
.cmmn_apply_btn:hover span:before {
  right: -0.2em;
}
.cmmn_apply_btn span {
  color: #fff;
  padding-right: 2em;
  position: relative;
}
.cmmn_apply_btn span::before {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  content: "";
  background-image: url(./assets/images/icon/arrow_btn_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1em;
  height: 0.5em;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.cmmn_flex_inner {
  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;
}
@media (max-width: 768px) {
  .cmmn_flex_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6.5rem;
  }
}
.cmmn_flex_inner .left {
  width: 20%;
}
@media (max-width: 768px) {
  .cmmn_flex_inner .left {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .cmmn_flex_inner .left .title {
    margin: 0 auto;
  }
}
.cmmn_flex_inner .right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  .cmmn_flex_inner .right {
    width: 100%;
  }
}

/* モーダル全体 */
.modal {
  position: fixed;
  inset: 0;
  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;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.modal .modal_close {
  background: none;
  border: none;
  cursor: pointer;
}
.modal .close_btn {
  text-align: left;
  font-size: 1em;
  font-family: var(--font_title);
  width: 12em;
  padding: 0.5em 0;
  position: relative;
  color: #000;
}
.modal .close_btn::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/icon/border_h.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 3px;
  bottom: 0px;
  left: 0;
}
.modal .close_btn span {
  display: block;
  position: absolute;
  right: 0.6em;
  bottom: 1.2em;
}
.modal .close_btn span::before, .modal .close_btn span::after {
  position: absolute;
  content: "";
  background-color: #000;
  width: 1px;
  height: 1em;
  left: 50%;
  top: 50%;
}
.modal .close_btn span::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.modal .close_btn span::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.modal .close_icon {
  position: fixed;
  top: 3em;
  right: calc((100% - 900px) / 2 - 1.5em);
  z-index: 3;
}
@media (max-width: 1440px) {
  .modal .close_icon {
    right: calc(20% - 1.5em);
  }
}
@media (max-width: 960px) {
  .modal .close_icon {
    right: calc(10% - 1.5em);
  }
}
@media (max-width: 600px) {
  .modal .close_icon {
    right: calc(7% - 1.5em);
  }
}
.modal .close_icon:hover span {
  background-color: var(--color_key_deep);
}
.modal .close_icon span {
  background-color: var(--color_key);
  width: 3em;
  height: 3em;
  display: block;
  border-radius: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.modal .close_icon span::before, .modal .close_icon span::after {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 1px;
  height: 15px;
  left: 50%;
  top: 50%;
}
.modal .close_icon span::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.modal .close_icon span::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.modal.is_active {
  opacity: 1;
  pointer-events: auto;
}
.modal.is_active .modal_overlay {
  opacity: 1;
  pointer-events: auto;
}
.modal.is_active .modal_content {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.modal .modal_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}
.modal .modal_content {
  width: 100%;
  overflow-y: auto;
  margin: 0 auto;
  height: 100%;
  z-index: 2;
}
.modal .modal_content .inr {
  width: 900px;
  position: relative;
  margin: 0 auto 6em;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  background: #fff;
  padding: 4% 6%;
  border-radius: 1rem;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  -webkit-transform: translateY(3em);
          transform: translateY(3em);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 1440px) {
  .modal .modal_content .inr {
    width: 60%;
  }
}
@media (max-width: 960px) {
  .modal .modal_content .inr {
    width: 80%;
    padding: 2rem 5vw 5rem;
  }
}
@media (max-width: 600px) {
  .modal .modal_content .inr {
    width: 90%;
  }
}
.modal#modal_member .label {
  position: absolute;
  left: 0;
  top: 2em;
  height: 2.5em;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--color_key);
  border-radius: 0 0.5em 0.5em 0;
  padding: 0.2em 1em 0.4em 1.5em;
}
@media (max-width: 768px) {
  .modal#modal_member .label {
    position: unset;
    margin-left: -5vw;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 2rem;
  }
}
.modal#modal_member .label .en {
  color: #fff;
  font-family: var(--font_en);
  font-size: 0.8em;
  line-height: 1;
  margin-bottom: 0.3em;
}
.modal#modal_member .label .ja {
  color: #fff;
  font-family: var(--font_title);
  font-size: 0.8em;
  line-height: 1;
}
.modal#modal_member .flex_wrap {
  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;
  padding-bottom: 2em;
  position: relative;
}
@media (max-width: 768px) {
  .modal#modal_member .flex_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.modal#modal_member .flex_wrap::before {
  position: absolute;
  content: "";
  background-color: var(--line_blue);
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
}
.modal#modal_member .flex_wrap .text_area {
  margin-top: 2.5em;
  width: 50%;
  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;
}
@media (max-width: 768px) {
  .modal#modal_member .flex_wrap .text_area {
    width: 100%;
    margin-top: 2rem;
  }
}
.modal#modal_member .flex_wrap .text_area .comment {
  font-family: var(--font_title);
  font-size: 1.4em;
  margin-bottom: 0.5em;
  text-align: left;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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 (max-width: 768px) {
  .modal#modal_member .flex_wrap .text_area .comment {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.modal#modal_member .flex_wrap .text_area .bottom {
  text-align: left;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.modal#modal_member .flex_wrap .text_area .position {
  font-family: var(--font_title);
  display: inline-block;
  color: var(--color_key);
  font-size: 0.8em;
  padding: 0.3em 0.7em;
  border-radius: 0.5em;
  border: 1px solid #E3E5E7;
  margin-bottom: 1em;
}
.modal#modal_member .flex_wrap .text_area .name {
  font-size: 1em;
  font-family: var(--font_text);
}
.modal#modal_member .flex_wrap .text_area .team {
  font-size: 1em;
}
.modal#modal_member .flex_wrap .image_area {
  width: 40%;
  aspect-ratio: 4/5;
}
@media (max-width: 768px) {
  .modal#modal_member .flex_wrap .image_area {
    width: 68%;
    max-width: 300px;
    margin: auto;
  }
}
.modal#modal_member .flex_wrap .image_area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5em;
}
.modal#modal_member .text {
  margin-top: 2em;
  margin-bottom: 2em;
  text-align: left;
}
.modal#modal_member .text p:not(:last-child) {
  margin-bottom: 0.5em;
}
@media (max-width: 768px) {
  .modal#modal_job .inr {
    padding-top: 8rem;
  }
}
.modal#modal_job .item .title {
  position: absolute;
  top: -1em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: var(--color_key);
  border-radius: 0.5em;
  font-family: var(--font_title);
  color: #fff;
  font-size: 0.8em;
  padding: 0.5em 1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .modal#modal_job .item .title {
    font-size: 1.5rem;
    padding-left: 3em;
    padding-right: 3em;
    white-space: nowrap;
  }
}
.modal#modal_job .item .content_wrap .job {
  font-size: 1.6em;
  font-weight: bold;
  padding-bottom: 1.5em;
  margin-bottom: 1.5em;
  border-bottom: 1px solid var(--line_blue);
}
@media (max-width: 768px) {
  .modal#modal_job .item .content_wrap .job {
    font-size: 24px;
    padding-bottom: 1em;
    margin-bottom: 1em;
  }
}
.modal#modal_job .item .content_wrap .job_wrap .title_job {
  font-weight: bold;
  text-align: left;
  color: var(--color_key);
  font-family: var(--font_title);
  font-size: 1.2em;
  padding-left: 1.2em;
  margin-bottom: 1.5em;
  position: relative;
}
@media (max-width: 768px) {
  .modal#modal_job .item .content_wrap .job_wrap .title_job {
    margin-bottom: 1em;
  }
}
.modal#modal_job .item .content_wrap .job_wrap .title_job::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/icon/border_v_gray.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 7px;
  height: 100%;
  left: 0;
  top: 0;
}
.modal#modal_job .item .content_wrap .job_wrap .text {
  margin-bottom: 3em;
}
.modal#modal_job .item .content_wrap .job_wrap .text p {
  text-align: left;
}
.modal#modal_job .item .content_wrap .job_wrap .text p:not(:last-child) {
  margin-bottom: 0.5em;
}
.modal#modal_job .item .content_wrap .table {
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  .modal#modal_job .item .content_wrap .table {
    margin-bottom: 3em;
  }
}
.modal#modal_job .item .content_wrap .table table {
  width: 100%;
}
.modal#modal_job .item .content_wrap .table tr {
  border-bottom: 1px solid var(--line_blue);
}
.modal#modal_job .item .content_wrap .table tr:first-child {
  border-top: 1px solid var(--line_blue);
}
@media (max-width: 600px) {
  .modal#modal_job .item .content_wrap .table tr {
    display: block;
  }
}
.modal#modal_job .item .content_wrap .table tr th {
  padding: 1.2em 0.5em;
  width: 25%;
  color: var(--color_key);
  font-family: var(--font_title);
  font-size: 1em;
  font-weight: bold;
}
.modal#modal_job .item .content_wrap .table tr td {
  padding: 1.2em 0.5em;
  font-size: 1em;
}
@media (max-width: 600px) {
  .modal#modal_job .item .content_wrap .table tr td {
    display: block;
    padding-top: 0;
  }
}

/* 背景スクロール禁止 */
body.modal_open {
  overflow: hidden;
}

.breadcrumbs {
  font-size: max(1.5rem, 10px);
  font-weight: 700;
  position: fixed;
  -webkit-writing-mode: tb-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: tb-rl;
  top: max(25%, 100px);
  left: 1.5%;
  z-index: 2;
}
@media (max-width: 768px) {
  .breadcrumbs {
    position: unset;
    -webkit-writing-mode: lr;
        -ms-writing-mode: lr;
            writing-mode: lr;
    margin-top: 2rem;
    margin-bottom: 5.5rem;
    margin-left: 5%;
    font-size: 12px;
  }
}
.breadcrumbs a:hover, .breadcrumbs a:active {
  color: var(--color_key);
}
.breadcrumbs .separator {
  margin: 0.5em;
}

.cmmn_title_square {
  font-size: max(1.6rem, 14px);
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  padding-left: 1.25em;
}
.cmmn_title_square::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  background-color: var(--color_key);
  border-radius: 0.1rem;
}

.cmmn_btn_square {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.2em;
  background-color: var(--white);
  border: 1px solid var(--gray);
  border-radius: 0.5em;
  padding: 0.5em 0.5em;
  font-size: max(2.1rem, 14px);
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 23rem;
}
@media (max-width: 768px) {
  .cmmn_btn_square {
    width: 35vw;
    font-size: max(2.5vw, 13px);
  }
}
.cmmn_btn_square span {
  position: relative;
  width: 1.75em;
  height: 1.75em;
}
.cmmn_btn_square span::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color_key);
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cmmn_btn_square span::after {
  content: "";
  display: block;
  width: 50%;
  height: 36%;
  background-image: url("./assets/images/icon/arrow_right_white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  inset: 0;
  margin: auto;
}
.cmmn_btn_square:hover {
  background-color: var(--beige);
}
.cmmn_btn_square:hover span::before {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.cmmn_item_tel {
  background-color: var(--white);
  border-radius: 0.9em;
  padding: 1.5em 8%;
  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;
}
@media (max-width: 768px) {
  .cmmn_item_tel {
    padding: 1.25em 5vw;
  }
}
.cmmn_item_tel .label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.45;
  display: block;
}
.cmmn_item_tel .tel {
  font-size: max(2.6rem, 20px);
  font-weight: 700;
  line-height: 1.5;
  color: var(--black);
  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: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0.5em;
}
@media (hover: hover) and (pointer: fine) {
  .cmmn_item_tel .tel {
    pointer-events: none;
  }
}
@media (max-width: 768px) {
  .cmmn_item_tel .tel {
    font-size: 2rem;
  }
}
@media (max-width: 375px) {
  .cmmn_item_tel .tel {
    font-size: 5vw;
  }
}
.cmmn_item_tel .tel::before {
  content: "";
  display: block;
  width: 0.8em;
  height: 0.8em;
  background-image: url("./assets/images/icon/tel.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.cmmn_circle_arrow {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  width: max(3.8rem, 30px);
  height: max(3.8rem, 30px);
  border-radius: 50%;
  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;
}
@media (max-width: 768px) {
  .cmmn_circle_arrow {
    right: -2%;
  }
}
@media (max-width: 600px) {
  .cmmn_circle_arrow {
    width: 30px;
    height: 30px;
  }
}
.cmmn_circle_arrow::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color_key);
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.cmmn_circle_arrow img {
  width: 1.7rem;
  position: relative;
  z-index: 1;
  width: max(1.7rem, 12px);
}
@media (max-width: 600px) {
  .cmmn_circle_arrow img {
    width: 12px;
  }
}

.cmmn_balloon {
  text-align: center;
  font-size: max(3rem, 16px);
  font-weight: 700;
  line-height: normal;
  background-color: var(--beige_deep);
  padding: 0.2em 1em;
  border-radius: 0.4em;
  position: absolute;
  -webkit-animation: float 2s ease-in-out infinite;
          animation: float 2s ease-in-out infinite;
  cursor: pointer;
}
@media (max-width: 768px) {
  .cmmn_balloon {
    font-size: max(3.1vw, 14px);
  }
}
.cmmn_balloon::before {
  content: "";
  display: block;
  width: 40%;
  height: 40%;
  background: url(./assets/images/cmmn/balloon_bottom.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  bottom: -35%;
  left: 0;
  right: 0;
  margin: auto;
}
@-webkit-keyframes float {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes float {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.cmmn_balloon.button {
  font-size: max(1.5rem, 11px);
  z-index: 1;
  top: 36%;
  left: 11%;
  padding: 0.5em 1em;
  min-width: 6em;
  border-radius: 0.8em;
  cursor: pointer;
}
@media (max-width: 768px) {
  .cmmn_balloon.button {
    font-size: max(2vw, 10px);
  }
}
.cmmn_balloon.button .text {
  position: absolute;
  text-align: center;
  color: #000;
  top: -134%;
  width: 280%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
@media (max-width: 768px) {
  .cmmn_balloon.button .text {
    top: -150%;
  }
}
.cmmn_balloon.button.is-active {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.cmmn_balloon.button.is-active .text {
  opacity: 1;
  visibility: visible;
}
.cmmn_balloon.button::before {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.cmmn_link_section .inner {
  background-color: var(--beige);
  padding: 3rem 0;
}
@media (max-width: 768px) {
  .cmmn_link_section .inner {
    width: 100%;
  }
}
.cmmn_link_section .wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .cmmn_link_section .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.3rem;
  }
}
.cmmn_link_section .link_card {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: var(--white);
  border-radius: 1.5rem;
  padding: 1.5rem;
  position: relative;
  display: block;
}
.cmmn_link_section .link_card .icon {
  width: 13.6rem;
  margin: 0 auto 1.5rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  aspect-ratio: 1/1;
}
@media (max-width: 768px) {
  .cmmn_link_section .link_card .icon {
    width: 9rem;
  }
}
.cmmn_link_section .link_card .title {
  font-size: max(2rem, 16px);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 1.5rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.cmmn_link_section .link_card .title span {
  display: block;
  font-weight: 400;
}
@media (max-width: 768px) {
  .cmmn_link_section .link_card .title {
    font-size: max(1.6rem, 14px);
  }
}
.cmmn_link_section .link_card:hover .title, .cmmn_link_section .link_card:active .title {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.cmmn_link_section .link_card:hover .icon, .cmmn_link_section .link_card:active .icon {
  -webkit-transform: rotate(-5deg) translateY(-5px);
          transform: rotate(-5deg) translateY(-5px);
}
.cmmn_link_section .link_card:hover:nth-child(even) .icon, .cmmn_link_section .link_card:active:nth-child(even) .icon {
  -webkit-transform: rotate(5deg) translateY(-5px);
          transform: rotate(5deg) translateY(-5px);
}
.cmmn_link_section .link_card:hover .cmmn_circle_arrow::before, .cmmn_link_section .link_card:active .cmmn_circle_arrow::before {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}
@media (max-width: 768px) {
  .cmmn_link_section.border {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.cmmn_link_section.border .wrap {
  gap: 4rem;
}
@media (max-width: 768px) {
  .cmmn_link_section.border .wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4vw;
  }
}
.cmmn_link_section.border .link_card {
  padding: 3.5rem 1.5rem;
  border: 1px solid #848484;
}
.cmmn_link_section.border .link_card:hover, .cmmn_link_section.border .link_card:active {
  background-color: var(--beige);
}
@media (max-width: 768px) {
  .cmmn_link_section.border .link_card {
    padding: 2.5rem 2vw;
  }
}
@media (max-width: 768px) {
  .cmmn_link_section.border .link_card .title {
    margin-bottom: 0;
  }
}
@media (max-width: 600px) {
  .cmmn_link_section.border .link_card .title {
    font-size: 14px;
  }
}
.cmmn_link_section .section_title {
  text-align: center;
  margin-bottom: 4.7rem;
}
.cmmn_link_section .section_title::before {
  content: "";
  display: block;
  width: 16rem;
  height: 7rem;
  background: url(./assets/images/cmmn/info_catch.png) no-repeat center;
  background-size: contain;
  margin: 0 auto 1rem;
}
.cmmn_link_section .section_title .ja {
  font-size: max(2.4rem, 18px);
  font-weight: 700;
}

.cmmn_link_recruit_section {
  padding-top: 14rem;
}
@media (max-width: 768px) {
  .cmmn_link_recruit_section {
    padding-top: 10%;
  }
}
.cmmn_link_recruit_section .inner {
  background-color: var(--beige);
  padding: 7.5rem 0 4rem;
  border-radius: 0.75em;
}
@media (max-width: 768px) {
  .cmmn_link_recruit_section .inner {
    width: 100%;
    border-radius: 0;
  }
}
.cmmn_link_recruit_section .icon {
  width: 17.7rem;
  position: absolute;
  top: -20rem;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 768px) {
  .cmmn_link_recruit_section .icon {
    width: 13.3rem;
    top: -15rem;
  }
}
.cmmn_link_recruit_section .title {
  font-size: max(2.6rem, 18px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5em;
}
@media (max-width: 768px) {
  .cmmn_link_recruit_section .title {
    font-size: 2.2rem;
  }
}
.cmmn_link_recruit_section .cmmn_text {
  line-height: 2.5;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 1.5em;
}
.cmmn_link_recruit_section .btn_box {
  padding: 3rem;
  background-color: var(--white);
  border-radius: 0.75em;
  text-align: center;
}
@media (max-width: 768px) {
  .cmmn_link_recruit_section .btn_box {
    padding: 2.5rem 5vw;
  }
}
@media (max-width: 600px) {
  .cmmn_link_recruit_section .cmmn_btn {
    padding: 1em 10vw;
  }
}

.cmmn_accordion_box:not(:last-child) {
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .cmmn_accordion_box:not(:last-child) {
    margin-bottom: 4rem;
  }
}
.cmmn_accordion_box .title {
  font-size: max(2.4rem, 18px);
  font-weight: 700;
  padding: 1em 0.5em;
  position: relative;
  padding-left: max(5rem, 30px);
  padding-right: 1.5em;
}
@media (max-width: 768px) {
  .cmmn_accordion_box .title {
    font-size: 1.8rem;
    padding-left: 3.5rem;
  }
}
.cmmn_accordion_box .title .q_number {
  display: block;
  width: 1.3em;
  height: 1.3em;
  border-radius: 50%;
  position: absolute;
  top: 1.2em;
  left: 0;
  background-color: var(--color_key);
}
.cmmn_accordion_box .title .q_number::before {
  content: "&";
  display: block;
  background: url(./assets/images/) no-repeat center;
  background-size: contain;
  color: var(--white, #FFF);
  font-family: var(--font_en);
  font-size: 0.9em;
  line-height: 1.5;
  font-weight: 400;
  position: absolute;
  inset: 0;
  margin: auto;
  text-align: center;
}
.cmmn_accordion_box .cmmn_text {
  font-size: max(1.6rem, 14px);
  line-height: 2.5;
  padding-left: max(5rem, 30px);
  display: none;
}
@media (max-width: 768px) {
  .cmmn_accordion_box .cmmn_text {
    padding-left: 3.5rem;
  }
}

.cmmn_accordion .accordion_button {
  cursor: pointer;
  border: none;
  position: relative;
  width: 100%;
  text-align: left;
  background-color: unset;
  font-size: 1em;
  font-family: var(--font_base);
  display: block;
  padding: 1.5em 0 0.8em;
  line-height: 1.5;
  margin-bottom: 0;
}
.cmmn_accordion .accordion_button span {
  position: absolute;
  width: 1em;
  height: 1em;
  right: 0;
  bottom: 0.5em;
}
.cmmn_accordion .accordion_button span::before, .cmmn_accordion .accordion_button span::after {
  position: absolute;
  content: "";
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  background-color: var(--color_key);
  width: 100%;
  height: 1px;
}
.cmmn_accordion .accordion_button span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.cmmn_accordion .accordion_button.active span::after {
  opacity: 0;
}
.cmmn_accordion .accordion_content {
  overflow: hidden;
  height: 0;
  padding: 0;
  -webkit-transition: height 0.6s ease, padding 0.5s ease;
  transition: height 0.6s ease, padding 0.5s ease;
  overflow-anchor: none;
}

.cmmn_table table {
  width: 100%;
}
@media (max-width: 768px) {
  .cmmn_table tr {
    display: block;
  }
}
.cmmn_table tr:last-child th, .cmmn_table tr:last-child td {
  border-bottom: 1px solid var(--line_blue);
}
@media (max-width: 768px) {
  .cmmn_table tr:last-child th {
    border-bottom: none;
  }
}
.cmmn_table td, .cmmn_table th {
  padding: 2em 0;
  vertical-align: top;
  font-size: max(1.7rem, 15px);
  border-top: 1px solid var(--line_blue);
}
@media (max-width: 768px) {
  .cmmn_table td, .cmmn_table th {
    display: block;
  }
}
.cmmn_table th {
  white-space: nowrap;
  width: 25%;
  min-width: 5.5em;
  color: var(--color_key);
  padding-left: 2em;
}
@media (max-width: 768px) {
  .cmmn_table th {
    padding-top: 1.5em;
    padding-left: 0;
    padding-bottom: 0.3em;
    width: 100%;
  }
}
.cmmn_table td {
  padding-right: 2em;
}
@media (max-width: 768px) {
  .cmmn_table td {
    width: 100%;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 1.5em;
    border-top: none;
  }
}

.fadein_target {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
@media (max-width: 600px) {
  .fadein_target {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
.fadein_target.slow {
  -webkit-transition: opacity 1.3s ease, -webkit-transform 1.3s ease;
  transition: opacity 1.3s ease, -webkit-transform 1.3s ease;
  transition: opacity 1.3s ease, transform 1.3s ease;
  transition: opacity 1.3s ease, transform 1.3s ease, -webkit-transform 1.3s ease;
}
.fadein_target.initial {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 2s ease, -webkit-transform 2s ease;
  transition: opacity 2s ease, -webkit-transform 2s ease;
  transition: opacity 2s ease, transform 2s ease;
  transition: opacity 2s ease, transform 2s ease, -webkit-transform 2s ease;
}
.fadein_target.is_visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-form-trigger {
  cursor: pointer;
}

.js-form-content {
  -webkit-transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  overflow: hidden;
  display: none;
}
.js-form-content.is-active {
  overflow: unset;
}

.cmmn_headline {
  position: relative;
}
@media (max-width: 768px) {
  .cmmn_headline {
    padding-top: 10rem;
  }
}
@media (max-width: 600px) {
  .cmmn_headline {
    padding-top: 12rem;
    margin-bottom: 8rem;
  }
}
.cmmn_headline .sunrise {
  width: 37rem;
}
@media (min-width: 1441px) {
  .cmmn_headline .sunrise {
    width: 25vw;
  }
}
@media (max-width: 768px) {
  .cmmn_headline .sunrise {
    width: 30%;
    max-width: 170px;
  }
}
.cmmn_headline .wave img {
  width: 100%;
  max-width: unset;
}
.cmmn_headline .cmmn_sct_title {
  position: absolute;
  top: 8rem;
  left: 0;
  right: 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  background-color: #fff;
  padding: 1em;
}
@media (max-width: 768px) {
  .cmmn_headline .cmmn_sct_title {
    top: 3rem;
  }
}

.contact_wave {
  background-color: #fff;
}

.cmmn_contact_sct {
  margin-top: -15rem;
  background-color: var(--beige);
}
@media (max-width: 768px) {
  .cmmn_contact_sct {
    margin-top: -5vw;
    padding-bottom: 3rem;
  }
}
@media (min-width: 2001px) {
  .cmmn_contact_sct {
    margin-top: -20rem;
  }
}
.cmmn_contact_sct .wave img {
  width: 100%;
}
.cmmn_contact_sct .wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10rem;
  margin-left: 3rem;
}
@media (max-width: 768px) {
  .cmmn_contact_sct .wrap {
    margin-left: 0;
    gap: 5vw;
  }
}
.cmmn_contact_sct .title_wrap {
  width: 15%;
  margin-top: -17rem;
}
@media (max-width: 768px) {
  .cmmn_contact_sct .title_wrap {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: -5rem;
  }
}
.cmmn_contact_sct .title_wrap .cmmn_sct_title {
  margin-left: auto;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .cmmn_contact_sct .title_wrap .cmmn_sct_title {
    margin-left: 0;
  }
}
.cmmn_contact_sct .title_wrap .image {
  width: 18rem;
  margin-left: -7rem;
}
@media (max-width: 768px) {
  .cmmn_contact_sct .title_wrap .image {
    width: 10rem;
    margin-left: -3vw;
  }
}
@media (max-width: 425px) {
  .cmmn_contact_sct .title_wrap .image {
    width: 8rem;
  }
}
.cmmn_contact_sct .text_wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  .cmmn_contact_sct .text_wrap {
    max-width: 500px;
    margin-left: auto;
  }
}
.cmmn_contact_sct .text_wrap .cmmn_btn {
  padding: 5.9rem;
  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;
  font-size: max(2.5rem, 19px);
  width: 100%;
  text-align: center;
  background-color: #fff;
  color: var(--color_key);
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .cmmn_contact_sct .text_wrap .cmmn_btn {
    padding: 1.5em 2vw;
    font-size: min(4.1vw, 18px);
  }
}
.cmmn_contact_sct .text_wrap .cmmn_btn::before {
  display: none;
}
@media (max-width: 768px) {
  .cmmn_contact_sct .text_wrap .cmmn_btn::after {
    width: 2.5em;
    height: 1.4em;
  }
}
.cmmn_contact_sct .text_wrap .tel_box {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
}
@media (max-width: 768px) {
  .cmmn_contact_sct .text_wrap .tel_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
  }
}
.cmmn_contact_sct .text_wrap .tel_box .title {
  font-size: max(2.2rem, 15px);
  font-family: var(--font_title);
  color: var(--color_key);
  position: relative;
  padding-bottom: 0.75em;
}
@media (max-width: 768px) {
  .cmmn_contact_sct .text_wrap .tel_box .title {
    font-size: 16px;
  }
}
.cmmn_contact_sct .text_wrap .tel_box .title::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.5em;
  background-image: url("./assets/images/icon/border_h_blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
}
.cmmn_contact_sct .text_wrap .tel_box .tel {
  font-size: max(3rem, 18px);
  font-family: var(--font_title);
  color: var(--color_key);
  position: relative;
  padding-left: 1.25em;
}
@media (max-width: 768px) {
  .cmmn_contact_sct .text_wrap .tel_box .tel {
    font-size: 25px;
  }
}
.cmmn_contact_sct .text_wrap .tel_box .tel::before {
  content: "";
  display: block;
  width: 0.7em;
  height: 0.7em;
  background-image: url("./assets/images/icon/tel.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0.55em;
  left: 0;
}
.cmmn_contact_sct .text_wrap .tel_box .time {
  font-size: max(1.6rem, 13px);
}

/**
 * Swiper 4.5.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 16, 2019
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 3;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

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

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

@media (max-width: 768px) {
  .thanks_headline {
    padding-top: 5rem;
    margin-bottom: 5rem;
  }
}
.thanks_headline .sunrise {
  width: 35rem;
}
@media (max-width: 768px) {
  .thanks_headline .sunrise {
    width: 30%;
  }
}
.thanks_headline .cmmn_sct_title {
  -webkit-writing-mode: unset;
      -ms-writing-mode: unset;
          writing-mode: unset;
  text-align: center;
  background-color: unset;
}
@media (max-width: 768px) {
  .thanks_headline .cmmn_sct_title {
    top: 0;
    bottom: 0;
  }
}
.thanks_headline .cmmn_sct_title .ja {
  color: #000;
}

.thanks_sct .text_wrap {
  text-align: center;
  line-height: 2;
}
@media (max-width: 960px) {
  .thanks_sct .text_wrap {
    font-size: 0.95em;
    text-align: left;
  }
}
.thanks_sct .text_wrap .box:not(:last-child) {
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  .thanks_sct .text_wrap p:not(:last-child) {
    margin-bottom: 1em;
  }
}
.thanks_sct .btn_wrap a {
  margin: 0 auto;
}

@media (max-width: 768px) {
  .form_headline {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}
.form_headline .wave {
  margin-top: 0;
}

.contact_top_sct {
  text-align: center;
  font-family: var(--font_title);
  margin-top: -8vw;
}
@media (max-width: 960px) {
  .contact_top_sct {
    margin-top: -8rem;
  }
}
@media (max-width: 768px) {
  .contact_top_sct {
    margin-top: -8vw;
  }
}
@media (max-width: 425px) {
  .contact_top_sct {
    margin-top: 0;
  }
}
@media (min-width: 1701px) {
  .contact_top_sct {
    margin-top: -12vw;
  }
}
@media (min-width: 2001px) {
  .contact_top_sct {
    margin-top: -20vw;
  }
}
.contact_top_sct .title_wrap {
  font-size: 1.05em;
  margin-bottom: 1.5em;
}
@media (max-width: 768px) {
  .contact_top_sct .title_wrap {
    font-size: 1em;
  }
}
.contact_top_sct .tel_wrap {
  border-top: 1px solid var(--line_blue);
  border-bottom: 1px solid var(--line_blue);
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}
.contact_top_sct .tel_wrap .title {
  font-size: 1.25em;
  color: var(--color_key);
}
@media (max-width: 768px) {
  .contact_top_sct .tel_wrap .title {
    font-size: 18px;
  }
}
.contact_top_sct .tel_wrap .tel {
  font-size: max(3rem, 22px);
  position: relative;
  padding-left: 1.25em;
  color: var(--color_key);
}
@media (max-width: 768px) {
  .contact_top_sct .tel_wrap .tel {
    font-size: 27px;
  }
}
.contact_top_sct .tel_wrap .tel::before {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.75em;
  height: 0.75em;
  top: 0.95em;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(./assets/images/icon/tel.svg);
}
.contact_top_sct .tel_wrap .time {
  font-size: 0.95em;
}
.contact_top_sct .text_wrap {
  font-size: 1.05em;
}
@media (max-width: 768px) {
  .contact_top_sct .text_wrap {
    font-size: 1em;
    text-align: left;
  }
}
.contact_top_sct .text_wrap p {
  margin-bottom: 0.4em;
}

.form_sct {
  margin-top: -8vw;
}
@media (max-width: 960px) {
  .form_sct {
    margin-top: -8rem;
  }
}
@media (max-width: 768px) {
  .form_sct {
    margin-top: -8vw;
  }
}
@media (max-width: 425px) {
  .form_sct {
    margin-top: 0;
  }
}
@media (min-width: 1701px) {
  .form_sct {
    margin-top: -12vw;
  }
}
@media (min-width: 2001px) {
  .form_sct {
    margin-top: -20vw;
  }
}

/* お申し込みフォーム --------- */
#customForm {
  border-bottom: 1px solid var(--gray);
  padding-bottom: 18rem;
}
@media (max-width: 960px) {
  #customForm {
    padding-bottom: 9rem;
    margin-bottom: 5rem;
  }
}
#customForm ::-webkit-input-placeholder {
  color: #9a9a9a;
}
#customForm ::-moz-placeholder {
  color: #9a9a9a;
}
#customForm :-ms-input-placeholder {
  color: #9a9a9a;
}
#customForm ::-ms-input-placeholder {
  color: #9a9a9a;
}
#customForm ::placeholder {
  color: #9a9a9a;
}
#customForm .red {
  color: #ea594f;
}
#customForm dl {
  padding: 7rem 15.5% 8rem;
  background-color: var(--beige);
}
@media (max-width: 960px) {
  #customForm dl {
    padding-left: 10%;
    padding-right: 10%;
  }
}
@media (max-width: 768px) {
  #customForm dl {
    padding: 3em 5vw 4.5em;
  }
}
#customForm dl .box {
  margin-bottom: 2em;
}
@media (max-width: 600px) {
  #customForm dl .box {
    margin-bottom: 1.5em;
  }
}
#customForm dl .box.jobs {
  margin-bottom: 2.5em;
}
@media (max-width: 600px) {
  #customForm dl .box.jobs {
    margin-bottom: 2em;
  }
}
#customForm dl .box.jobs dt {
  margin-bottom: 0.5em;
}
#customForm dl .box.jobs dd {
  font-size: 1.5em;
  font-weight: 500;
}
#customForm dl dt {
  margin-bottom: 0.75em;
  font-size: 1.2em;
  font-family: var(--font_title);
  position: relative;
  padding-left: 1.75em;
}
#customForm dl dt::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url(./assets/images/icon/title_border.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0.5em;
  left: 0;
}
#customForm dl dt.required:after {
  display: inline-block;
  content: "※必須";
  color: #ea594f;
  margin-left: 1em;
  font-size: 0.75em;
  font-weight: 500;
}
#customForm dl dd input, #customForm dl dd textarea {
  font-size: 0.9em;
  padding: 1em 1.3em;
  border: 1px solid #E5E2DA;
  border-radius: 5px;
  background-color: #fff;
}
#customForm dl dd input[type=checkbox], #customForm dl dd textarea[type=checkbox] {
  cursor: pointer;
}
#customForm dl dd input[type=radio], #customForm dl dd textarea[type=radio] {
  margin: auto;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 12px;
  height: 12px;
  border: 1px solid var(--gray);
  border-radius: 50%;
  position: relative;
  padding: 0.65em;
}
#customForm dl dd input[type=radio]:checked, #customForm dl dd textarea[type=radio]:checked {
  border-color: var(--color_key);
}
#customForm dl dd input[type=radio]:checked::after, #customForm dl dd textarea[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--color_key);
  border-radius: 50%;
}
@media (max-width: 768px) {
  #customForm dl dd input[type=radio], #customForm dl dd textarea[type=radio] {
    width: 13px;
    height: 13px;
  }
  #customForm dl dd input[type=radio]:checked::after, #customForm dl dd textarea[type=radio]:checked::after {
    width: 7px;
    height: 7px;
  }
}
#customForm dl dd input.haba, #customForm dl dd textarea.haba {
  display: block;
  width: 100%;
}
#customForm dl dd textarea {
  width: 100%;
  height: 18em;
}
#customForm dl dd .your_address {
  background: var(--color_key);
  padding: 0.5em;
  line-height: 1.2;
  font-size: max(1.2rem, 12px);
  margin-top: 1.5em;
  margin-bottom: 1em;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#customForm #cfAddressConfirm {
  font-size: 1.5em;
  display: block;
  line-height: 1.3;
  border-bottom: 1px solid #929292;
}
#customForm .privacy {
  font-size: max(1.5rem, 14px);
}
@media (max-width: 768px) {
  #customForm .privacy {
    font-size: 14px;
  }
}
#customForm .privacy a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
}
#customForm .btn_wrap {
  width: 58%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  #customForm .btn_wrap {
    width: 100%;
  }
}
#customForm .recptcha_notes {
  font-size: max(1.4rem, 12px);
  text-align: center;
  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;
}
@media (max-width: 768px) {
  #customForm .recptcha_notes {
    font-size: 12px;
    text-align: left;
  }
}

#cfAddressConfirm {
  font-size: 1.3em;
  color: #000;
  display: block;
  line-height: 1.3;
  padding: 3% 2.5%;
}

label {
  cursor: pointer;
}

.checkLayout01 label {
  line-height: 1.2;
  padding: 12px 10px 10px;
  display: inline-block;
  border-bottom: none;
}
.checkLayout01 label:last-child {
  border-bottom: none !important;
  margin-bottom: 15px;
}
.checkLayout01 .caution label:last-child {
  margin-bottom: 10px;
}
.checkLayout01 label.ag:hover {
  font-weight: bold;
}
.checkLayout01 label.ag.on {
  font-weight: bold;
}

.checkLayout02 {
  position: relative;
}
.checkLayout02 .form_radio03 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.8em 2em;
}
@media (max-width: 768px) {
  .checkLayout02 .form_radio03 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5em;
  }
}
.checkLayout02 .formWrap {
  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;
}
.checkLayout02 label {
  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;
  gap: 0.5em;
}
.checkLayout02 label.ag {
  padding: 0.2em 0.5em;
  border-radius: 5px;
  border: 1px solid transparent;
}
@media (max-width: 600px) {
  .checkLayout02 label.ag {
    padding: 0;
  }
}
.checkLayout02 label.ag:hover {
  border: 1px solid #929292;
  font-weight: bold;
}
.checkLayout02 label.ag.on {
  border: 1px solid #929292;
  font-weight: bold;
}

h4.tit_h4_inform {
  margin: 0 0 10px 0;
}

.policyBox_inform {
  width: 100% !important;
  height: 150px;
  padding: 10px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  overflow-y: scroll;
  background: #ffffff;
  border: 1px solid #ccc;
  font-size: 0.8em;
}
.policyBox_inform h2 {
  font-size: 1.6em;
  background: #f2f2f2;
  width: 100%;
  margin-left: 0;
}

.halfBox,
.oneThirdBox,
.zipBox {
  width: 100%;
}

.halfBox span.formWrap {
  width: 48%;
  display: block;
  float: left;
}
.halfBox span.formWrap:last-child {
  float: right;
}
.halfBox span.formWrap input {
  width: 93%;
}

.oneThirdBox span.formWrap {
  width: 25%;
  display: block;
  float: left;
}

.oneThirdBox span.formWrap input {
  width: 93%;
}

.zipBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.8em;
}
.zipBox .formWrap {
  width: 55%;
  display: block;
}
.zipBox #postcode_span {
  margin: 0 10px 0 0;
  line-height: 30px;
}

.cfConfirm_button {
  text-align: center;
}

.cfConfirm_button > button,
.cfConfirm_button > input {
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* validate ---------------------*/
.formWrap {
  display: block;
}

.formWrap, .contact dd, .privacy {
  position: relative;
}

.validate_attention {
  position: absolute;
  bottom: -1.7em;
  left: 1em;
  background: #ea594f;
  color: #fff;
  padding: 0.2em 0.75em;
  display: block;
  font-size: max(1.2rem, 11px);
}
@media (max-width: 768px) {
  .validate_attention {
    font-size: 10px;
  }
}
.validate_attention:before {
  content: "";
  position: absolute;
  top: -0.5em;
  left: 2.5em;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 0.5em solid transparent;
  border-left: 0.5em solid transparent;
  border-bottom: 10px solid #ea594f;
  border-top: 0;
}

.caution::-webkit-input-placeholder {
  color: #ea594f;
}

.caution::-moz-placeholder {
  color: #ea594f;
}

.caution:-ms-input-placeholder {
  color: #ea594f;
}

.caution::-ms-input-placeholder {
  color: #ea594f;
}

.caution::placeholder {
  color: #ea594f;
}

.setWrap.caution {
  padding: 0.75em 0;
}
.setWrap.caution.form_check input {
  border: 1px solid #ea594f !important;
}
.setWrap.caution.form_check a {
  color: #ea594f;
}

/*---------------------
確認画面
---------------------*/
#cfCover {
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000000;
}

#cfConfirmBox {
  position: fixed;
  width: 600px;
  background: #fff;
  top: 5%;
  left: 50%;
  margin: 0 0 0 -300px;
  height: 90%;
  z-index: 1000000;
}
#cfConfirmBox dl {
  width: 90%;
  margin: auto;
  overflow-y: auto;
  margin: 20px auto 0;
}
#cfConfirmBox dl dt {
  float: left;
  padding: 10px 0 0 0;
  font-size: 14px;
}
#cfConfirmBox dl dd {
  padding: 10px 0 10px 190px;
  border-bottom: 1px solid #ddd;
  min-height: 24px;
  text-align: left;
}

p.cfConfirmTit {
  text-align: center;
  border-bottom: 5px solid #ddd;
  margin: 0px auto;
  padding: 40px 0 25px;
  line-height: 1;
  font-size: 20px;
  width: 90%;
  color: #000000;
}

#cfBtnBox {
  width: 600px;
  position: fixed;
  bottom: 5%;
  left: 50%;
  height: 60px;
  margin: 0 0 0 -300px;
  text-align: center;
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
#cfBtnBox button {
  width: 230px;
  height: 45px;
  margin: 0 auto;
  border: none;
  cursor: pointer;
  color: #fff;
  background: var(--color_key);
  border-radius: 30px;
  margin: 0 0 0 5px;
  font-size: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#cfBtnBox button:hover {
  opacity: 0.7;
}
#cfBtnBox button#cfBtn_rewrite {
  color: #fff;
  background: #bbb;
  margin: 0 5px 0 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*--------------------------------------------------------------------------------- */
@media screen and (max-width: 600px) {
  /*------------------------------------------------
  お申し込みフォーム
  ------------------------------------------------- */
  /* validate ---------------------*/
  #cfConfirmBox {
    position: fixed;
    width: 95%;
    background: #fff;
    top: 5%;
    left: 50%;
    margin: 0 0 0 -47.5%;
    height: 90%;
  }
  #cfConfirmBox h2 {
    width: 94%;
  }
  #cfConfirmBox dl {
    width: 94%;
  }
  #cfConfirmBox dl dt {
    font-size: 12px;
  }
  #cfConfirmBox dl dd {
    padding: 10px 0 10px 145px;
  }
  #cfBtnBox {
    width: 95%;
    position: fixed;
    bottom: 5%;
    left: 2.5%;
    height: 60px;
    margin: 0 0 0 0px;
  }
  #cfBtnBox button {
    width: 45%;
  }
}
.header {
  background-color: var(--white);
}
.header.up .inner {
  top: 0;
}
.header.page_top.down .inner {
  top: 0;
}
.header.down .inner {
  top: -5em;
}
@media (max-width: 600px) {
  .header.down .inner {
    top: -80px;
  }
}
.header .inner {
  position: fixed;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 13;
  padding-top: 3rem;
  padding-left: 3vw;
  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;
}
@media (max-width: 768px) {
  .header .inner {
    padding-top: 2rem;
  }
}
.header .logo {
  position: relative;
  z-index: 2;
  display: block;
  width: max(21rem, 165px);
}
@media (max-width: 768px) {
  .header .logo {
    width: 140px;
  }
}
.header .logo img {
  width: 100%;
  height: auto;
}
.header .logo a {
  display: block;
}
.header .burger_wrap {
  cursor: pointer;
  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;
  gap: 1em;
  background-color: var(--color_key);
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  padding: 0 2vw;
  border-radius: 7px 0 0 7px;
}
@media (max-width: 768px) {
  .header .burger_wrap {
    padding-left: 1.1em;
    gap: 0.5em;
  }
}
.header .burger_wrap.front {
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 768px) {
  .header .burger_wrap.front {
    opacity: 1;
    visibility: visible;
  }
}
.header .burger_wrap.is-visible {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1701px) {
  .header .burger_wrap {
    padding-left: 2em;
  }
}
.header .burger_wrap .burger_text {
  font-size: max(1.6rem, 14px);
  font-weight: 700;
  color: var(--white);
}
@media (max-width: 768px) {
  .header .burger_wrap .burger_text {
    font-size: 1.2rem;
  }
}
.header .burger_wrap .burger {
  position: relative;
  width: 3.5em;
  height: 3.5em;
  cursor: pointer;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .header .burger_wrap .burger {
    width: 43px;
    height: 43px;
  }
}
.header .burger_wrap .burger span {
  width: 2.3em;
  height: 1px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
  border-radius: 10px;
  position: absolute;
  z-index: 1;
  -webkit-transform-origin: center;
          transform-origin: center;
  top: 50%;
  left: 50%;
  background-color: var(--white);
}
@media (max-width: 768px) {
  .header .burger_wrap .burger span {
    width: 2em;
  }
}
.header .burger_wrap .burger span:nth-child(1) {
  -webkit-transform: translate(-50%, calc(-50% - 0.6em));
          transform: translate(-50%, calc(-50% - 0.6em));
}
.header .burger_wrap .burger span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.header .burger_wrap .burger span:nth-child(3) {
  -webkit-transform: translate(-50%, calc(-50% + 0.6em));
          transform: translate(-50%, calc(-50% + 0.6em));
}
.header .burger_wrap.is-active {
  background-color: var(--white);
}
.header .burger_wrap.is-active .burger_text {
  color: var(--color_key);
}
.header .burger_wrap.is-active .burger span {
  background-color: var(--color_key);
}
.header .burger_wrap.is-active .burger span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.header .burger_wrap.is-active .burger span:nth-child(2) {
  opacity: 0;
}
.header .burger_wrap.is-active .burger span:nth-child(3) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.nav {
  position: absolute;
  top: 8em;
  left: 3vw;
  z-index: 15;
  display: none;
  font-size: max(1.6rem, 14px);
}
@media (min-width: 1701px) {
  .nav {
    left: calc((100% - 130rem) / 2);
  }
}
@media (min-width: 2001px) {
  .nav {
    left: calc((100% - 156rem) / 2);
  }
}
.nav.front {
  display: block;
}
@media (max-width: 768px) {
  .nav.front {
    display: none;
  }
}
.nav .list .link {
  position: relative;
  padding: 0.3em;
  display: block;
  font-family: var(--font_title);
}
.nav .list .link:hover {
  opacity: 0.6;
}

.open_nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 12;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}
.open_nav.is-open {
  opacity: 1;
  visibility: visible;
}
.open_nav .list {
  margin-left: auto;
  margin-left: auto;
  background-color: var(--color_key);
  padding: 7.5em 0 2em 2.5em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0 0 0 10px;
}
.open_nav .list .link {
  font-family: var(--font_title);
  color: var(--white);
  padding: 0.5em;
  padding-right: 4.5em;
  display: block;
}

.footer {
  padding: 2rem 0 0;
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.footer .top_wrap {
  position: relative;
  margin-bottom: 2.6rem;
}
@media (max-width: 768px) {
  .footer .top_wrap {
    padding-bottom: 7rem;
  }
}
.footer .top_wrap::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.5em;
  background-image: url("./assets/images/icon/border_h_long.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
}
.footer .top_wrap .title {
  text-align: center;
  color: var(--key_blue);
  font-family: var(--font_en);
  font-size: max(2.6rem, 20px);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.footer .top_wrap .title::before, .footer .top_wrap .title::after {
  font-size: 0.6em;
}
.footer .top_wrap .title::before {
  content: "＼";
}
.footer .top_wrap .title::after {
  content: "／";
}
.footer .top_wrap .title span {
  margin: 0 0.5em;
}
.footer .top_wrap .balloon {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 13.5em;
  left: -59%;
  right: 0;
  margin: 0 auto;
  top: 4rem;
  font-size: max(1.8rem, 12px);
  font-family: var(--font_title);
}
@media (max-width: 768px) {
  .footer .top_wrap .balloon {
    width: 17rem;
    top: unset;
    bottom: 2rem;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    font-size: 14px;
  }
}
.footer .top_wrap .balloon .text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1.5rem;
}
.footer .top_wrap .balloon .balloon_image {
  position: absolute;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
  margin-top: -25px;
}
.footer .top_wrap .sns {
  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;
  gap: 1.5rem;
  padding-bottom: 5rem;
}
.footer .top_wrap .sns .link {
  display: block;
  width: 12rem;
  min-width: 70px;
}
@media (max-width: 768px) {
  .footer .top_wrap .sns .link {
    width: 8rem;
  }
}
.footer .top_wrap .sns .link:hover {
  opacity: 0.7;
}
.footer .top_wrap .image {
  width: 22.5rem;
  margin-left: auto;
  padding-bottom: 1rem;
  position: absolute;
  bottom: 0;
  right: 6rem;
}
@media (max-width: 768px) {
  .footer .top_wrap .image {
    right: 1vw;
    width: 15.5rem;
  }
}
.footer .bottom_wrap .inner {
  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: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 3rem;
}
@media (max-width: 768px) {
  .footer .bottom_wrap .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer .bottom_wrap .nav {
  position: unset;
  display: block;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
@media (max-width: 768px) {
  .footer .bottom_wrap .nav {
    font-size: 15px;
  }
}
.footer .bottom_wrap .logo_box .logo {
  display: block;
  width: max(21rem, 165px);
  margin-bottom: 1rem;
  margin-left: auto;
}
@media (max-width: 768px) {
  .footer .bottom_wrap .logo_box .logo {
    width: 165px;
    margin: auto;
    margin-bottom: 1rem;
  }
}
.footer .bottom_wrap .logo_box .address {
  font-size: max(1.6rem, 14px);
  text-align: right;
  font-family: var(--font_title);
}
@media (max-width: 768px) {
  .footer .bottom_wrap .logo_box .address {
    text-align: left;
  }
}
.footer .bottom_wrap .copyright {
  text-align: center;
  font-size: max(1.2rem, 10px);
  padding: 2rem 0;
}
@media (max-width: 768px) {
  .footer .bottom_wrap .copyright {
    padding-bottom: 10rem;
  }
}

.front_main_sct {
  position: relative;
  background-color: #fff;
  padding-top: 17rem;
  padding-bottom: 5rem;
  z-index: 1;
  padding-top: 7rem;
}
@media (max-width: 768px) {
  .front_main_sct {
    padding-top: 120px;
  }
}
.front_main_sct .image_wrap {
  width: 60%;
  margin-left: auto;
  margin-right: 5%;
  max-width: 1200px;
}
@media (min-width: 1701px) {
  .front_main_sct .image_wrap {
    margin-right: calc((100% - 130rem) / 2);
  }
}
@media (min-width: 2001px) {
  .front_main_sct .image_wrap {
    margin-right: calc((100% - 156rem) / 2);
  }
}
@media (max-width: 768px) {
  .front_main_sct .image_wrap {
    width: 90%;
    margin: 0 auto;
  }
}
.front_main_sct .image_wrap video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/0.65;
  border-radius: 1.25em;
}
.front_main_sct .text_wrap {
  color: var(--color_key);
  font-family: var(--font_title);
  font-size: max(2.9rem, 20px);
  position: absolute;
  top: 18rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  left: 14vw;
  margin-left: 1.5em;
  line-height: 2;
}
@media (min-width: 1400px) {
  .front_main_sct .text_wrap {
    left: calc((100% - 1050px) / 2);
  }
}
@media (min-width: 1701px) {
  .front_main_sct .text_wrap {
    left: calc((100% - 105rem) / 2);
  }
}
@media (min-width: 2001px) {
  .front_main_sct .text_wrap {
    left: calc((100% - 126rem) / 2);
  }
}
@media (max-width: 768px) {
  .front_main_sct .text_wrap {
    position: unset;
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    text-align: right;
    width: 90%;
    margin: 1em auto 0;
    font-size: max(4.5vw, 22px);
  }
}
.front_main_sct .text_wrap .title_01, .front_main_sct .text_wrap .title_02, .front_main_sct .text_wrap .title_03 {
  display: block;
}
.front_main_sct .text_wrap .title_02 {
  margin-top: 2.5em;
}
@media (max-width: 768px) {
  .front_main_sct .text_wrap .title_02 {
    margin-top: 0;
  }
}
.front_main_sct .text_wrap .title_03 {
  margin-top: 1.5em;
}
@media (max-width: 768px) {
  .front_main_sct .text_wrap .title_03 {
    margin-top: 0;
  }
}
.front_main_sct .sunrise {
  position: absolute;
  width: 59rem;
  z-index: -1;
  top: 17rem;
}
@media (max-width: 768px) {
  .front_main_sct .sunrise {
    top: unset;
    bottom: 36vw;
    width: 25%;
  }
}
.front_main_sct .wave {
  position: relative;
}
.front_main_sct .wave img {
  width: 100%;
}

.front_about_sct {
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.front_about_sct .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 4rem;
  margin-top: -12rem;
}
@media (max-width: 768px) {
  .front_about_sct .top {
    margin-top: -8vw;
  }
}
@media (max-width: 600px) {
  .front_about_sct .top {
    margin-top: -12vw;
  }
}
.front_about_sct .top .image {
  width: 38.5rem;
  margin-left: 3%;
  margin-right: 12%;
}
@media (max-width: 768px) {
  .front_about_sct .top .image {
    width: min(61%, 500px);
    margin: 0 0 4rem;
  }
}
.front_about_sct .top .image img {
  border-radius: 0.6em;
}
.front_about_sct .top .illust {
  width: 17rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .front_about_sct .top .illust {
    display: none;
  }
}
.front_about_sct .top .title {
  color: var(--color_key);
  font-family: var(--font_title);
  font-size: max(3rem, 25px);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  margin-left: auto;
  margin-bottom: 6rem;
  position: relative;
  line-height: 1.85;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .front_about_sct .top .title {
    font-size: max(4.25vw, 20px);
    margin-bottom: 0;
  }
}
.front_about_sct .top .title::before {
  content: "";
  display: block;
  width: 0.2em;
  height: 100%;
  background: url(./assets/images/icon/border_gray_v.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
}
.front_about_sct .top .title span {
  display: block;
  position: relative;
  padding: 0 0.15em;
}
.front_about_sct .top .title span::before {
  content: "";
  display: block;
  width: 0.2em;
  height: 100%;
  background: url(./assets/images/icon/border_gray_v.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.front_about_sct .bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 2;
}
.front_about_sct .bottom .image_01 {
  width: 32.6rem;
  margin-top: 13%;
  margin-left: 18%;
  margin-right: 8rem;
}
@media (max-width: 768px) {
  .front_about_sct .bottom .image_01 {
    display: none;
  }
}
.front_about_sct .bottom .image_01 img {
  border-radius: 0.6em;
}
.front_about_sct .bottom .image_02 {
  width: 21.5rem;
  position: absolute;
  left: -22rem;
  top: -14%;
}
@media (max-width: 768px) {
  .front_about_sct .bottom .image_02 {
    left: -5vw;
    top: 0;
    width: 32%;
    max-width: 180px;
  }
}
.front_about_sct .bottom .image_02 img {
  border-radius: 0.6em;
}
@media (max-width: 768px) {
  .front_about_sct .bottom .image_02 img {
    border-radius: 0 0.6em 0.6em 0;
  }
}
.front_about_sct .bottom .text_wrap {
  margin-left: auto;
}
@media (max-width: 768px) {
  .front_about_sct .bottom .text_wrap {
    margin-top: 3rem;
    width: 100%;
    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;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.front_about_sct .bottom .text_wrap .cmmn_text {
  margin-bottom: 5rem;
  max-width: 66%;
}
.front_about_sct .bottom .text_wrap .cmmn_btn {
  margin-left: auto;
}
@media (max-width: 425px) {
  .front_about_sct .bottom .text_wrap .cmmn_btn {
    width: 70%;
  }
}
.front_about_sct .tbs_wrap {
  display: none;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .front_about_sct .tbs_wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    gap: 10%;
    margin-top: 6vw;
    justify-content: space-around;
  }
}
@media (max-width: 600px) {
  .front_about_sct .tbs_wrap {
    margin-top: 0;
  }
}
.front_about_sct .tbs_wrap .illust {
  width: 30%;
  max-width: 138px;
}
.front_about_sct .tbs_wrap .image {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 300px;
  margin-top: 10%;
}
@media (max-width: 600px) {
  .front_about_sct .tbs_wrap .image {
    margin-top: 30%;
  }
}
.front_about_sct .tbs_wrap .image img {
  border-radius: 0.6em;
}
.front_about_sct .wave {
  margin-top: -20vw;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .front_about_sct .wave {
    margin-top: -15vw;
  }
}

.front_mid_image {
  position: fixed;
  inset: 0;
  z-index: -1;
  margin: auto;
}
.front_mid_image img {
  max-width: unset;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/0.7;
  -o-object-position: bottom;
     object-position: bottom;
}

.scroll_image_wrap {
  margin-top: -9rem;
  width: 100%;
  overflow: hidden;
  padding-bottom: 13rem;
}
@media (max-width: 768px) {
  .scroll_image_wrap {
    margin-top: 0;
  }
}
.scroll_image_wrap .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  will-change: transform;
}
.scroll_image_wrap .swiper-slide {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.scroll_image_wrap .swiper-slide.vertical {
  width: 22rem;
}
@media (max-width: 768px) {
  .scroll_image_wrap .swiper-slide.vertical {
    width: 20vw;
  }
}
.scroll_image_wrap .swiper-slide.vertical img {
  aspect-ratio: 0.65/1;
}
.scroll_image_wrap .swiper-slide.horizontal {
  width: 32rem;
}
@media (max-width: 768px) {
  .scroll_image_wrap .swiper-slide.horizontal {
    width: 36vw;
  }
}
.scroll_image_wrap .swiper-slide.horizontal img {
  aspect-ratio: 1/0.65;
}
.scroll_image_wrap .swiper-slide:nth-child(5n+1), .scroll_image_wrap .swiper-slide.swiper-slide-duplicate:nth-child(5n+1) {
  margin-top: 5rem;
}
.scroll_image_wrap .swiper-slide:nth-child(5n+2), .scroll_image_wrap .swiper-slide.swiper-slide-duplicate:nth-child(5n+2) {
  margin-top: 25rem;
}
.scroll_image_wrap .swiper-slide:nth-child(5n+3), .scroll_image_wrap .swiper-slide.swiper-slide-duplicate:nth-child(5n+3) {
  margin-top: 10rem;
}
.scroll_image_wrap .swiper-slide:nth-child(5n+4), .scroll_image_wrap .swiper-slide.swiper-slide-duplicate:nth-child(5n+4) {
  margin-top: 20rem;
}
.scroll_image_wrap .swiper-slide:nth-child(5n), .scroll_image_wrap .swiper-slide.swiper-slide-duplicate:nth-child(5n) {
  margin-top: 0rem;
}
@media (max-width: 768px) {
  .scroll_image_wrap .swiper-slide:nth-child(5n+1), .scroll_image_wrap .swiper-slide.swiper-slide-duplicate:nth-child(5n+1) {
    margin-top: 3rem;
  }
  .scroll_image_wrap .swiper-slide:nth-child(5n+2), .scroll_image_wrap .swiper-slide.swiper-slide-duplicate:nth-child(5n+2) {
    margin-top: 15rem;
  }
  .scroll_image_wrap .swiper-slide:nth-child(5n+3), .scroll_image_wrap .swiper-slide.swiper-slide-duplicate:nth-child(5n+3) {
    margin-top: 6rem;
  }
  .scroll_image_wrap .swiper-slide:nth-child(5n+4), .scroll_image_wrap .swiper-slide.swiper-slide-duplicate:nth-child(5n+4) {
    margin-top: 18rem;
  }
  .scroll_image_wrap .swiper-slide:nth-child(5n), .scroll_image_wrap .swiper-slide.swiper-slide-duplicate:nth-child(5n) {
    margin-top: 9rem;
  }
}
@media (max-width: 600px) {
  .scroll_image_wrap .swiper-slide:nth-child(5n+1), .scroll_image_wrap .swiper-slide.swiper-slide-duplicate:nth-child(5n+1) {
    margin-top: 2rem;
  }
  .scroll_image_wrap .swiper-slide:nth-child(5n+2), .scroll_image_wrap .swiper-slide.swiper-slide-duplicate:nth-child(5n+2) {
    margin-top: 10rem;
  }
  .scroll_image_wrap .swiper-slide:nth-child(5n+3), .scroll_image_wrap .swiper-slide.swiper-slide-duplicate:nth-child(5n+3) {
    margin-top: 4rem;
  }
  .scroll_image_wrap .swiper-slide:nth-child(5n+4), .scroll_image_wrap .swiper-slide.swiper-slide-duplicate:nth-child(5n+4) {
    margin-top: 12rem;
  }
  .scroll_image_wrap .swiper-slide:nth-child(5n), .scroll_image_wrap .swiper-slide.swiper-slide-duplicate:nth-child(5n) {
    margin-top: 6rem;
  }
}
.scroll_image_wrap .swiper-slide .image {
  height: 100%;
}
.scroll_image_wrap .swiper-slide .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.6em;
}

.front_service_sct {
  background-color: #fff;
  position: relative;
}
@media (max-width: 768px) {
  .front_service_sct {
    padding-bottom: 10rem;
  }
}
.front_service_sct .inner {
  position: relative;
  z-index: 1;
}
.front_service_sct .top_image {
  position: absolute;
  width: 41rem;
  right: 0;
  top: -6rem;
}
@media (min-width: 1701px) {
  .front_service_sct .top_image {
    right: calc((100% - 155rem) / 2);
  }
}
@media (max-width: 768px) {
  .front_service_sct .top_image {
    position: absolute;
    width: 55%;
    max-width: 300px;
  }
}
.front_service_sct .wrap {
  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: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  gap: 5rem;
}
@media (max-width: 768px) {
  .front_service_sct .wrap {
    gap: 2vw;
  }
}
.front_service_sct .wrap .illust {
  display: none;
}
@media (max-width: 768px) {
  .front_service_sct .wrap .illust {
    position: absolute;
    bottom: -10rem;
    left: -4vw;
    width: 30vw;
    display: block;
  }
}
.front_service_sct .wrap .title_wrap {
  width: 15%;
  position: -webkit-sticky;
  position: sticky;
  top: 2em;
}
@media (max-width: 768px) {
  .front_service_sct .wrap .title_wrap {
    width: 18%;
    min-width: 8.4rem;
  }
}
.front_service_sct .wrap .title_wrap .cmmn_sct_title {
  margin-bottom: 2rem;
}
.front_service_sct .wrap .title_wrap .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;
}
@media (max-width: 768px) {
  .front_service_sct .wrap .title_wrap .box {
    -webkit-transform: translateX(-0.75em);
            transform: translateX(-0.75em);
  }
}
.front_service_sct .wrap .title_wrap .box .ja {
  margin-bottom: 6rem;
}
@media (max-width: 600px) {
  .front_service_sct .wrap .title_wrap .box .cmmn_btn {
    -webkit-transform: translateX(-0.5em);
            transform: translateX(-0.5em);
  }
}
.front_service_sct .wrap .title_wrap .image {
  position: absolute;
  bottom: -15rem;
  left: -8vw;
  width: 24rem;
}
@media (min-width: 1440px) {
  .front_service_sct .wrap .title_wrap .image {
    left: -13rem;
  }
}
@media (max-width: 1300px) {
  .front_service_sct .wrap .title_wrap .image {
    left: -5vw;
  }
}
@media (max-width: 768px) {
  .front_service_sct .wrap .title_wrap .image {
    display: none;
  }
}
.front_service_sct .wrap .right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
@media (max-width: 768px) {
  .front_service_sct .wrap .right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 4.6rem;
  }
}
.front_service_sct .wrap .right .text_wrap {
  width: 56%;
  margin-top: 20rem;
}
@media (max-width: 768px) {
  .front_service_sct .wrap .right .text_wrap {
    width: 100%;
    margin-top: 0;
  }
}
.front_service_sct .wrap .right .text_wrap .cmmn_text {
  width: 85%;
  margin-bottom: 7.5rem;
}
@media (max-width: 768px) {
  .front_service_sct .wrap .right .text_wrap .cmmn_text {
    width: 100%;
    margin-bottom: 4rem;
  }
}
.front_service_sct .wrap .right .text_wrap .list li:first-child {
  position: relative;
}
.front_service_sct .wrap .right .text_wrap .list li:first-child::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.5em;
  background-image: url("./assets/images/icon/border_h_gray.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.front_service_sct .wrap .right .text_wrap .list .cmmn_btn {
  width: 100%;
  padding: 1em 1em 1.5em 1.5em;
}
@media (max-width: 768px) {
  .front_service_sct .wrap .right .text_wrap .list .cmmn_btn {
    padding: 1em 0.5em;
  }
}
.front_service_sct .wrap .right .text_wrap .list .cmmn_btn::before {
  background-image: url("./assets/images/icon/border_h_gray.svg");
}
.front_service_sct .wrap .right .image_wrap {
  width: 35%;
  margin-top: 30rem;
  -webkit-transform: translateX(3rem);
          transform: translateX(3rem);
}
@media (max-width: 768px) {
  .front_service_sct .wrap .right .image_wrap {
    width: 90%;
    -webkit-transform: unset;
            transform: unset;
    margin-top: 11rem;
    margin-right: auto;
    margin-left: auto;
    max-width: 400px;
  }
}
.front_service_sct .wrap .right .image_wrap img {
  aspect-ratio: 1/1.333;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 0.6em;
}

.service_wave {
  margin-top: -20vw;
  position: relative;
  margin-bottom: 20rem;
}
@media (max-width: 768px) {
  .service_wave {
    margin-top: -15vw;
    margin-bottom: 30vw;
  }
}

.front_recruitment_sct {
  background-color: #fff;
  position: relative;
  z-index: 1;
  padding-bottom: 10rem;
}
@media (max-width: 768px) {
  .front_recruitment_sct {
    padding-bottom: 5rem;
  }
}
.front_recruitment_sct::before {
  content: "";
  display: block;
  width: 80rem;
  height: 65rem;
  background: url(./assets/images/cmmn/sunset.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: -18rem;
  left: 0;
  z-index: -1;
}
@media (max-width: 768px) {
  .front_recruitment_sct::before {
    top: 0;
    width: 80vw;
    height: 65vw;
    max-width: 600px;
  }
}
.front_recruitment_sct .wrap {
  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: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: -15vw;
}
@media (max-width: 768px) {
  .front_recruitment_sct .wrap {
    margin-bottom: 3rem;
  }
}
.front_recruitment_sct .image_wrap {
  width: 41%;
  height: 63rem;
  margin-right: 7%;
  overflow: hidden;
  position: relative;
}
.front_recruitment_sct .image_wrap::before, .front_recruitment_sct .image_wrap::after {
  content: "";
  display: block;
  width: 100%;
  height: 5rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(top, #FFF 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  left: 0;
  z-index: 2;
}
.front_recruitment_sct .image_wrap::before {
  top: 0;
}
.front_recruitment_sct .image_wrap::after {
  bottom: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (max-width: 768px) {
  .front_recruitment_sct .image_wrap {
    width: 100%;
    height: 40rem;
    margin-bottom: 3rem;
  }
}
.front_recruitment_sct .image_wrap .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.front_recruitment_sct .image_wrap .swiper-slide {
  height: auto;
}
.front_recruitment_sct .image_wrap .swiper-slide .image {
  width: 100%;
  aspect-ratio: 1/0.65;
}
.front_recruitment_sct .image_wrap .swiper-slide .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.6em;
}
.front_recruitment_sct .text_wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 25%;
}
.front_recruitment_sct .text_wrap .cmmn_text {
  margin-bottom: 6.5rem;
}
@media (max-width: 768px) {
  .front_recruitment_sct .text_wrap {
    display: none;
  }
}
.front_recruitment_sct .title_wrap {
  position: relative;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .front_recruitment_sct .title_wrap .cmmn_sct_title {
    margin-left: auto;
    margin-bottom: 3rem;
  }
}
.front_recruitment_sct .title_wrap .image {
  width: 18rem;
  position: absolute;
  bottom: -23rem;
  right: -10rem;
}
@media (max-width: 1250px) {
  .front_recruitment_sct .title_wrap .image {
    right: -5.5vw;
  }
}
@media (max-width: 768px) {
  .front_recruitment_sct .title_wrap .image {
    right: -2.5vw;
    width: 12rem;
    position: unset;
    margin-right: -2vw;
    max-width: 450px;
  }
}
.front_recruitment_sct .bottom_wrap {
  display: none;
}
@media (max-width: 768px) {
  .front_recruitment_sct .bottom_wrap {
    display: block;
  }
}
.front_recruitment_sct .bottom_wrap .cmmn_text {
  margin-bottom: 6rem;
}

.masonry_wrap {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .masonry_wrap {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
  }
}
@media (max-width: 600px) {
  .masonry_wrap {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
    width: 85%;
  }
}
.masonry_wrap .image,
.masonry_wrap .image_01,
.masonry_wrap .image_02,
.masonry_wrap .illust {
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
  margin-bottom: 2rem;
}
.masonry_wrap .image img,
.masonry_wrap .image_01 img,
.masonry_wrap .image_02 img,
.masonry_wrap .illust img {
  width: 100%;
  height: auto;
  border-radius: 0.6em;
  display: block;
}
.masonry_wrap .illust {
  width: 100%;
  max-width: 300px;
  margin: 2rem auto;
}

.about_philosophy_sct .inner {
  position: relative;
  max-width: 1800px;
  margin: 0 auto 20rem;
}
@media (max-width: 768px) {
  .about_philosophy_sct .inner {
    margin-bottom: 13rem;
  }
}
.about_philosophy_sct .top_title {
  margin-bottom: 15rem;
}
@media (max-width: 768px) {
  .about_philosophy_sct .top_title {
    margin-bottom: 7rem;
  }
}
.about_philosophy_sct .title {
  font-size: max(28px, 2.3rem);
  font-family: var(--font_title);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  margin: 0 auto 9.5rem;
  position: relative;
  padding: 1.5em;
}
@media (max-width: 768px) {
  .about_philosophy_sct .title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.about_philosophy_sct .title::before, .about_philosophy_sct .title::after {
  content: "";
  display: block;
  width: 1.5em;
  height: 1.5em;
  background: url(./assets/images/icon/deco_l.png) no-repeat center;
  background-size: contain;
  position: absolute;
}
.about_philosophy_sct .title::before {
  top: 0;
  right: 0;
}
.about_philosophy_sct .title::after {
  bottom: 0;
  left: 0;
  -webkit-transform: scaleY(-1) scaleX(-1);
          transform: scaleY(-1) scaleX(-1);
}
@media (max-width: 768px) {
  .about_philosophy_sct .image_wrap {
    position: relative;
    height: 95vw;
    margin-bottom: 4.5rem;
  }
}
.about_philosophy_sct .image_wrap .image {
  position: absolute;
}
.about_philosophy_sct .image_wrap .image img {
  border-radius: 0.5em;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about_philosophy_sct .image_wrap .image_01, .about_philosophy_sct .image_wrap .image_04 {
  width: 35rem;
}
@media (max-width: 768px) {
  .about_philosophy_sct .image_wrap .image_01, .about_philosophy_sct .image_wrap .image_04 {
    width: 41vw;
  }
}
.about_philosophy_sct .image_wrap .image_01 img, .about_philosophy_sct .image_wrap .image_04 img {
  aspect-ratio: 1/0.7;
}
.about_philosophy_sct .image_wrap .image_02, .about_philosophy_sct .image_wrap .image_03 {
  width: 20rem;
}
@media (max-width: 768px) {
  .about_philosophy_sct .image_wrap .image_02, .about_philosophy_sct .image_wrap .image_03 {
    width: 20vw;
  }
}
.about_philosophy_sct .image_wrap .image_02 img, .about_philosophy_sct .image_wrap .image_03 img {
  aspect-ratio: 1/1.5;
}
.about_philosophy_sct .image_wrap .image_01 {
  top: -15%;
  left: 10%;
}
@media (max-width: 768px) {
  .about_philosophy_sct .image_wrap .image_01 {
    top: 15%;
    left: 10%;
  }
}
.about_philosophy_sct .image_wrap .image_02 {
  top: -40%;
  right: 0;
}
@media (max-width: 768px) {
  .about_philosophy_sct .image_wrap .image_02 {
    top: 0;
    right: 0;
  }
}
@media (max-width: 768px) {
  .about_philosophy_sct .image_wrap .image_02 img {
    border-radius: 0.5em 0 0 0.5em;
  }
}
.about_philosophy_sct .image_wrap .image_03 {
  bottom: 0;
  left: 0;
}
@media (max-width: 768px) {
  .about_philosophy_sct .image_wrap .image_03 img {
    border-radius: 0 0.5em 0.5em 0;
  }
}
.about_philosophy_sct .image_wrap .image_04 {
  top: 50%;
  right: 5%;
}
@media (max-width: 768px) {
  .about_philosophy_sct .image_wrap .image_04 {
    bottom: 15%;
    right: 10%;
  }
}
.about_philosophy_sct .text {
  text-align: center;
}
.about_philosophy_sct .bottom_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
}
@media (max-width: 768px) {
  .about_philosophy_sct .bottom_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 7rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.about_philosophy_sct .bottom_wrap .title_box {
  width: 25%;
}
@media (max-width: 768px) {
  .about_philosophy_sct .bottom_wrap .title_box {
    width: 100%;
  }
}
.about_philosophy_sct .bottom_wrap .list_box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.about_philosophy_sct .bottom_wrap .image {
  position: absolute;
}
.about_philosophy_sct .bottom_wrap.management {
  margin-bottom: 20rem;
}
@media (max-width: 768px) {
  .about_philosophy_sct .bottom_wrap.management {
    margin-bottom: 12rem;
  }
}
.about_philosophy_sct .bottom_wrap.management .image {
  width: 13rem;
  bottom: -11rem;
}
@media (max-width: 768px) {
  .about_philosophy_sct .bottom_wrap.management .image {
    top: 4rem;
    width: 7.4rem;
    bottom: unset;
    left: 19%;
  }
}
@media (max-width: 600px) {
  .about_philosophy_sct .bottom_wrap.management .image {
    left: 0;
  }
}
.about_philosophy_sct .bottom_wrap.guideline {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .about_philosophy_sct .bottom_wrap.guideline {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about_philosophy_sct .bottom_wrap.guideline .image {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  width: 18rem;
  bottom: -15%;
  right: -2%;
}
@media (max-width: 768px) {
  .about_philosophy_sct .bottom_wrap.guideline .image {
    top: 4rem;
    width: 9rem;
    bottom: unset;
    right: 17%;
  }
}
@media (max-width: 600px) {
  .about_philosophy_sct .bottom_wrap.guideline .image {
    right: 0;
  }
}

.about_value_sct {
  position: relative;
  z-index: 1;
}
.about_value_sct .wave img {
  width: 100%;
}
.about_value_sct .inner {
  margin-top: -20rem;
}
@media (max-width: 768px) {
  .about_value_sct .inner {
    margin-top: 0;
  }
}
.about_value_sct .left .title {
  margin-top: -10rem;
}
@media (max-width: 768px) {
  .about_value_sct .left .title {
    margin-top: 0;
  }
}
.about_value_sct .wrap .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
}
@media (max-width: 768px) {
  .about_value_sct .wrap .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.about_value_sct .wrap .content:not(:last-child) {
  margin-bottom: 15rem;
}
@media (max-width: 768px) {
  .about_value_sct .wrap .content:not(:last-child) {
    margin-bottom: 12rem;
  }
}
@media (max-width: 768px) {
  .about_value_sct .wrap .content:not(:last-child) {
    margin-bottom: 10rem;
  }
}
.about_value_sct .wrap .text_wrap {
  width: 52.5%;
}
@media (max-width: 768px) {
  .about_value_sct .wrap .text_wrap {
    width: 100%;
  }
}
.about_value_sct .wrap .text_wrap .category {
  color: var(--color_key);
  font-family: var(--font_title);
  font-size: max(15px, 1.2rem);
  margin-bottom: 0.75em;
}
@media (max-width: 768px) {
  .about_value_sct .wrap .text_wrap .category {
    margin-bottom: 0.5em;
  }
}
.about_value_sct .wrap .text_wrap .title {
  font-family: var(--font_title);
  font-size: max(22px, 1.8rem);
  margin-bottom: 1.5em;
}
@media (max-width: 768px) {
  .about_value_sct .wrap .text_wrap .title {
    font-size: 2rem;
    margin-bottom: 1em;
  }
}
.about_value_sct .wrap .text_wrap .text {
  font-size: var(--font_size_m);
}
@media (max-width: 768px) {
  .about_value_sct .wrap .text_wrap .text {
    font-size: 1.6rem;
  }
}
.about_value_sct .wrap .image_wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.about_value_sct .wrap .image_wrap img {
  border-radius: 0.75em;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/0.675;
}

.about_message_sct .right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
}
@media (max-width: 768px) {
  .about_message_sct .right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3.8rem;
  }
}
.about_message_sct .right .image {
  width: 28%;
}
@media (max-width: 768px) {
  .about_message_sct .right .image {
    width: max(40%, 17rem);
  }
}
.about_message_sct .right .image img {
  border-radius: 0.5em;
}
.about_message_sct .right .text_wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 2;
}
.about_message_sct .right .cmmn_text {
  margin-bottom: 2em;
}
.about_message_sct .right .name {
  text-align: right;
}

@media (max-width: 768px) {
  .about_history_sct .cmmn_flex_inner {
    width: 100%;
    gap: 7rem;
  }
}
.about_history_sct .right {
  width: 80%;
}
@media (max-width: 768px) {
  .about_history_sct .right {
    width: 100%;
  }
}
.about_history_sct .contents_range {
  background-color: var(--beige_light);
  border-radius: 1em 0 0 1em;
  margin-top: 10rem;
  padding-top: 2em;
}
@media (max-width: 768px) {
  .about_history_sct .contents_range {
    border-radius: 0;
    margin-top: 0;
    padding-top: 2em;
  }
}
.about_history_sct .contents_range .inr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
}
.about_history_sct .contents_range .item {
  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;
}
.about_history_sct .contents_range .item .year_wrap {
  padding: 1em 2em 0 2em;
  background-color: #fff;
}
.about_history_sct .contents_range .item .year_wrap .wrap {
  width: 10rem;
}
.about_history_sct .contents_range .item .year_wrap .western {
  color: var(--color_key);
  font-family: var(--font_title);
  font-size: max(20px, 1.8rem);
  text-align: center;
}
@media (max-width: 960px) {
  .about_history_sct .contents_range .item .year_wrap .western {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .about_history_sct .contents_range .item .year_wrap .western {
    font-size: 2rem;
  }
}
.about_history_sct .contents_range .item .year_wrap .japanese {
  color: var(--color_key);
  font-family: var(--font_title);
  text-align: center;
  font-size: max(16px, 1.6rem);
}
@media (max-width: 960px) {
  .about_history_sct .contents_range .item .year_wrap .japanese {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .about_history_sct .contents_range .item .year_wrap .japanese {
    font-size: 1.6rem;
  }
}
.about_history_sct .contents_range .item .date_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 2em;
}
.about_history_sct .contents_range .item .date_wrap .wrap {
  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;
}
.about_history_sct .contents_range .item .date_wrap .wrap:first-child .date {
  padding-left: 2em;
}
.about_history_sct .contents_range .item .date_wrap .wrap:first-child .text {
  margin-left: calc(5rem + 2em);
}
.about_history_sct .contents_range .item .date_wrap .wrap:last-child .date {
  padding-right: 2em;
}
.about_history_sct .contents_range .item .date_wrap .wrap:last-child .text {
  margin-right: 2em;
}
.about_history_sct .contents_range .item .date_wrap .wrap .date {
  color: var(--color_key);
  font-family: var(--font_title);
  background-color: #fff;
  padding-bottom: 1em;
}
.about_history_sct .contents_range .item .date_wrap .wrap .date p {
  width: 10rem;
  text-align: center;
}
.about_history_sct .contents_range .item .date_wrap .wrap .text {
  margin-left: 5rem;
  padding-left: 1em;
  padding-top: 3em;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
  position: relative;
}
@media (max-width: 768px) {
  .about_history_sct .contents_range .item .date_wrap .wrap .text {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 1em;
    padding-bottom: 1em;
  }
}
.about_history_sct .contents_range .item .date_wrap .wrap .text::before {
  position: absolute;
  content: "";
  background-color: var(--color_key);
  width: 1px;
  height: calc(100% + 1em);
  top: -1em;
  left: 0;
}
.about_history_sct .contents_range .item .date_wrap .wrap .text p {
  white-space: nowrap;
}
.about_history_sct .contents_range .item .date_wrap .wrap .text p:not(:last-child) {
  margin-bottom: 0.5em;
}

.about_info_sct .list_box:not(:last-child) {
  margin-bottom: 8rem;
}
.about_info_sct .accordion_list > li {
  border-top: 1px solid var(--line_blue);
  padding: 1.2em 0.5em;
}
.about_info_sct .accordion_list > li:last-child {
  border-bottom: 1px solid var(--line_blue);
}
.about_info_sct .accordion_list .cmmn_list_arrow {
  margin-top: 1.2em;
}

.service_wrapper {
  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;
  gap: 8.8rem;
}
@media (max-width: 768px) {
  .service_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.service_wrapper .service_item {
  display: none;
}
.service_wrapper .service_item.active {
  display: block;
}
.service_wrapper .sidebar {
  position: -webkit-sticky;
  position: sticky;
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  top: calc(3rem + 5em);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .service_wrapper .sidebar {
    width: 100%;
    background-color: #fff;
    z-index: 2;
    border-radius: 50px;
    -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
            box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
    padding: 2vw;
    top: unset;
    bottom: 2rem;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transition: border-radius 0.4s ease;
    transition: border-radius 0.4s ease;
  }
  .service_wrapper .sidebar.is-open {
    border-radius: 12px;
  }
}
.service_wrapper .sidebar ul li {
  border-bottom: 1px solid var(--gray);
}
@media (max-width: 768px) {
  .service_wrapper .sidebar ul li {
    border-bottom: none;
  }
}
.service_wrapper .sidebar ul li:first-child {
  border-top: 1px solid var(--gray);
}
@media (max-width: 768px) {
  .service_wrapper .sidebar ul li:first-child {
    border-top: none;
  }
}
.service_wrapper .sidebar ul li a {
  width: 100%;
  padding: 1.5em 1em 1.5em 2em;
  cursor: pointer;
  font-family: var(--font_title);
  white-space: nowrap;
  position: relative;
  font-size: max(1.8rem, 13px);
}
@media (max-width: 768px) {
  .service_wrapper .sidebar ul li a {
    padding: 0.5em 0.5em 0.5em 2.5em;
  }
}
.service_wrapper .sidebar ul li a::before {
  position: absolute;
  content: "";
  background-color: var(--key_orange);
  width: 0.6em;
  height: 0.6em;
  border-radius: 100%;
  top: 50%;
  left: 0.75em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
@media (max-width: 768px) {
  .service_wrapper .sidebar ul li a::before {
    left: 1em;
  }
}
.service_wrapper .sidebar ul li a:hover::before {
  opacity: 1;
}
.service_wrapper .sidebar ul li a.active::before {
  opacity: 1;
}
@media (max-width: 768px) {
  .service_wrapper .sidebar .top_list {
    display: none;
    margin-bottom: 0.5em;
    padding-bottom: 0.5em;
    border-bottom: 1px solid var(--line_blue);
  }
}
@media (max-width: 768px) {
  .service_wrapper .sidebar .top_list li a::before {
    display: none;
  }
  .service_wrapper .sidebar .top_list li a:hover {
    color: #B9B9B9;
  }
  .service_wrapper .sidebar .top_list li a.active {
    color: #B9B9B9;
  }
}
.service_wrapper .sidebar .sub_list {
  display: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .service_wrapper .sidebar .sub_list {
    display: block;
  }
  .service_wrapper .sidebar .sub_list.is-open a::after {
    -webkit-transform: translateY(-30%) rotate(-135deg);
            transform: translateY(-30%) rotate(-135deg);
  }
}
.service_wrapper .sidebar .sub_list li a {
  display: none;
  position: relative;
}
.service_wrapper .sidebar .sub_list li a::after {
  content: "";
  position: absolute;
  right: 1em;
  top: 50%;
  width: 0.7em;
  height: 0.7em;
  border-right: 2px solid var(--color_key);
  border-bottom: 2px solid var(--color_key);
  -webkit-transform: translateY(-70%) rotate(45deg);
          transform: translateY(-70%) rotate(45deg);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.service_wrapper .sidebar .sub_list li a:hover {
  display: block;
}
.service_wrapper .sidebar .sub_list li a.active {
  display: block;
}
.service_wrapper .service_contents {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  .service_wrapper .service_contents {
    width: 100%;
  }
}
.service_wrapper .service_contents .service_ttl {
  color: var(--color_key);
  font-family: var(--font_title);
  display: inline-block;
  padding: 0 1em 0.5em;
  font-size: 1.3em;
  margin-bottom: 2em;
  position: relative;
}
.service_wrapper .service_contents .service_ttl::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/icon/border_h_gray.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 0.3em;
  bottom: 0;
  left: 0;
}
.service_wrapper .service_contents .title_wrap .title {
  color: var(--color_key);
  font-family: var(--font_title);
  font-weight: bold;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  font-size: 1.4em;
  margin: 0 auto;
  padding: 1em;
  position: relative;
}
.service_wrapper .service_contents .title_wrap .title::before, .service_wrapper .service_contents .title_wrap .title::after {
  position: absolute;
  content: "";
  background-image: url(./assets/images/icon/border_gray_v.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 0.2em;
  height: 100%;
  top: 0;
}
.service_wrapper .service_contents .title_wrap .title::before {
  left: 0;
}
.service_wrapper .service_contents .title_wrap .title::after {
  right: 0;
}
.service_wrapper .service_contents .text_wrap .name {
  text-align: center;
  color: var(--color_key);
  font-family: var(--font_title);
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 2em;
}
.service_wrapper .service_contents .features_wrap ol {
  counter-reset: number;
}
.service_wrapper .service_contents .features_wrap .item:not(:last-child) {
  margin-bottom: 5.5em;
}
@media (max-width: 768px) {
  .service_wrapper .service_contents .features_wrap .item:not(:last-child) {
    margin-bottom: 5em;
  }
}
.service_wrapper .service_contents .features_wrap .item:nth-child(2n) .wrap {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.service_wrapper .service_contents .features_wrap .item:nth-child(2n) .wrap .item_ttl {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.service_wrapper .service_contents .features_wrap .item:nth-child(2n) .text {
  margin-left: 0;
  margin-right: auto;
}
.service_wrapper .service_contents .features_wrap .item:nth-child(2n) .num {
  left: -2.5em;
}
@media (max-width: 768px) {
  .service_wrapper .service_contents .features_wrap .item:nth-child(2n) .num {
    left: -1em;
  }
}
.service_wrapper .service_contents .features_wrap .item .num {
  position: absolute;
  top: -7%;
  right: -2.5em;
  width: 4.5em;
  height: 3em;
  font-size: max(1.8rem, 13px);
}
@media (max-width: 768px) {
  .service_wrapper .service_contents .features_wrap .item .num {
    font-size: min(2.5vw, 20px);
    right: -1em;
  }
}
.service_wrapper .service_contents .features_wrap .item .num::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/icon/sunrise.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.service_wrapper .service_contents .features_wrap .item .num::after {
  position: absolute;
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero) ".";
  font-size: 1.35em;
  font-family: var(--font_en);
  color: var(--key_orange);
  top: 35%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.service_wrapper .service_contents .features_wrap .item .wrap {
  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;
  margin-bottom: 1em;
}
.service_wrapper .service_contents .features_wrap .item .wrap .image {
  position: relative;
  aspect-ratio: 1/0.66;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.service_wrapper .service_contents .features_wrap .item .wrap .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5em;
}
.service_wrapper .service_contents .features_wrap .item .wrap .item_ttl {
  font-size: max(2.2rem, 16px);
  font-family: var(--font_title);
  width: 8.5em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  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;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 1em;
}
@media (max-width: 768px) {
  .service_wrapper .service_contents .features_wrap .item .wrap .item_ttl {
    font-size: min(3.75vw, 20px);
    width: 6.5em;
    padding: 0;
  }
}
.service_wrapper .service_contents .features_wrap .item .text {
  width: 50%;
  margin-left: auto;
}
@media (max-width: 768px) {
  .service_wrapper .service_contents .features_wrap .item .text {
    width: 70%;
  }
}
.service_wrapper .service_contents .document_wrap {
  width: 100%;
}
.service_wrapper .service_contents .document_wrap .document:not(:last-child) {
  margin-bottom: 1em;
}
.service_wrapper .service_contents .document_wrap .document a {
  font-size: 1.1em;
  width: 100%;
  padding: 1em 3em 1em 1em;
  background-color: var(--beige);
  position: relative;
}
.service_wrapper .service_contents .document_wrap .document a:hover {
  background-color: #f3eee5;
}
.service_wrapper .service_contents .document_wrap .document a:hover::before {
  top: 53%;
}
.service_wrapper .service_contents .document_wrap .document a::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/icon/arrow_down.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.5em;
  height: 0.8em;
  top: 50%;
  right: 1.5em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.service_wrapper .service_contents .information_wrap .map {
  width: 100%;
  aspect-ratio: 10/3.5;
  margin-bottom: 1.5em;
}
.service_wrapper .service_contents .information_wrap .map iframe {
  width: 100%;
  height: 100%;
}
.service_wrapper .service_contents .information_wrap .name_wrap {
  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: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
}
@media (max-width: 768px) {
  .service_wrapper .service_contents .information_wrap .name_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.5em;
    margin-bottom: 3.5rem;
  }
}
.service_wrapper .service_contents .information_wrap .name_wrap .name {
  font-size: 1.2em;
}
@media (max-width: 768px) {
  .service_wrapper .service_contents .information_wrap .name_wrap .name {
    font-size: 1.8rem;
  }
}
.service_wrapper .service_contents .information_wrap .name_wrap .number {
  font-size: 1em;
}
@media (max-width: 768px) {
  .service_wrapper .service_contents .information_wrap .name_wrap .number {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .service_wrapper .service_contents .information_wrap .address_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.service_wrapper .service_contents .information_wrap .address_wrap .address {
  font-size: 1.1em;
  display: inline-block;
  margin-right: 1em;
}
@media (max-width: 768px) {
  .service_wrapper .service_contents .information_wrap .address_wrap .address {
    font-size: 1.6rem;
    margin-right: 0;
  }
}
.service_wrapper .service_contents .information_wrap .address_wrap .link {
  font-size: 0.8em;
  border-bottom: 1px solid #989898;
  font-weight: 300;
  padding-left: 1.5em;
  position: relative;
}
@media (max-width: 768px) {
  .service_wrapper .service_contents .information_wrap .address_wrap .link {
    font-size: 1.4rem;
  }
}
.service_wrapper .service_contents .information_wrap .address_wrap .link::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/icon/map.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.5em;
  height: 1.5em;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.service_wrapper .service_contents .information_wrap .other_info_wrap {
  font-size: 1.1em;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .service_wrapper .service_contents .information_wrap .other_info_wrap {
    font-size: 1.6rem;
  }
}
.service_wrapper .service_contents .information_wrap .detail_wrap {
  border-top: 1px solid var(--line_blue);
  border-bottom: 1px solid var(--line_blue);
  padding: 1em 0;
}
.service_wrapper .service_contents .information_wrap .detail_wrap .wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .service_wrapper .service_contents .information_wrap .detail_wrap .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5em;
    margin-bottom: 0.5em;
  }
}
@media (max-width: 768px) {
  .service_wrapper .service_contents .information_wrap .detail_wrap .wrap {
    margin-bottom: 0.5em;
  }
}
.service_wrapper .service_contents .information_wrap .detail_wrap .wrap:last-child {
  margin-bottom: 0;
}
.service_wrapper .service_contents .information_wrap .detail_wrap .wrap .icon {
  font-size: 1.2em;
  padding-left: 1.5em;
  position: relative;
}
@media (max-width: 768px) {
  .service_wrapper .service_contents .information_wrap .detail_wrap .wrap .icon {
    font-size: 1.6rem;
  }
}
.service_wrapper .service_contents .information_wrap .detail_wrap .wrap .icon:first-child {
  margin-right: 1em;
}
.service_wrapper .service_contents .information_wrap .detail_wrap .wrap .icon::before {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  width: 1em;
  height: 1em;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.service_wrapper .service_contents .information_wrap .detail_wrap .wrap .icon.tel::before {
  background-image: url(./assets/images/icon/tel.svg);
}
.service_wrapper .service_contents .information_wrap .detail_wrap .wrap .icon.fax::before {
  background-image: url(./assets/images/icon/fax.svg);
}
.service_wrapper .service_contents .information_wrap .detail_wrap .wrap .icon.time::before {
  background-image: url(./assets/images/icon/time.svg);
}
.service_wrapper .service_contents .information_wrap .detail_wrap .wrap .icon.days::before {
  background-image: url(./assets/images/icon/days.svg);
}
.service_wrapper .service_contents .information_wrap .detail_wrap .wrap .icon.closed::before {
  background-image: url(./assets/images/icon/closed.svg);
}
.service_wrapper .service_contents .service_list_wrap .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  row-gap: 1.5em;
}
.service_wrapper .service_contents .service_list_wrap .list li a {
  font-family: var(--font_title);
  padding: 0.5em 1em;
  position: relative;
}
.service_wrapper .service_contents .service_list_wrap .list li a::before, .service_wrapper .service_contents .service_list_wrap .list li a::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #98A5B1;
  position: absolute;
  top: 0;
}
.service_wrapper .service_contents .service_list_wrap .list li a::before {
  left: 0;
}
.service_wrapper .service_contents .service_list_wrap .list li a::after {
  right: -1px;
}
.service_wrapper .service_contents .service_list_wrap .list li a:hover, .service_wrapper .service_contents .service_list_wrap .list li a.active {
  background-color: #ebf4ff;
}

.service_greeting .cmmn_flex_inner {
  margin-top: -35rem;
}
@media (max-width: 768px) {
  .service_greeting .cmmn_flex_inner {
    margin-top: -10rem;
  }
}
.service_greeting .right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
}
@media (max-width: 768px) {
  .service_greeting .right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3.8rem;
  }
}
.service_greeting .right .image {
  width: 28%;
}
@media (max-width: 768px) {
  .service_greeting .right .image {
    width: max(40%, 17rem);
  }
}
.service_greeting .right .image img {
  border-radius: 0.5em;
}
.service_greeting .right .text_wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 2;
}
.service_greeting .right .text_wrap .text {
  margin-bottom: 1.5em;
}
.service_greeting .right .text_wrap .text p:not(:last-child) {
  margin-bottom: 1em;
}
.service_greeting .right .cmmn_text {
  margin-bottom: 2em;
}
.service_greeting .right .name {
  text-align: right;
}

.recruitment_btn.cmmn_btn {
  z-index: -1;
  padding: 0.7em 1em 0.9em;
  width: auto;
  border-radius: 0.5em;
  background-color: #FFE5B4;
  font-size: max(1.8rem, 15px);
  position: fixed;
  top: 3rem;
  right: 12.5em;
  z-index: 15;
}
.recruitment_btn.cmmn_btn.up {
  top: 3rem;
}
@media (max-width: 768px) {
  .recruitment_btn.cmmn_btn.up {
    top: unset;
  }
}
.recruitment_btn.cmmn_btn.down {
  top: -5em;
}
@media (max-width: 768px) {
  .recruitment_btn.cmmn_btn.down {
    top: unset;
  }
}
@media (max-width: 1250px) {
  .recruitment_btn.cmmn_btn {
    padding: 0.7em 1em 0.8em;
  }
}
@media (max-width: 768px) {
  .recruitment_btn.cmmn_btn {
    top: unset;
    position: fixed;
    bottom: 2rem;
    z-index: 3;
    left: 0;
    right: 0;
    margin: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 16px;
  }
}
.recruitment_btn.cmmn_btn::before {
  width: 90%;
  right: 0;
  margin: auto;
}

.open .recruitment_btn.cmmn_btn {
  z-index: 3;
}

.recruitment_headline {
  margin-top: 4.5em;
}
@media (max-width: 768px) {
  .recruitment_headline {
    margin-top: 0;
    padding-top: 3rem;
  }
}
.recruitment_headline .sunrise {
  position: absolute;
  width: 42rem;
  left: -10%;
  bottom: -20%;
}
@media (min-width: 2001px) {
  .recruitment_headline .sunrise {
    left: 0;
  }
}
@media (max-width: 768px) {
  .recruitment_headline .sunrise {
    top: 5rem;
    bottom: unset;
    left: -5%;
  }
}
.recruitment_headline .wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media (max-width: 768px) {
  .recruitment_headline .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}
.recruitment_headline .cmmn_sct_title {
  position: unset;
  position: unset;
  z-index: 1;
  background-color: unset;
  padding: 0;
  margin-right: 0;
  padding-left: 5%;
}
@media (max-width: 768px) {
  .recruitment_headline .cmmn_sct_title {
    margin: auto;
    padding: 1em;
    background-color: #fff;
  }
}
.recruitment_headline .image_wrap {
  width: 60%;
  margin-left: auto;
  margin-right: 5%;
  max-width: 1200px;
}
@media (min-width: 1701px) {
  .recruitment_headline .image_wrap {
    margin-right: calc((100% - 130rem) / 2);
  }
}
@media (min-width: 2001px) {
  .recruitment_headline .image_wrap {
    margin-right: calc((100% - 156rem) / 2);
  }
}
@media (max-width: 768px) {
  .recruitment_headline .image_wrap {
    width: 90%;
    margin: 0 auto;
  }
}
.recruitment_headline .image_wrap .video_container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9のアスペクト比 */
  border-radius: 0.5em;
  overflow: hidden;
  background-color: #000;
}
.recruitment_headline .image_wrap .video_container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.recruitment_headline .image_wrap video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/0.65;
  border-radius: 1.25em;
}
.recruitment_headline .wave {
  margin-top: 0;
}

.recruitment_working .right .contents {
  display: grid;
  row-gap: 3.5em;
}
@media (max-width: 768px) {
  .recruitment_working .right .contents {
    gap: 8.5rem;
  }
}
.recruitment_working .right .contents .item .wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  .recruitment_working .right .contents .item .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 3.8rem;
  }
}
.recruitment_working .right .contents .item .wrap .title {
  width: 48%;
  font-family: var(--font_title);
  font-size: max(2.2rem, 16px);
}
@media (max-width: 768px) {
  .recruitment_working .right .contents .item .wrap .title {
    width: 100%;
    font-size: 2rem;
  }
}
@media (max-width: 425px) {
  .recruitment_working .right .contents .item .wrap .title {
    font-size: min(5.5vw, 2rem);
  }
}
.recruitment_working .right .contents .item .wrap .image {
  width: 48%;
  aspect-ratio: 3/2;
}
@media (max-width: 768px) {
  .recruitment_working .right .contents .item .wrap .image {
    width: 100%;
  }
}
.recruitment_working .right .contents .item .wrap .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5em;
}
.recruitment_working .right .contents .item .text {
  width: 70%;
}
@media (max-width: 768px) {
  .recruitment_working .right .contents .item .text {
    width: 100%;
  }
}
.recruitment_working .right .contents .item .text p:not(:last-child) {
  margin-bottom: 0.5em;
}

.recruitment_benefits .inner {
  margin-top: -20rem;
}
@media (max-width: 768px) {
  .recruitment_benefits .inner {
    margin-top: -5rem;
  }
}
@media (min-width: 2001px) {
  .recruitment_benefits .inner {
    margin-top: -20vw;
  }
}
.recruitment_benefits .right .contents {
  display: grid;
  row-gap: 1.5em;
}
.recruitment_benefits .right .contents .item {
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  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: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1em;
  border-radius: 1rem;
  background-color: #fff;
}
@media (max-width: 768px) {
  .recruitment_benefits .right .contents .item {
    padding: 1em 1em 2em;
  }
}
.recruitment_benefits .right .contents .item .image {
  width: 15vw;
  height: 15vw;
  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;
  position: relative;
}
@media (max-width: 600px) {
  .recruitment_benefits .right .contents .item .image {
    width: 8.6rem;
    height: 8.6rem;
  }
}
.recruitment_benefits .right .contents .item .image::before {
  position: absolute;
  content: "";
  background-color: var(--beige);
  width: 82%;
  height: 82%;
  border-radius: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .recruitment_benefits .right .contents .item .image::before {
    width: 100%;
    height: 100%;
  }
}
.recruitment_benefits .right .contents .item .image img {
  width: 82%;
  height: 82%;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
}
@media (max-width: 768px) {
  .recruitment_benefits .right .contents .item .image img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 768px) {
  .recruitment_benefits .right .contents .item .image_pc {
    display: none;
  }
}
.recruitment_benefits .right .contents .item .item_text {
  width: calc(100% - 15vw - 1.5em);
}
@media (max-width: 768px) {
  .recruitment_benefits .right .contents .item .item_text {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .recruitment_benefits .right .contents .item .item_text .title_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;
    gap: 1em;
    margin-bottom: 1.5rem;
  }
}
.recruitment_benefits .right .contents .item .item_text .image {
  display: none;
}
@media (max-width: 768px) {
  .recruitment_benefits .right .contents .item .item_text .image {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.recruitment_benefits .right .contents .item .item_text .title {
  font-family: var(--font_title);
  font-size: 1.2em;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .recruitment_benefits .right .contents .item .item_text .title {
    font-size: 2rem;
    margin-bottom: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media (max-width: 350px) {
  .recruitment_benefits .right .contents .item .item_text .title {
    font-size: 1.8rem;
  }
}
.recruitment_benefits .right .contents .item .item_text .text p:not(:last-child) {
  margin-bottom: 1em;
}

.recruitment_members {
  overflow: hidden;
}
@media (max-width: 768px) {
  .recruitment_members .contents {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0;
  }
}
.recruitment_members .contents .swiper-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12rem 4%;
}
@media (max-width: 768px) {
  .recruitment_members .contents .swiper-wrapper {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    grid-template-columns: none;
    gap: 0;
    margin-bottom: 7.5vw;
  }
}
@media (max-width: 600px) {
  .recruitment_members .contents .swiper-wrapper {
    margin-bottom: 5vw;
  }
}
@media (max-width: 768px) {
  .recruitment_members .contents .swiper {
    overflow: visible;
    padding: 0 5vw;
    position: relative;
  }
}
.recruitment_members .contents .swiper .button_wrap {
  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: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  gap: 7vw;
}
.recruitment_members .contents .swiper .swiper-button-prev,
.recruitment_members .contents .swiper .swiper-button-next {
  display: none;
  width: 4rem;
  height: 4rem;
  position: unset;
  background: none;
  margin-top: 0;
}
@media (max-width: 768px) {
  .recruitment_members .contents .swiper .swiper-button-prev,
  .recruitment_members .contents .swiper .swiper-button-next {
    display: block;
  }
}
.recruitment_members .contents .swiper .swiper-button-prev {
  left: 0;
}
.recruitment_members .contents .swiper .swiper-button-next {
  right: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.recruitment_members .contents .swiper .swiper-pagination {
  position: relative;
  display: none;
}
@media (max-width: 768px) {
  .recruitment_members .contents .swiper .swiper-pagination {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 5vw;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.recruitment_members .contents .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  background-color: var(--gray);
  opacity: 1;
}
.recruitment_members .contents .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--key_orange);
}
.recruitment_members .contents .item {
  cursor: pointer;
  position: relative;
}
@media (max-width: 768px) {
  .recruitment_members .contents .item {
    margin-top: 0;
  }
}
.recruitment_members .contents .item::before {
  position: absolute;
  content: "";
  background-color: #FFF8EC;
  border-radius: 1em;
  width: 100%;
  height: 60%;
  top: 5%;
  left: -15%;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  z-index: -1;
}
.recruitment_members .contents .item:nth-child(3n-1) {
  margin-top: 3em;
}
@media (max-width: 768px) {
  .recruitment_members .contents .item:nth-child(3n-1) {
    margin-top: 0;
  }
}
.recruitment_members .contents .item:nth-child(2n):before {
  background-color: #F4FAFF !important;
  top: 10%;
  left: 0%;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}
.recruitment_members .contents .item:nth-child(3n):before {
  top: -5%;
  left: 15%;
}
.recruitment_members .contents .item:nth-child(4n):before {
  top: 10%;
  left: -20%;
}
.recruitment_members .contents .item:nth-child(5n):before {
  top: 0%;
  left: -5%;
}
.recruitment_members .contents .item:hover .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.recruitment_members .contents .item:hover .image::before {
  background-image: url(./assets/images/icon/arrow_right_bg.png);
}
.recruitment_members .contents .item .image {
  aspect-ratio: 4/5;
  margin-bottom: 1em;
  border-radius: 1em;
  overflow: hidden;
  position: relative;
}
.recruitment_members .contents .item .image::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/icon/arrow_right_white.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 2.6em;
  height: 1.6em;
  bottom: 2%;
  right: 5%;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 600px) {
  .recruitment_members .contents .item .image::before {
    width: 2em;
    height: 1.2em;
  }
}
.recruitment_members .contents .item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.recruitment_members .contents .item .text_wrap {
  position: relative;
}
.recruitment_members .contents .item .position {
  font-family: var(--font_title);
  display: inline-block;
  color: var(--color_key);
  font-size: 0.8em;
  padding: 0.3em 0.7em;
  border-radius: 0.5em;
  border: 1px solid #E3E5E7;
  margin-bottom: 1em;
}
.recruitment_members .contents .item .comment {
  font-family: var(--font_title);
  font-size: max(2.2rem, 18px);
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .recruitment_members .contents .item .comment {
    font-size: 2rem;
    margin-bottom: 0.75em;
  }
}
@media (max-width: 768px) {
  .recruitment_members .contents .item .comment br {
    display: none;
  }
}
.recruitment_members .contents .item .name {
  font-size: 1em;
  font-family: var(--font_text);
}
@media (max-width: 768px) {
  .recruitment_members .contents .item .name {
    font-size: 1.4rem;
  }
}
.recruitment_members .contents .item .team {
  font-size: 1em;
}
@media (max-width: 768px) {
  .recruitment_members .contents .item .team {
    font-size: 1.4rem;
  }
}
.recruitment_members .contents .item .text {
  display: none;
}

.recruitment_numbers .inr {
  width: 94vw;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.recruitment_numbers .contents {
  background-color: var(--beige);
  padding: 3em 0;
}
.recruitment_numbers .contents .item_wrapper {
  max-width: 1050px;
  width: 88vw;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5em;
}
@media (max-width: 768px) {
  .recruitment_numbers .contents .item_wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
  }
}
@media (max-width: 600px) {
  .recruitment_numbers .contents .item_wrapper {
    grid-template-columns: 1fr;
  }
}
.recruitment_numbers .item {
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  padding: 2rem 2rem 3rem;
  border-radius: 0.5em;
}
@media (max-width: 768px) {
  .recruitment_numbers .item {
    padding: 5% 5% 8%;
  }
}
.recruitment_numbers .item:nth-child(odd) .title::before {
  background-color: var(--key_orange);
}
.recruitment_numbers .item .title {
  font-family: var(--font_title);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: relative;
  padding-top: 1.2em;
  font-weight: 600;
}
.recruitment_numbers .item .title::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: var(--color_key);
}
.recruitment_numbers .item .box {
  margin-top: 1rem;
}
.recruitment_numbers .item .text_wrap {
  line-height: 1;
  text-align: center;
  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;
  gap: 2rem;
}
.recruitment_numbers .item .text_wrap .label {
  font-size: 0.9em;
  text-align: left;
}
.recruitment_numbers .item .text_wrap .number {
  font-size: 7.3rem;
  font-weight: 700;
}
.recruitment_numbers .item .text_wrap .unit {
  font-size: 2.1rem;
  font-weight: 500;
}
.recruitment_numbers .item.ratio .text_item {
  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;
}
.recruitment_numbers .item.age {
  position: relative;
}
.recruitment_numbers .item.age .title {
  position: absolute;
}
.recruitment_numbers .item.age .image_box {
  position: relative;
}
.recruitment_numbers .item.age .text_item {
  position: absolute;
  line-height: 1.05;
  text-align: center;
}
.recruitment_numbers .item.age .text_item .label .large {
  font-size: max(3.7rem, 20px);
  font-weight: 700;
}
@media (max-width: 768px) {
  .recruitment_numbers .item.age .text_item .label .large {
    font-size: 3.5vw;
  }
}
@media (max-width: 600px) {
  .recruitment_numbers .item.age .text_item .label .large {
    font-size: 9vw;
  }
}
.recruitment_numbers .item.age .text_item .label .small {
  font-size: max(2.1rem, 13px);
  font-weight: 500;
}
@media (max-width: 600px) {
  .recruitment_numbers .item.age .text_item .label .small {
    font-size: 4.5vw;
  }
}
.recruitment_numbers .item.age .text_item .text {
  font-size: max(1.6rem, 12px);
  font-weight: 500;
}
@media (max-width: 600px) {
  .recruitment_numbers .item.age .text_item .text {
    font-size: 4vw;
  }
}
.recruitment_numbers .item.age .age_20 {
  top: 12%;
  right: 23%;
}
.recruitment_numbers .item.age .age_30 {
  top: 34%;
  right: 6%;
}
.recruitment_numbers .item.age .age_40 {
  bottom: 17%;
  right: 33%;
}
.recruitment_numbers .item.age .age_50 {
  bottom: 38%;
  left: 13%;
}
.recruitment_numbers .item.age .age_60 {
  top: 12%;
  left: 23%;
}

.recruitment_jobs .contents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 2em;
     -moz-column-gap: 2em;
          column-gap: 2em;
  row-gap: 1em;
}
@media (max-width: 600px) {
  .recruitment_jobs .contents {
    grid-template-columns: 1fr;
  }
}
.recruitment_jobs .contents .item {
  padding: 2em 3em 2em 1em;
  cursor: pointer;
  border-radius: 0.5em;
  background-color: #fff;
  border: 1px solid var(--line_blue);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media (max-width: 768px) {
  .recruitment_jobs .contents .item {
    padding: 1em 2.5em 1em 1em;
  }
}
.recruitment_jobs .contents .item::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/icon/arrow_btn.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.5em;
  height: 0.9em;
  right: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .recruitment_jobs .contents .item::before {
    width: 1.1em;
    height: 0.5em;
  }
}
.recruitment_jobs .contents .item:hover {
  background-color: #ebf4ff;
}
.recruitment_jobs .contents .item:hover:before {
  right: 0.8em;
}
.recruitment_jobs .contents .item .title {
  font-size: 1.2em;
}

.recruitment_links {
  background-color: var(--beige);
  margin-bottom: 27.5rem;
  margin-bottom: 15rem;
}
.recruitment_links .inr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15%;
  -webkit-transform: translateY(10rem);
          transform: translateY(10rem);
}
@media (max-width: 768px) {
  .recruitment_links .inr {
    gap: 5%;
    -webkit-transform: translateY(7rem);
            transform: translateY(7rem);
  }
}
.recruitment_links .inr .item:hover .cmmn_btn::after {
  background-image: url("./assets/images/icon/arrow_right_bg.png");
}
.recruitment_links .inr .item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.recruitment_links .inr .item .image {
  overflow: hidden;
  border-radius: 0.5em;
}
.recruitment_links .inr .item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.recruitment_links .inr .item .cmmn_btn {
  width: 100%;
}
@media (max-width: 425px) {
  .recruitment_links .inr .item .cmmn_btn {
    font-size: 3.6vw;
  }
}/*# sourceMappingURL=style.css.map */