@charset "UTF-8";
/*
Theme Name:kearu
Theme URL:https://kearu.jp
Description:株式会社ケアルのオリジナルテーマです。
Author: プレイマンズ　WEB事業部
Version: 1.0
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
}

html {
  font-size: 16px;
  overflow-x: clip;
}

body {
  color: #1C1C4D;
  background-color: #F8FBFF;
  font-size: clamp(0.9rem, 0.85rem + 0.2133vw, 1rem);
  box-sizing: border-box;
  font-weight: 500;
  line-height: 2.2rem;
  overflow-x: clip;
  position: relative;
}

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

a {
  color: #1C1C4D;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

p {
  line-height: 2rem;
}

.flex {
  display: flex;
}

@media screen and (max-width: 960px) {
  .flex.flex-disable-sp {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .flex.flex-disable-sp480 {
    display: block;
  }
}
.sp-flex {
  display: none;
}
@media screen and (max-width: 960px) {
  .sp-flex {
    display: flex;
  }
}

.flex-a-ctr {
  align-items: center;
}

.flex-j-ctr {
  justify-content: center;
}

.flex-j-between {
  justify-content: space-between;
}

.flex-w-wrap {
  flex-wrap: wrap;
}

@media screen and (max-width: 960px) {
  .flex-w-wrap-sp {
    flex-wrap: wrap;
  }
}
.flex-d-column {
  flex-direction: column;
}

.pr10 {
  padding-right: 10px;
}

.mt48 {
  margin-top: 3rem;
}

@media screen and (max-width: 960px) {
  .sp-mt48 {
    margin-top: 3rem;
  }
}

.mt32 {
  margin-top: 2rem;
}

.mt16 {
  margin-top: 1rem;
}

.mb16 {
  margin-bottom: 1rem;
}

.text-right {
  text-align: right;
}

.sp-br {
  display: none;
}
@media screen and (max-width: 960px) {
  .sp-br {
    display: block;
  }
}

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

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

/********************************* ヘッダー *********************************/
/* ヘッダー（PC用）*/
.header-pc {
  position: fixed;
  top: 1.5vw;
  width: 100%;
  z-index: 999;
  height: 5rem;
}
@media screen and (max-width: 1024px) {
  .header-pc {
    display: none;
  }
}
.header-pc__wrapper {
  height: 100%;
}
.header-pc__logo {
  margin-left: 3vw;
  height: 100%;
}
.header-pc__logo img {
  height: 100%;
}
.header-pc__nav {
  height: 100%;
  background-color: #FFFFFF;
  border-radius: 3rem;
  box-shadow: 5px 5px 5px #E2E4E7;
  margin-right: 3vw;
}
.header-pc__list {
  height: 100%;
  font-weight: 600;
  justify-content: center;
  line-height: 1.3rem;
}
.header-pc__list li {
  padding: 0 clamp(1rem, 0rem + 1.6667vw, 2rem);
}
.header-pc__list li:first-child {
  padding: 0 2vw 0 5vw;
}
.header-pc__list li:hover .header-pc__nav-en::before {
  background-color: #969DE5;
}
.header-pc__nav-en {
  position: relative;
  display: block;
}
.header-pc__nav-en::before {
  content: "";
  position: absolute;
  top: 6px;
  left: -18px;
  width: 9px;
  height: 9px;
  background-color: #3B82C5;
  border-radius: 50%;
  transition: all 0.4s;
}
.header-pc__nav-ja {
  font-size: 0.8rem;
}
.header-pc__nav-contact {
  background: #3B82C5;
  border-radius: 50px;
  padding: 15px 25px;
  color: #FFFFFF;
  transition: all 0.4s;
  border: transparent 1px solid;
}
.header-pc__nav-contact:hover {
  background: #fff;
  color: #3B82C5;
  border: #3B82C5 1px solid;
}
.header-pc__contact-button {
  display: none;
}

/* ヘッダー（SP用）*/
.header-sp {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  height: 5rem;
}
@media screen and (max-width: 1024px) {
  .header-sp {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .header-sp {
    height: 4rem;
  }
}
.header-sp__nav {
  display: none;
}
.header-sp__nav.is-open {
  display: block;
  background-color: rgba(51, 63, 105, 0.95);
  position: fixed;
  z-index: 1001;
  width: 70%;
  border-radius: 30px;
  top: 0;
  right: 0;
  width: 50%;
  height: auto;
}
@media screen and (max-width: 480px) {
  .header-sp__nav.is-open {
    width: 80%;
  }
}
@media screen and (max-width: 600px) and (min-width: 481px) {
  .header-sp__nav.is-open {
    width: 70%;
  }
}
@media screen and (max-width: 767px) and (min-width: 601px) {
  .header-sp__nav.is-open {
    width: 60%;
  }
}
.header-sp__wrapper {
  height: 100%;
}
.header-sp__button-wrapper {
  height: 100%;
  position: relative;
  z-index: 1002;
}
.header-sp__logo {
  margin-left: 3vw;
  height: 100%;
  padding-top: 0.5rem;
}
.header-sp__logo img {
  height: 100%;
  width: auto;
  transition: all 0.4s;
}
.header-sp__hamburger {
  display: flex;
  border: none;
  background-color: #969DE5;
  color: #FFFFFF;
  border-radius: 0 0 1rem 1rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  width: 5.5rem;
  height: 100%;
}
.header-sp__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 1rem;
  transition: all 0.3s ease;
}
.header-sp__hamburger span:last-child {
  width: auto;
  height: auto;
  background-color: transparent;
  border-radius: 0;
}
.header-sp__contact-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  background-color: #3B82C5;
  color: #FFFFFF;
  border-radius: 0 0 1rem 1rem;
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 1rem;
  width: 5.5rem;
  height: 100%;
  justify-content: center;
}
.header-sp i {
  font-size: 1.05rem;
}
.header-sp__list a {
  color: #FFFFFF;
}
.header-sp__list .navigation__en {
  font-size: 1.3rem;
}
.header-sp__list li {
  margin: 1rem 0;
}
.header-sp__group {
  margin: 5rem 3rem;
}
@media screen and (max-width: 480px) {
  .header-sp__group {
    margin: 5rem 1.5rem;
  }
}

/************************************ フッター ************************************/
/* コンタクト */
.contact .flex {
  gap: 10%;
}
.contact__description {
  flex: 0 0 50%;
}
.contact__img {
  flex: 0 0 40%;
}
@media screen and (max-width: 960px) {
  .contact__img {
    width: 80%;
    margin: 0 auto;
    display: block;
    text-align: center;
  }
}
.contact__img img {
  width: 85%;
  height: auto;
}
@media screen and (max-width: 960px) {
  .contact__img img {
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  .contact .button {
    margin: 3rem auto 0;
  }
}

/* フッター */
.footer {
  width: 100%;
  background-color: #333F69;
  margin-top: 8rem;
  color: #FFFFFF;
  padding: 5rem 8rem;
}
.footer .flex {
  gap: 4rem;
}
@media screen and (max-width: 960px) {
  .footer {
    padding: 4rem 2rem;
  }
}
@media screen and (max-width: 960px) {
  .footer__company {
    text-align: center;
  }
}
.footer__company-name {
  font-size: 1.3rem;
  font-weight: 600;
}
.footer__map {
  color: #FFFFFF;
  font-weight: 300;
  text-decoration: underline;
  margin-top: 0.5rem;
  display: block;
}
.footer__address {
  font-weight: 400;
}
.footer__copyright {
  text-align: right;
  margin-top: 3rem;
  font-weight: 300;
  font-size: 0.8rem;
}
@media screen and (max-width: 960px) {
  .footer__copyright {
    text-align: center;
  }
}
.footer__company.flex {
  gap: 2rem;
}
@media screen and (max-width: 1125px) and (min-width: 961px) {
  .footer__company.flex {
    flex-direction: column;
  }
}

.navigation {
  width: 50%;
}
@media screen and (max-width: 960px) {
  .navigation {
    width: 320px;
    margin: 3rem auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.navigation a {
  color: #FFFFFF;
}
.navigation.flex {
  gap: 2rem;
}
.navigation li {
  line-height: 1.3rem;
}
.navigation__en {
  display: flex;
  align-items: center;
  position: relative;
}
.navigation__en::before {
  content: "";
  width: 9px;
  height: 9px;
  background-color: #3B82C5;
  border-radius: 50%;
  margin-right: 0.5rem;
  transition: all 0.4s;
  line-height: 0.8rem;
}
.navigation__ja {
  font-size: 0.8rem;
  padding-left: 18px;
}

/********************************* 使いまわしてるパーツ *********************************/
.message .flex {
  gap: 10%;
}
@media screen and (max-width: 1125px) {
  .message .flex {
    gap: 6%;
  }
}
.message__description {
  flex: 0 0 50%;
  min-width: 0;
}
.message__img {
  flex: 0 0 40%;
  min-width: 0;
}
.message__img img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 960px) {
  .message__img img {
    width: 80%;
    margin: 0 auto;
    display: block;
  }
}
@media screen and (max-width: 960px) {
  .message .button {
    margin: 3rem auto 0;
  }
}
.message__catch {
  font-size: 1.5rem;
}

/* Sectionの見出し */
.heading {
  margin-bottom: 3rem;
}
.heading--en, .heading--ja {
  display: block;
}
.heading--ja {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 480px) {
  .heading--ja {
    margin-bottom: 0;
    font-size: clamp(1rem, 0.9rem + 0.4267vw, 1.2rem);
  }
}
.heading--ja::before {
  content: "■";
  color: #3B82C5;
  margin-right: 0.5rem;
}
.heading--en {
  font-size: 5rem;
  line-height: 5rem;
}
@media screen and (max-width: 1200px) {
  .heading--en {
    font-size: clamp(2.8rem, 2.2545rem + 2.3273vw, 4rem);
    line-height: clamp(2.8rem, 2.2545rem + 2.3273vw, 4rem);
    word-break: break-word;
  }
}
.heading__md {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 3rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1125px) {
  .heading__md {
    font-size: clamp(1.4rem, 1.3rem + 0.4267vw, 1.6rem);
  }
}
@media screen and (max-width: 960px) {
  .heading__md {
    margin-bottom: 1rem;
  }
}
.heading__md.md--bl::before {
  content: "";
  border: solid 3px #3B82C5;
  height: 1.3rem;
  margin-right: 0.8rem;
  border-radius: 5px;
}
.heading__md.md--pl::before {
  content: "";
  border: solid 3px #969DE5;
  height: 1.3rem;
  margin-right: 0.8rem;
  border-radius: 5px;
}

/* 余白調整用 */
.wrapper {
  width: 90%;
  max-width: 1240px;
  margin: 16rem auto 0;
}
@media screen and (max-width: 960px) {
  .wrapper {
    margin: 6rem auto 0;
  }
}

/* 枠のテンプレ */
.container {
  background-color: #FFFFFF;
  border-radius: 30px;
  padding: 6rem;
  box-shadow: 5px 5px 5px #E2E4E7;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 4rem 2rem;
  }
}

/* テキストの枠 */
.text {
  margin: 3rem 0;
}
.text p {
  margin: 1.1rem 0;
}

/* ボタン共通 */
.button {
  background: linear-gradient(to right, #3B82C5 0%, #969DE5 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  max-width: 300px;
  box-shadow: 5px 5px 5px #E2E4E7;
  transition: all 0.4s;
}
.button.btn--bl {
  background: linear-gradient(90deg, #3B82C5 0%, #72AADF 100%);
}
.button.btn--pl {
  background: linear-gradient(90deg, #7564CC 0%, #A195DE 100%);
}
.button__icon {
  font-size: 2rem;
  color: #ffffff;
  transition: all 0.4s;
}
.button:hover .button__icon {
  transform: translateX(5px);
}
.button:hover {
  box-shadow: 2px 2px 2px #E2E4E7;
}

/* スライドやモーダルのポイント部分 */
.point {
  font-size: clamp(3rem, 2.038rem + 1.6016vw, 4rem);
  line-height: 4rem;
  background-image: linear-gradient(to right, #3B82C5 0%, #969DE5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 960px) {
  .point {
    font-size: clamp(3rem, 2.4262rem + 2.623vw, 4rem);
    margin-bottom: 0;
  }
}

/* VIEW MOREなどのテキストリンク */
.text-link {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  text-align: right;
}
.text-link::before {
  content: "";
  width: 3rem;
  height: 2px;
  background: linear-gradient(to right, #3B82C5 0%, #969DE5 100%);
  margin-right: 0.5rem;
  display: inline-block;
  vertical-align: middle;
}
.text-link a {
  transition: all 0.4s;
}
.text-link:hover a {
  color: #969DE5;
}

/* パンくず */
.breadcrumb {
  font-size: 0.8rem;
}
.breadcrumb__home a {
  color: #B0B0B0;
}
.breadcrumb__home::after {
  content: "";
  width: 3rem;
  height: 1px;
  background: #B0B0B0;
  margin: 0 0.5rem;
  display: inline-block;
  vertical-align: middle;
}
.breadcrumb__current {
  background: #3B82C5;
  color: #FFFFFF;
  border-radius: 20px;
  padding: 0 0.8rem;
}

/* 子ページタイトル */
.page__title {
  margin-top: 3rem;
}
@media screen and (max-width: 960px) {
  .page__title {
    margin-top: clamp(0.5rem, -1.1026rem + 6.8376vw, 3rem);
  }
}
.page__title--en, .page__title--ja {
  display: block;
}
.page__title--en {
  font-size: 6rem;
  line-height: 6rem;
  background-image: linear-gradient(to right, #3B82C5 0%, #969DE5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 960px) {
  .page__title--en {
    font-size: clamp(3.5rem, 2.25rem + 6.25vw, 6rem);
    line-height: clamp(3.5rem, 2.25rem + 6.25vw, 6rem);
  }
}
.page__title--ja {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  font-weight: 500;
}

/* ページ内リンク */
.page__link {
  font-weight: 600;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .page__link {
    display: none;
  }
}
.page__link .flex {
  gap: 2rem;
}
.page__link ul {
  line-height: 1.5rem;
}
.page__link li {
  position: relative;
  border-radius: 20px;
  background: #FFFFFF;
  padding: 1rem 4rem;
  box-shadow: 5px 5px 5px #E2E4E7;
}
.page__link li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 4px solid #3B82C5;
  border-right: 4px solid #3B82C5;
  border-radius: 4px;
  transform: translateY(-50%) rotate(45deg);
}
.page__link--en, .page__link--ja {
  display: block;
}
.page__link--ja {
  font-size: 0.8rem;
}

/* ページ右上の円 */
.circle {
  width: clamp(15rem, 8rem + 35vw, 50rem);
  height: clamp(18rem, 11.6rem + 32vw, 50rem);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.circle--bold {
  position: absolute;
  top: -32%;
  right: -20%;
  width: 48rem;
  animation: rotate 5s linear infinite, float 8s ease-in-out infinite;
}
.circle--thin {
  position: absolute;
  top: -42%;
  right: -8%;
  width: 50rem;
  animation: rotate 7s linear infinite, float 5s ease-in-out infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}
.sub-page.wrapper {
  padding-top: 16rem;
  margin: 0 auto;
}

/* 記事やサンクスページに入ってる仕切り線 */
.underline {
  border-bottom: dotted 2px #DDDDDD;
  padding-bottom: 2rem;
}

/* よくある質問 */
.faq summary {
  display: block;
  background: #FFFFFF;
  box-shadow: 5px 5px 5px #E2E4E7;
  padding: 1.5rem 2rem;
  margin: 1rem;
  border-radius: 20px;
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 5rem;
}
@media screen and (max-width: 480px) {
  .faq summary {
    padding: 1rem 3rem 1rem 1rem;
  }
}
.faq summary::before {
  content: "Q.";
  font-size: 1.8rem;
  margin-right: 1rem;
  font-weight: 600;
}
.faq summary::after {
  font: var(--fa-font-solid);
  content: "\f078";
  padding: 0.8rem;
  background: linear-gradient(to right, #3B82C5 0%, #969DE5 100%);
  border-radius: 50%;
  color: white;
  position: absolute;
  right: 2rem;
  transition: all 0.4s;
}
@media screen and (max-width: 480px) {
  .faq summary::after {
    padding: 0.5rem;
    right: 1rem;
  }
}
.faq details[open] summary::after {
  transform: rotate(180deg);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq .answer {
  padding: 1rem 2rem;
  margin: 1rem;
}
.faq .answer::before {
  content: "A.";
  font-size: 1.8rem;
  margin-right: 1rem;
  font-weight: 600;
}

/********************************* モーダル *********************************/
/* モーダル共通 */
.modal {
  display: none;
}
.modal.is-open {
  display: block;
}
.modal__trigger {
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border: solid 2px transparent;
  background: linear-gradient(to right, #3B82C5 0%, #969DE5 100%), linear-gradient(white, white), linear-gradient(to right, #3B82C5 0%, #969DE5 100%);
  background-origin: border-box;
  background-clip: text, content-box, border-box;
  -webkit-background-clip: text, content-box, border-box;
  color: transparent;
  -webkit-text-fill-color: transparent;
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .modal__trigger {
    top: 3rem;
    left: auto;
    right: 1rem;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    width: 2rem;
    height: 2rem;
  }
}
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal__container {
  background-color: #fff;
  padding: 3rem;
  max-width: 500px;
  max-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 600px) {
  .modal__container {
    width: 90%;
    margin: 0 auto;
    padding: 1.5rem;
  }
}
.modal__header {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.modal__title {
  font-weight: 600;
  font-size: 1.8rem;
}
@media screen and (max-width: 1125px) {
  .modal__title {
    font-size: clamp(1.4rem, 1.3rem + 0.4267vw, 1.6rem);
  }
}
.modal__close {
  background: transparent;
  border: 0;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .modal__close {
    font-size: 1.5rem;
  }
}
.modal .modal__header .modal__close:before {
  content: "✕";
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 600px) {
  .modal__content {
    margin-bottom: 1rem;
  }
}
.modal__content h5 {
  text-align: center;
  background: linear-gradient(to right, rgba(59, 130, 197, 0.2) 0%, rgba(150, 157, 229, 0.2) 100%);
  border-radius: 20px;
  padding: 0.5rem;
}
.modal__content .strength_img {
  display: block;
  margin: 2rem auto;
}
.modal__heading {
  font-size: 1.8rem;
}
@media screen and (max-width: 1125px) {
  .modal__heading {
    font-size: clamp(1.4rem, 1.3rem + 0.4267vw, 1.6rem);
  }
}

/********************************* TOPページ *********************************/
/* KV */
@media screen and (max-width: 960px) {
  .kv {
    padding-top: clamp(20rem, 18.8rem + 6vw, 26rem);
  }
}
.kv__img {
  position: relative;
  background-image: url("images/kearu_kv.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 961px) {
  .kv__img {
    min-height: clamp(600px, 120vh, 1643px);
  }
}
@media screen and (max-width: 960px) {
  .kv__img {
    background-image: url("images/kearu_kv_sp.png");
    background-size: contain;
    aspect-ratio: 3/4;
    width: 90%;
    margin: 0 auto 6rem;
    border-radius: 30px;
  }
}
.kv__message {
  position: absolute;
  top: 23vh;
  left: 12vw;
}
@media screen and (max-width: 960px) {
  .kv__message {
    top: clamp(-8.5rem, -8.1795rem - 1.3675vw, -9rem);
    left: clamp(0.03125rem, -1.5513rem + 6.7521vw, 2.5rem);
  }
}
.kv__catch {
  font-size: clamp(4rem, 1.5rem + 3.3333vw, 5.5rem);
  line-height: clamp(8rem, 6.3333rem + 2.2222vw, 9rem);
  letter-spacing: 0.2rem;
  font-style: italic;
}
@media screen and (max-width: 960px) {
  .kv__catch {
    font-size: clamp(2.1rem, 0.8821rem + 5.1966vw, 4rem);
    line-height: clamp(4rem, 1.4359rem + 10.9402vw, 8rem);
    letter-spacing: 0;
  }
}
.kv__text--bl {
  color: #3B82C5;
}
.kv__text--sm {
  font-size: clamp(3.5rem, 1.8333rem + 2.2222vw, 4.5rem);
}
@media screen and (max-width: 960px) {
  .kv__text--sm {
    font-size: clamp(1.6rem, 0.3821rem + 5.1966vw, 3.5rem);
  }
}
.kv__text--tegaki {
  background-image: linear-gradient(to right, #3B82C5 0%, #969DE5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.kv__text-wrapper {
  font-family: "Zen Kurenaido", sans-serif;
  background-color: #FFFFFF;
  border: solid #1C1C4D 3px;
  padding: 0 2vw;
}
.kv__description {
  margin-top: 1.5rem;
  font-size: clamp(1.2rem, 1.0333rem + 0.2222vw, 1.3rem);
  line-height: clamp(2rem, 1.1667rem + 1.1111vw, 2.5rem);
}
@media screen and (max-width: 960px) {
  .kv__description {
    margin-top: 0.8rem;
    font-size: clamp(0.8rem, 0.4795rem + 1.3675vw, 1.3rem);
  }
}

/* 私たちが提供できること */
.service .heading {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 3rem;
}
.service .flex {
  gap: 4rem;
}
.service__item {
  flex: 1;
  background-color: #FFFFFF;
  padding: 6rem;
  border-radius: 30px;
  box-shadow: 5px 5px 5px #E2E4E7;
}
@media screen and (max-width: 767px) {
  .service__item {
    padding: 4rem 2rem;
  }
}

/* 私たちの強み */
.our-strength {
  margin: 16rem auto 0;
}
@media screen and (max-width: 960px) {
  .our-strength {
    margin: 6rem auto 0;
  }
}
.our-strength .heading {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 3rem;
}
@media screen and (max-width: 960px) {
  .our-strength .heading {
    width: 90%;
    margin: 6rem auto 3rem;
  }
}
.our-strength .swiper {
  width: 100%;
  height: 100%;
  padding-bottom: 10px;
}
@media screen and (max-width: 960px) {
  .our-strength .swiper {
    width: 90%;
    margin: 0 auto;
    padding-right: 10px;
  }
}
.our-strength .swiper-slide {
  height: auto;
  background-color: #FFFFFF;
  border-radius: 30px;
  box-shadow: 5px 5px 5px #E2E4E7;
  padding: 3rem 4rem;
}
@media screen and (max-width: 960px) {
  .our-strength .swiper-slide {
    padding: 4rem 2rem;
  }
}
.our-strength .swiper-slide .slide-ttl {
  width: 60%;
}
@media screen and (max-width: 960px) {
  .our-strength .swiper-slide .slide-ttl {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 960px) {
  .our-strength .swiper-slide .slide-ttl .point {
    margin: 0 auto 2rem;
  }
}
.our-strength .swiper-slide .slide-img {
  width: 40%;
  max-width: 240px;
}
@media screen and (max-width: 960px) {
  .our-strength .swiper-slide .slide-img {
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
  }
}
.our-strength .swiper-slide img {
  width: 100%;
}
.our-strength .swiper-slide p {
  margin-top: 1rem;
}
.our-strength .swiper-area {
  position: relative;
}
.our-strength .swiper-area .swiper-button-prev,
.our-strength .swiper-area .swiper-button-next {
  padding: 2rem;
  background: linear-gradient(to right, #3B82C5 0%, #969DE5 100%);
  border-radius: 50%;
  color: white;
  position: absolute;
}
.our-strength .swiper-area .swiper-button-prev {
  top: auto;
  right: 120px;
  left: auto;
  bottom: -100px;
}
@media screen and (max-width: 960px) {
  .our-strength .swiper-area .swiper-button-prev {
    bottom: -5rem;
  }
}
.our-strength .swiper-area .swiper-button-next {
  top: auto;
  right: 40px;
  left: auto;
  bottom: -100px;
}
@media screen and (max-width: 960px) {
  .our-strength .swiper-area .swiper-button-next {
    bottom: -5rem;
  }
}
.our-strength .swiper-area .swiper-button-next:after, .our-strength .swiper-area .swiper-button-prev:after {
  font-size: 1.5rem;
}

/* 私たちの想い */
.our-thoughts {
  padding-bottom: 53px;
}
.our-thoughts .container {
  position: relative;
}
@media screen and (max-width: 960px) {
  .our-thoughts .container {
    padding: 0;
  }
}
@media screen and (max-width: 960px) {
  .our-thoughts.wrapper {
    margin: 12rem auto 0;
  }
}
.our-thoughts .our-thoughts__description {
  width: 40%;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 960px) {
  .our-thoughts .our-thoughts__description {
    width: 100%;
    padding: 4rem 2rem;
  }
}
.our-thoughts__text {
  margin-bottom: 3rem;
}
.our-thoughts__img {
  position: absolute;
  bottom: -3rem;
  left: -2rem;
  width: 40rem;
  height: 26rem;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 5px 5px 5px #E2E4E7;
}
@media screen and (max-width: 960px) {
  .our-thoughts__img {
    width: 100%;
    position: static;
  }
}
@media screen and (max-width: 1200px) and (min-width: 961px) {
  .our-thoughts__img {
    width: 58%;
    height: 78%;
  }
}
.our-thoughts__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/* 新着情報 */
.news__item {
  background-color: #FFFFFF;
  box-shadow: 5px 5px 5px #E2E4E7;
  border-radius: 20px;
  margin: 1rem 0;
  padding: 1.5rem 3rem;
}
@media screen and (max-width: 960px) {
  .news__item {
    padding: 1rem 2rem;
  }
}
.news__item:hover .news__arrow {
  transform: translateX(5px);
}
.news__content {
  display: flex;
}
@media screen and (max-width: 960px) {
  .news__content {
    display: block;
  }
}
.news__arrow {
  background: linear-gradient(to right, #3B82C5 0%, #969DE5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 2rem;
  margin-left: auto;
  transition: all 0.4s;
}
.news__date {
  position: relative;
  padding-right: 1.5rem;
}
@media screen and (max-width: 960px) {
  .news__date {
    padding-right: 0;
  }
}
.news__date::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 100%;
  width: 2px;
  background-color: #DDDDDD;
}
@media screen and (max-width: 960px) {
  .news__date::before {
    display: none;
  }
}
.news__title {
  padding-left: 1.5rem;
}
@media screen and (max-width: 960px) {
  .news__title {
    padding-left: 0;
  }
}
.news__category {
  border-radius: 20px;
  background-color: #3B82C5;
  padding: 0.5rem;
  color: #FFFFFF;
}
.news .pagination-prev.disabled, .news .pagination-next.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.news .news__pagination.flex {
  gap: 2rem;
  margin: 5rem auto 0;
  width: -moz-fit-content;
  width: fit-content;
}
.news .pagination-number.current {
  background: linear-gradient(to right, rgba(59, 130, 197, 0.2) 0%, rgba(150, 157, 229, 0.2) 100%);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/********************************* お知らせの詳細 *********************************/
.news-single__meta {
  margin: 1rem;
}
.news-single__date {
  margin-right: 1rem;
}
.news-single__category {
  border-radius: 20px;
  background-color: #3B82C5;
  padding: 4px 8px;
  color: #FFFFFF;
}
.news-single__pagination.flex {
  gap: 2rem;
  margin: 5rem auto 0;
  width: -moz-fit-content;
  width: fit-content;
}
.news-single .prev-link.disabled, .news-single .next-link.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.news-single .heading__md {
  margin-bottom: 0;
}
.news-single__body {
  margin-top: 2rem;
}

/********************************* 会社案内 *********************************/
/* 数字で見るケアル */
.in-numbers .flex {
  gap: 1rem;
}
.in-numbers__card {
  background-color: #FFFFFF;
  box-shadow: 5px 5px 5px #E2E4E7;
  border-radius: 20px;
  position: relative;
  flex: 0 0 calc(50% - 10px);
  padding: 3rem;
  z-index: 2;
  text-align: center;
  height: 14rem;
}
@media screen and (max-width: 767px) {
  .in-numbers__card {
    flex: 0 0 100%;
  }
}
.in-numbers__card--matching::before {
  background-image: url("images/in-numbers_matching.svg");
}
.in-numbers__card--staff::before {
  background-image: url("images/in-numbers_staff.svg");
}
.in-numbers__card--company::before {
  background-image: url("images/in-numbers_company.svg");
}
.in-numbers__card--repeat::before {
  background-image: url("images/in-numbers_repeat.svg");
}
.in-numbers__card--satisfaction::before {
  background-image: url("images/in-numbers_satisfaction.svg");
}
.in-numbers__card:nth-child(3) {
  flex: 0 0 100%;
}
.in-numbers__card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  opacity: 0.2;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
.in-numbers__img {
  opacity: 0.2;
  display: block;
  margin: 0 auto;
  width: auto;
  height: 190px;
}
.in-numbers__underline {
  width: 3rem;
  height: 2px;
  background: linear-gradient(to right, #3B82C5 0%, #969DE5 100%);
  margin: 0.25rem auto 2rem;
}
.in-numbers__number {
  background-image: linear-gradient(to right, #3B82C5 0%, #969DE5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 5rem;
  font-weight: 600;
}
.in-numbers__unit {
  font-weight: 600;
  font-size: 1.2rem;
}

/* 会社概要 */
.company-profile table {
  width: 100%;
}
.company-profile tr {
  border-bottom: dotted 1px #DDDDDD;
}
.company-profile td, .company-profile th {
  padding: 1.5rem;
}
@media screen and (max-width: 960px) {
  .company-profile td, .company-profile th {
    display: block;
    padding: 0.5rem 1.5rem;
  }
}
.company-profile th {
  text-align: left;
}

/* アクセス */
.access__item {
  flex: 1;
  width: 100%;
}
.access__address {
  font-weight: 600;
  padding-bottom: 1rem;
  font-size: 1.2rem;
}
.access__time {
  padding: 1rem 0;
}

/********************************* 企業サポート *********************************/
/* 人材をお探しの企業様へ */
.business-message__description {
  width: 60%;
}
.business-message__img {
  width: 40%;
}

/* 人材をお探しの企業様へ */
.business-service h4 {
  position: relative;
  font-size: 1.3rem;
  padding: 3rem 0 2rem 1.5rem;
}
@media screen and (max-width: 960px) {
  .business-service h4 {
    font-size: clamp(1.1rem, 1.0359rem + 0.2735vw, 1.2rem);
  }
}
.business-service h4::before {
  content: "■";
  position: absolute;
  top: 3rem;
  left: 0;
  color: #3B82C5;
}
.business-service__merit {
  background-color: #F8FBFF;
  padding: 3rem;
  border-radius: 20px;
}
@media screen and (max-width: 480px) {
  .business-service__merit {
    padding: 1.5rem;
  }
}
.business-service__merit p {
  padding: 1rem 0;
}
.business-service__merit .point {
  font-size: 2.5rem;
}
.business-service h5 {
  border-bottom: dotted 1px #72AADF;
  padding: 1rem 0;
  font-size: 1.2rem;
}

/* 私たちが解決できること */
.solution h4 {
  position: relative;
  padding: 3rem 0 0.5rem 1.5rem;
}
@media screen and (max-width: 480px) {
  .solution h4 {
    padding: 1.5rem 0 0.5rem 1.5rem;
  }
}
.solution h4::before {
  content: "■";
  position: absolute;
  top: 3rem;
  left: 0;
  color: #3B82C5;
}
@media screen and (max-width: 480px) {
  .solution h4::before {
    top: 1.5rem;
  }
}
.solution p {
  background: linear-gradient(to right, rgba(59, 130, 197, 0.2) 0%, rgba(150, 157, 229, 0.2) 100%);
  border-radius: 2rem;
  padding: 0.5rem 1.5rem;
}
.solution__icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  width: 2rem;
}

/* 主な職種 */
.job-category .flex {
  gap: 2rem;
}
.job-category .container {
  padding: 3rem;
  flex: 0 0 100%;
}
@media screen and (max-width: 600px) {
  .job-category .container {
    flex-direction: column-reverse;
  }
}
.job-category img {
  width: 100%;
  max-width: 150px;
}
@media screen and (max-width: 600px) {
  .job-category img {
    display: block;
    margin: 0 auto 2rem;
  }
}

/* 私たちの強み */
.strong-point .container {
  padding: 3rem;
  flex-basis: calc(50% - 1rem);
  position: relative;
}
@media screen and (max-width: 960px) {
  .strong-point .container {
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .strong-point .container {
    padding: 1rem;
  }
}
.strong-point img {
  max-height: 100px;
}
@media screen and (max-width: 767px) {
  .strong-point img {
    display: block;
    margin: 1rem auto;
  }
}
.strong-point .flex {
  gap: 2rem;
}
.strong-point__flex {
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .strong-point__flex {
    display: block;
  }
}
.strong-point .point {
  font-size: 1.8rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .strong-point__description {
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .strong-point .modal__header {
    display: block;
  }
}
.strong-point .modal__header .point {
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .strong-point .modal__content {
    margin-top: 0;
  }
}
.strong-point .modal__title {
  text-align: center;
}

/* ご利用の流れ 求職者サポートのご利用の流れも共通*/
.flow .swiper-area {
  position: relative;
}
.flow .swiper-area .swiper-button-prev,
.flow .swiper-area .swiper-button-next {
  padding: 2rem;
  background: linear-gradient(to right, #3B82C5 0%, #969DE5 100%);
  border-radius: 50%;
  color: white;
  position: absolute;
}
.flow .swiper-area .swiper-button-prev {
  top: auto;
  right: 120px;
  left: auto;
  bottom: -100px;
}
@media screen and (max-width: 960px) {
  .flow .swiper-area .swiper-button-prev {
    bottom: -5rem;
  }
}
.flow .swiper-area .swiper-button-next {
  top: auto;
  right: 40px;
  left: auto;
  bottom: -100px;
}
@media screen and (max-width: 960px) {
  .flow .swiper-area .swiper-button-next {
    bottom: -5rem;
  }
}
.flow .swiper-area .swiper-button-next:after, .flow .swiper-area .swiper-button-prev:after {
  font-size: 1.5rem;
}
.flow .swiper {
  width: 100%;
  height: 100%;
  padding: 0 10px 10px 0;
}
.flow .swiper-slide {
  height: auto;
  background-color: #FFFFFF;
  border-radius: 30px;
  box-shadow: 5px 5px 5px #E2E4E7;
  padding: 3rem;
}
@media screen and (max-width: 1024px) {
  .flow .swiper-slide {
    padding: 4rem 2rem;
  }
}
.flow .swiper-slide .slide-ttl {
  width: 67%;
}
.flow .swiper-slide .slide-img {
  width: 33%;
  max-width: 180px;
}
.flow .swiper-slide img {
  width: 100%;
  max-height: 230px;
}
.flow .swiper-slide p {
  margin-top: 1rem;
}
.flow .heading__md {
  text-align: center;
  border-bottom: dotted 1px #DDDDDD;
  padding: 1rem;
}
.flow .point {
  font-size: 2.5rem;
  margin: 0 auto;
}

/********************************* 求職者サポート *********************************/
/* 働き方の選択肢*/
@media screen and (max-width: 600px) {
  .work-style .flex {
    flex-direction: column-reverse;
    gap: 1.5rem;
  }
}
.work-style__title {
  color: #FFFFFF;
}
.work-style__title h3 {
  font-size: 1.8rem;
}
.work-style__card {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.work-style__card span {
  font-size: 3rem;
  color: #FFFFFF;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}
@media screen and (max-width: 600px) {
  .work-style__card span {
    font-size: clamp(2rem, 1.1667rem + 3.5556vw, 2.5rem);
  }
}
.work-style__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.work-style__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.work-style__card--temporary::before {
  background-image: url("images/work-style01.webp");
}
.work-style__card--full::before {
  background-image: url("images/work-style02.webp");
}
.work-style__card--permanent::before {
  background-image: url("images/work-style03.webp");
}
.work-style__card--temporary::before, .work-style__card--full::before, .work-style__card--permanent::before {
  background-position: 50% 30%;
  background-size: 120%;
}
@media screen and (max-width: 480px) {
  .work-style__card--temporary::before, .work-style__card--full::before, .work-style__card--permanent::before {
    background-position: 0 30%;
    background-size: 138%;
  }
}
.work-style__card--temporary::after, .work-style__card--full::after, .work-style__card--permanent::after {
  background: linear-gradient(to right, rgba(59, 130, 197, 0.6) 0%, rgba(150, 157, 229, 0.6) 100%);
}
.work-style__list li::before {
  content: "●";
  color: #3B82C5;
  margin-right: 0.5rem;
  font-size: 0.5rem;
  vertical-align: middle;
}
@media screen and (max-width: 600px) {
  .work-style__img {
    width: 28%;
  }
}
.work-style__background {
  background: linear-gradient(to right, rgba(59, 130, 197, 0.2) 0%, rgba(150, 157, 229, 0.2) 100%);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin: 1rem 0 0;
}
.work-style .modal__header {
  display: block;
  margin: 0 0 auto;
  width: 100%;
}
.work-style .modal__header .point {
  font-size: 1.8rem;
}
.work-style .modal__header .modal__title {
  border-bottom: dotted 2px #DDDDDD;
  padding-bottom: 1rem;
}
.work-style .modal__content {
  margin: 0;
}
@media screen and (max-width: 767px) and (min-width: 601px) {
  .work-style__trigger.modal__trigger {
    top: auto;
    bottom: 1rem;
    right: 1.5rem;
  }
}

/* ご利用の流れ 求職者サポートのご利用の流れも共通*/
.voice .flex {
  gap: 2rem;
}
@media screen and (min-width: 961px) {
  .voice .flex {
    flex: 1;
  }
}
.voice .container {
  padding: 3rem;
}
@media screen and (max-width: 480px) {
  .voice__title-group {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 480px) {
  .voice__title-group img {
    margin: 0 auto;
    width: 60%;
  }
}
.voice__title h3 {
  font-size: 1.5rem;
  line-height: 4rem;
  background-image: linear-gradient(to right, #3B82C5 0%, #969DE5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (max-width: 1125px) {
  .voice__title h3 {
    font-size: clamp(1.4rem, 1.3rem + 0.4267vw, 1.6rem);
    line-height: 2.5rem;
  }
}

/********************************* お問い合わせ *********************************/
/* フォームからのお問い合わせ */
.foam {
  width: 80%;
  margin: 6rem auto 0;
}
@media screen and (max-width: 600px) {
  .foam {
    width: 100%;
  }
}
.foam .required, .foam .optional {
  margin-left: 0.5rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}
.foam .required {
  background-color: #3B82C5;
  color: #FFFFFF;
}
.foam .optional {
  background-color: #DDDDDD;
}
.foam__attention a {
  color: #3B82C5;
}
.foam__attention {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}

.wpcf7-form p {
  margin-bottom: 2rem;
}

.wpcf7-form p label {
  font-weight: 600;
  font-size: 1.1rem;
}

.wpcf7-form-control {
  margin-top: 0.5rem;
  font-size: 1.1rem;
}

.wpcf7-textarea {
  resize: none;
}

.wpcf7-list-item label {
  display: flex;
}

.wpcf7-form-control .wpcf7-list-item {
  display: block;
}

.wpcf7-form-control:focus {
  outline: #3B82C5 2px solid;
}

.wpcf7-list-item-label {
  margin-left: 0.5rem;
}

.wpcf7 input:not([type=checkbox]):not([type=submit]),
.wpcf7 textarea,
.wpcf7 select {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 4px;
  width: 100%;
}

.wpcf7-acceptance {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}

.wpcf7-submit {
  background-color: #3B82C5;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 50px;
  padding: 0.5rem 6rem;
  color: #FFFFFF;
  border: none;
  margin: 0 auto;
  display: block;
}

.wpcf7-form-control::-moz-placeholder {
  color: #B0B0B0;
}

.wpcf7-form-control::placeholder {
  color: #B0B0B0;
}

/* 電話でのお問い合わせ */
.contact-tel__number {
  font-size: 3rem;
  padding: 2rem 0;
  display: inline-block;
}
@media screen and (max-width: 960px) {
  .contact-tel__number {
    font-size: clamp(1.5rem, 0.5385rem + 4.1026vw, 3rem);
  }
}
.contact-tel__number::before {
  content: "\f095";
  font: var(--fa-font-solid);
  margin-right: 1rem;
}
.contact-tel .container {
  text-align: center;
}
.contact-tel__hours {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.contact-tel .flex {
  gap: 1rem;
}/*# sourceMappingURL=style.css.map */