@charset "UTF-8";
/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "Zen Maru Gothic", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
}

html {
  color: #000;
  background: #fff;
  font-size: 100%;
  line-height: 1.6;
  overflow-wrap: break-word;
}

body {
  overflow-y: scroll;
  background: #fff;
  margin: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
select,
textarea,
button {
  color: inherit;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

#wrapper {
  position: relative;
}

.inner-block {
  margin: 0 auto;
  position: relative;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

.ib {
  display: inline-block;
}

.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-header
----------------------------------- */
header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: transparent;
}

.c-header {
  padding: 24px 24px 0 24px;
  position: relative;
}
.c-header.is-active {
  background: #fff;
}
.c-header.is-active .inner-block {
  border: none;
}
.c-header .inner-block {
  border-radius: 64px;
  border: 1px solid #C8C8C8;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1420px;
  padding: 0;
  background: #fff;
}
.c-header .logo-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  padding: 20px 0 20px 32px;
}
.c-header .logo-area img {
  width: 100px;
}
.c-header .logo-area .txt {
  color: #B60081;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
.c-header .h-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: min(28px, 2vw);
  margin-right: min(32px, 2.2857142857vw);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-header .h-menu .toggle-hover-menu {
  position: relative;
}
.c-header .h-menu .toggle-hover-menu > button {
  padding: 20px 2px;
  padding-right: 30px;
  width: 100%;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0.05em;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header .h-menu .toggle-hover-menu > button:focus {
  border: 2px solid #000;
}
.c-header .h-menu .toggle-hover-menu > button::after {
  content: "";
  -webkit-mask: url(../img/common/icon_arrow.svg) no-repeat center/contain;
          mask: url(../img/common/icon_arrow.svg) no-repeat center/contain;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 7px;
  margin: auto;
  background: #000;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header .h-menu a {
  padding: 20px 2px;
  line-height: 1.75;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.c-header .r-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 12px;
}
.c-header .toggle-hover-menu-area {
  position: absolute;
  top: 48px;
  padding-top: 24px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 5;
  cursor: pointer;
}
.c-header .toggle-hover-menu-area.is-active {
  pointer-events: all;
  opacity: 1;
}
.c-header .toggle-hover-menu-area .inn {
  background: #fff;
  border-radius: 16px;
  padding: 40px 38px;
}
.c-header .toggle-hover-menu-area .dot-list > li {
  margin-bottom: 24px;
}
.c-header .toggle-hover-menu-area .dot-list > li:last-child {
  margin-bottom: 0;
}
.c-header .toggle-hover-menu-area .dot-list > li > a {
  position: relative;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
.c-header .toggle-hover-menu-area .dot-list > li > a::before {
  content: "";
  border-radius: 50%;
  background: #B60081;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 10px;
  left: -20px;
}
.c-header .toggle-hover-menu-area .dot-list > li > a::after {
  display: none;
}
.c-header .entry-btn {
  background: #B60081;
  display: inline-block;
  color: #fff;
  border-radius: 64px;
  padding: 11px 17px;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.c-header .toggle-btn {
  width: 32px;
  height: 32px;
  position: relative;
  margin-left: 20px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.c-header .toggle-btn:focus {
  border: 2px solid #000;
  border-radius: 5px;
}
.c-header .toggle-btn .inn {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 30px;
  height: 30px;
}
.c-header .toggle-btn .line {
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  background: #000;
  display: inline-block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header .toggle-btn .line:nth-child(1) {
  top: 0;
}
.c-header .toggle-btn .line:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-header .toggle-btn .line:nth-child(3) {
  bottom: 0;
}
.c-header .toggle-btn.is-active .line:first-child {
  -webkit-transform: rotate(45deg) translate(11px, 9px);
          transform: rotate(45deg) translate(11px, 9px);
}
.c-header .toggle-btn.is-active .line:nth-child(2) {
  display: none;
}
.c-header .toggle-btn.is-active .line:last-child {
  -webkit-transform: rotate(-45deg) translate(11px, -9px);
          transform: rotate(-45deg) translate(11px, -9px);
}

.h-toggle-menu {
  position: fixed;
  right: 0;
  top: 68px;
  width: 100%;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  pointer-events: none;
  padding: 0 32px;
  border-radius: 0 0 0 64px;
  background: #fff;
  z-index: 10;
}
.h-toggle-menu.is-active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  pointer-events: all;
}
.h-toggle-menu .inn {
  max-height: calc(var(--vh) * 100 - 120px);
  overflow-y: auto;
  height: 100vh;
}
.h-toggle-menu .inn .h-menu > li > a, .h-toggle-menu .inn .h-menu > li button {
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-size: 1rem;
  display: block;
  border-bottom: 1px solid #453741;
  position: relative;
  padding: 17.5px 8px;
  width: 100%;
  text-align: left;
}
.h-toggle-menu .inn .h-menu > li > a:focus, .h-toggle-menu .inn .h-menu > li button:focus {
  border: 2px solid #000;
}
.h-toggle-menu .inn .child-menu li {
  position: relative;
  border-bottom: 1px solid #C8C8C8;
}
.h-toggle-menu .inn .child-menu li > a {
  padding: 15.5px 8px 15.5px 24px;
  margin-left: 24px;
  display: block;
  position: relative;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
.h-toggle-menu .inn .child-menu li > a::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 0;
  margin: auto;
  border-radius: 50%;
  background: #B60081;
  width: 8px;
  height: 8px;
}
.h-toggle-menu .inn .icon {
  border-radius: 50%;
  border: 1px solid #B60081;
  width: 32px;
  height: 32px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8px;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.h-toggle-menu .inn .icon::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  -webkit-mask: url(../img/common/icon_arrow02.svg) no-repeat center/contain;
          mask: url(../img/common/icon_arrow02.svg) no-repeat center/contain;
  width: 10px;
  height: 11px;
  background: #B60081;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.cover-bg {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  pointer-events: none;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100vh;
  opacity: 0;
  z-index: 5;
}
.cover-bg.is-active {
  opacity: 1;
  pointer-events: all;
}

.block-skip {
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 0;
  position: absolute;
  top: -12px;
  left: 0;
  z-index: 999;
  color: #B60081;
  text-align: center;
  padding: 0;
  display: block;
  background: #F3DDED;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 11;
}
.block-skip:focus-within {
  clip: auto;
  height: auto;
  top: 0;
  padding: 4.5px 0;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
}
#loading .fade-content {
  opacity: 0;
}
#loading .fade-content.is-active {
  -webkit-animation: fadeInloading 1s ease-in 1s forwards;
          animation: fadeInloading 1s ease-in 1s forwards;
}
#loading .fade-content.is-hidden {
  opacity: 1;
  -webkit-animation: fadeOutloading 1s ease-in 1s forwards;
          animation: fadeOutloading 1s ease-in 1s forwards;
}
@-webkit-keyframes fadeInloading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInloading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOutloading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOutloading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#loading .logo-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#loading .logo-area .txt {
  color: #B60081;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

footer {
  position: relative;
  z-index: 1;
}

.footer-banner-area {
  position: relative;
  border-top: 8px solid #B60081;
  background: #F3DDED;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px 20px;
  gap: min(40px, 2.0833333333vw);
  margin-top: max(-225px, -16.0714285714vw);
}
.footer-banner-area .footer-banner {
  border-radius: 10px;
  background: #fff;
  border: 1px solid #C8C8C8;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  padding: 12px 31px 15px 31px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.footer-banner-area .txt {
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
.footer-banner-area .txt .large {
  font-size: 1.125rem;
}
.footer-banner-area .icon {
  position: relative;
  background: #453741;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border: 1px solid #453741;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.footer-banner-area .icon::after {
  content: "";
  -webkit-mask: url(../img/common/icon_blank.svg) no-repeat center/contain;
          mask: url(../img/common/icon_blank.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-footer {
  position: relative;
  z-index: 1;
  background: #fff;
  padding-top: 80px;
}
.c-footer .inner-block {
  max-width: 1240px;
}
.c-footer .logo-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-footer .logo-area .txt {
  color: #B60081;
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
.c-footer .menu-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 53px;
  margin-top: 70px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.c-footer .list > li > a, .c-footer .list > li div {
  position: relative;
  padding-left: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.75;
  -webkit-text-decoration: underline transparent;
          text-decoration: underline transparent;
}
.c-footer .list > li > a::before, .c-footer .list > li div::before {
  content: "";
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 0;
  background: #B60081;
  width: 8px;
  height: 8px;
}
.c-footer .list > li > div {
  pointer-events: none;
}
.c-footer .sub-list {
  margin-top: 10px;
}
.c-footer .sub-list > li:last-child > a {
  margin-bottom: 0;
}
.c-footer .sub-list > li > a {
  position: relative;
  padding-left: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
  -webkit-text-decoration: underline transparent;
          text-decoration: underline transparent;
}
.c-footer .sub-list > li > a::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  background: #000;
  height: 1px;
  width: 8px;
}
.c-footer .plant-banner {
  display: block;
  max-width: 160px;
  margin-top: 20px;
  margin-left: auto;
}
.c-footer .gray-menu-area {
  background: #F0F0F0;
  margin-top: 36px;
  padding: 6px 0;
}
.c-footer .gray-menu-area ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: min(40px, 2.8571428571vw);
}
.c-footer .gray-menu-area ul > li > a {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.c-footer .gray-menu-area ul > li > a.blank {
  position: relative;
  padding-right: 20px;
}
.c-footer .gray-menu-area ul > li > a.blank::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 11px;
  height: 11px;
  background: #000;
  -webkit-mask: url(../img/common/icon_blank.svg) no-repeat center/contain;
          mask: url(../img/common/icon_blank.svg) no-repeat center/contain;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-footer .copyright {
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  padding: 7px 0;
}
.c-footer #pagetop {
  right: 0px;
  z-index: 10;
}
.c-footer #pagetop > a {
  width: 56px;
  height: 56px;
  border-radius: 8px 0 0 0;
  display: block;
  background: #453741;
  position: relative;
  border: 1px solid #453741;
}
.c-footer #pagetop > a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  -webkit-mask: url(../img/common/icon_arrow02.svg) no-repeat center/contain;
          mask: url(../img/common/icon_arrow02.svg) no-repeat center/contain;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 14px;
  height: 16px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.c-ttl01 {
  margin-bottom: 48px;
}
.c-ttl01 .ja {
  color: #B60081;
  font-weight: bold;
  font-size: 3.5rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 9px;
}
.c-ttl01 .en {
  position: relative;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.25;
  font-family: "Quicksand", sans-serif;
  padding-left: 30px;
}
.c-ttl01 .en::before {
  content: "";
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 0;
  width: 16px;
  height: 16px;
}
.c-ttl01.pink .en::before {
  background: #B60081;
}
.c-ttl01.yellow .en::before {
  background: #FEDB37;
}
.c-ttl01.l-blue .en::before {
  background: #29B9EE;
}
.c-ttl01.blue .en::before {
  background: #04B1B8;
}
.c-ttl01.orange .en::before {
  background: #FE8737;
}
.c-ttl01.green .en::before {
  background: #65B72F;
}
.c-ttl01.yellow .en::before {
  background: #FEDB37;
}

.c-ttl02 {
  font-size: 2.5rem;
  font-weight: bold;
  border-bottom: 3px solid #C8C8C8;
  padding-bottom: 23px;
  letter-spacing: 0.09em;
  line-height: 1.3em;
  padding-left: 16px;
  position: relative;
  color: #B60081;
  margin-bottom: 64px;
}
.c-ttl02::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 160px;
  height: 3px;
  background-color: #B60081;
}
.c-ttl02 .attention {
  letter-spacing: 0.05em;
  line-height: 1.75;
  font-weight: 500;
  color: #B60081;
  font-size: 16px;
  display: inline-block;
}

.c-ttl03 {
  padding-left: 40px;
  position: relative;
  font-size: 1.5rem;
  font-weight: bold;
  color: #B60081;
  letter-spacing: 0.05em;
}
.c-ttl03::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #B60081;
}

main:focus {
  outline: none;
}

.c-bg-pink {
  position: relative;
}
.c-bg-pink::before {
  content: "";
  border-radius: 64px;
  background: #FBF3F9;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.c-bg-white {
  position: relative;
  background: #FBF3F9;
}
.c-bg-white::before {
  content: "";
  border-radius: 64px;
  background: #FFFFFF;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.c-main-bg-pink {
  background: #FBF3F9;
}
.c-main-bg-pink + footer .c-entry-block {
  background: #FBF3F9;
}
.c-main-bg-pink + footer .footer-banner-area {
  background: #FBF3F9;
}

.c-btn01 {
  background: #453741;
  color: #fff;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.05em;
  position: relative;
  border-radius: 50px;
  padding: 16px 32px;
  display: inline-block;
  text-align: left;
}
.c-btn01 .icon {
  border-radius: 50%;
  width: 44px;
  height: 44px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  overflow: hidden;
}
.c-btn01 .icon::before, .c-btn01 .icon::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background: #B60081;
  -webkit-mask: url(../img/common/icon_arrow02.svg) no-repeat center/contain;
          mask: url(../img/common/icon_arrow02.svg) no-repeat center/contain;
  width: 16px;
  height: 18px;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-btn01 .icon::after {
  -webkit-transform: translateX(-200%);
          transform: translateX(-200%);
}

@-webkit-keyframes transformLeftRight {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes transformLeftRight {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes transformRightLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
  }
}
@keyframes transformRightLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
  }
}
.c-interview-section {
  visibility: visible;
  position: relative;
  overflow: hidden;
}
.c-interview-section .top-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.c-interview-section .nav-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 13px;
}
.c-interview-section .splide__wrapper {
  position: relative;
}
.c-interview-section .splide__track {
  overflow: visible;
  position: relative;
  z-index: 0;
}
.c-interview-section .splide__pagination {
  gap: 24px;
  margin-top: 16px;
}
.c-interview-section .splide__pagination button {
  background: #453741;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}
.c-interview-section .splide__pagination button:focus {
  border: 2px solid #000;
}
.c-interview-section .splide__pagination button.is-active {
  background: #B60081;
}
.c-interview-section .splide-toggle {
  background: #453741;
  color: #fff;
  width: 85px;
  font-weight: bold;
  display: inline-block;
  letter-spacing: 0.05em;
  line-height: 1.75;
  position: relative;
  border-radius: 80px;
  text-align: right;
  padding: 0px 16px;
  font-size: 1rem;
  margin-top: 13px;
  margin-left: 24px;
  border: 1px solid #453741;
}
.c-interview-section .splide-toggle:focus {
  border: 2px solid #000;
}
.c-interview-section .splide-toggle::before {
  content: "";
  -webkit-mask: url(../img/common/icon_stop.svg) no-repeat center/contain;
          mask: url(../img/common/icon_stop.svg) no-repeat center/contain;
  width: 8px;
  height: 10px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-interview-section .splide-toggle.is-active::before {
  -webkit-mask: url("../img/common/icon_play.svg") no-repeat center/contain;
          mask: url("../img/common/icon_play.svg") no-repeat center/contain;
}
.c-interview-section .splide__arrows {
  gap: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: min(40px, 2.8571428571vw);
}
.c-interview-section .splide__arrow {
  width: 56px;
  height: 56px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid #453741;
  position: relative;
  background: #453741;
}
.c-interview-section .splide__arrow:focus {
  border: 2px solid #000;
}
.c-interview-section .splide__arrow::after {
  content: "";
  -webkit-mask: url(../img/common/icon_arrow.svg) no-repeat center/contain;
          mask: url(../img/common/icon_arrow.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background: #fff;
  width: 14px;
  height: 8px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-interview-section .splide__arrow svg {
  display: none;
}
.c-interview-section .splide__arrow.splide__arrow--prev::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c-interview-section .splide__arrow.splide__arrow--next::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.c-interview-section .img-area {
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1/1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.c-interview-section .img-area img {
  border-radius: 50%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-interview-section .tag-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 25px;
}
.c-interview-section .tag-list .tag {
  border-radius: 50px;
  background: #F0F0F0;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1.75;
  padding: 3px 24px;
}
.c-interview-section .ttl {
  font-weight: bold;
  line-height: 1.5;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-top: 18px;
}
.c-interview-section .profile-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: 5px;
  gap: 12px;
}
.c-interview-section .profile-wrap + .profile-wrap {
  margin-top: -2px;
}
.c-interview-section .profile-wrap .p-item {
  position: relative;
  padding-right: 20px;
  white-space: nowrap;
}
.c-interview-section .profile-wrap .p-item::after {
  content: ":";
  position: absolute;
  top: -2px;
  right: 0;
  margin: auto;
}
.c-interview-section .profile-wrap .p-txt {
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-size: 1.125rem;
}
.c-interview-section .name {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.5;
}
.c-interview-section .name .en {
  font-family: "Quicksand", sans-serif;
}
.c-interview-section .link {
  color: #B60081;
  text-decoration: underline;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: inline-block;
  font-size: 1.125rem;
  line-height: 1.75;
  margin-top: 20px;
}
.c-interview-section .btn-wrap {
  text-align: right;
  margin-top: 64px;
}
.c-interview-section .btn-wrap .c-btn01 {
  text-align: left;
}

.c-faq-box {
  margin-bottom: 32px;
}
.c-faq-box:last-child {
  margin-bottom: 0;
}
.c-faq-box .icon-q,
.c-faq-box .icon-a {
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  font-size: 1.5rem;
  color: #B60081;
  margin-right: 32px;
}
.c-faq-box .txt {
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  text-align: left;
}
.c-faq-box.is-active .c-q-area {
  background: #F3DDED;
}
.c-faq-box.is-active .c-q-area .icon {
  background: #B60081;
}
.c-faq-box.is-active .c-q-area .icon::before {
  -webkit-mask: url(../img/common/icon_minus.svg) no-repeat center/contain;
          mask: url(../img/common/icon_minus.svg) no-repeat center/contain;
  width: 20px;
  height: 20px;
}

.c-q-area {
  border-radius: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 20px 20px 32px;
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #F0F0F0;
  position: relative;
}
.c-q-area:focus {
  border: 2px solid #000;
  background: #F3DDED;
}
.c-q-area:focus .icon {
  background: #B60081;
}
.c-q-area .q-txt {
  margin-right: 30px;
  font-family: "Quicksand", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.25;
  color: #B60081;
}
.c-q-area .q-wrap {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.c-q-area .icon {
  border-radius: 50%;
  width: 56px;
  height: 56px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  background: #453741;
  position: relative;
  margin-left: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-q-area .icon::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  -webkit-mask: url(../img/common/icon_plus.svg) no-repeat center/contain;
          mask: url(../img/common/icon_plus.svg) no-repeat center/contain;
  width: 18px;
  height: 18px;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-a-area {
  padding: 20px 32px 20px 32px;
  display: none;
}
.c-a-area .link {
  -webkit-text-decoration: underline currentColor;
          text-decoration: underline currentColor;
  color: #B60081;
}
.c-a-area .a-inn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.c-a-area .a-txt {
  font-family: "Quicksand", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.25;
  color: #B60081;
}

.c-kv-section {
  background-color: #FBF3F9;
  margin-top: 43px;
}
.c-kv-section .white-bg {
  background-color: #fff;
  border-radius: 0px 0px 200px 0px;
  position: relative;
}
.c-kv-section .white-bg::before, .c-kv-section .white-bg::after {
  content: "";
  position: absolute;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.c-kv-section .white-bg::before {
  background: #FEDB37;
  width: 140px;
  right: min(339px, 24.2142857143vw);
  top: -78px;
}
.c-kv-section .white-bg.l-blue::before {
  background: #29B9EE;
}
.c-kv-section .white-bg.green::before {
  background: #65B72F;
}
.c-kv-section .white-bg.blue::before {
  background: #04B1B8;
}
.c-kv-section .white-bg.orange::before {
  background: #FE8737;
}
.c-kv-section .white-bg::after {
  background: #B60081;
  width: 64px;
  right: min(203px, 14.5vw);
  top: 52px;
}
.c-kv-section .white-bg + .c-profile-card {
  margin-top: -140px;
  padding-bottom: 64px;
}
.c-kv-section .white-bg + .c-profile-card .img-wrap {
  margin-left: auto;
  margin-right: 0;
}
.c-kv-section .white-bg + .c-profile-card .txt-wrap {
  right: auto;
}
.c-kv-section .crumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 61px;
}
.c-kv-section .crumb li {
  font-size: 0.875rem;
  color: #B60081;
}
.c-kv-section .crumb li + li {
  padding-left: 56px;
  position: relative;
}
.c-kv-section .crumb li + li::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 7px;
  bottom: 0;
  width: 8px;
  height: 8px;
  background-color: #B60081;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.c-kv-section .crumb li.current {
  color: #000;
}
.c-kv-section .c-ttl01 {
  margin-bottom: 40px;
}
.c-kv-section .desc-area {
  font-size: 1.125rem;
  max-width: 800px;
  letter-spacing: 0.05em;
}
.c-kv-section .desc-area.has-img {
  max-width: none;
  display: grid;
  grid-template-columns: auto min(50%, 560px);
  gap: 28px 64px;
}
.c-kv-section .desc-area.has-img .desc {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  line-height: 175%;
}
.c-kv-section .desc-area.has-img > img {
  border-radius: 320px;
}

.c-anchor-section {
  margin-top: 64px;
  padding: 64px 0 80px;
}
.c-anchor-section .c-anchor-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, 248px);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 56px;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.c-anchor-section .c-anchor-list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.c-related-section {
  padding: 160px 0;
  background-color: #FBF3F9;
}
.c-related-section .related-block {
  display: grid;
  place-items: center;
  max-width: 1032px;
  margin: 0 auto;
  padding: 70px 0;
  border-radius: 64px;
  background-color: #F3DDED;
}
.c-related-section .related-block .c-ttl03 {
  margin-top: 0;
  margin-bottom: 30px;
}
.c-related-section .related-block .related-btn {
  display: grid;
  grid-template-columns: 1fr 1.63fr;
  max-width: 645px;
  width: 100%;
  height: 163px;
  color: #fff;
  border-radius: 16px;
  overflow: hidden;
  background-color: #453741;
  -webkit-box-shadow: 0px 4px 24px 0px rgba(182, 0, 129, 0.2);
          box-shadow: 0px 4px 24px 0px rgba(182, 0, 129, 0.2);
}
.c-related-section .related-block .related-btn:focus {
  background-color: #B60081;
}
.c-related-section .related-block .related-btn:focus .img-wrap img {
  -webkit-transform: scale(1.09);
          transform: scale(1.09);
}
.c-related-section .related-block .related-btn .img-wrap {
  overflow: hidden;
  width: 100%;
}
.c-related-section .related-block .related-btn .img-wrap img {
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.c-related-section .related-block .related-btn .txt {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px;
  font-size: 1.5rem;
  font-weight: bold;
}
.c-related-section .related-block .related-btn .txt .icon {
  position: relative;
  display: inline-block;
  background-color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
}
.c-related-section .related-block .related-btn .txt .icon::after {
  content: "";
  -webkit-mask: url(../img/common/icon_arrow02.svg) no-repeat center/contain;
          mask: url(../img/common/icon_arrow02.svg) no-repeat center/contain;
  background: #B60081;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 16px;
  height: 16px;
}

.c-profile-card {
  position: relative;
}
.c-profile-card + .c-profile-card {
  margin-top: 120px;
}
.c-profile-card .img-wrap {
  border-radius: 320px;
  overflow: hidden;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-profile-card .img-wrap img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-profile-card .txt-wrap {
  -webkit-box-shadow: 0px 4px 24px 0px rgba(182, 0, 129, 0.2);
          box-shadow: 0px 4px 24px 0px rgba(182, 0, 129, 0.2);
  background-color: #fff;
  border-radius: 24px;
  max-width: 520px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 40px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.c-profile-card .txt-wrap .tip {
  background-color: #F0F0F0;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 22px;
  border-radius: 50px;
  margin-bottom: 11px;
  letter-spacing: 0.1em;
  line-height: 1;
}
.c-profile-card .txt-wrap .message {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 9px;
  letter-spacing: 0.1em;
  line-height: 1.5em;
  padding-bottom: 0 !important;
}
.c-profile-card .txt-wrap .store > p, .c-profile-card .txt-wrap .joining > p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  font-size: 1.125rem;
  line-height: 1.9em;
  letter-spacing: 0.05em;
}
.c-profile-card .txt-wrap .store > p span:first-child, .c-profile-card .txt-wrap .joining > p span:first-child {
  white-space: nowrap;
}
.c-profile-card .txt-wrap .joining {
  margin-bottom: 5px;
}
.c-profile-card .txt-wrap .name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.c-profile-card .txt-wrap .name .en {
  font-family: "Quicksand", sans-serif;
}
.c-profile-card .txt-wrap .link-txt {
  font-size: 1.125rem;
  border-bottom: 1px solid #B60081;
  color: #B60081;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 0.05em;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

.c-job-box {
  border-radius: 16px;
}
.c-job-box.bg-pink {
  background-color: #FBF3F9;
}
.c-job-box.bg-pink .white-area {
  background: transparent;
}
.c-job-box.bg-pink .box-ttl {
  background: #B60081;
  color: #FFFFFF;
}
.c-job-box .box-ttl {
  background: #F3DDED;
  font-weight: bold;
  color: #B60081;
  border-radius: 16px 16px 0 0;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  padding: 8px 0;
}
.c-job-box .white-area {
  border-radius: 0 0 16px 16px;
  background: #fff;
  padding: 24px;
}
.c-job-box .balloon {
  border: 1px solid #B60081;
  position: relative;
  border-radius: 61px;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 1.75;
  padding: 14px 10px 17px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
}
.c-job-box .balloon::after, .c-job-box .balloon::before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  top: calc(100% - 1px);
  margin: auto;
  width: 21px;
  height: 15px;
  z-index: 2;
  background: #fff;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.c-job-box .balloon::before {
  z-index: 1;
  top: 100%;
  width: 22px;
  height: 15px;
  background-color: #B60081;
}
.c-job-box img {
  max-width: 270px;
  margin: auto;
  display: block;
  text-align: center;
}
.c-job-box .img-area.has-txtbox {
  display: grid;
  grid-template-columns: 1fr min(65%, 9.5rem);
  gap: 16px;
}
.c-job-box .img-area.has-txtbox .txtbox {
  border-radius: 8px;
  background-color: #FFFFFF;
  padding: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  font-size: 0.875rem;
  line-height: 150%;
  letter-spacing: 0.05em;
}
.c-job-box .img-area.has-txtbox .txtbox .big {
  font-size: 1rem;
  font-weight: 700;
  line-height: 175%;
  letter-spacing: 0.05em;
  text-align: center;
}
.c-job-box .img-area.has-txtbox > img {
  width: 100%;
  height: auto;
  max-height: none;
}
.c-job-box .txt {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.75;
  margin-top: 20px;
}
.c-job-box .desc-wrap:first-of-type {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #453741;
}
.c-job-box .desc-wrap:last-of-type {
  margin-top: auto;
}
.c-job-box .desc-wrap:last-of-type > .desc-ttl {
  margin-top: 24px;
}
.c-job-box .desc-wrap .desc-ttl {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.05em;
  color: #B60081;
  padding-left: 24px;
  position: relative;
  margin-bottom: 16px;
}
.c-job-box .desc-wrap .desc-ttl::before {
  position: absolute;
  content: "";
  -webkit-mask: url("../img/common/icon_circle.svg") no-repeat center center/contain;
          mask: url("../img/common/icon_circle.svg") no-repeat center center/contain;
  background-color: currentColor;
  height: 1.5em;
  width: 8px;
  top: 0;
  left: 0;
}
.c-job-box .desc-wrap .txt {
  margin-top: 0;
}
.c-job-box .desc-wrap .desc-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
  gap: 10px;
}
.c-job-box .desc-wrap .desc-list > li {
  border-radius: 40px;
  border: 2px solid #C8C8C8;
  background: #FFFFFF;
  padding-block: 2px;
  padding-inline: 8px;
  text-align: center;
  color: #C8C8C8;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 175%;
  letter-spacing: 0.05em;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}
.c-job-box .desc-wrap .desc-list > li.ok {
  color: #453741;
  border-color: #453741;
  background: #F0F0F0;
}

.anim {
  -webkit-filter: opacity(0);
          filter: opacity(0);
}
.anim.is-animated {
  -webkit-animation: fadeIn 1.5s both;
          animation: fadeIn 1.5s both;
}

@-webkit-keyframes fadeIn {
  0% {
    -webkit-filter: opacity(0);
            filter: opacity(0);
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    -webkit-filter: opacity(1);
            filter: opacity(1);
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes fadeIn {
  0% {
    -webkit-filter: opacity(0);
            filter: opacity(0);
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    -webkit-filter: opacity(1);
            filter: opacity(1);
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
.c-anchor-btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 16px;
  border-bottom: 1px solid currentColor;
  color: #453741;
  width: 100%;
  min-height: 70px;
  position: relative;
}
.c-anchor-btn {
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.c-anchor-btn:focus-visible {
  color: #B60081;
}
.c-anchor-btn:focus-visible::after {
  opacity: 1;
}
.c-anchor-btn::after {
  position: absolute;
  content: "";
  background: currentColor;
  width: 100%;
  height: 4px;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.c-anchor-btn .inn-txt {
  width: 100%;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 175%;
  letter-spacing: 0.05em;
  padding-right: 22px;
  position: relative;
}
.c-anchor-btn .inn-txt::after {
  position: absolute;
  content: "";
  -webkit-mask: url("../img/common/icon_arrow.svg") no-repeat center center/contain;
          mask: url("../img/common/icon_arrow.svg") no-repeat center center/contain;
  background: currentColor;
  width: 14px;
  height: auto;
  aspect-ratio: 1/1;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.c-dot-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 8px 16px;
}
.c-dot-list > li {
  font-size: 1rem;
  font-weight: 500;
  line-height: 175%;
  letter-spacing: 0.05em;
  padding-left: 16px;
  position: relative;
}
.c-dot-list > li::before {
  position: absolute;
  content: "";
  -webkit-mask: url("../img/common/icon_circle.svg") no-repeat center center/contain;
          mask: url("../img/common/icon_circle.svg") no-repeat center center/contain;
  background-color: #B60081;
  height: 1.75em;
  width: 8px;
  top: 0;
  left: 0;
}

.cont-section {
  background-color: #FBF3F9;
}
.cont-section .white-bg {
  padding-top: 105px;
  background-color: #fff;
  border-radius: 64px 64px 0 0;
}
.cont-section .cont + .cont {
  margin-top: 105px;
}
.cont-section .c-ttl02 {
  margin-bottom: 48px;
}
.cont-section .narrow {
  padding: 0 64px;
}
.cont-section .narrow p {
  letter-spacing: 0.05em;
  line-height: 1.9em;
  font-size: 1.125rem;
}
.cont-section .narrow p + p {
  margin-top: 28px;
}
.cont-section .narrow p + .c-ttl03 {
  margin-top: 80px;
  margin-bottom: 40px;
}
.cont-section .narrow .img-wrap {
  margin-top: 68px;
  border-radius: 30px;
  overflow: hidden;
}
.cont-section .narrow .img-wrap img {
  width: 100%;
}

.faq-cont .faq-area .faq-control {
  margin-bottom: 40px;
  margin-right: 64px;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.faq-cont .faq-area .faq-control > button:focus-visible {
  border: 2px solid #000;
  border-radius: 5px;
}
.faq-cont .faq-area .faq-control.mt-adj {
  margin-top: -127px;
  margin-bottom: 92px;
}
.faq-cont .c-q-area .txt {
  font-size: 24px;
  line-height: 175%;
}
.faq-cont .c-q-area.is-open {
  max-height: 1000px;
}
.faq-cont .c-a-area .a-inn {
  gap: 40px;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.faq-cont .c-a-area .a-inn .img-wrap {
  margin-top: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.faq-cont .c-a-area .a-inn .txt {
  width: calc(100% - 315px - 40px);
}
.faq-cont .slide-toggle {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5em;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.faq-cont .slide-toggle .label {
  font-size: 1.125rem;
  line-height: 175%;
  letter-spacing: 0.03em;
}
.faq-cont .slide-toggle .slider {
  position: relative;
  width: 56px;
  height: 32px;
  background: #ccc;
  border-radius: 24px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.faq-cont .slide-toggle[aria-pressed=true] .slider {
  background: #B60081;
}
.faq-cont .slide-toggle .slider::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.faq-cont .slide-toggle[aria-pressed=true] .slider::after {
  -webkit-transform: translateX(24px);
          transform: translateX(24px);
  background: #fff;
}

.c-a-area.has-c-table01 {
  padding-left: 0;
  padding-right: 0;
}

.c-table01 {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #000;
}
.c-table01 .cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.c-table01 .cont + .cont {
  margin-top: 0;
  border-top: 1px solid #000;
}
.c-table01 dt {
  padding: 23px 32px;
  background-color: #FBF3F9;
  font-weight: bold;
  width: 100%;
  font-size: 1.25rem;
  line-height: 150%;
}
.c-table01 dd {
  padding: 23px 32px 30px;
  font-size: 1.125rem;
  line-height: 175%;
  letter-spacing: 0.05em;
}

.c-tab-wrap {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}
.c-tab-wrap .tab {
  border-radius: 8px 8px 0 0;
  background: #C8C8C8;
  color: #000;
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding: 22px 0;
}
.c-tab-wrap .tab:focus {
  border: 2px solid #000;
}
.c-tab-wrap .tab.is-show {
  background: #B60081;
  color: #fff;
}

.c-entry-block {
  position: relative;
  padding-top: 110px;
  cursor: pointer;
  display: block;
}
.c-entry-block .circle {
  border-radius: 50%;
  position: absolute;
}
.c-entry-block .circle.green {
  background: #65B72F;
}
.c-entry-block .circle.orange {
  background: #FE8737;
}
.c-entry-block .circle.blue {
  background: #04B1B8;
}
.c-entry-block .circle.yellow {
  background: #FEDB37;
}
.c-entry-block .circle.l-blue {
  background: #29B9EE;
}
.c-entry-block .circle.circle01 {
  top: 0px;
  bottom: 74px;
  left: 40px;
  margin: auto;
  width: 40px;
  height: 40px;
}
.c-entry-block .circle.circle02 {
  left: min(138px, 9.8571428571vw);
  top: 0px;
  bottom: 324px;
  margin: auto;
  width: 180px;
  height: 180px;
  z-index: 2;
}
.c-entry-block .circle.circle03 {
  left: min(238px, 17vw);
  bottom: 0px;
  top: 210px;
  margin: auto;
  width: 20px;
  height: 20px;
  z-index: 2;
}
.c-entry-block .circle.circle04 {
  left: min(362px, 25.8571428571vw);
  top: 0px;
  margin: auto;
  width: 60px;
  height: 60px;
}
.c-entry-block .circle.circle05 {
  right: min(274px, 19.5714285714vw);
  left: 0;
  top: 70px;
  margin: auto;
  width: 20px;
  height: 20px;
}
.c-entry-block .circle.circle06 {
  right: min(457px, 32.6428571429vw);
  top: 40px;
  margin: auto;
  width: 40px;
  height: 40px;
}
.c-entry-block .circle.circle07 {
  right: min(173px, 12.3571428571vw);
  top: 60px;
  width: 240px;
  height: 240px;
}
.c-entry-block .circle.circle08 {
  top: 180px;
  right: min(93px, 6.6428571429vw);
  width: 20px;
  height: 20px;
}
.c-entry-block .circle.circle09 {
  right: min(72px, 5.1428571429vw);
  top: 54px;
  bottom: 0px;
  margin: auto;
  z-index: 2;
  width: 80px;
  height: 80px;
}
.c-entry-block .main-area {
  background: #B60081;
  color: #fff;
  border-radius: 50%/100% 100% 0 0;
  padding-top: min(180px, 12.8571428571vw);
  padding-bottom: min(380px, 27.1428571429vw);
  text-align: center;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-entry-block .main-ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: min(40px, 2.8571428571vw);
  margin-left: 13px;
}
.c-entry-block .main-ttl .ja {
  font-size: 3.5rem;
  line-height: 1.25;
  font-weight: bold;
  letter-spacing: 0.05em;
  display: inline-block;
}
.c-entry-block .main-ttl .en {
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.5;
  position: relative;
  padding-left: min(60px, 4.2857142857vw);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-entry-block .main-ttl .en::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  background: #fff;
}
.c-entry-block .main-ttl .icon {
  border-radius: 50%;
  position: relative;
  background: #fff;
  width: 80px;
  height: 80px;
  display: inline-block;
}
.c-entry-block .main-ttl .icon::after {
  content: "";
  -webkit-mask: url(../img/common/icon_arrow02.svg) no-repeat center/contain;
          mask: url(../img/common/icon_arrow02.svg) no-repeat center/contain;
  background: #B60081;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 21px;
  height: 21px;
}
.c-entry-block .desc {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: bold;
  margin-top: 30px;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.home .mv-section {
  position: relative;
}
.home .mv-section .inner-block {
  max-width: 1480px;
}
.home .mv-section .circle {
  position: absolute;
  border-radius: 50%;
}
.home .mv-section .circle.green {
  background: #65B72F;
}
.home .mv-section .circle.blue {
  background: #04B1B8;
}
.home .mv-section .circle.light-blue {
  background: #29B9EE;
}
.home .mv-section .circle.red {
  background: #B60081;
}
.home .mv-section .circle.orange {
  background: #FE8737;
}
.home .mv-section .circle.yellow {
  background: #FEDB37;
}
.home .mv-section .circle.circle01 {
  left: 60px;
  top: 453px;
  width: min(40px, 2.8571428571vw);
  height: min(40px, 2.8571428571vw);
}
.home .mv-section .circle.circle02 {
  left: min(100px, 7.1428571429vw);
  bottom: 237px;
  width: min(80px, 5.7142857143vw);
  height: min(80px, 5.7142857143vw);
}
.home .mv-section .circle.circle03 {
  left: 160px;
  top: 532px;
  width: min(20px, 1.4285714286vw);
  height: min(20px, 1.4285714286vw);
}
.home .mv-section .circle.circle04 {
  left: min(120px, 8.5714285714vw);
  bottom: 459px;
  width: min(160px, 11.4285714286vw);
  height: min(160px, 11.4285714286vw);
}
.home .mv-section .circle.circle05 {
  left: min(260px, 18.5714285714vw);
  top: 386px;
  width: min(120px, 8.5714285714vw);
  height: min(120px, 8.5714285714vw);
}
.home .mv-section .circle.circle06 {
  left: min(295px, 21.0714285714vw);
  bottom: 354px;
  width: min(20px, 1.4285714286vw);
  height: min(20px, 1.4285714286vw);
}
.home .mv-section .circle.circle07 {
  left: 0px;
  right: 381px;
  margin: auto;
  top: 150px;
  width: min(20px, 1.4285714286vw);
  height: min(20px, 1.4285714286vw);
}
.home .mv-section .circle.circle08 {
  left: 0px;
  right: 297px;
  margin: auto;
  top: 8px;
  bottom: 0px;
  width: min(80px, 5.7142857143vw);
  height: min(80px, 5.7142857143vw);
}
.home .mv-section .circle.circle09 {
  left: 26px;
  right: 0px;
  margin: auto;
  top: 0px;
  bottom: 304px;
  width: 20px;
  height: 20px;
}
.home .mv-section .circle.circle10 {
  left: 194px;
  right: 0px;
  margin: auto;
  top: 80px;
  width: min(80px, 5.7142857143vw);
  height: min(80px, 5.7142857143vw);
}
.home .mv-section .circle.circle11 {
  left: min(247px, 17.6428571429vw);
  right: 0px;
  margin: auto;
  top: 0px;
  bottom: 163px;
  width: min(40px, 2.8571428571vw);
  height: min(40px, 2.8571428571vw);
}
.home .mv-section .circle.circle12 {
  right: min(460px, 32.8571428571vw);
  bottom: 40px;
  width: min(120px, 8.5714285714vw);
  height: min(120px, 8.5714285714vw);
}
.home .mv-section .circle.circle13 {
  right: min(220px, 15.7142857143vw);
  top: 402px;
  width: min(40px, 2.8571428571vw);
  height: min(40px, 2.8571428571vw);
}
.home .mv-section .circle.circle14 {
  right: min(293px, 20.9285714286vw);
  top: 188px;
  width: min(120px, 8.5714285714vw);
  height: min(120px, 8.5714285714vw);
}
.home .mv-section .circle.circle15 {
  right: 176px;
  top: 281px;
  bottom: 0px;
  margin: auto;
  width: min(40px, 2.8571428571vw);
  height: min(40px, 2.8571428571vw);
}
.home .mv-section .circle.circle16 {
  right: min(121px, 8.6428571429vw);
  top: 351px;
  width: min(20px, 1.4285714286vw);
  height: min(20px, 1.4285714286vw);
}
.home .mv-section .circle.circle17 {
  right: min(51px, 3.6428571429vw);
  top: 466px;
  width: min(80px, 5.7142857143vw);
  height: min(80px, 5.7142857143vw);
}
.home .mv-section .circle.circle18 {
  right: min(90px, 6.4285714286vw);
  top: 604px;
  bottom: 0;
  margin: auto;
  width: min(64px, 4.5714285714vw);
  height: min(64px, 4.5714285714vw);
}
.home .mv-section .mv-splide {
  position: relative;
  top: 0;
  left: 0;
  background: transparent;
}
.home .mv-section .mv-splide .splide__track,
.home .mv-section .mv-splide .splide__list {
  min-height: 1607px;
}
.home .mv-section .mv-ttl {
  position: absolute;
  left: 71px;
  top: 41.6%;
  margin: auto;
  -webkit-transform: translateY(-41.6%);
          transform: translateY(-41.6%);
}
.home .mv-section .desc-area {
  position: absolute;
  top: 60%;
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  margin-top: 100px;
}
.home .mv-section .desc-area .desc {
  line-height: 3;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.home .mv-section .desc-area .strong {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 2;
  font-weight: bold;
  color: #B60081;
  margin-top: 25px;
}
.home .mv-section .mv-img {
  border-radius: 50%;
  width: min(200px, 14.2857142857vw);
  height: min(200px, 14.2857142857vw);
}
.home .mv-section .mv-img img {
  border-radius: 50%;
}
.home .mv-section .mv-img.mv-img01 {
  position: relative;
  top: 147px;
  left: 20px;
}
.home .mv-section .mv-img.mv-img02 {
  position: absolute;
  bottom: 61px;
  left: 228px;
}
.home .mv-section .mv-img.mv-img03 {
  position: absolute;
  top: 80px;
  right: 18px;
  width: min(160px, 11.4285714286vw);
  height: min(160px, 11.4285714286vw);
}
.home .mv-section .mv-img.mv-img04 {
  position: relative;
  top: 439px;
  right: 0px;
  left: min(297px, 21.2142857143vw);
  margin: auto;
}
.home .mv-section .mv-img.mv-img05 {
  position: absolute;
  bottom: 160px;
  right: 133px;
}
.home .mv-section .mv-main-img {
  position: absolute;
  right: 0;
  left: 0;
  top: 183px;
  margin: auto;
  text-align: center;
}
.home .mv-section .splide-navi {
  position: absolute;
  top: 46.3%;
  -webkit-transform: translateY(-46.3%);
          transform: translateY(-46.3%);
  right: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.home .mv-section .splide__pagination {
  gap: 24px;
}
.home .mv-section .splide__pagination button {
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background: #453741;
}
.home .mv-section .splide__pagination button:focus {
  border: 2px solid #000;
}
.home .mv-section .splide__pagination button.is-active {
  background: #B60081;
}
.home .mv-section .splide-toggle {
  background: #453741;
  color: #fff;
  font-weight: bold;
  width: 85px;
  border-radius: 80px;
  text-align: right;
  padding: 2px 0;
  position: relative;
  line-height: 1.75;
  letter-spacing: 0.05em;
  border: 1px solid #453741;
}
.home .mv-section .splide-toggle:focus {
  border: 2px solid #000;
}
.home .mv-section .splide-toggle::after {
  content: "";
  -webkit-mask: url("../img/common/icon_stop.svg") no-repeat center/contain;
          mask: url("../img/common/icon_stop.svg") no-repeat center/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
  margin: auto;
  background: #fff;
  width: 8px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  height: 10px;
}
.home .mv-section .splide-toggle .txt {
  padding-right: 20px;
}
.home .mv-section .splide-toggle.is-active::after {
  -webkit-mask: url("../img/common/icon_play.svg") no-repeat center/contain;
          mask: url("../img/common/icon_play.svg") no-repeat center/contain;
}
.home .message-section {
  position: relative;
  padding-top: 140px;
  padding-bottom: 160px;
}
.home .message-section .inner-block {
  max-width: 1240px;
}
.home .message-section .circle {
  border-radius: 50%;
  position: absolute;
}
.home .message-section .circle.red {
  background: #B60081;
}
.home .message-section .circle.blue {
  background: #04B1B8;
}
.home .message-section .circle.yellow {
  background: #FEDB37;
}
.home .message-section .circle.orange {
  background: #FE8737;
}
.home .message-section .circle.circle01 {
  top: 100px;
  right: min(318px, 22.7142857143vw);
  width: 40px;
  height: 40px;
}
.home .message-section .circle.circle02 {
  top: 5px;
  right: min(155px, 11.0714285714vw);
  width: 20px;
  height: 20px;
}
.home .message-section .circle.circle03 {
  bottom: 86px;
  left: min(275px, 19.6428571429vw);
  width: 20px;
  height: 20px;
}
.home .message-section .circle.circle04 {
  right: min(422px, 30.1428571429vw);
  bottom: 46px;
  width: 40px;
  height: 40px;
}
.home .message-section .circle.circle05 {
  right: min(243px, 17.3571428571vw);
  bottom: 90px;
  width: 80px;
  height: 80px;
}
.home .message-section .flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0px min(40px, 2.8571428571vw) 0;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: min(120px, 8.5714285714vw);
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
}
.home .message-section .img-wrap {
  width: min(400px, 28.5714285714vw);
  height: min(400px, 28.5714285714vw);
  border-radius: 50%;
}
.home .message-section .img-wrap img {
  border-radius: 50%;
}
.home .message-section .txt-area {
  margin-top: 57px;
}
.home .message-section .txt-area .txt {
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  margin-bottom: 58px;
}
.home .message-section .txt-area .btn-wrap {
  text-align: right;
}
.home .message-section .txt-area .btn-wrap .c-btn01 {
  text-align: left;
}
.home .job-section {
  padding-top: 100px;
  padding-bottom: 120px;
}
.home .job-section .inner-block {
  max-width: 1160px;
}
.home .job-section .c-ttl01 {
  text-align: center;
}
.home .job-section .ttl-desc {
  text-align: center;
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
.home .job-section .c-tab-wrap {
  margin-top: 67px;
}
.home .job-section .c-tab-wrap .tab {
  border-radius: 8px 8px 0 0;
  background: #C8C8C8;
  color: #000;
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding: 22px 0;
}
.home .job-section .c-tab-wrap .tab:focus {
  border: 2px solid #000;
}
.home .job-section .c-tab-wrap .tab.is-show {
  background: #B60081;
  color: #fff;
}
.home .job-section .splide__arrows {
  position: absolute;
  top: 0;
  bottom: 80px;
  margin: auto;
  z-index: 1;
  width: 100%;
}
.home .job-section .splide__arrows .splide__arrow {
  width: 48px;
  height: 48px;
  background: #453741;
  border-radius: 50%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.home .job-section .splide__arrows .splide__arrow::after {
  content: "";
  position: absolute;
  -webkit-mask: url(../img/common/icon_arrow.svg) no-repeat center/contain;
          mask: url(../img/common/icon_arrow.svg) no-repeat center/contain;
  background: #fff;
  width: 14px;
  height: 14px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.home .job-section .splide__arrows .splide__arrow svg {
  display: none;
}
.home .job-section .splide__arrows .splide__arrow.splide__arrow--prev {
  left: -8px;
}
.home .job-section .splide__arrows .splide__arrow.splide__arrow--prev::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.home .job-section .splide__arrows .splide__arrow.splide__arrow--next {
  right: -8px;
}
.home .job-section .splide__arrows .splide__arrow.splide__arrow--next::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.home .job-section .result-area {
  display: none;
  margin-top: 38px;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
}
.home .job-section .result-area.is-show {
  display: grid;
}
.home .job-section .btn-wrap {
  text-align: center;
  margin-top: 70px;
}
.home .job-section .btn-wrap .c-btn01 {
  text-align: left;
}
.home .job-section .splide__pagination {
  gap: 24px;
  margin-top: 38px;
}
.home .job-section .splide__pagination > li > button {
  border-radius: 50%;
  background: #453741;
  width: 8px;
  height: 8px;
}
.home .job-section .splide__pagination > li > button.is-active {
  background: #B60081;
}
.home .c-interview-section {
  padding-top: 140px;
  padding-bottom: 160px;
  position: relative;
}
.home .c-interview-section .inner-block {
  max-width: 1240px;
}
.home .work-section {
  padding-top: 100px;
  padding-bottom: 120px;
}
.home .work-section .inner-block {
  max-width: 1160px;
}
.home .work-section .c-ttl01 {
  text-align: center;
}
.home .work-section .flex-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: min(80px, 5.7142857143vw);
}
.home .work-section .box {
  border-radius: 32px;
  -webkit-box-shadow: 0 4px 24px rgba(182, 0, 129, 0.2);
          box-shadow: 0 4px 24px rgba(182, 0, 129, 0.2);
}
.home .work-section .box .img-area {
  border-radius: 32px 32px 0 0;
  position: relative;
  overflow: hidden;
}
.home .work-section .box .img-area img {
  border-radius: 32px 32px 0 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.home .work-section .box .txt-area {
  background: #fff;
  border-radius: 0 0 32px 32px;
  padding: 36px min(40px, 2.8571428571vw);
}
.home .work-section .box .box-ttl {
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.home .work-section .box .txt {
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-size: 1.125rem;
  margin-bottom: 33px;
}
.home .faq-section {
  padding-top: 140px;
  padding-bottom: 160px;
}
.home .faq-section .inner-block {
  max-width: 1240px;
}
.home .faq-section .faq-area {
  max-width: 920px;
  margin-left: auto;
  margin-right: 40px;
  margin-top: 55px;
}
.home .faq-section .btn-wrap {
  text-align: right;
  margin-right: 40px;
  margin-top: 64px;
}
.home .faq-section .btn-wrap .c-btn01 {
  text-align: left;
}

/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.interview + footer .c-entry-block {
  background-color: #FBF3F9;
}
.interview.staff {
  padding-bottom: 160px;
  background-color: #FBF3F9;
}
.interview .inner-block {
  margin: 0 auto;
  position: relative;
}
.interview .link-section {
  background-color: #FBF3F9;
  padding-top: 139px;
  padding-bottom: 160px;
}
.interview .c-kv-section .message {
  padding-bottom: 0 !important;
  margin-bottom: 0;
}
.interview .c-kv-section .name {
  color: #B60081;
}
.interview .cont-section .comment-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.interview .cont-section .comment-wrap.l-icon .txt-wrap {
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
      -ms-flex-order: 0;
          order: 0;
}
.interview .cont-section .comment-wrap.l-icon .icon {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
.interview .cont-section .comment-wrap .txt-wrap {
  width: calc(100% - 40px - 105px);
  border-radius: 24px;
  padding: 30px 40px 30px;
  background-color: #F3DDED;
}
.interview .cont-section .comment-wrap .txt-wrap p {
  margin-top: 18px;
  line-height: 1.8em;
}
.interview .cont-section .comment-wrap .txt-wrap.gray {
  background-color: #F0F0F0;
}
.interview .cont-section .comment-wrap .icon {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.interview .cont-section .comment-wrap .icon img {
  width: 100px;
  height: 100px;
  aspect-ratio: 1/1;
  display: block;
}
.interview .cont-section .comment-wrap .icon img + p {
  margin-top: 10px;
  font-size: 0.875rem;
  text-align: center;
}
.interview .cont-section .schedule-wrap {
  background-color: #F0F0F0;
  padding: 40px;
  border-radius: 40px;
}
.interview .cont-section .schedule-wrap li {
  display: grid;
  grid-template-columns: 13.625rem 1fr;
  gap: 40px;
  position: relative;
  padding-bottom: 27px;
  font-size: 1.125rem;
}
.interview .cont-section .schedule-wrap li::before {
  content: "";
  position: absolute;
  left: calc(3.125rem + 24px);
  margin: auto;
  display: block;
  width: 2px;
  height: 100%;
  background-color: #B60081;
}
.interview .cont-section .schedule-wrap li:first-child::before, .interview .cont-section .schedule-wrap li:last-child::before {
  height: calc(100% - 0.5em);
}
.interview .cont-section .schedule-wrap li:first-child::before {
  top: 1em;
}
.interview .cont-section .schedule-wrap li:last-child::before {
  bottom: 1em;
}
.interview .cont-section .schedule-wrap li:last-child {
  padding-bottom: 0;
}
.interview .cont-section .schedule-wrap li:last-child.has-txt-wrap::before {
  height: 1rem;
  bottom: inherit;
}
.interview .cont-section .schedule-wrap li .time-wrap {
  display: grid;
  grid-template-columns: 3.125rem 1fr;
  gap: 48px;
  color: #B60081;
}
.interview .cont-section .schedule-wrap li .time-wrap p {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 0;
  font-weight: bold;
}
.interview .cont-section .schedule-wrap li .time-wrap .time {
  color: #000;
  position: relative;
  font-family: "Quicksand", sans-serif;
  width: 3.125rem;
  letter-spacing: -0.05rem;
}
.interview .cont-section .schedule-wrap li .time-wrap .time::before {
  content: "";
  position: absolute;
  right: -29px;
  top: 16px;
  display: block;
  width: 8px;
  height: 8px;
  aspect-ratio: 1/1;
  background-color: #B60081;
  border-radius: 50px;
}
.interview .cont-section .img-wrap-section {
  margin-top: 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.interview .cont-section .img-wrap-section img {
  display: block;
  width: 100%;
}
.interview .c-interview-section {
  background-color: #FBF3F9;
}
.interview .c-interview-section .white-bg {
  padding-top: 98px;
  border-radius: 0 0 64px 64px;
  background-color: #fff;
}
.interview .c-interview-section .inner-block {
  padding-bottom: 120px;
}

/* -----------------------------------------------
* training-careersupport Module
* training-careersupportページ用
-------------------------------------------------- */
.training-careersupport .inner-block {
  max-width: 1240px;
}
.training-careersupport .contents-wrap {
  padding: 100px 0 70px;
}
.training-careersupport .content-block {
  max-width: 1032px;
  margin: 0 auto;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
.training-careersupport .c-ttl03 {
  margin-top: 55px;
  margin-bottom: 20px;
}
.training-careersupport .ib01 {
  display: none;
}
.training-careersupport .ib02 {
  display: none;
}
.training-careersupport .bg-gray {
  background-color: #F0F0F0;
}
.training-careersupport .bg-pink {
  color: #fff;
  background-color: #B60081;
}
.training-careersupport .bg-orange {
  background-color: #FE8737;
}
.training-careersupport .bg-yellow {
  background-color: #FEDB37;
}
.training-careersupport .bg-blue {
  background-color: #04B1B8;
}
.training-careersupport .bg-green {
  background-color: #65B72F;
}
.training-careersupport .bg-d-gray {
  background-color: #C8C8C8;
}
.training-careersupport .content-section + .content-section {
  margin-top: 100px;
}
.training-careersupport .diagram-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 34px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 70px 24px;
  margin: 50px 0;
  border-radius: 40px;
}
.training-careersupport .diagram-block .ttl {
  text-align: center;
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.training-careersupport .small-txt {
  font-size: 1rem;
}
.training-careersupport .training-section .diagram-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 8px;
  width: 100%;
  max-width: 936px;
}
.training-careersupport .training-section .diagram-wrap .process-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.training-careersupport .training-section .diagram-wrap .process-wrap:first-child .process-block::before {
  content: none;
}
.training-careersupport .training-section .diagram-wrap .process-ttl {
  display: block;
  padding: 9px 0;
  margin-bottom: 24px;
  width: 100%;
  height: 40px;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: bold;
  color: #fff;
  background-color: #453741;
  border-radius: 40px;
}
.training-careersupport .training-section .diagram-wrap .sub-process {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.training-careersupport .training-section .diagram-wrap .process-block {
  position: relative;
  height: 100%;
}
.training-careersupport .training-section .diagram-wrap .process-block::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -4px;
  width: 1px;
  background-image: repeating-linear-gradient(to bottom, #453741, #453741 4px, transparent 4px, transparent 8px);
}
.training-careersupport .training-section .diagram-wrap .process-block .process {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  height: 344px;
  margin-bottom: 14px;
}
.training-careersupport .training-section .diagram-wrap .process-block .process > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 160px;
  height: 160px;
  text-align: center;
  border-radius: 80px;
}
.training-careersupport .training-section .diagram-wrap .process-block .process > div.white {
  background-color: #fff;
}
.training-careersupport .training-section .diagram-wrap .process-block .process > div.m-pink {
  position: relative;
  background-color: #F3DDED;
}
.training-careersupport .training-section .diagram-wrap .process-block .process > div.m-pink::after {
  content: "";
  position: absolute;
  top: -68px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 102px;
  height: 110px;
  background: url(../img/training-careersupport/icon_diagram_arrow03.svg) center/contain no-repeat;
}
.training-careersupport .training-section .diagram-wrap .desc-txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 95px;
  text-align: center;
  font-weight: 500;
}
.training-careersupport .hr-section .diagram-wrap {
  display: grid;
  grid-template-columns: 1.27fr 1fr 1fr;
  max-width: 820px;
  width: 100%;
  gap: 16px;
}
.training-careersupport .hr-section .diagram-wrap .block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 24px;
  background-color: #fff;
}
.training-careersupport .hr-section .diagram-wrap .block:first-child .block-ttl {
  background-color: #B60081;
}
.training-careersupport .hr-section .diagram-wrap .block:last-child {
  position: relative;
}
.training-careersupport .hr-section .diagram-wrap .block:last-child::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -30px;
  width: 43px;
  height: 19px;
  background: url(../img/training-careersupport/icon_diagram_arrow01.svg) center/contain no-repeat;
}
.training-careersupport .hr-section .diagram-wrap .block-content {
  margin: auto 0;
  padding: 32px 24px;
  font-weight: bold;
}
.training-careersupport .hr-section .diagram-wrap .block-ttl {
  display: block;
  padding: 14px 0;
  height: 56px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  border-radius: 24px 24px 0 0;
  background-color: #453741;
}
.training-careersupport .hr-section .diagram-wrap .career-list {
  padding: 32px 24px;
}
.training-careersupport .hr-section .diagram-wrap .career-list .career {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 56px;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  border-radius: 100px;
}
.training-careersupport .hr-section .diagram-wrap .career-list .career.small {
  font-size: 1.25rem;
}
.training-careersupport .hr-section .diagram-wrap .career-list.hourly-list .career {
  position: relative;
}
.training-careersupport .hr-section .diagram-wrap .career-list.hourly-list .career::before {
  content: "";
  position: absolute;
  top: -32px;
  right: 45px;
  width: 19px;
  height: 32px;
  background: url(../img/training-careersupport/icon_diagram_arrow02.svg) center/contain no-repeat;
}
.training-careersupport .hr-section .diagram-wrap .career-list.hourly-list .career:first-child::before {
  content: none;
}
.training-careersupport .hr-section .diagram-wrap .career-list.hourly-list .career-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.training-careersupport .hr-section .diagram-wrap .career-list.hourly-list .career-wrap .career {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 16px;
  margin-top: 0;
}
.training-careersupport .hr-section .diagram-wrap .career-list.hourly-list .career-wrap .career:first-child {
  padding: 0 15px;
}
.training-careersupport .hr-section .diagram-wrap .career-list.hourly-list .career-wrap .career:last-child {
  padding: 0 10px;
}
.training-careersupport .hr-section .diagram-wrap .career-list.dm-list .career {
  position: relative;
}
.training-careersupport .hr-section .diagram-wrap .career-list.dm-list .career::before, .training-careersupport .hr-section .diagram-wrap .career-list.dm-list .career::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -52px;
  width: 40px;
  height: 2px;
  background-color: #453741;
  border-radius: 10px;
}
.training-careersupport .hr-section .diagram-wrap .career-list.dm-list .career::before {
  -webkit-transform: translateY(calc(-50% + 4px));
          transform: translateY(calc(-50% + 4px));
}
.training-careersupport .hr-section .diagram-wrap .career-list.dm-list .career::after {
  -webkit-transform: translateY(calc(-50% - 4px));
          transform: translateY(calc(-50% - 4px));
}
.training-careersupport .hr-section .diagram-wrap .career-list.dm-list .career:last-child {
  border-radius: 16px;
}
.training-careersupport .hr-section .diagram-wrap .position-list {
  width: 100%;
  font-weight: bold;
}
.training-careersupport .hr-section .diagram-wrap .position-list > li {
  position: relative;
  padding-left: 25px;
  line-height: 1;
}
.training-careersupport .hr-section .diagram-wrap .position-list > li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 10px;
  width: 4px;
  height: 4px;
  background-color: #453741;
  border-radius: 4px;
}
.training-careersupport .hr-section .diagram-wrap .position-list > li + li {
  margin-top: 12px;
}
.training-careersupport .hr-section .diagram-wrap .etc-txt {
  text-align: right;
}
.training-careersupport .hr-section .hr-list {
  margin-top: 60px;
  list-style-type: decimal;
  list-style-position: inside;
  font-size: 1.125rem;
  font-weight: bold;
}
.training-careersupport .hr-section .hr-list > li::marker {
  font-weight: bold;
}
.training-careersupport .hr-section .hr-list > li + li {
  margin-top: 18px;
}
.training-careersupport .hr-section .hr-list .txt {
  font-weight: 500;
}
.training-careersupport .career-section .diagram-wrap {
  width: 100%;
  max-width: 712px;
}
.training-careersupport .career-section .diagram-wrap .career-list .career-wrap {
  display: grid;
  grid-template-columns: 1fr 1.96fr;
}
.training-careersupport .career-section .diagram-wrap .career-list .career-wrap .career-ttl, .training-careersupport .career-section .diagram-wrap .career-list .career-wrap .career-txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  height: 80px;
}
.training-careersupport .career-section .diagram-wrap .career-list .career-wrap .career-ttl {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 45px 0 0 45px;
}
.training-careersupport .career-section .diagram-wrap .career-list .career-wrap .career-txt {
  padding-left: 92px;
  border-radius: 0 45px 45px 0;
  background-color: #fff;
}
.training-careersupport .career-section .diagram-wrap .career-list .career-wrap + .career-wrap {
  position: relative;
  margin-top: 46.5px;
}
.training-careersupport .career-section .diagram-wrap .career-list .career-wrap + .career-wrap::before {
  content: "";
  position: absolute;
  top: -46.5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 21px;
  height: 46.5px;
  background: url(../img/training-careersupport/icon_diagram_arrow04.svg) center/contain no-repeat;
}
.training-careersupport .career-section .diagram-wrap .txt {
  margin-top: 26px;
}

/* -----------------------------------------------
* work Module
* workページ用
-------------------------------------------------- */
.work {
  padding-bottom: 160px;
}
.work .relation-section .inner-block,
.work .work-section .inner-block {
  max-width: 1240px;
}
.work .relation-section {
  padding-block: 224px 120px;
}
.work .relation-section .contents-wrap {
  display: grid;
  grid-template-columns: 1fr min(15%, 145px) clamp(140px, 15%, 187px);
  row-gap: 24px;
}
.work .relation-section .contents-wrap > .arrow-area {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.work .relation-section .arrow-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px 24px;
}
.work .relation-section .arrow-area .txt {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.05em;
  text-align: center;
}
.work .relation-section .arrow-area .ico-arrow {
  display: inline-block;
  width: 34px;
  height: auto;
  aspect-ratio: 34/28;
}
.work .relation-section .ttl {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.05em;
}
.work .relation-section .company-store-area {
  border-radius: 32px;
  background: #F3DDED;
  padding: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  height: 100%;
}
.work .relation-section .company-store-area .work-area {
  border-radius: 24px;
  background-color: #FFFFFF;
  border: 1px solid #B60081;
  padding: 32px;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(120px, 160px) 1fr;
  grid-template-areas: "img ttl" "img list";
  gap: 16px 24px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.work .relation-section .company-store-area .work-area .ttl {
  grid-area: ttl;
  color: #B60081;
}
.work .relation-section .company-store-area .work-area .img-area {
  grid-area: img;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #B60081;
  color: #FFFFFF;
  padding: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
}
.work .relation-section .company-store-area .work-area .img-area img {
  max-width: 80px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.work .relation-section .company-store-area .work-area .img-area .txt {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.05em;
}
.work .relation-section .company-store-area .work-area .c-dot-list {
  grid-area: list;
}
.work .relation-section .company-store-area .arrow-area {
  width: 100%;
}
.work .relation-section .company-store-area .arrow-area .arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-flex: 2;
  -webkit-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
.work .relation-section .company-store-area .arrow-area .arrow .ico-arrow {
  stroke: #B60081;
  width: 30px;
}
.work .relation-section .company-store-area .arrow-area .arrow.company {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.work .relation-section .company-store-area .arrow-area .arrow.company .ico-arrow {
  rotate: 90deg;
}
.work .relation-section .company-store-area .arrow-area .arrow.store .ico-arrow {
  rotate: -90deg;
}
.work .relation-section .customer-area {
  border-radius: 24px;
  border: 1px solid #B60081;
  background: #FFFFFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
}
.work .relation-section .customer-area .img-area {
  max-width: 120px;
}
.work .work-section {
  padding-block: 120px;
}
.work .work-section .anchor-group-wrap {
  margin-top: 56px;
}
.work .work-section .anchor-group-wrap .anchor-group-area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 40px;
}
.work .work-section .anchor-group-wrap .anchor-group-area {
  border-radius: 24px;
  background: #FBF3F9;
  padding: 50px 64px 64px;
}
.work .work-section .anchor-group-wrap .anchor-group-area .c-ttl03 {
  margin-bottom: 24px;
}
.work .work-section .anchor-group-wrap .anchor-group-area .anchor-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
}
.work .work-section .anchor-group-wrap .anchor-group-area .anchor-list .c-anchor-btn {
  height: 100%;
}
.work .work-section .anchor-group-wrap_sticky {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas: "nav btn";
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 84vw;
}
.work .work-section h3.c-ttl02 {
  margin-top: 120px;
}
.work .work-section .job-box-area {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100vw - 32px, 375px), 1fr));
  gap: 40px;
}
.work .work-section .c-job-box {
  background: transparent;
  padding-top: 100px;
  margin-top: -100px;
  height: calc(100% + 100px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.work .work-section .c-job-box .box-ttl {
  font-size: 1.5rem;
  padding: 16px 24px;
}
.work .work-section .c-job-box .white-area {
  background: #FBF3F9;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding-inline: 40px;
  padding-bottom: 40px;
}
.work .work-section .c-job-box .white-area > .txt {
  margin-top: 24px;
}
.work .work-section .c-job-box .white-area .balloon {
  font-size: 1.125rem;
}
.work .work-section .c-job-box .white-area > .img-area:not(.has-txtbox) img {
  max-height: 224px;
  max-width: 100%;
  width: auto;
  height: 100%;
}

.message {
  padding-bottom: 160px;
}
.message .inner-block {
  margin: 0 auto;
  position: relative;
}
.message .c-kv-section .desc-area.has-img .desc {
  line-height: 1.75;
}
.message .message-section {
  padding-top: 250px;
  padding-bottom: 240px;
  position: relative;
}
.message .message-section .inner-block {
  text-align: center;
}
.message .message-section .inner-block .section-ttl {
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-size: 2rem;
  color: #B60081;
}
.message .message-section .inner-block .section-ttl + .section-txt {
  margin-top: 48px;
}
.message .message-section .inner-block .section-txt {
  line-height: 3;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.message .message-section .inner-block .section-txt + .section-txt {
  margin-top: 39px;
}
.message .message-section .flow-img {
  position: absolute;
  aspect-ratio: 1/1;
  z-index: 2;
}
.message .message-section .flow-img > img {
  width: 100%;
  height: 100%;
  display: block;
}
.message .message-section .flow-img.img01 {
  width: 240px;
  top: 80px;
  left: min(120px, 8.5714285714vw);
}
.message .message-section .flow-img.img02 {
  width: 160px;
  top: 394px;
  right: min(64px, 4.5714285714vw);
}
.message .message-section .flow-img.img03 {
  width: 184px;
  bottom: 216px;
  left: min(104px, 7.4285714286vw);
}
.message .message-section .flow-img.img04 {
  width: 280px;
  bottom: 45px;
  right: min(112px, 8vw);
}
.message .message-section .flow-deco {
  position: absolute;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 50%;
  z-index: 1;
}
.message .message-section .flow-deco.blue {
  background: #04B1B8;
}
.message .message-section .flow-deco.l-blue {
  background: #29B9EE;
}
.message .message-section .flow-deco.primary {
  background: #B60081;
}
.message .message-section .flow-deco.orange {
  background: #FE8737;
}
.message .message-section .flow-deco.yellow {
  background: #FEDB37;
}
.message .message-section .flow-deco.green {
  background: #65B72F;
}
.message .message-section .flow-deco.deco01 {
  width: 40px;
  top: 112px;
  left: min(430px, 30.7142857143vw);
}
.message .message-section .flow-deco.deco02 {
  width: 80px;
  top: 160px;
  right: min(320px, 22.8571428571vw);
}
.message .message-section .flow-deco.deco03 {
  width: 40px;
  top: 260px;
  right: min(76px, 5.4285714286vw);
}
.message .message-section .flow-deco.deco04 {
  width: 80px;
  top: 197px;
  left: min(68px, 4.8571428571vw);
}
.message .message-section .flow-deco.deco05 {
  width: 20px;
  top: 493px;
  left: min(200px, 14.2857142857vw);
}
.message .message-section .flow-deco.deco06 {
  width: 40px;
  top: 581px;
  left: min(254px, 18.1428571429vw);
}
.message .message-section .flow-deco.deco07 {
  width: 64px;
  top: 543px;
  right: min(248px, 17.7142857143vw);
}
.message .message-section .flow-deco.deco08 {
  width: 40px;
  top: 737px;
  left: min(87px, 6.2142857143vw);
}
.message .message-section .flow-deco.deco09 {
  width: 80px;
  top: 835px;
  left: min(174px, 12.4285714286vw);
}
.message .message-section .flow-deco.deco10 {
  width: 20px;
  top: 865px;
  right: min(116px, 8.2857142857vw);
}
.message .message-section .flow-deco.deco11 {
  width: 32px;
  bottom: 621px;
  right: min(208px, 14.8571428571vw);
}
.message .message-section .flow-deco.deco12 {
  width: 20px;
  bottom: 491px;
  left: min(260px, 18.5714285714vw);
}
.message .message-section .flow-deco.deco13 {
  width: 64px;
  bottom: 216px;
  left: min(234px, 16.7142857143vw);
}
.message .message-section .flow-deco.deco14 {
  width: 32px;
  bottom: 150px;
  left: min(350px, 25vw);
}
.message .message-section .flow-deco.deco15 {
  width: 120px;
  bottom: 230px;
  right: min(76px, 5.4285714286vw);
}
.message .message-section .flow-deco.deco16 {
  width: 20px;
  bottom: 85px;
  right: min(442px, 31.5714285714vw);
}
.message .initiative-section {
  padding-block: 100px 120px;
}
.message .initiative-section .c-ttl02 {
  margin-bottom: 51px;
}
.message .initiative-section .section-txt {
  font-size: 1.125rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-bottom: 70px;
}
.message .initiative-section .cont {
  max-width: 1032px;
  margin-inline: auto;
}
.message .initiative-section .cont .initiative-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.message .initiative-section .cont .initiative-list > li {
  width: calc((100% - 40px) / 2);
  min-width: 300px;
  border: 1px solid #B60081;
  padding-left: clamp(20px, 40px, min(40px, 2.8571428571vw));
  padding-right: clamp(20px, 40px, min(40px, 2.8571428571vw));
  padding-top: 30px;
  padding-bottom: 30px;
  border-radius: 24px;
}
.message .initiative-section .cont .initiative-list > li > .ttl {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #B60081;
  margin-bottom: 30px;
}
.message .initiative-section .cont .initiative-list > li > .img {
  width: 100%;
}
.message .initiative-section .cont .initiative-list > li > .img > img {
  border-radius: 16px;
  width: 100%;
}
.message .initiative-section .cont .initiative-list > li > .txt {
  margin-top: 15px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-size: 1.125rem;
}
.message .initiative-section .audience-message-wrap {
  background: #FBF3F9;
  margin-top: 120px;
  padding-block: 65px 70px;
  border-radius: 40px;
  padding-inline: clamp(20px, 64px, min(64px, 4.5714285714vw));
}
.message .initiative-section .audience-message-wrap > .inn {
  max-width: 904px;
  margin: auto;
}
.message .initiative-section .audience-message-wrap > .inn .note {
  margin-top: 33px;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.message .initiative-section .audience-message-wrap > .inn .note + .note {
  margin-top: 0;
}
.message .initiative-section .audience-message-wrap .section-txt {
  margin-bottom: 35px;
}
.message .initiative-section .audience-message-wrap .data-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.message .initiative-section .audience-message-wrap .data-list > li {
  width: calc((100% - 40px) / 2);
  background: #FFFFFF;
  border: 1px solid #B60081;
  border-radius: 24px;
  min-width: 427px;
}
.message .initiative-section .audience-message-wrap .data-list > li > .ttl {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #B60081;
  margin-bottom: 48px;
  text-align: center;
}
.message .initiative-section .audience-message-wrap .data-list > li > .img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.message .initiative-section .audience-message-wrap .data-list > li .txt {
  color: #B60081;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
}
.message .initiative-section .audience-message-wrap .data-list > li .num {
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  line-height: 1.25;
  color: #B60081;
}
.message .initiative-section .audience-message-wrap .data-list > li:first-child {
  padding: 26px 40px 40px;
}
.message .initiative-section .audience-message-wrap .data-list > li:first-child > .txt {
  font-size: 2rem;
}
.message .initiative-section .audience-message-wrap .data-list > li:first-child > .txt .num {
  font-size: 5rem;
}
.message .initiative-section .audience-message-wrap .data-list > li:nth-child(2) {
  padding: 26px 40px 30px;
}
.message .initiative-section .audience-message-wrap .data-list > li:nth-child(2) .ttl {
  margin-bottom: 32px;
}
.message .initiative-section .audience-message-wrap .data-list > li:nth-child(2) .txt-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(10px, 26px, min(26px, 1.8571428571vw));
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 15px;
}
.message .initiative-section .audience-message-wrap .data-list > li:nth-child(2) .txt-inn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.message .initiative-section .audience-message-wrap .data-list > li:nth-child(2) .txt {
  font-size: 1.5rem;
}
.message .initiative-section .audience-message-wrap .data-list > li:nth-child(2) .num {
  font-size: 3.5rem;
  line-height: 1;
}
.message .initiative-section .audience-message-wrap .data-list > li:nth-child(2) .small {
  font-size: 1.5rem;
  display: inline-block;
  padding-left: 4px;
}
.message .initiative-section .audience-message-wrap .data-list > li:nth-child(3) {
  padding: 30px 40px 40px;
}
.message .initiative-section .audience-message-wrap .data-list > li:nth-child(3) .ttl {
  margin-bottom: 30px;
}
.message .initiative-section .audience-message-wrap .data-list > li:nth-child(3) .composition-table .num {
  color: #B60081;
  font-size: 1.25rem;
  line-height: 1;
  width: 25px;
  display: inline-block;
}
.message .initiative-section .audience-message-wrap .data-list > li:nth-child(3) .composition-table .ja {
  font-size: 0.75rem;
  color: #B60081;
  display: inline-block;
  padding-left: 2px;
  line-height: 1;
}
.message .initiative-section .audience-message-wrap .data-list > li:nth-child(3) .composition-table .symbol {
  font-size: 0.75rem;
  color: #B60081;
  line-height: 0.9;
  display: inline-block;
  padding-left: 2px;
}
.message .initiative-section .audience-message-wrap .data-list > li:nth-child(3) .composition-table tr + tr th {
  padding-top: 5px;
}
.message .initiative-section .audience-message-wrap .data-list > li:nth-child(3) .composition-table th {
  padding-right: 16px;
}
.message .initiative-section .audience-message-wrap .data-list > li:nth-child(3) .composition-table td img {
  vertical-align: text-bottom;
}
.message .initiative-section .audience-message-wrap .data-list > li:nth-child(3) .composition-table td:last-child {
  text-align: end;
  padding-left: min(20px, 1.4285714286vw);
}
.message .initiative-section .audience-message-wrap .data-list > li:nth-child(3) .composition-table td:last-child .num {
  width: inherit;
}
.message .initiative-section .audience-message-wrap .data-list > li:nth-child(4) {
  padding: 30px 40px 35px;
}
.message .initiative-section .audience-message-wrap .data-list > li:nth-child(4) .ttl {
  margin-bottom: 25px;
}
.message .initiative-section .audience-message-wrap .data-list > li:nth-child(4) .txt-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.message .initiative-section .audience-message-wrap .data-list > li:nth-child(4) .txt-wrap .inn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  max-width: 131px;
  width: 100%;
}
.message .initiative-section .audience-message-wrap .data-list > li:nth-child(4) .txt-wrap .inn .txt {
  font-size: 0.875rem;
  max-width: 67px;
  display: block;
  text-align: start;
  width: 100%;
}
.message .initiative-section .audience-message-wrap .data-list > li:nth-child(4) .txt-wrap .txt {
  font-size: 1.5rem;
}
.message .initiative-section .audience-message-wrap .data-list > li:nth-child(4) .txt-wrap .txt .num {
  font-size: 3.5rem;
  display: inline-block;
  padding-right: 4px;
}
.message .initiative-section .audience-message-wrap .data-list > li:nth-child(4) .txt-wrap + .txt-wrap {
  padding-bottom: 19px;
  border-bottom: 1px solid #B60081;
}
.message .initiative-section .audience-message-wrap .data-list > li:nth-child(4) .txt-wrap + .txt-wrap .num {
  padding-right: 8px;
}
.message .initiative-section .audience-message-wrap .data-list > li:nth-child(4) > .txt {
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-top: 7px;
}
.message .initiative-section .audience-message-wrap .data-list > li:nth-child(4) > .txt .num {
  font-size: 2.5rem;
  display: inline-block;
  padding-inline: 2px;
  line-height: 1.4;
}

.environment .inner-block {
  margin: 0 auto;
  position: relative;
}
.environment .inner-block.pt {
  padding-top: 80px;
}
.environment .inner-block.pb {
  padding-bottom: 120px;
}
.environment .cont-section + .cont-section .white-bg {
  border-radius: inherit;
}
.environment .cont-section.faq-cont .white-bg {
  border-radius: 0 0 64px 64px;
}
.environment .support-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.environment .support-list li {
  border-radius: 24px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.environment .support-list li .head {
  background-color: #B60081;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  padding: 14px 10px;
  line-height: 150%;
}
.environment .support-list li .cont-wrap {
  background-color: #FBF3F9;
  padding: 40px;
  padding-bottom: 22px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.environment .support-list li .cont-wrap img {
  margin: 0 auto;
  display: block;
  max-width: 112px;
  width: 100%;
}
.environment .support-list li .cont-wrap img + p {
  margin-top: 28px;
  line-height: 175%;
}
.environment .welfare-list {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: stretch;
}
.environment .welfare-list li {
  border-radius: 24px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  border: 1px solid #B60081;
  padding: 20px 40px;
}
.environment .welfare-list li .head {
  color: #B60081;
  font-size: 1.5rem;
}
.environment .welfare-list li .head + p {
  margin-top: 20px;
  line-height: 1.72em;
}
.environment .welfare-list li .cont-wrap {
  background-color: #FBF3F9;
  padding: 40px;
  padding-bottom: 22px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.environment .welfare-list li .cont-wrap img {
  margin: 0 auto;
  display: block;
  max-width: 112px;
  width: 100%;
}
.environment .welfare-list li .cont-wrap img + p {
  margin-top: 28px;
  line-height: 1.85em;
}

.sitemap {
  padding-bottom: 156px;
}
.sitemap .c-kv-section {
  margin-top: 60px;
}
.sitemap .c-kv-section .white-bg::before {
  top: -98px;
  background: #29B9EE;
}
.sitemap .c-kv-section .white-bg::after {
  top: 37px;
}
.sitemap .sitemap-block {
  margin-top: 128px;
  padding: 128px 0;
}
.sitemap .sitemap-block .inner-block {
  max-width: 1240px;
}
.sitemap .sitemap-block .site-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 77px min(174px, 12.4285714286vw);
  padding: 0 min(64px, 4.5714285714vw);
}
.sitemap .sitemap-block .site-list > li {
  width: 228px;
}
.sitemap .sitemap-block .site-list > li > a, .sitemap .sitemap-block .site-list > li button {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
  position: relative;
  margin-left: 15px;
}
.sitemap .sitemap-block .site-list > li > a::before, .sitemap .sitemap-block .site-list > li button::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -15px;
  background: #B60081;
  border-radius: 50%;
  width: 8px;
  height: 8px;
}
.sitemap .sitemap-block .site-list > li > button {
  cursor: initial;
}
.sitemap .sitemap-block .site-list > li > button:focus {
  border: 2px solid #000;
  border-radius: 5px;
}
.sitemap .sitemap-block .site-list > li > a {
  padding-bottom: 5px;
  -webkit-text-decoration: underline transparent;
          text-decoration: underline transparent;
}
.sitemap .sitemap-block .sub-list {
  margin-top: 6px;
  margin-left: 24px;
}
.sitemap .sitemap-block .sub-list > li {
  margin-bottom: 10px;
}
.sitemap .sitemap-block .sub-list > li:last-child {
  margin-bottom: 0;
}
.sitemap .sitemap-block .sub-list > li > a {
  position: relative;
  line-height: 1.75;
  display: inline-block;
  margin-left: 21px;
  -webkit-text-decoration: underline transparent;
          text-decoration: underline transparent;
}
.sitemap .sitemap-block .sub-list > li > a::before {
  content: "";
  width: 12px;
  height: 1px;
  background: #000;
  position: absolute;
  top: 16px;
  left: -21px;
}

.bg-body-pink {
  background: #FBF3F9;
}

.error .error-block {
  text-align: center;
  padding-top: 225px;
  padding-bottom: 164px;
}
.error .error-block .c-ttl01 {
  text-align: center;
}
.error .error-block .txt {
  line-height: 1.75;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-bottom: 82px;
}
.error .error-block .txt .strong {
  color: #B60081;
}

.recruitment .inner-block {
  margin: 0 auto;
  position: relative;
}
.recruitment .c-kv-section .desc-area.has-img .desc {
  line-height: 1.75;
}
.recruitment .c-anchor-section .c-anchor-btn {
  height: 100%;
}
.recruitment > .inn {
  padding-block: 100px 120px;
}
.recruitment .recruitment-section .inner-block > .cont {
  max-width: 1032px;
  margin: auto;
}
.recruitment .recruitment-section .section-txt {
  line-height: 1.75;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.recruitment .recruitment-section .section-txt.small {
  font-size: 1rem;
}
.recruitment .recruitment-section .section-txt + .section-txt {
  margin-top: 40px;
}
.recruitment .recruitment-section + .recruitment-section {
  padding-top: 120px;
}
.recruitment .recruitment-section .c-tab-wrap {
  margin-top: 80px;
}
.recruitment .recruitment-section .recruitment-dl {
  margin-top: 40px;
}
.recruitment .recruitment-section .recruitment-dl dt .block {
  display: block;
}
.recruitment .recruitment-section .recruitment-dl dd > .inn + .inn {
  margin-top: 34px;
}
.recruitment .recruitment-section .recruitment-dl dd > .inn .txt {
  display: block;
}
.recruitment .recruitment-section .recruitment-dl dd > .inn .txt > .inn {
  display: inline-block;
  padding-left: 40px;
}
.recruitment .recruitment-section .recruitment-dl dd > .inn .note {
  font-size: 1rem;
  display: block;
}
.recruitment .recruitment-section .recruitment-dl dd > .inn .note.left {
  padding-left: 10px;
  display: inline-block;
}
.recruitment .recruitment-section .recruitment-dl dd > .inn .num-list {
  counter-reset: recruitment-count 0;
}
.recruitment .recruitment-section .recruitment-dl dd > .inn .num-list > li {
  position: relative;
  padding-left: 20px;
}
.recruitment .recruitment-section .recruitment-dl dd > .inn .num-list > li + li {
  margin-top: 17px;
}
.recruitment .recruitment-section .recruitment-dl dd > .inn .num-list > li::before {
  counter-increment: recruitment-count 1;
  content: counter(recruitment-count) ". ";
  position: absolute;
  display: block;
  left: 0;
}
.recruitment .flow-section .anchor-link {
  color: #B60081;
  text-decoration: underline;
  -webkit-text-decoration-color: #B60081;
          text-decoration-color: #B60081;
  text-underline-offset: 4px;
}
.recruitment .flow-section .flow-wrap {
  padding-top: 80px;
}
.recruitment .flow-section .flow-wrap .txt {
  font-size: 1.125rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
.recruitment .flow-section .flow-wrap .flow-list {
  counter-reset: flow-count 0;
  padding-top: 40px;
}
.recruitment .flow-section .flow-wrap .flow-list > li {
  border: 1px solid #B60081;
  border-radius: 24px;
  padding-block: 30px;
}
.recruitment .flow-section .flow-wrap .flow-list > li + li {
  margin-top: 48px;
  position: relative;
}
.recruitment .flow-section .flow-wrap .flow-list > li + li::before {
  content: "";
  position: absolute;
  background: url("../img/recruitment/arrow.svg") no-repeat no-repeat center center/contain;
  display: block;
  width: 28px;
  aspect-ratio: 28/16;
  top: -32px;
  left: 0;
  right: 0;
  margin: auto;
}
.recruitment .flow-section .flow-wrap .flow-list > li dl {
  display: grid;
  grid-template-columns: min(412px, 29.4285714286vw) 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.recruitment .flow-section .flow-wrap .flow-list > li dl dt {
  padding: 0 10px 0 min(32px, 2.2857142857vw);
  border-right: 1px solid #B60081;
}
.recruitment .flow-section .flow-wrap .flow-list > li dl dt .inn {
  padding-left: clamp(70px, 96px, min(96px, 6.8571428571vw));
  font-size: 1.5rem;
  color: #B60081;
  display: block;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.recruitment .flow-section .flow-wrap .flow-list > li dl dt .inn {
  position: relative;
}
.recruitment .flow-section .flow-wrap .flow-list > li dl dt .inn::before {
  counter-increment: flow-count 1;
  content: counter(flow-count, decimal-leading-zero) "";
  position: absolute;
  background: #B60081;
  width: 64px;
  height: 64px;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  padding: 10px;
  color: #FFFFFF;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.5rem;
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
}
.recruitment .flow-section .flow-wrap .flow-list > li dd {
  font-size: 1.125rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  padding-inline: min(32px, 2.2857142857vw);
}
.recruitment .flow-section .flow-wrap .flow-list > li:last-child {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px;
}
.recruitment .flow-section .flow-wrap .flow-list > li:last-child .txt {
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #B60081;
  font-weight: bold;
}
.recruitment .contact-section .inner-block > .cont {
  background: #FBF3F9;
  padding: 60px min(60px, 4.2857142857vw);
  border-radius: 24px;
}
.recruitment .contact-section .inner-block > .cont > dl .cont {
  display: grid;
  grid-template-columns: min(245px, 17.5vw) 1fr;
  gap: min(40px, 2.8571428571vw);
}
.recruitment .contact-section .inner-block > .cont > dl .cont > dt {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #B60081;
}
.recruitment .contact-section .inner-block > .cont > dl .cont + .cont {
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid #453741;
}
.recruitment .contact-section .inner-block > .cont > dl .cont > dd {
  font-size: 1.125rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
}

.faq .inner-block {
  margin: 0 auto;
  position: relative;
}
.faq .inner-block.pt {
  padding-top: 80px;
}
.faq .inner-block.pb {
  padding-bottom: 120px;
}
.faq .contents-wrap {
  padding: 120px 0 70px;
}
.faq .cont-section {
  background-color: #fff;
}
.faq .cont-section + .cont-section {
  margin-top: 120px;
}
.faq .c-faq-box {
  margin-bottom: 42px;
}
.faq .faq-cont .c-q-area .txt {
  font-size: 1.125rem;
}
.faq .faq-cont .c-a-area {
  padding-right: 30px;
}
.faq .faq-cont .c-a-area .a-inn .txt {
  width: 100%;
}
.faq .faq-cont .c-a-area .a-inn .link {
  display: inline-block;
  margin-top: 20px;
  font-size: 1.125rem;
}
@media only screen and (max-width: 767px) {
  body {
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  #wrapper {
    min-width: 320px;
  }
  .inner-block {
    padding-left: 20px;
    padding-right: 20px;
  }
  .pc {
    display: none !important;
  }
  .c-header {
    padding: 6px 8px 0px 8px;
  }
  .c-header .logo-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    padding: 10px 0 10px 32px;
  }
  .c-header .logo-area img {
    width: 70px;
  }
  .c-header .logo-area .txt {
    font-size: 0.75rem;
  }
  .c-header .h-menu {
    display: none;
  }
  .c-header .r-area {
    padding: 10px min(25px, 6.4102564103vw) 4px 12px;
  }
  .c-header .entry-btn {
    font-size: 0.875rem;
    padding: 8px 15px;
  }
  .c-header .toggle-btn {
    margin-left: 10px;
    width: 50px;
    height: 50px;
  }
  .c-header .br-1200 {
    display: none;
  }
  .h-toggle-menu .inn {
    padding-bottom: 40px;
  }
  .block-skip {
    font-size: 1rem;
    line-height: 1.5;
  }
  #loading .logo-area img {
    width: 134px;
  }
  #loading .logo-area .txt {
    font-size: 1.125rem;
  }
  footer {
    margin-top: -3px;
  }
  .footer-banner-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 32px 24px;
    margin-top: -10px;
    gap: 14px;
  }
  .footer-banner-area .footer-banner {
    gap: 8px;
    padding: 17px 24px 21px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer-banner-area .txt {
    font-size: 1rem;
  }
  .footer-banner-area .txt .sp-small {
    font-size: 0.75rem;
  }
  .footer-banner-area .txt .large {
    font-size: 1rem;
  }
  .footer-banner-area .icon {
    width: 32px;
    height: 32px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .footer-banner-area .icon::after {
    width: 11px;
    height: 11px;
  }
  .c-footer {
    padding-top: 47px;
  }
  .c-footer .inner-block {
    padding-left: 24px;
    padding-right: 24px;
  }
  .c-footer .logo-area {
    gap: min(43px, 11.0256410256vw);
  }
  .c-footer .logo-area img {
    width: min(140px, 35.8974358974vw);
  }
  .c-footer .logo-area .txt {
    font-size: 1rem;
  }
  .c-footer .menu-wrap {
    gap: 30px;
    margin-top: 38px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-footer .list > li > a, .c-footer .list > li div {
    padding-left: 20px;
    -webkit-text-decoration: underline currentColor;
            text-decoration: underline currentColor;
  }
  .c-footer .list > li > a:active, .c-footer .list > li div:active {
    color: #B60081;
    -webkit-text-decoration-color: currentColor;
            text-decoration-color: currentColor;
  }
  .c-footer .list > li > a::before, .c-footer .list > li div::before {
    top: 7px;
    left: 0px;
  }
  .c-footer .sub-list {
    margin-top: 19px;
  }
  .c-footer .sub-list > li > a {
    font-size: 0.75rem;
    margin-bottom: 12px;
    padding-left: 20px;
    -webkit-text-decoration: underline currentColor;
            text-decoration: underline currentColor;
  }
  .c-footer .sub-list > li > a:active {
    color: #B60081;
    -webkit-text-decoration-color: currentColor;
            text-decoration-color: currentColor;
  }
  .c-footer .sub-list > li > a::before {
    top: 10px;
  }
  .c-footer .plant-banner {
    margin-top: 35px;
    margin-left: 0;
  }
  .c-footer .gray-menu-area {
    padding: 8px 24px 18px;
    margin-top: 32px;
  }
  .c-footer .gray-menu-area ul {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 10px 48px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .c-footer .gray-menu-area ul > li > a {
    font-size: 0.75rem;
  }
  .c-footer .gray-menu-area ul > li > a.blank {
    padding-right: 14px;
  }
  .c-footer #pagetop > a {
    width: 48px;
    height: 48px;
  }
  .c-ttl01 {
    margin-bottom: 18px;
  }
  .c-ttl01 .ja {
    font-size: 2.5rem;
    margin-bottom: 3px;
  }
  .c-ttl01 .en {
    font-size: 1.125rem;
    line-height: 1.5;
  }
  .c-ttl02 {
    font-size: 2rem;
    padding-bottom: 8px;
    padding-left: 8px;
    margin-bottom: 32px;
  }
  .c-ttl02::before {
    width: 50px;
  }
  .c-ttl02 .attention {
    display: block;
    font-size: 14px;
    text-indent: -1em;
    margin-left: 1em;
  }
  .c-ttl03 {
    font-size: 1.25rem;
    padding-left: 24px;
    line-height: 1.5em;
  }
  .c-ttl03::before {
    width: 8px;
    height: 8px;
    top: 11px;
    bottom: inherit;
  }
  .c-bg-pink::before {
    border-radius: 24px;
  }
  .c-bg-white::before {
    border-radius: 24px;
  }
  .c-btn01 {
    width: 100%;
    font-size: 1rem;
    padding: 0px 50px 0 24px;
    height: 64px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 500px;
    margin: auto;
  }
  .c-interview-section {
    visibility: hidden;
  }
  .c-interview-section .top-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-interview-section .nav-area {
    margin: 7px auto 40px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c-interview-section .splide__wrapper {
    position: static;
  }
  .c-interview-section .splide__track {
    position: static;
    overflow: hidden;
  }
  .c-interview-section .splide__slide {
    padding: 0 33px;
  }
  .c-interview-section .splide__pagination {
    margin-top: 0px;
  }
  .c-interview-section .splide__pagination button {
    width: 8px;
    height: 8px;
  }
  .c-interview-section .splide-toggle {
    font-size: 0.875rem;
    padding: 0 10px;
    margin-top: 0;
    width: 75px;
  }
  .c-interview-section .splide__arrows {
    position: absolute;
    width: 100%;
    top: 38%;
    left: 0;
    margin: auto;
    z-index: 1;
  }
  .c-interview-section .splide__arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 48px;
    height: 48px;
  }
  .c-interview-section .splide__arrow.splide__arrow--prev {
    left: 16px;
  }
  .c-interview-section .splide__arrow.splide__arrow--next {
    right: 16px;
  }
  .c-interview-section .tag-list {
    margin-top: 13px;
  }
  .c-interview-section .tag-list .tag {
    padding: 1px 16px;
  }
  .c-interview-section .ttl {
    margin-top: 8px;
    font-size: 1.25rem;
  }
  .c-interview-section .profile-wrap {
    margin-top: 6px;
  }
  .c-interview-section .profile-wrap + .profile-wrap {
    margin-top: 0px;
  }
  .c-interview-section .name {
    font-size: 1.25rem;
  }
  .c-interview-section .link {
    font-size: 1rem;
    margin-top: 3px;
  }
  .c-interview-section .btn-wrap {
    margin-top: 42px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .c-faq-box .icon-q,
  .c-faq-box .icon-a {
    font-size: 1.25rem;
    margin-right: 16px;
    margin-top: 5px;
  }
  .c-faq-box .txt {
    text-align: left;
    font-size: 1rem;
    margin-right: 32px;
    width: 100%;
  }
  .c-q-area {
    border-radius: 0;
    padding: 6px 16px 8px 24px;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .c-q-area .q-txt {
    margin-right: 15px;
    font-size: 1.25rem;
  }
  .c-q-area .icon {
    width: 40px;
    height: 40px;
  }
  .c-a-area {
    padding: 16px 20px 9px 24px;
  }
  .c-a-area .link {
    text-decoration: underline;
    color: #000;
  }
  .c-a-area .link:active {
    color: #B60081;
    -webkit-text-decoration-color: currentColor;
            text-decoration-color: currentColor;
  }
  .c-a-area .a-inn {
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .c-a-area .icon-a {
    margin-top: 1px;
  }
  .c-a-area .a-txt {
    font-size: 1.25rem;
  }
  .c-a-area .txt {
    margin-right: 0;
  }
  .c-kv-section {
    margin-top: 75px;
  }
  .c-kv-section .crumb, .c-kv-section .desc-area {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .c-kv-section .white-bg::before {
    width: 72px;
    top: -110px;
    right: min(143px, 36.6666666667vw);
  }
  .c-kv-section .white-bg::after {
    width: 24px;
    right: min(87px, 22.3076923077vw);
    top: -37px;
  }
  .c-kv-section .white-bg {
    padding-bottom: 104px;
  }
  .c-kv-section .white-bg + .c-profile-card {
    margin-top: -120px;
  }
  .c-kv-section .white-bg + .c-profile-card .img-wrap {
    margin: 0 8px;
  }
  .c-kv-section .crumb {
    margin-bottom: 36px;
  }
  .c-kv-section .crumb li {
    font-size: 0.75rem;
  }
  .c-kv-section .crumb li a {
    border-bottom: 1px solid #B60081;
  }
  .c-kv-section .crumb li + li {
    padding-left: 40px;
  }
  .c-kv-section .c-ttl01 {
    margin-bottom: 19px;
  }
  .c-kv-section .desc-area {
    font-size: 1rem;
  }
  .c-kv-section .desc-area.has-img {
    grid-template-columns: 100%;
    margin-bottom: -76px;
  }
  .c-kv-section .desc-area.has-img > img {
    max-width: 280px;
    margin-bottom: -76px;
  }
  .c-anchor-section {
    margin-top: 48px;
    margin-bottom: 40px;
    padding: 40px 16px;
  }
  .c-anchor-section .c-anchor-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 14px;
  }
  .c-related-section {
    padding: 80px 0;
  }
  .c-related-section .inner-block {
    padding: 0 24px !important;
  }
  .c-related-section .related-block {
    width: 100%;
    max-width: 500px;
    padding: 40px 16px 48px;
    border-radius: 24px;
  }
  .c-related-section .related-block .c-ttl03 {
    margin-bottom: 32px;
  }
  .c-related-section .related-block .related-btn {
    display: block;
    max-width: 462px;
    height: auto;
  }
  .c-related-section .related-block .related-btn .txt {
    padding: 24px;
    font-size: 1.25rem;
  }
  .c-related-section .related-block .related-btn .txt .icon {
    width: 36px;
    height: 36px;
  }
  .c-related-section .related-block .related-btn .txt .icon::after {
    width: 14px;
  }
  .c-profile-card + .c-profile-card {
    margin-top: 80px;
  }
  .c-profile-card .img-wrap {
    margin-inline: 8px;
  }
  .c-profile-card .txt-wrap {
    position: relative;
    margin-top: -16px;
    z-index: 2;
    padding: 24px;
    padding-bottom: 14px;
  }
  .c-profile-card .txt-wrap .tip {
    font-size: 0.875rem;
  }
  .c-profile-card .txt-wrap .message {
    font-size: 1.25rem;
  }
  .c-profile-card .txt-wrap .store > p, .c-profile-card .txt-wrap .joining > p {
    font-size: 1rem;
    line-height: 1.8em;
  }
  .c-profile-card .txt-wrap .joining {
    margin-bottom: 6px;
  }
  .c-profile-card .txt-wrap .name {
    margin-bottom: 0;
  }
  .c-profile-card .txt-wrap .link-txt {
    font-size: 1rem;
  }
  .c-job-box .box-ttl {
    font-size: 1.125rem;
    padding: 9px 0;
  }
  .c-job-box .white-area {
    padding: 26px 24px 29px;
  }
  .c-job-box .balloon {
    padding: 8px 10px 9px;
    margin-bottom: 28px;
  }
  .c-job-box img {
    max-width: 212px;
  }
  .c-job-box .img-area.has-txtbox {
    grid-template-columns: 100%;
  }
  .c-job-box .img-area.has-txtbox .txtbox {
    padding: 24px;
    font-size: 0.75rem;
  }
  .c-job-box .img-area.has-txtbox .txtbox .big {
    font-size: 0.875rem;
  }
  .c-job-box .txt {
    font-size: 1rem;
    margin-top: 17px;
  }
  .c-job-box .desc-wrap:first-of-type {
    margin-top: 24px;
    padding-top: 32px;
  }
  .c-job-box .desc-wrap:last-of-type > .desc-ttl {
    margin-top: 32px;
  }
  .c-job-box .desc-wrap .desc-ttl {
    font-size: 1.125rem;
    padding-left: 16px;
    margin-bottom: 10px;
  }
  .c-job-box .desc-wrap .desc-list {
    grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
    gap: 8px;
  }
  .c-job-box .desc-wrap .desc-list > li {
    font-size: 0.875rem;
  }
  .c-anchor-btn {
    padding: 8px;
    min-height: 56px;
  }
  .c-anchor-btn .inn-txt {
    font-size: 0.875rem;
    padding-right: 13px;
  }
  .c-anchor-btn .inn-txt::after {
    width: 9px;
  }
  .c-dot-list > li {
    font-size: 0.75rem;
  }
  .cont-section .white-bg {
    padding-top: 53px;
    border-radius: 24px 24px 0 0;
  }
  .cont-section .cont + .cont {
    margin-top: 68px;
  }
  .cont-section .c-ttl02 {
    margin-bottom: 19px;
  }
  .cont-section .narrow {
    padding: 0 8px;
  }
  .cont-section .narrow p {
    font-size: 1rem;
    line-height: 1.8em;
  }
  .cont-section .narrow p + p {
    margin-top: 24px;
  }
  .cont-section .narrow .img-wrap {
    margin-top: 28px;
  }
  .faq-cont .faq-area .faq-control {
    margin-right: 16px;
    margin-bottom: 40px;
  }
  .faq-cont .faq-area .faq-control.mt-adj {
    margin: 0 0 40px auto;
    padding-left: 16px;
    padding-right: 16px;
  }
  .faq-cont .c-q-area {
    padding: 16px 16px 16px 24px;
  }
  .faq-cont .c-q-area .txt {
    font-size: 20px;
  }
  .faq-cont .c-a-area {
    padding-top: 24px;
  }
  .faq-cont .c-a-area .a-inn {
    display: block;
  }
  .faq-cont .c-a-area .a-inn .img-wrap {
    width: 100%;
  }
  .faq-cont .c-a-area .a-inn .img-wrap img {
    width: 100%;
    border-radius: 8px;
  }
  .faq-cont .c-a-area .a-inn .txt {
    margin-top: 14px;
    width: 100%;
  }
  .faq-cont .slide-toggle {
    gap: 16px;
  }
  .faq-cont .slide-toggle .label {
    font-size: 1rem;
  }
  .faq-cont .slide-toggle .slider {
    width: 40px;
    height: 24px;
  }
  .faq-cont .slide-toggle .slider::after {
    width: 20px;
    height: 20px;
  }
  .faq-cont .slide-toggle[aria-pressed=true] .slider::after {
    -webkit-transform: translateX(16px);
            transform: translateX(16px);
  }
  .c-a-area.has-c-table01 {
    padding-left: 24px;
    padding-right: 24px;
  }
  .c-table01 .cont {
    display: block;
  }
  .c-table01 .cont + .cont {
    margin-top: 0;
  }
  .c-table01 dt {
    text-align: center;
    padding: 6px 10px;
    border-bottom: 1px solid;
    font-size: 1.125rem;
  }
  .c-table01 dd {
    padding: 8px 16px;
    font-size: 1rem;
    line-height: 1.7em;
  }
  .c-tab-wrap .tab {
    font-size: 1rem;
    padding: 15px 0;
  }
  .c-entry-block {
    padding-top: 83px;
    overflow-x: hidden;
  }
  .c-entry-block .circle.circle02 {
    bottom: 184px;
    left: -30px;
    width: 90px;
    height: 90px;
  }
  .c-entry-block .circle.circle03 {
    display: none;
  }
  .c-entry-block .circle.circle04 {
    width: 32px;
    height: 32px;
    left: 58px;
    top: 0;
  }
  .c-entry-block .circle.circle05 {
    top: 56px;
    right: 123px;
    width: 16px;
    height: 16px;
  }
  .c-entry-block .circle.circle06 {
    width: 24px;
    height: 24px;
    top: 20px;
    right: 130px;
  }
  .c-entry-block .circle.circle07 {
    width: 120px;
    height: 120px;
    right: -10px;
    top: 23px;
  }
  .c-entry-block .circle.circle09 {
    display: none;
  }
  .c-entry-block .main-area {
    padding-top: 85px;
    padding-bottom: 78px;
    width: 164.1vw;
    right: 0%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin: auto;
  }
  .c-entry-block .main-ttl {
    gap: 32px;
    padding: 0 20px;
  }
  .c-entry-block .main-ttl .ja {
    font-size: 2.5rem;
    display: block;
  }
  .c-entry-block .main-ttl .en {
    padding-left: 13px;
    font-size: 1.5rem;
    line-height: 1;
  }
  .c-entry-block .main-ttl .en::before {
    width: 8px;
    height: 8px;
    left: -11px;
  }
  .c-entry-block .main-ttl .icon {
    margin-left: 0;
    width: 64px;
    height: 64px;
    margin-top: 7px;
  }
  .c-entry-block .desc {
    font-size: 1.125rem;
    margin-top: 23px;
  }
  .home .mv-section {
    margin-top: -70px;
    overflow: hidden;
  }
  .home .mv-section .inner-block {
    padding: 0;
  }
  .home .mv-section .circle.circle01 {
    left: initial;
    right: 0;
    top: 210px;
    width: 60px;
    height: 60px;
  }
  .home .mv-section .circle.circle02 {
    display: none;
  }
  .home .mv-section .circle.circle03 {
    top: 134px;
    left: 186px;
    width: 40px;
    height: 40px;
  }
  .home .mv-section .circle.circle04 {
    width: 80px;
    height: 80px;
    left: -13px;
    bottom: 497px;
  }
  .home .mv-section .circle.circle05 {
    left: 20px;
    width: 100px;
    height: 100px;
  }
  .home .mv-section .circle.circle07 {
    top: 180px;
    right: 160px;
    width: 10px;
    height: 10px;
  }
  .home .mv-section .circle.circle08 {
    display: none;
  }
  .home .mv-section .circle.circle09 {
    display: none;
  }
  .home .mv-section .circle.circle11 {
    display: none;
  }
  .home .mv-section .circle.circle12 {
    bottom: 5px;
    right: 140px;
    width: 60px;
    height: 60px;
  }
  .home .mv-section .circle.circle14 {
    top: initial;
    bottom: 103px;
    right: 24px;
    width: 10px;
    height: 10px;
  }
  .home .mv-section .circle.circle15 {
    right: initial;
    left: 120px;
    top: 197px;
    width: 20px;
    height: 20px;
  }
  .home .mv-section .circle.circle17 {
    display: none;
  }
  .home .mv-section .circle.circle18 {
    right: 0;
    top: 391px;
    left: 49px;
    width: 32px;
    height: 32px;
  }
  .home .mv-section .mv-splide .splide__track,
  .home .mv-section .mv-splide .splide__list {
    min-height: 1350px;
  }
  .home .mv-section .mv-ttl {
    width: 281px;
    top: 46.8%;
    -webkit-transform: translateY(-46.8%);
            transform: translateY(-46.8%);
    right: 0;
    left: 0;
    margin: auto;
  }
  .home .mv-section .desc-area {
    top: 82%;
    -webkit-transform: translateY(-82%);
            transform: translateY(-82%);
  }
  .home .mv-section .desc-area .desc {
    line-height: 2;
    font-size: 1.125rem;
  }
  .home .mv-section .desc-area .strong {
    margin-top: 15px;
  }
  .home .mv-section .mv-img {
    width: 25.64vw;
    height: 25.64vw;
  }
  .home .mv-section .mv-img.mv-img01 {
    left: -16px;
    top: 113px;
  }
  .home .mv-section .mv-img.mv-img02 {
    display: none;
  }
  .home .mv-section .mv-img.mv-img03 {
    top: 66px;
    right: 45px;
    width: 20.51vw;
    height: 20.51vw;
  }
  .home .mv-section .mv-img.mv-img04 {
    position: absolute;
    top: 197px;
    bottom: 0;
    left: initial;
    right: 46px;
  }
  .home .mv-section .mv-img.mv-img05 {
    display: none;
  }
  .home .mv-section .mv-main-img {
    top: 169px;
  }
  .home .mv-section .mv-main-img svg {
    width: 481px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .home .mv-section .splide-navi {
    top: 39.5%;
    -webkit-transform: translateY(-39.5%);
            transform: translateY(-39.5%);
    right: 15px;
  }
  .home .mv-section .splide__pagination button {
    width: 8px;
    height: 8px;
  }
  .home .mv-section .splide-toggle {
    width: 75px;
    padding: 1px 0;
  }
  .home .mv-section .splide-toggle .txt {
    padding-right: 15px;
  }
  .home .message-section {
    padding-top: 16px;
    padding-bottom: 120px;
  }
  .home .message-section .inner-block {
    padding-right: 18px;
    padding-left: 18px;
  }
  .home .message-section .circle.circle01 {
    top: -25px;
    right: 44px;
  }
  .home .message-section .circle.circle02 {
    display: none;
  }
  .home .message-section .circle.circle03 {
    display: none;
  }
  .home .message-section .circle.circle04 {
    display: none;
  }
  .home .message-section .circle.circle05 {
    display: none;
  }
  .home .message-section .flex-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 35px;
    margin: 0 6px;
  }
  .home .message-section .img-area {
    margin: auto;
  }
  .home .message-section .img-wrap {
    width: 240px;
    height: 240px;
  }
  .home .message-section .txt-area {
    margin-top: 0;
  }
  .home .message-section .txt-area .txt {
    font-size: 1rem;
    margin-bottom: 35px;
  }
  .home .job-section {
    padding-top: 67px;
    padding-bottom: 80px;
  }
  .home .job-section .inner-block {
    padding-left: 24px;
    padding-right: 24px;
  }
  .home .job-section .ttl-desc {
    font-size: 1rem;
    text-align: left;
  }
  .home .job-section .c-tab-wrap {
    margin-top: 32px;
  }
  .home .job-section .c-tab-wrap .tab {
    font-size: 1rem;
    padding: 15px 0;
  }
  .home .job-section .result-area {
    margin-top: 23px;
  }
  .home .job-section .result-area.is-show {
    display: block;
  }
  .home .job-section .btn-wrap {
    margin-top: 37px;
  }
  .home .c-interview-section {
    padding-top: 107px;
    padding-bottom: 120px;
  }
  .home .c-interview-section .inner-block {
    padding-left: 16px;
    padding-right: 16px;
  }
  .home .work-section {
    padding-top: 70px;
    padding-bottom: 80px;
  }
  .home .work-section .inner-block {
    padding-left: 24px;
    padding-right: 24px;
  }
  .home .work-section .flex-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .home .work-section .box {
    border-radius: 16px;
  }
  .home .work-section .box .img-area {
    border-radius: 16px 16px 0 0;
  }
  .home .work-section .box .img-area img {
    border-radius: 16px 16px 0 0;
  }
  .home .work-section .box .txt-area {
    border-radius: 0 0 16px 16px;
    padding: 24px 24px 40px;
  }
  .home .work-section .box .box-ttl {
    font-size: 1.25rem;
    margin-bottom: 5px;
  }
  .home .work-section .box .txt {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  .home .faq-section {
    padding-top: 108px;
    padding-bottom: 120px;
  }
  .home .faq-section .c-ttl01 {
    padding-left: 18px;
    padding-right: 18px;
  }
  .home .faq-section .inner-block {
    padding: 0;
  }
  .home .faq-section .faq-area {
    margin-right: 0;
    margin-top: 28px;
  }
  .home .faq-section .btn-wrap {
    margin-top: 47px;
    margin-right: 25px;
    margin-left: 25px;
  }
  .interview.staff {
    padding-bottom: 80px;
  }
  .interview .inner-block {
    padding: 0 16px;
  }
  .interview .link-section {
    padding-top: 63px;
  }
  .interview .cont-section .comment-wrap {
    display: block;
    margin-top: 30px;
  }
  .interview .cont-section .comment-wrap .txt-wrap {
    width: 100%;
    margin-top: 18px;
    padding: 24px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .interview .cont-section .comment-wrap .txt-wrap p {
    margin-top: 6px;
  }
  .interview .cont-section .comment-wrap .icon {
    margin: 0 auto;
  }
  .interview .cont-section .comment-wrap .icon img + p {
    margin-top: 7px;
  }
  .interview .cont-section .schedule-wrap {
    padding: 24px;
    padding-top: 16px;
    border-radius: 24px;
  }
  .interview .cont-section .schedule-wrap li {
    grid-template-columns: 6rem 1fr;
    font-size: 1rem;
    padding-bottom: 18px;
    gap: 8px;
  }
  .interview .cont-section .schedule-wrap li::before {
    left: 3px;
  }
  .interview .cont-section .schedule-wrap li .time-wrap {
    grid-template-columns: auto 1fr;
    display: block;
    padding-left: 16px;
  }
  .interview .cont-section .schedule-wrap li .time-wrap p {
    letter-spacing: 0.01rem;
    line-height: 1;
  }
  .interview .cont-section .schedule-wrap li .time-wrap p + p {
    margin-top: 5px;
    font-size: 0.875rem;
  }
  .interview .cont-section .schedule-wrap li .time-wrap .time::before {
    left: -16px;
    right: 0;
  }
  .interview .cont-section .schedule-wrap li .txt-wrap p {
    line-height: 1.7em;
  }
  .interview .cont-section .img-wrap-section {
    grid-template-columns: 3fr;
    margin-top: 82px;
  }
  .interview .c-interview-section .white-bg {
    padding-top: 66px;
    border-radius: 0 0 24px 24px;
  }
  .interview .c-interview-section .inner-block {
    padding-bottom: 65px;
  }
  .training-careersupport .inner-block {
    padding: 0 16px;
  }
  .training-careersupport .contents-wrap {
    padding: 52px 0 46px;
  }
  .training-careersupport .content-block {
    padding: 0 8px;
    font-size: 1rem;
  }
  .training-careersupport .c-ttl03 {
    margin-top: 42px;
    margin-bottom: 6px;
    padding-left: 8px;
  }
  .training-careersupport .c-ttl03::before {
    top: 12px;
    left: -7px;
    width: 8px;
    height: 8px;
  }
  .training-careersupport .content-section + .content-section {
    margin-top: 80px;
  }
  .training-careersupport .diagram-block {
    gap: 20px;
    padding: 30px 24px 38px;
    margin: 18px -24px;
    border-radius: 0;
  }
  .training-careersupport .diagram-block .diagram-wrap {
    max-width: 462px;
  }
  .training-careersupport .diagram-block .ttl {
    font-size: 1.125rem;
  }
  .training-careersupport .small-txt {
    font-size: 0.875rem;
  }
  .training-careersupport .training-section .diagram-wrap {
    display: block;
  }
  .training-careersupport .training-section .diagram-wrap .process-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 16px;
  }
  .training-careersupport .training-section .diagram-wrap .process-wrap:last-child .process-block:last-child::after {
    content: none;
  }
  .training-careersupport .training-section .diagram-wrap .process-wrap + .process-wrap {
    margin-top: 16px;
  }
  .training-careersupport .training-section .diagram-wrap .process-ttl {
    margin-bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 24px;
    height: auto;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    line-height: 1.3;
    letter-spacing: 0.4em;
    font-size: 1rem;
  }
  .training-careersupport .training-section .diagram-wrap .sub-process {
    display: block;
    width: 100%;
  }
  .training-careersupport .training-section .diagram-wrap .process-block {
    padding: 16px 0;
    width: 100%;
    height: auto;
  }
  .training-careersupport .training-section .diagram-wrap .process-block::before {
    top: -8px;
    left: 0;
    right: 0;
    width: auto;
    height: 1px;
    background-image: repeating-linear-gradient(to right, #453741, #453741 4px, transparent 4px, transparent 8px);
  }
  .training-careersupport .training-section .diagram-wrap .process-block::after {
    z-index: 5;
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
    bottom: -18px;
    width: 32px;
    height: 18px;
    background: url(../img/training-careersupport/icon_diagram_arrow01.svg) center/contain no-repeat;
  }
  .training-careersupport .training-section .diagram-wrap .process-block + .process-block {
    margin-top: 16px;
  }
  .training-careersupport .training-section .diagram-wrap .process-block .process {
    margin-bottom: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    height: auto;
    gap: 12px;
  }
  .training-careersupport .training-section .diagram-wrap .process-block .process > div {
    width: 136px;
    height: 136px;
  }
  .training-careersupport .training-section .diagram-wrap .process-block .process > div.m-pink::after {
    top: 50%;
    left: -42px;
    -webkit-transform: translate(0, -50%) rotate(-90deg);
            transform: translate(0, -50%) rotate(-90deg);
    width: 76px;
    height: 82px;
  }
  .training-careersupport .training-section .diagram-wrap .desc-txt {
    min-height: 0;
  }
  .training-careersupport .hr-section .diagram-wrap {
    display: block;
  }
  .training-careersupport .hr-section .diagram-wrap .block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    border-radius: 16px;
  }
  .training-careersupport .hr-section .diagram-wrap .block:last-child::before {
    width: 28px;
    height: 16px;
    top: -14px;
    left: 50%;
    -webkit-transform: translate(-50%, 0) rotate(90deg);
            transform: translate(-50%, 0) rotate(90deg);
  }
  .training-careersupport .hr-section .diagram-wrap .block + .block {
    margin-top: 8px;
  }
  .training-careersupport .hr-section .diagram-wrap .block-content {
    width: 100%;
    padding: 18px 0;
  }
  .training-careersupport .hr-section .diagram-wrap .block-ttl {
    padding: 0 7px;
    height: auto;
    font-size: 0.875rem;
    line-height: 1.3;
    letter-spacing: 0.35em;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    border-radius: 16px 0 0 16px;
  }
  .training-careersupport .hr-section .diagram-wrap .career-list {
    margin: 0 auto;
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 96px;
    direction: rtl;
    gap: 23px;
    width: 100%;
    max-width: 350px;
  }
  .training-careersupport .hr-section .diagram-wrap .career-list .career {
    font-size: 0.875rem;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: upright;
  }
  .training-careersupport .hr-section .diagram-wrap .career-list .career.small {
    font-size: 0.875rem;
  }
  .training-careersupport .hr-section .diagram-wrap .career-list.hourly-list .career {
    height: 208px;
  }
  .training-careersupport .hr-section .diagram-wrap .career-list.hourly-list .career::before {
    top: auto;
    bottom: 39px;
    right: -23px;
    width: 23px;
    height: 18px;
    background: url(../img/common/icon_arrow02.svg) center/contain no-repeat;
  }
  .training-careersupport .hr-section .diagram-wrap .career-list.hourly-list .career-wrap {
    grid-template-columns: 1fr;
  }
  .training-careersupport .hr-section .diagram-wrap .career-list.hourly-list .career-wrap .career {
    height: 96px;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
  .training-careersupport .hr-section .diagram-wrap .career-list.hourly-list .career-wrap .career:first-child {
    padding: 0 25px;
  }
  .training-careersupport .hr-section .diagram-wrap .career-list.hourly-list .career-wrap .career:last-child {
    padding: 0 12px;
  }
  .training-careersupport .hr-section .diagram-wrap .career-list.dm-list .career {
    height: 128px;
  }
  .training-careersupport .hr-section .diagram-wrap .career-list.dm-list .career::before, .training-careersupport .hr-section .diagram-wrap .career-list.dm-list .career::after {
    left: auto;
    width: 2px;
    height: 24px;
    left: 50%;
  }
  .training-careersupport .hr-section .diagram-wrap .career-list.dm-list .career::before {
    top: -32px;
    -webkit-transform: translate(calc(-50% + 3px), 0);
            transform: translate(calc(-50% + 3px), 0);
  }
  .training-careersupport .hr-section .diagram-wrap .career-list.dm-list .career::after {
    top: -32px;
    bottom: auto;
    -webkit-transform: translate(calc(-50% - 3px), 0);
            transform: translate(calc(-50% - 3px), 0);
  }
  .training-careersupport .hr-section .diagram-wrap .position-wrap {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .training-careersupport .hr-section .diagram-wrap .position-list {
    margin: auto;
  }
  .training-careersupport .hr-section .diagram-wrap .position-list > li {
    font-size: 0.875rem;
  }
  .training-careersupport .hr-section .diagram-wrap .etc-txt {
    font-size: 0.875rem;
  }
  .training-careersupport .hr-section .hr-list {
    font-size: 1rem;
    margin-top: 40px;
  }
  .training-careersupport .hr-section .hr-list > li + li {
    margin-top: 10px;
  }
  .training-careersupport .career-section .diagram-wrap .career-list .career-wrap {
    grid-template-columns: 1fr 2.2fr;
  }
  .training-careersupport .career-section .diagram-wrap .career-list .career-wrap .career-ttl {
    min-width: 110px;
  }
  .training-careersupport .career-section .diagram-wrap .career-list .career-wrap .career-txt {
    padding: 0 20px;
  }
  .training-careersupport .career-section .diagram-wrap .career-list .career-wrap + .career-wrap {
    margin-top: 21.5px;
  }
  .training-careersupport .career-section .diagram-wrap .career-list .career-wrap + .career-wrap::before {
    top: -21.5px;
    width: 10px;
    height: 21.5px;
  }
  .training-careersupport .career-section .diagram-wrap .txt {
    margin-top: 16px;
  }
  .work {
    padding-bottom: 80px;
  }
  .work .relation-section {
    padding-block: 156px 80px;
  }
  .work .relation-section .contents-wrap {
    grid-template-columns: 100%;
    row-gap: 16px;
  }
  .work .relation-section .contents-wrap > .arrow-area {
    row-gap: 8px;
  }
  .work .relation-section .contents-wrap > .arrow-area .ico-arrow {
    rotate: 90deg;
    width: 22px;
  }
  .work .relation-section .ttl {
    font-size: 1.25rem;
  }
  .work .relation-section .company-store-area {
    gap: 24px;
  }
  .work .relation-section .company-store-area .work-area {
    grid-template-columns: 100%;
    grid-template-areas: "img" "ttl" "list";
    row-gap: 0;
    padding: 24px;
  }
  .work .relation-section .company-store-area .work-area .ttl {
    margin-block: 24px 8px;
  }
  .work .relation-section .company-store-area .work-area .img-area {
    justify-self: center;
    max-width: 120px;
  }
  .work .relation-section .company-store-area .work-area .img-area img {
    max-width: 60px;
  }
  .work .relation-section .company-store-area .work-area .img-area .txt {
    font-size: 1.25rem;
  }
  .work .relation-section .company-store-area .work-area .c-dot-list {
    grid-template-columns: repeat(auto-fill, minmax(115px, 1fr));
  }
  .work .relation-section .company-store-area .arrow-area .arrow .txt {
    font-size: 0.875rem;
  }
  .work .relation-section .company-store-area .arrow-area .arrow.company .ico-arrow {
    min-width: 30px;
  }
  .work .relation-section .customer-area {
    padding: 24px;
    row-gap: 18px;
  }
  .work .relation-section .customer-area .img-area {
    max-width: 112px;
  }
  .work .work-section {
    padding-block: 64px;
  }
  .work .work-section > .inner-block {
    padding-inline: 16px;
  }
  .work .work-section .anchor-group-wrap .anchor-group-area-list {
    grid-template-columns: 100%;
  }
  .work .work-section .anchor-group-wrap .anchor-group-area {
    padding: 40px 16px;
  }
  .work .work-section .anchor-group-wrap .anchor-group-area .c-ttl03 {
    margin-bottom: 16px;
    margin-left: 16px;
    padding-left: 16px;
  }
  .work .work-section .anchor-group-wrap .anchor-group-area .c-ttl03::before {
    width: 8px;
    height: auto;
    aspect-ratio: 1/1;
    top: 0.6em;
  }
  .work .work-section .anchor-group-wrap .anchor-group-area .anchor-list {
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 16px;
  }
  .work .work-section .anchor-group-wrap_sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in-out, translate 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, translate 0.3s ease-in-out;
  }
  .work .work-section .anchor-group-wrap_sticky.is-shown {
    opacity: 1;
  }
  .work .work-section .anchor-group-wrap_sticky.is-open .nav-btn .inn-txt::after {
    scale: 1 -1;
  }
  .work .work-section .anchor-group-wrap_sticky .nav-btn {
    grid-area: btn;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 8px 2px;
    border: 1px solid #453741;
    border-radius: 0 16px 16px 0;
    background: #453741;
    -webkit-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out;
  }
  .work .work-section .anchor-group-wrap_sticky .nav-btn:focus-visible {
    background: #FFFFFF;
  }
  .work .work-section .anchor-group-wrap_sticky .nav-btn:focus-visible .inn-txt {
    color: #453741;
  }
  .work .work-section .anchor-group-wrap_sticky .nav-btn .inn-txt {
    font-size: 1rem;
    font-weight: 700;
    line-height: 125%;
    letter-spacing: 0.3em;
    color: #FFFFFF;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    padding-bottom: 1.5em;
    position: relative;
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
  }
  .work .work-section .anchor-group-wrap_sticky .nav-btn .inn-txt::after {
    position: absolute;
    content: "";
    -webkit-mask: url("../img/common/icon_arrow.svg") no-repeat center/contain;
            mask: url("../img/common/icon_arrow.svg") no-repeat center/contain;
    background: currentColor;
    rotate: -90deg;
    scale: 1 1;
    -webkit-transition: scale 0.3s ease-in-out;
    transition: scale 0.3s ease-in-out;
    width: 0.6em;
    height: auto;
    aspect-ratio: 9/5;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .work .work-section .anchor-group-wrap_sticky .anchor-group-wrap {
    grid-area: nav;
    margin-top: 0;
    border-top: 1px solid #453741;
    border-bottom: 1px solid #453741;
  }
  .work .work-section .anchor-group-wrap_sticky .anchor-group-wrap .anchor-group-area-list {
    padding: 16px;
    padding-bottom: 24px;
    background-color: #FFFFFF;
    gap: 24px;
    max-height: calc(var(--vh, 1vh) * 80);
    overflow-x: auto;
  }
  .work .work-section .anchor-group-wrap_sticky .anchor-group-wrap .anchor-group-area-list .c-ttl03 {
    font-size: 0.875rem;
    padding-left: 1em;
  }
  .work .work-section .anchor-group-wrap_sticky .anchor-group-wrap .anchor-group-area-list .c-ttl03::before {
    top: 0.5em;
  }
  .work .work-section .anchor-group-wrap_sticky .anchor-group-wrap .anchor-group-area-list .anchor-group-area {
    padding: 0;
    background-color: transparent;
  }
  .work .work-section .anchor-group-wrap_sticky .anchor-group-wrap .anchor-group-area-list .anchor-group-area .anchor-list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 8px;
  }
  .work .work-section .anchor-group-wrap_sticky .anchor-group-wrap .anchor-group-area-list .anchor-group-area .anchor-list .c-anchor-btn {
    min-height: 48px;
  }
  .work .work-section .anchor-group-wrap_sticky .anchor-group-wrap .anchor-group-area-list .anchor-group-area .anchor-list .c-anchor-btn .inn-txt {
    line-height: 125%;
  }
  .work .work-section h3.c-ttl02 {
    margin-top: 70px;
  }
  .work .work-section .job-box-area {
    gap: 16px;
  }
  .work .work-section .c-job-box .box-ttl {
    font-size: 1.25rem;
    padding: 8px 16px;
  }
  .work .work-section .c-job-box .white-area {
    padding-top: 24px;
    padding-bottom: 32px;
    padding-inline: 16px;
  }
  .work .work-section .c-job-box .white-area > .txt {
    margin-top: 16px;
  }
  .work .work-section .c-job-box .white-area .balloon {
    font-size: 0.875rem;
    padding: 16px;
    margin-bottom: 20px;
  }
  .message {
    padding-bottom: 80px;
  }
  .message .c-kv-section .c-ttl01 {
    margin-bottom: 17px;
  }
  .message .message-section {
    padding-top: 237px;
    padding-bottom: 194px;
  }
  .message .message-section .inner-block {
    text-align: left;
  }
  .message .message-section .inner-block .section-ttl {
    font-size: 1.5rem;
    line-height: 1.25;
  }
  .message .message-section .inner-block .section-ttl + .section-txt {
    margin-top: 18px;
  }
  .message .message-section .inner-block .section-txt {
    font-size: 1rem;
    line-height: 1.75;
  }
  .message .message-section .inner-block .section-txt + .section-txt {
    margin-top: 14px;
  }
  .message .message-section .flow-deco.deco01 {
    width: 20px;
    top: 97px;
    left: min(144px, 36.9230769231vw);
  }
  .message .message-section .flow-deco.deco02 {
    width: 40px;
    top: 117px;
    right: min(155px, 39.7435897436vw);
  }
  .message .message-section .flow-deco.deco03 {
    width: 20px;
    top: 197px;
    right: min(44px, 11.2820512821vw);
  }
  .message .message-section .flow-deco.deco13 {
    width: 32px;
    bottom: 137px;
    left: min(24px, 6.1538461538vw);
  }
  .message .message-section .flow-deco.deco14 {
    width: 16px;
    bottom: 109px;
    left: min(57px, 14.6153846154vw);
  }
  .message .message-section .flow-deco.deco16 {
    width: 10px;
    bottom: 53px;
    right: min(205px, 52.5641025641vw);
  }
  .message .initiative-section {
    padding-block: 50px 64px;
  }
  .message .initiative-section .c-ttl02 {
    margin-bottom: 20px;
  }
  .message .initiative-section .section-txt {
    font-size: 1rem;
    margin-bottom: 50px;
  }
  .message .initiative-section .cont .initiative-list {
    gap: 16px;
    padding-inline: 4px;
  }
  .message .initiative-section .cont .initiative-list > li {
    width: 100%;
    max-width: 500px;
    padding: 13px 22px 16px 22px;
    border-radius: 16px;
  }
  .message .initiative-section .cont .initiative-list > li > .ttl {
    font-size: 1.25rem;
    margin-bottom: 17px;
  }
  .message .initiative-section .cont .initiative-list > li > .img > img {
    border-radius: 8px;
  }
  .message .initiative-section .cont .initiative-list > li > .txt {
    margin-top: 13px;
    font-size: 1rem;
  }
  .message .initiative-section .audience-message-wrap {
    padding-block: 25px 30px;
    padding-inline: 15px;
    margin-top: 80px;
    border-radius: 16px;
  }
  .message .initiative-section .audience-message-wrap .c-ttl02 {
    margin-bottom: 20px;
  }
  .message .initiative-section .audience-message-wrap > .inn {
    padding-inline: 5px;
  }
  .message .initiative-section .audience-message-wrap > .inn .note {
    margin-top: 8px;
    font-size: 0.875rem;
  }
  .message .initiative-section .audience-message-wrap .section-txt {
    margin-bottom: 19px;
  }
  .message .initiative-section .audience-message-wrap .data-list {
    gap: 16px;
  }
  .message .initiative-section .audience-message-wrap .data-list > li {
    min-width: inherit;
    max-width: 500px;
    width: 100%;
    border-radius: 16px;
  }
  .message .initiative-section .audience-message-wrap .data-list > li > .ttl {
    font-size: 1.25rem;
    margin-bottom: 18px;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:first-child {
    padding: 16px 24px 24px;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:first-child .img {
    max-width: 80px;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:first-child > .txt {
    font-size: 1.5rem;
    margin-top: 7px;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:first-child > .txt .num {
    font-size: 3.75rem;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(2) {
    padding: 15px 24px 20px;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(2) .img {
    width: 246px;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(2) .ttl {
    margin-bottom: 15px;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(2) .txt-wrap {
    gap: min(15px, 3.8461538462vw);
  }
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(2) .txt-inn {
    gap: min(8px, 2.0512820513vw);
  }
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(2) .txt {
    font-size: 1rem;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(2) .num {
    font-size: 2.5rem;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(2) .small {
    font-size: 1.25rem;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(3) {
    padding: 15px 20px 20px;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(3) .ttl {
    margin-bottom: 9px;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(3) .composition-table {
    width: 100%;
    max-width: 270px;
    margin: auto;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(3) .composition-table .num {
    font-size: 1rem;
    width: 20px;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(3) .composition-table tr + tr th {
    padding: 0;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(4) {
    padding: 20px 24px 24px;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(4) .ttl {
    margin-bottom: 20px;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(4) .txt-wrap {
    gap: 15px;
    max-width: 270px;
    margin: auto;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(4) .txt-wrap .inn .img {
    max-width: 46px;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(4) .txt-wrap .txt .num {
    font-size: 2.5rem;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(4) .txt-wrap + .txt-wrap {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 7px;
    max-width: 260px;
    margin: 2px auto 0;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(4) .txt-wrap + .txt-wrap .inn {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(4) > .txt {
    font-size: 0.875rem;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(4) > .txt .num {
    font-size: 1.875rem;
    line-height: 1;
  }
  .environment .inner-block {
    padding: 0 16px;
  }
  .environment .inner-block.pt {
    padding-top: 64px;
  }
  .environment .inner-block.pb {
    padding-bottom: 64px;
  }
  .environment .inner-block.faq-area {
    padding-left: 0;
    padding-right: 0;
  }
  .environment .inner-block.faq-area .narrow {
    padding-left: 0;
    padding-right: 0;
  }
  .environment .c-ttl02 {
    margin-bottom: 30px;
  }
  .environment .cont-section {
    margin-top: 0;
  }
  .environment .cont-section + .cont-section .white-bg {
    padding-top: 72px;
  }
  .environment .cont-section.faq-cont .white-bg {
    border-radius: 0 0 24px 24px;
  }
  .environment .cont-section.faq-cont .faq-area .inner-block {
    padding: 0;
  }
  .environment .cont-section.faq-cont .faq-area .inner-block .narrow {
    padding: 0;
  }
  .environment .cont-section.welfare .white-bg {
    padding-top: 50px;
  }
  .environment .support-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
  .environment .support-list li {
    border-radius: 16px;
    height: -webkit-fit-content !important;
    height: -moz-fit-content !important;
    height: fit-content !important;
  }
  .environment .support-list li .head {
    padding: 7px 10px;
    font-size: 1.25rem;
  }
  .environment .support-list li .cont-wrap {
    padding: 22px 20px 20px;
  }
  .environment .support-list li .cont-wrap img {
    max-width: 88px;
  }
  .environment .support-list li .cont-wrap img + p {
    margin-top: 15px;
  }
  .environment .welfare-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
  .environment .welfare-list li {
    border-radius: 16px;
    padding: 12px 20px 16px;
  }
  .environment .welfare-list li .head {
    font-size: 1.25rem;
  }
  .environment .welfare-list li .head + p {
    margin-top: 6px;
  }
  .environment .welfare-list li .cont-wrap {
    padding-bottom: 12px;
  }
  .sitemap {
    padding-bottom: 88px;
  }
  .sitemap .c-kv-section .white-bg::after {
    top: -26px;
  }
  .sitemap .c-kv-section .white-bg {
    padding-bottom: 54px;
  }
  .sitemap .sitemap-block {
    padding-top: 60px;
    margin-top: 80px;
    padding-bottom: 60px;
  }
  .sitemap .sitemap-block .site-list {
    padding: 0 6px;
    gap: 35px 0;
  }
  .sitemap .sitemap-block .site-list > li {
    width: 100%;
  }
  .sitemap .sitemap-block .site-list > li > a, .sitemap .sitemap-block .site-list > li button {
    font-size: 1rem;
  }
  .sitemap .sitemap-block .site-list > li > a {
    text-decoration: none;
    border-bottom: 1px solid #000;
  }
  .sitemap .sitemap-block .sub-list {
    margin-left: 0;
    margin-top: 20px;
  }
  .sitemap .sitemap-block .sub-list > li {
    margin-bottom: 15px;
  }
  .sitemap .sitemap-block .sub-list > li > a {
    margin-left: 15px;
    letter-spacing: 0.05em;
    padding-bottom: 0px;
    border-bottom: 1px solid #000;
    text-decoration: none;
    font-size: 0.875rem;
  }
  .sitemap .sitemap-block .sub-list > li > a::before {
    left: -16px;
    top: 15px;
    width: 8px;
  }
  .error .error-block {
    padding-top: 86px;
    padding-bottom: 82px;
  }
  .error .error-block .txt {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  .recruitment .c-kv-section .c-ttl01 {
    margin-bottom: 17px;
  }
  .recruitment > .inn {
    padding-block: 64px;
  }
  .recruitment .recruitment-section .section-txt {
    font-size: 1rem;
  }
  .recruitment .recruitment-section .section-txt.small {
    font-size: 0.875rem;
  }
  .recruitment .recruitment-section .section-txt + .section-txt {
    margin-top: 30px;
  }
  .recruitment .recruitment-section + .recruitment-section {
    padding-top: 80px;
  }
  .recruitment .recruitment-section .c-tab-wrap {
    margin-top: 40px;
  }
  .recruitment .recruitment-section .recruitment-dl {
    margin-top: 24px;
  }
  .recruitment .recruitment-section .recruitment-dl dt .block {
    display: inline;
  }
  .recruitment .recruitment-section .recruitment-dl dd > .inn + .inn {
    padding-left: 0;
    margin-top: 30px;
  }
  .recruitment .recruitment-section .recruitment-dl dd > .inn .txt > .inn {
    padding-left: 0;
  }
  .recruitment .recruitment-section .recruitment-dl dd > .inn .note {
    font-size: 0.875rem;
  }
  .recruitment .recruitment-section .recruitment-dl dd > .inn .note.left {
    padding-left: 15px;
    display: inline;
  }
  .recruitment .recruitment-section .recruitment-dl dd > .inn .num-list > li + li {
    margin-top: 0;
  }
  .recruitment .flow-section .flow-wrap {
    padding-top: 56px;
  }
  .recruitment .flow-section .flow-wrap .txt {
    font-size: 1rem;
  }
  .recruitment .flow-section .flow-wrap .flow-list {
    padding-top: 24px;
  }
  .recruitment .flow-section .flow-wrap .flow-list > li {
    padding-block: 24px;
  }
  .recruitment .flow-section .flow-wrap .flow-list > li + li {
    margin-top: 32px;
  }
  .recruitment .flow-section .flow-wrap .flow-list > li + li::before {
    top: -24px;
  }
  .recruitment .flow-section .flow-wrap .flow-list > li dl dt .inn::before {
    width: 32px;
    height: 32px;
    font-size: 1.125rem;
    padding: 0;
  }
  .recruitment .flow-section .flow-wrap .flow-list > li dd {
    padding: 0 24px;
    font-size: 1rem;
  }
  .recruitment .flow-section .flow-wrap .flow-list > li:last-child {
    padding: 20px;
  }
  .recruitment .flow-section .flow-wrap .flow-list > li:last-child .txt {
    font-size: 1.5rem;
  }
  .recruitment .contact-section .inner-block > .cont {
    margin-inline: -20px;
    padding: 24px;
    border-radius: 0;
  }
  .recruitment .contact-section .inner-block > .cont > dl .cont > dt {
    font-size: 1.125rem;
  }
  .recruitment .contact-section .inner-block > .cont > dl .cont + .cont {
    padding-top: 24px;
    margin-top: 24px;
  }
  .recruitment .contact-section .inner-block > .cont > dl .cont > dd {
    font-size: 1rem;
  }
  .faq .inner-block {
    padding: 0 16px;
  }
  .faq .inner-block.pt {
    padding-top: 64px;
  }
  .faq .inner-block.pb {
    padding-bottom: 64px;
  }
  .faq .inner-block.faq-area {
    padding-left: 0;
    padding-right: 0;
  }
  .faq .inner-block.faq-area .narrow {
    padding-left: 0;
    padding-right: 0;
  }
  .faq .c-ttl02 {
    margin-bottom: 30px;
  }
  .faq .contents-wrap {
    padding: 66px 0 60px;
  }
  .faq .cont-section + .cont-section {
    margin-top: 80px;
  }
  .faq .cont-section .narrow {
    padding: 0;
    margin: 0 -16px;
  }
  .faq .c-faq-box {
    margin-bottom: 32px;
  }
  .faq .faq-cont .faq-area .faq-control.mt-adj {
    margin-right: 0;
    padding: 0;
  }
  .faq .faq-cont .c-q-area .q-wrap {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .faq .faq-cont .c-q-area .txt {
    font-size: 1rem;
  }
  .faq .faq-cont .c-q-area .icon {
    margin: auto 0;
  }
  .faq .faq-cont .c-a-area {
    padding-top: 18px;
    padding-right: 24px;
  }
  .faq .faq-cont .c-a-area .a-inn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
  }
  .faq .faq-cont .c-a-area .a-inn .txt {
    margin-top: 0;
  }
  .faq .faq-cont .c-a-area .a-inn .link {
    margin-top: 10px;
    font-size: 1rem;
  }
}
@media only screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  .inner-block {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1280px;
  }
  a,
  a::before,
  a::after,
  button,
  button::before,
  button::after {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .sp {
    display: none !important;
  }
  .c-header .logo-area .txt {
    font-size: 0.875rem;
  }
  .c-header .toggle-hover-menu-area .dot-list > li > a {
    margin-left: 20px;
    padding: 0;
  }
  .c-header .toggle-btn {
    display: none;
  }
  .c-header .toggle-btn .inn {
    width: 36px;
    height: 36px;
  }
  .c-header .toggle-btn.is-active .line:first-child {
    -webkit-transform: rotate(45deg) translate(11px, 13px);
            transform: rotate(45deg) translate(11px, 13px);
  }
  .c-header .toggle-btn.is-active .line:last-child {
    -webkit-transform: rotate(-45deg) translate(11px, -13px);
            transform: rotate(-45deg) translate(11px, -13px);
  }
  .c-header .br-1200 {
    display: none;
  }
  .h-toggle-menu {
    top: 94px;
    padding: 0 min(104px, 10.8333333333vw);
  }
  .h-toggle-menu .inn .child-menu li > a {
    padding: 14px 8px 14px 24px;
  }
  .c-btn01 {
    width: 374px;
  }
  .c-kv-section .white-bg {
    min-height: 420px;
    height: 100%;
  }
  .c-kv-section .desc-area.has-img > img {
    margin-top: -72px;
    margin-bottom: -64px;
  }
  .faq-cont .c-q-area {
    padding: 17px 20px 17px 32px;
  }
  .faq-cont .c-a-area .a-inn .img-wrap img {
    border-radius: 16px;
    max-width: 315px;
    width: 100%;
  }
  .c-table01 dt {
    width: 245px;
    border-right: 1px solid #000;
  }
  .c-table01 dd {
    width: calc(100% - 245px);
  }
  .c-entry-block .txt-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
  }
  .home .mv-section {
    margin-top: -94px;
  }
  .interview .inner-block {
    max-width: 1240px;
  }
  .interview .c-kv-section .txt-wrap {
    padding-bottom: 20px !important;
  }
  .training-careersupport .ib01 {
    display: inline;
  }
  .training-careersupport .training-section .diagram-wrap .process-wrap:last-child .process-block:last-child .process::after {
    content: none;
  }
  .training-careersupport .training-section .diagram-wrap .process-block .process::after {
    z-index: 5;
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: -24px;
    width: 46px;
    height: 21px;
    background: url(../img/training-careersupport/icon_diagram_arrow01.svg) center/contain no-repeat;
  }
  .training-careersupport .hr-section .diagram-wrap .career-list .career + .career {
    margin-top: 32px;
  }
  .training-careersupport .hr-section .diagram-wrap .career-list.hourly-list .career-wrap {
    margin-top: 32px;
  }
  .training-careersupport .hr-section .diagram-wrap .career-list.hourly-list .career-wrap .career {
    height: 120px;
  }
  .training-careersupport .hr-section .diagram-wrap .career-list.dm-list .career:last-child {
    height: 120px;
  }
  .work .relation-section .company-store-area .work-area {
    grid-template-rows: auto 1fr;
  }
  .work .work-section .top-txt {
    padding-inline: 64px;
  }
  .work .work-section .anchor-group-wrap_sticky {
    display: none;
    -ms-touch-action: none;
        touch-action: none;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .message .inner-block {
    max-width: 1240px;
  }
  .environment .inner-block {
    max-width: 1240px;
  }
  .environment .c-ttl02 {
    margin-bottom: 64px;
  }
  .environment .welfare-list li {
    min-height: 246px;
  }
  .sitemap .c-kv-section .white-bg {
    min-height: 246px;
  }
  .recruitment .inner-block {
    max-width: 1240px;
  }
  .faq .inner-block {
    max-width: 1240px;
  }
  .faq .c-ttl02 {
    margin-bottom: 64px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1100px) {
  .c-header {
    padding: 24px 12px 0 12px;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(2) .num {
    font-size: 3.125rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1100px) and (max-width: 1000px) {
  .c-header {
    padding: 24px 24px 0 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .c-header .logo-area {
    padding: 14px 0 14px 32px;
  }
  .c-header .logo-area img {
    width: 66px;
  }
  .c-header .logo-area .txt {
    line-height: 1.5;
  }
  .c-header .h-menu {
    margin-right: 20px;
    gap: 10px;
  }
  .c-header .entry-btn {
    padding: 10px 17px;
  }
  .c-header .br-1200 {
    display: block;
  }
  .cont-section {
    margin-top: 180px;
  }
  .environment .cont-section {
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1200px) and (max-width: 1000px) {
  .c-header .logo-area {
    padding: 20px 0 20px 32px;
  }
  .c-header .logo-area img {
    width: 100px;
  }
  .c-header .logo-area .txt {
    font-size: 1rem;
  }
  .c-header .h-menu {
    display: none;
  }
  .c-header .br-1200 {
    display: none;
  }
}
@media only screen and (max-width: 767px) and (max-width: 365px) {
  .c-header .logo-area {
    padding-left: 20px;
  }
  .c-header .r-area {
    padding-right: 15px;
  }
  .c-header .entry-btn {
    font-size: 0.75rem;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:first-child > .txt .num {
    font-size: 3.125rem;
  }
}
@media (any-hover: hover) {
  .c-header .h-menu .toggle-hover-menu > button:hover {
    color: #B60081;
    border-bottom: 4px solid #B60081;
  }
  .c-header .h-menu .toggle-hover-menu > button:hover::after {
    background: #B60081;
  }
  .c-header .h-menu a:hover {
    color: #B60081;
    border-bottom: 4px solid #B60081;
  }
  .c-header .toggle-hover-menu-area .dot-list > li > a {
    border-bottom: 1px solid transparent;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-header .toggle-hover-menu-area .dot-list > li > a:hover {
    border-bottom: 1px solid #B60081;
  }
  .c-header .entry-btn:hover {
    background: #453741;
  }
  .c-header .toggle-btn:hover .line {
    background: #B60081;
  }
  .h-toggle-menu .inn .h-menu > li > a:hover .icon, .h-toggle-menu .inn .h-menu > li button:hover .icon {
    background: #B60081;
  }
  .h-toggle-menu .inn .h-menu > li > a:hover .icon::after, .h-toggle-menu .inn .h-menu > li button:hover .icon::after {
    background: #fff;
  }
  .h-toggle-menu .inn .child-menu li > a:hover .icon {
    background: #B60081;
  }
  .h-toggle-menu .inn .child-menu li > a:hover .icon::after {
    background: #fff;
  }
  .footer-banner-area .footer-banner:hover {
    background: #F0F0F0;
  }
  .footer-banner-area .footer-banner:hover .icon {
    background: #fff;
  }
  .footer-banner-area .footer-banner:hover .icon::after {
    background: #453741;
  }
  .c-footer .list > li > a:hover, .c-footer .list > li div:hover {
    color: #B60081;
    text-decoration: underline;
    -webkit-text-decoration-color: currentColor;
            text-decoration-color: currentColor;
  }
  .c-footer .sub-list > li > a:hover {
    color: #B60081;
    text-decoration: underline;
    -webkit-text-decoration-color: currentColor;
            text-decoration-color: currentColor;
  }
  .c-footer .gray-menu-area ul > li > a:hover {
    color: #B60081;
    text-decoration: underline;
  }
  .c-footer .gray-menu-area ul > li > a.blank:hover {
    color: #B60081;
    text-decoration: underline;
  }
  .c-footer .gray-menu-area ul > li > a.blank:hover::after {
    background: #B60081;
  }
  .c-footer #pagetop > a:hover {
    background: #fff;
  }
  .c-footer #pagetop > a:hover::after {
    background: #453741;
  }
  .c-btn01:hover {
    background: #B60081;
  }
  .c-btn01:hover .icon::before {
    -webkit-animation-name: transformRightLeft;
            animation-name: transformRightLeft;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  .c-btn01:hover .icon::after {
    -webkit-animation-name: transformLeftRight;
            animation-name: transformLeftRight;
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
  }
  .c-interview-section .splide__slide:hover .link {
    text-decoration: none;
  }
  .c-interview-section .splide__slide:hover .img-area img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .c-interview-section .splide-toggle:hover {
    background: #fff;
    color: #453741;
  }
  .c-interview-section .splide-toggle:hover::before {
    background: #453741;
  }
  .c-interview-section .splide__arrow:hover {
    background: #fff;
  }
  .c-interview-section .splide__arrow:hover::after {
    background: #453741;
  }
  .c-interview-section .link:hover {
    text-decoration: none;
  }
  .c-q-area:hover {
    background: #F3DDED;
  }
  .c-q-area:hover .icon {
    background: #B60081;
  }
  .c-a-area .link:hover {
    color: #B60081;
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
  .c-kv-section .crumb li a {
    border-bottom: 1px solid transparent;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-kv-section .crumb li a:hover {
    border-bottom: 1px solid #B60081;
  }
  .c-related-section .related-block .related-btn:hover {
    background-color: #B60081;
  }
  .c-related-section .related-block .related-btn:hover .img-wrap img {
    -webkit-transform: scale(1.09);
            transform: scale(1.09);
  }
  .c-anchor-btn:hover {
    color: #B60081;
  }
  .c-anchor-btn:hover::after {
    opacity: 1;
  }
  .c-tab-wrap .tab:hover {
    background: #B60081;
    color: #fff;
  }
  .c-entry-block:hover .main-area {
    background: #453741;
  }
  .home .mv-section .splide-toggle:hover {
    background: #fff;
    color: #453741;
  }
  .home .mv-section .splide-toggle:hover::after {
    background: #453741;
  }
  .home .job-section .c-tab-wrap .tab:hover {
    background: #B60081;
    color: #fff;
  }
  .home .job-section .splide__arrows .splide__arrow:hover {
    background: #fff;
  }
  .home .job-section .splide__arrows .splide__arrow:hover::after {
    background: #453741;
  }
  .home .work-section .box:hover .img-area img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .home .work-section .box:hover .c-btn01 {
    background: #B60081;
  }
  .home .work-section .box:hover .c-btn01 .icon::before {
    -webkit-animation-name: transformRightLeft;
            animation-name: transformRightLeft;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  .home .work-section .box:hover .c-btn01 .icon::after {
    -webkit-animation-name: transformLeftRight;
            animation-name: transformLeftRight;
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
  }
  .interview .link-section .c-profile-card:hover .img-wrap img {
    scale: 1.05;
  }
  .interview .link-section .c-profile-card:hover .link-txt {
    border-color: #fff;
  }
  .sitemap .sitemap-block .site-list > li > a:hover {
    color: #B60081;
    -webkit-text-decoration-color: currentColor;
            text-decoration-color: currentColor;
  }
  .sitemap .sitemap-block .sub-list > li > a:hover {
    color: #B60081;
    -webkit-text-decoration-color: currentColor;
            text-decoration-color: currentColor;
  }
  .recruitment .flow-section .anchor-link:hover {
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1300px) {
  .c-header .h-menu .toggle-hover-menu > button {
    font-size: 0.875rem;
  }
  .c-header .h-menu a {
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .c-header .r-area {
    padding-right: 25px;
  }
  .c-header .toggle-btn {
    display: block;
    margin-left: 15px;
    width: 50px;
    height: 50px;
  }
  .cont-section .narrow {
    padding: 0 32px;
  }
  .faq-cont .faq-area .faq-control.mt-adj {
    margin-top: 0;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 350px) {
  .c-header .toggle-btn {
    margin-left: 6px;
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 370px) {
  .h-toggle-menu .inn .child-menu li > a {
    margin-left: 8px;
    padding-right: 30px;
  }
  .h-toggle-menu .inn .icon {
    width: 20px;
    height: 20px;
  }
  .c-btn01 {
    font-size: 0.75rem;
  }
  .c-btn01 .icon {
    width: 38px;
    height: 38px;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(2) .txt-wrap {
    gap: 5px;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(2) .txt {
    font-size: 0.875rem;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(2) .num {
    font-size: 1.875rem;
  }
}
@media only screen and (max-width: 767px) and (max-width: 375px) {
  .c-footer .logo-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 950px) {
  .c-interview-section .top-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
  }
  .c-interview-section .top-area .c-ttl01 {
    margin-bottom: 20px;
  }
  .c-interview-section .nav-area {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-left: auto;
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1150px) {
  .c-profile-card + .c-profile-card {
    margin-top: 320px;
  }
  .c-profile-card .txt-wrap {
    top: auto;
    bottom: -200px;
    margin: 0;
  }
}
@media (any-hover: none) {
  .c-anchor-btn:active {
    color: #B60081;
  }
  .c-anchor-btn:active::after {
    opacity: 1;
  }
  .recruitment .flow-section .anchor-link:active {
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .home .mv-section .circle.circle01 {
    left: 31px;
    top: 471px;
    width: 24px;
    height: 24px;
  }
  .home .mv-section .circle.circle02 {
    left: 56px;
    bottom: 233px;
    width: 48px;
    height: 48px;
  }
  .home .mv-section .circle.circle03 {
    top: 549px;
    left: 135px;
    width: 16px;
    height: 16px;
  }
  .home .mv-section .circle.circle04 {
    left: min(65px, 6.7708333333vw);
    bottom: 414px;
    width: 112px;
    height: 112px;
  }
  .home .mv-section .circle.circle05 {
    top: 407px;
    left: min(150px, 15.625vw);
    width: 96px;
    height: 96px;
  }
  .home .mv-section .circle.circle06 {
    width: 16px;
    height: 16px;
    left: 209px;
    bottom: min(319px, 33.2291666667vw);
  }
  .home .mv-section .circle.circle07 {
    top: 150px;
    right: 381px;
    left: 0;
    width: 20px;
    height: 20px;
  }
  .home .mv-section .circle.circle08 {
    right: 328px;
    bottom: -143px;
    width: 48px;
    height: 48px;
  }
  .home .mv-section .circle.circle09 {
    left: 0;
    right: 87px;
    bottom: 246px;
  }
  .home .mv-section .circle.circle10 {
    left: 173px;
    width: 64px;
    height: 64px;
  }
  .home .mv-section .circle.circle11 {
    left: 42px;
    bottom: 140px;
    width: 24px;
    height: 24px;
  }
  .home .mv-section .circle.circle12 {
    width: 80px;
    height: 80px;
    bottom: 110px;
    right: 305px;
  }
  .home .mv-section .circle.circle13 {
    top: 446px;
    right: 144px;
    width: 24px;
    height: 24px;
  }
  .home .mv-section .circle.circle14 {
    right: 192px;
    top: 200px;
    width: 96px;
    height: 96px;
  }
  .home .mv-section .circle.circle15 {
    right: 132px;
    top: 310px;
    width: 24px;
    height: 24px;
  }
  .home .mv-section .circle.circle16 {
    top: 400px;
    right: 62px;
    width: 16px;
    height: 16px;
  }
  .home .mv-section .circle.circle17 {
    right: 30px;
    top: 512px;
    width: 48px;
    height: 48px;
  }
  .home .mv-section .circle.circle18 {
    right: 52px;
    top: 566px;
    width: 40px;
    height: 40px;
  }
  .home .mv-section .mv-splide .splide__track,
  .home .mv-section .mv-splide .splide__list {
    min-height: 1400px;
  }
  .home .mv-section .mv-ttl {
    width: 281px;
    top: 46.5%;
    left: 60px;
    -webkit-transform: translateY(-46.5%);
            transform: translateY(-46.5%);
  }
  .home .mv-section .desc-area {
    top: 63.5%;
    -webkit-transform: translateY(-63.5%);
            transform: translateY(-63.5%);
  }
  .home .mv-section .desc-area .desc {
    font-size: 1.125rem;
  }
  .home .mv-section .desc-area .strong {
    margin-top: 10px;
  }
  .home .mv-section .mv-img {
    width: 136px;
    height: 136px;
  }
  .home .mv-section .mv-img.mv-img01 {
    left: 9px;
  }
  .home .mv-section .mv-img.mv-img02 {
    bottom: 116px;
    left: 148px;
  }
  .home .mv-section .mv-img.mv-img03 {
    width: 120px;
    height: 120px;
    right: 27px;
  }
  .home .mv-section .mv-img.mv-img04 {
    left: 130px;
    top: 484px;
  }
  .home .mv-section .mv-img.mv-img05 {
    bottom: 176px;
    right: 70px;
  }
  .home .mv-section .mv-main-img svg {
    width: min(591px, 61.5625vw);
  }
  .home .mv-section .splide-navi {
    top: 53.5%;
    -webkit-transform: translateY(-53.5%);
            transform: translateY(-53.5%);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1020px) {
  .home .work-section .flex-wrap {
    grid-template-columns: 1fr;
  }
  .home .work-section .box {
    max-width: 500px;
    margin: auto;
  }
}
@media only screen and (max-width: 370px) {
  .training-careersupport .ib01 {
    display: inline;
  }
}
@media only screen and (max-width: 389px) {
  .training-careersupport .ib02 {
    display: inline;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(4) .txt-wrap .txt {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 767px) and (max-width: 360px) {
  .training-careersupport .diagram-block {
    padding: 40px 16px;
  }
  .training-careersupport .training-section .diagram-wrap .process-block .process > div {
    width: 120px;
    height: 120px;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(2) .img {
    width: 200px;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(4) .txt-wrap + .txt-wrap {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (max-width: 767px) and (max-width: 340px) {
  .training-careersupport .hr-section .diagram-wrap .career-list {
    padding: 16px 8px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 880px) {
  .training-careersupport .hr-section .diagram-wrap .career-list.hourly-list .career-wrap .career:first-child {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 880px) and (max-width: 800px) {
  .training-careersupport .hr-section .diagram-wrap .career-list.hourly-list .career-wrap .career:first-child {
    padding: 0 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 935px) {
  .training-careersupport .hr-section .diagram-wrap .career-list.hourly-list .career-wrap .career:last-child {
    padding: 0 5px;
  }
}
@media only screen and (max-width: 390px) {
  .work .relation-section .company-store-area .arrow-area {
    gap: clamp(8px, 6.1538461538vw, 24px);
  }
  .work .relation-section .company-store-area .arrow-area .arrow {
    gap: clamp(8px, 4.1025641026vw, 16px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .work .work-section .anchor-group-wrap .anchor-group-area {
    padding-inline: clamp(16px, 5vw, 64px);
  }
}
@media only screen and (max-width: 767px) and (any-hover: hover) {
  .work .work-section .anchor-group-wrap_sticky .nav-btn:hover {
    background: #FFFFFF;
  }
  .work .work-section .anchor-group-wrap_sticky .nav-btn:hover .inn-txt {
    color: #453741;
  }
}
@media only screen and (min-width: 768px) and (max-width: 847px) {
  .message .c-kv-section .inner-block {
    padding-bottom: 20px;
  }
  .recruitment .c-kv-section .inner-block {
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 1100px) {
  .message .message-section .flow-img.img01 {
    width: 180px;
    top: 40px;
    left: min(60px, 4.2857142857vw);
  }
}
@media only screen and (max-width: 1100px) and (max-width: 767px) {
  .message .message-section .flow-img.img01 {
    width: 120px;
    top: 97px;
    left: min(24px, 6.1538461538vw);
  }
}
@media only screen and (max-width: 950px) {
  .message .message-section .flow-img.img02 {
    right: 5px;
    top: 400px;
    width: 120px;
  }
  .message .message-section .flow-deco.deco06 {
    display: none;
  }
}
@media only screen and (max-width: 1250px) {
  .message .message-section .flow-img.img03 {
    left: min(30px, 2.1428571429vw);
    bottom: 336px;
    width: 140px;
  }
  .message .message-section .flow-img.img04 {
    right: min(35px, 2.5vw);
    width: 200px;
  }
}
@media only screen and (max-width: 1250px) and (max-width: 900px) {
  .message .message-section .flow-img.img03 {
    display: none;
  }
}
@media only screen and (max-width: 1250px) and (max-width: 767px) {
  .message .message-section .flow-img.img04 {
    width: 140px;
    bottom: 29px;
    right: min(55px, 14.1025641026vw);
  }
}
@media only screen and (max-width: 900px) {
  .message .message-section .flow-deco.deco07 {
    display: none;
  }
  .message .message-section .flow-deco.deco12 {
    display: none;
  }
  .recruitment .flow-section .flow-wrap .flow-list > li dl {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
  }
  .recruitment .flow-section .flow-wrap .flow-list > li dl dt {
    border: none;
  }
  .recruitment .flow-section .flow-wrap .flow-list > li dl dt .inn {
    padding-left: 96px;
  }
  .recruitment .contact-section .inner-block > .cont > dl .cont {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
}
@media only screen and (max-width: 800px) {
  .message .message-section .flow-deco.deco08 {
    display: none;
  }
}
@media only screen and (max-width: 970px) {
  .message .message-section .flow-deco.deco09 {
    display: none;
  }
}
@media only screen and (max-width: 1000px) {
  .message .message-section .flow-deco.deco15 {
    width: 80px;
    right: 5px;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 767px) {
  .message .message-section .flow-deco.deco15 {
    width: 60px;
    bottom: 109px;
    right: min(34px, 8.7179487179vw);
  }
}
@media only screen and (max-width: 767px) and (max-width: 365px) and (max-width: 340px) {
  .message .initiative-section .audience-message-wrap .data-list > li:first-child > .txt .num {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 767px) and (max-width: 345px) {
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(3) {
    padding-inline: 10px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 605px) {
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(3) .composition-table {
    max-width: 262px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 380px) {
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(3) .composition-table .num {
    font-size: 0.75rem;
    width: inherit;
  }
  .error .error-block .c-ttl01 .ja {
    font-size: 2.0625rem;
  }
}
@media only screen and (max-width: 380px) {
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(3) .composition-table .ja {
    font-size: 0.6875rem;
    padding-left: 0;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(3) .composition-table .symbol {
    padding-left: 0;
    font-size: 0.6875rem;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(3) .composition-table th {
    padding-right: 1px;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(3) .composition-table td:last-child {
    padding: 0;
  }
}
@media only screen and (max-width: 360px) {
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(4) .txt-wrap .inn {
    max-width: 100px;
  }
}
@media only screen and (max-width: 389px) and (max-width: 360px) {
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(4) .txt-wrap .txt {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 767px) and (max-width: 389px) {
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(4) .txt-wrap .txt .num {
    font-size: 1.875rem;
  }
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(4) > .txt .num {
    font-size: 1.5625rem;
  }
}
@media only screen and (max-width: 767px) and (max-width: 389px) and (max-width: 360px) {
  .message .initiative-section .audience-message-wrap .data-list > li:nth-child(4) .txt-wrap .txt .num {
    font-size: 1.5625rem;
  }
}
@media only screen and (any-hover: hover) and (max-width: 767px) {
  .sitemap .sitemap-block .site-list > li > a:hover {
    border-color: #B60081;
  }
  .sitemap .sitemap-block .sub-list > li > a:hover {
    border-color: #B60081;
  }
}
@media only screen and (max-width: 900px) and (max-width: 767px) {
  .recruitment .flow-section .flow-wrap .flow-list > li dl {
    gap: 8px;
  }
  .recruitment .flow-section .flow-wrap .flow-list > li dl dt {
    padding: 0 20px 0 24px;
  }
  .recruitment .flow-section .flow-wrap .flow-list > li dl dt .inn {
    padding-left: 53px;
    font-size: 1.25rem;
  }
  .recruitment .contact-section .inner-block > .cont > dl .cont {
    gap: 8px;
  }
}