@charset "UTF-8";
/*//////////////////////////////////////////////////////////

Copyright (C) apricot-design All Rights Reserved.
------------------------------------------------------------
CSS information
 file name  :  reset.css
 style info :  リセットファイル
 admin info :  apricot-design

//////////////////////////////////////////////////////////*/
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}

audio[controls], canvas, video {
  display: inline-block;
  *display: inline;
  zoom: 1;
}

html {
  overflow-y: scroll;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, ul {
  margin: 0;
  padding: 0;
}

body, button, input, select, textarea {
  font-size: 100%;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

pre, code, kbd, samp {
  font-family: monospace, monospace;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

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

small {
  font-size: 75%;
}

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

ul, ol {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0px;
}

nav ul, nav ol {
  list-style: none;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

figure, form {
  margin: 0;
}

fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  *margin-left: -7px;
}

input, button, select, textarea {
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font-size: 100%;
  vertical-align: baseline;
  *vertical-align: middle;
  margin: 0;
  padding: 0;
  outline: none;
}

input[type=radio] {
  appearance: auto;
  margin-right: 5px;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select {
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
}
select::-ms-expand {
  display: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

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

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}

img, abbr, acronym, fieldset {
  border: 0;
}

li {
  list-style: none;
}

/*画像を縦に並べた時に余白が出ないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.ie6_error, .no_script {
  background: #F66;
  padding: 100px;
  text-align: center;
  font-size: 150%;
  color: #333;
}

.flt {
  float: left;
}

.flr {
  float: right;
}

.txt_l, td.txt_l, .txt_l td {
  text-align: left;
}

.txt_r, td.txt_r, .txt_r td {
  text-align: right;
}

.txt_c, td.txt_c, .txt_c td {
  text-align: center;
}

.valign_t, td.valign_t, .valign_t td {
  vertical-align: top;
}

.valign_m, td.valign_m, .valign_m td {
  vertical-align: middle;
}

.valign_b, td.valign_b, .valign_b td {
  vertical-align: bottom;
}

.clear {
  clear: both;
}

.clearfix {
  zoom: 1;
}
.clearfix:before {
  content: "";
  display: block;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.img_bd {
  border: solid 1px #E8E8E8;
}

.c_red {
  color: #FF3425;
}

.fadeIn {
  opacity: 0;
}
.fadeIn.js_active {
  animation: fadeIn 0.6s ease-in-out forwards;
}

.fadeInDelay {
  opacity: 0;
}
.fadeInDelay.js_active {
  animation: fadeIn 0.6s ease-in-out 0.4s forwards;
}

.fadeInLeft {
  opacity: 0;
}
.fadeInLeft.js_active {
  animation: fadeInLeft 0.6s ease-in-out forwards;
}

.fadeInRight {
  opacity: 0;
}
.fadeInRight.js_active {
  animation: fadeInRight 0.6s ease-in-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(2em);
  }
  80% {
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-1.5em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(1.5em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
:root {
  --max-with: 1500;
  --min-with: 1000px;
  --headerHeight: 140px;
  --recruitHeaderHeight: 114px;
  --activeHeaderHeight: 96px;
  --sideW: min(4.66vw, 70px);
  --space: 120px;
  --spaceMin: 80px;
}
@media screen and (max-width: 767px) {
  :root {
    --max-with: 375;
    --min-with: 300px;
    --headerHeight: 80px;
    --recruitHeaderHeight: 80px;
    --activeHeaderHeight: 70px;
    --sideW: min(6.66vw, 25px);
    --space: 80px;
    --spaceMin: 50px;
  }
}

html {
  width: 100%;
  font-size: 10px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--activeHeaderHeight);
}

body {
  font: 400 16px/1.875 "Noto Sans JP", sans-serif;
  color: #313131;
  background-color: #F6F6F6;
  text-align: left;
  letter-spacing: 0.06em;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0.08em;
}

a {
  text-decoration: none;
  color: #313131;
  transition: 0.5s;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

.opacity {
  transition: 0.3s;
}
.opacity:hover {
  opacity: 0.6;
}

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

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

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

#container_wrap {
  position: relative;
  min-width: var(--min-with);
  padding-top: var(--headerHeight);
}
@media screen and (max-width: 767px) {
  #container_wrap {
    overflow: hidden;
    min-width: 1px;
  }
}
#container_wrap.recruit_container {
  padding-top: var(--recruitHeaderHeight);
  background-color: #fff;
}

.home #container_wrap {
  padding-top: 0;
}

.page-recruit .header--recruit.js_scroll + .fixed_entry {
  top: auto;
}
.page-recruit .fixed_entry {
  top: auto;
  left: 0;
  right: 0;
  width: 1220px;
  margin: auto;
  bottom: 0;
}

.section_wrap {
  position: relative;
  margin-bottom: var(--space);
}
.section_wrap_min {
  position: relative;
  margin-bottom: var(--spaceMin);
}
.section_wrap_min.of_hidden {
  margin-bottom: 0;
  padding-bottom: var(--spaceMin);
}
.section_wrap_lg {
  position: relative;
  margin-bottom: 180px;
}
@media screen and (max-width: 767px) {
  .section_wrap_lg {
    margin-bottom: 100px;
  }
}
.section_wrap_lg.of_hidden {
  margin-bottom: 0;
  padding-bottom: 180px;
}
@media screen and (max-width: 767px) {
  .section_wrap_lg.of_hidden {
    padding-bottom: 100px;
  }
}
.section_wrap.of_hidden {
  margin-bottom: 0;
  padding-bottom: var(--space);
}

.of_hidden {
  overflow: hidden;
}

.inner, .inner_min {
  max-width: calc(1220px + var(--sideW) * 2);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--sideW);
}
.inner_min {
  max-width: calc(1016px + var(--sideW) * 2);
}
.inner + .inner, .inner_min + .inner, .inner + .inner_min, .inner_min + .inner_min {
  margin-top: var(--spaceMin);
}

.header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  min-width: var(--min-with);
  height: var(--headerHeight);
  top: 0;
  left: 0;
  z-index: 1000;
  transition: 0.5s;
  padding: 0 var(--sideW);
}
@media screen and (max-width: 767px) {
  .header {
    padding-right: 0;
  }
}
.header.js_scroll {
  height: var(--activeHeaderHeight);
}
.header__ttl {
  transition: 0.5s;
  z-index: 3;
}
.header__ttl a {
  display: block;
  width: min(17.33vw, 260px);
  aspect-ratio: 260/62;
  white-space: nowrap;
  text-indent: 110%;
  overflow: hidden;
  background: url(../images/logo.svg) no-repeat center/contain;
  transition: none;
}
@media screen and (max-width: 767px) {
  .header__ttl a {
    width: min(54.66vw, 205px);
  }
}
@media screen and (max-width: 767px) {
  .header__nav {
    height: 100%;
  }
}
.header .btn_cmn_01 {
  margin-bottom: 20px;
}
.header .ig {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 0.8125em;
  font-family: "Outfit", sans-serif;
  color: #C09F46;
}
.header .ig::before {
  content: "";
  display: block;
  width: 22px;
  aspect-ratio: 1/1;
  background: url(../images/ico_ig.svg) no-repeat center/contain;
}
.header--recruit {
  height: var(--recruitHeaderHeight);
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .header--recruit {
    height: var(--headerHeight);
  }
}
.header--recruit.js_scroll {
  height: 100px;
}
@media screen and (max-width: 767px) {
  .header--recruit.js_scroll {
    height: var(--activeHeaderHeight);
  }
}
.header--recruit.js_scroll + .fixed_entry {
  top: 100px;
}
@media screen and (max-width: 767px) {
  .header--recruit.js_scroll + .fixed_entry {
    top: auto;
  }
}
.header--recruit .header__ttl {
  display: flex;
  align-items: flex-end;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .header--recruit .header__ttl {
    gap: 8px;
  }
}
.header--recruit .header__ttl::after {
  content: "Recruit";
  display: block;
  width: 67px;
  line-height: 22px;
  background: url(../images/recruit_grad_01.jpg) no-repeat center/cover;
  font-family: "Outfit", sans-serif;
  font-size: 0.875em;
  font-weight: 500;
  text-align: center;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .header--recruit .header__ttl::after {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .header--recruit .header__ttl a {
    width: 140px;
  }
}
.header--recruit .menu-trigger {
  background-color: #C09F46;
}

.global_nav {
  display: flex;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .global_nav {
    display: none;
  }
}
.global_nav > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 min(2vw, 30px);
}
.global_nav > ul > li > a:not(.btn) {
  display: block;
  position: relative;
  font-size: 1.0625em;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.global_nav > ul > li > a:not(.btn):hover::after {
  transform: scale(1);
  transform-origin: left;
}
.global_nav > ul > li > a:not(.btn)::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #C09F46;
  left: 0;
  bottom: -2px;
  transform: scale(0, 1);
  transition: transform 0.5s;
  transform-origin: right;
}
.global_nav > ul .btn {
  display: block;
  width: 290px;
  padding: 20px 20px 20px 100px;
  font-size: 1.375em;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.08em;
  background: url(../images/ico_nav_recruit.svg) no-repeat center left 36px, url(../images/ico_arrow_right.svg) no-repeat center right 18px;
  background-color: #fff;
  border-radius: 100px 100px 10px 100px;
}
.global_nav > ul .btn:hover {
  box-shadow: 0 10px 10px rgba(49, 49, 49, 0.3);
  transform: translateY(-3px);
}
.global_nav > ul .btn::after {
  content: attr(data-en);
  display: block;
  font-size: 0.6em;
  font-family: "Outfit", sans-serif;
  color: #C09F46;
  letter-spacing: 0.08em;
}
.global_nav > ul .has_child {
  position: relative;
  padding: 12px 0;
}
.global_nav > ul .has_child:hover ul {
  pointer-events: auto;
  opacity: 1;
}
.global_nav > ul ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0;
  transition: 0.5s;
  white-space: nowrap;
}
.global_nav > ul ul .btn_cmn_02 {
  display: block;
  padding-block: 13px;
}
.global_nav_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .global_nav_sp {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    background-color: #fff;
    padding: 100px var(--sideW);
    opacity: 0;
    pointer-events: none;
  }
}
.global_nav_sp.active {
  transition: opacity 0.5s;
  opacity: 1;
  pointer-events: auto;
  right: 0;
}
.global_nav_sp > ul {
  padding: 0 var(--sideW);
  margin-bottom: 35px;
}
.global_nav_sp > ul > li {
  border-bottom: 1px dashed #313131;
}
.global_nav_sp > ul > li > a {
  display: block;
  font-size: 1.0625em;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 12px;
}
.global_nav_sp > ul > li ul {
  padding: 0 0 23px 30px;
}
.global_nav_sp > ul > li ul a {
  display: block;
  position: relative;
  padding-left: 29px;
  font-size: 0.875em;
  letter-spacing: 0.08em;
  line-height: 2.2;
  background: url(../images/ico_arrow_right.svg) no-repeat center left/22px auto;
}
.global_nav_sp .tel {
  margin-bottom: 30px;
}
.global_nav_sp .tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 2.5em;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  color: #C09F46;
  letter-spacing: 0.04em;
  line-height: 1;
}
.global_nav_sp .tel a::before {
  content: "";
  display: block;
  width: 30px;
  aspect-ratio: 1/1;
  background: url(../images/ico_tel.svg) no-repeat center/contain;
}
.global_nav_sp .tel p {
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
}

.global_recruit_nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .global_recruit_nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    overflow-y: scroll;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.5);
    padding: 100px calc(var(--sideW) * 2);
    opacity: 0;
    pointer-events: none;
  }
}
.global_recruit_nav.active {
  transition: opacity 0.5s;
  opacity: 1;
  pointer-events: auto;
}
.global_recruit_nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px min(2vw, 30px);
  order: 2;
}
@media screen and (max-width: 767px) {
  .global_recruit_nav ul {
    display: block;
  }
}
.global_recruit_nav ul a {
  display: block;
  position: relative;
  font-size: 1.0625em;
  font-size: clamp(calc(var(--min-with) * (17 / var(--max-with))), calc(17vw / var(--max-with) * 100), 17px);
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: none;
}
@media screen and (max-width: 767px) {
  .global_recruit_nav ul a {
    padding: 15px 0;
    border-bottom: 1px dashed #313131;
  }
}
.global_recruit_nav ul a:hover::after {
  transform: scale(1);
  transform-origin: left;
}
.global_recruit_nav ul a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #C09F46;
  left: 0;
  bottom: -2px;
  transform: scale(0, 1);
  transition: transform 0.5s;
  transform-origin: right;
}
.global_recruit_nav .corp_top {
  display: flex;
  align-items: center;
  gap: 8px;
  order: 1;
  font-size: 0.9375em;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .global_recruit_nav .corp_top {
    justify-content: center;
    font-size: 1em;
    margin-top: 60px;
  }
}
.global_recruit_nav .corp_top::after {
  content: "";
  display: block;
  width: 22px;
  aspect-ratio: 1/1;
  mask: url(../images/ico_arrow_right.svg) no-repeat center/contain;
  background-color: #C09F46;
}

.fixed_entry {
  display: flex;
  justify-content: center;
  position: fixed;
  top: 120px;
  right: var(--sideW);
  width: 624px;
  max-width: 94%;
  padding: 15px 65px;
  background: url(../images/recruit_grad_01.jpg) no-repeat center/cover;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .fixed_entry {
    top: auto;
    bottom: 0;
    padding: 15px 0;
    right: auto;
    max-width: 93;
    left: 3%;
  }
}
.fixed_entry:hover {
  filter: drop-shadow(0 10px 10px rgba(49, 49, 49, 0.3));
}
.fixed_entry strong {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.5;
  padding-right: clamp(calc(var(--min-with) * (30 / var(--max-with))), calc(30vw / var(--max-with) * 100), 30px);
  margin-right: clamp(calc(var(--min-with) * (30 / var(--max-with))), calc(30vw / var(--max-with) * 100), 30px);
  border-right: 1px solid #313131;
}
@media screen and (max-width: 767px) {
  .fixed_entry strong {
    padding-right: 10px;
    margin-right: 10px;
    font-size: 0.8125em;
  }
}
.fixed_entry strong::before {
  content: attr(data-en);
  display: block;
  font-size: 2em;
  font-family: "Outfit", sans-serif;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .fixed_entry strong::before {
    font-size: 1.75em;
  }
}
.fixed_entry p {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .fixed_entry p {
    font-size: 0.875em;
    gap: 5px;
  }
}
.fixed_entry p::after {
  content: "";
  display: block;
  width: 32px;
  aspect-ratio: 1/1;
  mask: url(../images/ico_arrow_right.svg) no-repeat center/contain;
  background-color: #313131;
  flex-shrink: 0;
  width: 24px;
}

.menu-trigger {
  display: none;
  place-content: center;
  place-items: center;
  gap: 3px;
  position: relative;
  height: 100%;
  aspect-ratio: 1/1;
  cursor: pointer;
  background-color: #BF59A0;
  z-index: 3;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .menu-trigger {
    display: grid;
  }
}
.menu-trigger span {
  display: block;
  position: relative;
  width: 26px;
  height: 20px;
  background: linear-gradient(to bottom, transparent calc(50% - 1px), #fff calc(50% - 1px), #fff calc(50% + 1px), transparent calc(50% + 1px));
  transition: 0.5s;
}
.menu-trigger span::before, .menu-trigger span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  top: 0;
  left: 0;
  transform-origin: center;
  transition: 0.5s;
}
.menu-trigger span::after {
  top: auto;
  bottom: 0;
}
.menu-trigger p::before {
  content: "menu";
  display: block;
  color: #fff;
  font-size: 0.9375em;
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  text-align: center;
  line-height: 1;
}
.menu-trigger.active {
  background-color: transparent;
}
.menu-trigger.active span {
  background: none;
}
.menu-trigger.active span::before, .menu-trigger.active span::after {
  top: calc(50% - 1px);
  opacity: 1;
  rotate: 135deg;
  width: calc(100% + 10px);
  left: -5px;
  background-color: #313131;
}
.menu-trigger.active span::after {
  bottom: auto;
  rotate: -135deg;
}
.menu-trigger.active p::before {
  content: "close";
  color: #313131;
}

.contact_cmn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px clamp(calc(var(--min-with) * (38 / var(--max-with))), calc(38vw / var(--max-with) * 100), 38px);
  background-color: #fff;
  padding: 35px clamp(calc(var(--min-with) * (60 / var(--max-with))), calc(60vw / var(--max-with) * 100), 60px);
  width: 1220px;
  max-width: 100%;
  border-radius: 20px;
  margin: 0 auto 150px;
}
@media screen and (max-width: 767px) {
  .contact_cmn {
    margin: 0 var(--sideW) 80px;
    padding: 36px var(--sideW) 50px;
    width: auto;
  }
}
.contact_cmn h2 {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 1.125em;
  font-weight: 500;
  font-size: 1em;
}
.contact_cmn h2.blue::before {
  color: #6395BA;
}
.contact_cmn h2.yellow::before {
  color: #C09F46;
}
.contact_cmn h2::before {
  content: attr(data-en);
  position: absolute;
  font-size: 3.88em;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  text-align: center;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  color: #BF59A0;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .contact_cmn h2::before {
    font-size: 3.125em;
    line-height: 1.5;
  }
}
.contact_cmn > p {
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact_cmn > p {
    font-size: 0.875em;
  }
}
.contact_cmn > p span {
  display: block;
  margin-bottom: 15px;
}
.contact_cmn > p span:last-child {
  margin-bottom: 0;
}
.contact_cmn .tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  gap: 15px;
  font-size: 3.125em;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  color: #C09F46;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .contact_cmn .tel a {
    font-size: 2.375em;
    gap: 8px;
  }
}
.contact_cmn .tel a::before {
  content: "";
  display: block;
  width: 34px;
  aspect-ratio: 1/1;
  background: url(../images/ico_tel.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .contact_cmn .tel a::before {
    width: 30px;
  }
}
.contact_cmn .tel p {
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact_cmn .tel p {
    font-size: 0.875em;
  }
}

.footer {
  padding-bottom: 70px;
}
.footer .inner, .footer .inner_min {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 30px clamp(calc(var(--min-with) * (67 / var(--max-with))), calc(67vw / var(--max-with) * 100), 67px);
}
@media screen and (max-width: 767px) {
  .footer .inner, .footer .inner_min {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.footer__info > img {
  display: block;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .footer__info > img {
    width: 196px;
    margin: 0 auto 30px;
  }
}
.footer__info p:not(.grecaptcha_text) {
  font-size: 0.9375em;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .footer__info p:not(.grecaptcha_text) {
    text-align: center;
    font-size: 0.875em;
  }
}
.footer__info ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 25px;
  font-size: 0.875em;
}
@media screen and (max-width: 767px) {
  .footer__info ul {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .footer__info ul li:first-child {
    width: 100%;
    text-align: center;
  }
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 clamp(calc(var(--min-with) * (30 / var(--max-with))), calc(30vw / var(--max-with) * 100), 30px);
}
@media screen and (max-width: 767px) {
  .footer__nav {
    display: none;
  }
}
.footer__nav > ul > li > a {
  display: block;
  font-size: 1.0625em;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 18px 12px;
  border-bottom: 1px dashed #313131;
}
.footer__nav > ul > li > a:hover {
  color: #C09F46;
}
.footer__nav > ul > li ul {
  padding: 22px 0 0 10px;
}
.footer__nav > ul > li ul li {
  margin-bottom: 8px;
}
.footer__nav > ul > li ul li:last-child {
  margin-bottom: 0;
}
.footer__nav > ul > li ul a {
  display: block;
  position: relative;
  padding-left: 29px;
  font-size: 0.8125em;
  letter-spacing: 0.08em;
  background: url(../images/ico_arrow_right.svg) no-repeat center left/22px auto;
}
.footer__nav > ul > li ul a:hover {
  color: #C09F46;
}
.footer .copyright {
  grid-column: 1/-1;
  margin-top: 60px;
  text-align: center;
  font-size: 0.8125em;
  font-family: "Outfit", sans-serif;
}
@media screen and (max-width: 767px) {
  .footer .copyright {
    margin-top: 20px;
    font-size: 0.75em;
  }
}

.main_visual {
  display: grid;
  place-content: center;
  position: relative;
  height: 100vh;
  height: 100svh;
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .main_visual {
    margin-bottom: 75px;
  }
}
.main_visual.js_active img {
  opacity: 1;
  transition-delay: 2.5s;
}
.main_visual.js_active h2 span {
  opacity: 1;
  transition-delay: 0.5s;
  transform: translateY(0);
}
.main_visual.js_active h2 span:last-child {
  transition-delay: 1.5s;
}
.main_visual img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: 2s;
}
.main_visual h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 1;
  font-size: 2em;
  font-weight: 700;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .main_visual h2 {
    letter-spacing: 0.15em;
  }
}
.main_visual h2 span {
  color: #BF59A0;
  width: 80px;
  line-height: 80px;
  background-color: #fff;
  border-radius: 40px;
  padding: 15px 0;
  opacity: 0;
  transition: 1s;
  transform: translateY(-20px);
}
.main_visual h2 span:last-child {
  color: #C09F46;
  margin-top: 33px;
  margin-right: -9px;
}

.top_company_slide .swiper-wrapper {
  transition: linear;
}
.top_company_slide .swiper-slide {
  width: 370px;
  aspect-ratio: 1/1;
  margin-top: 65px;
}
@media screen and (max-width: 767px) {
  .top_company_slide .swiper-slide {
    width: 214px;
    margin-top: 37px;
  }
}
.top_company_slide .swiper-slide.wide {
  width: 595px;
  aspect-ratio: 595/363;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .top_company_slide .swiper-slide.wide {
    width: 342px;
  }
}
.top_company_slide .swiper-slide img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.top_company .inner, .top_company .inner_min {
  display: grid;
  grid-template-columns: 260px 1fr 40px;
  gap: 30px clamp(calc(var(--min-with) * (60 / var(--max-with))), calc(60vw / var(--max-with) * 100), 60px);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top_company .inner, .top_company .inner_min {
    display: block;
  }
}
.top_company .inner .title, .top_company .inner_min .title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 9px;
  font-size: 2em;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #C09F46;
  writing-mode: vertical-rl;
  transform: translateY(-100px);
}
@media screen and (max-width: 767px) {
  .top_company .inner .title, .top_company .inner_min .title {
    font-size: 1.75em;
    transform: none;
    margin-top: -70px;
    width: 100%;
    margin-bottom: 30px;
  }
}
.top_company .inner .title > span, .top_company .inner_min .title > span {
  display: inline-block;
  width: 80px;
  line-height: 80px;
  background-color: #fff;
  padding: 12px 0;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .top_company .inner .title > span, .top_company .inner_min .title > span {
    width: 65px;
    line-height: 65px;
  }
}
.top_company .inner .title > span span, .top_company .inner_min .title > span span {
  color: #BF59A0;
}
.top_company .inner .title > span:nth-of-type(2), .top_company .inner_min .title > span:nth-of-type(2) {
  margin-top: 60px;
}
.top_company .inner .title > span:nth-of-type(3), .top_company .inner_min .title > span:nth-of-type(3) {
  margin-top: 130px;
}
.top_company .inner .text p, .top_company .inner_min .text p {
  font-size: 1.125em;
  line-height: 2;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .top_company .inner .text p, .top_company .inner_min .text p {
    font-size: 0.9375em;
  }
}
.top_company .btn_cmn_01 {
  border: none;
}

.top_service {
  position: relative;
  overflow: hidden;
  padding-top: 246px;
}
@media screen and (max-width: 767px) {
  .top_service {
    padding-top: 0;
  }
}
.top_service .inner, .top_service .inner_min {
  position: relative;
}
.top_service__main {
  position: absolute;
  top: 0;
  right: calc(var(--sideW) * 2);
  width: calc(100vw - var(--sideW) * 2);
  height: 492px;
}
@media screen and (max-width: 1500px) {
  .top_service__main {
    right: var(--sideW);
    width: calc(100vw - var(--sideW));
  }
}
@media screen and (max-width: 767px) {
  .top_service__main {
    position: relative;
    aspect-ratio: 375/212;
    right: 0;
    width: 100vw;
    height: auto;
  }
}
.top_service__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top_service__in {
  position: relative;
  padding: 310px 0 120px clamp(calc(var(--min-with) * (100 / var(--max-with))), calc(100vw / var(--max-with) * 100), 100px);
}
@media screen and (max-width: 767px) {
  .top_service__in {
    padding: 60px 0 60px var(--sideW);
  }
}
.top_service__in::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  z-index: -1;
}
.top_service strong {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: absolute;
  top: 45px;
  right: 65px;
  z-index: 1;
  font-size: 2em;
  font-weight: 700;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .top_service strong {
    font-size: 1.375em;
    right: 0;
    top: 0;
    transform: translateY(-50%);
  }
}
.top_service strong span {
  color: #C09F46;
  width: 80px;
  line-height: 80px;
  background-color: #fff;
  border-radius: 40px;
  padding: 15px 0;
}
@media screen and (max-width: 767px) {
  .top_service strong span {
    width: 42px;
    line-height: 42px;
  }
}
.top_service strong span:last-child {
  margin-top: 33px;
  margin-right: -9px;
}
.top_service .title {
  display: flex;
  align-items: center;
  gap: 20px clamp(calc(var(--min-with) * (100 / var(--max-with))), calc(100vw / var(--max-with) * 100), 100px);
  padding-right: 270px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .top_service .title {
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 40px;
  }
}
.top_service .title h2 {
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .top_service .title h2 {
    font-size: 0.875em;
  }
}
.top_service .title h2::before {
  content: attr(data-en);
  display: block;
  font-size: 3.88em;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: #BF59A0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .top_service .title h2::before {
    font-size: 3.5em;
  }
}
@media screen and (max-width: 767px) {
  .top_service p {
    font-size: 0.875em;
  }
}
.top_service ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 60px clamp(calc(var(--min-with) * (60 / var(--max-with))), calc(60vw / var(--max-with) * 100), 60px);
}
@media screen and (max-width: 767px) {
  .top_service ul {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.top_service ul img {
  display: block;
  border-radius: 10px;
  margin: 0 auto 25px;
}
.top_service ul h3 {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .top_service ul h3 {
    font-size: 1.25em;
  }
}
.top_service ul p {
  font-size: 0.9375em;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top_service ul p {
    font-size: 0.875em;
  }
}

.top_recruit {
  overflow: hidden;
  margin-bottom: 150px;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .top_recruit {
    margin-bottom: 220px;
    padding-bottom: 0;
    overflow: visible;
  }
}
.top_recruit__main {
  display: block;
  position: relative;
  width: 100%;
  height: 540px;
  object-fit: cover;
  z-index: -3;
}
@media screen and (max-width: 767px) {
  .top_recruit__main {
    height: auto;
    aspect-ratio: 375/229;
  }
}
.top_recruit__in {
  position: relative;
  margin-top: -147px;
  padding: 75px 0 120px;
}
@media screen and (max-width: 767px) {
  .top_recruit__in {
    margin-top: -40px;
    padding: 48px 0 150px;
  }
}
.top_recruit__in::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  background-color: #fff;
  top: 0;
  right: 236px;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .top_recruit__in::before {
    top: 0;
    right: 0;
    width: calc(100vw - var(--sideW));
  }
}
.top_recruit__in::after {
  content: "";
  position: absolute;
  width: 470px;
  height: 696px;
  background: url(../images/top_recruit_01.jpg) no-repeat center/cover;
  top: 84px;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top_recruit__in::after {
    width: 86.66vw;
    height: auto;
    aspect-ratio: 325/205;
    top: auto;
    bottom: 0;
    right: calc(var(--sideW) * -1);
    transform: translateY(50%);
  }
}
.top_recruit h2 {
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .top_recruit h2 {
    font-size: 1em;
  }
}
.top_recruit h2::before {
  content: attr(data-en);
  display: block;
  font-size: 4.44em;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: #C09F46;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .top_recruit h2::before {
    font-size: 3.75em;
  }
}
.top_recruit p {
  width: clamp(calc(var(--min-with) * (697 / var(--max-with))), calc(697vw / var(--max-with) * 100), 697px);
  max-width: 100%;
  font-size: 1.125em;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .top_recruit p {
    font-size: 0.875em;
  }
}

@media screen and (max-width: 767px) {
  .hero {
    margin-bottom: 20px;
  }
}
.hero__image {
  width: 100%;
  height: 268px;
}
.hero__text {
  display: inline-block;
  position: relative;
  padding: 25px 60px 25px 30px;
  background-color: #fff;
  border-radius: 100px 100px 100px 0;
  font-size: 1.875em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.25;
  z-index: 1;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .hero__text {
    padding: 20px 25px;
    font-size: 1.25em;
  }
}
.hero__text::before {
  content: "●";
  position: absolute;
  left: 0;
  top: calc(100% + 31px);
  font-size: 0.6em;
  font-weight: 500;
  color: #C09F46;
}
@media screen and (max-width: 767px) {
  .hero__text::before {
    top: calc(100% + 18px);
  }
}
.hero__text::after {
  content: attr(data-en);
  position: absolute;
  font-size: 0.8em;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  color: #C09F46;
  top: calc(100% + 25px);
  left: 1.2em;
}
@media screen and (max-width: 767px) {
  .hero__text::after {
    top: calc(100% + 15px);
  }
}

.service_link {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px clamp(calc(var(--min-with) * (38 / var(--max-with))), calc(38vw / var(--max-with) * 100), 38px);
  counter-reset: num;
}
@media screen and (max-width: 767px) {
  .service_link {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.service_link li:nth-child(3) a::before {
  color: #C09F46;
  border-color: #C09F46;
}
.service_link li:nth-child(3) a::after {
  background-color: #C09F46;
}
.service_link li:nth-child(4) a::before {
  color: #6395BA;
  border-color: #6395BA;
}
.service_link li:nth-child(4) a::after {
  background-color: #6395BA;
}
.service_link a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 24px;
  position: relative;
  background-color: #fff;
  padding: 40px 80px 45px 33px;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .service_link a {
    gap: 0 15px;
    padding: 20px 40px 20px 20px;
  }
}
.service_link a:hover {
  box-shadow: 0 10px 10px rgba(49, 49, 49, 0.3);
  transform: translateY(-3px);
}
.service_link a::before {
  counter-increment: num;
  content: counter(num, decimal-leading-zero);
  display: block;
  font-size: 3.75em;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  color: #BF59A0;
  border-bottom: 3px solid #BF59A0;
  padding-bottom: 5px;
  grid-row: 1/3;
  align-self: start;
}
@media screen and (max-width: 767px) {
  .service_link a::before {
    font-size: 2em;
    left: 15px;
  }
}
.service_link a::after {
  content: "";
  position: absolute;
  width: 32px;
  aspect-ratio: 1/1;
  mask: url(../images/ico_arrow_right.svg) no-repeat center/contain;
  background-color: #BF59A0;
  right: 33px;
  top: calc(50% - 16px);
  transform: rotate(90deg);
}
@media screen and (max-width: 767px) {
  .service_link a::after {
    width: 20px;
    right: 10px;
  }
}
.service_link a h3 {
  font-size: 1.375em;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .service_link a h3 {
    font-size: 1.125em;
  }
}
.service_link a p {
  font-size: 0.875em;
}

.service_top_slide {
  margin-bottom: 45px;
}
.service_top_slide.swiper {
  overflow: visible;
}
.service_top_slide .swiper-slide {
  width: 84%;
  aspect-ratio: 1024/645;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .service_top_slide .swiper-slide {
    border-radius: 10px;
  }
}
.service_top_slide .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service_top_text {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 15px 20px;
}
.service_top_text strong {
  width: 100%;
  margin-bottom: 0;
}
.service_top_text h2 {
  width: calc(50% - 20px);
  font-size: 2.5em;
  font-weight: 400;
  line-height: 1.4;
  color: #BF59A0;
}
@media screen and (max-width: 767px) {
  .service_top_text h2 {
    width: 100%;
    font-size: 1.375em;
  }
}
.service_top_text h2.yellow {
  color: #C09F46;
}
.service_top_text h2.blue {
  color: #6395BA;
}
.service_top_text .text {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .service_top_text .text {
    width: 100%;
  }
}
.service_top_text .text p {
  font-size: 0.9375em;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .service_top_text .text p {
    font-size: 0.875em;
  }
}

.service_text_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px clamp(calc(var(--min-with) * (38 / var(--max-with))), calc(38vw / var(--max-with) * 100), 38px);
  counter-reset: num;
}
@media screen and (max-width: 767px) {
  .service_text_list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.service_text_list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 24px;
  position: relative;
  background-color: #fff;
  padding: 40px 33px;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .service_text_list li {
    gap: 0 15px;
    padding: 20px;
  }
}
.service_text_list li::before {
  counter-increment: num;
  content: counter(num, decimal-leading-zero);
  display: block;
  font-size: 3.75em;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  color: #BF59A0;
  border-bottom: 3px solid #BF59A0;
  padding-bottom: 5px;
  grid-row: 1/3;
  align-self: start;
}
@media screen and (max-width: 767px) {
  .service_text_list li::before {
    font-size: 2em;
    left: 15px;
  }
}
.service_text_list li h3 {
  font-size: 1.375em;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .service_text_list li h3 {
    font-size: 1.125em;
  }
}
.service_text_list li p {
  font-size: 0.875em;
}
.service_text_list--blue li::before {
  color: #6395BA;
  border-color: #6395BA;
}

.sec_visit-care_01 {
  position: relative;
  overflow: hidden;
  padding-top: 90px;
  z-index: 1;
}
.sec_visit-care_01 .box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 58px;
  position: relative;
  padding: 90px 80px;
}
@media screen and (max-width: 767px) {
  .sec_visit-care_01 .box {
    grid-template-columns: 1fr;
    padding: 0 0 40px var(--sideW);
  }
}
.sec_visit-care_01 .box::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 20px 0 0 20px;
}
.sec_visit-care_01 .box h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  font-size: 2em;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
  grid-row: 1/3;
  transform: translateY(-180px);
}
@media screen and (max-width: 767px) {
  .sec_visit-care_01 .box h2 {
    font-size: 1.5em;
    transform: translateY(-90px);
  }
}
.sec_visit-care_01 .box h2::after {
  content: "";
  position: absolute;
  width: 128px;
  aspect-ratio: 128/174;
  background: url(../images/visit-care_icon_01.svg) no-repeat center/contain;
  top: calc(100% + 10px);
  left: 5px;
}
@media screen and (max-width: 767px) {
  .sec_visit-care_01 .box h2::after {
    content: none;
  }
}
.sec_visit-care_01 .box h2 span {
  color: #fff;
  width: 80px;
  line-height: 80px;
  background-color: #DAB84B;
  border-radius: 40px;
  padding: 15px 0;
}
@media screen and (max-width: 767px) {
  .sec_visit-care_01 .box h2 span {
    width: 60px;
    line-height: 60px;
  }
}
.sec_visit-care_01 .box h2 span:last-child {
  margin-top: 43px;
  margin-right: -9px;
}
.sec_visit-care_01 .box h3 {
  font-size: 1.5em;
  font-family: "Outfit", sans-serif;
  color: #BF59A0;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .sec_visit-care_01 .box h3 {
    margin-top: -45px;
  }
}

.sec_visit-care_02 .box {
  display: grid;
  grid-template-columns: 564px 1fr;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .sec_visit-care_02 .box {
    grid-template-columns: 1fr;
  }
}
.sec_visit-care_02 .box img {
  display: block;
  height: 450px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .sec_visit-care_02 .box img {
    height: auto;
    aspect-ratio: 565/450;
  }
}
.sec_visit-care_02 .box ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  transform: translateX(-80px);
}
@media screen and (max-width: 767px) {
  .sec_visit-care_02 .box ul {
    transform: none;
    gap: 10px;
    margin-top: -25px;
  }
}
.sec_visit-care_02 .box ul li {
  display: flex;
  gap: 12px;
  background-color: #fff;
  border-radius: 60px;
  font-size: 1.125em;
  font-weight: 700;
  padding: 15px 25px;
}
@media screen and (max-width: 767px) {
  .sec_visit-care_02 .box ul li {
    font-size: 1em;
    border-radius: 10px;
    padding: 10px 20px;
  }
}
.sec_visit-care_02 .box ul li::before {
  content: "";
  display: block;
  width: 28px;
  aspect-ratio: 28/26;
  background: url(../images/visit-care_icon_02.svg) no-repeat center/contain;
  flex-shrink: 0;
}

.use_flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 70px clamp(calc(var(--min-with) * (37 / var(--max-with))), calc(37vw / var(--max-with) * 100), 37px);
  margin-bottom: 30px;
  counter-reset: num;
}
@media screen and (max-width: 767px) {
  .use_flow {
    gap: 70px 10px;
  }
}
.use_flow li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  align-items: center;
  gap: 30px;
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  padding: 50px 15px 35px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .use_flow li {
    padding: 30px 15px;
    gap: 20px;
  }
}
.use_flow li::before, .use_flow li::after {
  content: "step";
  position: absolute;
  width: 100%;
  font-size: 1.25em;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: #BF59A0;
  line-height: 1.5;
  bottom: calc(100% + 28px);
  left: 0;
}
@media screen and (max-width: 767px) {
  .use_flow li::before, .use_flow li::after {
    font-size: 0.875em;
    bottom: calc(100% + 18px);
  }
}
.use_flow li::after {
  counter-increment: num;
  content: counter(num, decimal-leading-zero);
  bottom: auto;
  top: 0;
  transform: translateY(-50%);
  font-size: 3.75em;
}
@media screen and (max-width: 767px) {
  .use_flow li::after {
    font-size: 2.5em;
  }
}
.use_flow li strong {
  display: block;
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .use_flow li strong {
    font-size: 1.125em;
  }
}
.use_flow li p {
  font-size: 0.9375em;
}
@media screen and (max-width: 767px) {
  .use_flow li p {
    font-size: 0.875em;
  }
}
.use_flow--blue li::before, .use_flow--blue li::after {
  color: #6395BA;
}

.sec_visit-care_04 .box {
  background-color: #fff;
  padding: 45px 40px 40px;
  border-radius: 10px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .sec_visit-care_04 .box {
    padding: 30px var(--sideW);
  }
}
.sec_visit-care_04 .box:last-child {
  margin-bottom: 0;
}

.service_column_01 {
  columns: 2;
  column-gap: clamp(calc(var(--min-with) * (23 / var(--max-with))), calc(23vw / var(--max-with) * 100), 23px);
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .service_column_01 {
    columns: 1;
  }
}
.service_column_01:last-child {
  margin-bottom: 0;
}
.service_column_01 .item {
  display: grid;
  grid-template-columns: 227px 1fr;
  gap: 5px 15px;
  border-bottom: 1px solid #313131;
  padding: 15px 0;
  break-inside: avoid;
}
@media screen and (max-width: 767px) {
  .service_column_01 .item {
    grid-template-columns: 1fr;
  }
}
.service_column_01 .item dt {
  font-size: 1.125em;
  color: #BF59A0;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.service_column_02 {
  columns: 2;
  column-gap: clamp(calc(var(--min-with) * (42 / var(--max-with))), calc(42vw / var(--max-with) * 100), 42px);
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .service_column_02 {
    columns: 1;
  }
}
.service_column_02:last-child {
  margin-bottom: 0;
}
.service_column_02 .item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 5px 15px;
  border-bottom: 1px solid #313131;
  padding: 15px 0;
  break-inside: avoid;
}
@media screen and (max-width: 767px) {
  .service_column_02 .item {
    grid-template-columns: 1fr;
  }
}
.service_column_02 .item dt {
  font-size: 1.125em;
  color: #BF59A0;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.service_column_03 {
  columns: 2;
  column-gap: clamp(calc(var(--min-with) * (32 / var(--max-with))), calc(32vw / var(--max-with) * 100), 32px);
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .service_column_03 {
    columns: 1;
  }
}
.service_column_03:last-child {
  margin-bottom: 0;
}
.service_column_03 .item {
  display: grid;
  grid-template-columns: 1fr 77px;
  gap: 0 5px;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .service_column_03 .item {
    grid-template-columns: 1fr 60px;
  }
}
.service_column_03 .item dt {
  background-color: #fff;
  padding: 15px 30px;
}
@media screen and (max-width: 767px) {
  .service_column_03 .item dt {
    padding: 10px;
  }
}
.service_column_03 .item dd {
  font-size: 1.25em;
  font-weight: 700;
  padding: 12px 0;
  background-color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service_column_03 .item dd {
    padding: 8px 0;
    font-size: 1.125em;
  }
}

.service_info {
  display: flex;
  flex-wrap: wrap;
  gap: 0 clamp(calc(var(--min-with) * (53 / var(--max-with))), calc(53vw / var(--max-with) * 100), 53px);
  margin-bottom: 80px;
}
.service_info:last-child {
  margin-bottom: 0;
}
.service_info strong, .service_info h2 {
  width: 100%;
}
.service_info h2 {
  font-size: 2.5em;
  font-weight: 400;
  color: #BF59A0;
  line-height: 1.5;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .service_info h2 {
    font-size: 1.5em;
  }
}
.service_info h2.blue {
  color: #6395BA;
}
.service_info h2.yellow {
  color: #C09F46;
}
.service_info .gmap {
  position: relative;
  width: 50%;
  height: 314px;
}
@media screen and (max-width: 767px) {
  .service_info .gmap {
    width: 100%;
    height: 250px;
  }
}
.service_info .gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.service_info .text {
  width: calc(50% - clamp(calc(var(--min-with) * (53 / var(--max-with))), calc(53vw / var(--max-with) * 100), 53px));
}
@media screen and (max-width: 767px) {
  .service_info .text {
    width: 100%;
  }
}
.service_info .text table {
  width: 100%;
  margin-bottom: 30px;
}
.service_info .text table th, .service_info .text table td {
  border-bottom: 1px solid #313131;
  padding: 12px 0;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .service_info .text table th, .service_info .text table td {
    font-size: 0.875em;
  }
}
.service_info .text table th {
  width: 150px;
  color: #BF59A0;
  font-size: 1.125em;
}
@media screen and (max-width: 767px) {
  .service_info .text table th {
    width: auto;
    font-size: 1em;
    white-space: nowrap;
    padding-right: 15px;
  }
}

.sec_home-care_01 {
  position: relative;
}
.sec_home-care_01 .box {
  display: grid;
  align-content: center;
  padding-right: clamp(calc(var(--min-with) * (550 / var(--max-with))), calc(550vw / var(--max-with) * 100), 550px);
  min-height: 387px;
}
@media screen and (max-width: 767px) {
  .sec_home-care_01 .box {
    padding: 0;
  }
}
.sec_home-care_01 .box h2 {
  font-size: 2.625em;
  font-weight: 700;
  color: #BF59A0;
  line-height: 1.5;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .sec_home-care_01 .box h2 {
    font-size: 1.5em;
  }
}
.sec_home-care_01 .box h2::before {
  content: attr(data-en);
  display: block;
  font-size: 0.95em;
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: #C09F46;
}
.sec_home-care_01 figure {
  position: absolute;
  width: 39.8vw;
  height: 387px;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .sec_home-care_01 figure {
    position: static;
    width: auto;
    height: 200px;
  }
}
.sec_home-care_01 figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec_home-care_02 .ttl_service_01 {
  font-size: 1.75em;
}
@media screen and (max-width: 767px) {
  .sec_home-care_02 .ttl_service_01 {
    font-size: 1.25em;
  }
}
.sec_home-care_02 section {
  margin-bottom: 60px;
}
.sec_home-care_02 section:first-child .ttl_service_01 {
  position: relative;
}
.sec_home-care_02 section:first-child .ttl_service_01::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 110px;
  background-color: #313131;
  left: clamp(calc(var(--min-with) * (85 / var(--max-with))), calc(85vw / var(--max-with) * 100), 85px);
  bottom: calc(100% + 30px);
}
@media screen and (max-width: 767px) {
  .sec_home-care_02 section:first-child .ttl_service_01::after {
    content: none;
  }
}
.sec_home-care_02 section:last-child {
  margin-bottom: 0;
}

.sec_visit-care-2_01 {
  overflow: hidden;
  position: relative;
}
.sec_visit-care-2_01 .box {
  padding: 30px 45% 100px 0;
}
@media screen and (max-width: 767px) {
  .sec_visit-care-2_01 .box {
    padding: 0;
  }
}
.sec_visit-care-2_01 .box figure {
  position: absolute;
  width: 42.8vw;
  height: 402px;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .sec_visit-care-2_01 .box figure {
    position: static;
    width: auto;
    height: 300px;
  }
}
.sec_visit-care-2_01 .box figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec_mugen_01 {
  overflow: hidden;
}
.sec_mugen_01 .main {
  display: grid;
  grid-template-columns: 52.7% 1fr;
  align-items: center;
  margin-bottom: 105px;
}
@media screen and (max-width: 767px) {
  .sec_mugen_01 .main {
    grid-template-columns: 1fr;
    margin-bottom: 80px;
  }
}
.sec_mugen_01 .main img {
  height: 400px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .sec_mugen_01 .main img {
    height: 250px;
    width: calc(100% + var(--sideW) * 2);
    max-width: 100vw;
    margin-left: calc(var(--sideW) * -1);
  }
}
.sec_mugen_01 .main p {
  position: relative;
  padding: 30px 50px;
  letter-spacing: 0.08em;
  line-height: 1.75;
  background-color: #fff;
  border-radius: 200px 200px 200px 0;
  margin-left: -110px;
}
@media screen and (max-width: 767px) {
  .sec_mugen_01 .main p {
    padding: 20px var(--sideW);
    margin: -30px 0 0;
    border-radius: 15px 15px 15px 0;
    font-size: 0.9375em;
  }
}
.sec_mugen_01 .point {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px clamp(calc(var(--min-with) * (52 / var(--max-with))), calc(52vw / var(--max-with) * 100), 52px);
  margin-bottom: 60px;
}
.sec_mugen_01 .point li {
  position: relative;
}
.sec_mugen_01 .point li::before {
  content: "point";
  display: grid;
  place-content: center;
  position: absolute;
  width: 95px;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 1.5625em;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: #C09F46;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .sec_mugen_01 .point li::before {
    width: 80px;
    font-size: 1.375em;
  }
}
.sec_mugen_01 .point img {
  display: block;
  margin: 0 auto 25px;
}
.sec_mugen_01 .point strong {
  display: block;
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .sec_mugen_01 .point strong {
    font-size: 1.25em;
  }
}
.sec_mugen_01 .point p {
  font-size: 0.9375em;
}

.rehab_slide {
  overflow: visible;
}
.rehab_slide .swiper-wrapper {
  transition-timing-function: linear;
}
.rehab_slide img {
  display: block;
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 10px solid #fff;
  margin: 0 auto 15px;
}
.rehab_slide p {
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .rehab_slide p {
    font-size: 0.9375em;
  }
}

.sec_mugen_02 .time {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 80px;
}
.sec_mugen_02 .time li {
  width: 436px;
  max-width: calc(50% - 12px);
  background-color: #fff;
  padding: 32px 40px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .sec_mugen_02 .time li {
    width: 100%;
    max-width: 100%;
  }
}
.sec_mugen_02 .time li img {
  display: block;
  margin: 0 auto;
}
.sec_mugen_02 .time.bg li {
  background-color: #F6F6F6;
}
.sec_mugen_02 .service_schedule:has(.table_service_01) {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .sec_mugen_02 .service_schedule:has(.table_service_01) {
    padding-bottom: 40px;
  }
}
.sec_mugen_02 .service_schedule:has(.table_service_01) dl {
  margin-bottom: 60px;
}

.service_schedule {
  background-color: #fff;
  padding: 80px clamp(calc(var(--min-with) * (100 / var(--max-with))), calc(100vw / var(--max-with) * 100), 100px) 0;
}
@media screen and (max-width: 767px) {
  .service_schedule {
    padding: 40px var(--sideW) 0;
  }
}
.service_schedule dl {
  display: flex;
  flex-direction: column;
  gap: 40px 30px;
}
.service_schedule dl .item {
  display: grid;
  grid-template-columns: 218px 1fr;
  align-items: center;
  gap: 15px clamp(calc(var(--min-with) * (50 / var(--max-with))), calc(50vw / var(--max-with) * 100), 50px);
}
@media screen and (max-width: 767px) {
  .service_schedule dl .item {
    display: flex;
    flex-direction: column;
  }
}
.service_schedule dl dt {
  display: grid;
  place-content: center;
  aspect-ratio: 1/1;
  background-color: #FDF9EB;
  border-radius: 50%;
  text-align: center;
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .service_schedule dl dt {
    width: 120px;
    font-size: 0.875em;
  }
}
.service_schedule dl strong {
  display: block;
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  border-bottom: 1px dashed #313131;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .service_schedule dl strong {
    font-size: 1.125em;
  }
}
.service_schedule dl p {
  font-size: 0.9375em;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .service_schedule dl p {
    font-size: 0.875em;
  }
}
.service_schedule ul li {
  font-size: 0.9375em;
  line-height: 2;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .service_schedule ul li {
    font-size: 0.875em;
  }
}

.schedule_info {
  background-color: #fff;
  padding: 60px clamp(calc(var(--min-with) * (100 / var(--max-with))), calc(100vw / var(--max-with) * 100), 100px) 80px;
}
@media screen and (max-width: 767px) {
  .schedule_info {
    padding: 0 var(--sideW) 40px;
  }
}

.sec_mugen_03 .service_schedule {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .sec_mugen_03 .service_schedule {
    padding-bottom: 40px;
  }
}

.sec_mugen_04 .ttl_rehab_01 {
  margin-bottom: 75px;
}
.sec_mugen_04 ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px clamp(calc(var(--min-with) * (52 / var(--max-with))), calc(52vw / var(--max-with) * 100), 52px);
  position: relative;
}
.sec_mugen_04 ul::before {
  content: "";
  position: absolute;
  width: 180px;
  aspect-ratio: 180/225;
  background: url(../images/rehab_user_icon_01.svg) no-repeat center/contain;
  bottom: 100%;
  right: clamp(calc(var(--min-with) * (120 / var(--max-with))), calc(120vw / var(--max-with) * 100), 120px);
}
@media screen and (max-width: 767px) {
  .sec_mugen_04 ul::before {
    width: 80px;
    right: auto;
    left: 0;
  }
}
.sec_mugen_04 ul li {
  position: relative;
}
.sec_mugen_04 ul li::before {
  content: "ご利用者：" attr(data-name) "様";
  position: absolute;
  right: -25px;
  top: 0;
  line-height: 66px;
  width: 190px;
  text-align: center;
  background-color: #fff;
  border-radius: 40px 40px 40px 0;
  color: #C09F46;
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.08em;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .sec_mugen_04 ul li::before {
    line-height: 50px;
    width: 180px;
    font-size: 0.9375em;
  }
}
.sec_mugen_04 ul li img {
  display: block;
  margin: 0 auto 25px;
}
.sec_mugen_04 ul li p {
  font-size: 0.9375em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .sec_mugen_04 ul li p {
    font-size: 0.875em;
  }
}

.sec_company_01 {
  margin-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .sec_company_01 {
    margin-bottom: 100px;
  }
}
.sec_company_01 .inner, .sec_company_01 .inner_min {
  display: grid;
  grid-template-columns: 1fr 424px;
  align-items: center;
  gap: 30px 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec_company_01 .inner, .sec_company_01 .inner_min {
    grid-template-columns: 1fr;
  }
}
.sec_company_01 .inner::before, .sec_company_01 .inner_min::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 220px;
  background-color: #313131;
  left: calc(86px + var(--sideW));
  bottom: 0;
  transform: translateY(50%);
}
@media screen and (max-width: 767px) {
  .sec_company_01 .inner::before, .sec_company_01 .inner_min::before {
    height: 100px;
    left: calc(50% - 0.5px);
  }
}
.sec_company_01 .inner h2, .sec_company_01 .inner_min h2 {
  font-size: 2.625em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .sec_company_01 .inner h2, .sec_company_01 .inner_min h2 {
    font-size: 1.5em;
  }
}
.sec_company_01 .inner h2::before, .sec_company_01 .inner_min h2::before {
  content: attr(data-en);
  display: block;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 0.9em;
  line-height: 1.25;
  color: #C09F46;
}
.sec_company_01 .inner .image, .sec_company_01 .inner_min .image {
  height: 610px;
}
@media screen and (max-width: 767px) {
  .sec_company_01 .inner .image, .sec_company_01 .inner_min .image {
    height: 250px;
  }
}
.sec_company_01 .inner .image img, .sec_company_01 .inner_min .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec_company_02 {
  overflow: hidden;
}
.sec_company_02 strong {
  display: block;
  font-size: 2em;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.7;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .sec_company_02 strong {
    font-size: 1.25em;
    text-align: left;
  }
}
.sec_company_02 strong span {
  display: block;
  margin-bottom: 15px;
}
.sec_company_02 strong span:last-child {
  margin-bottom: 0;
}
.sec_company_02 dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 0;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .sec_company_02 dl {
    grid-template-columns: 1fr;
  }
}
.sec_company_02 dl .item {
  border-left: 1px solid #313131;
  padding: 15px 40px;
}
@media screen and (max-width: 767px) {
  .sec_company_02 dl .item {
    padding: 15px var(--sideW);
  }
}
.sec_company_02 dl .item dt {
  display: inline-block;
  padding: 15px 60px 15px 30px;
  background-color: #fff;
  color: #C09F46;
  border-radius: 50px 50px 50px 0;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .sec_company_02 dl .item dt {
    font-size: 1.25em;
    margin-bottom: 15px;
  }
}
.sec_company_02 dl .item dd {
  font-size: 1.125em;
}
@media screen and (max-width: 767px) {
  .sec_company_02 dl .item dd {
    font-size: 0.875em;
  }
}
.sec_company_02 .grid {
  display: grid;
  grid-template-columns: 1fr 50%;
  gap: 20px clamp(calc(var(--min-with) * (62 / var(--max-with))), calc(62vw / var(--max-with) * 100), 62px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec_company_02 .grid {
    grid-template-columns: 1fr;
  }
}
.sec_company_02 .grid .ttl_service_01 {
  margin-bottom: 50px;
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .sec_company_02 .grid .ttl_service_01 {
    margin-bottom: 20px;
    padding-top: 0;
  }
}
.sec_company_02 .grid ul {
  position: relative;
  padding: 30px 35px;
  background-color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .sec_company_02 .grid ul {
    padding: 20px var(--sideW);
  }
}
.sec_company_02 .grid ul::before {
  content: "";
  position: absolute;
  width: 26px;
  aspect-ratio: 26/52;
  background: url(../images/ico_pin.svg) no-repeat center/contain;
  top: -33px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .sec_company_02 .grid ul::before {
    width: 20px;
    top: -25px;
  }
}
.sec_company_02 .grid ul li {
  list-style-type: decimal;
  margin-left: 1.25em;
}
.sec_company_02 .grid .image {
  position: absolute;
  width: 50vw;
  height: 433px;
  left: 50%;
  top: 0;
}
@media screen and (max-width: 767px) {
  .sec_company_02 .grid .image {
    position: static;
    width: auto;
    height: 250px;
  }
}
.sec_company_02 .grid .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero_recruit {
  display: flex;
  align-items: center;
  width: 100%;
  height: calc(100vh - var(--recruitHeaderHeight));
  background: url(../images/hero_recruit.jpg) no-repeat center/cover;
  margin-bottom: 135px;
}
.hero_recruit__title {
  width: 100%;
  font-size: 9.33vw;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}

.hero_recruit_under {
  position: relative;
  padding: 125px 0 100px;
  margin: 45px 0 70px;
}
@media screen and (max-width: 767px) {
  .hero_recruit_under {
    padding: 0;
    margin-top: 0;
  }
}
.hero_recruit_under > img {
  position: absolute;
  width: 75%;
  height: 100%;
  top: 0;
  right: 0;
  object-fit: cover;
  border-radius: 80px 0 0 0;
}
@media screen and (max-width: 767px) {
  .hero_recruit_under > img {
    display: block;
    position: static;
    width: 95%;
    height: auto;
    aspect-ratio: 3/2;
    margin-left: auto;
  }
}
.hero_recruit_under .inner, .hero_recruit_under .inner_min {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .hero_recruit_under .inner, .hero_recruit_under .inner_min {
    margin-top: -40px;
  }
}
.hero_recruit_under h1 {
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .hero_recruit_under h1 {
    font-size: 1.125em;
    margin-bottom: 25px;
  }
}
.hero_recruit_under h1::before {
  content: attr(data-en);
  display: block;
  font-size: 3em;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .hero_recruit_under h1::before {
    font-size: 2em;
  }
}
.hero_recruit_under p {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 2em;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .hero_recruit_under p {
    font-size: 1.5em;
    gap: 5px;
  }
}
.hero_recruit_under p span {
  position: relative;
  padding: 5px 20px 5px 0;
}
@media screen and (max-width: 767px) {
  .hero_recruit_under p span {
    padding-right: 10px;
  }
}
.hero_recruit_under p span::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  background-color: #DAB84B;
  right: 0;
  top: 0;
  z-index: -1;
}

.hero_recruit_single {
  position: relative;
  height: 554px;
  margin: 210px 0 100px;
}
@media screen and (max-width: 767px) {
  .hero_recruit_single {
    margin: 0 0 80px;
    height: calc(100vh - var(--recruitHeaderHeight) - 80px);
  }
}
.hero_recruit_single img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.hero_recruit_single .inner, .hero_recruit_single .inner_min {
  display: grid;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .hero_recruit_single .inner, .hero_recruit_single .inner_min {
    position: relative;
    align-content: end;
    padding-bottom: 40px;
  }
}
.hero_recruit_single .text {
  position: relative;
  width: 400px;
  max-width: 100%;
  padding: 40px 15px 40px 45px;
  background-color: #fff;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .hero_recruit_single .text {
    width: 100%;
    padding: 20px;
  }
}
.hero_recruit_single .text::before {
  content: "";
  position: absolute;
  width: 11px;
  height: calc(100% - 80px);
  left: 0;
  top: 40px;
  background-color: #BF59A0;
}
@media screen and (max-width: 767px) {
  .hero_recruit_single .text::before {
    top: 20px;
    width: 8px;
  }
}
.hero_recruit_single .text .post {
  font-size: 1.125em;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .hero_recruit_single .text .post {
    font-size: 1em;
  }
}
.hero_recruit_single .text .name {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .hero_recruit_single .text .name {
    font-size: 1.375em;
  }
}
.hero_recruit_single .text .year {
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .hero_recruit_single .text .year {
    font-size: 0.875em;
  }
}
.hero_recruit_single h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: absolute;
  right: var(--sideW);
  top: -75px;
  font-size: 2.25em;
  font-weight: 700;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .hero_recruit_single h2 {
    position: static;
    font-size: 1.25em;
    writing-mode: horizontal-tb;
    letter-spacing: 0.08em;
    margin-bottom: 15px;
  }
}
.hero_recruit_single h2 span {
  line-height: 104px;
  background-color: #DAB84B;
  color: #fff;
  padding: 13px 0;
}
@media screen and (max-width: 767px) {
  .hero_recruit_single h2 span {
    line-height: 1.5;
    padding: 5px 10px;
  }
}

.sec_recruit_01 {
  overflow: hidden;
  padding-bottom: 150px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .sec_recruit_01 {
    padding-bottom: 0;
    margin-bottom: var(--space);
  }
}
.sec_recruit_01 .inner, .sec_recruit_01 .inner_min {
  display: grid;
  grid-template-columns: 1fr 540px;
  gap: 51px;
}
@media screen and (max-width: 767px) {
  .sec_recruit_01 .inner, .sec_recruit_01 .inner_min {
    grid-template-columns: 1fr;
  }
}
.sec_recruit_01 .inner .image, .sec_recruit_01 .inner_min .image {
  position: relative;
  padding-bottom: 65px;
}
@media screen and (max-width: 767px) {
  .sec_recruit_01 .inner .image, .sec_recruit_01 .inner_min .image {
    padding-bottom: 0;
  }
}
.sec_recruit_01 .inner .image img, .sec_recruit_01 .inner_min .image img {
  display: block;
}
.sec_recruit_01 .inner .image img:first-child, .sec_recruit_01 .inner_min .image img:first-child {
  width: 44.6%;
  height: 445px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .sec_recruit_01 .inner .image img:first-child, .sec_recruit_01 .inner_min .image img:first-child {
    height: auto;
    aspect-ratio: 294/445;
  }
}
.sec_recruit_01 .inner .image img:nth-child(2), .sec_recruit_01 .inner_min .image img:nth-child(2) {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 67.6%;
  height: 308px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .sec_recruit_01 .inner .image img:nth-child(2), .sec_recruit_01 .inner_min .image img:nth-child(2) {
    position: static;
    height: auto;
    aspect-ratio: 445/308;
    margin: -110px 0 0 auto;
  }
}
.sec_recruit_01 .inner .text p, .sec_recruit_01 .inner_min .text p {
  position: relative;
}
.sec_recruit_01 .inner .text p::after, .sec_recruit_01 .inner_min .text p::after {
  content: "";
  position: absolute;
  width: 962px;
  aspect-ratio: 962/373;
  background: url(../images/recruit_lead_icon.svg) no-repeat center/contain;
  top: 80%;
  left: 50%;
  transform: translateX(-55%);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .sec_recruit_01 .inner .text p::after, .sec_recruit_01 .inner_min .text p::after {
    display: none;
  }
}

.sec_recruit_02 {
  padding: 100px 0 110px;
}
@media screen and (max-width: 767px) {
  .sec_recruit_02 {
    padding: 60px 0;
  }
}
.sec_recruit_02::after {
  content: "";
  position: absolute;
  width: 48%;
  height: 100%;
  background: url(../images/recruit_grad_01.jpg) no-repeat center/cover;
  top: 0;
  left: 0;
}
.sec_recruit_02 .inner, .sec_recruit_02 .inner_min {
  position: relative;
  z-index: 1;
}
.sec_recruit_02 .ttl_recruit_01 {
  position: relative;
  margin-bottom: 0;
  z-index: 1;
}
.sec_recruit_02 ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  position: relative;
  margin-left: clamp(calc(var(--min-with) * (100 / var(--max-with))), calc(100vw / var(--max-with) * 100), 100px);
  background-color: #fff;
  margin-top: -40px;
  padding: 100px 0 80px 55px;
  counter-reset: num;
}
@media screen and (max-width: 767px) {
  .sec_recruit_02 ul {
    grid-template-columns: 1fr;
    margin-left: var(--sideW);
    padding: 80px 0 80px var(--sideW);
  }
}
.sec_recruit_02 ul::after {
  content: "";
  position: absolute;
  width: 252px;
  aspect-ratio: 252/331;
  background: url(../images/recruit_env_icon.svg) no-repeat center/contain;
  top: calc(100% - 90px);
  right: 0;
}
@media screen and (max-width: 767px) {
  .sec_recruit_02 ul::after {
    width: 120px;
  }
}
.sec_recruit_02 ul li {
  display: grid;
  grid-template-columns: 154px 1fr;
  align-items: center;
  gap: 15px clamp(calc(var(--min-with) * (40 / var(--max-with))), calc(40vw / var(--max-with) * 100), 40px);
}
@media screen and (max-width: 767px) {
  .sec_recruit_02 ul li {
    grid-template-columns: 1fr;
  }
}
.sec_recruit_02 ul li .image {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.sec_recruit_02 ul li .image::after {
  counter-increment: num;
  content: counter(num, decimal-leading-zero);
  position: absolute;
  font-size: 4.375em;
  font-weight: 200;
  letter-spacing: 0.04em;
  color: #BF59A0;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  left: 90px;
  bottom: -20px;
}
@media screen and (max-width: 767px) {
  .sec_recruit_02 ul li .image::after {
    left: auto;
    right: 0;
  }
}
.sec_recruit_02 ul li .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.sec_recruit_02 ul li h3 {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 5px;
}
.sec_recruit_02 ul li p {
  font-size: 0.9375em;
}
.sec_recruit_02 .btn_recruit {
  margin-top: -45px;
}

.sec_recruit_03 .inner, .sec_recruit_03 .inner_min {
  display: grid;
  grid-template-columns: 436px 1fr;
  gap: 30px clamp(calc(var(--min-with) * (84 / var(--max-with))), calc(84vw / var(--max-with) * 100), 84px);
}
@media screen and (max-width: 767px) {
  .sec_recruit_03 .inner, .sec_recruit_03 .inner_min {
    grid-template-columns: 1fr;
  }
}
.sec_recruit_03 .text h2 {
  position: relative;
  padding-top: 230px;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 50px;
  background: url(../images/recruit_jog_icon.svg) no-repeat top left/399px auto;
}
@media screen and (max-width: 767px) {
  .sec_recruit_03 .text h2 {
    background-position: center top;
    background-size: auto 150px;
    padding-top: 160px;
    text-align: center;
    margin-bottom: 25px;
  }
}
.sec_recruit_03 .text h2::before {
  content: attr(data-en);
  display: block;
  font-size: 3em;
  font-weight: 700;
  line-height: 1;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.04em;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .sec_recruit_03 .text h2::before {
    font-size: 2em;
  }
}
.sec_recruit_03 .text p {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .sec_recruit_03 .text p {
    font-size: 1.375em;
  }
}
.sec_recruit_03 .text p span {
  padding: 13px 22px;
  background: url(../images/recruit_grad_01.jpg) no-repeat center/cover;
}
.sec_recruit_03 ul li {
  border-bottom: 1px solid #313131;
}
.sec_recruit_03 ul li:first-child {
  border-top: 1px solid #313131;
}
.sec_recruit_03 ul li a {
  display: block;
  position: relative;
  padding: 25px 40px 25px 0;
}
@media screen and (max-width: 767px) {
  .sec_recruit_03 ul li a {
    padding: 20px 30px 20px 0;
  }
}
.sec_recruit_03 ul li a:hover::after {
  transform: rotateX(180deg);
}
.sec_recruit_03 ul li a::after {
  content: "";
  position: absolute;
  width: 32px;
  aspect-ratio: 1/1;
  mask: url(../images/ico_arrow_right.svg) no-repeat center/contain;
  background-color: #BF59A0;
  right: 0;
  top: calc(50% - 16px);
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .sec_recruit_03 ul li a::after {
    width: 20px;
  }
}
.sec_recruit_03 ul li a h3 {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 3px;
}
@media screen and (max-width: 767px) {
  .sec_recruit_03 ul li a h3 {
    font-size: 1.25em;
  }
}
@media screen and (max-width: 767px) {
  .sec_recruit_03 ul li a p {
    font-size: 0.875em;
  }
}
.sec_recruit_03 .btn_recruit {
  display: inline-block;
  width: auto;
  padding-right: 60px;
}

.ttl_staff_01 {
  text-align: center;
  font-size: 2.625em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.25;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .ttl_staff_01 {
    font-size: 1.875em;
  }
}
.ttl_staff_01::before {
  content: "";
  display: block;
  width: 154px;
  aspect-ratio: 1/1;
  background: url(../images/recruit_voice_icon.svg) no-repeat center/contain;
  margin: 0 auto 10px;
}
@media screen and (max-width: 767px) {
  .ttl_staff_01::before {
    width: 120px;
  }
}

.sec_staff_slider {
  overflow: hidden;
  padding-bottom: 20px;
}
.sec_staff_slider .swiper {
  overflow: visible;
}

.sec_faq h2 {
  position: relative;
  font-size: 2.625em;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .sec_faq h2 {
    font-size: 1.5em;
  }
}
.sec_faq h2::before {
  content: "";
  display: block;
  width: 60px;
  aspect-ratio: 60/72;
  background: url(../images/ico_faq.svg) no-repeat center/contain;
  margin: 0 auto 10px;
}
@media screen and (max-width: 767px) {
  .sec_faq h2::before {
    width: 45px;
  }
}
.sec_faq .faq {
  margin-bottom: 30px;
}
.sec_faq .faq:last-child {
  margin-bottom: 0;
}
.sec_faq .faq[open] summary::after {
  transform: rotate(-90deg);
}
.sec_faq .faq summary {
  position: relative;
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  padding: 18px 55px 18px 85px;
  background-color: #DAB84C;
  color: #fff;
  list-style: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .sec_faq .faq summary {
    font-size: 1em;
    padding: 18px 35px 18px 45px;
  }
}
.sec_faq .faq summary::-webkit-details-marker {
  display: none;
}
.sec_faq .faq summary::before {
  content: "Q.";
  position: absolute;
  left: 23px;
  top: 12px;
  font-size: 4rem;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .sec_faq .faq summary::before {
    font-size: 2.5rem;
    left: 10px;
    top: 17px;
  }
}
.sec_faq .faq summary::after {
  content: "";
  position: absolute;
  width: 33px;
  aspect-ratio: 1/1;
  mask: url(../images/ico_arrow_right.svg) no-repeat center/contain;
  background-color: #fff;
  right: 20px;
  top: 17px;
  transform: rotate(90deg);
}
@media screen and (max-width: 767px) {
  .sec_faq .faq summary::after {
    width: 20px;
    right: 10px;
    top: 21px;
  }
}
.sec_faq .faq__answer {
  position: relative;
  padding: 23px 75px 0 85px;
}
@media screen and (max-width: 767px) {
  .sec_faq .faq__answer {
    padding: 25px 15px 0 45px;
    font-size: 0.875em;
  }
}
.sec_faq .faq__answer::before {
  content: "A.";
  position: absolute;
  left: 23px;
  top: 18px;
  font-size: 4rem;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.04em;
  font-weight: 700;
  line-height: 1;
  color: #BF59A0;
}
@media screen and (max-width: 767px) {
  .sec_faq .faq__answer::before {
    left: 10px;
    top: 23px;
    font-size: 2.5rem;
  }
}
.sec_faq .faq a {
  text-decoration: underline;
}
.sec_faq .faq a:hover {
  text-decoration: none;
}

.sec_entry__box {
  background: url(../images/recruit_grad_03.jpg) no-repeat center/cover;
  padding: 45px 55px 68px;
}
@media screen and (max-width: 767px) {
  .sec_entry__box {
    padding: 45px var(--sideW) 50px;
  }
}
.sec_entry__box h2 {
  position: relative;
  font-size: 1.375em;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .sec_entry__box h2 {
    font-size: 1.25em;
  }
}
.sec_entry__box h2::before {
  content: "JOIN US";
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 5em;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  line-height: 0.9;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .sec_entry__box h2::before {
    font-size: 3em;
  }
}

.sec_env_01 .ttl_recruit_01 {
  margin-bottom: 80px;
}
.sec_env_01 ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 77px clamp(calc(var(--min-with) * (52 / var(--max-with))), calc(52vw / var(--max-with) * 100), 52px);
}
.sec_env_01 ul li {
  position: relative;
}
.sec_env_01 ul li::before {
  content: "point";
  display: grid;
  place-content: center;
  position: absolute;
  width: 95px;
  aspect-ratio: 1/1;
  background-color: #DAB84B;
  border-radius: 50%;
  text-align: center;
  font-size: 1.5625em;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: #fff;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .sec_env_01 ul li::before {
    width: 80px;
    font-size: 1.375em;
  }
}
.sec_env_01 ul img {
  display: block;
  margin: 0 auto 30px;
  background-color: #F6F6F6;
  border-radius: 10px;
}
.sec_env_01 ul h3 {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .sec_env_01 ul h3 {
    font-size: 1.25em;
  }
}
.sec_env_01 ul p {
  font-size: 0.9375em;
}

.sec_env_02 .inner, .sec_env_02 .inner_min {
  display: grid;
  grid-template-columns: 58.7% 1fr;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .sec_env_02 .inner, .sec_env_02 .inner_min {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
.sec_env_02 .inner .image img, .sec_env_02 .inner_min .image img {
  display: block;
  height: 473px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .sec_env_02 .inner .image img, .sec_env_02 .inner_min .image img {
    height: auto;
    aspect-ratio: 711/473;
  }
}
.sec_env_02 .inner .text, .sec_env_02 .inner_min .text {
  transform: translateX(-120px);
}
@media screen and (max-width: 767px) {
  .sec_env_02 .inner .text, .sec_env_02 .inner_min .text {
    transform: none;
  }
}
.sec_env_02 .inner .text h2, .sec_env_02 .inner_min .text h2 {
  font-size: 3.125em;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .sec_env_02 .inner .text h2, .sec_env_02 .inner_min .text h2 {
    font-size: 1.5em;
  }
}
@media screen and (max-width: 767px) {
  .sec_env_02 .inner .text p, .sec_env_02 .inner_min .text p {
    font-size: 0.875em;
  }
}

.sec_job_01 {
  overflow: hidden;
}

.nav_job {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 40px;
  padding: 30px 60px;
  border: 13px solid #F6F6F6;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .nav_job {
    gap: 15px;
    padding: 15px var(--sideW);
    border-width: 6px;
    margin-bottom: 80px;
  }
}
.nav_job a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.375em;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .nav_job a {
    font-size: 1em;
  }
}
.nav_job a:hover {
  text-decoration: underline;
}
.nav_job a:hover::after {
  background-color: #DAB84B;
}
.nav_job a::after {
  content: "";
  display: block;
  width: 33px;
  aspect-ratio: 1/1;
  mask: url(../images/ico_arrow_right.svg) no-repeat center/contain;
  background-color: #BF59A0;
  transform: rotate(90deg);
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .nav_job a::after {
    width: 20px;
  }
}

.job_detail {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .job_detail {
    margin-bottom: 60px;
  }
}
.job_detail .title {
  margin-bottom: 50px;
  padding: 20px 0 30px 45px;
  border-left: 13px solid #BF59A0;
}
@media screen and (max-width: 767px) {
  .job_detail .title {
    margin-bottom: 30px;
    padding: 15px 0 20px 15px;
    border-left-width: 6px;
  }
}
.job_detail .title h2 {
  font-size: 2.25em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .job_detail .title h2 {
    font-size: 1.375em;
  }
}
.job_detail .title p {
  font-size: 0.875em;
}
.job_detail .detail {
  position: relative;
  padding: 55px 0;
}
@media screen and (max-width: 767px) {
  .job_detail .detail {
    padding: 0;
  }
}
.job_detail .detail .image {
  position: absolute;
  top: 0;
  right: 37.5%;
  width: max(61vw, 730px);
  height: 100%;
}
@media screen and (max-width: 767px) {
  .job_detail .detail .image {
    position: static;
    width: 100vw;
    margin-left: calc(var(--sideW) * -1);
  }
}
.job_detail .detail .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.job_detail .detail .text {
  position: relative;
  background-color: #fff;
  padding: 55px 0 55px clamp(calc(var(--min-with) * (80 / var(--max-with))), calc(80vw / var(--max-with) * 100), 80px);
  z-index: 1;
  width: 650px;
  max-width: 100%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .job_detail .detail .text {
    padding: 25px 0 0;
  }
}
.job_detail .detail .text ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .job_detail .detail .text ul {
    gap: 5px;
    margin-bottom: 20px;
  }
}
.job_detail .detail .text ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #F6F6F6;
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  border-radius: 60px;
  padding: 15px 25px;
}
@media screen and (max-width: 767px) {
  .job_detail .detail .text ul li {
    font-size: 1em;
    padding: 10px 15px;
  }
}
.job_detail .detail .text ul li::before {
  content: "";
  display: block;
  width: 28px;
  aspect-ratio: 28/26;
  background: url(../images/ico_job_list.svg) no-repeat center/contain;
  flex-shrink: 0;
}
.job_detail .detail .text p {
  font-size: 0.9375em;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .job_detail .detail .text p {
    font-size: 0.875em;
  }
}

.jobs_list {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .jobs_list {
    margin-bottom: 20px;
  }
}
.jobs_list[open] summary::after {
  transform: rotate(-90deg);
}
.jobs_list summary {
  position: relative;
  font-size: 2em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  padding: 20px 40px;
  background: url(../images/recruit_grad_02.jpg) no-repeat center/cover;
  list-style: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .jobs_list summary {
    font-size: 1em;
    padding: 15px 40px 15px 15px;
  }
}
.jobs_list summary::-webkit-details-marker {
  display: none;
}
.jobs_list summary::after {
  content: "";
  position: absolute;
  width: 33px;
  aspect-ratio: 1/1;
  mask: url(../images/ico_arrow_right.svg) no-repeat center/contain;
  background-color: #313131;
  right: 25px;
  top: 28px;
  transform: rotate(90deg);
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .jobs_list summary::after {
    width: 20px;
    top: 20px;
    right: 10px;
  }
}
.jobs_list__contents {
  padding: 40px 0 30px;
}
.jobs_list__contents .point {
  display: grid;
  margin-bottom: 60px;
}
.jobs_list__contents .point:has(img) {
  grid-template-columns: 1fr 1fr;
  gap: 25px clamp(calc(var(--min-with) * (40 / var(--max-with))), calc(40vw / var(--max-with) * 100), 40px);
}
@media screen and (max-width: 767px) {
  .jobs_list__contents .point:has(img) {
    grid-template-columns: 1fr;
  }
}
.jobs_list__contents .point p {
  font-size: 0.9375em;
}
@media screen and (max-width: 767px) {
  .jobs_list__contents .point p {
    font-size: 0.875em;
  }
}
.jobs_list__contents h2 {
  font-size: 1.75em;
  font-weight: 700;
  line-height: 1.5;
  padding: 15px 0 15px 16px;
  border-left: 11px solid #BF59A0;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .jobs_list__contents h2 {
    font-size: 1.25em;
  }
}

.map {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 410px;
}
@media screen and (max-width: 767px) {
  .map {
    height: auto;
    aspect-ratio: 1/1;
  }
}
.map > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ttl_cmn_01 {
  display: block;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.08em;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_01 {
    font-size: 1em;
    margin-bottom: 40px;
  }
}
.ttl_cmn_01:last-child {
  margin-bottom: 0;
}
.ttl_cmn_01::before {
  content: attr(data-en);
  display: block;
  font-size: 2.8em;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.25;
}
.ttl_cmn_01.icon {
  position: relative;
  z-index: 1;
  margin-bottom: 65px;
}
.ttl_cmn_01.icon::after {
  content: "";
  position: absolute;
  width: 239px;
  aspect-ratio: 230/158;
  background: url(../images/ttl_icon_01.svg) no-repeat center/contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.ttl_cmn_01.left {
  text-align: left;
}
.ttl_cmn_01.white {
  color: #fff;
}

.ttl_service_01 {
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 22px;
}
@media screen and (max-width: 767px) {
  .ttl_service_01 {
    font-size: 1.125em;
  }
}
.ttl_service_01::before {
  content: "●";
  display: inline-block;
  margin-right: 0.5em;
  font-size: 0.9em;
  color: #BF59A0;
  font-weight: 500;
}
.ttl_service_01--yellow::before {
  color: #C09F46;
}
.ttl_service_01--blue::before {
  color: #6395BA;
}
.ttl_service_01.fs_lg {
  font-size: 1.75em;
}
@media screen and (max-width: 767px) {
  .ttl_service_01.fs_lg {
    font-size: 1.25em;
  }
}
.ttl_service_01.mb_lg {
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .ttl_service_01.mb_lg {
    margin-bottom: 60px;
  }
}

.ttl_service_02 {
  display: block;
  position: relative;
  text-align: center;
  font-size: 2.25em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #BF59A0;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .ttl_service_02 {
    font-size: 1.5em;
  }
}
.ttl_service_02::after {
  content: "";
  display: block;
  width: 85px;
  aspect-ratio: 85/22;
  mask: url(../images/ttl_service_icon_01.svg) no-repeat center/contain;
  background-color: #BF59A0;
  margin: 20px auto 0;
}
.ttl_service_02.mb_lg {
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .ttl_service_02.mb_lg {
    margin-bottom: 60px;
  }
}
.ttl_service_02--blue {
  color: #6395BA;
}
.ttl_service_02--blue::after {
  background-color: #6395BA;
}
.ttl_service_02--yellow {
  color: #C09F46;
}
.ttl_service_02--yellow::after {
  background-color: #C09F46;
}

.ttl_service_03 {
  display: block;
  font-size: 1.75em;
  color: #C09F46;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .ttl_service_03 {
    font-size: 1.125em;
  }
}
.ttl_service_03 span {
  display: inline-block;
  padding: 18px 60px 18px 30px;
  border-radius: 100px 100px 100px 0;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .ttl_service_03 span {
    padding: 15px;
  }
}
.ttl_service_03--pink {
  color: #BF59A0;
}

.ttl_rehab_01 {
  display: block;
  text-align: center;
  font-size: 2.25em;
  font-weight: 700;
  line-height: 1.5;
  color: #C09F46;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .ttl_rehab_01 {
    font-size: 1.5em;
  }
}
.ttl_rehab_01::before {
  content: "";
  display: block;
  width: 62px;
  aspect-ratio: 62/58;
  background: url(../images/rehab_ttl_icon_01.svg) no-repeat center/contain;
  margin: 0 auto 10px;
}
@media screen and (max-width: 767px) {
  .ttl_rehab_01::before {
    width: 50px;
  }
}

.ttl_recruit_01 {
  display: block;
  font-size: 4.375em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.28;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .ttl_recruit_01 {
    font-size: 2.25em;
  }
}
.ttl_recruit_01 span {
  color: #BF59A0;
}
.ttl_recruit_01 span.en {
  font-size: 1.57em;
  font-family: "Outfit", sans-serif;
  line-height: 0.8;
}

.list_staff {
  margin-bottom: 50px;
}
.list_staff:not(.swiper-wrapper) {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 60px clamp(calc(var(--min-with) * (60 / var(--max-with))), calc(60vw / var(--max-with) * 100), 60px);
}
.list_staff a {
  display: block;
  position: relative;
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .list_staff a {
    padding-top: 30px;
  }
}
.list_staff a:hover img, .list_staff a:hover strong {
  filter: drop-shadow(0 10px 10px rgba(49, 49, 49, 0.5));
  transform: translateY(-3px);
}
.list_staff a img {
  display: block;
  aspect-ratio: 366/492;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 60px 60px 0 60px;
  margin-bottom: 25px;
  transition: 0.5s;
}
.list_staff a strong {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: absolute;
  right: 23px;
  top: 0;
  font-size: 1.75em;
  font-weight: 700;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .list_staff a strong {
    font-size: 1.375em;
  }
}
.list_staff a strong span {
  line-height: 65px;
  background: url(../images/recruit_grad_02.jpg) no-repeat center/cover;
  padding: 9px 0;
}
@media screen and (max-width: 767px) {
  .list_staff a strong span {
    line-height: 50px;
  }
}
.list_staff a p {
  position: relative;
  letter-spacing: 0.08em;
  font-weight: 500;
  line-height: 1.5;
  padding-right: 60px;
}
@media screen and (max-width: 767px) {
  .list_staff a p {
    font-size: 0.875em;
  }
}
.list_staff a p::before {
  content: "";
  position: absolute;
  width: 54px;
  aspect-ratio: 1/1;
  background: url(../images/ico_arrow_right_circle.svg) no-repeat center/contain;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .list_staff a p::before {
    width: 40px;
  }
}
.list_staff a p span {
  display: block;
  font-size: 1.5em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .list_staff a p span {
    font-size: 1.375em;
  }
}

.list_btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .list_btns {
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .list_btns li {
    width: 100%;
  }
}
.list_btns--left {
  justify-content: left;
}

.dlist_sdgs {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .dlist_sdgs {
    margin-bottom: 40px;
  }
}
.dlist_sdgs:last-child {
  margin-bottom: 0;
}
.dlist_sdgs .item {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 20px clamp(calc(var(--min-with) * (42 / var(--max-with))), calc(42vw / var(--max-with) * 100), 42px);
  padding: 30px 0;
  border-bottom: 1px solid #313131;
}
@media screen and (max-width: 767px) {
  .dlist_sdgs .item {
    grid-template-columns: 1fr;
    padding: 15px;
  }
}
.dlist_sdgs .item .ttl_service_03 {
  grid-column: 1/-1;
}
.dlist_sdgs .item dt {
  display: flex;
  justify-content: center;
  gap: 15px 10px;
}
@media screen and (max-width: 767px) {
  .dlist_sdgs .item dt {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}
.dlist_sdgs .item dt figure {
  width: calc(33.3333% - 6.6666666667px);
}
@media screen and (max-width: 767px) {
  .dlist_sdgs .item dt figure {
    width: auto;
  }
}
.dlist_sdgs .item dt figcaption {
  font-size: 0.875em;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
.dlist_sdgs .item img {
  display: block;
  margin: 0 auto 5px;
}
.dlist_sdgs .item dd strong {
  display: block;
  font-size: 1.25em;
  font-weight: 700;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .dlist_sdgs .item dd strong {
    font-size: 1.125em;
  }
}
@media screen and (max-width: 767px) {
  .dlist_sdgs .item dd p {
    font-size: 0.875em;
  }
}

.table_parent {
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .table_parent {
    white-space: nowrap;
    margin-bottom: 20px;
  }
}
.table_parent:last-child {
  margin-bottom: 0;
}

.table_service_01 {
  width: 100%;
  line-height: 1.5;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .table_service_01 {
    font-size: 0.875em;
  }
}
.table_service_01 thead th {
  background-color: #C09F46;
  color: #fff;
  text-align: center;
  padding: 10px 12px;
}
.table_service_01 thead th:nth-child(n+2) {
  border-left: 4px solid #fff;
}
.table_service_01 tbody th, .table_service_01 tbody td {
  text-align: center;
  padding: 10px 12px;
  border-top: 4px solid #fff;
}
.table_service_01 tbody th {
  background-color: #EDE7D3;
  font-weight: 400;
}
.table_service_01 tbody td {
  background-color: #F7F7F7;
  border-left: 4px solid #fff;
}
.table_service_01--bold tbody td {
  font-weight: 700;
  color: #C09F46;
}

.table_company {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .table_company {
    display: block;
  }
  .table_company thead, .table_company tbody, .table_company tr, .table_company th, .table_company td {
    display: block;
    width: 100%;
  }
}
.table_company th, .table_company td {
  padding: 23px 0;
  border-bottom: 1px solid #313131;
}
@media screen and (max-width: 767px) {
  .table_company th, .table_company td {
    font-size: 0.9375em;
    padding: 5px 0 15px;
  }
}
.table_company th {
  width: 170px;
  font-size: 1.125em;
  font-weight: 500;
  letter-spacing: 0.08em;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .table_company th {
    width: 100%;
    padding: 15px 0 0;
    font-size: 1em;
    border-bottom: none;
  }
}
.table_company td span {
  display: block;
  margin-bottom: 15px;
}
.table_company td span:last-of-type {
  margin-bottom: 0;
}
.table_company .btn_cmn_02 {
  margin-top: 15px;
}

.btn_cmn_01 {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  width: 290px;
  line-height: 85px;
  max-width: 100%;
  padding: 0 35px;
  font-weight: 500;
  font-size: 1.25em;
  letter-spacing: 0.08em;
  background-color: #fff;
  border-radius: 50px 50px 10px 50px;
  border: 1px solid #313131;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .btn_cmn_01 {
    width: 275px;
    font-size: 1.125em;
  }
}
.btn_cmn_01:hover {
  box-shadow: 0 10px 10px rgba(49, 49, 49, 0.3);
  transform: translateY(-3px);
}
.btn_cmn_01::before {
  content: "";
  position: absolute;
  width: 21px;
  aspect-ratio: 1/1;
  background: url(../images/ico_arrow_right.svg) no-repeat center/contain;
  top: calc(50% - 7.5px);
  right: 14px;
}
@media screen and (max-width: 767px) {
  .btn_cmn_01::before {
    width: 15px;
  }
}
.btn_cmn_01::after {
  content: attr(data-en);
  display: block;
  font-size: 0.65em;
  letter-spacing: 0.08em;
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  color: #C09F46;
}
.btn_cmn_01--center {
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .btn_cmn_01--sp-center {
    margin-inline: auto;
  }
}
.btn_cmn_01--pink::before {
  mask: url(../images/ico_arrow_right.svg) no-repeat center/contain;
  background-color: #BF59A0;
}
.btn_cmn_01--pink:after {
  color: #BF59A0;
}

.btn_cmn_02 {
  display: inline-block;
  position: relative;
  min-width: 280px;
  max-width: 100%;
  padding: 18px 50px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.08em;
  background-color: #BF59A0;
  color: #fff;
  text-align: center;
  border-radius: 50px 50px 10px 50px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .btn_cmn_02 {
    width: 275px;
  }
}
.btn_cmn_02:hover {
  box-shadow: 0 10px 10px rgba(49, 49, 49, 0.3);
  transform: translateY(-3px);
}
.btn_cmn_02::after {
  content: "";
  position: absolute;
  width: 21px;
  aspect-ratio: 1/1;
  mask: url(../images/ico_arrow_right.svg) no-repeat center/contain;
  background-color: #fff;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .btn_cmn_02::after {
    width: 15px;
  }
}
.btn_cmn_02:last-child {
  margin-bottom: 0;
}
.btn_cmn_02--lg {
  display: block;
  width: 390px;
  padding-block: 30px;
  font-size: 1.25em;
}
@media screen and (max-width: 767px) {
  .btn_cmn_02--lg {
    width: 300px;
    padding-block: 20px;
    font-size: 0.9375em;
  }
}
.btn_cmn_02--center {
  display: block;
  width: 280px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .btn_cmn_02--center {
    width: 275px;
  }
}
.btn_cmn_02--yellow {
  background-color: #C09F46;
}
.btn_cmn_02--blue {
  background-color: #6395BA;
}
.btn_cmn_02--white {
  width: 474px;
  padding-block: 25px;
  background-color: #fff;
  font-weight: 700;
  font-size: 1.375em;
  color: #313131;
}
@media screen and (max-width: 767px) {
  .btn_cmn_02--white {
    width: 100%;
    padding-block: 20px;
    font-size: 0.9375em;
  }
}
.btn_cmn_02--white::after {
  width: 44px;
  background-color: #313131;
}
@media screen and (max-width: 767px) {
  .btn_cmn_02--white::after {
    width: 30px;
  }
}
.btn_cmn_02--line {
  width: 474px;
  padding-block: 25px;
  background-color: #4CAF50;
  font-weight: 700;
  font-size: 1.375em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .btn_cmn_02--line {
    width: 100%;
    padding-block: 20px;
    font-size: 0.9375em;
  }
}
.btn_cmn_02--line::after {
  width: 49px;
  mask-image: url(../images/ico_line_white.svg);
}
@media screen and (max-width: 767px) {
  .btn_cmn_02--line::after {
    width: 30px;
  }
}
.btn_cmn_02.ico_map {
  width: 225px;
  font-size: 0.9375em;
  padding-block: 15px;
}
.btn_cmn_02.ico_map::after {
  width: 18px;
  aspect-ratio: 18/24;
  mask-image: url(../images/ico_gmap.svg);
}
.btn_cmn_02.mb_lg {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .btn_cmn_02.mb_lg {
    margin-bottom: 40px;
  }
}

.btn_cmn_03 {
  display: block;
  position: relative;
  width: 390px;
  max-width: 100%;
  padding: 25px 50px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.08em;
  background-color: #BF59A0;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  margin: 0 auto 50px;
}
.btn_cmn_03:last-child {
  margin-bottom: 0;
}
.btn_cmn_03:hover {
  box-shadow: 0 10px 10px rgba(49, 49, 49, 0.3);
  transform: translateY(-3px);
}
.btn_cmn_03::after {
  content: "";
  position: absolute;
  width: 21px;
  aspect-ratio: 1/1;
  mask: url(../images/ico_arrow_right.svg) no-repeat center/contain;
  background-color: #fff;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .btn_cmn_03::after {
    right: 10px;
  }
}
.btn_cmn_03:last-child {
  margin-bottom: 0;
}
.btn_cmn_03--yellow {
  background-color: #C09F46;
}
.btn_cmn_03--blue {
  background-color: #6395BA;
}

.btn_recruit {
  display: block;
  position: relative;
  width: 280px;
  max-width: 100%;
  padding: 0 40px;
  line-height: 60px;
  font-weight: 500;
  letter-spacing: 0.08em;
  background-color: #DAB84B;
  color: #fff;
  text-align: center;
  border-radius: 50px 50px 10px 50px;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .btn_recruit {
    width: 275px;
  }
}
.btn_recruit:hover {
  box-shadow: 0 10px 10px rgba(49, 49, 49, 0.3);
  transform: translateY(-3px);
}
.btn_recruit::after {
  content: "";
  position: absolute;
  width: 21px;
  aspect-ratio: 1/1;
  mask: url(../images/ico_arrow_right.svg) no-repeat center/contain;
  background-color: #fff;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .btn_recruit::after {
    width: 15px;
  }
}
.btn_recruit:last-child {
  margin-bottom: 0;
}
.btn_recruit--lg {
  width: 390px;
  line-height: 90px;
  font-size: 1.25em;
}
@media screen and (max-width: 767px) {
  .btn_recruit--lg {
    width: 300px;
    line-height: 60px;
    font-size: 0.9375em;
  }
}
.btn_recruit--lg::after {
  width: 34px;
}
.btn_recruit--center {
  margin-inline: auto;
}
.btn_recruit--pink {
  background: url(../images/recruit_grad_02.jpg) no-repeat center/cover;
  color: #313131;
}
.btn_recruit--pink::after {
  background-color: #313131;
}

.btn_submit {
  display: block;
  width: 300px;
  line-height: 60px;
  border-radius: 30px 30px 0 30px;
  text-align: center;
  background-color: #C09F46;
  color: #fff;
  letter-spacing: 0.06em;
  font-weight: 700;
  transition: 0.5s;
  margin: 0 auto;
}
.btn_submit:hover {
  filter: drop-shadow(0 10px 10px rgba(49, 49, 49, 0.5));
  transform: translateY(-3px);
}
.btn_submit:disabled {
  background-color: #A3A3A3;
}
.btn_submit:disabled:hover {
  filter: none;
  transform: none;
}

.add_ttl_01 {
  display: block;
  margin-bottom: 25px;
}
.add_ttl_01 span {
  display: inline-block;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.5;
  padding: 8px 25px;
  background: url(../images/recruit_grad_02.jpg) no-repeat center/cover;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .add_ttl_01 span {
    font-size: 1.25em;
    padding: 5px 10px;
    margin-bottom: 5px;
  }
}
.add_ttl_01 span:last-child {
  margin-bottom: 0;
}
.add_ttl_01 + p {
  margin-bottom: 60px;
}

.staff_content .grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px clamp(calc(var(--min-with) * (70 / var(--max-with))), calc(70vw / var(--max-with) * 100), 70px);
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .staff_content .grid {
    justify-content: center;
  }
}
.staff_content .grid:nth-of-type(even) .text {
  order: 2;
}
@media screen and (max-width: 767px) {
  .staff_content .grid:nth-of-type(even) .text {
    order: 1;
  }
}
.staff_content .grid:nth-of-type(even) .image {
  order: 1;
}
@media screen and (max-width: 767px) {
  .staff_content .grid:nth-of-type(even) .image {
    order: 2;
  }
}
.staff_content .grid:last-child {
  margin-bottom: 0;
}
.staff_content .grid .text {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .staff_content .grid .text {
    width: 100%;
  }
}
.staff_content .grid .image {
  width: calc(45% - clamp(calc(var(--min-with) * (70 / var(--max-with))), calc(70vw / var(--max-with) * 100), 70px));
}
@media screen and (max-width: 767px) {
  .staff_content .grid .image {
    width: 250px;
  }
}
.staff_content .grid .image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.post_contents {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .post_contents {
    margin-bottom: 50px;
  }
}
.post_contents p {
  margin-top: 25px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .post_contents p {
    font-size: 0.875em;
  }
}
.post_contents p:first-child {
  margin-top: 0;
}
.post_contents img {
  display: block;
  margin-top: 35px;
}
.post_contents img:first-child {
  margin-top: 0;
}
.post_contents .table_parent {
  margin-top: 20px;
}
.post_contents .table_parent:first-child {
  margin-top: 0;
}
.post_contents table {
  width: 100%;
  border-collapse: separate;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .post_contents table {
    width: auto;
  }
}
.post_contents table:first-child {
  margin-top: 0;
}
.post_contents table tr:last-child td {
  border-bottom: 0 none;
}
.post_contents table td {
  font-size: 0.9375em;
  padding: 15px 25px;
  background-color: #F8F8F8;
  border-bottom: 8px solid #6395BA;
}
@media screen and (max-width: 767px) {
  .post_contents table td {
    font-size: 0.875em;
    padding: 10px 15px;
  }
}
.post_contents table td:first-child {
  background-color: #A3EBD9;
  font-weight: 700;
}

/* ==========================================================================//
//
// parts
//
// ========================================================================== */
/* 背景パララックス
---------------------------------------------------------------------------------------------------------------------- */
.bg_parallax {
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .bg_parallax {
    background-size: auto 120%;
  }
}

.img_parallax {
  position: relative;
  overflow: hidden;
}
.img_parallax img {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  transition: transform 0.1s linear;
  will-change: transform;
}

/* wp-pagenavi
---------------------------------------------------------------------------------------------------------------------- */
.wp-pagenavi {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 15px;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi {
    gap: 10px;
    justify-content: flex-start;
  }
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: grid;
  place-content: center;
  width: 40px;
  aspect-ratio: 1/1;
  border: 1px solid #C09F46;
  color: #C09F46;
  font-size: 1.25em;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi a,
.wp-pagenavi span {
    width: 40px;
    font-size: 1.125em;
  }
}
.wp-pagenavi a:hover, .wp-pagenavi a.current,
.wp-pagenavi span:hover,
.wp-pagenavi span.current {
  background-color: #C09F46;
  color: #fff;
}
.wp-pagenavi a.previouspostslink, .wp-pagenavi a.nextpostslink, .wp-pagenavi a.extend,
.wp-pagenavi span.previouspostslink,
.wp-pagenavi span.nextpostslink,
.wp-pagenavi span.extend {
  width: auto;
  aspect-ratio: auto;
  background-color: transparent;
  border: none;
  font-family: "Noto Sans JP", sans-serif;
}
.wp-pagenavi a.previouspostslink:hover, .wp-pagenavi a.nextpostslink:hover, .wp-pagenavi a.extend:hover,
.wp-pagenavi span.previouspostslink:hover,
.wp-pagenavi span.nextpostslink:hover,
.wp-pagenavi span.extend:hover {
  color: #313131;
}
.wp-pagenavi a.previouspostslink::after, .wp-pagenavi a.nextpostslink::after, .wp-pagenavi a.extend::after,
.wp-pagenavi span.previouspostslink::after,
.wp-pagenavi span.nextpostslink::after,
.wp-pagenavi span.extend::after {
  content: none;
}

/* モーダル
---------------------------------------------------------------------------------------------------------------------- */
.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 25px;
  z-index: 1001;
}
@media screen and (max-width: 767px) {
  .modal {
    border-radius: 20px;
  }
}
.modal_close_btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  aspect-ratio: 1/1;
  background: url(../images/ico_modal_close.svg) no-repeat center/contain;
  border-radius: 50%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .modal_close_btn {
    width: 30px;
    right: 12px;
  }
}
.modal_close_btn::after {
  transform: rotate(-45deg);
}
.modal_content {
  display: none;
  position: relative;
  width: auto;
  max-width: calc(100vw - var(--sideW) * 2);
  max-height: 90vh;
  overflow-y: scroll;
  padding: 75px min(6.66vw, 100px) 90px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .modal_content {
    padding: 40px var(--sideW);
    border-radius: 20px;
  }
}
.modal_prev, .modal_next {
  position: absolute;
  width: var(--sideW);
  height: 100%;
  left: 0;
  top: 0;
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
}
.modal_prev::after, .modal_next::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/ico_arrow_right.svg) no-repeat center/30px auto;
  left: 0;
  top: 0;
  transform: rotate(180deg);
}
.modal_next {
  left: auto;
  right: 0;
}
.modal_next::after {
  transform: rotate(0);
}

.modal_overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background-color: rgba(99, 149, 186, 0.8);
  top: 0;
  left: 0;
  z-index: 1000;
}

/* タブ切り替え
---------------------------------------------------------------------------------------------------------------------- */
.js_tab__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .js_tab__menu {
    gap: 5px;
  }
}
.js_tab__menu-btn {
  background-color: #EDE7D3;
  line-height: 77px;
  text-align: center;
  padding: 0 22px;
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 10px 10px 0 0;
  transition: 0.5s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .js_tab__menu-btn {
    line-height: 1.5;
    padding: 12px 10px;
    font-size: 0.8125em;
  }
}
.js_tab__menu-btn.js_active {
  background-color: #C09F46;
  color: #fff;
}
.js_tab .js_tab__panel-item {
  display: none;
}
.js_tab .js_tab__panel-item.js_active {
  display: block;
}
.js_tab.tab_faq .js_tab__menu {
  justify-content: center;
  align-items: center;
  gap: 25px 0;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .js_tab.tab_faq .js_tab__menu {
    margin-bottom: 40px;
    gap: 18px 0;
  }
}
.js_tab.tab_faq .js_tab__menu::before {
  content: "｜";
  display: block;
}
.js_tab.tab_faq .js_tab__menu-btn {
  display: flex;
  align-items: center;
  gap: 1em;
  position: relative;
  background-color: transparent;
  line-height: 1.5;
  padding: 0 0 0 1em;
  font-size: 1em;
  font-weight: 500;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .js_tab.tab_faq .js_tab__menu-btn {
    padding-left: 0.3em;
    gap: 0.3em;
    font-size: 0.75em;
  }
}
.js_tab.tab_faq .js_tab__menu-btn::before {
  content: "";
  position: absolute;
  width: 18px;
  aspect-ratio: 18/15;
  background-color: #DAB84B;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .js_tab.tab_faq .js_tab__menu-btn::before {
    width: 12px;
    bottom: calc(100% + 2px);
  }
}
.js_tab.tab_faq .js_tab__menu-btn::after {
  content: "｜";
  display: block;
}
.js_tab.tab_faq .js_tab__menu-btn.js_active {
  color: #313131;
  background-color: transparent;
}
.js_tab.tab_faq .js_tab__menu-btn.js_active::before {
  opacity: 1;
}
.js_tab.tab_faq .js_tab__panel .faq + h3 {
  margin-top: 60px;
}
.js_tab.tab_faq .js_tab__panel h3 {
  font-size: 2em;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.06em;
  line-height: 1.25;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .js_tab.tab_faq .js_tab__panel h3 {
    font-size: 1.25em;
  }
}

/* パンくず
---------------------------------------------------------------------------------------------------------------------- */
#list_breadcrumb {
  font-size: 0.875em;
  margin-bottom: 135px;
}
@media screen and (max-width: 767px) {
  #list_breadcrumb {
    font-size: 0.75em;
    margin-bottom: 80px;
    overflow-x: scroll;
    text-align: right;
  }
}
#list_breadcrumb .inner, #list_breadcrumb .inner_min {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5em;
}
@media screen and (max-width: 767px) {
  #list_breadcrumb .inner, #list_breadcrumb .inner_min {
    display: inline-flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    white-space: nowrap;
    width: auto;
    max-width: none;
    margin: 0;
  }
}

/* swiper-common
---------------------------------------------------------------------------------------------------------------------- */
.swiper-button {
  width: 90px;
  height: auto;
  aspect-ratio: 1/1;
  mask: url(../images/ico_arrow_white.svg) no-repeat center/contain;
  background-color: #6395BA;
  margin: 0;
  top: calc(50% - 45px);
}
@media screen and (max-width: 767px) {
  .swiper-button {
    width: 40px;
    top: calc(50% - 20px);
  }
}
.swiper-button::after {
  content: none;
}
.swiper-button-prev {
  transform: rotate(180deg);
}

/* その他
---------------------------------------------------------------------------------------------------------------------- */
.lead {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .lead {
    text-align: left;
    line-height: 1.75;
    margin-bottom: 40px;
  }
}
.lead:last-child {
  margin-bottom: 0;
}
.lead--left {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .lead--sp_center {
    text-align: center;
  }
}
.lead.mb_sm {
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .lead.mb_sm {
    margin-bottom: 20px;
  }
}
.lead span {
  display: block;
  margin-bottom: 0.75em;
}
.lead span:last-child {
  margin-bottom: 0;
}
.lead__sm {
  text-align: center;
  font-size: 0.9375em;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .lead__sm {
    font-size: 0.875em;
    margin-bottom: 25px;
  }
}
.lead__sm:last-child {
  margin-bottom: 0;
}
.lead__sm.mb_lg {
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .lead__sm.mb_lg {
    margin-bottom: 60px;
  }
}
.lead__sm.mb_sm {
  margin-bottom: 15px;
}
.lead__sm--left {
  text-align: left;
}

.lead_recruit {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .lead_recruit {
    font-size: 1.125em;
    margin-bottom: 25px;
  }
}

.catch {
  font-size: 2.25em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 25px;
  color: #C09F46;
}
@media screen and (max-width: 767px) {
  .catch {
    font-size: 1.75em;
    text-align: left;
  }
}
.catch--pink {
  color: #BF59A0;
}
.catch--blue {
  color: #6395BA;
}
.catch--left {
  text-align: left;
}

.al_center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .al_center--sp {
    text-align: center;
  }
}

.nolink {
  pointer-events: none;
}

/* アーカイブのページネーション
---------------------------------------------------------------------------------------------------------------------- */
.list_pagination {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #6395BA;
  padding: 25px 0 0;
  margin-bottom: var(--space);
}
@media screen and (max-width: 767px) {
  .list_pagination {
    padding: 20px 0;
    border-bottom: 1px solid #6395BA;
  }
}
.list_pagination:last-child {
  margin-bottom: 0;
}
.list_pagination li {
  line-height: 1.5;
}
.list_pagination li.list {
  text-align: center;
}
.list_pagination li.list a {
  color: #313131;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1em;
  padding-bottom: 5px;
}
.list_pagination li.list a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #313131;
  left: 0;
  bottom: 0;
  transition: transform 0.5s;
  transform-origin: left;
}
.list_pagination li.list a:hover {
  text-decoration: none;
}
.list_pagination li.list a:hover::after {
  transform-origin: right;
  transform: scale(0, 1);
}
.list_pagination li a {
  display: inline-block;
  position: relative;
  font-weight: 500;
  color: #6395BA;
  font-size: 1.25em;
  font-family: "Outfit", sans-serif;
}
.list_pagination li a:hover {
  text-decoration: underline;
}

/* フォームパーツ
---------------------------------------------------------------------------------------------------------------------- */
.dlist_form {
  display: flex;
  flex-direction: column;
  gap: 35px;
  position: relative;
  margin-bottom: 40px;
}
.dlist_form .item {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: baseline;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .dlist_form .item {
    grid-template-columns: 1fr;
    gap: 10px 0;
  }
}
.dlist_form .item:last-child {
  padding-top: 32px;
  border-top: 1px solid #313131;
}
@media screen and (max-width: 767px) {
  .dlist_form .item:last-child {
    padding-top: 25px;
  }
}
.dlist_form .item:last-child p {
  font-size: 0.8125em;
}
.dlist_form dt {
  font-weight: 700;
  font-size: 1.125em;
}
.dlist_form dt.req {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .dlist_form dt.req {
    gap: 0 10px;
  }
}
.dlist_form dt.req::after {
  content: "必須";
  display: block;
  width: 45px;
  line-height: 22px;
  text-align: center;
  background-color: #C09F46;
  color: #fff;
  font-size: 0.75em;
  font-weight: 700;
}
input[type=text],
input[type=email],
input[type=tel],
input[type=date],
select,
textarea {
  width: 100%;
  max-width: 100%;
  padding: 20px;
  background-color: transparent;
  border: 1px solid #313131;
  line-height: 1.5;
  color: #313131;
  text-align: left;
}
@media screen and (max-width: 767px) {
  input[type=text],
input[type=email],
input[type=tel],
input[type=date],
select,
textarea {
    padding: 15px 10px;
  }
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=date]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #A3A3A3;
}

textarea {
  height: 264px;
}
@media screen and (max-width: 767px) {
  textarea {
    height: 150px;
  }
}

select {
  width: auto;
  padding: 22px 45px 22px 20px;
  background: url(../images/ico_select.svg) no-repeat center right 10px;
}
@media screen and (max-width: 767px) {
  select {
    padding: 15px 45px 15px 10px;
  }
}

.wpcf7-form-control-wrap:has(#zip) {
  display: block;
}
.wpcf7-form-control-wrap:has(#zip)::before {
  content: "〒";
  display: inline-block;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .wpcf7-form-control-wrap:has(#zip)::before {
    margin-right: 10px;
  }
}

#zip {
  width: 280px;
}
@media screen and (max-width: 767px) {
  #zip {
    width: 150px;
  }
}

.mail_domain {
  background-color: #fff;
  padding: 25px 45px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .mail_domain {
    padding: 20px var(--sideW);
    margin-bottom: 25px;
  }
}
.mail_domain strong {
  display: block;
  margin-bottom: 8px;
}
.mail_domain p {
  font-size: 0.875em;
}

.page-id-121 .mail_domain {
  background-color: #F6F6F6;
}

.wpcf7-checkbox,
.wpcf7-radio,
.wpcf7-acceptance {
  display: block;
}
.wpcf7-checkbox.site_check,
.wpcf7-radio.site_check,
.wpcf7-acceptance.site_check {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}
@media screen and (max-width: 767px) {
  .wpcf7-checkbox.site_check,
.wpcf7-radio.site_check,
.wpcf7-acceptance.site_check {
    gap: 15px 25px;
  }
}
.wpcf7-checkbox.site_check .wpcf7-list-item,
.wpcf7-radio.site_check .wpcf7-list-item,
.wpcf7-acceptance.site_check .wpcf7-list-item {
  margin: 0;
}
.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-radio .wpcf7-list-item,
.wpcf7-acceptance .wpcf7-list-item {
  display: block;
  margin: 0 0 15px;
}
@media screen and (max-width: 767px) {
  .wpcf7-checkbox .wpcf7-list-item,
.wpcf7-radio .wpcf7-list-item,
.wpcf7-acceptance .wpcf7-list-item {
    break-inside: avoid;
    margin-bottom: 0;
    padding-bottom: 15px;
  }
}
.wpcf7-checkbox .wpcf7-list-item:last-child,
.wpcf7-radio .wpcf7-list-item:last-child,
.wpcf7-acceptance .wpcf7-list-item:last-child {
  margin-bottom: 0;
}
.wpcf7-checkbox .wpcf7-list-item label,
.wpcf7-radio .wpcf7-list-item label,
.wpcf7-acceptance .wpcf7-list-item label {
  font-size: 0.9375em;
}
.wpcf7-checkbox .wpcf7-list-item label input,
.wpcf7-radio .wpcf7-list-item label input,
.wpcf7-acceptance .wpcf7-list-item label input {
  display: none;
}
.wpcf7-checkbox .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after,
.wpcf7-radio .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after,
.wpcf7-acceptance .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after {
  border-color: #313131;
}
.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label,
.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
  display: block;
  position: relative;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label,
.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
    padding-left: 25px;
  }
}
.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::before,
.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::before,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  width: 1.42em;
  aspect-ratio: 1/1;
  border: 1px solid #313131;
  left: 0;
  top: calc(50% - 0.71em);
}
@media screen and (max-width: 767px) {
  .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::before,
.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::before,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::before {
    top: 4px;
  }
}
.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::after,
.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::after,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 6px;
  border-left: 2px solid transparent;
  border-bottom: 2px solid transparent;
  left: 0.2em;
  top: calc(50% - 0.3em);
  transform: rotate(-40deg);
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::after,
.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::after,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::after {
    top: 10px;
    left: 3px;
  }
}

[data-name=doui] .wpcf7-acceptance {
  display: block;
}
[data-name=doui] .wpcf7-acceptance a {
  text-decoration: underline;
}
[data-name=doui] .wpcf7-acceptance a:hover {
  text-decoration: none;
}
[data-name=doui] + p {
  font-size: 0.8125em;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 5px;
}

.privacy-policy_wrap {
  background-color: #fff;
  padding: 80px clamp(calc(var(--min-with) * (100 / var(--max-with))), calc(100vw / var(--max-with) * 100), 100px);
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .privacy-policy_wrap {
    padding: 40px var(--sideW);
  }
}

.dlist_policy {
  margin-bottom: 20px;
}
.dlist_policy:last-child {
  margin-bottom: 0;
}
.dlist_policy .item {
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .dlist_policy .item {
    margin-bottom: 40px;
  }
}
.dlist_policy .item:last-child {
  margin-bottom: 0;
}
.dlist_policy dt {
  display: flex;
  gap: 0 10px;
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .dlist_policy dt {
    font-size: 1.125em;
  }
}
.dlist_policy dt::before {
  content: "●";
  display: block;
  font-weight: 500;
  color: #BF59A0;
  flex-shrink: 0;
}
.dlist_policy dd {
  font-size: 0.875em;
}
@media screen and (max-width: 767px) {
  .dlist_policy dd ul {
    padding: 15px 0;
    margin-bottom: 25px;
  }
}
.dlist_policy dd ul:last-child {
  margin-bottom: 0;
}
.dlist_policy dd ul li {
  display: flex;
  gap: 0.5em;
}
.dlist_policy dd ul li::before {
  content: "■";
  display: block;
  flex-shrink: 0;
}

/* reCAPTCHAバッジ非表示 */
.grecaptcha-badge {
  visibility: hidden;
}

.grecaptcha_text {
  margin-top: 20px;
  font-size: 0.875em;
}
@media screen and (max-width: 767px) {
  .grecaptcha_text {
    font-size: 0.75em;
  }
}

/* ユーティリティ
mx ＝ "x軸方向のmargin"
---------------------------------------------------------------------------------------------------------------------- */
.u-text-center {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .u-text-center-sp {
    text-align: center;
  }
}

.u-mx-center {
  margin-inline: auto;
}

.u-mx-right {
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .u-mx-right-sp {
    margin-left: auto;
  }
}

.u-mx-left {
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .u-mx-left-sp {
    margin-right: auto;
  }
}

.u-disp-ib {
  display: inline-block;
}