@charset "UTF-8";
/*==========================================
コンポーネントファイル
===========================================*/
/*
# パンくずリスト
------------------------*/
div .bread {
  font-size: var(--font-size-14);
  position: relative;
  z-index: 100;
  filter: brightness(0) invert(1);
  mix-blend-mode: difference;
}
div .bread .breadcrumbs {
  position: absolute;
  width: var(--site-primary-inbox);
  margin: 0 auto;
  inset: 1rem auto auto 0;
  gap: 1rem 2rem;
}
div .bread li {
  color: var(--primary-color);
  position: relative;
}
div .bread li::after {
  content: " > ";
  color: var(--body-font-color);
  position: absolute;
  inset: 0 -1.5rem 0 auto;
  margin: auto 0;
}
div .bread li:last-child::after {
  content: "";
}
div .bread li a {
  color: var(--body-font-color);
}
div .bread li a:hover {
  text-decoration: underline;
}

/*
# 一覧ぺージ用カテゴリ(セレクトボックス)
------------------------*/
.global-select {
  width: 30rem;
  margin: 0 0 4.5rem auto;
}
.global-select select {
  padding: 1.5rem 3.7rem 1.5rem 1.5rem;
}

/*
# c-tel
------------------------*/
.c-tel {
  font-size: var(--font-size-26);
  letter-spacing: 0;
  line-height: 1.1;
  display: block;
}
.c-tel span {
  padding-left: 2.8rem;
}
.c-tel span::before {
  position: absolute;
  content: "";
  width: 1.9rem;
  height: 1.9rem;
  background-color: var(--accent-color);
  -webkit-mask: url(../img/common/tel_ic.png) center/100% no-repeat;
          mask: url(../img/common/tel_ic.png) center/100% no-repeat;
  inset: 0 auto 0 0;
  margin: auto 0;
}

/*
# c-worktime
------------------------*/
.c-worktime {
  font-size: var(--font-size-12);
  letter-spacing: 0;
  gap: 0 1rem;
}
.c-worktime .worktime__item {
  width: -moz-fit-content;
  width: fit-content;
}
.c-worktime .worktime__item dt::after {
  content: ":";
  padding: 0 0.3rem;
}

/*
# c-manabi-button
------------------------*/
.c-manabi-button {
  position: relative;
  padding-left: 3rem;
}
.c-manabi-button::before {
  position: absolute;
  content: "";
  width: 2.8rem;
  height: 3.8rem;
  background: url(../img/common/manabi_mind_ic.png) center/100% no-repeat;
  inset: 0 auto 0 8%;
  margin: auto 0;
  z-index: 1;
}

/*
# c-line-button
------------------------*/
.c-line-button {
  min-width: 25.5rem;
  position: relative;
  padding-left: 3rem;
}
.c-line-button::before {
  inset: auto 3% 9% auto;
  color: var(--color-gray);
  font-size: var(--font-size-12);
}
.c-line-button::after {
  position: absolute;
  content: "";
  width: 3rem;
  height: 3rem;
  inset: 0 auto 0 6.5%;
  margin: auto 0;
  background: url(../img/common/sns/LINE_logo.svg) center/100% no-repeat;
  z-index: 1;
}

/*
# c-contact__button
------------------------*/
.c-contact__button {
  position: relative;
  padding-left: 2rem;
}
.c-contact__button::before {
  position: absolute;
  content: "";
  width: 2.4rem;
  height: 2rem;
  background-color: var(--color-white);
  -webkit-mask: url(../img/common/mail_ic.svg) center/100% no-repeat;
          mask: url(../img/common/mail_ic.svg) center/100% no-repeat;
  inset: 0 auto 0 8%;
  margin: auto 0;
  z-index: 1;
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-table tr {
  display: flex;
  border-bottom: none;
  margin-bottom: 1rem;
}
.com-table tr:last-child {
  margin-bottom: 0;
}
.com-table tr th {
  background: var(--primary-color);
  color: var(--color-white);
  padding: 2rem 1rem;
  width: 25rem;
  vertical-align: top;
  text-align: center;
}
.com-table tr td {
  width: calc(100% - 25rem);
  padding: 2rem;
}
.com-table tr td a[href^="mailto:"] {
  text-decoration: underline;
}
.com-table tr td .tel__text {
  display: block;
  line-height: 1.3;
}

/*==========================================
共通ブロック・要素
===========================================*/
.com-content p {
  margin-bottom: 3rem;
}

.com-text.align-center {
  text-align: center;
}

#g-map .map {
  height: 60rem;
}

.button--primary {
  border-radius: var(--button-radius-pc);
  min-height: 7.8rem;
  letter-spacing: 0.05em;
  font-weight: var(--font-weight-bold);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--color-white);
}
.button--primary.bs-icon--arrow-right-short::before {
  right: 7%;
  font-size: var(--font-size-25);
  font-weight: var(--font-weight-medium);
}
.button--primary:hover {
  transform: scale(0.97);
  opacity: 1;
  background: var(--primary-color);
  color: var(--color-white);
}

.button--secondary {
  min-height: 6.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
  border-radius: 1rem;
  background: var(--color-white);
  border: 1px solid var(--primary-color);
  min-width: 22rem;
}
.button--secondary:hover {
  opacity: 1;
  background: var(--primary-color);
  color: var(--color-white);
}

/*==========================================
共通タイトル
===========================================*/
#top-page .title--primary .title-ja {
  font-size: var(--font-size-50);
}

.title--primary {
  text-align: center;
  margin-bottom: 7.5rem;
}
.title--primary .title-en,
.title--primary .title-ja {
  display: block;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.title--primary .title-en {
  text-transform: uppercase;
  font-family: var(--font-secondary);
  font-size: var(--font-size-28);
  color: var(--primary-color-light);
  font-weight: var(--font-weight-semibold);
}
.title--primary .title-ja {
  font-size: var(--font-size-40);
  font-weight: var(--font-weight-bold);
}

.title--secondary {
  font-size: var(--font-size-25);
  color: var(--primary-color);
  letter-spacing: 0.06em;
  border-bottom: 1px solid #a5bac5;
  font-weight: var(--font-weight-bold);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  line-height: 1.4;
}
.title--secondary.no-border {
  border-bottom: none;
  margin-bottom: 2rem;
  padding-bottom: 0;
}

.title--tertiary {
  background: var(--primary-color);
  font-size: var(--font-size-25);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  letter-spacing: 0.06em;
  text-align: center;
  padding: 1.5rem 2rem;
  margin-bottom: 4rem;
  line-height: 1.4;
}
.title--tertiary.bg-color-accent {
  background: var(--accent-color);
}
.title--tertiary.bg-color-primary-light {
  background: var(--primary-color-light);
}

/*==========================================
header
===========================================*/
.logo {
  width: 15.2rem;
}

.l-header {
  padding: 0 5rem;
  z-index: 1001;
  overflow: hidden;
}
.l-header__right {
  width: 101rem;
  gap: 0 2rem;
  transform: translateY(-0.1rem);
}
.l-header__info {
  width: -moz-fit-content;
  width: fit-content;
}
.l-header__info .c-tel {
  text-align: right;
}
.l-header .button--secondary {
  border-radius: 0 0 1rem 1rem;
}
.l-header .button--secondary:hover {
  transform: translateY(0.1rem);
}
.l-header .c-line-button {
  width: 25.5rem;
}
.l-header .c-contact__button {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--color-white);
}
.l-header .c-contact__button:hover {
  background: var(--color-white);
  color: var(--accent-color);
}
.l-header .c-contact__button:hover::before {
  background-color: var(--accent-color);
}
.l-header__nav-list {
  font-size: var(--font-size-17);
  gap: 0 2rem;
  letter-spacing: 0.1em;
}
.l-header__nav-link {
  /*==========================================
  hover時に中央から外側に向けてのボーダー
  ===========================================*/
  display: block;
  position: relative;
}
.l-header__nav-link::before, .l-header__nav-link::after {
  content: "";
  width: 0;
  bottom: -0.3rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--primary-color);
  position: absolute;
  display: block;
}
.l-header__nav-link::before {
  left: 25%;
}
.l-header__nav-link:after {
  right: 25%;
}
.l-header__nav-link:hover {
  color: var(--primary-color);
}
.l-header__nav-link:hover::before, .l-header__nav-link:hover::after {
  width: 25%;
  border-bottom: 1px solid var(--primary-color);
}
.l-header__nav-link.current {
  border-bottom: 1px solid var(--primary-color);
  color: var(--primary-color);
}
.l-header__nav-link.current::before, .l-header__nav-link.current::after {
  border-bottom: none;
}
.l-header__nav-link.current:hover::before, .l-header__nav-link.current:hover::after {
  border-bottom: none;
}

/*==========================================
mv
===========================================*/
.p-top__mv {
  height: 78.5rem;
  z-index: 1;
}
.p-top__mv::before, .p-top__mv::after {
  position: absolute;
  content: "";
  z-index: -1;
}
.p-top__mv::before {
  width: 100%;
  height: 61.4012%;
  inset: 0 0 auto;
  background: var(--primary-color-extralight);
}
.p-top__mv::after {
  width: 52.6041%;
  height: 81.0191%;
  inset: auto 0 0 auto;
  border-radius: 6rem 0 0 6rem;
  background: url(../img/top/mv_img.jpg) center/100% no-repeat;
}
.p-top__mv-inner {
  width: 93rem;
  inset: auto auto 1rem 6.25%;
  text-align: center;
}
.p-top__mv-catch {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 3rem;
  font-size: var(--font-size-33);
  letter-spacing: var(--body-letter-spacing);
  line-height: 1.4666666667;
  filter: drop-shadow(5px 5px 25px #fff);
  letter-spacing: 0.1em;
}
.p-top__mv-catch::before, .p-top__mv-catch::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 5rem;
  background: var(--body-font-color);
  bottom: 0;
  border-radius: 3rem;
}
.p-top__mv-catch::before {
  left: -4rem;
  transform: rotate(-45deg);
}
.p-top__mv-catch::after {
  right: -4rem;
  transform: rotate(45deg);
}
.p-top__mv-catch span {
  font-size: var(--font-size-45);
}
.p-top__mv-list {
  gap: 4rem;
  margin-bottom: 3rem;
}
.p-top__mv-list-item {
  width: 27.2rem;
  height: 27.2rem;
  font-size: var(--font-size-36);
  line-height: 1.5833333333;
  letter-spacing: 0.1em;
  box-shadow: 0px 0px 0px 1rem #ccdce4, 0px 0px 0px 2rem var(--primary-color-extralight);
}
.p-top__mv-text {
  font-size: var(--font-size-35);
  line-height: 1.5714285714;
  letter-spacing: 0.1em;
}
.p-top__mv-text strong {
  margin: 0 1rem;
  -webkit-text-fill-color: var(--accent-color);
  font-size: var(--font-size-45);
}

/*==========================================
footer
===========================================*/
.l-footer__inbox {
  padding: 7rem 0;
}
.l-footer__left {
  width: 39.5rem;
  gap: 4.5rem 3rem;
}
.l-footer__address {
  letter-spacing: 0.05em;
}
.l-footer__address .c-worktime {
  font-size: var(--body-font-size);
  justify-content: flex-start;
}
.l-footer__address .c-tel {
  margin: 3rem 0 0;
  font-size: var(--font-size-32);
}
.l-footer .c-manabi-button {
  min-height: 6.2rem;
}
.l-footer__right {
  width: 44.5rem;
}
.l-footer__nav-item {
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.l-footer__nav-item:last-child {
  margin-bottom: 0;
}
.l-footer__nav-link {
  padding-left: 2rem;
}
.l-footer__nav-link::before {
  position: absolute;
  inset: 0 auto 0 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 0.6rem;
  height: 0.6rem;
  border-top: 2px solid var(--accent-color);
  border-right: 2px solid var(--accent-color);
  transform: rotate(45deg);
  transition: all 0.3s;
  z-index: 1;
}
.l-footer__nav-link:hover {
  text-decoration: underline;
  transform: translateX(1rem);
}

#copyright {
  word-break: normal;
  text-align: center;
}
#copyright small {
  font-size: var(--font-size-11);
}

/*==========================================
下層共通スタイル
===========================================*/
/*==========================================
sv
===========================================*/
.sv {
  height: 59.5rem;
  background: url(../img/sv/sv-base_bg.png) bottom center/100% no-repeat;
}
.sv::before {
  position: absolute;
  content: "";
  width: 112.5rem;
  height: 40rem;
  inset: auto 0 2.3rem auto;
  border-radius: 6rem 0 0 6rem;
}
.sv__title {
  width: 113rem;
  margin: 0 auto;
  inset: auto 0 17rem;
  text-align: left;
}
.sv__title .title-en {
  font-size: var(--font-size-25);
}
.sv__title .title-ja {
  font-size: var(--font-size-36);
  display: inline-block;
}

.p-about__sv::before {
  background: url(../../img/sv/about-sv_bg.jpg) center/cover no-repeat;
}

.p-service__sv::before {
  background: url(../../img/sv/service-sv_bg.jpg) center/cover no-repeat;
}

.p-support__sv::before {
  background: url(../../img/sv/support-sv_bg.jpg) center/cover no-repeat;
}

.p-company__sv::before {
  background: url(../../img/sv/company-sv_bg.jpg) center/cover no-repeat;
}

.p-faq__sv::before {
  background: url(../../img/sv/faq-sv_bg.jpg) center/cover no-repeat;
}

.p-news__sv::before {
  background: url(../../img/sv/news-sv_bg.jpg) center/cover no-repeat;
}

.p-contact__sv::before {
  background: url(../../img/sv/contact-sv_bg.jpg) center/cover no-repeat;
}

.p-complete__sv::before {
  background: url(../../img/sv/complete-sv_bg.jpg) center/cover no-repeat;
}

.p-privacy__sv::before {
  background: url(../../img/sv/privacy-sv_bg.jpg) center/cover no-repeat;
}

.p-site__sv::before {
  background: url(../../img/sv/site-sv_bg.jpg) center/cover no-repeat;
}

.p-e404__sv::before {
  background: url(../../img/sv/e404-sv_bg.jpg) center/cover no-repeat;
}

.p-mind__sv .sv__title {
  width: 93.5rem;
  bottom: 25rem;
}
.p-mind__sv .sv__text--mind {
  width: 60rem;
  background: linear-gradient(to bottom, rgb(0, 53, 80) 0%, rgb(8, 98, 143) 50%, rgb(0, 53, 80) 100%);
  inset: auto 0 0 auto;
  font-size: var(--font-size-40);
  text-align: center;
  line-height: 1.7;
  padding: 3rem 0 4.5rem;
  inset: auto calc(50% - 45rem) 12rem auto;
}
.p-mind__sv .sv__text--mind small {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.7rem;
  text-decoration-color: #a5bac5;
  font-size: var(--font-size-25);
}
.p-mind__sv .sv__text--mind span {
  padding: 0 1rem;
}
.p-mind__sv .sv__text--name {
  inset: auto 0 12rem;
  width: 93.5rem;
  margin: 0 auto;
}
.p-mind__sv .sv__text--name .color-white {
  width: 26rem;
  font-size: var(--font-size-18);
  text-align: center;
  padding: 0 1rem;
}
.p-mind__sv .sv__text--name .relative {
  margin-left: 7rem;
  font-size: var(--font-size-25);
}
.p-mind__sv .sv__text--name .relative::before, .p-mind__sv .sv__text--name .relative::after {
  position: absolute;
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--accent-color);
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.p-mind__sv .sv__text--name .relative::before {
  left: -2rem;
}
.p-mind__sv .sv__text--name .relative::after {
  right: -2rem;
}

/*==========================================
top
===========================================*/
/*
# p-top-problems
------------------------*/
.p-top-problems {
  width: 88.5416%;
  margin: 17.5rem auto 10.5rem;
  background: url(../img/top/problems_bg.jpg) center/cover no-repeat;
  padding: 12rem 0;
}
.p-top-problems__title {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 4rem;
  text-shadow: var(--color-white) 2px 0px 2px, var(--color-white) -2px 0px 2px, var(--color-white) 0px -2px 2px, var(--color-white) -2px 0px 2px, var(--color-white) 2px 2px 2px, var(--color-white) -2px 2px 2px, var(--color-white) 2px -2px 2px, var(--color-white) -2px -2px 2px, var(--color-white) 1px 2px 2px, var(--color-white) -1px 2px 2px, var(--color-white) 1px -2px 2px, var(--color-white) -1px -2px 2px, var(--color-white) 2px 1px 2px, var(--color-white) -2px 1px 2px, var(--color-white) 2px -1px 2px, var(--color-white) -2px -1px 2px, var(--color-white) 1px 1px 2px, var(--color-white) -1px 1px 2px, var(--color-white) 1px -1px 2px, var(--color-white) -1px -1px 2px;
}
.p-top-problems__title::before {
  position: absolute;
  content: "";
  width: 7.6rem;
  height: 7.9rem;
  background: url(../img/top/problems-ttl_ic.png) center/100% no-repeat;
  inset: -5rem 15rem auto auto;
}
.p-top-problems__text {
  margin-bottom: 7.5rem;
  font-size: var(--font-size-21);
}
.p-top-problems__list {
  gap: 5rem;
}
.p-top-problems__item {
  width: 32.6rem;
  height: 15.1rem;
  border-radius: 1rem 1rem 0 1rem;
  font-size: var(--font-size-21);
  padding: 0 2.2rem;
  line-height: 1.6666666667;
  background: rgba(var(--color-white-rgb), 0.8);
  box-shadow: 0.6rem 0.6rem rgba(var(--accent-color-rgb), 0.4);
}
.p-top-problems__item::before {
  inset: -1.5rem auto auto -1.5rem;
}

/*
# top-about
------------------------*/
.p-top-about__title::before, .p-top-about__title::after {
  position: absolute;
  content: "";
}
.p-top-about__title::before {
  width: 8.5rem;
  height: 7.4rem;
  inset: -0.5rem auto auto 18rem;
  background: url(../img/top/about-ttl_ic.png) center/100% no-repeat;
}
.p-top-about__title::after {
  width: 4.6rem;
  height: 4.8rem;
  inset: auto 3rem 6rem auto;
  background: url(../img/top/about-ttl_dashed.png) center/100% no-repeat;
}
.p-top-about__title .title-ja {
  line-height: 1.4;
}
.p-top-about__title .title-ja::first-line {
  font-size: var(--font-size-40);
}
.p-top-about__table th,
.p-top-about__table td {
  width: 50%;
  vertical-align: middle;
  padding: 2rem 3rem;
}
.p-top-about__table th {
  font-size: var(--font-size-27);
  text-align: center;
  line-height: 1.4814814815;
  border-bottom: 1px solid var(--color-white);
}
.p-top-about__table td {
  font-size: var(--font-size-38);
  line-height: 1.4473684211;
  border-bottom: 1px solid var(--primary-color);
}
.p-top-about__table td small {
  font-size: var(--font-size-22);
}
.p-top-about__text {
  margin-top: 5.5rem;
  font-size: var(--font-size-26);
  line-height: 1.4615384615;
}
.p-top-about__bottom-content {
  padding: 7rem 0;
  margin-top: 19.5rem;
  position: relative;
  background: linear-gradient(to right, rgb(191, 214, 225) 0%, rgb(235, 241, 244) 100%);
}
.p-top-about__bottom-img {
  position: absolute;
  inset: -9.5rem auto auto 10.9375%;
  width: 34.375%;
  text-align: right;
}
.p-top-about__bottom-inner {
  width: 57rem;
  margin-left: auto;
}

/*
# p-top-reason
------------------------*/
.p-top-reason__title {
  padding: 9rem 0;
}
.p-top-reason__title::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.4rem 3.65rem 0px 3.65rem;
  border-color: var(--primary-color) transparent transparent transparent;
  inset: auto 0 -3.2rem;
  margin: 0 auto;
}
.p-top-reason__title .title-en {
  color: var(--color-white);
}
.p-top-reason__inbox {
  padding: 9.5rem 0 12rem;
}
.p-top-reason__list {
  gap: 5rem 4.5rem;
}
.p-top-reason__card {
  width: 33rem;
  padding: 4rem 3.4rem;
}
.p-top-reason__card.w-full {
  width: 100%;
  position: relative;
}
.p-top-reason__card.w-full .p-top-reason__card-content {
  width: 64rem;
  min-height: 26rem;
}
.p-top-reason__card.w-full .p-top-reason__card-img {
  width: 30rem;
  position: absolute;
  top: 4rem;
}
.p-top-reason__card.w-full:nth-of-type(odd) .p-top-reason__card-content {
  margin-left: auto;
}
.p-top-reason__card.w-full:nth-of-type(odd) .p-top-reason__card-img {
  left: 4rem;
}
.p-top-reason__card.w-full:nth-of-type(even) .p-top-reason__card-img {
  right: 4rem;
}
.p-top-reason__card-title {
  font-size: var(--font-size-30);
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
  line-height: 1.5;
  padding-left: 5.7rem;
}
.p-top-reason__card-title::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 5rem;
  height: 5rem;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-white);
  font-size: var(--font-size-24);
}
.p-top-reason__card-title small {
  font-size: var(--font-size-22);
}

/*
# p-top-service
------------------------*/
.p-top-service {
  padding: 11.5rem 0 11rem;
}
.p-top-service__list {
  gap: 6rem 5rem;
}
.p-top-service__card {
  width: 51.5rem;
}
.p-top-service__card.w-full {
  width: 100%;
}
.p-top-service__card.w-full .p-top-service__card-button {
  margin-top: 0;
}
.p-top-service__card-link:hover .p-top-service__card-img img {
  transform: scale(1.05);
}
.p-top-service__card-title {
  padding: 1.5rem 0;
  font-size: var(--font-size-35);
}
.p-top-service__card-img {
  overflow: hidden;
}
.p-top-service__card-img img {
  transition: transform 0.3s ease-in-out;
}
.p-top-service__card-button {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  padding-right: 6rem;
  margin-top: 3rem;
}
.p-top-service__card-button::before {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: var(--accent-color);
  inset: 0 0 0 auto;
  color: var(--color-white);
}

/*
# p-top-voice
------------------------*/
.p-top-voice {
  padding: 12rem 0 18.5rem;
  background: url(../img/top/voice_bg.png) bottom center/100% no-repeat;
}
.p-top-voice__card {
  width: 80rem;
  margin-bottom: 9rem;
  padding: 6rem 5rem 5rem;
  filter: drop-shadow(0 0 5px rgba(var(--body-font-color-rgb), 0.2));
}
.p-top-voice__card::before {
  position: absolute;
  content: "";
  width: 6.275rem;
  height: 4.372rem;
  background: url(../img/top/voice-item_arr.svg) center/100% no-repeat;
  bottom: -5.372rem;
}
.p-top-voice__card:nth-child(odd) {
  box-shadow: -1rem 1rem var(--primary-color-light);
}
.p-top-voice__card:nth-child(odd)::before {
  left: 8rem;
}
.p-top-voice__card:nth-child(even) {
  margin-left: auto;
  box-shadow: 1rem 1rem var(--primary-color-light);
}
.p-top-voice__card:nth-child(even)::before {
  right: 8rem;
  transform: scale(-1, 1);
}
.p-top-voice__card:last-child {
  margin-bottom: 0;
}
.p-top-voice__card-title {
  font-size: var(--font-size-30);
  border-bottom: 1px solid #a5bac5;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
}

/*
# p-top-area
------------------------*/
.p-top-area {
  padding: 11rem 0 9.5rem;
  background: url(../img/top/area_bg.png) bottom center/cover no-repeat;
}
.p-top-area__inbox {
  padding: 0 8.5rem 22rem;
  background: url(../img/top/area_map.png) right bottom/62rem no-repeat;
}
.p-top-area__text.font-bold {
  font-size: var(--font-size-22);
}
.p-top-area__text.font-bold span {
  font-size: var(--font-size-26);
}

/*
# p-top-contact
------------------------*/
.p-top-contact {
  background: url(../img/top/contact_bg.jpg) center/cover no-repeat;
}
.p-top-contact__title {
  margin-bottom: 3rem;
}
.p-top-contact__title .title-en {
  color: var(--color-white);
}
.p-top-contact__text {
  font-size: var(--font-size-21);
  margin-bottom: 5.5rem;
}
.p-top-contact .c-tel {
  text-align: center;
  color: var(--color-white);
  font-size: var(--font-size-40);
  margin-bottom: 1rem;
}
.p-top-contact .c-tel span {
  padding-left: 3.5rem;
}
.p-top-contact .c-tel span::before {
  width: 2.8rem;
  height: 2.8rem;
  background-color: var(--color-white);
}
.p-top-contact .c-worktime {
  font-size: var(--font-size-16);
  color: var(--color-white);
  margin-bottom: 4rem;
}
.p-top-contact__buttons {
  gap: 4rem;
  margin-bottom: 5rem;
}
.p-top-contact__button .button--secondary {
  width: 32rem;
  min-height: 7.8rem;
  background: var(--color-white);
  color: var(--body-font-color);
  border-radius: var(--button-radius-pc);
  font-size: var(--font-size-18);
}
.p-top-contact__button .button--secondary:hover {
  opacity: 1;
  background: var(--primary-color);
  color: var(--color-white);
  transform: scale(0.97);
}
.p-top-contact__button .c-line-button::before {
  display: none;
}
.p-top-contact__button .c-contact__button::before {
  filter: brightness(0) invert(0);
}
.p-top-contact__button .c-contact__button:hover::before {
  filter: brightness(0) invert(1);
}
.p-top-contact__text--notice {
  width: 82.5rem;
  margin: 0 auto;
  font-size: var(--font-size-17);
}

/*
# top-news
------------------------*/
.p-top-news {
  padding: 11.5rem 0 11rem;
}
.p-top-news__headline {
  margin-bottom: 6rem;
}
.p-top-news__button {
  width: 24rem;
  min-height: 6rem;
}
.p-top-news__title {
  text-align: left;
  margin-bottom: 0;
}
.p-top-news__post-list {
  gap: 6rem;
}
.p-top-news__post {
  width: 32rem;
}
.p-top-news__post-link {
  row-gap: 0.5rem;
}
.p-top-news__post-link:hover {
  transform: translateY(-1rem);
}
.p-top-news__post-link:hover .news__post-title {
  text-decoration: underline;
}
.p-top-news__post-img {
  width: 100%;
  height: 22rem;
}
.p-top-news__post-date {
  font-size: var(--font-size-18);
}
.p-top-news__post-tags {
  gap: 0.7rem;
  margin-top: 0.5rem;
}
.p-top-news__post-tag {
  font-size: var(--font-size-14);
  padding: 0 1rem;
  line-height: 1.2;
}
.p-top-news__post-title {
  font-size: var(--font-size-18);
}

/*==========================================
about
===========================================*/
/*
# p-about-profile
------------------------*/
.p-about-profile__subtitle span {
  font-size: var(--font-size-20);
  margin-right: 2rem;
  padding: 0 0.5rem;
}
.p-about-profile__text--lead {
  font-size: var(--font-size-25);
  margin-bottom: 3rem;
}
.p-about-profile__content {
  width: 59rem;
}
.p-about-profile__img {
  width: 45rem;
}
.p-about-profile__list {
  margin-top: 5rem;
  padding: 4rem;
}
.p-about-profile__item {
  margin-bottom: 2rem;
}
.p-about-profile__item:last-child {
  margin-bottom: 0;
}
.p-about-profile__item dt {
  width: 20rem;
  font-size: var(--font-size-25);
}
.p-about-profile__item dd {
  width: calc(100% - 23rem);
}

/*
# p-about-theory
------------------------*/
.p-about-theory {
  background: linear-gradient(to bottom, rgb(235, 241, 244) 0%, rgb(191, 214, 225) 100%);
}
.p-about-theory__part {
  margin-bottom: 6rem;
}
.p-about-theory__part:last-child {
  margin-bottom: 0;
}

/*
# p-about-active
------------------------*/
.p-about-active__text {
  margin-bottom: 6rem;
}
.p-about-active__part {
  margin-bottom: 4rem;
  padding: 4rem;
  position: relative;
}
.p-about-active__part:last-child {
  margin-bottom: 0;
}
.p-about-active__part-imgs, .p-about-active__part-img {
  position: absolute;
  inset: 4rem 4rem auto auto;
}
.p-about-active__part-imgs {
  gap: 0.1rem;
  width: 31rem;
}
.p-about-active__part-imgs img {
  width: 15rem;
}
.p-about-active__part-img {
  width: 20rem;
}
.p-about-active__part-content {
  width: 76rem;
  min-height: 25rem;
}
.p-about-active__part:has(.p-about-active__part-imgs) .p-about-active__part-content {
  width: 67.5rem;
}
.p-about-active__part-text small {
  font-size: var(--font-size-14);
}

/*==========================================
support
===========================================*/
/*
# p-support-about
------------------------*/
.p-support-about__part {
  padding: 6rem 10rem;
}
.p-support-about__part-headline {
  margin-bottom: 6rem;
}
.p-support-about__part-list {
  gap: 3rem;
  margin-bottom: 6rem;
}
.p-support-about__part-list .p-support-about__part-item {
  width: 34rem;
  padding: 3rem;
}
.p-support-about__part-list .p-support-about__part-item dt {
  font-size: var(--font-size-25);
  text-align: center;
  line-height: 1.4;
  margin-bottom: 1rem;
  height: 14rem;
  padding: 2rem 0;
}
.p-support-about__part-list .p-support-about__part-item dt small {
  font-size: var(--font-size-20);
}
.p-support-about__part-price {
  margin-bottom: 6rem;
}
.p-support-about__part-price-table th,
.p-support-about__part-price-table td {
  text-align: center;
  padding: 1.5rem;
  vertical-align: middle;
}
.p-support-about__part-price-table th {
  border-left: 1px solid var(--color-white);
  font-size: var(--font-size-20);
}
.p-support-about__part-price-table th:first-child {
  width: 76rem;
  border-left: none;
}
.p-support-about__part-price-table td {
  border-bottom: 1px solid var(--color-gray);
}
.p-support-about__part-price-table td.bg-color-primary-light {
  background: #dce8ee;
}
.p-support-about__part-price-text {
  margin-top: 3rem;
}

/*==========================================
service
===========================================*/
/*
# p-service__wrap
------------------------*/
.p-service__part {
  margin-bottom: 10rem;
  padding: 10rem 0;
}
.p-service__part:last-child {
  margin-bottom: 0;
}
.p-service__part-headline {
  margin-bottom: 4rem;
}
.p-service__part-headline-subtitle {
  font-size: var(--font-size-20);
}
.p-service__part-headline-content {
  width: 60rem;
}
.p-service__part-headline-text.bg-color-white {
  padding: 2rem 2rem 2rem 7rem;
  font-size: var(--font-size-20);
  line-height: 1.75;
}
.p-service__part-headline-text.bg-color-white::before {
  inset: -1.5rem auto auto 2.5rem;
}
.p-service__part-headline-img {
  width: 45rem;
}
.p-service__part-greeting {
  margin-bottom: 4rem;
}
.p-service__part-greeting-title {
  margin-bottom: 2rem;
}
.p-service__part-price-title {
  margin-bottom: 1rem;
}
.p-service__part-price-table th,
.p-service__part-price-table td {
  text-align: center;
  padding: 1.5rem 3rem;
  vertical-align: middle;
}
.p-service__part-price-table th {
  font-size: var(--font-size-20);
  border-left: 1px solid var(--color-white);
}
.p-service__part-price-table th:first-child {
  border-left: none;
}
.p-service__part-price-table tbody tr:nth-child(odd) {
  background: #dce8ee;
}
.p-service__part-price-table tbody tr:nth-child(even) {
  background: var(--color-white);
}
.p-service__part-price-table tbody tr td {
  border-left: 1px solid var(--color-gray);
}
.p-service__part-price-table tbody tr td:first-child {
  border-left: none;
}
.p-service__part-price-table tbody tr td small {
  font-size: var(--font-size-15);
}
.p-service__part-price-text {
  margin-top: 3rem;
}
.p-service__part-price-text .font-bold {
  font-size: var(--font-size-20);
}

/*==========================================
faq
===========================================*/
.p-faq__part {
  padding: 10rem;
  margin-bottom: 10rem;
}
.p-faq__part:last-child {
  margin-bottom: 0;
}
.p-faq__part-title {
  text-align: center;
  font-size: var(--font-size-30);
  margin-bottom: 6rem;
}
.p-faq__part-item {
  margin-bottom: 4rem;
}
.p-faq__part-item:last-child {
  margin-bottom: 0;
}
.p-faq__part-item-title::before, .p-faq__part-item-content::before {
  position: absolute;
  inset: 1.3rem auto auto 1.7rem;
  line-height: 1.8;
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-bold);
}
.p-faq__part-item-title {
  text-align: left;
  padding-left: 7rem;
  margin-bottom: 2rem;
}
.p-faq__part-item-title::before {
  content: "Q";
  color: var(--color-white);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: baseline;
  justify-content: center;
  background: var(--accent-color);
}
.p-faq__part-item-content {
  padding: 2rem 2rem 2rem 6.5rem;
}
.p-faq__part-item-content::before {
  content: "A";
  color: var(--primary-color);
  inset: 2rem auto auto 3rem;
}

/*==========================================
mind
===========================================*/
/*
# p-mind-problem
------------------------*/
.p-mind-problem {
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(235, 241, 244) 100%);
}
.p-mind-problem__headline {
  padding: 7rem;
}
.p-mind-problem__headline-title {
  margin-bottom: 4.5rem;
}
.p-mind-problem__headline-title::first-line {
  font-size: var(--font-size-30);
}
.p-mind-problem__worries {
  margin-top: 11rem;
}
.p-mind-problem__worries-title .title-ja {
  font-size: var(--font-size-30);
  margin-bottom: 5rem;
}
.p-mind-problem__worries-title .title-ja span::before {
  position: absolute;
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--primary-color);
  inset: -0.5rem 0 auto;
  margin: 0 auto;
}
.p-mind-problem__worries-card {
  width: 51rem;
  padding: 3rem 2.5rem;
}
.p-mind-problem__worries-card-title {
  font-size: var(--font-size-25);
  color: var(--body-font-color);
  text-align: center;
}
.p-mind-problem__worries-card-icon {
  width: 10rem;
  margin: 0 auto 1.5rem;
}
.p-mind-problem__worries-card-list-item {
  padding-left: 2rem;
  margin-bottom: 0.5rem;
}
.p-mind-problem__worries-card-list-item:last-child {
  margin-bottom: 0;
}
.p-mind-problem__worries-card-list-item::before {
  position: absolute;
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--primary-color);
  inset: 1.7rem auto auto 0;
}
.p-mind-problem__text {
  margin-top: 6rem;
}

/*
# p-mind-valuable
------------------------*/
.p-mind-valuable {
  background: url(../img/mind/valuable_bg.png) bottom center/100% no-repeat;
}
.p-mind-valuable__img {
  width: 48rem;
}
.p-mind-valuable__content {
  width: 54rem;
}
.p-mind-valuable__content span {
  font-size: var(--font-size-20);
}

/*
# p-mind-training
------------------------*/
.p-mind-training__list {
  row-gap: 4rem;
}
.p-mind-training__list-item {
  width: 52rem;
  padding: 2rem;
  text-align: center;
}
.p-mind-training__list-item-title {
  font-size: var(--font-size-20);
  margin-bottom: 0.5rem;
}
.p-mind-training__list-item-title span {
  padding-left: 2.5rem;
}
.p-mind-training__list-item-title span::before {
  position: absolute;
  content: "";
  width: 2rem;
  height: 2rem;
  inset: 0 auto 0 0;
  margin: auto 0;
}
.p-mind-training__list-item--relation .p-mind-training__list-item-title span::before {
  background: url(../img/mind/training-relation_ic.svg) center/100% no-repeat;
}
.p-mind-training__list-item--health .p-mind-training__list-item-title span::before {
  background: url(../img/mind/training-health_ic.svg) center/100% no-repeat;
}
.p-mind-training__list-item--mind .p-mind-training__list-item-title span::before {
  background: url(../img/mind/training-mind_ic.svg) center/100% no-repeat;
}
.p-mind-training__list-item--resilience .p-mind-training__list-item-title span::before {
  background: url(../img/mind/training-resilience_ic.svg) center/100% no-repeat;
}
.p-mind-training__list-item--management .p-mind-training__list-item-title span::before {
  background: url(../img/mind/training-management_ic.svg) center/100% no-repeat;
}
.p-mind-training__exclude {
  margin-top: 6rem;
  padding: 4rem;
}

/*
# p-mind-training-books
------------------------*/
.p-mind-training-books__inbox {
  padding: 6rem;
}
.p-mind-training-books__title {
  margin-bottom: 2.5rem;
  text-align: left;
}
.p-mind-training-books__title .title-ja {
  font-size: var(--font-size-30);
}
.p-mind-training-books__content-title {
  font-size: var(--font-size-20);
}
.p-mind-training-books__img {
  width: 14rem;
}

/*
# p-mind-profile
------------------------*/
.p-mind-profile {
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(235, 241, 244) 100%);
}
.p-mind-profile__headline-content {
  width: 72rem;
}
.p-mind-profile__headline-img {
  width: 34rem;
}
.p-mind-profile__part {
  margin-top: 6rem;
  padding: 4rem;
}
.p-mind-profile__part-list-item .color-blue {
  text-decoration: underline;
}
.p-mind-profile__part-list-item .color-blue:hover {
  transform: scale(0.975);
}
.p-mind-profile__part-list-item:not(:has(.color-blue))::before {
  content: "・";
}

/*
# p-mind-blog
------------------------*/
.p-mind-blog__list {
  gap: 6rem;
}
.p-mind-blog__list-item {
  width: 32rem;
}
.p-mind-blog__list-item-link {
  gap: 0.5rem 1rem;
}
.p-mind-blog__list-item-link:hover {
  transform: translateY(-1rem);
}
.p-mind-blog__list-item-img {
  height: 25rem;
}
.p-mind-blog__list-item-title {
  font-size: var(--font-size-18);
  line-height: 1.6666666667;
}
.p-mind-blog__list-item-date {
  font-size: var(--font-size-14);
  padding-left: 2rem;
}
.p-mind-blog__list-item-date::before {
  color: var(--primary-color);
  inset: 0 auto 0 0;
  margin: auto 0;
}
.p-mind-blog__list-item-tags {
  width: -moz-fit-content;
  width: fit-content;
  font-size: var(--font-size-14);
  gap: 0.5rem;
  padding-left: 1.7rem;
}
.p-mind-blog__list-item-tags::before {
  color: var(--primary-color);
  inset: 0.6rem auto auto 0;
}

/*==========================================
company
===========================================*/
.p-company-info__table {
  margin-bottom: 6rem;
}

/*==========================================
news
===========================================*/
.column__wrap .column__list .column__post a {
  padding: 4.5rem 0;
}
.column__wrap .column__list .column__post-meta time {
  width: 9.5rem;
}
.column__wrap .column__list .column__post-meta time,
.column__wrap .column__list .column__post-meta .category-label {
  font-size: var(--font-size-14);
}
.column__wrap .column__list .column__post-meta .category-label {
  width: calc(100% - 11.5rem);
  gap: 5px;
}
.column__wrap .column__list .column__post-meta .category-label li {
  padding: 0.2rem 1rem;
}
.column__wrap .column__list .column__post-title {
  font-size: var(--font-size-23);
  margin: 1rem 0;
}
.column__wrap .column__list .more-btn {
  width: 12.5rem;
  font-size: var(--font-size-14);
  margin: inherit;
  margin-left: auto;
  font-weight: bold;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-sizing: border-box;
  padding: 0.5rem 0;
  display: block;
  color: var(--color-white);
  transition: all 0.3s;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) a {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-thumb {
  width: 21rem;
  height: 20rem;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-thumb .img-eff {
  width: 100%;
  height: 100%;
  transition-duration: 0.3s;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-meta {
  width: 82rem;
}

/*----------------------------------
  詳細ページのカテゴリー表示(タイトル下部)
  ----------------------------------*/
.single__post-meta {
  margin-bottom: 2rem;
}
.single__post-meta time {
  font-size: var(--font-size-14);
  width: 9.5rem;
  padding: 0.3rem 0;
}
.single__post-meta .category-label {
  width: calc(100% - 9.5rem);
  font-size: var(--font-size-14);
  gap: 5px;
  margin-left: 1rem;
}
.single__post-meta .category-label li a {
  padding: 0.3rem 1rem;
}

/*==========================================
  contact
  ===========================================*/
.p-contact__form {
  width: 98rem;
  margin: 0 auto 5.5rem;
}
.p-contact__form-item .p-contact__form-label .required {
  margin-left: 1rem;
}
.p-contact__form-item .p-contact__form-input {
  padding: 1.5rem 0;
}
.p-contact__form-item .p-contact__form-input .p-contact__form-list {
  gap: 1.5rem;
}
.p-contact__form-item.p-contact__form-privacy .p-contact__form-label {
  text-align: center;
}
.p-contact__form-value {
  padding: 2rem 1.5rem;
}
.p-contact__form-select {
  width: 20rem;
}
.p-contact__form-select::after {
  inset: 0 1.6rem 0 auto;
  width: 0.8rem;
  height: 0.8rem;
}
.p-contact__form-select select {
  padding: 1.5rem 3rem 1.5rem 1rem;
}
.p-contact__form #pc01,
.p-contact__form #pc02 {
  width: 15rem;
}
.p-contact__form #address {
  margin-top: 1.5rem;
}
.p-contact__form #date1,
.p-contact__form #date2,
.p-contact__form #date3 {
  width: 30rem;
}
.p-contact__form textarea {
  height: 26rem;
}
.p-contact__form .upload-item-wrap .thumb {
  width: 20rem;
  margin-right: 2.5rem;
}
.p-contact__form .upload-item-wrap .ancion-btn-wrap {
  width: 13rem;
}
.p-contact__form .upload-item-wrap .ancion-btn-wrap .ancion-btn,
.p-contact__form .upload-item-wrap .ancion-btn-wrap .upload-button {
  font-size: var(--font-size-13);
}
.p-contact input[type=button],
.p-contact input[type=submit],
.p-contact .p-contact__submits-wrap button {
  height: 7.5rem;
}
.p-contact .p-contact__submits-wrap {
  gap: 3.5rem;
}
.p-contact .p-contact__submits-wrap .p-contact__submits-check {
  width: 30.4rem;
}
.p-contact .p-contact__submits-wrap .p-contact__submits-back {
  width: 27rem;
}
.p-contact .p-contact__submits-wrap .p-contact__submits-send {
  width: 24rem;
}

/*==========================================
  privacy
  ===========================================*/
.p-privacy__content {
  margin-bottom: 7rem;
}
.p-privacy__content:last-child {
  margin-bottom: 0;
}

/*==========================================
  site
  ===========================================*/
.p-sitemap__item-link {
  padding: 2% 0 2% 3%;
}

/*==========================================
  プライバシーポリシー(LPフレーム時)
  ===========================================*/