/***********
***********
 全ページ共通パーツ
***********
***********/
header,
main,
footer,
.p-fv {
  overflow-x: hidden;
}
button {
  cursor: pointer;
}
/***********
PC・SP非表示
***********/
.display-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .display-sp {
    display: block;
  }
}
/***********
タイトル・テキスト
***********/
.c-title {
  text-align: center;
}
.c-title__en {
  font-family: var(--font-family-en);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-blue);
}
@media screen and (max-width: 768px) {
  .c-title__en {
    font-size: 14px;
  }
}
.c-title__ja {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-title__ja {
    font-size: 24px;
  }
}
.c-title2 {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 45px;
}
@media screen and (max-width: 768px) {
  .c-title2 {
    font-size: 20px;
    padding-left: 30px;
  }
}
.c-title2:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 22px;
  height: 22px;
  background: var(--color-blue);
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .c-title2:before {
    width: 18px;
    height: 18px;
    top: 5px;
  }
}
.c-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .c-text {
    font-size: 14px;
  }
}
/***********
ページネーション
***********/
.c-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
/***********
リンク矢印
***********/
.c-moreArrow {
  display: grid;
  place-content: center;
  min-width: 120px;
  min-height: 80px;
  border-radius: 5px 0 0 5px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  overflow: hidden;
  position: relative;
  padding-inline: 5px 28px;
  color: var(--color-white);
  transition: 0.5s;
}
.c-moreArrow:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.5s;
}
.c-moreArrow--noneBg {
  overflow: initial;
  min-width: initial;
  min-height: initial;
}
.c-moreArrow--noneBg:before {
  display: none;
}
@media (any-hover: hover) {
  .c-moreArrow:hover:before {
    transform: translateX(0);
  }
}
.c-moreArrow .arrow-circle {
  --color-arrow: #fdfeff;
  --color-arrow-bg: rgb(253, 254, 255, 0.8);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-arrow-bg);
  color: var(--color-white);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
  overflow: hidden;
  transition: 0.5s;
}
.c-moreArrow .arrow {
  content: "";
  position: absolute;
  top: 9px;
  left: 5px;
  display: inline-block;
  width: 9px;
  height: 2px;
  border-radius: 9999px;
  background-color: var(--color-black);
  transition: 0.5s;
}
.c-moreArrow .arrow::before,
.c-moreArrow .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 5px;
  height: 2px;
  border-radius: 9999px;
  background-color: var(--color-black);
  transform-origin: calc(100% - 1px) 50%;
}
.c-moreArrow .arrow::before {
  transform: rotate(45deg);
}
.c-moreArrow .arrow::after {
  transform: rotate(-45deg);
}
.c-moreArrow .arrow-active {
  transform: translateX(0);
}
.c-moreArrow .arrow-hidden {
  transform: translateX(-50px);
}

.c-moreArrow .arrow-circle--large {
  width: 24px;
  height: 24px;
}
.c-moreArrow .arrow-circle--large .arrow {
  width: 11px;
  height: 2px;
  top: 11px;
  left: 6px;
}
.c-moreArrow .arrow-circle--large .arrow::before,
.c-moreArrow .arrow-circle--large .arrow::after {
  width: 7px;
  height: 2px;
}
@media (any-hover: hover) {
  .c-moreArrow:hover .arrow-active {
    transform: translateX(50px);
  }
  .c-moreArrow:hover .arrow-hidden {
    transform: translateX(0);
  }
}
/***********
View Moreボタン
***********/
.c-viewMore {
  --color-button-text: #f4f4f4;
  font-family: var(--font-family-en);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: var(--color-button-text);
  text-transform: uppercase;
  background: var(--color-black);
  width: 214px;
  min-height: 42px;
  flex-shrink: 0;
  border-radius: 5px;
  padding-inline: 10px 15px;
}
.c-viewMore .arrow-circle {
  right: 15px;
}
@media screen and (max-width: 768px) {
  .c-viewMore {
    width: 186px;
    min-height: 36px;
    font-size: 14px;
    padding-top: 3px;
  }
  .c-viewMore.c-moreArrow .arrow-circle {
    width: 20px;
    height: 20px;
  }
  .c-viewMore.c-moreArrow .arrow {
    top: 9px;
    left: 5px;
    width: 9px;
    height: 2px;
  }
  .c-viewMore.c-moreArrow .arrow::before,
  .c-viewMore.c-moreArrow .arrow::after {
    width: 5px;
    height: 2px;
  }
}
/***********
トップへ戻るボタン
***********/
.c-backToTop {
  position: fixed;
  bottom: 130px;
  right: 130px;
  width: 45px;
  height: 45px;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  z-index: 1000;
  transition: 0.5s;
}
.c-backToTop.is-appear {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 768px) {
  .c-backToTop {
    right: 20px;
    bottom: 20px;
  }
}

/***********
***********
ヘッダー
***********
***********/
.l-header {
  position: fixed;
  top: 24px;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: 0.5s;
}
.l-header.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.is-hidden {
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 1350px) {
  .l-header {
    zoom: 0.85;
  }
}
@media screen and (max-width: 1150px) {
  .l-header {
    zoom: 0.7;
  }
}
@media screen and (max-width: 950px) {
  .l-header {
    zoom: 0.6;
  }
}
@media screen and (max-width: 900px) {
  .l-header {
    top: 30px;
    zoom: 1;
  }
}
.l-header__inner {
  max-width: 1200px;
  min-height: 75px;
  border-radius: 10px;
  background: var(--color-white);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 48px 54px;
}
@media screen and (max-width: 900px) {
  .l-header__inner {
    background: transparent;
    min-height: initial;
    padding-inline: 20px;
  }
}
.l-header__wrap {
  display: flex;
  align-items: center;
  gap: 36px;
}
@media screen and (max-width: 900px) {
  .l-header__wrap {
    display: none;
  }
}
.l-header__navList {
  display: flex;
  align-items: center;
  gap: 24px;
}
.l-header__navItem a {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  position: relative;
  transition: 0.4s;
}
.l-header__navItem a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-blue);
  transition: width 0.2s ease-in-out;
}
@media (any-hover: hover) {
  .l-header__navItem a:hover {
    color: var(--color-blue);
  }
  .l-header__navItem a:hover:after {
    width: 100%;
  }
}
.l-header__buttonWrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.l-header__button {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.l-header__button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  background: var(--color-black);
}
.l-header__button--pamphlet:before {
  transform: translateX(-100%);
}
.l-header__button--faq:before {
  transform: translateX(0);
}
@media (any-hover: hover) {
  .l-header__button--pamphlet:hover:before {
    transform: translateX(0);
  }
  .l-header__button--faq:hover:before {
    transform: translateX(100%);
  }
}
.l-header__button-text {
  min-width: 160px;
  min-height: 36px;
  border-radius: 5px;
  border: 1px solid var(--color-black);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  padding-inline: 8px;
  padding-block: 5px;
  transition: 0.3s;
  z-index: 1;
  position: relative;
}
@media (any-hover: hover) {
  .l-header__button--pamphlet:hover .l-header__button-text {
    color: var(--color-white);
  }
}
.l-header__button--faq .l-header__button-text {
  color: var(--color-white);
}
@media (any-hover: hover) {
  .l-header__button--faq:hover .l-header__button-text {
    color: var(--color-black);
  }
}
.l-header__button-text:before {
  transition: 0.1s;
}
.l-header__button--pamphlet .l-header__button-text:before {
  content: "";
  background: url(../img/pamphlet-icon.svg) no-repeat center center / cover;
  width: 14px;
  height: 17px;
}
@media (any-hover: hover) {
  .l-header__button--pamphlet:hover .l-header__button-text:before {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
  .l-header__button--faq:hover .l-header__button-text:before {
    -webkit-filter: brightness(0);
    filter: brightness(0);
  }
}
.l-header__button--faq .l-header__button-text:before {
  content: "";
  background: url(../img/faq-icon.svg) no-repeat center center / cover;
  width: 15px;
  height: 15px;
}
.l-header__button .l-header__button-text:after {
  content: "";
  background: url(../img/arrow-black.svg) no-repeat center center / cover;
  width: 9px;
  height: 8px;
  transition: 0.1s;
}
.l-header__button--faq .l-header__button-text:after {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
@media (any-hover: hover) {
  .l-header__button--pamphlet:hover .l-header__button-text:after {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
  .l-header__button--faq:hover .l-header__button-text:after {
    -webkit-filter: brightness(0);
    filter: brightness(0);
  }
}

/***********
***********
ハンバーガー
***********
***********/
.c-hamburger {
  position: fixed;
  top: 24px;
  right: 35px;
  width: 73px;
  height: 73px;
  border-radius: 50%;
  background: var(--color-blue);
  cursor: pointer;
  border: 2px solid var(--color-white);
  z-index: 3000;
  transition: 0.4s;
}
@media screen and (max-width: 1350px) {
  .c-hamburger {
    zoom: 0.85;
  }
}
@media screen and (max-width: 1150px) {
  .c-hamburger {
    zoom: 0.7;
  }
}
@media screen and (max-width: 900px) {
  .c-hamburger {
    width: 57px;
    height: 57px;
    right: 20px;
    zoom: 1;
  }
}
.c-hamburger.is-open {
  background: transparent;
  border: 2px solid var(--color-blue);
}
.c-hamburger__icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 3px;
  background: var(--color-skyblue);
  transition: 0.4s;
}
@media screen and (max-width: 900px) {
  .c-hamburger__icon {
    width: 27px;
    height: 2px;
  }
}
.c-hamburger.is-open .c-hamburger__icon {
  background: var(--color-blue);
}
.c-hamburger__icon:nth-of-type(1) {
  top: 20px;
}
@media screen and (max-width: 900px) {
  .c-hamburger__icon:nth-of-type(1) {
    top: 15px;
  }
}
.c-hamburger.is-open .c-hamburger__icon:nth-of-type(1) {
  left: 45%;
  top: 31%;
  transform: rotate(-45deg) translate(-50%, -50%);
}
.c-hamburger__icon:nth-of-type(2) {
  top: 34px;
}
@media screen and (max-width: 900px) {
  .c-hamburger__icon:nth-of-type(2) {
    top: 26px;
  }
}
.c-hamburger.is-open .c-hamburger__icon:nth-of-type(2) {
  opacity: 0;
  visibility: hidden;
}
.c-hamburger__icon:nth-of-type(3) {
  top: 48px;
}
@media screen and (max-width: 900px) {
  .c-hamburger__icon:nth-of-type(3) {
    top: 37px;
  }
}
.c-hamburger.is-open .c-hamburger__icon:nth-of-type(3) {
  left: 40%;
  top: 66%;
  transform: rotate(45deg) translate(-50%, -50%);
}

/***********
***********
追従ボタン
***********
***********/
.c-fixedArea {
  position: fixed;
  top: 115px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 3000;
}
@media screen and (max-width: 1350px) {
  .c-fixedArea {
    zoom: 0.85;
  }
}
@media screen and (max-width: 1150px) {
  .c-fixedArea {
    zoom: 0.7;
  }
}
@media screen and (max-width: 900px) {
  .c-fixedArea {
    display: none;
  }
}
.c-fixedButton--blue,
.c-fixedButton--blue .arrow,
.c-fixedButton--blue .arrow::before,
.c-fixedButton--blue .arrow::after {
  background: var(--color-blue);
}
.c-fixedButton--red,
.c-fixedButton--red .arrow,
.c-fixedButton--red .arrow::before,
.c-fixedButton--red .arrow::after {
  background: var(--color-red);
}

/***********
***********
スマホメニュー
***********
***********/
.c-spnav-modal {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 639px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 2000;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  overflow: hidden;
  z-index: 1000;
  background: rgb(253, 254, 255, 0.97);
  padding-inline: 84px 120px;
  padding-block: 124px 132px;
  border-radius: 0 0 0 140px;
}
@media screen and (max-width: 768px) {
  .c-spnav-modal {
    padding-inline: 20px;
    padding-block: 80px 50px;
    border-radius: 0;
    height: 100%;
    max-width: 100%;
  }
}
.c-spnav-modal.is-open {
  transform: translateX(0);
  opacity: 1;
}
@media screen and (min-width: 769px) and (max-height: 700px) {
  .c-spnav__inner {
    height: 70svh;
    overflow-y: auto;
  }
}
@media screen and (max-width: 768px) {
  .c-spnav__inner {
    height: 90svh;
    overflow-y: auto;
  }
}
.c-spnav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 76px;
}
@media screen and (max-width: 768px) {
  .c-spnav__list {
    gap: 32px 15px;
  }
}
.c-spnav__item--about {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-spnav__item {
    min-width: 205px;
  }
}
.c-spnav__itemEn {
  font-family: var(--font-family-en);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-blue);
}
.c-spnav__itemJa {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-top: -3px;
  position: relative;
  transition: 0.2s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-spnav__subList {
  margin-top: 8px;
}
.c-spnav__subItem {
  position: relative;
}
.c-spnav__subItem:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 8px;
  height: 1px;
  background: var(--color-black);
}
.c-spnav__subItem a {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-left: 20px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.2s;
}
.c-spnav__itemJa:after,
.c-spnav__subItem a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-blue);
  transition: width 0.2s ease-in-out;
}
@media (any-hover: hover) {
  .c-spnav__itemJa:hover,
  .c-spnav__subItem a:hover {
    color: var(--color-blue);
  }
  .c-spnav__itemJa:hover:after,
  .c-spnav__subItem a:hover:after {
    width: 100%;
  }
}
.c-spnav__add {
  margin-top: 84px;
}
@media screen and (max-width: 768px) {
  .c-spnav__add {
    margin-top: 60px;
  }
}
.c-spnav__addList {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.c-spnav__addItem a {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.4s;
  padding-left: 25px;
}
@media (any-hover: hover) {
  .c-spnav__addItem a:hover {
    color: var(--color-blue);
  }
}
.c-spnav__addItem--pamphlet a,
.c-spnav__addItem--recruit a {
  text-decoration: underline;
}
.c-spnav__addItem a:before {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
}
.c-spnav__addItem--recruit a:before {
  background: url(../img/recruit-icon.png) no-repeat center center / cover;
  width: 25px;
  height: 25px;
  left: -4px;
}
.c-spnav__addItem--pamphlet a:before {
  background: url(../img/pamphlet-icon-blue.svg) no-repeat center center / cover;
  width: 15px;
  height: 20px;
}
.c-spnav__addItem--faq a:before {
  background: url(../img/faq-icon-blue.svg) no-repeat center center / cover;
  width: 19px;
  height: 19px;
}

/***********
***********
フッター
***********
***********/
.l-footer__top {
  max-width: 1174px;
  margin-inline: auto;
  margin-top: -60px;
  margin-bottom: -70px;
  z-index: 1;
}
@media screen and (max-width: 900px) {
  .l-footer__top {
    width: 90%;
    margin-top: -30px;
    margin-bottom: -30px;
  }
}
.l-footer__top img {
  width: 100%;
  height: auto;
}
.l-footer {
  position: relative;
  background: var(--color-white);
  border-radius: 10px 10px 0 0;
}
.l-footer__inner {
  max-width: 1050px;
  margin-inline: auto;
  padding-inline: 20px;
  margin-top: 75px;
}
@media screen and (max-width: 900px) {
  .l-footer__inner {
    margin-top: 60px;
    max-width: 510px;
  }
}
.l-footer__logo img {
  width: 100%;
  height: auto;
}
.l-footer__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 900px) {
  .l-footer__wrap {
    flex-direction: column;
    gap: 20px;
  }
}
.l-footer__logo {
  width: 180px;
}
@media screen and (max-width: 900px) {
  .l-footer__logo {
    align-self: start;
    width: 130px;
    margin-left: 15px;
  }
}
.l-footer__buttonWrap {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 900px) {
  .l-footer__buttonWrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0px 0px;
    grid-template-areas:
      "aria1 aria1"
      "aria2 aria3";
    gap: 8px;
    width: 100%;
  }
  .l-footer__button--blue {
    grid-area: aria1;
  }
  .l-footer__button--red {
    grid-area: aria2;
  }
  .l-footer__button--green {
    grid-area: aria3;
  }
}
.l-footer__button {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  border-radius: 5px;
  font-family: var(--font-family-ja);
  color: var(--color-white);
  position: relative;
  padding-right: 25px;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .l-footer__button {
    width: 100%;
    min-width: initial;
    min-height: 54px;
    font-size: 14px;
    line-height: 1.4;
  }
  .l-footer__button.c-moreArrow .arrow {
    right: 24px;
  }
  .l-footer__button--blue {
    font-size: 20px;
  }
  .l-footer__button.c-moreArrow .arrow-circle {
    width: 24px;
    height: 24px;
  }
  .l-footer__button.c-moreArrow .arrow-circle .arrow {
    width: 11px;
    height: 2px;
    top: 11px;
    left: 6px;
  }
  .l-footer__button.c-moreArrow .arrow-circle .arrow::before,
  .l-footer__button.c-moreArrow .arrow-circle .arrow::after {
    width: 7px;
    height: 2px;
  }
}
.l-footer__button--blue,
.l-footer__button--blue.c-moreArrow .arrow,
.l-footer__button--blue.c-moreArrow .arrow:before,
.l-footer__button--blue.c-moreArrow .arrow:after {
  background: var(--color-blue);
}
.l-footer__button--red,
.l-footer__button--red.c-moreArrow .arrow,
.l-footer__button--red.c-moreArrow .arrow:before,
.l-footer__button--red.c-moreArrow .arrow:after {
  background: var(--color-red);
}
.l-footer__button--green,
.l-footer__button--green.c-moreArrow .arrow,
.l-footer__button--green.c-moreArrow .arrow:before,
.l-footer__button--green.c-moreArrow .arrow:after {
  background: var(--color-green);
}
.l-footer__nav {
  margin-top: 55px;
  padding-left: 22px;
}
@media screen and (max-width: 900px) {
  .l-footer__nav {
    margin-top: 40px;
    padding-left: 10px;
  }
}
.l-footer__list {
  display: flex;
  flex-wrap: wrap;
  gap: 52px;
}
@media screen and (max-width: 900px) {
  .l-footer__list {
    gap: 35px 50px;
  }
}
@media screen and (max-width: 900px) {
  .l-footer__item {
    min-width: 135px;
  }
  .l-footer__item:first-of-type {
    min-width: 100%;
  }
}
.l-footer__itemEn {
  font-family: var(--font-family-en);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-blue);
}
@media screen and (max-width: 900px) {
  .l-footer__itemEn {
    font-size: 12px;
  }
}
.l-footer__itemJa {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-top: -3px;
  position: relative;
  transition: 0.2s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 900px) {
  .l-footer__itemJa {
    font-size: 16px;
  }
}
.l-footer__subList {
  margin-top: 8px;
}
@media screen and (max-width: 900px) {
  .l-footer__subList {
    margin-top: 12px;
  }
}
.l-footer__subItem {
  position: relative;
}
@media screen and (max-width: 900px) {
  .l-footer__subItem:not(:first-of-type) {
    margin-top: 12px;
  }
}
.l-footer__subItem:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 8px;
  height: 1px;
  background: var(--color-black);
}

.l-footer__subItem a {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-left: 20px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.2s;
}
@media screen and (max-width: 900px) {
  .l-footer__subItem a {
    font-size: 12px;
  }
}
.l-footer__itemJa:after,
.l-footer__subItem a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-blue);
  transition: width 0.2s ease-in-out;
}
@media (any-hover: hover) {
  .l-footer__itemJa:hover,
  .l-footer__subItem a:hover {
    color: var(--color-blue);
  }
  .l-footer__itemJa:hover:after,
  .l-footer__subItem a:hover:after {
    width: 100%;
  }
}
.l-footer__add {
  margin-top: 40px;
  margin-right: 4px;
  padding-bottom: 80px;
}
@media screen and (max-width: 900px) {
  .l-footer__add {
    margin-top: 36px;
    margin-left: 10px;
    padding-bottom: 50px;
  }
}
.l-footer__addList {
  display: flex;
  justify-content: flex-end;
  gap: 35px;
}
@media screen and (max-width: 900px) {
  .l-footer__addList {
    flex-direction: column;
    justify-content: flex-start;
    gap: 28px;
  }
}
.l-footer__addItem a {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.4s;
}
@media screen and (max-width: 900px) {
  .l-footer__addItem a {
    font-size: 16px;
  }
}
@media (any-hover: hover) {
  .l-footer__addItem a:hover {
    color: var(--color-blue);
  }
}
.l-footer__addItem--pamphlet a,
.l-footer__addItem--recruit a {
  text-decoration: underline;
}
.l-footer__addItem--recruit a:before {
  content: "";
  background: url(../img/recruit-icon.png) no-repeat center center / cover;
  width: 25px;
  height: 25px;
}
.l-footer__addItem--pamphlet a:before {
  content: "";
  background: url(../img/pamphlet-icon-blue.svg) no-repeat center center / cover;
  width: 15px;
  height: 20px;
}
.l-footer__addItem--faq a:before {
  content: "";
  background: url(../img/faq-icon-blue.svg) no-repeat center center / cover;
  width: 19px;
  height: 19px;
}
.l-footer__copyright {
  display: block;
  text-align: center;
  font-family: var(--font-family-en);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  padding-block: 40px 28px;
  background: var(--color-skyblue);
}
@media screen and (max-width: 900px) {
  .l-footer__copyright {
    padding-block: 24px;
    font-size: 12px;
  }
}

/***********
***********
TOP FV
***********
***********/
.p-fv {
  padding-top: 100px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .p-fv {
    padding-top: 50px;
  }
}
@media screen and (max-width: 900px) {
  .p-fv {
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-fv {
    padding-top: 60px;
  }
}
.p-fv:after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url(../img/fv_bg.webp) no-repeat center center / cover;
  z-index: -1;
}
.p-fv__list {
  position: relative;
  width: 100%;
  height: 705px;
  z-index: 2;
  transform-style: preserve-3d;
  overflow: hidden; /* コンテナからはみ出す要素を隠す */
}
.p-fv__list {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}
.p-fv__list.loaded {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 768px) {
  .p-fv__list {
    height: 411px;
  }
}
.p-fv__item {
  position: absolute;
  width: 380px;
  aspect-ratio: 380/230;
  border-radius: 8px;
  overflow: hidden;
  transition: all 700ms ease-out;
  opacity: 1;
  /* top/leftの初期位置を削除し、transformのみで位置を制御 */
  transform-origin: center center;
}
.p-fv__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-fv__item.blur {
  /* transformはJavaScriptで直接適用するため、ここでは設定しない */
  -webkit-filter: blur(15px);
  filter: blur(15px);
  /* サイズ変更に伴う位置調整のため、transform-originを設定 */
  transform-origin: center center;
}
@media screen and (max-width: 900px) {
  .p-fv__item.blur {
    -webkit-filter: blur(10px);
    filter: blur(10px);
  }
}
.p-fv__textJa {
  position: absolute;
  top: 360px;
  left: 50%;
  transform: translateX(-50%);
  width: 469px;
  z-index: 10;
}
@media screen and (max-width: 1200px) {
  .p-fv__textJa {
    top: 300px;
    width: 390px;
  }
}
@media screen and (max-width: 768px) {
  .p-fv__textJa {
    width: 198px;
    top: 230px;
  }
}
.p-fv__textJa img {
  width: 100%;
  height: auto;
}
.p-fv__textEn {
  --color-text: #edf2f6;

  position: absolute;
  top: 360px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 768px) {
  .p-fv__textEn {
    top: 217px;
  }
}
.p-fv__textEn p {
  font-family: var(--font-family-en);
  font-weight: 700;
  font-size: 60px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .p-fv__textEn p {
    font-size: 25px;
  }
}
.p-fv__textEn p:not(:first-of-type) {
  margin-top: 80px;
}
.p-fv__bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 98%;
  max-width: 1440px;
  z-index: 1;
}
.p-fv__bottom img {
  width: 100%;
  height: auto;
}

/***********
***********
TOPお知らせ
***********
***********/
.p-news {
  --color-background: #e7f6ff;
  background: var(--color-background);
  padding-inline: 20px;
  padding-block: 15px;
}
@media screen and (max-width: 768px) {
  .p-news {
    padding-block: 10px;
  }
}
.p-news__article {
  max-width: 1080px;
  margin-inline: auto;
  background: var(--color-white);
  padding-inline: 30px 165px;
  display: flex;
  align-items: center;
  border-radius: 5px;
  border: 1px solid var(--color-blue);
  position: relative;
  padding-block: 17px;
}
@media screen and (max-width: 768px) {
  .p-news__article {
    display: block;
    padding-inline: 25px 16px;
    padding-block: 10px;
  }
}
.p-news__articleLabel {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-blue);
  padding-right: 28px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-news__articleLabel {
    font-size: 13px;
    padding-bottom: 7px;
    border-bottom: 1px solid;
  }
}
.p-news__articleDate {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: var(--color-blue);
  padding-left: 22px;
  position: relative;
  flex-shrink: 0;
}
.p-news__articleDate:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 120%;
  background: var(--color-blue);
}
@media screen and (max-width: 768px) {
  .p-news__articleDate {
    font-size: 12px;
    padding-left: 0;
    display: inline-block;
  }
  .p-news__articleDate:before {
    display: none;
  }
}
.p-news__articleCategory {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  background: var(--color-blue);
  color: var(--color-white);
  padding-inline: 28px;
  padding-block: 2px;
  border-radius: 5px;
  margin-left: 18px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-news__articleCategory {
    font-size: 12px;
    display: inline-block;
    margin-left: 4px;
    padding-inline: 8px;
    padding-block: 0;
  }
}
.p-news__articleTitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-left: 18px;
  transition: 0.5s;
}

@media (any-hover: hover) {
  .p-news__articleTitle:hover {
    color: var(--color-blue);
  }
}

@media screen and (max-width: 768px) {
  .p-news__articleTitle {
    font-size: 12px;
    margin-left: 0;
  }
}
.p-news__articleMore {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-black);
  padding-inline: 0 32px;
  min-width: initial;
  min-height: initial;
}
@media screen and (max-width: 768px) {
  .p-news__articleMore {
    top: 10px;
    right: 20px;
    transform: initial;
    font-size: 13px;
    padding-inline: 0 28px;
  }
}
@media (any-hover: hover) {
  .p-news__articleMore:hover {
    color: var(--color-blue);
  }
}
.p-news__articleMore .arrow-circle {
  background: var(--color-black);
  right: 0;
}
.p-news__articleMore .arrow,
.p-news__articleMore .arrow:before,
.p-news__articleMore .arrow:after {
  background: var(--color-arrow);
}
/***********
***********
ゲンキーについて(TOP)
***********
***********/
.p-about {
  padding-top: 76px;
}
@media screen and (max-width: 768px) {
  .p-about {
    padding-top: 60px;
  }
}
.p-about__inner {
  max-width: 1080px;
  padding-inline: 60px;
  margin-inline: auto;
  box-sizing: content-box;
}
@media screen and (max-width: 768px) {
  .p-about__inner {
    padding-inline: 20px;
  }
}
.p-about__content {
  display: grid;
  grid-template-columns: 0.635fr 1fr;
  gap: 33px;
  margin-top: 40px;
}
.p-about__content--pc {
  position: relative;
}
.p-about__content--pc:before {
  content: "";
  position: absolute;
  top: -52px;
  left: -42px;
  background: url(../img/about_icon01.webp) no-repeat center center / cover;
  width: 67px;
  height: 105px;
  z-index: 2;
}
.p-about__content--pc:after {
  content: "";
  position: absolute;
  bottom: -42px;
  right: -45px;
  background: url(../img/about_icon02.webp) no-repeat center center / cover;
  width: 57px;
  height: 96px;
  z-index: 2;
}
.p-about__content--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-about__content--pc {
    display: none;
  }
  .p-about__content--sp {
    display: block;
  }
  .p-about__top {
    position: relative;
  }
  .p-about__top:before {
    content: "";
    position: absolute;
    top: -24px;
    left: -24px;
    background: url(../img/about_icon01.webp) no-repeat center center / cover;
    width: 45px;
    height: 71px;
    z-index: 2;
  }
  .p-about__top:after {
    content: "";
    position: absolute;
    bottom: 10px;
    right: -22px;
    background: url(../img/about_icon02.webp) no-repeat center center / cover;
    width: 42px;
    height: 71px;
    z-index: 2;
  }
  .p-about__content--sp .p-about__top .p-about__link .p-about__image {
    aspect-ratio: 353/240;
  }
  .p-about__content--sp .p-about__bottom {
    display: flex;
    gap: 8px;
    margin-top: 15px;
  }
  .p-about__content--sp .p-about__bottom .p-about__link {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    width: 180px;
  }
  .p-about__content--sp .p-about__bottom .p-about__link .p-about__image {
    flex-grow: 1;
    display: flex;
    align-items: center;
  }
}
.p-about__left {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
.p-about__right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.p-about__right-left,
.p-about__right-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-about__image {
  border-radius: 5px;
  overflow: hidden;
}
.p-about__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.5s;
}
.p-about__more {
  display: block;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-top: 5px;
  color: var(--color-black);
  padding-inline: 0;
}
.p-about__more .arrow-circle {
  background: var(--color-black);
  right: 0;
}
.p-about__more .arrow,
.p-about__more .arrow:before,
.p-about__more .arrow:after {
  background: var(--color-arrow);
}
@media screen and (max-width: 768px) {
  .p-about__more {
    font-size: 14px;
  }
}
@media (any-hover: hover) {
  .p-about__link:hover .p-about__image img {
    transform: scale(1.05);
  }
  .p-about__link:hover .p-about__more {
    color: var(--color-blue);
  }
  .p-about__link:hover .arrow-active {
    transform: translateX(50px);
  }
  .p-about__link:hover .arrow-hidden {
    transform: translateX(0);
  }
}

/***********
***********
インタビュー
***********
***********/
.p-interview {
  margin-top: 140px;
  position: relative;
}
.p-interview--mid-career {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .p-interview {
    margin-top: 88px;
  }
  .p-interview--mid-career {
    margin-top: 36px;
  }
}
.p-interview__inner {
  margin-left: clamp(20px, 8.333333333333332vw, 120px);
  background: var(--color-white);
  border-radius: 50px 0 0 50px;
  padding-left: 60px;
  padding-block: 74px 64px;
}
.p-interview--mid-career .p-interview__inner {
  background: transparent;
}
@media screen and (min-width: 1600px) {
  .p-interview__inner {
    margin-left: 15vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-interview__inner {
    margin-left: 60px;
  }
}
@media screen and (max-width: 768px) {
  .p-interview__inner {
    margin-left: 20px;
    padding-block: 56px 56px;
    padding-left: 30px;
  }
  .p-interview--mid-career .p-interview__inner {
    padding-left: 0;
  }
}
.p-interview .c-title,
.p-interview .c-text {
  text-align: left;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-interview .c-text {
    padding-right: 30px;
  }
}
.p-interview .c-text:after {
  content: "";
  position: absolute;
  right: -54px;
  top: -64px;
  width: 53px;
  height: 115px;
  background: url(../img/interview_icon.webp) no-repeat center center / cover;
}
.p-interview--mid-career .c-text:after {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-interview .c-text:after {
    display: none;
  }
  .p-interview .c-title:after {
    content: "";
    position: absolute;
    right: -27px;
    top: -16px;
    width: 29px;
    height: 63px;
    background: url(../img/interview_icon.webp) no-repeat center center / cover;
  }
  .p-interview--mid-career .c-title:after {
    display: none;
  }
}
.p-interview .swiper {
  margin-top: 28px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-interview .swiper {
    margin-top: 13px;
  }
}
.p-interview .swiper-slide {
  position: relative;
  width: 330px;
}
@media screen and (max-width: 768px) {
  .p-interview .swiper-slide {
    width: 315px;
  }
}
.p-interview__thumbnail {
  aspect-ratio: 330/430;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-interview__thumbnail {
    aspect-ratio: 315/410;
  }
}
.p-interview__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.4s;
}
@media (any-hover: hover) {
  .p-interview .swiper-slide:hover .p-interview__thumbnail img {
    transform: scale(1.05);
  }
}
.p-interview__body {
  --color-interview-white: #fdfeff;
  position: absolute;
  bottom: 36px;
  padding-inline: 15px;
}
@media screen and (max-width: 768px) {
  .p-interview__body {
    bottom: 25px;
  }
}
.p-interview__catchphrase {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
  background: var(--color-blue);

  font-weight: 700;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-interview-white);
  border-radius: 5px;
  padding-block: 2px;
  padding-inline: 4px;
}
@media screen and (max-width: 768px) {
  .p-interview__catchphrase {
    font-size: 16px;
    padding-block: 1px;
  }
}
.p-interview__heading {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-interview-white);
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .p-interview__heading {
    font-size: 14px;
  }
}
.p-interview__bottom {
  position: relative;
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-right: 255px;
  z-index: 2;
}
.p-interview--mid-career .p-interview__bottom {
  margin-right: 194px;
}
@media screen and (max-width: 1023px) {
  .p-interview__bottom {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .p-interview__bottom {
    margin-top: 16px;
    margin-right: 0;
    gap: 23px;
  }
  .p-interview__button {
    margin-left: 54px;
  }
  .p-interview--mid-career .p-interview__button {
    margin-left: initial;
    margin-inline: auto;
  }
}
.p-interview .swiper-bottomWrap {
  width: 100%;
  height: 42px;
  position: relative;
}
.p-interview__button .arrow {
  background: var(--color-black);
}
.p-interview .swiper-button-next,
.p-interview .swiper-button-prev {
  color: var(--color-white);
  background: var(--color-black);
  width: 42px;
  height: 42px;
  border-radius: 50%;
}
.p-interview .swiper-button-prev {
  left: 0;
}
.p-interview .swiper-button-next {
  right: initial;
  left: 58px;
}
.p-interview .swiper-button-next:after,
.p-interview .swiper-button-prev:after {
  font-size: 20px;
  position: relative;
}
.p-interview .swiper-button-prev:after {
  right: 1px;
}
.p-interview .swiper-button-next:after {
  left: 1px;
}
.p-interview .swiper-pagination {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  bottom: 8px !important;
  left: 135px !important;
}
@media screen and (max-width: 768px) {
  .p-interview .swiper-pagination {
    bottom: 10px !important;
    left: 110px !important;
  }
}
.p-interview .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin-inline: 7px !important;
}
@media screen and (max-width: 768px) {
  .p-interview .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin-inline: 5px !important;
  }
}
.p-interview .swiper-pagination-bullet-active {
  background: var(--color-black);
}
.p-interview__bgText {
  font-family: var(--font-family-en);
  font-weight: 700;
  font-size: 100px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-skyblue);
  position: absolute;
  top: 0;
  right: 180px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-interview__bgText {
    font-size: 48px;
    right: 20px;
    top: 48px;
  }
}
.p-interview__content {
  width: 100%;
}
.p-interview__list {
  max-width: 1080px;
  margin-inline: auto;
  box-sizing: content-box;
  padding-inline: 60px;
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 45px;
}
@media screen and (max-width: 1023px) {
  .p-interview__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .p-interview__list {
    grid-template-columns: repeat(1, 1fr);
    padding-inline: 20px;
    gap: 30px 25px;
    max-width: 450px;
  }
}
.p-interview__item {
  position: relative;
}
@media (any-hover: hover) {
  .p-interview__link:hover .p-interview__thumbnail img {
    transform: scale(1.05);
  }
}
.p-interview__head {
  margin-top: 140px;
  width: 100%;
  margin-bottom: 52px;
  position: relative;
}
.p-interview__head:after {
  content: "";
  position: absolute;
  bottom: -48px;
  left: 0;
  width: 100%;
  height: 144px;
  background: var(--color-blue);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-interview__head {
    margin-top: 100px;
  }
  .p-interview__head:after {
    height: 100px;
  }
}
.p-interview__head-inner {
  display: flex;
  align-items: center;
  gap: 20px 42px;
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 60px;
  box-sizing: content-box;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-interview__head-inner {
    flex-direction: column;
    padding-inline: 20px;
    max-width: 480px;
  }
}
.p-interview__head-inner:before {
  content: "";
  position: absolute;
  bottom: 8px;
  right: 60px;
  background: url(../img/interview_head_icon.png) no-repeat center center /
    cover;
  width: 102px;
  height: 221px;
}
@media screen and (max-width: 1200px) {
  .p-interview__head-inner:before {
    width: 65px;
    height: 140px;
  }
}
@media screen and (max-width: 768px) {
  .p-interview__head-inner:before {
    bottom: 8px;
    right: 30px;
    width: 50px;
    height: 108px;
  }
}
.p-interview__head-thumbnail {
  aspect-ratio: 461/596;
  overflow: hidden;
  border-radius: 10px;
  width: 461px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-interview__head-thumbnail {
    width: 100%;
  }
}
.p-interview__head-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-interview__head-body {
  width: 544px;
  margin-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-interview__head-body {
    width: 100%;
    margin-bottom: 100px;
  }
}
.p-interview__head-catchphrase {
  --color-interview-white: #fdfeff;

  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
  background: var(--color-blue);

  font-weight: 700;
  font-size: 36px;
  line-height: 2;
  letter-spacing: 0.05em;

  color: var(--color-interview-white);
  border-radius: 5px;
  padding-inline: 8px;
}
@media screen and (max-width: 1200px) {
  .p-interview__head-catchphrase {
    font-size: 27px;
  }
}
@media screen and (max-width: 768px) {
  .p-interview__head-catchphrase {
    font-size: 22px;
  }
}
.p-interview__head-dataJoin {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .p-interview__head-dataJoin {
    font-size: 16px;
  }
}
.p-interview__head-heading {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-interview__head-heading {
    font-size: 20px;
  }
}
.p-interview__number {
  position: absolute;
  top: 7px;
  left: 45px;
  font-family: Roboto;
  font-weight: 700;
  font-size: min(6.666666666666667vw, 96px);
  line-height: 1.4;
  letter-spacing: 0;
  color: transparent;
  -webkit-text-stroke: 2px var(--color-skyblue);
  text-stroke: 2px var(--color-skyblue);
  text-shadow: 0px 2px 2px 0px #495b6940;
}
.p-interview__number--archive {
  top: 0;
  left: 36px;
  font-size: min(4.444444444444445vw, 64px);
}
@media screen and (max-width: 768px) {
  .p-interview__number,
  .p-interview__number--archive {
    top: 5px;
    left: 36px;
    font-size: max(56px, 14vw);
  }
}
.p-interview__number:before {
  content: "#";
  position: absolute;
  top: 20px;
  left: -22px;
  font-family: var(--font-family-en);
  font-weight: 100;
  font-size: min(2.5vw, 36px);
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-skyblue);
  text-shadow: 0px 2px 2px 0px #495b6940;
}
.p-interview__number--archive:before,
.p-interview__number--archive:before {
  top: 20px;
  left: -16px;
  font-size: min(1.3888888888888888vw, 20px);
}
@media screen and (max-width: 768px) {
  .p-interview__number:before {
    top: 16px;
    left: -16px;
    font-size: max(20px, 5vw);
  }
}

/***********
***********
部署紹介
***********
***********/
.p-department {
  padding-block: 132px;
  padding-inline: 20px;
}
@media screen and (max-width: 768px) {
  .p-department {
    padding-block: 72px;
  }
}
.p-department__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 10px;
  padding-block: 80px;
  background: var(--color-white);
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .p-department__inner {
    padding-block: 60px;
  }
}
.p-department .c-title,
.p-department .c-text {
  padding-inline: 15px;
}
.p-department__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-inline: 60px;
}
.p-department__list--top {
  margin-top: 42px;
}
.p-department__list--bottom {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .p-department__list--bottom {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease-in-out;
  }
  .p-department__list--bottom.is-open {
    max-height: 2000px; /* コンテンツの高さより大きめに設定 */
  }
}
.p-department__item {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .p-department__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 8px;
    padding-inline: 0;
    margin-top: 20px;
  }
}
.p-department__image {
  aspect-ratio: 252/165;
  border-radius: 10px;
  overflow: hidden;
  padding: 1px;
}
@media screen and (max-width: 768px) {
  .p-department__image {
    aspect-ratio: 162/113;
  }
}
.p-department__image img {
  width: 100%;
  height: auto;
}
.p-department__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-blue);
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .p-department__title {
    font-size: 16px;
  }
}
.p-department__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: 2px;
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .p-department__text {
    font-size: 14px;
  }
}
.p-department__instagram {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  transition: 0.5s;
}
@media (any-hover: hover) {
  .p-department__instagram:hover {
    color: var(--color-blue);
  }
  .p-department__instagram:hover:before {
    background: url(../img/instagram-blue.svg) no-repeat center center / cover;
  }
}
.p-department__instagram:before {
  content: "";
  background: url(../img/instagram.svg) no-repeat center center / cover;
  width: 15px;
  height: 15px;
  transition: 0.5s;
}
.p-department__viewMore {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-department__viewMore {
    display: grid;
    margin-inline: auto;
    margin-top: 30px;
  }
}
.js-department-buttonText {
  padding-bottom: 2px;
}
.p-department__viewMore .arrow-circle {
  transform: translateY(-50%) rotate(90deg);
}
.p-department__list--bottom.is-open + .p-department__viewMore .arrow-circle {
  transform: translateY(-50%) rotate(-90deg);
}

/***********
***********
部署紹介
***********
***********/
.p-movie {
  margin-bottom: 145px;
}
@media screen and (max-width: 768px) {
  .p-movie {
    margin-bottom: 72px;
  }
}
.p-movie .c-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin-inline: auto;
}
.p-movie .c-title:before {
  content: "";
  position: absolute;
  top: 14px;
  left: -67px;
  width: 45px;
  height: 48px;
  background: url(../img/movies_icon01.webp) no-repeat center center / cover;
}
@media screen and (max-width: 768px) {
  .p-movie .c-title:before {
    width: 30px;
    height: 33px;
    left: -40px;
  }
}
.p-movie .c-title:after {
  content: "";
  position: absolute;
  top: 15px;
  right: -50px;
  width: 28px;
  height: 47px;
  background: url(../img/movies_icon02.webp) no-repeat center center / cover;
}
@media screen and (max-width: 768px) {
  .p-movie .c-title:after {
    width: 19px;
    height: 32px;
    right: -28px;
  }
}
.p-movie .swiper {
  margin-top: 36px;
}
@media screen and (max-width: 768px) {
  .p-movie .swiper {
    margin-top: 15px;
  }
}
.p-movie .swiper-slide {
  aspect-ratio: 753/414;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  pointer-events: none;
}
.p-movie .swiper-slide-active {
  pointer-events: auto;
}
.p-movie .swiper-slide iframe {
  display: block;
  aspect-ratio: 753/414;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-movie .swiper-slide:after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0, 0.2);
  transition: 0.5s;
  pointer-events: none;
}
.p-movie .swiper-slide-active:after {
  background: rgb(0, 0, 0, 0);
}
@media screen and (max-width: 768px) {
  .p-movie .swiper-slide {
    aspect-ratio: 300/168;
  }
}
.p-movie .swiper-slide video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-movie .swiper-button-next,
.p-movie .swiper-button-prev {
  color: var(--color-white);
  background: var(--color-black);
  width: 52px;
  height: 52px;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .p-movie .swiper-button-next,
  .p-movie .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
}
.p-movie .swiper-button-prev {
  left: 18.5vw;
}
@media screen and (max-width: 768px) {
  .p-movie .swiper-button-prev {
    left: 3.85vw;
  }
}
.p-movie .swiper-button-next {
  right: 18.5vw;
}
@media screen and (max-width: 768px) {
  .p-movie .swiper-button-next {
    right: 3.85vw;
  }
}
.p-movie .swiper-button-next:after,
.p-movie .swiper-button-prev:after {
  font-size: 20px;
  position: relative;
}
.p-movie .swiper-button-prev:after {
  right: 1px;
}
.p-movie .swiper-button-next:after {
  left: 1px;
}
@media screen and (max-width: 768px) {
  .p-movie .swiper-button-next:after,
  .p-movie .swiper-button-prev:after {
    font-size: 16px;
  }
}

/***********
***********
お知らせ
***********
***********/
.info_page_wrapper.topPage {
  width: calc(100% - 40px);
  max-width: 1200px;
  padding-inline: 20px;
  padding-bottom: 50px;
}
.info_page_wrapper.topPage .info_page_wrapper_row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 894px;
  padding-block: 72px 20px;
  margin-inline: auto;
}
@media screen and (max-width: 1050px) {
  .info_page_wrapper.topPage .info_page_wrapper_row {
    width: 90%;
  }
}
@media screen and (max-width: 600px) {
  .info_page_wrapper.topPage .info_page_wrapper_row {
    width: 100%;
    padding-block: 64px 32px;
  }
}
.info_page_wrapper.topPage .c-title {
  position: relative;
  top: -12px;
  left: -94px;
  text-align: left;
  margin-right: 40px;
}
@media screen and (max-width: 1300px) {
  .info_page_wrapper.topPage .c-title {
    left: 0;
  }
}
@media screen and (max-width: 600px) {
  .info_page_wrapper.topPage .c-title {
    top: 0;
    margin-bottom: 15px;
    margin-inline: 0;
  }
}
.info_page_wrapper.topPage .c-title:after {
  content: "";
  position: absolute;
  top: -10px;
  right: -50px;
  width: 38px;
  height: 67px;
  background: url(../img/news_icon.webp) no-repeat center center / cover;
}
.info_page_wrapper.topPage .info_page_tags {
  margin: 0;
  padding-block: 0;
}
@media screen and (max-width: 600px) {
  .info_page_wrapper.topPage .info_page_tags {
  	width: 100%;
  }
}
.info_page_wrapper.topPage .info_page_ta_date {
  margin-block: 15px;
}
.info_page_wrapper.topPage .info_page_ta_cat {
  margin-block: 15px;
}
.info_page_wrapper.topPage .info_page_ta_text {
  margin-block: 15px;
}
.info_page_wrapper.topPage .info_page_table_area {
  margin-bottom: 32px;
}
.info_page_wrapper.topPage .c-viewMore {
  margin-inline: auto;
}
.info_page_wrapper.topPage .info_page_ta_text a {
  transition: 0.5s;
}
@media (any-hover: hover) {
  .info_page_wrapper.topPage .info_page_ta_text a:hover {
    color: var(--color-blue);
    opacity: 1;
  }
}
@media screen and (max-width: 600px) {
  .info_page_wrapper.topPage .info_page_table {
    width: 100%;
  }
  .info_page_wrapper.topPage .info_tag {
    font-size: 14px;
    padding: 16px 0;
  }
  .info_page_wrapper.topPage .info_page_ta_date {
    margin-block: 16px 0;
    padding-left: 0;
    font-size: 12px;
  }
  .info_page_wrapper.topPage .info_page_ta_cat {
    margin-block: 16px 0;
    font-size: 12px;
    height: 20px;
    width: initial;
    padding-inline: 5px;
  }
  .info_page_wrapper.topPage .info_page_ta_text {
    margin-block: 0 8px;
    padding-left: 0;
  }
  .info_page_ta_text a {
    font-size: 12px;
  }
  .info_page_wrapper.topPage .info_page_table_area {
    margin-bottom: 24px;
  }
}

/***********
***********
インタビュー(質問・回答)
***********
***********/
.p-faq__dl {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 60px;
  box-sizing: content-box;
  display: flex;
  flex-direction: column;
  gap: 68px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-faq__dl {
    padding-inline: 20px;
    gap: 30px;
    margin-top: 10px;
  }
}
.p-faq__dt {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-blue);
  position: relative;
  padding-left: 61px;
}
@media screen and (max-width: 768px) {
  .p-faq__dt {
    font-size: 18px;
    padding-left: 50px;
  }
}
.p-faq__dt:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 46px;
  height: 46px;
  background: url(../img/question_icon.svg) no-repeat center center / cover;
}
@media screen and (max-width: 768px) {
  .p-faq__dt:before {
    width: 36px;
    height: 36px;
  }
}
.p-faq__dd {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: 22px;
}
@media screen and (max-width: 768px) {
  .p-faq__dd {
    font-size: 14px;
  }
}

/***********
***********
1日の流れ
***********
***********/
.p-timeTable {
  padding-inline: 60px;
  margin-top: 85px;
}
.real-estate-professional .p-timeTable {
  margin-top: 80px;
}
.real-estate-professional .c-title {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-timeTable {
    padding-inline: 20px;
    margin-top: 60px;
  }
}
.p-timeTable__inner {
  border-radius: 10px;
  border: 1px solid var(--color-blue);
  padding-block: 60px;
  padding-inline: 60px;
  background: var(--color-white);
  max-width: 1080px;
  margin-inline: auto;
}
.real-estate-professional .p-timeTable__inner {
  max-width: 1200px;
  border: 0;
}
@media screen and (max-width: 768px) {
  .p-timeTable__inner {
    max-width: 600px;
    padding-inline: 20px;
    padding-block: 30px;
  }
}
.p-timeTable__heading {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  padding-left: 41px;
  position: relative;
  color: var(--color-blue);
}
@media screen and (max-width: 768px) {
  .p-timeTable__heading {
    font-size: 20px;
  }
}
.p-timeTable__heading:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 29px;
  height: 32px;
  background: url(../img/time_icon.svg) no-repeat center center / cover;
}
.p-timeTable__list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.real-estate-professional .p-timeTable__list {
  padding-block: 54px;
  padding-inline: 54px;
  border-radius: 10px;
  border: 1px solid var(--color-blue);
  background: var(--color-skyblue);
}
@media screen and (max-width: 768px) {
  .p-timeTable__list {
    margin-top: 30px;
  }
  .real-estate-professional .p-timeTable__list {
    padding-block: 24px;
    padding-inline: 10px;
  }
}
.p-timeTable__item {
  display: flex;
  gap: 27px;
}
@media screen and (max-width: 768px) {
  .p-timeTable__item {
    gap: 15px;
  }
}
.p-timeTable__time {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-blue);
  flex-shrink: 0;
  min-width: 65px;
}
@media screen and (max-width: 768px) {
  .p-timeTable__time {
    font-size: 20px;
    min-width: 60px;
  }
}
.p-timeTable__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-blue);
  position: relative;
  padding-left: 42px;
}
@media screen and (max-width: 768px) {
  .p-timeTable__title {
    font-size: 20px;
    padding-left: 30px;
  }
}
.p-timeTable__title:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--color-blue);
}
@media screen and (max-width: 768px) {
  .p-timeTable__title:before {
    width: 16px;
    height: 16px;
    top: 7px;
  }
}
.p-timeTable__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  padding-left: 42px;
  margin-top: 10px;
  padding-bottom: 32px;
  min-height: 42px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-timeTable__description {
    font-size: 15px;
    padding-left: 30px;
    min-height: 32px;
  }
}
.p-timeTable__description:before {
  content: "";
  position: absolute;
  top: 0;
  left: 9px;
  height: 100%;
  width: 2px;
  background: var(--color-blue);
}
@media screen and (max-width: 768px) {
  .p-timeTable__description:before {
    left: 7px;
  }
}
.p-timeTable__item:last-of-type .p-timeTable__description:before {
  display: none;
}

/***********
***********
就活生の方にメッセージ
***********
***********/
.p-message {
  margin-top: 104px;
  padding-inline: 60px;
}
@media screen and (max-width: 768px) {
  .p-message {
    margin-top: 60px;
    padding-inline: 20px;
  }
}
.p-message__inner {
  border-radius: 10px;
  border: 1px solid var(--color-blue);
  padding-block: 60px;
  padding-inline: 60px 40px;
  background: var(--color-white);
  max-width: 1080px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  gap: 15px 30px;
}
@media screen and (max-width: 768px) {
  .p-message__inner {
    max-width: 600px;
    padding-inline: 20px;
    padding-block: 30px;
    flex-direction: column;
  }
}
.p-message__textArea {
  width: 396px;
}
@media screen and (max-width: 768px) {
  .p-message__textArea {
    display: contents;
  }
}
.p-message__heading {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-blue);
}
@media screen and (max-width: 768px) {
  .p-message__heading {
    font-size: 20px;
  }
}
.p-message__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: 27px;
}
@media screen and (max-width: 768px) {
  .p-message__text {
    font-size: 15px;
    order: 3;
    margin-top: 0;
  }
}
.p-message__image {
  width: 532px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 532/340;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-message__image {
    width: 100%;
  }
}
.p-message__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/***********
***********
ゲンキーについて(下層・上部)
***********
***********/
.p-about__head {
  width: 100%;
}
.p-about__head-content {
  display: flex;
  align-items: center;
  max-width: 1200px;
  padding-inline: 60px;
  margin-inline: auto;
  box-sizing: content-box;
}
.p-about__head-content img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .p-about__head-content {
    flex-direction: column-reverse;
    max-width: 500px;
    padding-inline: 20px;
    gap: 20px;
  }
}
/***********
***********
ゲンキーの文化
***********
***********/
.p-culture {
  margin-top: 76px;
}
.p-culture .c-title {
  text-align: left;
  max-width: 1080px;
  padding-left: 180px;
  box-sizing: content-box;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .p-culture .c-title {
    padding-left: 20px;
  }
}
.p-culture .c-title:after {
  content: "";
  position: absolute;
  top: 0;
  right: -65px;
  background: url(../img/culture_icon.webp) no-repeat center center / cover;
  width: 45px;
  height: 70px;
}
@media screen and (max-width: 768px) {
  .p-culture .c-title:after {
    right: -42px;
    width: 30px;
    height: 50px;
  }
}
.p-culture__image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.p-culture__image img {
  aspect-ratio: 543/283;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-culture__heading {
  --color-heading: #fdfeff;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  background: rgb(20, 142, 200, 0.7);
  color: var(--color-heading);
  padding-inline: 30px;
  padding-block: 10px;
}
@media screen and (max-width: 768px) {
  .p-culture__heading {
    font-size: 20px;
  }
}
.p-culture .swiper {
  margin-top: 24px;
}
.p-culture .swiper-wrapper {
  display: flex;
  align-items: stretch; /* スライドの高さを揃える */
}
.p-culture .swiper-slide {
  height: auto; /* 高さを自動調整 */
  display: flex;
  flex-direction: column;
}
.p-culture__body {
  background: var(--color-white);
  border-radius: 2px;
  padding-inline: 32px;
  padding-block: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .p-culture__body {
    padding-inline: 20px;
  }
}
.p-culture__lead {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-blue);
  min-height: 68px;
  place-content: center;
}
@media screen and (max-width: 768px) {
  .p-culture__lead {
    font-size: 16px;
    min-height: initial;
  }
}
.p-culture__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: 16px;
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .p-culture__description {
    font-size: 14px;
  }
}
.p-culture .swiper-button-next,
.p-culture .swiper-button-prev {
  color: var(--color-white);
  background: var(--color-black);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  top: 19%;
}
.p-culture .swiper-button-prev {
  left: 26vw;
}
.p-culture .swiper-button-next {
  right: 26vw;
}
.p-culture .swiper-button-next:after,
.p-culture .swiper-button-prev:after {
  font-size: 20px;
  position: relative;
}
.p-culture .swiper-button-prev:after {
  right: 1px;
}
.p-culture .swiper-button-next:after {
  left: 1px;
}
@media screen and (max-width: 1023px) {
  .p-culture .swiper-button-prev {
    left: 17.5vw;
  }
  .p-culture .swiper-button-next {
    right: 17.5vw;
  }
}
@media screen and (max-width: 768px) {
  .p-culture .swiper-button-prev {
    left: 2vw;
  }
  .p-culture .swiper-button-next {
    right: 2vw;
  }
}

/***********
***********
ゲンキーの特徴
***********
***********/
.p-feature {
  margin-top: 140px;
}
@media screen and (max-width: 768px) {
  .p-feature {
    margin-top: 60px;
  }
}
.p-feature__inner {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 60px;
  box-sizing: content-box;
}
@media screen and (max-width: 768px) {
  .p-feature__inner {
    max-width: 500px;
    padding-inline: 20px;
  }
}
.p-feature .c-title {
  text-align: left;
}
.p-feature__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}
@media screen and (max-width: 900px) {
  .p-feature__list {
    grid-template-columns: repeat(1, 1fr);
    max-width: 600px;
    margin-inline: auto;
    margin-top: 20px;
    gap: 24px;
  }
}
.p-feature__item {
  background: var(--color-white);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-inline: 30px;
  padding-block: 30px;
}
@media screen and (max-width: 768px) {
  .p-feature__item {
    padding-inline: 20px;
    padding-block: 20px;
  }
}
.p-feature__image img {
  -o-object-fit: contain;
  object-fit: contain;
}
.p-feature__textArea {
  width: 283px;
}
@media screen and (max-width: 768px) {
  .p-feature__textArea {
    width: 100%;
  }
}
.p-feature__heading {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-blue);
}
@media screen and (max-width: 768px) {
  .p-feature__heading {
    font-size: 18px;
  }
}
.p-feature__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .p-feature__text {
    font-size: 14px;
  }
}
.p-feature__note {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-feature__note {
    font-size: 12px;
  }
}

/***********
***********
数字で見るゲンキー
***********
***********/
.p-aboutNumber {
  margin-top: 140px;
}
@media screen and (max-width: 768px) {
  .p-aboutNumber {
    margin-top: 60px;
  }
}
.p-aboutNumber__inner {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 60px;
  box-sizing: content-box;
}
@media screen and (max-width: 768px) {
  .p-aboutNumber__inner {
    max-width: 500px;
    padding-inline: 20px;
  }
}
.p-aboutNumber .c-title {
  text-align: left;
}
.p-aboutNumber__list {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.p-aboutNumber__list--col3 .p-aboutNumber__item {
  width: calc((100% - 12px) / 3);
}
.p-aboutNumber__list--col2 .p-aboutNumber__item {
  width: calc((100% - 24px) / 3);
}
@media screen and (max-width: 480px) {
  .p-aboutNumber__list {
    flex-direction: column;
    max-width: 320px;
    margin-inline: auto;
  }
  .p-aboutNumber__list--col3 .p-aboutNumber__item,
  .p-aboutNumber__list--col2 .p-aboutNumber__item {
    width: 100%;
  }
}
.p-aboutNumber__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/***********
***********
福利厚生
***********
***********/
.p-employeeBenefits {
  margin-top: 140px;
}
.real-estate-professional .p-employeeBenefits {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-employeeBenefits {
    margin-top: 60px;
  }
  .real-estate-professional .p-employeeBenefits {
    margin-top: 40px;
  }
}
.p-employeeBenefits__inner {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 60px;
  box-sizing: content-box;
}
@media screen and (max-width: 768px) {
  .p-employeeBenefits__inner {
    max-width: 500px;
    padding-inline: 20px;
  }
}
.p-employeeBenefits .c-title {
  text-align: left;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.p-employeeBenefits .c-title:after {
  content: "";
  position: absolute;
  top: 4px;
  right: -64px;
  background: url(../img/employee_benefits_icon1.webp) no-repeat center center /
    cover;
  width: 59px;
  height: 54px;
}
.real-estate-professional .p-employeeBenefits .c-title:after {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-employeeBenefits .c-title:after {
    right: -50px;
    width: 46px;
    height: 42px;
  }
}
.p-employeeBenefits__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .p-employeeBenefits__text {
    font-size: 15px;
  }
}
.p-employeeBenefits__content {
  border-radius: 10px;
  background: var(--color-white);
  padding-block: 30px;
  padding-inline: 30px;
  margin-top: 16px;
  position: relative;
}
.p-employeeBenefits__content:after {
  content: "";
  position: absolute;
  bottom: 5px;
  right: 15px;
  background: url(../img/employee_benefits_icon2.webp) no-repeat center center /
    cover;
  width: 37px;
  height: 103px;
}
@media screen and (max-width: 768px) {
  .p-employeeBenefits__content {
    padding-inline: 20px;
  }
  .p-employeeBenefits__content:after {
    bottom: 5px;
    right: -5px;
    width: 28px;
    height: 78px;
  }
}
.p-employeeBenefits__wrap {
  max-width: 930px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  grid-auto-rows: minmax(100px, auto);
  gap: 12px;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .p-employeeBenefits__wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-employeeBenefits__column-title {
  --color-title: #fdfeff;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
  padding-block: 15px;
  padding-block: 4px;
  color: var(--color-title);
  background: var(--color-blue);
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .p-employeeBenefits__column-title {
    font-size: 18px;
  }
}
.p-employeeBenefits__list {
  display: grid;
  grid-template-rows: 1fr 1fr;
  min-height: 216px;
}
.p-employeeBenefits__item {
  background: var(--color-skyblue);
  border-radius: 5px;
  padding-inline: 36px 30px;
  padding-block: 10px;
  margin-top: 6px;
  place-content: center;
}
@media screen and (max-width: 768px) {
  .p-employeeBenefits__item {
    padding-inline: 20px;
  }
}
.p-employeeBenefits__label {
  display: inline-block;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-employeeBenefits__label {
    font-size: 18px;
  }
}
.p-employeeBenefits__note {
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-employeeBenefits__note {
    font-size: 15px;
  }
}

.p-employeeBenefits__note--large {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-left: 8px;
}
@media screen and (max-width: 768px) {
  .p-employeeBenefits__note--large {
    font-size: 16px;
    margin-left: 0;
  }
}
.p-employeeBenefits__description {
  display: inline-block;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-employeeBenefits__description {
    font-size: 14px;
  }
}
.p-employeeBenefits__subitem {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
@media screen and (max-width: 768px) {
  .p-employeeBenefits__subitem {
    font-size: 14px;
  }
}
.p-employeeBenefits__kind {
  border-radius: 10px;
  background: var(--color-white);
  padding-block: 32px;
  padding-inline: 75px;
  margin-top: 24px;
}
@media screen and (max-width: 1200px) {
  .p-employeeBenefits__kind {
    padding-inline: 30px;
  }
}
@media screen and (max-width: 768px) {
  .p-employeeBenefits__kind {
    padding-inline: 20px;
  }
}
.p-employeeBenefits__kindList--col4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.p-employeeBenefits__kindList--col3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .p-employeeBenefits__kindList--col4,
  .p-employeeBenefits__kindList--col3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-employeeBenefits__kindItem {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
  display: grid;
  place-content: center;
  min-height: 72px;
  padding: 10px;
  border-radius: 5px;
  background: var(--color-skyblue);
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-employeeBenefits__kindItem {
    font-size: 13px;
    padding: 5px;
    min-height: 60px;
  }
}
.p-employeeBenefits__kindItem--icon1:after {
  content: "";
  position: absolute;
  top: -9px;
  left: -39px;
  background: url(../img/employee_benefits_icon3.webp) no-repeat center center /
    cover;
  width: 61px;
  height: 64px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-employeeBenefits__kindItem--icon1:after {
    width: 45px;
    height: 50px;
  }
}
.p-employeeBenefits__kindItem--icon2:after {
  content: "";
  position: absolute;
  bottom: 8px;
  right: -32px;
  background: url(../img/employee_benefits_icon4.webp) no-repeat center center /
    cover;
  width: 53px;
  height: 41px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-employeeBenefits__kindItem--icon2:after {
    bottom: -15px;
    left: -35px;
    right: initial;
    width: 35px;
    height: 27px;
  }
}
.p-employeeBenefits__kindItem--icon3:after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: -20px;
  background: url(../img/employee_benefits_icon5.webp) no-repeat center center /
    cover;
  width: 40px;
  height: 45px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-employeeBenefits__kindItem--icon3:after {
    bottom: 25px;
    left: initial;
    right: -20px;
    width: 30px;
    height: 34px;
  }
}
.p-employeeBenefits__kindItem--icon4:after {
  content: "";
  position: absolute;
  bottom: -14px;
  right: -20px;
  background: url(../img/employee_benefits_icon6.webp) no-repeat center center /
    cover;
  width: 26px;
  height: 77px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-employeeBenefits__kindItem--icon4:after {
    width: 16px;
    height: 54px;
  }
}

.p-employeeBenefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-block: 32px 90px;
}
@media screen and (max-width: 1200px) {
  .p-employeeBenefits__grid {
    grid-template-columns: repeat(1, 1fr);
    max-width: 750px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-employeeBenefits__grid {
    gap: 16px;
    margin-block: 16px 30px;
  }
}
.p-employeeBenefits__grid-item {
  background: var(--color-white);
  border-radius: 10px;
  padding-block: 32px;
  padding-inline: 32px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-employeeBenefits__grid-item {
    flex-direction: column;
    gap: 16px;
  }
}
.p-employeeBenefits__grid-item-image {
  width: 150px;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 1200px) {
  .p-employeeBenefits__grid-item-image {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .p-employeeBenefits__grid-item-image {
    width: 100%;
    order: 2;
  }
}
.p-employeeBenefits__grid-item-image img {
  -o-object-fit: contain;
  object-fit: contain;
}
.p-employeeBenefits__grid-item-textArea {
  width: 287px;
}
@media screen and (max-width: 1200px) {
  .p-employeeBenefits__grid-item-textArea {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .p-employeeBenefits__grid-item-textArea {
    display: contents;
  }
}
.p-employeeBenefits__grid .c-title2 {
  font-size: 24px;
  padding-left: 35px;
}
@media screen and (max-width: 768px) {
  .p-employeeBenefits__grid .c-title2 {
    font-size: 20px;
    padding-left: 30px;
  }
}
.p-employeeBenefits__grid-item-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: 12px;
}
.p-employeeBenefits__grid-item-description p:not(:first-child) {
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .p-employeeBenefits__grid-item-description {
    font-size: 14px;
    order: 3;
    margin-top: 0;
  }
}
/***********
***********
SDGs
***********
***********/
.p-sdgs {
  margin-top: 140px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-sdgs {
    margin-top: 60px;
  }
}
.p-sdgs__inner {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 60px;
  box-sizing: content-box;
}
@media screen and (max-width: 768px) {
  .p-sdgs__inner {
    max-width: 500px;
    padding-inline: 20px;
  }
}
.p-sdgs .c-title__ja {
  text-align: left;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.p-sdgs .c-title__ja:after {
  content: "";
  position: absolute;
  top: 2px;
  right: -42px;
  background: url(../img/sdgs_icon.webp) no-repeat center center / cover;
  width: 39px;
  height: 39px;
}
@media screen and (max-width: 768px) {
  .p-sdgs .c-title:after {
    right: -30px;
    width: 30px;
    height: 30px;
  }
}
.p-sdgs__content {
  border-radius: 10px;
  background: var(--color-white);
  padding-block: 30px;
  padding-inline: 30px;
  margin-top: 16px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-sdgs__content {
    padding-inline: 20px;
  }
}
.p-sdgs__lead {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--color-blue);
  margin-top: 8px;
}
.p-sdgs__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 100px;
  position: relative;
}
.p-sdgs__text:before {
  content: "";
  position: absolute;
  top: -78px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: var(--color-black);
}
@media screen and (max-width: 768px) {
  .p-sdgs__lead {
    font-size: 16px;
    margin-top: 16px;
  }
  .p-sdgs__text {
    font-size: 14px;
    margin-top: 75px;
  }
  .p-sdgs__text:before {
    top: -62px;
    height: 50px;
  }
}
.p-sdgs__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 12px;
  margin-top: 28px;
  padding-inline: 45px;
}
@media screen and (max-width: 900px) {
  .p-sdgs__list {
    padding-inline: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-sdgs__list {
    grid-template-columns: repeat(1, 1fr);
    max-width: 400px;
    margin-inline: auto;
  }
}
.p-sdgs__itemImage img {
  width: 81%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  margin-inline: auto;
}
.p-sdgs__itemHeading {
  --color-heading: #fdfeff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-heading);
  padding-inline: 16px;
  padding-block: 5px;
  border-radius: 5px;
  min-height: 58px;
  place-content: center;
  margin-top: 20px;
}
.p-sdgs__itemHeading--number {
  font-family: var(--font-family-en);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  position: relative;
  top: 1px;
}
.p-sdgs__itemHeading--red {
  background: #e4011e;
}
.p-sdgs__itemHeading--green {
  background: #1b973a;
}
.p-sdgs__itemHeading--yellow {
  background: #f5a20b;
  padding-inline: 10px;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .p-sdgs__itemHeading {
    font-size: 16px;
    min-height: 45px;
  }
  .p-sdgs__itemHeading--number {
    font-size: 20px;
  }
}
.p-sdgs__subList {
  margin-top: 6px;
}
.p-sdgs__subItem {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-sdgs__subItem {
    font-size: 14px;
  }
}

/***********
***********
三本柱と戦略
***********
***********/
.p-strategy {
  padding-inline: 60px;
}
@media screen and (max-width: 768px) {
  .p-strategy {
    padding-inline: 20px;
  }
}
.p-strategy__inner {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 20px;
  border: 1px solid var(--color-blue);
  border-radius: 10px;
  background: var(--color-white);
  padding-block: 60px;
}
@media screen and (max-width: 768px) {
  .p-strategy__inner {
    padding-block: 30px;
  }
}
.p-strategy__content {
  max-width: 768px;
  margin-inline: auto;
  position: relative;
}
.p-strategy__content:before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: -100px;
  background: url(../img/strategy_icon1.webp) no-repeat center center / cover;
  width: 83px;
  height: 197px;
  z-index: 1;
}
.p-strategy__content:after {
  content: "";
  position: absolute;
  bottom: -12px;
  right: -118px;
  background: url(../img/strategy_icon2.webp) no-repeat center center / cover;
  width: 125px;
  height: 180px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-strategy__inner {
    max-width: 500px;
  }
  .p-strategy__content:after {
    bottom: -120px;
    right: -40px;
    width: 68px;
    height: 125px;
  }
  .p-strategy__content:before {
    bottom: -125px;
    left: -30px;
    width: 50px;
    height: 120px;
  }
}
.p-strategy__heading {
  max-width: 410px;
  margin-inline: auto;
}
.p-strategy__heading img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.p-strategy__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 14px;
}
@media screen and (max-width: 768px) {
  .p-strategy__text {
    font-size: 14px;
  }
}
.p-strategy__buttonList,
.p-strategy__textList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.p-strategy__textList {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .p-strategy__buttonList {
    gap: 10px;
    margin-top: 20px;
  }
}
.p-strategy__button {
  position: relative;
}
.p-strategy__button img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.p-strategy__button-text img {
  width: 82%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  margin-inline: auto;
}
.p-strategy__list {
  background: var(--color-skyblue);
  margin-inline: auto;
  border-radius: 10px;
  width: 90%;
  margin-top: 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-strategy__list {
    margin-top: 30px;
  }
}
.p-strategy__itemHeading {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-strategy__itemHeading {
    font-size: 20px;
  }
}
.p-strategy__itemHeading--number {
  font-family: var(--font-family-en);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.4;
  letter-spacing: 0;
  margin-right: 10px;
  color: var(--color-blue);
  position: relative;
  top: 2px;
}
@media screen and (max-width: 768px) {
  .p-strategy__itemHeading--number {
    font-size: 28px;
  }
}
.p-strategy__itemText {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-strategy__itemText {
    font-size: 14px;
  }
}
.p-strategy__item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding-block: 16px 24px;
  padding-inline: 84px;
}
@media screen and (max-width: 768px) {
  .p-strategy__item {
    padding-inline: 20px;
    padding-block: 20px 0;
  }
}
/* ▼ 初期状態は非表示 */
.p-strategy__list {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}
.p-strategy__list.is-visible {
  opacity: 1;
  visibility: visible;
}
.p-strategy__item {
  opacity: 0;
  transition: opacity 0.2s ease;
}
/* ▼ 表示するときに使うクラス */
.p-strategy__item.is-active {
  display: block;
  opacity: 1;
}
/* ▼ ボタン画像切り替え制御 */
.button__image--open {
  display: none;
  position: relative;
}
.p-strategy__button.is-active .button__image {
  display: none;
}
.p-strategy__button.is-active .button__image--open {
  display: block;
}
/* ▼ ボタン画像微調整(動き制御) */
.p-strategy__buttonList {
  height: 247px;
}
.button__image {
  height: 233px;
}
.button__image--open {
  height: 240px;
}
@media screen and (max-width: 768px) {
  .p-strategy__buttonList {
    height: 150px;
  }
  .button__image {
    height: 138px;
  }
  .button__image--open {
    height: 143px;
  }
}
@media screen and (max-width: 480px) {
  .p-strategy__buttonList {
    height: 110px;
  }
  .button__image {
    height: 100px;
  }
  .button__image--open {
    height: 103px;
  }
}

/***********
***********
求める人物像
***********
***********/
.p-idealPerson {
  margin-top: 140px;
  padding-inline: 60px;
}
@media screen and (max-width: 768px) {
  .p-idealPerson {
    padding-inline: 20px;
    margin-top: 60px;
  }
}
.p-idealPerson .c-title {
  text-align: left;
}
.p-idealPerson__inner {
  max-width: 1080px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-idealPerson__inner {
    max-width: 500px;
  }
}
.p-idealPerson__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 8px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-idealPerson__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-idealPerson__item {
  background: var(--color-white);
  border-radius: 10px;
  padding-block: 42px;
  padding-inline: 38px;
}
@media screen and (max-width: 768px) {
  .p-idealPerson__item {
    padding-block: 30px;
    padding-inline: 20px;
  }
}
.p-idealPerson__itemImage {
  width: 68%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-idealPerson__itemImage {
    width: 75%;
  }
}
.p-idealPerson__itemImage img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.p-idealPerson__itemHeading {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-blue);
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .p-idealPerson__itemHeading {
    font-size: 20px;
    margin-top: 20px;
  }
}
.p-idealPerson__itemText {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .p-idealPerson__itemText {
    font-size: 14px;
  }
}
.p-idealPerson__linkList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
  margin-top: 56px;
}
@media screen and (max-width: 768px) {
  .p-idealPerson__linkList {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 24px;
  }
}
.p-idealPerson__linkImage {
  aspect-ratio: 350/203;
  box-shadow: 0px 2px 2px 0px #33333340;
  border-radius: 10px;
  overflow: hidden;
}
.p-idealPerson__linkImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.5s;
}
.p-idealPerson__linkMore {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-black);
  display: block;
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .p-idealPerson__linkMore {
    font-size: 14px;
    margin-top: 5px;
  }
}
.p-idealPerson__linkMore .arrow-circle {
  background: var(--color-black);
  right: 0px;
}
.p-idealPerson__linkMore .arrow {
  height: 1px;
  top: 9.5px;
}
.p-idealPerson__linkMore .arrow::before,
.p-idealPerson__linkMore .arrow::after {
  height: 1px;
  top: calc(50% - 0.5px);
  transform-origin: calc(100% - 0.5px) 50%;
}
.p-idealPerson__linkMore .arrow,
.p-idealPerson__linkMore .arrow:before,
.p-idealPerson__linkMore .arrow:after {
  background: var(--color-arrow);
}
@media (any-hover: hover) {
  .p-idealPerson__linkItem:hover .p-idealPerson__linkImage img {
    transform: scale(1.05);
  }
  .p-idealPerson__linkItem:hover .p-idealPerson__linkMore {
    color: var(--color-blue);
  }
  .p-idealPerson__linkItem:hover .arrow-active {
    transform: translateX(50px);
  }
  .p-idealPerson__linkItem:hover .arrow-hidden {
    transform: translateX(0);
  }
}

/***********
***********
求める人物像
***********
***********/
.p-growthOpportunity {
  margin-top: 140px;
  padding-inline: 60px;
}
@media screen and (max-width: 768px) {
  .p-growthOpportunity {
    padding-inline: 20px;
    margin-top: 60px;
  }
}
.p-growthOpportunity .c-title {
  text-align: left;
}
.p-growthOpportunity__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .p-growthOpportunity__text {
    font-size: 14px;
  }
}
.p-growthOpportunity__inner {
  max-width: 1080px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-growthOpportunity__inner {
    max-width: 500px;
  }
}
.p-growthOpportunity__figure {
  padding-block: 42px;
  padding-inline: 52px;
  background: var(--color-white);
  border-radius: 10px;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .p-growthOpportunity__figure {
    padding-block: 10px;
    padding-inline: 10px;
  }
}
.p-growthOpportunity__figure img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .p-growthOpportunity__figure img {
    min-width: 500px;
  }
}
.p-growthOpportunity__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 16px;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .p-growthOpportunity__list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-growthOpportunity__item {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.p-growthOpportunity__image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.p-growthOpportunity__image img {
  aspect-ratio: 350/200;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-growthOpportunity__body {
  background: var(--color-white);
  border-radius: 10px;
  padding-inline: 20px;
  padding-block: 16px 60px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .p-growthOpportunity__body {
    padding-inline: 20px;
    padding-block: 16px 30px;
  }
}
.p-growthOpportunity__lead {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-blue);
  flex-grow: 1;
  place-content: center;
  min-height: 68px;
}
@media screen and (max-width: 768px) {
  .p-growthOpportunity__lead {
    font-size: 18px;
    min-height: initial;
  }
}
.p-growthOpportunity__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: 8px;
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .p-growthOpportunity__description {
    font-size: 14px;
  }
}

/***********
***********
選考フロー
***********
***********/
.p-selectionFlow {
  margin-block: 140px 70px;
  padding-inline: 60px;
}
@media screen and (max-width: 768px) {
  .p-selectionFlow {
    padding-inline: 20px;
    margin-block: 60px 30px;
  }
}
.p-selectionFlow .c-title {
  text-align: left;
}
.p-selectionFlow__inner {
  max-width: 1080px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-selectionFlow__inner {
    max-width: 550px;
  }
}
.p-selectionFlow__content {
  background: var(--color-white);
  padding-block: 20px 32px;
  padding-inline: 35px;
  border-radius: 10px;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .p-selectionFlow__content {
    padding-inline: 10px;
  }
}
.p-selectionFlow__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 0;
}
@media screen and (max-width: 1200px) {
  .p-selectionFlow__steps {
    zoom: 0.8;
  }
}
@media screen and (max-width: 1000px) {
  .p-selectionFlow__steps {
    zoom: 0.6;
  }
}
@media screen and (max-width: 768px) {
  .p-selectionFlow__steps {
    zoom: 1;
    flex-wrap: wrap;
    flex-direction: column;
  }
}
.p-selectionFlow__step {
  margin-inline: 5px;
}
.p-selectionFlow__stepName {
  background-color: var(--color-blue);
  color: #fdfeff;
  text-align: center;
  padding: 15px 30px;
  position: relative;
  min-width: 222px;
  min-height: 97px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-clip-path: polygon(
    85% 0%,
    100% 50%,
    85% 100%,
    0% 100%,
    15% 50%,
    0% 0%
  );
  clip-path: polygon(85% 0%, 100% 50%, 85% 100%, 0% 100%, 15% 50%, 0% 0%);
  margin-inline: -18px;
  margin-top: -2px;
}
.p-selectionFlow__stepName-content {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
.p-selectionFlow__stepNumber {
  display: inline-block;
  font-family: var(--font-family-en);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-blue);
  position: relative;
  left: -20px;
}
.p-selectionFlow__stepNumber--large {
  display: inline-block;
  font-family: var(--font-family-en);
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0;
  top: 2px;
  position: relative;
}
.p-selectionFlow__stepNote {
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  width: 100%;
  color: var(--color-white);
}

/* 3カラム */
.p-selectionFlow__steps--col3 .p-selectionFlow__stepName {
  min-width: 357px;
  min-height: 121px;
  margin-inline: -25px;
}
.p-selectionFlow__steps--col3 .p-selectionFlow__stepName-content {
  font-size: 24px;
}
.p-selectionFlow__steps--col3 .p-selectionFlow__stepNumber {
  font-size: 24px;
  left: -24px;
}
.p-selectionFlow__steps--col3 .p-selectionFlow__stepNumber--large {
  font-size: 40px;
}

/* 大きいサイズ */
.p-selectionFlow__content .p-selectionFlow__stepName--large {
  min-height: 156px;
}

@media screen and (max-width: 768px) {
  .p-selectionFlow__steps {
    gap: 0;
  }
  .p-selectionFlow__step,
  .p-selectionFlow__steps--col3 .p-selectionFlow__step {
    background: var(--color-blue);
    -webkit-clip-path: polygon(50% 18%, 100% 0, 100% 82%, 50% 100%, 0 82%, 0 0);
    clip-path: polygon(50% 18%, 100% 0, 100% 82%, 50% 100%, 0 82%, 0 0);
    margin-inline: 0;
    width: 100%;
    min-height: initial;
  }
  .p-selectionFlow__step:not(:first-of-type) {
    margin-top: -25px;
  }
  .p-selectionFlow__stepName,
  .p-selectionFlow__steps--col3 .p-selectionFlow__stepName,
  .p-selectionFlow__stepName--large {
    background: transparent;
    -webkit-clip-path: initial;
    clip-path: initial;
    margin-inline: initial;
    min-width: initial;
    min-height: initial;
    padding: 50px 30px 64px;
    font-size: 20px;
  }
  .p-selectionFlow__stepNumber,
  .p-selectionFlow__steps--col3 .p-selectionFlow__stepNumber {
    font-size: 20px;
    left: 24px;
    top: 42px;
    color: var(--color-white);
  }
  .p-selectionFlow__stepNumber--large,
  .p-selectionFlow__steps--col3 .p-selectionFlow__stepNumber--large {
    font-size: 32px;
  }
  .p-selectionFlow__stepNote,
  .p-selectionFlow__steps--col3 .p-selectionFlow__stepNote {
    font-size: 14px;
    bottom: 45px;
  }
}

/***********
***********
フッターロゴ余白修正
***********
***********/
.info_rec_title {
  margin: 4px 0 24px 0;
}
.info_rec_logoList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .info_rec_title {
    font-size: 24px;
  }
  .info_rec_logoList {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
}
.info_rec_logo a {
  transition: 0.5s;
}
@media (any-hover: hover) {
  .info_rec_logo a:hover {
    opacity: 0.7;
  }
}
.info_rec_logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

/***********
***********
人的資本経営への取り組み
***********
***********/
.p-initiatives__inner {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 60px;
  box-sizing: content-box;
  display: flex;
  gap: 0 22px;
}
@media screen and (max-width: 768px) {
  .p-initiatives__inner {
    max-width: 500px;
    padding-inline: 20px;
    flex-direction: column;
  }
}
.p-initiatives .c-title {
  text-align: left;
}
.p-initiatives__textArea {
  width: 518px;
}
@media screen and (max-width: 768px) {
  .p-initiatives__textArea {
    display: contents;
  }
}
.p-initiatives__image {
  width: 540px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 540/359;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .p-initiatives__image {
    width: 100%;
    margin-top: 16px;
  }
}
.p-initiatives__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-initiatives__text {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .p-initiatives__text {
    font-size: 14px;
    order: 3;
    margin-top: 16px;
  }
}
.p-initiatives__text p:not(:first-of-type) {
  margin-top: 15px;
}

/***********
***********
私たちが目指す姿とは
***********
***********/
.p-aim {
  --color-white: #fdfeff;
  margin-top: 80px;
  padding-inline: 60px;
}
@media screen and (max-width: 768px) {
  .p-aim {
    margin-top: 40px;
    padding-inline: 20px;
  }
}
.p-aim__inner {
  max-width: 1200px;
  padding-inline: 40px;
  padding-block: 64px;
  margin-inline: auto;
  background: var(--color-white);
}
@media screen and (max-width: 768px) {
  .p-aim__inner {
    max-width: 500px;
    padding-inline: 10px;
    padding-block: 32px;
  }
}
.p-aim__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  background: var(--color-blue);
  padding-inline: 46px;
  text-align: center;
  border-radius: 5px;
}
.p-aim__title span {
  display: inline-block;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .p-aim__title {
    font-size: 24px;
    padding-inline: 20px;
  }
}
.p-aim__lead {
  text-align: center;
  margin-top: 20px;
}
.p-aim__lead span {
  display: inline-block;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-aim__lead {
    margin-top: 16px;
  }
  .p-aim__lead span {
    font-size: 18px;
  }
}
.p-aim__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-aim__text {
    font-size: 14px;
    margin-top: 15px;
  }
}

/***********
***********
３つのテーマ
***********
***********/
.p-theme {
  margin-top: 140px;
  margin-bottom: 116px;
}
@media screen and (max-width: 768px) {
  .p-theme {
    margin-top: 70px;
  }
}
.p-theme .c-title {
  text-align: left;
}
.p-theme__inner {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 60px;
  box-sizing: content-box;
}
@media screen and (max-width: 768px) {
  .p-theme__inner {
    max-width: 500px;
    padding-inline: 20px;
  }
}
.p-theme__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .p-theme__text {
    font-size: 14px;
    margin-top: 10px;
  }
}
.p-theme__group {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
  margin-top: 42px;
}
.p-theme__item {
  border: 1px solid var(--color-black);
  padding: 32px 24px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}
@media screen and (max-width: 360px) {
  .p-theme__item {
    width: 85vw;
    height: 85vw;
  }
}
.p-theme__item:before {
  content: "";
  position: absolute;
  bottom: -39px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 25px;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: var(--color-blue);
  pointer-events: none;
  transition: 0.5s;
}
.p-theme__item:after {
  content: "";
  position: absolute;
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-clip-path: circle(50% at 50% 0);
  clip-path: circle(50% at 50% 0);
  background: var(--color-blue);
  z-index: -1;
  pointer-events: none;
  transition: 0.5s;
}
.p-theme__number {
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-family-en);
  font-weight: 700;
  font-size: 96px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #ededed;
  z-index: -1;
}
@media screen and (max-width: 360px) {
  .p-theme__number {
    top: 28px;
    font-size: 86px;
  }
}
.p-theme__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 42px;
}
@media screen and (max-width: 360px) {
  .p-theme__title {
    font-size: 28px;
    margin-top: 32px;
  }
}
.p-theme__description {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #fdfeff;
  text-align: center;
  margin-top: 60px;
  position: relative;
}
@media screen and (max-width: 360px) {
  .p-theme__description {
    font-size: 18px;
  }
}
.p-theme__description:after {
  content: "";
  position: absolute;
  bottom: -36px;
  left: 50%;
  width: 13px;
  height: 13px;
  border: 2px solid #fdfeff;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translate(-50%, -25%) rotate(135deg);
  transition: 0.5s;
}
.p-theme__item:nth-of-type(2):before,
.p-theme__item:nth-of-type(2):after {
  background: #4eaedc;
}
@media (any-hover: hover) {
  .p-theme__item:hover:before,
  .p-theme__item:hover:after {
    opacity: 0.7;
  }
  .p-theme__item:hover .p-theme__description:after {
    transform: translate(-50%, 0) rotate(135deg);
  }
}

/***********
***********
3つのテーマのセクション
***********
***********/
.p-theme-section {
  margin-top: 80px;
  padding-inline: 60px;
}
#growth-opportunity.p-theme-section {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .p-theme-section {
    padding-inline: 10px;
    margin-top: 50px;
  }
}

.p-theme-section .c-title {
  text-align: left;
}
.p-theme-section__inner {
  max-width: 1200px;
  padding-inline: 60px;
  padding-block: 60px;
  border-radius: 10px;
  margin-inline: auto;
  background: var(--color-white);
}
#lastly .p-theme-section__inner {
  background: transparent;
}
#growth-opportunity .p-theme-section__inner {
  background: transparent;
  padding-block: 0;
}
@media screen and (max-width: 768px) {
  .p-theme-section__inner {
    max-width: 500px;
    padding-inline: 10px;
    padding-block: 32px;
  }
}
.p-theme-section__heading {
  margin-top: 20px;
}
.p-theme-section__heading--philosophy {
  margin-top: 120px;
}
.p-theme-section__heading--ratio {
  margin-top: 120px;
}
.p-theme-section__heading--selection {
  margin-top: 80px;
}
.p-theme-section__heading--general {
  margin-top: 70px;
}
.p-theme-section__heading--system {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-theme-section__heading {
    margin-top: 36px;
  }
  .p-theme-section__heading--philosophy {
    margin-top: 36px;
  }
}
.p-theme-section__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: 8px;
}
.p-theme-section__text--lastly {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-theme-section__text {
    font-size: 14px;
  }
}
.p-theme-section__frame {
  border: 1px solid var(--color-blue);
  border-radius: 10px;
  padding: 24px;
  padding-block: 32px;
  padding-inline: 32px;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .p-theme-section__frame {
    padding-block: 24px;
    padding-inline: 15px;
    margin-top: 20px;
  }
}
.p-theme-section__frame--lastly {
  background: #fff;
}
.p-theme-section__frame-heading {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-theme-section__frame-heading {
    font-size: 20px;
  }
}
.p-theme-section__frame-content {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .p-theme-section__frame-content {
    margin-top: 16px;
  }
}
.p-theme-section__frame-content-item {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .p-theme-section__frame-content-item {
    margin-top: 16px;
  }
}
.p-theme-section__frame--challenging .p-theme-section__frame-content,
.p-theme-section__frame--challenging
  .p-theme-section__frame-content-item:first-of-type {
  margin-top: 0;
}
.p-theme-section__frame--ratioup .p-theme-section__frame-content,
.p-theme-section__frame--ratioup
  .p-theme-section__frame-content-item:first-of-type {
  margin-top: 0;
}
.p-theme-section__frame--system .p-theme-section__frame-content,
.p-theme-section__frame--system
  .p-theme-section__frame-content-item:first-of-type {
  margin-top: 0;
}

.p-theme-section__frame-content-item-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-blue);
  padding-bottom: 10px;
  border-bottom: 1px solid #d0d0d0;
}
@media screen and (max-width: 768px) {
  .p-theme-section__frame-content-item-title {
    font-size: 16px;
    padding-bottom: 5px;
  }
}
.p-theme-section__frame-content-item-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .p-theme-section__frame-content-item-text {
    font-size: 14px;
    margin-top: 5px;
  }
}
.p-theme-section__frame-text {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  padding-left: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-theme-section__frame-text {
    font-size: 16px;
    padding-left: 15px;
  }
}
.p-theme-section__frame-text:before {
  content: "";
  position: absolute;
  top: 16px;
  left: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-black);
}
@media screen and (max-width: 768px) {
  .p-theme-section__frame-text:before {
    top: 13px;
    left: 0;
  }
}
.p-theme-section__frame-text:not(:first-of-type) {
  margin-top: 25px;
}
.p-theme-section__lead {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-theme-section__lead {
    font-size: 20px;
  }
}
.p-theme-section__lead--large {
  font-size: 26px;
}
@media screen and (max-width: 768px) {
  .p-theme-section__lead--large {
    font-size: 22px;
  }
}
.p-theme-section__lead--chainstore {
  margin-top: 48px;
}
.p-theme-section__lead--philosophy {
  margin-top: 24px;
}
.p-theme-section__lead--specialist {
  margin-top: 40px;
}
.p-theme-section__lead--ratioup {
  margin-top: 32px;
}
.p-theme-section__lead--selection {
  margin-top: 24px;
}
.p-theme-section__lead--general {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-theme-section__lead--chainstore {
    margin-top: 36px;
  }
  .p-theme-section__lead--philosophy {
    margin-top: 24px;
  }
  .p-theme-section__lead--specialist {
    margin-top: 24px;
  }
  .p-theme-section__lead--ratioup {
    margin-top: 45px;
  }
  .p-theme-section__lead--selection {
    margin-top: 24px;
  }
  .p-theme-section__lead--general {
    margin-top: 24px;
  }
}
.p-theme-section__list {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
  max-width: 1000px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-theme-section__list {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }
}
.p-theme-section__list-item {
  width: 283px;
  display: flex;
  flex-direction: column;
}
.p-theme-section__list-item-icon {
  max-width: 186px;
  width: 90%;
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
  background: var(--color-skyblue);
  display: grid;
  place-content: center;
}
.p-theme-section__list-item-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-blue);
  margin-top: 10px;
  flex-grow: 1;
  place-content: center;
}
@media screen and (max-width: 768px) {
  .p-theme-section__list-item-title {
    font-size: 20px;
  }
}
.p-theme-section__list--specialist .p-theme-section__list-item-title {
  flex-grow: initial;
}
.p-theme-section__list--ratioup .p-theme-section__list-item-title {
  flex-grow: initial;
}
.p-theme-section__list-item-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: 7px;
}
@media screen and (max-width: 768px) {
  .p-theme-section__list-item-text {
    font-size: 14px;
  }
}
.p-theme-section__frame-content-item-subitem-heading {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-blue);
  position: relative;
  margin-top: 18px;
  padding-left: 5px;
}
.p-theme-section__list--selection .p-theme-section__list-item-title {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-theme-section__frame-content-item-subitem-heading {
    font-size: 14px;
  }
}
.p-theme-section__frame-content-item-subitem-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .p-theme-section__frame-content-item-subitem-text {
    font-size: 14px;
  }
}
.p-theme-section__expansion {
  background: var(--color-skyblue);
  border-radius: 10px;
  margin-top: 30px;
}
#growth-opportunity .p-theme-section__expansion {
  margin-top: 50px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #growth-opportunity .p-theme-section__expansion {
    margin-top: 16px;
  }
}
.p-theme-section__expansion-content {
  overflow-x: auto;
  padding-block: 30px;
  padding-inline: 10px;
}
#growth-opportunity .p-theme-section__expansion-content {
  padding-inline: 35px;
}
@media screen and (max-width: 768px) {
  #growth-opportunity .p-theme-section__expansion-content {
    padding-block: 24px;
    padding-inline: 10px;
  }
}
.p-theme-section__expansion-content img {
  margin-inline: auto;
  height: auto;
  min-width: 480px;
}
#growth-opportunity .p-theme-section__expansion-content img {
  min-width: 603px;
}

.p-theme-section__image-listArea {
  display: flex;
  justify-content: space-between;
  gap: 0 10px;
  background: var(--color-white);
  padding-inline: 57px 48px;
  padding-block: 40px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-theme-section__image-listArea {
    flex-direction: column;
    padding-inline: 10px;
    padding-block: 32px;
  }
}
.p-theme-section__image-listArea-image {
  width: 304px;
  margin-top: 24px;
  flex-shrink: 0;
}
.p-theme-section__image-listArea-image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .p-theme-section__image-listArea-image img {
    width: 97%;
    margin-left: 3%;
  }
}
@media screen and (max-width: 768px) {
  .p-theme-section__image-listArea-image {
    width: 100%;
    margin-top: 0;
  }
}
.p-theme-section__image-listArea-list {
  width: 619px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media screen and (max-width: 768px) {
  .p-theme-section__image-listArea-list {
    width: 100%;
  }
}
.p-theme-section__image-listArea-item-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  padding-bottom: 4px;
  border-bottom: 1px solid #d0d0d0;
}
.p-theme-section__image-listArea-item-title .number {
  font-family: var(--font-family-en);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.p-theme-section__image-listArea-item:nth-last-of-type(3)
  .p-theme-section__image-listArea-item-title {
  color: #4bc9ef;
}
.p-theme-section__image-listArea-item:nth-last-of-type(2)
  .p-theme-section__image-listArea-item-title {
  color: #2facdd;
}
.p-theme-section__image-listArea-item:nth-last-of-type(1)
  .p-theme-section__image-listArea-item-title {
  color: var(--color-blue);
}
.p-theme-section__image-listArea-item-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .p-theme-section__image-listArea-item-text {
    font-size: 14px;
  }
}

/***********
***********
アルムナイ採用について
p-alumni-recruitment-about
***********
***********/
.p-alumni-recruitment-about {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-alumni-recruitment-about {
    margin-top: 36px;
  }
}
.p-alumni-recruitment-about__inner {
  max-width: 1200px;
  padding-inline: 60px;
  margin-inline: auto;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-alumni-recruitment-about__inner {
    max-width: 500px;
    padding-inline: 20px;
    flex-direction: column;
    gap: 12px;
  }
}
.p-alumni-recruitment-about__textArea {
  width: 495px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .p-alumni-recruitment-about__textArea {
    display: contents;
  }
}
.p-alumni-recruitment-about .c-title {
  text-align: left;
}
.p-alumni-recruitment-about__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .p-alumni-recruitment-about__text {
    font-size: 14px;
    order: 3;
    margin-top: 0;
  }
}
.p-alumni-recruitment-about__image {
  width: 561px;
  aspect-ratio: 561/273;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .p-alumni-recruitment-about__image {
    width: 100%;
  }
}
.p-alumni-recruitment-about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-alumni-recruitment-about__buttonArea {
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .p-alumni-recruitment-about__buttonArea {
    margin-top: 16px;
    order: 4;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

/***********
***********
パンフレット
***********
***********/
.p-pamphlet {
  padding-inline: 20px;
  margin-top: 145px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .p-pamphlet {
    margin-top: 70px;
    margin-bottom: 30px;
  }
}
.p-pamphlet__content {
  width: 100%;
  max-width: 490px;
  aspect-ratio: 490/208;
  margin-inline: auto;
  display: grid;
  place-content: center;
  padding-inline: 15px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.p-pamphlet-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.p-pamphlet-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.5s;
}
.p-pamphlet-bg:after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--color-blue);
  opacity: 0.7;
  transition: 0.5s;
}
.p-pamphlet__heading {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-white);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
@media screen and (max-width: 768px) {
  .p-pamphlet__heading {
    font-size: 20px;
    gap: 10px;
  }
}
.p-pamphlet__heading:before {
  content: "";
  width: 19px;
  aspect-ratio: 1;
  background: url(../img/target-blank-icon.svg) no-repeat center center /
    contain;
}
@media screen and (max-width: 768px) {
  .p-pamphlet__heading:before {
    width: 16px;
  }
}
.p-pamphlet__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: 6px;
  color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .p-pamphlet__text {
    font-size: 14px;
    text-align: center;
  }
}
@media (any-hover: hover) {
  .p-pamphlet__content:hover .p-pamphlet-bg img {
    scale: 1.05;
  }
  .p-pamphlet__content:hover .p-pamphlet-bg:after {
    opacity: 0.5;
  }
}

/***********
***********
アルムナイ採用始めました
***********
***********/
.p-alumni-recruitment {
  padding-inline: 20px;
}
.p-alumni-recruitment__inner {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 56px;
  padding-block: 64px;
  border-radius: 10px;
  background: var(--color-white);
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .p-alumni-recruitment__inner {
    max-width: 500px;
    padding-block: 32px;
    padding-inline: 20px;
    flex-direction: column;
    gap: 16px;
  }
}
.p-alumni-recruitment__textArea {
  width: 520px;
}
@media screen and (max-width: 768px) {
  .p-alumni-recruitment__textArea {
    display: contents;
  }
}
.p-alumni-recruitment__heading {
  color: var(--color-blue);
}
@media screen and (max-width: 768px) {
  .p-alumni-recruitment__heading {
    text-align: center;
  }
}
.p-alumni-recruitment__heading span {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .p-alumni-recruitment__heading span {
    font-size: 24px;
  }
}
.p-alumni-recruitment__heading--accent {
  font-weight: 700;
  background: var(--color-blue);
  color: var(--color-white);
  padding-inline: 16px;
  padding-block: 0px 2px;
  margin-right: 5px;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .p-alumni-recruitment__heading--accent {
    padding-inline: 5px;
  }
}
.p-alumni-recruitment__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .p-alumni-recruitment__text {
    font-size: 14px;
    order: 3;
    margin-top: 0;
  }
}
.p-alumni-recruitment__image {
  width: 425px;
  aspect-ratio: 425/339;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 10px;
  overflow: hidden;
}
.p-alumni-recruitment__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/***********
***********
働く環境
***********
***********/
.p-working-environment {
  margin-top: 140px;
}
@media screen and (max-width: 768px) {
  .p-working-environment {
    margin-top: 70px;
  }
}
.p-working-environment .c-title {
  text-align: left;
}
.p-working-environment__inner {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 60px;
  box-sizing: content-box;
}
@media screen and (max-width: 768px) {
  .p-working-environment__inner {
    max-width: 500px;
    padding-inline: 20px;
  }
}
.p-working-environment__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 330px), 1fr));
  gap: 8px;
  margin-top: 32px;
}
.p-working-environment__item {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  background: #fff;
  padding-block: 32px;
  padding-inline: 35px;
}
@media screen and (max-width: 768px) {
  .p-working-environment__item {
    padding-inline: 20px;
    padding-block: 24px;
  }
}
.p-working-environment__itemImage {
  width: 186px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--color-skyblue);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.p-working-environment__itemImage--icon5 img {
  min-width: 103px;
}
.p-working-environment__itemHeading {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--color-blue);
  margin-top: 30px;
  place-content: center;
}
.p-working-environment__item:nth-of-type(4) .p-working-environment__itemHeading,
.p-working-environment__item:nth-of-type(5) .p-working-environment__itemHeading,
.p-working-environment__item:nth-of-type(6)
  .p-working-environment__itemHeading {
  min-height: 68px;
}
@media screen and (max-width: 768px) {
  .p-working-environment__itemHeading {
    font-size: 20px;
    margin-top: 20px;
  }
  .p-working-environment__item:nth-of-type(4)
    .p-working-environment__itemHeading,
  .p-working-environment__item:nth-of-type(5)
    .p-working-environment__itemHeading,
  .p-working-environment__item:nth-of-type(6)
    .p-working-environment__itemHeading {
    min-height: initial;
  }
}
.p-working-environment__itemText {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .p-working-environment__itemText {
    font-size: 14px;
    margin-top: 10px;
  }
}

/***********
***********
募集要項
p-recruitment-requirements-accordion
***********
***********/
.p-recruitment-requirements-accordion {
  margin-top: 140px;
}
@media screen and (max-width: 768px) {
  .p-recruitment-requirements-accordion {
    margin-bottom: 70px;
  }
}
.p-recruitment-requirements-accordion .c-title {
  text-align: left;
}
.p-p-recruitment-requirements-accordion__inner {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 60px;
  box-sizing: content-box;
}
@media screen and (max-width: 768px) {
  .p-p-recruitment-requirements-accordion__inner {
    max-width: 500px;
    padding-inline: 20px;
  }
}
.p-recruitment-requirements__content {
  padding-block: 32px;
  padding-inline: 75px;
  background: var(--color-white);
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .p-recruitment-requirements__content {
    padding-block: 20px;
    padding-inline: 20px;
  }
}
.p-recruitment-requirements-accordion__label {
  width: 100%;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  background: var(--color-skyblue);
  padding-inline: 36px;
  padding-block: 12px;
  border-radius: 5px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-recruitment-requirements-accordion__label {
    padding-inline: 15px 30px;
  }
}
.p-recruitment-requirements-accordion__label--icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
}
@media screen and (max-width: 768px) {
  .p-recruitment-requirements-accordion__label--icon {
    right: 20px;
  }
}
.p-recruitment-requirements-accordion__label--icon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 3px;
  background: var(--color-blue);
  transition: 0.3s;
}
.p-recruitment-requirements-accordion__label--icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  width: 18px;
  height: 3px;
  background: var(--color-blue);
  transition: 0.3s;
}
.p-recruitment-requirements-accordionBody {
  display: grid;
  grid-template-columns: 206px auto;
  gap: 0 14px;
}
@media screen and (max-width: 768px) {
  .p-recruitment-requirements-accordionBody {
    grid-template-columns: 1fr;
  }
}
.p-recruitment-requirements-accordion__paragraph {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  padding-inline: 32px;
  padding-block: 16px;
  border-radius: 5px;
  background: var(--color-blue);
  color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .p-recruitment-requirements-accordion__paragraph {
    padding-inline: 15px;
    padding-block: 10px;
    font-size: 14px;
  }
}
.p-recruitment-requirements-accordion__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  padding-inline: 52px;
  padding-block: 16px;
  border-radius: 5px;
  background: var(--color-skyblue);
}
@media screen and (max-width: 768px) {
  .p-recruitment-requirements-accordion__description {
    padding-inline: 15px;
    padding-block: 10px;
    font-size: 14px;
  }
}
.p-recruitment-requirements-accordionBody {
  margin-top: 12px;
}
/* アコーディオン */
[data-js-accordion-target] {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}
[data-js-accordion][open]
  .p-recruitment-requirements-accordion__label--icon:before {
  transform: translate(-50%, -50%) rotate(-180deg);
}
[data-js-accordion][open]
  .p-recruitment-requirements-accordion__label--icon:after {
  transform: translate(-50%, -50%) rotate(-270deg);
  opacity: 0;
}

/***********
***********
お問い合わせ
p-conversion
***********
***********/
.p-conversion {
  padding-inline: 20px;
  margin-top: 140px;
  margin-bottom: 85px;
}
@media screen and (max-width: 768px) {
  .p-conversion {
    margin-top: 70px;
    margin-bottom: 40px;
  }
}
.p-conversion__inner {
  max-width: 1080px;
  margin-inline: auto;
  box-sizing: content-box;
}
@media screen and (max-width: 768px) {
  .p-conversion__inner {
    max-width: 500px;
    padding-inline: 20px;
  }
}
.p-conversion .c-title {
  text-align: left;
}
.p-conversion__group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 350px), 1fr));
  gap: 27px;
  margin-top: 22px;
}
@media screen and (max-width: 768px) {
  .p-conversion__group {
    gap: 20px;
  }
}
.p-conversion__groupItem {
  aspect-ratio: 526/170;
  display: grid;
  place-content: center;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.p-conversion__groupItem:before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--color-blue);
  opacity: 0.84;
  transition: 0.5s;
}
.p-conversion__groupItem--mail:before {
  background: var(--color-red);
  opacity: 0.8;
}
.p-conversion__groupItemImage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.p-conversion__groupItemImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.5s;
}
.p-conversion__groupItemHeading {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--color-white);
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-conversion__groupItemHeading {
    font-size: 20px;
  }
}
.p-conversion__groupItem--mail .p-conversion__groupItemHeading {
  font-family: var(--font-family-en);
}
.p-conversion__groupItemText {
  font-family: var(--font-family-en);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-white);
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 10px;
}
.p-conversion__groupItem--mail .p-conversion__groupItemText {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .p-conversion__groupItemText {
    font-size: 24px;
    gap: 12px;
  }
  .p-conversion__groupItem--mail .p-conversion__groupItemText {
    font-size: 20px;
  }
}
.p-conversion__groupItem--tel .p-conversion__groupItemText:before {
  content: "";
  width: 35px;
  height: 35px;
  background: url(../img/tel-icon.svg) no-repeat center center / cover;
}
.p-conversion__groupItem--mail .p-conversion__groupItemText:before {
  content: "";
  width: 38px;
  height: 30px;
  background: url(../img/mail-icon.svg) no-repeat center center / cover;
}
@media screen and (max-width: 768px) {
  .p-conversion__groupItem--tel .p-conversion__groupItemText:before {
    width: 28px;
    height: 28px;
  }
  .p-conversion__groupItem--mail .p-conversion__groupItemText:before {
    width: 28px;
    height: 22px;
  }
}
@media (any-hover: hover) {
  .p-conversion__groupItem:hover .p-conversion__groupItemImage img {
    scale: 1.05;
  }
  .p-conversion__groupItem:hover:before {
    opacity: 0.5;
  }
}

/***********
***********
ゲンキー不動産
p-genky-real-estate
***********
***********/
.p-genky-real-estate__inner {
  display: flex;
  gap: 16px 22px;
  max-width: 1080px;
  margin-inline: auto;
  box-sizing: content-box;
  padding-inline: 60px;
}
@media screen and (max-width: 768px) {
  .p-genky-real-estate__inner {
    padding-inline: 20px;
    flex-direction: column;
  }
}
.p-genky-real-estate__textArea {
  width: 518px;
}
@media screen and (max-width: 768px) {
  .p-genky-real-estate__textArea {
    display: contents;
  }
}
.p-genky-real-estate .c-title {
  text-align: left;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-genky-real-estate .c-title__ja {
  position: relative;
}
.p-genky-real-estate .c-title__ja::after {
  content: "";
  position: absolute;
  top: -12px;
  right: -58px;
  width: 46px;
  height: 56px;
  background: url(../img/genky-real-estate-icon.webp) no-repeat center center /
    cover;
}
@media screen and (max-width: 768px) {
  .p-genky-real-estate .c-title__ja::after {
    top: -10px;
    right: -48px;
    width: 36px;
    height: 43px;
  }
}
.p-genky-real-estate__lead {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .p-genky-real-estate__lead {
    font-size: 20px;
    margin-top: 0;
  }
}
.p-genky-real-estate__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: 6px;
}
@media screen and (max-width: 768px) {
  .p-genky-real-estate__text {
    font-size: 14px;
    margin-top: 0;
  }
}
.p-genky-real-estate__image {
  width: 540px;
  aspect-ratio: 540/360;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .p-genky-real-estate__image {
    width: 100%;
  }
}
.p-genky-real-estate__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/***********
***********
従業員の声
p-voice
***********
***********/
.p-voice {
  margin-top: 82px;
  padding-inline: 60px;
}
@media screen and (max-width: 900px) {
  .p-voice {
    padding-inline: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-voice {
    margin-top: 40px;
  }
}
.p-voice__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 60px;
  background: var(--color-white);
  border-radius: 10px;
  padding-block: 54px 64px;
}
@media screen and (max-width: 900px) {
  .p-voice__inner {
    padding-inline: 15px;
    padding-block: 36px;
  }
}
@media screen and (max-width: 768px) {
  .p-voice__inner {
    padding-inline: 15px;
  }
}
.p-voice .c-title {
  text-align: left;
}
.p-voice__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 26px;
}
@media screen and (max-width: 768px) {
  .p-voice__list {
    gap: 0;
    margin-top: 0;
  }
}
.p-voice__item {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 0 32px;
}
.p-voice__item:nth-of-type(even) {
  flex-direction: row;
}
@media screen and (max-width: 768px) {
  .p-voice__item {
    flex-direction: column;
  }
  .p-voice__item:nth-of-type(even) {
    flex-direction: column;
  }
}
.p-voice__item-textArea {
  width: 537px;
}
@media screen and (max-width: 768px) {
  .p-voice__item-textArea {
    display: contents;
  }
}
.p-voice__item-heading {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--color-blue);
  color: var(--color-white);
  padding-inline: 15px;
  padding-block: 4px;
  border-radius: 5px;
  margin-top: 10px;
}
.p-voice__item:nth-of-type(even) .p-voice__item-heading {
  font-size: 28px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .p-voice__item-heading {
    font-size: 20px;
    width: 100%;
    text-align: center;
    margin-top: 25px;
  }
  .p-voice__item:nth-of-type(even) .p-voice__item-heading {
    font-size: 20px;
    width: 100%;
    text-align: center;
    margin-top: 25px;
  }
}
.p-voice__item-text {
  margin-top: 24px;
}
.p-voice__item-text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
.p-voice__item-text p:not(:first-of-type) {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .p-voice__item-text {
    order: 4;
    margin-top: 16px;
  }
  .p-voice__item-text p {
    font-size: 14px;
  }
  .p-voice__item-text p:not(:first-of-type) {
    margin-top: 12px;
  }
}
.p-voice__item-imageArea {
  width: 508px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 508/376;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-voice__item-imageArea {
    width: 100%;
    margin-top: 16px;
  }
}
.p-voice__item-imageArea img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-voice__item-imageCaption {
  position: absolute;
  bottom: 20px;
  right: 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-white);
}
.p-voice__item:nth-of-type(even) .p-voice__item-imageCaption {
  right: initial;
  left: 25px;
}
@media screen and (max-width: 768px) {
  .p-voice__item-imageCaption {
    bottom: 7px;
    right: 17px;
    font-size: 11px;
  }
  .p-voice__item:nth-of-type(even) .p-voice__item-imageCaption {
    bottom: 7px;
    right: 17px;
    left: initial;
  }
}
.p-voice__interview {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
  gap: 16px 30px;
  padding-block: 38px;
  padding-inline: 32px;
  border: 1px solid var(--color-blue);
  border-radius: 10px;
  background: var(--color-skyblue);
}
@media screen and (max-width: 900px) {
  .p-voice__interview {
    padding-inline: 15px;
    padding-block: 24px;
  }
}
@media screen and (max-width: 768px) {
  .p-voice__interview {
    margin-top: 30px;
    flex-direction: column;
  }
}
.p-voice__interview-textArea {
  width: 530px;
  margin-top: min(3.3333333333333335vw, 48px);
}
@media screen and (max-width: 768px) {
  .p-voice__interview-textArea {
    width: 100%;
    margin-top: 0;
  }
}
.p-voice__interview-heading {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-voice__interview-heading:after {
  content: "";
  position: absolute;
  right: -40px;
  top: -27px;
  width: 31px;
  height: 67px;
  background: url(../img/interview_icon2.webp) no-repeat center center / cover;
}
@media screen and (max-width: 768px) {
  .p-voice__interview-heading:after {
    right: -32px;
    top: -18px;
    width: 24px;
    height: 52px;
  }
}
.p-voice__interview-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .p-voice__interview-text {
    font-size: 14px;
    margin-top: 12px;
  }
}
.p-voice__interview-movie {
  width: 428px;
  aspect-ratio: 428/241;
  border-radius: 10px;
  overflow: hidden;
}
.p-voice__interview-movie iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/***********
***********
出店地域
p-store-opening-area
***********
***********/
.p-store-opening-area {
  margin-top: 80px;
  border-radius: 10px;
  background: var(--color-white);
}
@media screen and (max-width: 768px) {
  .p-store-opening-area {
    margin-top: 40px;
  }
}
.p-store-opening-area__inner {
  max-width: 1080px;
  padding-inline: 60px;
  padding-block: 60px;
  margin-inline: auto;
  box-sizing: content-box;
}
@media screen and (max-width: 768px) {
  .p-store-opening-area__inner {
    padding-inline: 20px;
    padding-block: 30px;
  }
}
.p-store-opening-area__image {
  border: 1px solid var(--color-blue);
  border-radius: 10px;
  display: grid;
  place-content: center;
  margin-top: 28px;
  padding-block: 50px;
}
@media screen and (max-width: 768px) {
  .p-store-opening-area__image {
    margin-top: 16px;
    padding-block: 40px;
  }
}
.p-store-opening-area__image img {
  aspect-ratio: 571/492;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .p-store-opening-area__image img {
    aspect-ratio: 326/274;
  }
}
/***********
***********
微調整
***********
***********/
input[type="submit"] {
  cursor: pointer;
  transition: 0.4s;
}
input[type="submit"]:hover {
  opacity: 0.7;
}
.info_page_tags {
	display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 110px), 1fr));
    gap: 10px;
}
@media screen and (max-width: 600px) {
    .info_page_tags {
        width: 75%;
    }
}
.info_tag {
	width: initial;
}
@media screen and (max-width: 600px) {
    .info_page_tags img {
        left: -14%;
    }
}
@media (any-hover: hover) {
	.info_page_ta_text a {
    	transition: 0.5s;
    }
    .info_page_ta_text a:hover {
    	opacity: 1;
        color: var(--color-blue);
    }
}
.info_page_ta_cat {
	width: initial;
	min-width: 116px;
    padding-inline: 10px;
    flex-shrink: 0;
}
@media screen and (max-width: 900px) {
	.info_page_ta_cat {
		min-width: 90px;
	}
}
@media screen and (max-width: 600px) {
	.info_page_ta_cat {
		min-width: 70px;
	}
}

.mw_wp_form_confirm .privacy_check {
  display: none;
}