@charset "UTF-8";
:root {
  --isv-primary-color: #0071BC;
  --isv-secondary-color: #f3f1ea;
  --isv-accent-color: #69bb00;
  --isv-lightgray-color: #f3f3f3;
  --isv-darkgray-color: #cccccc;
  --isv-white-color: #ffffff;
  --isv-black-color: #222222;
  --isv-orange-color: DarkOrange;
  --isv-base-color: #fff;
  --isv-brown-color: #504434;
  --isv-third-color: #ebe4db;
}

:root {
  --isv-main-font-family: "Roboto", sans-serif;
  --isv-heading-font-family: "Montserrat", sans-serif;
  --isv-base-font-size: 16px;
  --isv-line-height: 1.6;
}

:root {
  --isv-heading-h5-size: calc(var(--isv-base-font-size) * 1.0);
  --isv-heading-h4-size: calc(var(--isv-heading-h5-size) * 1.0);
  --isv-heading-h3-size: calc(var(--isv-heading-h4-size) * 1.25);
  --isv-heading-h2-size: calc(var(--isv-heading-h3-size) * 1.25);
  --isv-heading-h1-size: calc(var(--isv-heading-h2-size) * 1.25);
}

:root {
  --isv-container-width: 1800px;
  --isv-container-width-top: calc(100% - 4vw);
  --isv-main-width: 100%;
  --isv-main-width-sp: 98%;
  --isv-side-width: 200px;
  --isv-document-width: 800px;
  --isv-headmenu-height: 110px;
  --isv-headmenu-height-sp: 80px;
  --isv-fixedmenu-hight-sp: 120px;
  --isv-pageheader-height: 300px;
  --isv-pageheader-height-sp: 50vh;
  --isv-maincontent-height: 80vh;
  --isv-mv-height-pc: 800px;
  --isv-mv-height-sp: 80vh;
  --isv-grid-gap: 20px;
  --isv-padding-horizontal: 5px;
  --isv-padding-vertical: 5px;
}

:root {
  --isv-transition-duration: 0.3s;
  --isv-button-hover-scale: 1.1;
}

:root {
  --isv-main-bg-color: var(--isv-base-color);
  --isv-spnavi-bg-color: var(--isv-lightgray-color);
  --isv-text-color: var(--isv-brown-color);
  --isv-hover-color: var(--isv-text-color);
  --isv-link-color: var(--isv-orange-color);
  --isv-footer-bg-color: var(--isv-black-color);
  --isv-footer-text-color: var(--isv-white-color);
}

@font-face {
  font-family: "Kosugi";
  src: url("../assets/fonts/Kosugi-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "KosugiMaru";
  src: url("../assets/fonts/KosugiMaru-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "MPLUSRounded";
  src: url("../assets/fonts/MPLUSRounded1c-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}
.u-color-primary {
  color: var(--isv-primary-color) !important;
}

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

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

h1, h2, h3, h4 {
  text-wrap: inherit;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

html {
  scroll-padding-top: calc(var(--isv-headmenu-height) + 20px); /* 固定ヘッダの高さ分 */
  scroll-behavior: smooth;
}

body {
  background-color: var(--isv-main-bg-color);
  line-height: var(--isv-line-height);
}

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

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

a {
  transition: all 0.3s;
  color: var(--isv-text-color);
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  font-weight: bold;
}
a:visited {
  color: var(--isv-text-color);
}
a:hover {
  color: var(--isv-hover-color) !important;
  -webkit-text-decoration-color: var(--isv-hover-color);
          text-decoration-color: var(--isv-hover-color);
}

.imgLink {
  display: block;
  transition: all 0.3s;
}
.imgLink:hover {
  transform: translateY(3px);
}

.grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0;
  transition: opacity 0.3s;
}

.has-contact-form .grecaptcha-badge {
  visibility: visible !important;
  opacity: 1;
}

.l-container {
  max-width: var(--isv-container-width);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 600px) {
  .l-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.home .l-container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.home .l-footer .l-container {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
@media screen and (max-width: 600px) {
  .home .l-footer .l-container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
.home .l-container--full {
  width: 100%;
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 600px) {
  .home .l-container--full {
    padding-left: 15px;
    padding-right: 15px;
  }
}

h2.is-style-heading-page {
  font-size: 2rem;
  font-weight: bold;
  color: var(--isv-primary-color);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}
h2.is-style-heading-page:first-child {
  margin-top: 0;
}

h3.is-style-heading-page {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--isv-primary-color);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4rem;
  margin-bottom: 2rem;
  padding-left: 1rem;
  border-left: 1rem solid var(--isv-primary-color);
}

h4.is-style-heading-page {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--isv-primary-color);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--isv-primary-color);
}

h5.is-style-heading-page {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--isv-primary-color);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--isv-primary-color);
}

.isv-button {
  border: solid 1px var(--isv-primary-color);
  background-color: var(--isv-primary-color);
  color: #fff !important;
  border-radius: 5px;
  display: block;
  text-decoration: none;
  padding: 0.5rem 1rem 0.5rem;
  line-height: 1;
}

.isv-img-center {
  display: block;
  margin-inline: auto;
}

.isv-img-link {
  display: block;
  transition: hover 0.3s;
}
.isv-img-link:hover {
  opacity: 0.8;
}

.img_center {
  display: block;
  margin-inline: auto;
}

[data-btns=rl-rr] .l-header__body {
  grid-template-columns: 5% 80% auto var(--ark-drawerW) var(--ark-searchW);
}

.l-header__body {
  width: 100%;
  margin: 0 !important;
  max-width: 100%;
}

.l-header__right {
  display: flex;
  align-items: center;
}
.l-header__right .header-menu-container {
  margin-right: 1rem;
}
.l-header__right .header-menu-list {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.l-header__right .header-menu-list li {
  position: relative;
}
.l-header__right .header-menu-list li a {
  font-size: 0.8rem;
  color: var(--isv-text-color);
  text-decoration: none;
  display: block;
}
.l-header__right .header-menu-list li a:hover {
  opacity: 0.7;
}
.l-header__right .header-menu-list li .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--isv-white-color);
  min-width: 180px;
  padding: 0.5rem 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 100;
  margin: 0;
  list-style: none;
}
.l-header__right .header-menu-list li .sub-menu li {
  width: 100%;
}
.l-header__right .header-menu-list li .sub-menu li a {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  white-space: nowrap;
}
.l-header__right .header-menu-list li:hover > .sub-menu {
  display: block;
}
.l-header__right .l-header__btns {
  display: flex;
  gap: 10px;
  margin-left: 20px;
}
.l-header__right .l-header__btns .isv-button {
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
  border-radius: 4px;
  white-space: nowrap;
  transition: all 0.3s;
}
.l-header__right .l-header__btns .isv-button.-partner {
  background-color: var(--isv-brown-color);
  border-color: var(--isv-brown-color);
}
.l-header__right .l-header__btns .isv-button.-contact {
  background-color: var(--isv-primary-color);
  border-color: var(--isv-primary-color);
}
.l-header__right .l-header__btns .isv-button:hover {
  color: #fff !important;
  transform: translateY(2px);
}

.isv-header_tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
}
.isv-header_tel img {
  height: 90%;
  width: auto;
}

.l-header__bottom {
  background-color: var(--isv-secondary-color);
}

.l-header__bottomInner .c-gnav {
  width: 100%;
  justify-content: space-between;
  color: var(--isv-text-color);
}
.l-header__bottomInner .c-gnav .sub-menu {
  background-color: var(--isv-brown-color);
}
.l-header__bottomInner .c-gnav .sub-menu li {
  width: auto;
}
.l-header__bottomInner .c-gnav .c-gnav__li {
  width: 100%;
  position: relative;
}
.l-header__bottomInner .c-gnav .c-gnav__li::after {
  position: absolute;
  top: 25%;
  right: 0;
  content: "|";
  color: var(--isv-brown-color);
}
.l-header__bottomInner .c-gnav .c-gnav__li:first-child::before {
  position: absolute;
  top: 25%;
  left: 0;
  content: "|";
  color: var(--isv-brown-color);
}

@media screen and (max-width: 1000px) {
  .l-header__right {
    display: none;
  }
  .l-headerUnder, #gnav {
    display: none;
  }
}
.l-footer {
  background-color: var(--isv-lightgray-color);
  border-top: 1px solid var(--isv-lightgray-color);
  color: var(--isv-text-color);
}
.l-footer .l-footer__inner {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.l-footer .l-container {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 600px) {
  .l-footer .l-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.isv-footer-nav,
.isv-footer-links,
.isv-footer-info {
  padding: 60px 0;
  border-bottom: 1px solid var(--isv-lightgray-color);
}
@media screen and (max-width: 600px) {
  .isv-footer-nav,
.isv-footer-links,
.isv-footer-info {
    padding: 40px 0;
  }
}

.isv-footer-nav__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  .isv-footer-nav__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .isv-footer-nav__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}
.isv-footer-nav__title {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 12px;
  padding-bottom: 6px;
  color: var(--isv-black-color);
  border-bottom: 1px solid var(--isv-black-color);
}
.isv-footer-nav__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.isv-footer-nav__menu li {
  margin-bottom: 6px;
}
.isv-footer-nav__menu li:last-child {
  margin-bottom: 0;
}
.isv-footer-nav__menu li a {
  font-size: 0.85rem;
  color: var(--isv-black-color);
  text-decoration: none;
  transition: color 0.3s;
  line-height: 1.35;
}
.isv-footer-nav__menu li a:hover {
  opacity: 0.7;
}

.isv-footer-links {
  padding: 30px 0;
}
@media screen and (max-width: 600px) {
  .isv-footer-links {
    padding: 20px 0;
  }
}
.isv-footer-links__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .isv-footer-links__grid {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
}
.isv-footer-links__social {
  display: flex;
  gap: 20px;
}
.isv-footer-links .isv-social-icon {
  font-size: 1.5rem;
  color: var(--isv-text-color);
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
  line-height: 0;
}
.isv-footer-links .isv-social-icon:hover {
  color: var(--isv-primary-color);
  transform: translateY(-3px);
}
.isv-footer-links .isv-social-icon img {
  display: block;
  width: 28px;
  height: 28px;
}
.isv-footer-links__btn .isv-button {
  padding: 0.8rem 2rem;
  font-size: 0.9rem;
}
.isv-footer-links__btn .isv-button.-partner {
  background-color: var(--isv-brown-color);
  border-color: var(--isv-brown-color);
}
@media screen and (max-width: 600px) {
  .isv-footer-links__btn .isv-button {
    width: 100%;
    text-align: center;
  }
}

.isv-footer-info {
  border-bottom: none;
}
.isv-footer-info__grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 600px) {
  .isv-footer-info__grid {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
  }
}
.isv-footer-info__left {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media screen and (max-width: 600px) {
  .isv-footer-info__left {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}
.isv-footer-info .isv-footer-logo .custom-logo-link {
  display: inline-block;
}
.isv-footer-info .isv-footer-logo .custom-logo {
  max-width: 240px;
  height: auto;
}
.isv-footer-info .isv-footer-logo img {
  max-width: 240px;
  height: auto;
}
.isv-footer-info .isv-footer-address {
  font-size: 0.9rem;
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .isv-footer-info .isv-footer-address {
    text-align: center;
  }
}
.isv-footer-info .isv-footer-address p {
  margin-bottom: 5px;
}
.isv-footer-info .isv-footer-address p:last-child {
  margin-bottom: 0;
}
.isv-footer-info .isv-footer-address__tel {
  font-weight: inherit;
  font-size: inherit;
  margin-top: 8px !important;
  color: var(--isv-text-color);
}
@media screen and (max-width: 600px) {
  .isv-footer-info .isv-footer-info__right {
    width: 100%;
  }
}
.isv-footer-info .isv-footer-info__right .c-copyright {
  font-size: 0.8rem;
  color: #999;
  margin: 0;
}
@media screen and (max-width: 600px) {
  .isv-footer-info .isv-footer-info__right .c-copyright {
    text-align: center;
  }
}

.c-gnav__li.-current, .c-gnav__li.focus, .c-gnav__li:hover {
  color: var(--ark-color--link);
}

.p-drawer {
  background-color: var(--isv-lightgray-color);
  color: var(--isv-black-color);
}

[data-drawer-move=fade][data-drawer=opened] .l-header__drawerBtn {
  color: var(--isv-black-color);
}

.isv-fixed-menu {
  position: fixed;
  top: auto;
  bottom: 50%;
  right: 0;
  left: auto;
  width: 3rem;
}

@media screen and (max-width: 1000px) {
  .isv-fixed-menu {
    position: fixed;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 4rem;
    background-color: var(--isv-lightgray-color);
  }
  footer {
    margin-bottom: 4rem;
  }
}
.w-fix-sidebar {
  margin-top: 0px !important;
}

.category-works .p-postList__meta {
  display: none;
}

.category-works .c-postMetas {
  display: none;
}

.c-pageTitle__main {
  font-size: 2rem;
}

.p-topArea__body {
  color: var(--isv-brown-color);
  position: absolute;
  top: 40%;
  left: 0;
  font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
}

#top_title_area {
  padding: 1rem 0;
}
#top_title_area .c-filterLayer__img {
  width: auto !important;
  position: relative !important;
  margin: 1rem auto !important;
  height: auto !important;
}
@media screen and (max-width: 1000px) {
  #top_title_area .c-filterLayer__img {
    height: 30vh !important;
  }
}

.p-toc-page__content p {
  margin-bottom: 1rem;
}

.is-style-table-info table tr td:first-child {
  color: var(--isv-primary-color);
  vertical-align: middle;
}

.l-container--full {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

.p-top {
  overflow-x: hidden;
}
.p-top section {
  padding: 100px 0;
}
@media screen and (max-width: 600px) {
  .p-top section {
    padding: 60px 0;
  }
}
.p-top-section-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 60px;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--isv-black-color);
}
@media screen and (max-width: 600px) {
  .p-top-section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}

.p-top-hero {
  display: flex;
  height: 66vh;
  min-height: 500px;
  padding: 0 !important;
  overflow: hidden;
  background-color: #333;
}
@media screen and (max-width: 600px) {
  .p-top-hero {
    flex-direction: column;
    height: auto;
  }
}
.p-top-hero__left {
  width: 50%;
  height: 100%;
  display: flex;
}
@media screen and (max-width: 600px) {
  .p-top-hero__left {
    width: 100%;
    height: 30vh;
  }
}
.p-top-hero__right {
  width: 50%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
@media screen and (max-width: 600px) {
  .p-top-hero__right {
    width: 100%;
    height: 50vh;
  }
}
.p-top-hero__right .p-top-hero__block .p-top-hero__content {
  left: clamp(10px, 3vw, 28px);
  right: clamp(10px, 3vw, 28px);
  bottom: clamp(12px, 2.5vw, 28px);
  width: auto;
  max-width: none;
  box-sizing: border-box;
}
.p-top-hero__right .p-top-hero__block .p-top-hero__en {
  white-space: nowrap;
  max-width: 100%;
  line-height: 1.15;
  font-size: clamp(0.62rem, 3.15vw, 1.65rem);
}
.p-top-hero__right .p-top-hero__block .p-top-hero__jp {
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
  line-height: 1.35;
  letter-spacing: 0.12em;
}
.p-top-hero__block {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
}
.p-top-hero__block .p-top-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-top-hero__block .p-top-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 113, 188, 0.5) 0%, rgba(0, 113, 188, 0) 25%);
  transition: opacity 0.5s;
  z-index: 2;
}
.p-top-hero__block:hover .p-top-hero__bg {
  transform: scale(1.1);
}
.p-top-hero__block:hover .p-top-hero__bg::after {
  opacity: 0.7;
}
.p-top-hero__block.-pride {
  background-color: transparent;
}
.p-top-hero__block.-pride .p-top-hero__bg {
  background-image: url("../images/hero01.webp");
}
.p-top-hero__block.-pride.is-animated .p-top-hero__en {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.p-top-hero__block.-pride.is-animated .p-top-hero__jp {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.p-top-hero__block.-challenge {
  background-color: transparent;
}
.p-top-hero__block.-challenge .p-top-hero__bg {
  background-image: url("../images/hero02.webp");
}
.p-top-hero__block.-challenge.is-animated .p-top-hero__en {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.p-top-hero__block.-challenge.is-animated .p-top-hero__jp {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.p-top-hero__block.-effort {
  background-color: transparent;
}
.p-top-hero__block.-effort .p-top-hero__bg {
  background-image: url("../images/hero03.webp");
}
.p-top-hero__block.-effort.is-animated .p-top-hero__en {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.p-top-hero__block.-effort.is-animated .p-top-hero__jp {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.p-top-hero__block.-dialogue {
  background-color: transparent;
}
.p-top-hero__block.-dialogue .p-top-hero__bg {
  background-image: url("../images/hero04.webp");
}
.p-top-hero__block.-dialogue.is-animated .p-top-hero__en {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.p-top-hero__block.-dialogue.is-animated .p-top-hero__jp {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
.p-top-hero__block.-wellbeing {
  background-color: transparent;
}
.p-top-hero__block.-wellbeing .p-top-hero__bg {
  background-image: url("../images/hero05.webp");
}
.p-top-hero__block.-wellbeing.is-animated .p-top-hero__en {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.p-top-hero__block.-wellbeing.is-animated .p-top-hero__jp {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}
.p-top-hero__content {
  position: absolute;
  left: 40px;
  bottom: 30px;
  display: flex;
  align-items: baseline;
  gap: 10px 20px;
  color: #fff;
  z-index: 10;
  pointer-events: none;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1300px) {
  .p-top-hero__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
@media screen and (max-width: 600px) {
  .p-top-hero__content {
    left: 20px;
    bottom: 20px;
    gap: 5px;
  }
}
.p-top-hero__en {
  display: block;
  white-space: nowrap;
  font-family: var(--isv-heading-font-family);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: bold;
  font-style: italic;
  letter-spacing: 0.05em;
  line-height: 1;
  opacity: 0;
  transform: translateY(20px);
}
.is-animated .p-top-hero__en {
  -webkit-animation: isvFadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: isvFadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.p-top-hero__left .p-top-hero__en {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
}
@media screen and (max-width: 600px) {
  .p-top-hero__left .p-top-hero__en {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 600px) {
  .p-top-hero__en {
    font-size: 1.6rem;
  }
}
.p-top-hero__jp {
  display: block;
  white-space: nowrap;
  font-size: clamp(0.9rem, 1.5vw, 1.4rem);
  font-weight: bold;
  font-style: italic;
  letter-spacing: 0.2em;
  opacity: 0;
  transform: translateY(15px);
}
.is-animated .p-top-hero__jp {
  -webkit-animation: isvFadeInUp 0.8s 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: isvFadeInUp 0.8s 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.p-top-hero__left .p-top-hero__jp {
  font-size: clamp(1.2rem, 2.5vw, 2.2rem);
}
@media screen and (max-width: 600px) {
  .p-top-hero__left .p-top-hero__jp {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 600px) {
  .p-top-hero__jp {
    font-size: 0.85rem;
    margin-top: 0;
  }
}

.p-top-news-blog {
  background-color: var(--isv-white-color);
}
.p-top-news-blog__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media screen and (max-width: 1000px) {
  .p-top-news-blog__grid {
    gap: 40px;
  }
}
@media screen and (max-width: 600px) {
  .p-top-news-blog__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.p-top-news-blog__news, .p-top-news-blog__blog {
  width: 100%;
}

.p-top-news-item__link {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.p-top-news-item__link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.p-top-news-item__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.p-top-news-item__date {
  font-family: var(--isv-heading-font-family);
  font-weight: bold;
  color: #888;
  font-size: 1.1rem;
}
.p-top-news-item__category {
  font-size: 0.75rem;
  font-weight: bold;
  color: #fff;
  background-color: var(--isv-primary-color);
  padding: 3px 12px;
  border-radius: 4px;
  line-height: 1.2;
}
.p-top-news-item__title {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .p-top-news-item__title {
    font-size: 1.2rem;
  }
}

.p-top-news-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
@media screen and (max-width: 600px) {
  .p-top-news-banners {
    grid-template-columns: 1fr;
  }
}
.p-top-news-banners__item a {
  display: block;
  overflow: hidden;
  border-radius: 8px;
}
.p-top-news-banners__item a img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.5s;
  vertical-align: bottom;
}
.p-top-news-banners__item a:hover img {
  transform: scale(1.05);
}

.p-top-blog-list {
  list-style: none;
  padding: 0;
}
.p-top-blog-list__item {
  border-bottom: 1px solid #eee;
}
.p-top-blog-list__item:last-child {
  border-bottom: none;
}
.p-top-blog-list__link {
  display: flex;
  align-items: baseline;
  gap: 25px;
  padding: 20px 0;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s, transform 0.3s;
}
.p-top-blog-list__link:hover {
  color: var(--isv-primary-color);
  transform: translateX(10px);
}
.p-top-blog-list__date {
  font-family: var(--isv-heading-font-family);
  font-size: 1rem;
  color: #888;
  flex-shrink: 0;
}
.p-top-blog-list__title {
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 600px) {
  .p-top-blog-list__link {
    flex-direction: column;
    gap: 5px;
    padding: 15px 0;
  }
  .p-top-blog-list__title {
    font-size: 1rem;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}

.p-top-business {
  background-color: #f8f9fa;
}
.p-top-business__flex {
  display: flex;
  gap: 80px;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .p-top-business__flex {
    gap: 40px;
  }
}
@media screen and (max-width: 600px) {
  .p-top-business__flex {
    flex-direction: column;
    gap: 40px;
  }
}
.p-top-business__left {
  width: 50%;
}
@media screen and (max-width: 600px) {
  .p-top-business__left {
    width: 100%;
  }
}
.p-top-business__image-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px 10px;
}
@media screen and (max-width: 600px) {
  .p-top-business__image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-top-business__image-item {
  text-align: left;
  will-change: transform, opacity;
  transition: transform 0.4s ease;
}
.p-top-business__image-item:hover {
  transform: translateY(-5px);
}
.p-top-business__image-item.js-scroll-anim {
  opacity: 0;
  transform: translateY(60px) scale(0.85);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.p-top-business__image-item.js-scroll-anim.is-animated {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.p-top-business__image-item:hover.is-animated {
  transform: translateY(-8px);
}
.p-top-business__image-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.p-top-business__image-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.p-top-business__image-item:hover .p-top-business__image-wrap img {
  transform: scale(1.1);
}
.p-top-business__image-info {
  display: flex;
  align-items: baseline;
  gap: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
  transition: border-color 0.3s;
}
.p-top-business__image-item:hover .p-top-business__image-info {
  border-bottom-color: var(--isv-primary-color);
}
.p-top-business__image-index {
  font-family: var(--isv-heading-font-family);
  font-size: 0.75rem;
  font-weight: bold;
  color: var(--isv-primary-color);
  opacity: 0.7;
}
.p-top-business__image-label {
  display: block;
  font-size: 0.85rem;
  font-weight: bold;
  color: var(--isv-black-color);
  letter-spacing: 0.05em;
}
.p-top-business__right {
  width: 50%;
}
@media screen and (max-width: 600px) {
  .p-top-business__right {
    width: 100%;
  }
}
.p-top-business__h3-wrap {
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 20px;
}
.p-top-business__h3-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--isv-primary-color);
}
.p-top-business__h3 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--isv-black-color);
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .p-top-business__h3 {
    font-size: 2rem;
  }
}
.p-top-business__summary {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .p-top-business__summary {
    font-size: 1rem;
    margin-bottom: 40px;
  }
}
.p-top-business__content-stack {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-bottom: 70px;
}
@media screen and (max-width: 600px) {
  .p-top-business__content-stack {
    gap: 40px;
  }
}
.p-top-business__sub {
  border-left: 2px solid #ddd;
  padding-left: 30px;
  transition: border-color 0.3s;
}
.p-top-business__sub:hover {
  border-left-color: var(--isv-primary-color);
}
.p-top-business__h4 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--isv-black-color);
}
.p-top-business__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
}
.p-top-business__btn {
  margin-top: 20px;
}
.p-top-business__more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 50px;
  border: 1px solid var(--isv-black-color);
  color: var(--isv-black-color) !important;
  text-decoration: none;
  font-family: var(--isv-heading-font-family);
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  transition: border-color 0.3s ease, color 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.p-top-business__more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--isv-primary-color);
  transition: left 0.3s ease;
  z-index: -1;
}
.p-top-business__more-btn:hover {
  border-color: var(--isv-primary-color);
  color: #fff !important;
}
.p-top-business__more-btn:hover::before {
  left: 0;
}
.p-top-business__more-btn:hover .p-top-business__more-btn-arrow {
  transform: translateX(5px);
}
.p-top-business__more-btn-arrow {
  font-size: 1.1rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.p-top-technology {
  background-color: var(--isv-primary-color);
  padding: 120px 0;
  overflow: hidden;
  color: #fff;
}
@media screen and (max-width: 600px) {
  .p-top-technology {
    padding: 80px 0;
  }
}
.p-top-technology__header {
  margin-bottom: 60px;
  text-align: center;
}
.p-top-technology__h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.p-top-technology__h2 .en {
  font-family: var(--isv-heading-font-family);
  font-size: clamp(3rem, 8vw, 4.8rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1;
  opacity: 0.2;
  color: #fff;
}
.p-top-technology__h2 .jp {
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.3em;
  margin-top: -20px;
}
@media screen and (max-width: 600px) {
  .p-top-technology__h2 .jp {
    margin-top: -10px;
    font-size: 1rem;
  }
}
.p-top-technology__carousel {
  margin-bottom: 80px;
  position: relative;
}
.p-top-technology__carousel::before, .p-top-technology__carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 15vw;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.p-top-technology__carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--isv-primary-color), transparent);
}
.p-top-technology__carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--isv-primary-color), transparent);
}
.p-top-technology__carousel-track {
  display: flex;
  width: 3400px;
  -webkit-animation: technology-loop 40s linear infinite;
          animation: technology-loop 40s linear infinite;
  gap: 20px;
}
.p-top-technology__carousel-track:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.p-top-technology__carousel-item {
  width: 320px;
  flex-shrink: 0;
  aspect-ratio: 16/10;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.p-top-technology__carousel-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-technology__footer {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.p-top-technology__summary {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2.2;
  margin-bottom: 50px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .p-top-technology__summary {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
  }
}
.p-top-technology__btn {
  display: flex;
  justify-content: center;
}
.p-top-technology__more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 50px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-family: var(--isv-heading-font-family);
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.p-top-technology__more-btn span {
  position: relative;
  z-index: 2;
  color: #fff;
  transition: color 0.3s ease;
}
.p-top-technology__more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: all 0.3s ease;
  z-index: 1;
}
.p-top-technology__more-btn:hover span {
  color: var(--isv-primary-color) !important;
}
.p-top-technology__more-btn:hover .p-top-technology__more-btn-arrow {
  transform: translateX(5px);
}
.p-top-technology__more-btn:hover::before {
  left: 0;
}
.p-top-technology__more-btn-arrow {
  font-size: 1.1rem;
  display: inline-block;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
  color: #fff;
}

@-webkit-keyframes technology-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1700px);
  }
}

@keyframes technology-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1700px);
  }
}
.p-top-links {
  padding: 0 !important;
}
.p-top-links__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media screen and (max-width: 600px) {
  .p-top-links__grid {
    grid-template-columns: 1fr;
  }
}
.p-top-links__item {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .p-top-links__item {
    height: 350px;
  }
}
.p-top-links__item__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}
.p-top-links__item__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  transition: background-color 0.5s;
}
.p-top-links__item.-company .p-top-links__item__bg {
  background-image: url("../images/hero03.webp");
}
.p-top-links__item.-recruit .p-top-links__item__bg {
  background-image: url("../images/rec_new2--fv_bg__pc.webp");
}
.p-top-links__item:hover .p-top-links__item__bg {
  transform: scale(1.1);
}
.p-top-links__item:hover .p-top-links__item__bg::after {
  background-color: rgba(0, 113, 188, 0.6);
}
.p-top-links__item__content {
  position: relative;
  z-index: 10;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-top-links__item__content .en {
  font-family: var(--isv-heading-font-family);
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 600px) {
  .p-top-links__item__content .en {
    font-size: 2.5rem;
  }
}
.p-top-links__item__content .jp {
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 600px) {
  .p-top-links__item__content .jp {
    font-size: 1rem;
  }
}

.p-top-company-recruit {
  padding: 120px 0;
  background-color: #f8f9fb;
}
@media screen and (max-width: 1000px) {
  .p-top-company-recruit {
    padding: 100px 0;
  }
}
@media screen and (max-width: 600px) {
  .p-top-company-recruit {
    padding: 80px 0;
  }
}
.p-top-company-recruit__flex {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
@media screen and (max-width: 1000px) {
  .p-top-company-recruit__flex {
    gap: 50px;
  }
}
@media screen and (max-width: 600px) {
  .p-top-company-recruit__flex {
    flex-direction: column;
  }
}
.p-top-company-recruit__left {
  flex: 0 0 auto;
  width: 500px;
  height: 850px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 32px;
  align-items: flex-start;
  padding: 20px;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .p-top-company-recruit__left {
    width: 360px;
    height: 600px;
    gap: 20px;
  }
}
@media screen and (max-width: 600px) {
  .p-top-company-recruit__left {
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.p-top-company-recruit__motto {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 800;
  color: var(--isv-black-color);
  letter-spacing: 0.1em;
  line-height: 1;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 600px) {
  .p-top-company-recruit__motto {
    writing-mode: horizontal-tb;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
  }
}
.p-top-company-recruit__motto-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(-20px);
  -webkit-animation: mottoCharIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
          animation: mottoCharIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
@media screen and (max-width: 600px) {
  .p-top-company-recruit__motto-char {
    transform: translateX(-10px);
  }
}
.p-top-company-recruit__motto-char.is-highlight {
  color: var(--isv-primary-color);
}
.p-top-company-recruit__motto.is-animated .p-top-company-recruit__motto-char {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.p-top-company-recruit__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.p-top-company-recruit__h3 {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 30px;
  border-bottom: 2px solid #e0e0e0;
  position: relative;
}
.p-top-company-recruit__h3::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 80px;
  height: 2px;
  background-color: var(--isv-primary-color);
}
.p-top-company-recruit__h3 .en {
  font-family: var(--isv-heading-font-family);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--isv-black-color);
  letter-spacing: 0.08em;
  line-height: 1;
}
.p-top-company-recruit__h3 .jp {
  font-size: 0.85rem;
  font-weight: bold;
  color: #999;
  letter-spacing: 0.15em;
}
.p-top-company-recruit__img-wrap {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.p-top-company-recruit__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.p-top-company-recruit__img-wrap:hover img {
  transform: scale(1.03);
}
.p-top-company-recruit__btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.p-top-company-recruit__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border: 1px solid var(--isv-black-color);
  color: var(--isv-black-color) !important;
  font-weight: bold;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.p-top-company-recruit__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--isv-primary-color);
  transition: left 0.3s ease;
  z-index: -1;
}
.p-top-company-recruit__btn:hover {
  border-color: var(--isv-primary-color);
  color: #fff !important;
}
.p-top-company-recruit__btn:hover::before {
  left: 0;
}
.p-top-company-recruit__btn:hover .arrow {
  transform: translateX(4px);
}
.p-top-company-recruit__btn.-outline {
  background-color: transparent;
}
.p-top-company-recruit__btn .arrow {
  transition: transform 0.3s ease;
  font-size: 1rem;
}
.p-top-company-recruit__recruit-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-top-company-recruit__recruit-item {
  padding: 28px 30px;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 600px) {
  .p-top-company-recruit__recruit-item {
    padding: 24px 20px;
  }
}
.p-top-company-recruit__h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--isv-primary-color);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.p-top-company-recruit__recruit-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}
.p-top-company-recruit__recruit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 1px solid var(--isv-black-color);
  color: var(--isv-black-color) !important;
  font-size: 0.9rem;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
}
.p-top-company-recruit__recruit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--isv-primary-color);
  transition: left 0.3s ease;
  z-index: -1;
}
.p-top-company-recruit__recruit-btn:hover {
  border-color: var(--isv-primary-color);
  color: #fff !important;
}
.p-top-company-recruit__recruit-btn:hover::before {
  left: 0;
}
.p-top-company-recruit__recruit-btn:hover .arrow {
  transform: translateX(4px);
}
.p-top-company-recruit__recruit-btn .arrow {
  transition: transform 0.3s ease;
}

@-webkit-keyframes mottoCharIn {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes mottoCharIn {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.p-top-instagram {
  background-color: var(--isv-white-color);
}
.p-top-instagram__embed {
  display: flex;
  justify-content: center;
}
.p-top-instagram__embed #sb_instagram {
  margin-left: auto;
  margin-right: auto;
}
.p-top-instagram__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}
@media screen and (max-width: 1000px) {
  .p-top-instagram__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .p-top-instagram__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.p-top-instagram__item {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background-color: #f0f0f0;
  aspect-ratio: 1/1;
}
.p-top-instagram__item:hover .p-top-instagram__img img {
  transform: scale(1.1);
}
.p-top-instagram__item:hover .p-top-instagram__overlay {
  opacity: 1;
}
.p-top-instagram__img {
  width: 100%;
  height: 100%;
  position: relative;
}
.p-top-instagram__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-top-instagram__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 113, 188, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}
.p-top-instagram__overlay .icon-instagram {
  width: 40px;
  height: 40px;
  background-color: #fff;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.8 2h8.4C19.4 2 22 4.6 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8C4.6 22 2 19.4 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2m-.2 2A3.6 3.6 0 0 0 4 7.6v8.8A3.6 3.6 0 0 0 7.6 20h8.8a3.6 3.6 0 0 0 3.6-3.6V7.6A3.6 3.6 0 0 0 16.4 4H7.6m4.4 3.5c2.5 0 4.5 2 4.5 4.5s-2 4.5-4.5 4.5-4.5-2-4.5-4.5 2-4.5 4.5-4.5m0 2c-1.4 0-2.5 1.1-2.5 2.5s1.1 2.5 2.5 2.5 2.5-1.1 2.5-2.5-1.1-2.5-2.5-2.5m4.3-3c.5 0 .9.4.9.9s-.4.9-.9.9-.9-.4-.9-.9.4-.9.9-.9z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.8 2h8.4C19.4 2 22 4.6 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8C4.6 22 2 19.4 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2m-.2 2A3.6 3.6 0 0 0 4 7.6v8.8A3.6 3.6 0 0 0 7.6 20h8.8a3.6 3.6 0 0 0 3.6-3.6V7.6A3.6 3.6 0 0 0 16.4 4H7.6m4.4 3.5c2.5 0 4.5 2 4.5 4.5s-2 4.5-4.5 4.5-4.5-2-4.5-4.5 2-4.5 4.5-4.5m0 2c-1.4 0-2.5 1.1-2.5 2.5s1.1 2.5 2.5 2.5 2.5-1.1 2.5-2.5-1.1-2.5-2.5-2.5m4.3-3c.5 0 .9.4.9.9s-.4.9-.9.9-.9-.4-.9-.9.4-.9.9-.9z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.c-btn {
  display: inline-block;
  background-color: var(--isv-primary-color);
  color: #fff;
  padding: 15px 40px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: all 0.3s;
  border: 2px solid var(--isv-primary-color);
}
.c-btn:hover {
  background-color: transparent;
  color: var(--isv-primary-color);
}

@-webkit-keyframes isvFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes isvFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-scroll-anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-scroll-anim.is-animated {
  opacity: 1;
  transform: translateY(0);
}
.js-scroll-anim.p-top-hero__block {
  opacity: 1;
  transform: none;
  transition: none;
}

.c-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.c-section-header .jp {
  font-size: 0.9rem;
}
@media screen and (max-width: 600px) {
  .c-section-header {
    flex-direction: column;
    gap: 1rem;
  }
}

.p-top-business .c-section-header {
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

/* リンク全体の配置を整える */
.c-section-header__link {
  display: inline-flex;
  align-items: center; /* 文字とアイコンの縦中心を揃える */
  text-decoration: none;
}

/* 文字の右側に矢印アイコンを作る */
.c-section-header__link::after {
  content: "";
  display: inline-block;
  width: 6px; /* アイコンのサイズ */
  height: 6px; /* アイコンのサイズ */
  border-top: 2px solid currentColor; /* リンクの文字色と同じ色になる */
  border-right: 2px solid currentColor;
  transform: rotate(45deg); /* 傾けて「＞」にする */
  margin-left: 8px; /* 文字との間の余白 */
  position: relative;
  top: -1px; /* 微調整 */
}

.wpcf7 {
  padding: 2rem;
  background-color: #fff;
}

.isv-contactform {
  width: 80%;
  margin-inline: auto;
}
.isv-contactform h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--isv-primary-color);
}
@media screen and (max-width: 1000px) {
  .isv-contactform {
    width: 95%;
  }
}
.isv-contactform input[type=text], .isv-contactform input[type=tel], .isv-contactform input[type=email], .isv-contactform textarea {
  width: 100%;
  background-color: #fffafa;
}
.isv-contactform dl {
  margin-bottom: 1rem;
  border-top: solid 15px #eee;
  padding: 1rem 0;
}
.isv-contactform dt {
  font-weight: bold;
}
.isv-contactform dt p {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.isv-contactform dt span {
  color: red;
  line-height: 1;
  padding: 10px 5px 5px;
  display: inline-block;
}
.isv-contactform dd div.flex-row p {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: baseline;
}
.isv-contactform dd input {
  margin-bottom: 1rem;
}
.isv-contactform .wpcf7-acceptance {
  display: inline-block;
  margin-inline: auto;
  width: 100%;
  text-align: center;
}
.isv-contactform input[type=submit] {
  margin: 5rem auto;
  display: block;
  border: solid 1px var(--isv-primary-color);
  background-color: var(--isv-primary-color);
  color: #fff;
  padding-inline: 2rem;
  transition: all 0.3s;
  border-radius: 5px;
}
.isv-contactform input[type=submit]:hover {
  background-color: transparent;
  color: var(--isv-primary-color);
}

.page-recruit_mid, .page-recruit_2nd, .page-inquiry {
  /* ==========================================================================
  Contact Form 7 フォームエリア全体のリセット＆最適化
  ========================================================================== */
  /* 既存のフォームエリア（dl）をFlexbox化 */
  /* 共通のpタグ余白リセット（CF7が自動生成するpの対策） */
  /* ==========================================================================
  ラベル（dt）と入力エリア（dd）のスタイリング
  ========================================================================== */
  /* 必須マークの装飾 */
  /* ==========================================================================
  入力項目（インプット・テキストエリア）
  ========================================================================== */
  /* フォーカス時のアニメーション */
  /* テキストエリアの高さ微調整 */
  /* ==========================================================================
  チェックボックス（参加希望）のカスタマイズ
  ========================================================================== */
  /* ==========================================================================
  下部：同意チェック ＆ 送信ボタン
  ========================================================================== */
  /* 同意チェックボックス周り */
  /* 送信ボタン */
  /* CF7固有のローディングスピナー位置微調整 */
  /* ==========================================================================
  レスポンシブ対応（スマホ表示時に縦並びへ）
  ========================================================================== */
}
.page-recruit_mid .wpcf7, .page-recruit_2nd .wpcf7, .page-inquiry .wpcf7 {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.page-recruit_mid .recruit_new2__formArea, .page-recruit_2nd .recruit_new2__formArea, .page-inquiry .recruit_new2__formArea {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 30px 0;
  border-top: 1px solid #e2e8f0;
}
.page-recruit_mid .recruit_new2__formArea p,
.page-recruit_mid .recruit_new2__formArea dt p,
.page-recruit_mid .recruit_new2__formArea dd p, .page-recruit_2nd .recruit_new2__formArea p,
.page-recruit_2nd .recruit_new2__formArea dt p,
.page-recruit_2nd .recruit_new2__formArea dd p, .page-inquiry .recruit_new2__formArea p,
.page-inquiry .recruit_new2__formArea dt p,
.page-inquiry .recruit_new2__formArea dd p {
  margin: 0;
  padding: 0;
}
.page-recruit_mid .recruit_new2__formArea dt, .page-recruit_2nd .recruit_new2__formArea dt, .page-inquiry .recruit_new2__formArea dt {
  flex: 0 0 240px; /* 左側ラベルの幅 */
  padding: 20px;
  background-color: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.page-recruit_mid .recruit_new2__formArea dt p, .page-recruit_2nd .recruit_new2__formArea dt p, .page-inquiry .recruit_new2__formArea dt p {
  font-weight: 700;
  color: #1e293b;
  font-size: 15px;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.page-recruit_mid .recruit_new2__formArea dt p span, .page-recruit_2nd .recruit_new2__formArea dt p span, .page-inquiry .recruit_new2__formArea dt p span {
  background-color: #ef4444;
  color: #ffffff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: normal;
  margin-left: auto;
}
.page-recruit_mid .recruit_new2__formArea dd, .page-recruit_2nd .recruit_new2__formArea dd, .page-inquiry .recruit_new2__formArea dd {
  flex: 1;
  min-width: 300px;
  margin: 0;
  padding: 15px 20px;
  border-bottom: 1px solid #e2e8f0;
  box-sizing: border-box;
  background-color: #ffffff;
}
.page-recruit_mid .wpcf7-form-control-wrap, .page-recruit_2nd .wpcf7-form-control-wrap, .page-inquiry .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.page-recruit_mid .wpcf7-text,
.page-recruit_mid .wpcf7-textarea, .page-recruit_2nd .wpcf7-text,
.page-recruit_2nd .wpcf7-textarea, .page-inquiry .wpcf7-text,
.page-inquiry .wpcf7-textarea {
  width: 100% !important;
  max-width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 15px;
  color: #334155;
  background-color: #ffffff;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.page-recruit_mid .wpcf7-text:focus,
.page-recruit_mid .wpcf7-textarea:focus, .page-recruit_2nd .wpcf7-text:focus,
.page-recruit_2nd .wpcf7-textarea:focus, .page-inquiry .wpcf7-text:focus,
.page-inquiry .wpcf7-textarea:focus {
  outline: none;
  border-color: #005bac; /* 企業カラーのブルー */
  box-shadow: 0 0 0 4px rgba(0, 91, 172, 0.12);
}
.page-recruit_mid .wpcf7-textarea, .page-recruit_2nd .wpcf7-textarea, .page-inquiry .wpcf7-textarea {
  height: 120px !important;
  resize: vertical;
}
.page-recruit_mid .wpcf7-checkbox, .page-recruit_2nd .wpcf7-checkbox, .page-inquiry .wpcf7-checkbox {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 5px;
}
.page-recruit_mid .wpcf7-list-item, .page-recruit_2nd .wpcf7-list-item, .page-inquiry .wpcf7-list-item {
  margin: 0 !important;
}
.page-recruit_mid .wpcf7-list-item label, .page-recruit_2nd .wpcf7-list-item label, .page-inquiry .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
  color: #334155;
}
.page-recruit_mid .wpcf7-list-item input[type=checkbox], .page-recruit_2nd .wpcf7-list-item input[type=checkbox], .page-inquiry .wpcf7-list-item input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  cursor: pointer;
}
.page-recruit_mid .wpcf7-acceptance, .page-recruit_2nd .wpcf7-acceptance, .page-inquiry .wpcf7-acceptance {
  display: block;
  text-align: center;
  margin: 30px 0 20px;
}
.page-recruit_mid .wpcf7-acceptance label, .page-recruit_2nd .wpcf7-acceptance label, .page-inquiry .wpcf7-acceptance label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #475569;
}
.page-recruit_mid .wpcf7-acceptance input[type=checkbox], .page-recruit_2nd .wpcf7-acceptance input[type=checkbox], .page-inquiry .wpcf7-acceptance input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.page-recruit_mid .wpcf7-acceptance a, .page-recruit_2nd .wpcf7-acceptance a, .page-inquiry .wpcf7-acceptance a {
  color: #005bac;
  text-decoration: underline;
}
.page-recruit_mid .wpcf7-acceptance a:hover, .page-recruit_2nd .wpcf7-acceptance a:hover, .page-inquiry .wpcf7-acceptance a:hover {
  text-decoration: none;
}
.page-recruit_mid .wpcf7-submit, .page-recruit_2nd .wpcf7-submit, .page-inquiry .wpcf7-submit {
  display: block !important;
  width: 280px !important;
  margin: 0 auto !important;
  padding: 16px 0 !important;
  font-size: 16px !important;
  font-weight: bold !important;
  color: #ffffff !important;
  background-color: #005bac !important; /* ボタン色 */
  border: none !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  box-shadow: 0 4px 12px rgba(0, 91, 172, 0.2);
  transition: background-color 0.2s, transform 0.1s, box-shadow 0.2s;
}
.page-recruit_mid .wpcf7-submit:hover, .page-recruit_2nd .wpcf7-submit:hover, .page-inquiry .wpcf7-submit:hover {
  background-color: #004480 !important;
}
.page-recruit_mid .wpcf7-submit:active, .page-recruit_2nd .wpcf7-submit:active, .page-inquiry .wpcf7-submit:active {
  transform: scale(0.98);
  box-shadow: 0 2px 6px rgba(0, 91, 172, 0.2);
}
.page-recruit_mid .wpcf7 .wpcf7-spinner, .page-recruit_2nd .wpcf7 .wpcf7-spinner, .page-inquiry .wpcf7 .wpcf7-spinner {
  display: block;
  margin: 10px auto 0;
}
@media screen and (max-width: 767px) {
  .page-recruit_mid .wpcf7, .page-recruit_2nd .wpcf7, .page-inquiry .wpcf7 {
    padding: 10px;
  }
  .page-recruit_mid .recruit_new2__formArea dt, .page-recruit_2nd .recruit_new2__formArea dt, .page-inquiry .recruit_new2__formArea dt {
    flex: 0 0 100%;
    padding: 12px 15px;
    background-color: #edf2f7; /* スマホ時は見出し感を強める */
  }
  .page-recruit_mid .recruit_new2__formArea dd, .page-recruit_2nd .recruit_new2__formArea dd, .page-inquiry .recruit_new2__formArea dd {
    flex: 0 0 100%;
    padding: 15px;
  }
  .page-recruit_mid .wpcf7-checkbox, .page-recruit_2nd .wpcf7-checkbox, .page-inquiry .wpcf7-checkbox {
    flex-direction: column;
    gap: 12px;
  }
  .page-recruit_mid .wpcf7-submit, .page-recruit_2nd .wpcf7-submit, .page-inquiry .wpcf7-submit {
    width: 100% !important;
    max-width: 320px;
  }
}

.recruit_new2 {
  background-color: #010711;
  color: #fff;
  font-family: var(--isv-main-font-family);
}
.recruit_new2 .wrapper_content {
  margin-top: 0;
}

.recruit_new2--h2 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .recruit_new2--h2 {
    font-size: 1.8rem;
  }
}

.recruit_new2--h2__sub {
  text-align: center;
  font-size: 1.2rem;
  font-family: var(--isv-heading-font-family);
  font-weight: 800;
  color: #00c6e2 !important;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
}

.recruit_new2--mainarea {
  display: block;
  margin-inline: auto;
  max-width: 1100px;
  width: 100%;
  padding-inline: 20px;
}

.recruit_new2_tag {
  color: #00c6e2;
  border: solid 1px #00c6e2;
  border-radius: 5px;
  background-color: rgba(0, 198, 226, 0.3137254902);
  padding: 0.5rem;
  font-size: 0.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1rem;
}

.recruit_new2 a:hover {
  color: #00c6e2 !important;
}

@media screen and (max-width: 600px) {
  .recruit_new2--h2 span {
    display: block;
  }
  .recruit_new2--mainarea {
    max-width: 100%;
  }
}
.recruit_new2--header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
}

.recruit_new2--header-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.recruit_new2--header-logo-logo {
  color: #00c6e2;
  border: solid 1px #00c6e2;
  padding: 0.5rem 1rem;
  font-size: 1.5rem;
}

.recruit_new2--header-logo-name {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0rem;
}
.recruit_new2--header-logo-name span:first-child {
  font-size: 1.75rem;
  line-height: 1.25;
  font-weight: bold;
}
.recruit_new2--header-logo-name span:last-child {
  font-size: 0.8rem;
}

.recruit_new2--header-info a {
  display: block;
  text-decoration: none;
  background-color: #00c6e2;
  color: #fff;
  padding: 0.5rem 1rem;
  border: solid 1px #00c6e2;
  border-radius: 5px;
  transition: all 0.3s;
}
.recruit_new2--header-info a:hover {
  background-color: transparent;
  color: #00c6e2;
}

.recruit_new2__movie iframe {
  aspect-ratio: 16/9 !important;
}

@media screen and (max-width: 600px) {
  .recruit_new2--header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
#recruit_new2--fv {
  background-image: url("../images/rec_new2--fv_bg__pc.webp");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  height: 650px;
  overflow: hidden;
  position: relative;
  text-align: center;
}
#recruit_new2--fv::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1, 7, 17, 0.9) 0%, rgba(1, 7, 17, 0) 50%);
  z-index: 1;
}

.recruit_new2--fv-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
  padding-top: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.recruit_new2--fv-content-copy01 {
  color: #00c6e2;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.2;
}

.recruit_new2--fv-content-copy02 {
  color: #fff;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.2;
}

.recruit_new2--fv-content-copy03 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 2rem;
  letter-spacing: 0.1em;
}

.recruit_new2--fv-content-copy01,
.recruit_new2--fv-content-copy02,
.recruit_new2--fv-content-copy03 {
  opacity: 0;
  transform: translateY(20px);
  -webkit-animation: fv-copy-fadein 1s ease forwards;
          animation: fv-copy-fadein 1s ease forwards;
}

.recruit_new2--fv-content-copy01 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.recruit_new2--fv-content-copy02 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.recruit_new2--fv-content-copy03 {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

@-webkit-keyframes fv-copy-fadein {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fv-copy-fadein {
  to {
    opacity: 1;
    transform: none;
  }
}
.recruit_new2__movie {
  position: relative;
  max-width: 800px;
  width: 100%;
  display: block;
  margin: auto;
  margin-top: -100px;
  z-index: 50;
  padding-bottom: 100px;
}

@media screen and (max-width: 600px) {
  #recruit_new2--fv {
    height: 50vh;
  }
  .recruit_new2--fv-content-copy01 {
    font-size: 7.5vw;
  }
  .recruit_new2--fv-content-copy02 {
    font-size: 6.5vw;
  }
  .recruit_new2--fv-content-copy03 {
    font-size: 4vw;
  }
  .recruit_new2__movie {
    max-width: 95%;
  }
}
#recruit_new2--urgent {
  background-image: url("../images/rec_new2--bg02.webp");
  background-repeat: repeat-y;
  background-position: center;
  background-size: cover;
}

.recruit_new2_urgent__3box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin: 4rem auto;
}

.recruit_new2_urgent__3box--child {
  color: #fff;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: transform 0.3s, border-color 0.3s;
}
.recruit_new2_urgent__3box--child:hover {
  transform: translateY(-5px);
  border-color: #00c6e2;
}

.recruit_new2_urgent__3box-title {
  text-align: center;
  font-weight: bold;
  margin-block: 1.5rem 1rem;
  font-size: 1.3rem;
  color: #00c6e2;
}

.recruit_new2_urgent__about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 0.5rem;
}

.recruit_new2_urgent__about--info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
}
.recruit_new2_urgent__about--info h2 {
  margin-bottom: 0;
}
.recruit_new2_urgent__about--info .recruit_new2--h2__sub {
  margin-bottom: 1rem;
}
.recruit_new2_urgent__about--info p {
  color: #fff;
}

@media screen and (max-width: 600px) {
  .recruit_new2_urgent__3box {
    grid-template-columns: 1fr;
  }
  .recruit_new2_urgent__about {
    grid-template-columns: 1fr;
  }
}
#recruit_new2--mywork {
  padding-block: 4rem 2rem;
}

.recruit_new2--mywork__box {
  margin: 3rem auto;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr 1.5fr;
  border: 1px solid rgba(0, 198, 226, 0.3);
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 15px;
  padding: 3rem;
  max-width: 1000px;
  width: 100%;
  align-items: flex-start;
  transition: box-shadow 0.3s;
}
.recruit_new2--mywork__box:hover {
  box-shadow: 0 10px 40px rgba(0, 198, 226, 0.1);
}

.recruit_new2--mywork__box1 img {
  width: 100%;
}

.recruit_new2--mywork__box1 dl {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 0.5rem;
}

.recruit_new2--mywork__box1 dt {
  color: #00c6e2;
  font-weight: bold;
}

.recruit_new2--mywork__box1 dd {
  color: #fff;
}

.recruit_new2--mywork__box2 {
  color: #fff;
}

.recruit_new2--mywork__box2 h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.recruit_new2--mywork__box2 a {
  display: block;
  background-color: #00c6e2;
  border: solid 1px #00c6e2;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
  padding: 0.5rem;
  margin-top: 1rem;
}
.recruit_new2--mywork__box2 a:hover {
  background-color: transparent;
  color: #00c6e2;
}

@media screen and (max-width: 600px) {
  .recruit_new2--mywork__box {
    grid-template-columns: 1fr;
    max-width: 90%;
    padding: 2rem 1rem;
  }
}
.recruit_new2__instagram--box {
  color: #fff;
  display: grid;
  margin: 2rem auto;
  max-width: 1000px;
  width: 100%;
  background: linear-gradient(45deg, #e80028 0%, #be00a5 100%);
  grid-template-columns: 1fr 2fr;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.recruit_new2__instagram--title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.recruit_new2__instagram--boxChild01 {
  padding: 1rem 0;
}

.recruit_new2__instagram--boxChild02 a {
  display: block;
  margin-top: 2rem;
  text-decoration: none;
  text-align: center;
  padding: 1rem;
  background-color: #fff;
  border: solid 1px #fff;
  border-radius: 5px;
  color: #000;
  transition: all 0.3s;
}
.recruit_new2__instagram--boxChild02 a:hover {
  background-color: transparent;
  color: #fff !important;
}

@media screen and (max-width: 600px) {
  .recruit_new2__instagram--box {
    grid-template-columns: 1fr;
  }
  .recruit_new2__instagram--title {
    text-align: center;
  }
}
#recruit_new2--ICT {
  margin: 8rem auto 2rem;
}
#recruit_new2--ICT .recruit_new2--ICT__intro {
  margin: 2rem auto;
  text-align: left;
}
#recruit_new2--ICT .recruit_new2--ICT__intro img {
  width: 100%;
  display: block;
  margin-bottom: 2rem;
}
#recruit_new2--ICT .recruit_new2--ICT__intro h2 {
  text-align: left;
  margin-block: 0.5rem 1rem;
}
#recruit_new2--ICT .recruit_new2--ICT__intro p {
  color: #fff;
}

.recruit_new2--ICT__merit {
  margin: 6rem auto 2rem;
}

.recruit_new2--ICT__merit--box {
  margin: 2rem auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.recruit_new2--ICT__merit--boxChild {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(133, 145, 154, 0.2);
  border-radius: 12px;
  padding: 2.5rem;
  transition: border-color 0.3s, transform 0.3s;
}
.recruit_new2--ICT__merit--boxChild:hover {
  border-color: #00c6e2;
  transform: translateY(-5px);
}
.recruit_new2--ICT__merit--boxChild h3 {
  margin: 1.5rem auto;
  color: #00c6e2;
  font-weight: 800;
  font-size: 1.3rem;
  text-align: center;
  letter-spacing: 0.05em;
}
.recruit_new2--ICT__merit--boxChild p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 0.95rem;
}

@media screen and (max-width: 600px) {
  .recruit_new2--ICT__intro {
    padding-inline: 1rem;
  }
  .recruit_new2--ICT__merit--box {
    grid-template-columns: 1fr;
    padding-inline: 1rem;
  }
}
#recruit_new2--company {
  margin: 8rem auto 2rem;
  background-color: #00111a;
  border-top: solid 1px #00c6e2;
  border-bottom: solid 1px #00c6e2;
  padding: 4rem 1rem;
}
#recruit_new2--company .recruit_new2--mainarea {
  max-width: 1000px;
}

.recruit_new2_company__about {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  margin: 2rem auto;
  align-items: center;
}

.recruit_new2_company__about--info {
  text-align: left;
}
.recruit_new2_company__about--info h2 {
  text-align: left;
  margin-block: 0.5rem;
}
.recruit_new2_company__about--info p {
  text-align: left !important;
}

.recruit_new2_company__about--text {
  color: #fff;
}
.recruit_new2_company__about--text p {
  margin-bottom: 1rem;
}

.recruit_new2_company__feature {
  margin: 4rem auto 2rem;
}

.recruit_new2_company__box {
  margin: 2rem auto 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.recruit_new2_company__box--boxChild {
  border: solid 1px #85919a;
  padding: 2rem;
}
.recruit_new2_company__box--boxChild p {
  color: #fff;
}

.recruit_new2_company__feature-title {
  text-align: center;
  font-weight: bold;
  margin-block: 1rem;
  font-size: 1.25rem;
}

@media screen and (max-width: 600px) {
  .recruit_new2_company__about {
    grid-template-columns: 1fr;
  }
  .recruit_new2_company__box {
    grid-template-columns: 1fr;
  }
}
.recruit_new2--form__intro {
  margin: 6rem auto 4rem;
}
.recruit_new2--form__intro p {
  margin: 2rem auto;
  color: #fff;
  text-align: center;
}

.recruit_new2__form--type {
  margin: 4rem auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.recruit_new2__form--type_box {
  background-color: #00111a;
  border: solid 1px #00c6e2;
  border-radius: 5px;
  padding: 2rem;
}
.recruit_new2__form--type_box .recruit_new2_tag {
  text-align: center;
  margin: auto;
}
.recruit_new2__form--type_box h3 {
  color: #fff;
  margin-block: 1rem;
  text-align: center;
}
.recruit_new2__form--type_box dl {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 0.5rem;
  margin: 2rem auto;
}
.recruit_new2__form--type_box dt {
  color: #00c6e2;
}
.recruit_new2__form--type_box dd {
  color: #fff;
}
.recruit_new2__form--type_box p {
  margin: 1rem auto;
  color: #fff;
}

.recruit_new2__formBox h3 {
  color: #fff;
  text-align: center;
  margin: 3rem auto 1rem;
}
.recruit_new2__formBox dl {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 2rem 1rem;
  margin-bottom: 2rem;
}
.recruit_new2__formBox dt {
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.recruit_new2__formBox dt span {
  margin-left: 1rem;
  color: #00c6e2;
  display: inline-block;
  border: solid 1px #00c6e2;
  border-radius: 5px;
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
  text-align: center;
  line-height: 1;
}
.recruit_new2__formBox dd {
  color: #fff;
}
.recruit_new2__formBox input[type=text],
.recruit_new2__formBox input[type=email],
.recruit_new2__formBox input[type=tel],
.recruit_new2__formBox select,
.recruit_new2__formBox textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(133, 145, 154, 0.3);
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s;
}
.recruit_new2__formBox input[type=text]:focus,
.recruit_new2__formBox input[type=email]:focus,
.recruit_new2__formBox input[type=tel]:focus,
.recruit_new2__formBox select:focus,
.recruit_new2__formBox textarea:focus {
  outline: none;
  border-color: #00c6e2;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(0, 198, 226, 0.2);
}
.recruit_new2__formBox input[type=text]::-moz-placeholder, .recruit_new2__formBox input[type=email]::-moz-placeholder, .recruit_new2__formBox input[type=tel]::-moz-placeholder, .recruit_new2__formBox select::-moz-placeholder, .recruit_new2__formBox textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.recruit_new2__formBox input[type=text]::placeholder,
.recruit_new2__formBox input[type=email]::placeholder,
.recruit_new2__formBox input[type=tel]::placeholder,
.recruit_new2__formBox select::placeholder,
.recruit_new2__formBox textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.recruit_new2__formBox select option {
  background-color: #010711;
  color: #fff;
}
.recruit_new2__formBox .wpcf7-submit {
  margin: 2rem auto;
  display: block;
  background-color: #00c6e2;
  border: solid 1px #00c6e2 !important;
  padding: 0.5rem 2rem;
  border: none;
  color: #fff;
  transition: all 0.3s;
}
.recruit_new2__formBox .wpcf7-submit:hover {
  background-color: transparent;
  color: #00c6e2;
  cursor: pointer;
}
.recruit_new2__formBox .wpcf7-response-output {
  color: #00c6e2;
  border-color: #00c6e2 !important;
}
.recruit_new2__formBox .wpcf7-form-control-wrap:has(a) {
  display: block;
  margin: auto;
  text-align: center;
}
.recruit_new2__formBox .wpcf7-list-item a {
  color: #fff !important;
  text-align: center;
}
.recruit_new2__formBox .wpcf7-list-item input[type=checkbox] {
  width: 1.5em;
  height: 1.5em;
  min-width: 1.5em;
  min-height: 1.5em;
  accent-color: #00c6e2;
  margin-right: 0.5em;
  vertical-align: middle;
}

@media screen and (max-width: 600px) {
  #recruit_new2--form {
    padding-inline: 1rem;
  }
  .recruit_new2__form--type {
    grid-template-columns: 1fr;
  }
  .recruit_new2__formBox dl {
    grid-template-columns: 1fr;
    justify-content: flex-start;
  }
}
#recruit_new2--footer {
  background-color: #00111a;
  border-top: solid 1px #00c6e2;
  padding: 1rem;
}

.recruit_new2--footer__inner {
  display: grid;
  grid-template-columns: 1fr 3fr;
  color: #fff;
}

.recruit_new2--footer__inner--company {
  font-size: 1.5rem;
}

.recruit_new2--footer__inner--info dl {
  display: grid;
  grid-template-columns: 6rem auto;
  gap: 1rem;
  margin-bottom: 2rem;
}
.recruit_new2--footer__inner--info dt {
  color: #00c6e2;
}
.recruit_new2--footer__inner--info dd a {
  color: #fff !important;
}

.recruit_new2__footer--copyright {
  text-align: center;
  font-size: 0.8rem;
  color: #fff;
}

.recruit_new2 .wpcf7 {
  background-color: transparent;
}

@media screen and (max-width: 600px) {
  .recruit_new2--footer__inner {
    grid-template-columns: 1fr;
  }
  .recruit_new2--footer__inner--company {
    margin-bottom: 1rem;
  }
}
.recruit_new2 header {
  display: none;
}

.recruit_new2 footer {
  display: none;
}

.recruit_new2 #fixedbox {
  display: none !important;
}

@-webkit-keyframes yf-hero-content-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes yf-hero-content-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
body.yf #top_title_area,
body.yf .l-pageHeader {
  display: none !important;
}
body.yf .l-main.yf-main {
  overflow-x: clip;
}
body.yf .yf-hero .yf-hero-content {
  -webkit-animation: yf-hero-content-in 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
          animation: yf-hero-content-in 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
}
body.yf .animation-fade {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
body.yf .animation-fade.is-inview {
  opacity: 1;
  transform: none;
}
body.yf .animation-fadein-seq-archive .fade-box {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
body.yf .animation-fadein-seq-archive.is-inview .fade-box:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}
body.yf .animation-fadein-seq-archive.is-inview .fade-box:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.09s;
}
body.yf .animation-fadein-seq-archive.is-inview .fade-box:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.18s;
}
body.yf .animation-fadein-seq-archive.is-inview .fade-box:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.27s;
}
body.yf .animation-fadein-seq-archive.is-inview .fade-box:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: 0.36s;
}
body.yf .animation-fadein-seq-archive.is-inview .fade-box:nth-child(6) {
  opacity: 1;
  transform: none;
  transition-delay: 0.45s;
}
body.yf .animation-fadein-seq-archive.is-inview .fade-box:nth-child(7) {
  opacity: 1;
  transform: none;
  transition-delay: 0.54s;
}
body.yf .animation-fadein-seq-archive.is-inview .fade-box:nth-child(8) {
  opacity: 1;
  transform: none;
  transition-delay: 0.63s;
}
body.yf .animation-fadein-seq-archive.is-inview .fade-box:nth-child(9) {
  opacity: 1;
  transform: none;
  transition-delay: 0.72s;
}
body.yf .animation-fadein-seq-archive.is-inview .fade-box:nth-child(10) {
  opacity: 1;
  transform: none;
  transition-delay: 0.81s;
}
body.yf .animation-fadein-seq-archive.is-inview .fade-box:nth-child(11) {
  opacity: 1;
  transform: none;
  transition-delay: 0.9s;
}
body.yf .animation-fadein-seq-archive.is-inview .fade-box:nth-child(12) {
  opacity: 1;
  transform: none;
  transition-delay: 0.99s;
}
body.yf .animation-fadein-seq-archive.is-inview .fade-box:nth-child(13) {
  opacity: 1;
  transform: none;
  transition-delay: 1.08s;
}
body.yf .animation-fadein-seq-archive.is-inview .fade-box:nth-child(14) {
  opacity: 1;
  transform: none;
  transition-delay: 1.17s;
}
body.yf .animation-fadein-seq-archive.is-inview .fade-box:nth-child(15) {
  opacity: 1;
  transform: none;
  transition-delay: 1.26s;
}
body.yf .animation-fadein-seq-archive.is-inview .fade-box:nth-child(16) {
  opacity: 1;
  transform: none;
  transition-delay: 1.35s;
}
body.yf .animation-fadein-seq-archive.is-inview .fade-box:nth-child(17) {
  opacity: 1;
  transform: none;
  transition-delay: 1.44s;
}
body.yf .animation-fadein-seq-archive.is-inview .fade-box:nth-child(18) {
  opacity: 1;
  transform: none;
  transition-delay: 1.53s;
}
@media (prefers-reduced-motion: reduce) {
  body.yf .yf-hero .yf-hero-content {
    -webkit-animation: none !important;
            animation: none !important;
  }
  body.yf .animation-fade,
body.yf .animation-fadein-seq-archive .fade-box {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.yf-hero {
  background-image: url("../images/yf_mv_bg_pc.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
  min-height: min(80vh, 820px);
}
.yf-hero .yf-hero-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem);
  min-height: min(72vh, 720px);
  box-sizing: border-box;
}
.yf-hero .yf-hero-content img {
  display: block;
  margin-inline: auto;
  max-width: min(92vw, 605px);
  width: 100%;
  height: auto;
}

.yf-section {
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1.25rem, 5vw, 2rem);
  max-width: 1800px;
  margin-inline: auto;
  box-sizing: border-box;
}

.yf-about {
  text-align: center;
}

.yf-about-content {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  line-height: 1.85;
  margin-bottom: 2rem;
}
.yf-about-content p + p {
  margin-top: 1.25em;
}

.yf-h2 {
  margin-bottom: 2rem;
}

.yf-imgCenter {
  display: block;
  margin-inline: auto;
}

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

.yf-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media screen and (max-width: 600px) {
  .yf-flex {
    flex-direction: column;
  }
}

.yf-vision.yf-section {
  max-width: 1120px;
}
.yf-vision > .yf-flex {
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
  margin-bottom: 0;
}
.yf-vision .yf-flex-child {
  width: 50%;
}
@media screen and (max-width: 600px) {
  .yf-vision .yf-flex-child {
    width: 100%;
  }
}
.yf-vision .yf-flex-child:first-child img {
  height: auto;
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  display: block;
}
.yf-vision .yf-flex-child:last-child {
  text-align: center;
  padding: clamp(1rem, 3vw, 2rem);
}

.yf-facility {
  max-width: 1800px;
  display: block;
  margin-inline: auto;
}
.yf-facility .yf-flex {
  align-items: flex-start;
}
.yf-facility .yf-flex-child {
  width: 30%;
}
.yf-facility .yf-flex-child img {
  width: 100%;
}
@media screen and (max-width: 600px) {
  .yf-facility .yf-flex-child {
    width: 100%;
  }
}

.yf-h3 {
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  color: #0071bc;
  font-weight: bold;
}

.yf-process {
  max-width: 1400px;
}

.slider-yf {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 100%;
  margin-top: 0.75rem;
}
.slider-yf .slider-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 600px) {
  .slider-yf {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }
}

.yf-interview > img.yf-imgCenter {
  max-width: min(100%, 920px);
  width: 100%;
  height: auto;
}

.yf-interview_intro {
  margin-block: 2rem;
  text-align: center;
}

.yf-interview_profile {
  width: 100%;
  max-width: 960px;
  margin: 2rem auto;
  border: dashed 1px #0071bc;
  padding: clamp(1.5rem, 4vw, 2.75rem) clamp(1.25rem, 4vw, 2.5rem);
  box-sizing: border-box;
}
@media screen and (max-width: 600px) {
  .yf-interview_profile {
    padding: 1.25rem 1rem;
  }
}
.yf-interview_profile .yf-flex {
  display: flex;
  align-items: flex-start;
}
.yf-interview_profile .yf-flex .yf-flex-child:first-child {
  width: 20%;
}
.yf-interview_profile .yf-flex .yf-flex-child:first-child img {
  height: auto;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .yf-interview_profile .yf-flex .yf-flex-child:first-child {
    width: 50%;
    display: block;
    margin: 0 auto;
  }
  .yf-interview_profile .yf-flex .yf-flex-child:first-child img {
    width: 100%;
  }
}
.yf-interview_profile .yf-flex .yf-flex-child:last-child {
  width: 80%;
}
@media screen and (max-width: 600px) {
  .yf-interview_profile .yf-flex .yf-flex-child:last-child {
    width: 100%;
  }
}
.yf-interview_profile .yf-h3 {
  text-align: left;
  background-color: #0071bc;
  color: #fff;
  padding: 0.5rem;
  margin-bottom: 1rem;
}

.yf-interview_profile2 {
  width: 100%;
  max-width: 920px;
  margin-inline: auto;
}
@media screen and (max-width: 600px) {
  .yf-interview_profile2 {
    max-width: none;
  }
}
.yf-interview_profile2 .yf-flex {
  flex-direction: row-reverse;
}
@media screen and (max-width: 600px) {
  .yf-interview_profile2 .yf-flex {
    flex-direction: column;
  }
}

.yf-interview_focus {
  max-width: 1000px;
  margin: 2rem auto 3rem;
}
.yf-interview_focus .yf-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 600px) {
  .yf-interview_focus .yf-flex {
    grid-template-columns: 1fr;
  }
}
.yf-interview_focus .yf-h3 {
  margin: 2rem auto;
}
@media screen and (max-width: 600px) {
  .yf-interview_focus .yf-h3 {
    margin: 1rem auto 2rem;
  }
}

.yf-interview_q1 {
  max-width: 1000px;
  margin: 2rem auto 3rem;
}
.yf-interview_q1 .yf-flex {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
}
.yf-interview_q1 .yf-flex .yf-flex-child:first-child {
  grid-column: 2/3;
  grid-row: 1/2;
}
@media screen and (max-width: 600px) {
  .yf-interview_q1 .yf-flex {
    grid-template-columns: 1fr;
  }
  .yf-interview_q1 .yf-flex .yf-flex-child:first-child {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.yf-interview_q1 .yf-h3 {
  margin: 2rem auto;
}
@media screen and (max-width: 600px) {
  .yf-interview_q1 .yf-h3 {
    margin: 1rem auto 2rem;
  }
}

.yf-interview_q2 {
  max-width: 1000px;
  margin: 2rem auto 3rem;
}
.yf-interview_q2 .yf-flex {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
}
@media screen and (max-width: 600px) {
  .yf-interview_q2 .yf-flex {
    grid-template-columns: 1fr;
  }
}
.yf-interview_q2 .yf-h3 {
  margin: 2rem auto;
}
@media screen and (max-width: 600px) {
  .yf-interview_q2 .yf-h3 {
    margin: 1rem auto 2rem;
  }
}

.yf-interview_kodawari {
  max-width: 1000px;
  margin: 2rem auto 3rem;
}
.yf-interview_kodawari .yf-flex {
  display: grid;
  grid-template-columns: 1fr 2fr;
  margin-bottom: 1rem;
  gap: 1rem;
}
@media screen and (max-width: 600px) {
  .yf-interview_kodawari .yf-flex {
    grid-template-columns: 1fr;
  }
}
.yf-interview_kodawari .yf-h3 {
  margin: 2rem auto;
}
@media screen and (max-width: 600px) {
  .yf-interview_kodawari .yf-h3 {
    margin: 1rem auto 2rem;
  }
}
.yf-interview_kodawari .yf-h4 {
  color: #0071bc;
  margin-bottom: 1rem;
}

.yf-information {
  margin-inline: auto;
}
.yf-information.yf-section {
  margin-block: 0;
}
.yf-information .yf-flex {
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  align-items: center;
  margin-bottom: 0;
}
@media screen and (max-width: 600px) {
  .yf-information .yf-flex {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 600px) {
  .yf-information .yf-flex-child {
    width: 100%;
  }
}
.yf-information .yf-flex-child:first-child img {
  height: auto;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  display: block;
  border-radius: 8px;
}
.yf-information .yf-flex-child:last-child {
  padding: clamp(1rem, 3vw, 2rem);
  text-align: center;
}
.yf-information .yf-flex-child:last-child .yf-h2 {
  margin-bottom: 1.25rem;
}
.yf-information .yf-flex-child:last-child img {
  margin-inline: auto;
}

.isv-info-dl {
  display: grid;
  grid-template-columns: 1fr 4fr;
  width: 100% !important;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .isv-info-dl {
    grid-template-columns: 1fr;
  }
}
.isv-info-dl dt {
  border-left: none;
  margin-top: 0 !important;
  border-bottom: solid 1px #222;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #0071bc;
}
@media screen and (max-width: 600px) {
  .isv-info-dl dt {
    padding-block: 1rem 0rem;
    border-bottom: none;
  }
}
.isv-info-dl dd {
  border-bottom: solid 1px #222;
  height: 100%;
}
.isv-info-dl p {
  margin-bottom: 0;
}

@media screen and (max-width: 600px) {
  .p-toc-page__sidebar {
    display: none;
  }
}
.yf-flex-child p {
  margin-bottom: 1.5rem;
}
.yf-flex-child p:last-child {
  margin-bottom: 0;
}

.page-template-page-toc .l-pageHeader,
.page-template-page-toc #top_title_area {
  display: none !important;
}

.p-toc-page-header {
  padding: 100px 0 60px;
  background: transparent;
}
@media screen and (max-width: 600px) {
  .p-toc-page-header {
    padding: 60px 0 30px;
  }
}
.p-toc-page-header__breadcrumb {
  margin-bottom: 30px;
}
.p-toc-page-header__breadcrumb .c-breadcrumbs {
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
}
.p-toc-page-header__title {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0;
  line-height: 1.1;
}
.p-toc-page-header__title-main {
  font-size: 4rem;
  font-weight: bold;
  color: var(--isv-black-color);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .p-toc-page-header__title-main {
    font-size: 2.5rem;
  }
}
.p-toc-page-header__title-main .animate-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  -webkit-animation: isvFadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: isvFadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.p-toc-page-header__subtitle {
  font-size: 1.5rem;
  font-family: var(--isv-heading-font-family);
  color: var(--isv-primary-color);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0;
  -webkit-animation: isvFadeIn 1.5s 0.8s forwards;
          animation: isvFadeIn 1.5s 0.8s forwards;
}
@media screen and (max-width: 600px) {
  .p-toc-page-header__subtitle {
    font-size: 1.1rem;
  }
}

@keyframes isvFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes isvFadeIn {
  to {
    opacity: 1;
  }
}
@keyframes isvFadeIn {
  to {
    opacity: 1;
  }
}
.p-toc-page {
  display: flex;
  gap: 60px;
  padding-top: 40px;
  padding-bottom: 80px;
  align-items: flex-start;
}
@media screen and (max-width: 600px) {
  .p-toc-page {
    flex-direction: column;
    gap: 40px;
    padding-top: 20px;
  }
}
.p-toc-page__sidebar {
  width: 320px;
  flex-shrink: 0;
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
}
@media screen and (max-width: 600px) {
  .p-toc-page__sidebar {
    width: 100%;
    position: static;
    margin-bottom: 0;
  }
}
.p-toc-page__summary {
  background: var(--isv-primary-color);
  padding: 24px;
  margin-bottom: 30px;
  font-size: 1rem;
  line-height: 1.8;
  color: #fff;
}
.p-toc-page__toc {
  background: var(--isv-secondary-color);
  padding: 24px;
  border-radius: 8px;
}
.p-toc-page__toc-title {
  font-weight: bold;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--isv-primary-color);
  padding-bottom: 5px;
  font-size: 1.1rem;
}
.p-toc-page__toc-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-toc-page__toc-nav li {
  margin-bottom: 12px;
}
.p-toc-page__toc-nav li:last-child {
  margin-bottom: 0;
}
.p-toc-page__toc-nav li a {
  color: var(--isv-text-color);
  text-decoration: none;
  font-size: 0.95rem;
  display: block;
  line-height: 1.4;
}
.p-toc-page__toc-nav li a:hover {
  color: var(--isv-primary-color);
  text-decoration: underline;
}
.p-toc-page__content {
  flex-grow: 1;
  max-width: 1100px;
}
@media screen and (max-width: 600px) {
  .p-toc-page__content {
    max-width: 100%;
  }
}
.p-toc-page__content img,
.p-toc-page__content .wp-block-image {
  margin-left: auto;
  margin-right: auto;
  height: auto;
}
.p-toc-page__content .isv-toc-heading {
  scroll-margin-top: 140px;
}
/*# sourceMappingURL=custom.css.map */