@charset "UTF-8";
@keyframes mvBgReveal {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes mvFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes mvTextClip {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes rightToLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes reasonPageTurn {
  0% {
    clip-path: inset(0 0 0 0);
    filter: brightness(1);
  }
  60% {
    clip-path: inset(0 0 0 55%);
    filter: brightness(0.98);
  }
  100% {
    clip-path: inset(0 0 0 100%);
    filter: brightness(0.96);
  }
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes leftToRight {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(0%, 0, 0);
  }
}
@keyframes topToBottom {
  0% {
    transform: translate3d(0, -50%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bottomToTop {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, -50%, 0);
  }
}
@keyframes rightToLeftText {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes glowFade {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
:root {
  --black01: #191e2e;
  --black02: #030303;
  --gray01: #bebebe;
  --blue01: #0278c7;
  --blue02: #0099ff;
  --gray02: #f2f4f7;
  --yellow02: #fff600;
  --yellow01: #ffd746;
  --ja: "Noto Sans JP", sans-serif;
  --en: "Montserrat", sans-serif;
  --en2: "Roboto", sans-serif;
  --cubic-bezier: cubic-bezier(0.57, 0.15, 0.13, 0.97);
  --leading-trim: calc((1em - 1lh) / 2);
}

* {
  margin: 0;
  padding: 0;
}

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

html {
  font-size: 62.5%;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

body {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 500;
  color: var(--black01);
  background: #fff;
  font-feature-settings: "palt" 1;
  font-variant-east-asian: proportional-width;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: auto;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

a {
  color: var(--black01);
  text-decoration: none;
  transition: opacity 0.3s ease-in-out, back-ground 0.3s ease-in-out, color 0.3s ease-in-out;
  opacity: 1;
  -webkit-tap-highlight-color: transparent;
}

a:hover {
  opacity: 1;
}

ul,
li {
  list-style: none;
}

table {
  border-collapse: collapse;
}

table thead th,
table thead td {
  background-color: #f2f2f2;
}

table th,
table td {
  border-collapse: collapse;
}

table th {
  text-align: left;
}

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.is-pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}
.is-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}
a[href^=tel] {
  text-decoration: none;
  color: inherit;
}

.bold {
  font-weight: 700;
}

.semi-bold {
  font-weight: 600;
}

.medium {
  font-weight: 500;
}

.regular {
  font-weight: 400;
}

.inner {
  width: 88.2666666667%;
  max-width: 1160px;
  margin: 0 auto;
}

.ta-c {
  text-align: center;
}

.ta-j {
  text-align: justify;
}

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

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

address {
  font-style: normal;
  text-decoration: none;
}

.desc {
  text-align: justify;
  font-family: var(--ja);
}

.btn01 {
  width: 210px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 20px;
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.3s var(--cubic-bezier);
  border: 1px solid var(--blue01);
  border-radius: 40px;
  margin-top: 40px;
}
@media screen and (max-width:768px) {
  .btn01 {
    margin: 40px auto 0;
  }
}
.btn01 .arrow {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blue01);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  aspect-ratio: 1/1;
}
.btn01 .arrow::after {
  content: "";
  width: 16px;
  height: 12px;
  display: inline-block;
  background: url(../../assets/images/icon-btn01-arrow.svg) no-repeat center/contain;
}
@media (hover: hover) and (pointer: fine) {
  .btn01:hover {
    background-color: var(--blue01);
    color: white;
  }
}
.btn01:disabled, .btn01[disabled] {
  opacity: 1;
  color: var(--black01);
  -webkit-text-fill-color: var(--black01);
}
.btn01:disabled:hover, .btn01[disabled]:hover {
  background: none;
  background-color: transparent;
  color: var(--black01);
  -webkit-text-fill-color: var(--black01);
}

.hg01 {
  margin-bottom: 30px;
  position: relative;
  padding-top: 40px;
}
@media screen and (max-width:768px) {
  .hg01 {
    padding-top: 24px;
  }
}
.hg01::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--blue01);
  position: absolute;
  top: 0;
  left: 0;
}
.hg01 .sec-ttl {
  font-size: clamp(48px, 5.8565153734vw, 80px);
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0;
  line-height: 1.125;
}
.hg01 .sub-ttl {
  color: var(--blue01);
  font-size: clamp(16px, 1.317715959vw, 18px);
  font-weight: 600;
}

a:hover .img-ov img {
  transform: scale(1.1);
}

.img-ov {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.img-ov img {
  transition: all 0.3s var(--cubic-bezier) 0s;
}

.page-ttl {
  width: 100%;
  height: auto;
  position: relative;
}
@media screen and (max-width:768px) {
  .page-ttl {
    height: 371px;
  }
}
.page-ttl .img-wrapper {
  height: 100%;
  width: 100%;
  aspect-ratio: 1366/480;
  max-height: 540px;
  min-height: 480px;
  overflow: hidden;
}
@media screen and (max-width:768px) {
  .page-ttl .img-wrapper {
    height: 280px;
    min-height: unset;
    max-height: unset;
  }
}
.page-ttl .img-wrapper img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
  width: 100%;
  height: 100%;
}
.page-ttl .lower-ttl {
  max-width: 785px;
  width: 57.467057101%;
  height: 120px;
  color: white;
  background: var(--blue01);
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  flex-wrap: wrap;
  align-content: center;
}
@media screen and (max-width:768px) {
  .page-ttl .lower-ttl {
    max-width: 330px;
    height: 90px;
    padding-left: 19px;
    justify-content: flex-start;
    width: 100%;
    top: 235px;
    bottom: auto;
    padding-left: 19px;
  }
}
.page-ttl .lower-ttl h2 {
  font-size: clamp(3.2rem, 3.513909224vw, 48px);
  font-weight: 600;
  letter-spacing: 0;
  font-family: var(--en);
  line-height: 1.3;
  margin-right: 7.6433121019%;
}
@media screen and (max-width:768px) {
  .page-ttl .lower-ttl h2 {
    letter-spacing: 0.03em;
    margin-right: 15px;
  }
}
.page-ttl .lower-ttl .sub-ttl {
  font-size: clamp(1.6rem, 1.317715959vw, 1.8rem);
  font-weight: 600;
  line-height: 1.5;
}

.lower {
  opacity: 0;
  padding-top: 75px;
  transform: translateY(10px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
@media screen and (max-width:768px) {
  .lower {
    padding-top: 64px;
  }
}
.lower.show {
  opacity: 1;
  transform: translateY(0);
}
.lower.recruit {
  padding-top: 0;
}
@media screen and (max-width:768px) {
  .lower.recruit {
    padding-top: 64px;
  }
}

.breadcrumb {
  font-size: 1.3rem;
  font-weight: 400;
  max-width: 1160px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: right;
  margin-top: 40px;
  width: 88.2666666667%;
  font-family: var(--ja);
}
@media screen and (max-width:768px) {
  .breadcrumb {
    margin: 70px auto 0;
  }
}
.breadcrumb span:not(:first-child) {
  font-weight: 600;
}

/* 管理バー表示中は固定ヘッダーを少し下げる */
.admin-bar header {
  top: 32px;
}

/* スマホ（管理バーが46pxのとき） */
@media screen and (max-width: 782px) {
  .admin-bar header {
    top: 0px;
  }
}
html {
  margin-top: 0 !important;
}

/* SP: max-width 768px では改行を非表示に */
@media screen and (max-width: 768px) {
  .br-space,
  .br-space br {
    display: none !important;
  }
}
/* PC: min-width 769px では表示 */
@media screen and (min-width: 769px) {
  .br-space {
    display: inline;
  }
}
.fade {
  opacity: 0;
  transform: translateY(25px);
}

.js-io {
  opacity: 0;
  will-change: opacity, transform;
}

.js-io[data-io=fade] {
  transform: translateY(16px);
  transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--io-delay, 0s);
}

.js-io.active[data-io=fade] {
  opacity: 1;
  transform: translateY(0);
}

.js-io[data-io=mask] {
  overflow: hidden;
}
.js-io[data-io=mask] > * {
  display: block;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--io-delay, 0s);
}
.js-io[data-io=mask].active[data-io=mask] {
  opacity: 1;
}
.js-io[data-io=mask].active[data-io=mask] > * {
  transform: translateY(0);
  opacity: 1;
}

.js-io[data-io=img] {
  transform: translateY(18px) scale(1.02);
  transition: opacity 800ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--io-delay, 0s);
}
.js-io[data-io=img].active.js-io[data-io=img] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.js-io[data-io=clip] {
  opacity: 1;
} /* 親は隠さない */
.js-io[data-io=clip] .clip-inner {
  display: inline-block;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.8s ease, -webkit-clip-path 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition: clip-path 1.1s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.8s ease;
  transition: clip-path 1.1s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.8s ease, -webkit-clip-path 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--io-delay, 0ms);
}

.js-io.active[data-io=clip] .clip-inner {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
  opacity: 1;
}

main.recruit, main.privacy, main.contact, main.contact-confirm, main.contact-thanks {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}
@media screen and (max-width:940px) {
  main {
    padding-top: 64px;
  }
}

.home .header,
.page-recruit .header {
  background: transparent;
}
@media screen and (max-width:768px) {
  .home .header,
  .page-recruit .header {
    background-color: white;
  }
}

.header {
  width: 100%;
  height: 75px;
  position: fixed;
  top: 0;
  z-index: 99;
  transition: background-color 0.3s var(--cubic-bezier);
  background: white;
}
@media screen and (max-width:940px) {
  .header {
    height: 64px;
  }
}
.header.is-scrolled {
  background: white;
}
.header .header-inner {
  align-items: center;
  height: 100%;
}
@media screen and (max-width:940px) {
  .header .header-inner {
    max-width: 1160px;
    width: 88.2666666667%;
    margin: 0 auto;
  }
}
.header h1 {
  margin-left: 103px;
}
@media screen and (max-width:940px) {
  .header h1 {
    margin-left: 0;
    max-width: 207px;
    width: 100%;
  }
}
.header h1 a {
  display: block;
}
.header h1 a img {
  display: block;
}
.header .flex-wrapper {
  display: flex;
  row-gap: 8px;
  flex-direction: column;
  align-items: flex-end;
}
.header .flex-wrapper .header-tel-link {
  background-color: white;
  border-radius: 5px;
  padding: 1px 10px;
  display: flex;
  height: 24px;
  align-items: center;
}
.header .flex-wrapper .header-tel-link .text {
  margin-right: 13px;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
}
.header .flex-wrapper .header-tel-link .tel-num-wrapper {
  color: var(--blue01);
  transition: color 0.3s var(--cubic-bezier);
  font-weight: 500;
  letter-spacing: 0;
  display: flex;
  line-height: 1;
  align-items: center;
}
.header .flex-wrapper .header-tel-link .tel-num-wrapper .arrow {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  background: var(--blue01);
  margin-right: 8px;
  transition: background-color 0.3s var(--cubic-bezier);
}
.header .flex-wrapper .header-tel-link .tel-num-wrapper .arrow::before {
  content: "";
  width: 5px;
  height: 9px;
  background: url(../../assets/images/arrow-right.svg) no-repeat center/contain;
  align-items: center;
  justify-content: center;
}
.header .flex-wrapper .header-tel-link .tel-num-wrapper .num {
  font-size: 1.8rem;
}
.header .flex-wrapper .header-tel-link .tel-num-wrapper .tel {
  font-size: 1.5rem;
}
.header .flex-wrapper .header-tel-link:hover .tel-num-wrapper {
  color: var(--blue02);
}
.header .flex-wrapper .header-tel-link:hover .tel-num-wrapper .arrow {
  background-color: var(--blue02);
}
.header .flex-wrapper .nav-list {
  gap: 35px;
}
@media screen and (max-width:1140px) {
  .header .flex-wrapper .nav-list {
    gap: 20px;
  }
}
.header .flex-wrapper .nav-list li a {
  font-weight: 600;
  font-size: 1.5rem;
  display: block;
  line-height: 1.6;
  transition: all 0.3s var(--cubic-bezier);
}
@media screen and (max-width:1140px) {
  .header .flex-wrapper .nav-list li a {
    font-size: 1.4rem;
  }
}
.header .flex-wrapper .nav-list li a:hover {
  color: var(--blue01);
}
.header .header-contact {
  background: var(--blue01);
  height: 75px;
  width: 117px;
  font-size: 1.4rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1.6;
  row-gap: 5px;
  margin-left: 3.6603221083vw;
  transition: background-color 0.3s var(--cubic-bezier);
}
@media screen and (max-width:1140px) {
  .header .header-contact {
    margin-left: 20px;
  }
}
.header .header-contact::before {
  content: "";
  width: 21px;
  height: 15px;
  background: url(../../assets/images/icon-mail.svg);
  display: inline-block;
}
.header .header-contact span {
  color: white;
}
.header .header-contact:hover {
  background: var(--blue02);
}

.menu-panel {
  width: 100%;
  min-height: 100dvh;
  min-height: 100svh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  right: 0;
  padding: 120px 96px;
  transform: translateX(100%);
  visibility: hidden;
  transition: all 0.6s var(--cubic-bezier);
}
@media screen and (max-width:768px) {
  .menu-panel {
    width: 100%;
    padding: 60px 0;
    top: 64px;
    height: calc(100svh - 64px);
  }
}
.menu-panel .content-outer {
  gap: 140px;
  flex: 1;
  display: flex;
  align-items: stretch;
  height: 306px;
}
@media screen and (max-width:768px) {
  .menu-panel .content-outer {
    flex-direction: column;
    row-gap: 0px;
    margin: 0 auto 60px;
    width: 88.2666666667%;
    height: auto;
  }
}
.menu-panel .content-outer .panel-nav-list {
  display: flex;
  justify-content: space-between;
  width: max-content;
  flex-direction: column;
  padding: 0 11px;
  flex: 1;
  font-family: var(--ja);
}
@media screen and (max-width:768px) {
  .menu-panel .content-outer .panel-nav-list {
    width: 100%;
  }
}
.menu-panel .content-outer .panel-nav-list .item {
  width: max-content;
}
@media screen and (max-width:768px) {
  .menu-panel .content-outer .panel-nav-list .item {
    width: 100%;
    border-bottom: 1px solid white;
  }
}
.menu-panel .content-outer .panel-nav-list .item a {
  color: white;
  line-height: 1.6;
  display: block;
  font-weight: 600;
}
@media screen and (max-width:768px) {
  .menu-panel .content-outer .panel-nav-list .item a {
    padding: 20px 5px;
    font-size: 1.5rem;
    line-height: 1.6;
    font-family: var(--ja);
  }
}
.menu-panel .content-outer .panel-nav-list .item:first-child a {
  padding-top: 0;
}
.menu-panel .content-outer .panel-nav-list:nth-of-type(2) {
  margin-top: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width:768px) {
  .menu-panel .content-outer .panel-nav-list:nth-of-type(2) {
    margin-bottom: 0px;
  }
}
.menu-panel.panelactive {
  pointer-events: auto;
  visibility: visible;
  transform: translateX(0);
}
.menu-panel .panel-bottom-btn {
  text-align: center;
  border-radius: 20px;
  padding: 10px;
  display: none;
  font-family: var(--ja);
  height: 95px;
  margin: 0 11px;
}
@media screen and (max-width:768px) {
  .menu-panel .panel-bottom-btn {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}
.menu-panel .panel-bottom-btn span {
  display: block;
}
.menu-panel .panel-bottom-btn .en {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.6;
}
.menu-panel .panel-bottom-btn .ja {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.3;
}
.menu-panel .panel-bottom-btn .text-bottom {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.6;
}
.menu-panel .panel-bottom-btn .text-bottom::after {
  content: "";
  width: 12px;
  margin-left: 14px;
  height: 10px;
  background: url(../../assets/images/panel-btn-arrow.svg) no-repeat center/contain;
  display: block;
}
.menu-panel .panel-bottom-btn.bg-white {
  background-color: white;
}
.menu-panel .panel-bottom-btn.bg-yellow {
  background-color: var(--yellow01);
}
.menu-panel .panel-bottom-btn.bg-yellow02 {
  background: var(--yellow02);
}
.menu-panel .panel-bottom-btn.bg-white-border {
  background: white;
  border: 2px solid black;
}
.menu-panel .panel-bottom-btn.bg-white-border .text-bottom::after {
  content: none;
}
.menu-panel .panel-bottom-btn.bg-white-border .tel-num {
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-panel .panel-bottom-btn.bg-white-border .tel-num::before {
  content: "";
  width: 22px;
  height: 22px;
  background: url(../../assets/images/icon-menupanel-tel.svg) no-repeat center/contain;
  margin-right: 0.5em;
}
.menu-panel .panel-bottom-btn:nth-of-type(2) {
  margin-top: 30px;
}
.menu-panel .panel-bottom-btn:nth-of-type(1) {
  margin-top: 30px;
}

@media screen and (max-width:768px) {
  .base-header .header-inner {
    max-width: 1160px;
    width: 88.2666666667%;
    margin: 0 auto;
  }
}
@media screen and (max-width:940px) {
  .base-header .header-nav {
    display: none;
  }
}
.base-header .open-btn {
  display: none;
  width: 40px;
  height: 40px;
  background: var(--blue01);
  border-radius: 5px;
  position: relative;
  flex-shrink: 0;
  z-index: 9999;
}
@media screen and (max-width:940px) {
  .base-header .open-btn {
    display: block;
  }
}
.base-header .open-btn span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: white;
  left: 50%;
  display: inline-block;
  position: absolute;
  transition: all 0.3s var(--cubic-bezier);
}
.base-header .open-btn span:nth-of-type(1) {
  top: 15px;
  transform: translateX(-50%);
}
.base-header .open-btn span:nth-of-type(2) {
  top: 24px;
  transform: translateX(-50%);
}
.base-header .open-btn.active span {
  width: 20px;
  top: 19px;
}
.base-header .open-btn.active span:nth-of-type(1) {
  transform: translateX(-50%) rotate(-140deg);
}
.base-header .open-btn.active span:nth-of-type(2) {
  transform: translateX(-50%) rotate(140deg);
}
.base-header .menu-panel {
  background-color: white;
}
.base-header .menu-panel .content-outer .panel-nav-list .item {
  border-bottom: 1px solid var(--gray01);
}
.base-header .menu-panel .content-outer .panel-nav-list .item a {
  color: var(--black01);
}

.header-recruit .recruit-header-nav {
  position: relative;
  z-index: 100;
}
.header-recruit .recruit-header-nav .open-btn.use-pc {
  width: 75px;
  height: 75px;
  background: var(--yellow01);
  display: block;
  position: relative;
  cursor: pointer;
  border-radius: 0;
}
.header-recruit .recruit-header-nav .open-btn.use-pc span {
  height: 2px;
  width: 42px;
  background: var(--black01);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: center;
  display: block;
  transition: transform 0.3s var(--cubic-bezier), top 0.3s var(--cubic-bezier), opacity 0.3s var(--cubic-bezier);
}
.header-recruit .recruit-header-nav .open-btn.use-pc span:nth-of-type(1) {
  top: 47px;
}
.header-recruit .recruit-header-nav .open-btn.use-pc span:nth-of-type(2) {
  top: 55px;
}
.header-recruit .recruit-header-nav .open-btn.use-pc.active span:nth-of-type(1) {
  transform: translateX(-50%) rotate(10.78deg);
  top: 51px;
}
.header-recruit .recruit-header-nav .open-btn.use-pc.active span:nth-of-type(2) {
  transform: translateX(-50%) rotate(-10.78deg);
  top: 51px;
}
.header-recruit .recruit-header-nav .openbtn-text {
  position: absolute;
  top: 19px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  line-height: 1;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}
.header-recruit .recruit-header-nav .entry-link {
  background: var(--blue01);
  color: white;
  width: 125px;
  height: 75px;
  display: grid;
  place-content: center;
  font-weight: 700;
}
.header-recruit .recruit-header-nav .requirements {
  width: 125px;
  height: 75px;
  color: var(--blue01);
  font-weight: 700;
  display: grid;
  place-content: center;
  background: white;
}
@media screen and (max-width:940px) {
  .header-recruit .recruit-header-nav {
    display: none;
  }
}
.header-recruit .open-btn {
  display: none;
  width: 40px;
  height: 40px;
  background: var(--blue01);
  border-radius: 5px;
  position: relative;
  flex-shrink: 0;
  z-index: 9999;
}
.header-recruit .open-btn span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: white;
  display: inline-block;
  position: absolute;
  transition: all 0.3s var(--cubic-bezier);
}
.header-recruit .open-btn span:nth-of-type(1) {
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
}
.header-recruit .open-btn span:nth-of-type(2) {
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width:940px) {
  .header-recruit .open-btn {
    display: block;
  }
  .header-recruit .open-btn.active span {
    width: 20px;
    top: 19px;
  }
  .header-recruit .open-btn.active span:nth-of-type(1) {
    transform: translateX(-50%) rotate(-140deg);
  }
  .header-recruit .open-btn.active span:nth-of-type(2) {
    transform: translateX(-50%) rotate(140deg);
  }
}
.header-recruit .menu-panel {
  background-color: var(--blue02);
  width: 57.1010248902%;
  display: flex;
  align-items: center;
}
@media screen and (max-width:768px) {
  .header-recruit .menu-panel {
    width: 100%;
    display: block;
  }
}
@media (min-width: 768px) {
  .header-recruit .menu-panel .content-outer .panel-nav-list:nth-of-type(2) {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.footer {
  padding: 110px 0;
}
@media screen and (max-width:768px) {
  .footer {
    padding: 50px 0 40px;
  }
}
.footer .footer-inner {
  margin: 0 auto;
  width: 64.8609077599%;
}
@media screen and (max-width:1440px) {
  .footer .footer-inner {
    width: 88.2666666667%;
  }
}
.footer .footer-logo {
  display: block;
  margin-bottom: 26px;
}
@media screen and (max-width:768px) {
  .footer .footer-logo {
    width: 226px;
  }
}
.footer .flex-wrapper {
  padding-bottom: 80px;
  border-bottom: 1px solid var(--black01);
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width:768px) {
  .footer .flex-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 20px;
  }
}
.footer .left {
  flex-shrink: 0;
}
.footer .nav-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}
@media screen and (max-width:768px) {
  .footer .nav-list {
    margin-bottom: 30px;
    gap: 20px 10px;
  }
}
.footer .nav-list .item a {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.6;
}
.footer address {
  font-family: var(--ja);
  font-size: 1.5rem;
  margin-bottom: 20px;
  line-height: 2;
}
.footer .footer-tel {
  display: inline-block;
  font-size: 1.8rem;
  background: var(--gray02);
  color: var(--blue01);
  padding: 8px 21px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.footer .footer-tel span {
  font-size: 1.5rem;
  margin-right: 0.3em;
}
.footer .privacy-link {
  line-height: 1.6;
  font-weight: 600;
  font-size: 1.2rem;
}
.footer .copy {
  font-size: 1rem;
  text-align: right;
  letter-spacing: 0;
  font-weight: 600;
  display: block;
}
@media screen and (max-width:768px) {
  .footer .copy {
    text-align: center;
  }
}
.footer .page-top a {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  justify-content: center;
}
.footer .page-top {
  position: absolute;
  bottom: 20px;
  right: 0;
  font-size: 0.9rem;
  font-weight: 600;
}
@media screen and (max-width:768px) {
  .footer .page-top {
    bottom: 10px;
  }
}
.footer .page-top .text {
  color: var(--blue01);
  line-height: 1;
}
.footer .page-top .circle-arrow {
  transform: rotate(-90deg);
  background-color: var(--blue01);
}
@media screen and (max-width:768px) {
  .footer .page-top .circle-arrow {
    width: 30px;
    height: 30px;
  }
}
.footer .page-top .circle-arrow::after {
  background: url(../../assets/images/icon-btn01-arrow.svg);
}

main {
  position: relative;
}

.fixed-recruit {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 108px;
  z-index: 5;
  cursor: pointer;
  height: 108px;
  border-radius: 50%;
  background: var(--yellow02);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s var(--cubic-bezier), visibility 0.4s var(--cubic-bezier), transform 0.4s var(--cubic-bezier);
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width:768px) {
  .fixed-recruit {
    width: 84px;
    height: 84px;
    right: 10px;
    bottom: 249px;
  }
}
.fixed-recruit.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.fixed-recruit .text {
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  gap: 2px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
}
@media screen and (max-width:768px) {
  .fixed-recruit .text {
    font-size: 1.5rem;
    line-height: 1.3;
    gap: 0;
  }
}
.fixed-recruit .text span {
  display: block;
}
.fixed-recruit .text span.en {
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  font-family: var(--ja);
}
@media screen and (max-width:768px) {
  .fixed-recruit .text span.en {
    font-size: 1.1rem;
  }
}
.fixed-recruit .text::after {
  content: "";
  width: 12px;
  height: 10px;
  background: url(../../assets/images/icon-recruit-badge-arrow.svg) no-repeat center/contain;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mv {
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin-bottom: 50px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s var(--cubic-bezier), visibility 0s linear 1s;
}
@media screen and (max-width:768px) {
  .mv {
    margin-bottom: 32px;
    height: calc(100svh - 64px);
    min-height: calc(100svh - 64px);
  }
}
.mv.is-animated {
  opacity: 1;
  visibility: visible;
  transition: opacity 1s var(--cubic-bezier), visibility 0s linear 0s;
}
.mv.is-animated .mv-message-bg {
  -webkit-animation: mvBgReveal 0.6s var(--cubic-bezier) 0.15s forwards;
  animation: mvBgReveal 0.6s var(--cubic-bezier) 0.15s forwards;
}
.mv.is-animated .mv-message-text {
  -webkit-animation: mvTextClip 0.9s var(--cubic-bezier) 0.9s forwards;
  animation: mvTextClip 0.9s var(--cubic-bezier) 0.9s forwards;
}
.mv.is-animated .lead {
  -webkit-animation: mvFadeUp 0.8s var(--cubic-bezier) 1.5s forwards;
  animation: mvFadeUp 0.8s var(--cubic-bezier) 1.5s forwards;
}
.mv.is-animated .desc {
  -webkit-animation: mvFadeUp 1s var(--cubic-bezier) 2.1s forwards;
  animation: mvFadeUp 1s var(--cubic-bezier) 2.1s forwards;
}
.mv.is-animated .mv-swiper .swiper-slide.is-first-slide img {
  transform: scale(1);
}
.mv .mv-box {
  width: 100%;
  position: absolute;
  left: 0;
  border-left: 12px solid var(--blue01);
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
@media screen and (max-width:768px) {
  .mv .mv-box {
    bottom: 0;
    margin-bottom: 15px;
    top: auto;
    transform: translateY(0);
    border-width: 4px;
    display: flex;
    height: clamp(275px, 41.2293853073svh, 400px);
  }
}
.mv .mv-box .inner {
  max-width: none;
}
@media screen and (max-width:768px) {
  .mv .mv-box .inner {
    display: flex;
    flex-direction: column;
  }
}
.mv .mv-box .mv-message {
  color: var(--blue01);
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px 24px;
  display: inline-block;
  font-size: clamp(40px, 4.6852122987vw, 90px);
  line-height: 1.2;
  position: relative;
  margin-bottom: 30px;
  margin-top: -20px;
}
@media screen and (max-width:768px) {
  .mv .mv-box .mv-message {
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
    padding: 20px 24px 10px;
  }
}
.mv .mv-box .mv-message-bg {
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: 1;
  transform: scaleX(0);
  transform-origin: left center;
}
@media screen and (max-width:768px) {
  .mv .mv-box .mv-message-bg {
    width: calc(100% + 50vw - 50%);
  }
}
.mv .mv-box .mv-message-text {
  display: inline-block;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  opacity: 1;
  position: relative;
  z-index: 2;
}
.mv .mv-box .lead,
.mv .mv-box .desc {
  opacity: 0;
  transform: translateY(24px);
  padding-left: 24px;
}
.mv .mv-box .lead {
  font-weight: 700;
  font-size: clamp(20px, 1.756954612vw, 34px);
  margin-bottom: 20px;
  line-height: 1.4;
}
@media screen and (max-width:480px) {
  .mv .mv-box .lead {
    margin-bottom: 0px;
    padding-bottom: 10px;
    background: white;
  }
}
.mv .mv-box .desc {
  font-size: clamp(15px, 1.317715959vw, 25px);
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width:768px) {
  .mv .mv-box .desc {
    line-height: 1.4;
    background-color: white;
  }
}
.mv .mv-swiper {
  width: 70.4978038067%;
  height: 100%;
  background: #fff;
  will-change: transform;
  overflow: hidden;
  flex-shrink: 0;
  border-bottom-left-radius: 40px;
  position: relative;
}
@media screen and (max-width:768px) {
  .mv .mv-swiper {
    width: 100%;
    height: clamp(320px, 59.9700149925svh, 560px);
  }
}
.mv .mv-swiper .swiper-wrapper {
  height: 100%;
}
.mv .mv-swiper picture {
  display: block;
  width: 100%;
  height: 100%;
}
.mv .mv-swiper .swiper-slide {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.mv .mv-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  transform: scale(1);
}
.mv .mv-swiper .swiper-slide.is-first-slide img {
  transform: scale(1.05);
  transition: transform 2.4s var(--cubic-bezier);
}

section {
  padding: 150px 0;
}
@media screen and (max-width:768px) {
  section {
    padding: 80px 0;
  }
}
section .lead {
  font-size: clamp(22px, 2.0497803807vw, 28px);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.5;
  font-family: var(--ja);
}
section .lead.text-big {
  font-size: clamp(22px, 2.3426061493vw, 32px);
  line-height: 1.6;
}

.top-about {
  background: var(--gray02);
  position: relative;
  z-index: 1;
}
.top-about .sp-img-wrapper {
  display: none;
  justify-content: space-between;
  margin-bottom: 40px;
  align-items: flex-end;
}
@media screen and (max-width:768px) {
  .top-about .sp-img-wrapper {
    display: flex;
  }
}
.top-about .sp-img-wrapper .sp-img {
  overflow: hidden;
}
.top-about .sp-img-wrapper .sp-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.top-about .sp-img-wrapper .sp-img.sp-img01 {
  width: 65.3333333333vw;
  height: 63.4666666667vw;
  margin-bottom: 11px;
  border-radius: 0 20px 20px 0;
}
.top-about .sp-img-wrapper .sp-img.sp-img02 {
  width: 27.7333333333vw;
  height: 41.8666666667vw;
  border-radius: 20px 0 0 20px;
}
.top-about .inner {
  max-width: none;
  width: 100%;
}
@media screen and (max-width:768px) {
  .top-about .inner {
    max-width: 1160px;
    width: 88.2666666667%;
  }
}
.top-about .contents {
  justify-content: space-between;
}
@media screen and (max-width:768px) {
  .top-about .contents {
    flex-direction: column;
  }
}
.top-about .contents .img-wrapper {
  overflow: hidden;
}
.top-about .contents .img-wrapper.left {
  align-self: flex-start;
  width: 29.4289897511%;
  aspect-ratio: 402/390;
  border-radius: 0 40px 40px 0;
}
.top-about .contents .img-wrapper.right {
  align-self: flex-end;
  width: 17.9355783309%;
  aspect-ratio: 245/367;
  position: relative;
  border-radius: 40px 0 0 40px;
  margin-bottom: -186px;
}
.top-about .contents .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.top-about .text-box {
  width: 31.5519765739%;
  flex-shrink: 0;
  margin-left: 12.0790629575%;
  margin-right: 8.78477306%;
}
@media screen and (max-width:768px) {
  .top-about .text-box {
    width: 100%;
  }
}

.top-strength {
  background: linear-gradient(to right, #fff 67%, var(--blue01) 67%);
}
@media screen and (max-width:768px) {
  .top-strength {
    background: white;
  }
}
.top-strength .contents {
  justify-content: space-between;
  gap: 12.9310344828%;
  align-items: flex-start;
  position: relative;
}
@media screen and (max-width:768px) {
  .top-strength .contents {
    flex-direction: column;
    row-gap: 50px;
  }
}
.top-strength .text-wrapper {
  width: 100%;
  max-width: 412px;
  position: -webkit-sticky;
  position: sticky;
  top: 150px;
}
@media screen and (max-width:768px) {
  .top-strength .text-wrapper {
    position: relative;
    top: auto;
  }
}
.top-strength .strength-view {
  width: 37.0689655172%;
  position: -webkit-sticky;
  position: sticky;
  top: 150px;
  overflow: hidden;
  margin-right: 14.4827586207%;
}
@media screen and (max-width:768px) {
  .top-strength .strength-view {
    position: relative;
    top: auto;
    width: 100%;
    margin-right: 0;
    overflow: unset;
  }
}
.top-strength .strength-list {
  width: 100%;
}
.top-strength .strength-list .item a {
  position: relative;
}
.top-strength .strength-list .item:not(:last-child) {
  margin-bottom: 30px;
  border-bottom: 1px solid var(--gray02);
}
@media screen and (max-width:768px) {
  .top-strength .strength-list .item:not(:last-child) {
    border-bottom: none;
    margin-bottom: 20px;
  }
}
@media screen and (max-width:768px) {
  .top-strength .strength-list .item {
    padding-top: 40px;
    position: relative;
  }
  .top-strength .strength-list .item::before {
    content: "";
    width: 100vw;
    height: 151px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue01);
    display: block;
    z-index: 0;
  }
}
.top-strength .strength-list .item .img-wrapper {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 430/250;
}
@media screen and (max-width:768px) {
  .top-strength .strength-list .item .img-wrapper {
    aspect-ratio: 1.5045454545;
  }
}
.top-strength .strength-list .item .img-wrapper img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s var(--cubic-bezier);
  -o-object-fit: cover;
  object-fit: cover;
}
.top-strength .strength-list .item .text-box {
  padding: 24px 0;
  position: relative;
}
@media screen and (max-width:768px) {
  .top-strength .strength-list .item .text-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0 0;
    row-gap: 15px;
  }
}
.top-strength .strength-list .item .text-box .left {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width:768px) {
  .top-strength .strength-list .item .text-box .left {
    gap: 20px;
  }
}
.top-strength .strength-list .item .text-box .left img {
  display: inline-block;
  height: 40px;
  width: auto;
}
@media screen and (max-width:768px) {
  .top-strength .strength-list .item .text-box .left img {
    height: 38px;
  }
}
.top-strength .strength-list .item .text-box .ttl {
  transition: color 0.3s var(--cubic-bezier);
}
.top-strength .strength-list .item .text-box .ttl h3 {
  font-size: clamp(2.4rem, 2.0497803807vw, 2.8rem);
  line-height: 1.3;
  font-weight: 600;
}
.top-strength .strength-list .item .text-box .ttl .text {
  font-size: 1.5rem;
  line-height: 1.3;
  font-family: var(--ja);
}
.top-strength .strength-list .item .text-box .arrow {
  width: 34px;
  position: relative;
  height: 34px;
  display: inline-flex;
  align-items: center;
  background: transparent;
  justify-content: center;
  border: 1px solid white;
  border-radius: 50%;
  transition: background-color 0.3s var(--cubic-bezier);
}
@media screen and (max-width:768px) {
  .top-strength .strength-list .item .text-box .arrow {
    border-color: var(--blue01);
    align-self: flex-end;
  }
}
.top-strength .strength-list .item .text-box .arrow::after {
  content: "";
  width: 16px;
  height: 12px;
  transition: background-image 0.3s var(--cubic-bezier);
  display: inline-block;
  background: url(../../assets/images/icon-btn01-arrow.svg) no-repeat center/contain;
}
@media screen and (max-width:768px) {
  .top-strength .strength-list .item .text-box .arrow::after {
    background: url(../../assets/images/icon-arrow-right-blue.svg) no-repeat center/contain;
  }
}
.top-strength .strength-list .item a:hover .img-wrapper img {
  transform: scale(1.09);
}
.top-strength .strength-list .item a:hover .text-box .ttl h3 {
  color: var(--blue01);
}
.top-strength .strength-list .item a:hover .text-box .arrow {
  background: white;
}
.top-strength .strength-list .item a:hover .text-box .arrow::after {
  background: url(../../assets/images/icon-arrow-right-blue.svg) no-repeat center/contain;
}

a .circle-arrow {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  position: relative;
  border: 1px solid var(--blue01);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: backgound-color 0.3s var(--cubic-bezier);
}
a .circle-arrow::after {
  content: "";
  width: 16px;
  height: 12px;
  transition: background-image 0.3s var(--cubic-bezier);
  display: block;
  background: url(../../assets/images/icon-arrow-right-blue.svg) no-repeat center/contain;
}
a:hover .circle-arrow {
  background: var(--blue01);
}
a:hover .circle-arrow::after {
  content: "";
  background: url(../../assets/images/icon-btn01-arrow.svg) no-repeat center/contain;
}

.top-business {
  background: var(--gray02);
}
.top-business .top-flex-wrapper {
  margin-bottom: 70px;
}
@media screen and (max-width:768px) {
  .top-business .top-flex-wrapper {
    flex-direction: column;
    row-gap: 40px;
  }
}
.top-business .top-flex-wrapper .img-wrapper {
  width: 53.6206896552%;
  border-radius: 40px;
  overflow: hidden;
}
@media screen and (max-width:768px) {
  .top-business .top-flex-wrapper .img-wrapper {
    width: 100%;
    border-radius: 20px;
  }
}
.top-business .top-flex-wrapper .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.top-business .top-flex-wrapper .text-wrapper {
  width: 39.4827586207%;
}
@media screen and (max-width:768px) {
  .top-business .top-flex-wrapper .text-wrapper {
    width: 100%;
  }
}
.top-business .business-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 4.7413793103%;
  column-gap: 4.7413793103%;
  margin-bottom: 46px;
  width: 100%;
}
@media screen and (max-width:768px) {
  .top-business .business-list {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}
.top-business .business-list .item {
  width: 100%;
}
.top-business .business-list .item a:hover .img-wrapper img {
  transform: scale(1.05);
}
.top-business .business-list .img-wrapper {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 350/353;
}
@media screen and (max-width:768px) {
  .top-business .business-list .img-wrapper {
    margin-bottom: 15px;
  }
}
.top-business .business-list .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s var(--cubic-bezier);
}
.top-business .business-list .text-wrapper .ttl {
  margin-bottom: 20px;
}
@media screen and (max-width:768px) {
  .top-business .business-list .text-wrapper .ttl {
    margin-bottom: 15px;
  }
}
.top-business .business-list .text-wrapper .ttl h3 {
  font-weight: 600;
  line-height: 1.5;
  font-size: clamp(24px, 2.0497803807vw, 28px);
}
.top-business .business-list .text-wrapper .text {
  font-size: 1.5rem;
  line-height: 1.5;
}
.top-business .bar {
  display: block;
  width: 100%;
  height: 23px;
  background: #d9d9d9;
}

.top-works {
  overflow-x: hidden;
  margin-top: -60px;
  background: var(--blue01);
  border-radius: 40px;
  color: white;
}
.top-works .hg01 .sub-ttl {
  color: white;
}
.top-works .hg01::before {
  background: white;
}
.top-works .swiper-area {
  padding-top: 60px;
  position: relative;
}
@media screen and (max-width:768px) {
  .top-works .swiper-area {
    margin-top: 65px;
    padding-top: 0;
  }
}
.top-works .swiper-area .swiper-controller {
  display: flex;
  position: absolute;
  right: 0;
  top: -45px;
  justify-content: flex-end;
  align-items: center;
  height: 45px;
  gap: 10px;
}
@media screen and (max-width:768px) {
  .top-works .swiper-area .swiper-controller {
    gap: unset;
    justify-content: space-between;
    width: calc(100% + 35px);
    top: 113px;
    height: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
}
.top-works .swiper-area .swiper-button-prev,
.top-works .swiper-area .swiper-button-next {
  border-radius: 50%;
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  left: auto;
  position: relative;
  margin-top: 0;
  right: auto;
  top: auto;
  bottom: auto;
  border: 1px solid white;
  display: inline-flex;
  transition: background-color 0.3s var(--cubic-bezier);
}
@media screen and (max-width:768px) {
  .top-works .swiper-area .swiper-button-prev,
  .top-works .swiper-area .swiper-button-next {
    background-color: white;
    width: 35px;
    height: 35px;
  }
}
.top-works .swiper-area .swiper-button-prev::after,
.top-works .swiper-area .swiper-button-next::after {
  content: "";
  width: 22px;
  height: 16px;
  display: inline-block;
  background: url(../../assets/images/icon-btn01-arrow.svg) no-repeat center/contain;
  transition: background-image 0.3s var(--cubic-bezier);
}
@media screen and (max-width:768px) {
  .top-works .swiper-area .swiper-button-prev::after,
  .top-works .swiper-area .swiper-button-next::after {
    background: url(../../assets/images/icon-arrow-right-blue.svg) no-repeat center/contain;
    width: 17px;
    height: 13px;
  }
}
.top-works .swiper-area .swiper-button-prev:hover,
.top-works .swiper-area .swiper-button-next:hover {
  background-color: white;
}
.top-works .swiper-area .swiper-button-prev:hover::after,
.top-works .swiper-area .swiper-button-next:hover::after {
  background: url(../../assets/images/icon-arrow-right-blue.svg) no-repeat center/contain;
}
.top-works .swiper-area .swiper-button-prev {
  transform: rotate(180deg);
}
.top-works .swiper-slide {
  width: 330px;
}
.top-works .slide-item a:hover .img-wrapper img {
  transform: scale(1.05);
}
.top-works .slide-item .img-wrapper {
  border-radius: 20px;
  aspect-ratio: 330/260;
  overflow: hidden;
  margin-bottom: 24px;
}
.top-works .slide-item .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s var(--cubic-bezier);
}
.top-works .slide-item .text-wrapper h3 {
  font-size: 2.4rem;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  line-height: 1.5;
  font-family: var(--ja);
}
.top-works .slide-item .show-detail {
  margin-top: auto;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  justify-content: flex-start;
}
.top-works .slide-item .show-detail .arrow {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  margin-left: 1.5em;
  border-radius: 50%;
  background: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.top-works .slide-item .show-detail .arrow::after {
  content: "";
  width: 13px;
  height: 10px;
  display: inline-block;
  background: url(../../assets/images/icon-arrow-right-blue.svg) no-repeat center/contain;
}
.top-works .btn01 {
  text-align: center;
  background-color: white;
  margin: 80px auto 0;
  display: flex;
}
.top-works .btn01:hover {
  background-color: var(--blue01);
  border-color: white;
}

.news .contents {
  align-items: flex-start;
}
@media screen and (max-width:768px) {
  .news .contents {
    flex-direction: column;
  }
}
.news .news-list {
  flex: 1;
  max-width: 752px;
  border-top: 1px solid var(--gray01);
  width: 100%;
}
.news .news-list .item {
  border-bottom: 1px solid var(--gray01);
}
.news .news-list .item a {
  padding: 29px 0 32px;
}
@media screen and (max-width:768px) {
  .news .news-list .item a {
    padding: 22px 0 21px;
  }
}
.news .news-list .item a:hover h3 {
  color: var(--blue01);
}
.news .news-list .item a:hover .arrow {
  background-color: var(--blue01);
}
.news .news-list .item a:hover .arrow::after {
  content: "";
  background: url(../../assets/images/icon-btn01-arrow.svg);
}
.news .news-list .item .arrow {
  width: 34px;
  height: 34px;
  transition: background-color 0.3s var(--cubic-bezier);
  border: 1px solid var(--blue01);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 16px;
}
.news .news-list .item .arrow::after {
  content: "";
  width: 16px;
  height: 12px;
  background: url(../../assets/images/icon-arrow-right-blue.svg) no-repeat center/contain;
  display: block;
}
.news .news-list .item .date {
  font-family: var(--ja);
  font-size: clamp(14px, 1.2445095168vw, 17px);
  margin-bottom: 5px;
  font-weight: 400;
  line-height: 2;
}
.news .news-list .item h3 {
  font-size: clamp(16px, 1.4641288433vw, 20px);
  line-height: 2;
  transition: color 0.3s var(--cubic-bezier);
  font-family: var(--ja);
}
@media screen and (max-width:768px) {
  .news .news-list .item h3 {
    line-height: 1.6;
  }
}
.news .left {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.news .btn-wrapper.is-sp {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width:768px) {
  .news.top-news {
    padding-bottom: 230px;
  }
}

.color-yellow {
  color: var(--yellow01);
}

.top-recruit {
  position: relative;
  background: linear-gradient(rgba(1, 105, 185, 0.9), rgba(1, 105, 185, 0.9)), url(../../assets/images/top_recruit_bg.webp) no-repeat center/cover;
  color: white;
  padding: 0;
  z-index: 1;
}
@media screen and (max-width:768px) {
  .top-recruit {
    background: linear-gradient(rgba(1, 105, 185, 0.9), rgba(1, 105, 185, 0.9)), url(../../assets/images/top_recruit_bg_sp.webp) no-repeat center/cover;
  }
}
.top-recruit .hg01 {
  padding-top: 0;
}
.top-recruit .hg01::before {
  content: none;
}
.top-recruit .contents {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 110px 0 90px;
}
@media screen and (max-width:768px) {
  .top-recruit .contents {
    padding-top: 250px;
    padding-bottom: 185px;
    width: 100%;
  }
}
.top-recruit .hg01 .sub-ttl {
  color: var(--yellow01);
}
.top-recruit .btn01 {
  background: white;
}
.top-recruit .btn01:hover {
  color: white;
  background: var(--blue01);
  border: 1px solid white;
}
@media screen and (max-width:768px) {
  .top-recruit .btn01 {
    margin-left: 0;
  }
}
.top-recruit .desc {
  line-height: 2.1;
  font-size: 1.5rem;
}
.top-recruit .img {
  position: absolute;
  display: block;
  border-radius: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.top-recruit .img.img01 {
  width: 19.6925329429vw;
  height: 24.8901903367vw;
  background-image: url(../../assets/images/img01.webp);
  top: -6.149341142vw;
  right: 9.5168374817vw;
  max-width: 269px;
  max-height: 340px;
}
@media screen and (max-width:768px) {
  .top-recruit .img.img01 {
    width: 170px;
    height: 214px;
    right: 22px;
    top: -150px;
  }
}
.top-recruit .img.img02 {
  width: 14.2020497804vw;
  height: 17.9355783309vw;
  background-image: url(../../assets/images/img02.webp);
  bottom: 5.270863836vw;
  right: 6.588579795vw;
  max-width: 194px;
  max-height: 245px;
}
@media screen and (max-width:768px) {
  .top-recruit .img.img02 {
    width: 136px;
    height: 173px;
    right: 22px;
    bottom: -23px;
  }
}
.top-recruit .img.img03-04 {
  width: 17.2767203514vw;
  max-width: 236px;
  height: 30.1610541728vw;
  max-height: 412px;
  top: -2.4890190337vw;
  left: 6.588579795vw;
}
@media screen and (max-width:768px) {
  .top-recruit .img.img03-04 {
    width: 148px;
    height: 260px;
    top: -51px;
    left: 22px;
  }
}
.top-recruit .img.img03 {
  width: 13.9092240117vw;
  height: 17.5695461201vw;
  background-image: url(../../assets/images/img03.webp);
  top: 0;
  left: 0;
  max-width: 190px;
  max-height: 240px;
}
@media screen and (max-width:768px) {
  .top-recruit .img.img03 {
    width: 120px;
    height: 152px;
  }
}
.top-recruit .img.img04 {
  width: 11.2737920937vw;
  height: 14.2752562225vw;
  background-image: url(../../assets/images/img04.webp);
  bottom: 0;
  right: 0;
  max-width: 154px;
  max-height: 195px;
}
@media screen and (max-width:768px) {
  .top-recruit .img.img04 {
    width: 97px;
    height: 123px;
  }
}
.top-recruit .img.img05 {
  width: 19.6925329429vw;
  height: 24.8901903367vw;
  background-image: url(../../assets/images/img05.webp);
  left: 9.9560761347vw;
  bottom: -2.4890190337vw;
  max-width: 269px;
  max-height: 340px;
}
@media screen and (max-width:768px) {
  .top-recruit .img.img05 {
    width: 171px;
    height: 217px;
    left: 22px;
    bottom: -112px;
  }
}

.page-bottom-contact {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  padding: 85px 0;
  background: url(../../assets/images/contact-bg.webp) no-repeat center/cover;
  position: relative;
}
@media screen and (max-width:768px) {
  .page-bottom-contact {
    padding-top: 152px;
    padding-bottom: 80px;
    background: url(../../assets/images/contact_bg_sp.webp) no-repeat center/cover;
  }
}
.page-bottom-contact .box {
  max-width: 886px;
  width: 100%;
  margin: 0 auto;
  background: white;
  border-radius: 40px;
  padding: 50px;
}
@media screen and (max-width:768px) {
  .page-bottom-contact .box {
    padding: 40px;
  }
}
.page-bottom-contact .box .flex-wrapper {
  margin-top: 30px;
  align-items: flex-start;
}
@media screen and (max-width:768px) {
  .page-bottom-contact .box .flex-wrapper {
    flex-direction: column;
    margin-top: 20px;
  }
}
.page-bottom-contact .box .left,
.page-bottom-contact .box .right {
  flex: 1;
  text-align: center;
  padding: 0 8.9058524173%;
}
@media screen and (max-width:768px) {
  .page-bottom-contact .box .left,
  .page-bottom-contact .box .right {
    padding: 0;
    width: 100%;
  }
}
.page-bottom-contact .box .tel {
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 1.2;
}
.page-bottom-contact .box .note {
  font-weight: 600;
  font-size: 1.3rem;
  font-family: var(--ja);
}
.page-bottom-contact .box .left {
  border-right: 1px solid var(--black01);
}
@media screen and (max-width:768px) {
  .page-bottom-contact .box .left {
    border-bottom: 1px solid var(--black01);
    border-right: none;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.page-bottom-contact .box .ttl {
  color: var(--blue01);
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.page-bottom-contact .hg01 {
  text-align: center;
  padding-top: 0;
  width: 100% !important;
  margin-bottom: 16px !important;
}
.page-bottom-contact .hg01::before {
  content: none;
}
.page-bottom-contact .hg01 h2 {
  font-size: clamp(40px, 4.6852122987vw, 64px);
  margin-bottom: 0;
}
@media screen and (max-width:768px) {
  .page-bottom-contact .hg01 h2 {
    margin-bottom: 5px;
  }
}
.page-bottom-contact .btn01 {
  margin: 0 auto;
  max-width: 240px;
  width: 100%;
}
.page-bottom-contact .desc {
  font-size: 1.5rem;
  text-align: center;
}

.strength .strength-list .item {
  display: flex;
  padding: 78px 0;
  border-bottom: 1px solid var(--gray01);
}
.strength .strength-list .item .img-wrapper {
  border-radius: 40px;
  overflow: hidden;
}
.strength .strength-list .item .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.strength .strength-list .item .text-wrapper .ttl {
  display: flex;
  flex-direction: column;
}
.strength .strength-list .item .text-wrapper .ttl .en {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
}
.strength .strength-list .item .text-wrapper .ttl .ja {
  font-size: 4rem;
  font-weight: 700;
  color: var(--blue01);
  line-height: 1;
}

@media screen and (max-width:768px) {
  .company section {
    padding: 70px 0;
  }
}
@media screen and (max-width:768px) {
  .company section.greetings {
    padding-top: 50px;
  }
}

main.company .hg01 {
  margin-bottom: 60px;
  width: 50%;
}
@media screen and (max-width:768px) {
  main.company .hg01 {
    width: 100%;
    margin-bottom: 40px;
  }
}
main.company .wrapper section {
  margin-bottom: 120px;
}
@media screen and (max-width:768px) {
  main.company .wrapper section {
    margin-bottom: 70px;
  }
}
main.company .wrapper section:nth-child(odd) {
  background: linear-gradient(to right, white 0% 33%, var(--gray02) 33% 100%);
}
@media screen and (max-width:768px) {
  main.company .wrapper section:nth-child(odd) {
    background: linear-gradient(to right, white 0% 16%, var(--gray02) 16% 100%);
  }
}
main.company .wrapper section:nth-child(odd) .hg01 {
  margin-left: auto;
  width: 50%;
}
@media screen and (max-width:768px) {
  main.company .wrapper section:nth-child(odd) .hg01 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
main.company .wrapper section:nth-child(even) {
  background: linear-gradient(to right, var(--gray02) 0 67%, white 67% 100%);
}
@media screen and (max-width:768px) {
  main.company .wrapper section:nth-child(even) {
    background: linear-gradient(to right, var(--gray02) 0% 84%, white 84% 100%);
  }
}

.greetings .contents {
  gap: 90px;
}
@media screen and (max-width:768px) {
  .greetings .contents {
    flex-direction: column-reverse;
    row-gap: 40px;
  }
}
.greetings .contents .img-container {
  width: 410px;
  height: 525px;
  position: relative;
}
@media screen and (max-width:768px) {
  .greetings .contents .img-container {
    width: 100%;
    height: 400px;
  }
}
.greetings .contents .img-container::before {
  content: "";
  width: 380px;
  height: 452px;
  position: absolute;
  display: block;
  border-radius: 20px;
  background: var(--blue01);
  top: 73px;
  right: -30px;
  z-index: -1;
}
@media screen and (max-width:768px) {
  .greetings .contents .img-container::before {
    width: calc(100% - 40px);
    height: 350px;
    right: 0;
    top: 50px;
  }
}
.greetings .contents .img-container .name {
  display: flex;
  font-size: 2rem;
  color: white;
  justify-content: flex-start;
  margin-left: 55px;
  gap: 1em;
  line-height: 1.5;
}
@media screen and (max-width:768px) {
  .greetings .contents .img-container .name {
    margin-left: 66px;
  }
}
.greetings .contents .img-container .name .post {
  font-size: 1.8rem;
}
.greetings .contents .img-wrapper {
  margin-bottom: 20px;
  width: 380px;
  height: 452px;
  overflow: hidden;
  border-radius: 20px;
}
@media screen and (max-width:768px) {
  .greetings .contents .img-wrapper {
    width: calc(100% - 40px);
    height: 350px;
    margin-bottom: 10px;
  }
}
.greetings .contents .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width:768px) {
  .greetings .contents .text-wrapper .desc {
    font-size: 1.8rem;
    line-height: 1.8;
  }
}

.philosophy {
  padding-bottom: 0;
}
@media screen and (max-width:768px) {
  .philosophy .contents {
    padding: 0 8px;
  }
}
.philosophy .philo-list-wrapper {
  max-width: 800px;
  width: 100%;
  background: var(--blue01);
  padding: 80px;
  border-radius: 40px;
  margin: 0 auto;
}
@media screen and (max-width:768px) {
  .philosophy .philo-list-wrapper {
    padding: 40px 18px;
    border-radius: 30px;
  }
}
.philosophy .philo-list {
  margin: 0 auto;
  max-width: 512px;
  width: 100%;
  counter-reset: philo-counter;
}
.philosophy .philo-list .item {
  counter-increment: philo-counter;
  background: white;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 7px 35px;
  display: flex;
  color: var(--blue01);
  font-size: clamp(18px, 1.756954612vw, 24px);
  font-weight: 600;
  position: relative;
}
@media screen and (max-width:768px) {
  .philosophy .philo-list .item {
    padding: 11px 23px;
  }
}
.philosophy .philo-list .item:not(:last-child) {
  margin-bottom: 25px;
}
@media screen and (max-width:768px) {
  .philosophy .philo-list .item:not(:last-child) {
    margin-bottom: 15px;
  }
}
.philosophy .philo-list .item::before {
  content: "0" counter(philo-counter);
  margin-right: 1em;
  margin-left: 30px;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0;
}
@media screen and (max-width:768px) {
  .philosophy .philo-list .item::before {
    font-size: 2.2rem;
    margin-right: 10px;
    margin-left: 0;
  }
}
.philosophy .philo-list .item::after {
  content: "";
  width: 35px;
  position: absolute;
  top: 50%;
  left: 0;
  height: 1px;
  background: var(--blue01);
  transform: translateY(-50%);
}
@media screen and (max-width:768px) {
  .philosophy .philo-list .item::after {
    width: 15px;
  }
}
.philosophy .sec-bottom-text {
  text-align: center;
  padding-bottom: 56px;
  margin: 45px auto 0;
  width: 99.5%;
}
@media screen and (max-width:768px) {
  .philosophy .sec-bottom-text {
    margin-top: 22px;
    padding-bottom: 0;
    width: 98%;
  }
}
.philosophy .sec-bottom-text img {
  width: 100%;
  height: auto;
}

.overview dl {
  border-top: 1px solid var(--gray01);
  background: white;
}
.overview dl > div {
  display: flex;
  border-bottom: 1px solid var(--gray01);
  border-left: 1px solid var(--gray01);
  border-right: 1px solid var(--gray01);
}
.overview dl > div dt,
.overview dl > div dd {
  padding: 28px 4.3103448276%;
  font-family: var(--ja);
}
.overview dl > div dt {
  max-width: 220px;
  width: 100%;
  background: var(--blue01);
  color: white;
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 700;
}
@media screen and (max-width:768px) {
  .overview dl > div dt {
    width: 105px;
    flex-shrink: 0;
    font-size: 1.6rem;
    padding: 20px 7px 20px 15px;
  }
}
.overview dl > div dd {
  font-size: 1.8rem;
  line-height: 2;
  display: flex;
  justify-content: flex-start;
  column-gap: 1em;
}
@media screen and (max-width:768px) {
  .overview dl > div dd {
    padding: 20px 7px 20px 15px;
    font-size: 1.6rem;
    line-height: 1.6;
    text-align: justify;
    flex: 1;
  }
}

@media screen and (max-width:768px) {
  .history {
    padding-bottom: 62px;
    margin-bottom: 68px;
  }
}
.history dl {
  padding: 0 50px;
  width: 100%;
  margin: 0 auto;
  background: white;
  padding-bottom: 60px;
  padding-top: 80px;
}
@media screen and (max-width:768px) {
  .history dl {
    padding: 0;
    padding-bottom: 40px;
  }
}
.history dl > div {
  max-width: 1060px;
  display: flex;
  border-bottom: 1px solid var(--gray01);
}
.history dl > div:nth-child(1) dt,
.history dl > div:nth-child(1) dd {
  padding-top: 0;
}
@media screen and (max-width:768px) {
  .history dl > div:nth-child(1) {
    padding-top: 40px;
  }
}
@media screen and (max-width:768px) {
  .history dl > div {
    flex-direction: column;
    padding: 24px 0;
  }
}
.history dl > div dt,
.history dl > div dd {
  padding: 28px 4.3103448276%;
}
@media screen and (max-width:768px) {
  .history dl > div dt,
  .history dl > div dd {
    padding: 0;
  }
}
.history dl > div dt {
  color: var(--blue01);
  font-size: 1.8rem;
  font-family: var(--ja);
  font-weight: 700;
  width: 20%;
}
@media screen and (max-width:768px) {
  .history dl > div dt {
    margin-bottom: 8px;
    line-height: 2;
    width: 100%;
  }
}
.history dl > div dd {
  font-size: 1.8rem;
  line-height: 2;
  width: 80%;
  font-family: var(--ja);
}
@media screen and (max-width:768px) {
  .history dl > div dd {
    font-size: 1.6rem;
    line-height: 1.6;
    width: 100%;
  }
}

@media screen and (max-width:768px) {
  main.company .wrapper .access {
    padding-bottom: 60px;
    margin-bottom: 0;
  }
}
main.company .wrapper .access address {
  font-style: normal;
  font-family: var(--ja);
  margin-bottom: 1em;
  font-size: 1.8rem;
  line-height: 1.8;
}
main.company .wrapper .access .left .text {
  font-size: 1.8rem;
  line-height: 1.8;
  font-family: var(--ja);
}
main.company .wrapper .access .right .img-wrapper {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 310px;
  max-width: 530px;
}
@media screen and (max-width:768px) {
  main.company .wrapper .access .right .img-wrapper {
    height: 220px;
  }
}
main.company .wrapper .access .right .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
main.company .wrapper .access .flex-wrapper {
  margin-bottom: 50px;
  gap: 24px;
}
@media screen and (max-width:768px) {
  main.company .wrapper .access .flex-wrapper {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 30px;
    margin-bottom: 40px;
  }
}
main.company .wrapper .access .iframe-wrapper {
  width: 100%;
  aspect-ratio: 1160/509;
  border-radius: 40px;
  overflow: hidden;
}
@media screen and (max-width:768px) {
  main.company .wrapper .access .iframe-wrapper {
    border-radius: 20px;
    aspect-ratio: 331/250;
  }
}
main.company .wrapper .access .iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.business {
  overflow-x: hidden;
}
@media screen and (max-width:768px) {
  .business .strength {
    padding-top: 50px;
    padding-bottom: 80px;
  }
  .business .strength .hg01 {
    margin-bottom: 20px;
  }
}
.business .strength .desc {
  line-height: 1.8;
  font-size: 1.8rem;
}
.business .strength-list .item {
  gap: 6.4655172414%;
  border-color: var(--black01);
}
@media screen and (max-width:768px) {
  .business .strength-list .item {
    padding: 40px 0 30px;
    flex-direction: column;
  }
}
.business .strength-list .item .img-wrapper {
  width: 48.275862069%;
  aspect-ratio: 560/410;
  overflow: hidden;
  border-radius: 40px;
}
@media screen and (max-width:768px) {
  .business .strength-list .item .img-wrapper {
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 331/280;
    margin-bottom: 36px;
  }
}
.business .strength-list .item .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.business .strength-list .item .text-wrapper {
  flex: 1;
}
.business .strength-list .item .text-wrapper .hg02 {
  position: relative;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 32px;
}
@media screen and (max-width:768px) {
  .business .strength-list .item .text-wrapper .hg02 {
    margin-bottom: 22px;
  }
}
.business .strength-list .item .text-wrapper .hg02::before {
  content: attr(data-bg-en);
  line-height: 1;
  font-size: clamp(80px, 9.3704245974vw, 12.8rem);
  z-index: -1;
  color: rgba(2, 120, 199, 0.08);
  position: absolute;
  left: -4.7413793103%;
  top: 50%;
  font-weight: 700;
  letter-spacing: 0;
  transform: translateY(-50%);
}
@media screen and (max-width:768px) {
  .business .strength-list .item .text-wrapper .hg02::before {
    left: -5.8666666667vw;
  }
}
.business .strength-list .item .text-wrapper .hg02 .num {
  display: block;
  max-height: 107px;
  height: 100%;
  width: auto;
  margin-right: 20px;
}
@media screen and (max-width:768px) {
  .business .strength-list .item .text-wrapper .hg02 .num {
    margin-right: 30px;
    height: 54px;
  }
}
.business .strength-list .item .text-wrapper dl dt {
  font-size: clamp(24px, 1.756954612vw, 32px);
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 24px;
}
@media screen and (max-width:768px) {
  .business .strength-list .item .text-wrapper dl dt {
    margin-bottom: 15px;
  }
}
.business .strength-list .item .text-wrapper dl dd {
  font-size: 1.7rem;
  line-height: 1.8;
}
@media screen and (max-width:768px) {
  .business .strength-list .item .text-wrapper dl dd {
    font-size: 1.6rem;
  }
}
@media screen and (max-width:768px) {
  .business .strength-list .item .text-wrapper .ttl .ja {
    font-size: 3.6rem;
  }
}
@media screen and (max-width:768px) {
  .business .strength-list .item .text-wrapper .ttl .en {
    font-size: 1.6rem;
  }
}

.lower .sec-business {
  padding: 0;
}

.sec-business .top-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1366/600;
  max-height: 680px;
  min-height: 480px;
  border-radius: 40px 40px 0 0;
  overflow: hidden;
}
@media screen and (max-width:768px) {
  .sec-business .top-img {
    min-height: 370px;
    max-height: 500px;
    aspect-ratio: 375/370;
    border-radius: 30px 30px 0 0;
  }
}
.sec-business .top-img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: top center;
  object-position: top center;
}
.sec-business .contents {
  position: relative;
}
.sec-business .hg-wrapper {
  padding-top: 80px;
  max-width: 858px;
  width: 100%;
  margin: 0 auto;
  background-color: white;
  border-radius: 40px;
  margin-top: -108px;
}
@media screen and (max-width:768px) {
  .sec-business .hg-wrapper {
    padding-top: 60px;
    margin-left: -12px;
    margin-right: -12px;
  }
}
.sec-business .hg01 {
  text-align: center;
}
@media screen and (max-width:768px) {
  .sec-business .hg01 {
    margin-bottom: 20px;
  }
}
.sec-business .hg01::before {
  left: 50%;
  transform: translateX(-50%);
}
.sec-business .sec-head .lead {
  text-align: center;
  font-size: clamp(22px, 2.3426061493vw, 32px);
  line-height: 1.8;
}
@media screen and (max-width:768px) {
  .sec-business .sec-head .lead {
    line-height: 1.5;
  }
}
.sec-business .sec-head .desc {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media screen and (max-width:768px) {
  .sec-business .sec-head .desc {
    text-align: justify;
    font-size: 1.6rem;
  }
}
.sec-business .business-list {
  margin-bottom: 150px;
}
@media screen and (max-width:768px) {
  .sec-business .business-list {
    margin-bottom: 110px;
  }
}
.sec-business .business-list > .item {
  display: flex;
  align-items: stretch;
  gap: 6.8965517241%;
  justify-content: flex-start;
  padding-top: 70px;
}
@media screen and (max-width:768px) {
  .sec-business .business-list > .item {
    flex-direction: column;
    padding-top: 50px;
  }
}
.sec-business .business-list > .item .img-wrapper {
  width: 47.4137931034%;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width:768px) {
  .sec-business .business-list > .item .img-wrapper {
    width: 100%;
    margin-bottom: 20px;
    height: 220px;
  }
}
.sec-business .business-list > .item .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.sec-business .business-list > .item .text-wrapper {
  width: 39.4827586207%;
}
@media screen and (max-width:768px) {
  .sec-business .business-list > .item .text-wrapper {
    width: 100%;
  }
}
.sec-business .business-list > .item .text-wrapper h3 {
  color: var(--blue01);
  font-weight: 600;
  line-height: 1.5;
  font-size: clamp(32px, 2.635431918vw, 3.6rem);
  margin-bottom: 14px;
}
@media screen and (max-width:768px) {
  .sec-business .business-list > .item .text-wrapper h3 {
    margin-bottom: 10px;
  }
}
.sec-business .business-list > .item .text-wrapper .lead {
  font-size: 2.4rem;
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 20px;
}
.sec-business .business-list > .item .text-wrapper .desc {
  line-height: 1.8;
}
.sec-business .business-list > .item .text-wrapper .child-list {
  margin-top: 20px;
  background: var(--gray02);
  border-radius: 20px;
  padding: 20px 10.9170305677% 23px;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 17px;
  column-gap: 17px;
  min-height: 100px;
}
@media screen and (max-width:768px) {
  .sec-business .business-list > .item .text-wrapper .child-list {
    padding: 20px;
  }
  .sec-business .business-list > .item .text-wrapper .child-list .sp-col {
    flex-direction: column;
  }
}
.sec-business .business-list > .item .text-wrapper .child-list .item {
  margin-bottom: 0;
  line-height: 1.8;
}
.sec-business .business-list > .item:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width:768px) {
  .sec-business .business-list > .item:nth-child(even) {
    flex-direction: column;
  }
}
.sec-business .business-role {
  padding: 150px 0;
  position: relative;
  background-color: var(--blue01);
  color: white;
  text-align: center;
}
@media screen and (max-width:768px) {
  .sec-business .business-role {
    padding: 144px 0 401px;
  }
}
.sec-business .business-role .box {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  position: relative;
}
@media screen and (max-width:768px) {
  .sec-business .business-role .box {
    width: 100%;
  }
}
.sec-business .business-role .box h3 {
  font-size: 3.2rem;
  margin-bottom: 50px;
  font-weight: 600;
  line-height: 1.8;
}
.sec-business .business-role .box .desc {
  font-size: 2rem;
  line-height: 2.1;
  font-weight: 600;
  text-align: center;
}
.sec-business .business-role .img {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
}
.sec-business .business-role .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 2;
}
.sec-business .business-role .img.img01 {
  max-width: 270px;
  width: 19.7657393851vw;
  height: 25.8418740849vw;
  max-height: 353px;
  left: calc(100% + 10.2489019034vw);
  top: 0;
}
@media screen and (max-width:768px) {
  .sec-business .business-role .img.img01 {
    width: 183px;
    height: 240px;
    top: auto;
    bottom: -270px;
    left: 0px;
  }
}
.sec-business .business-role .img.img02 {
  max-width: 240px;
  width: 17.5695461201vw;
  max-height: 310px;
  height: 227.9411764706vw;
  right: calc(100% + 13.0307467057vw);
  top: -112px;
}
@media screen and (max-width:768px) {
  .sec-business .business-role .img.img02 {
    width: 155px;
    height: 200px;
    right: 0px;
    bottom: auto;
    top: -225px;
  }
}
.sec-business .business-role .img.img03 {
  max-width: 190px;
  width: 13.9092240117vw;
  max-height: 240px;
  height: 17.5695461201vw;
  bottom: -184px;
  right: calc(100% + 10.2489019034vw);
}
@media screen and (max-width:768px) {
  .sec-business .business-role .img.img03 {
    width: 126px;
    height: 160px;
    bottom: -371px;
    right: 0px;
  }
}
.sec-business .flow-facility {
  padding: 0 0 150px;
}
@media screen and (max-width:768px) {
  .sec-business .flow-facility {
    padding-bottom: 80px;
  }
}
.sec-business .flow-facility h3 {
  color: var(--blue01);
  font-size: clamp(32px, 2.635431918vw, 36px);
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-top: 40px;
  line-height: 1.5;
}
@media screen and (max-width:768px) {
  .sec-business .flow-facility h3 {
    padding-top: 30px;
  }
}
.sec-business .flow-facility h3::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--blue01);
  position: absolute;
  top: 0;
  display: inline-block;
  left: 0;
}
.sec-business .flow-facility .desc {
  font-size: 1.8rem;
  line-height: 1.8;
  max-width: 839px;
}
@media screen and (max-width:768px) {
  .sec-business .flow-facility .desc {
    font-size: 1.6rem;
  }
}
.sec-business .flow-facility .business-flow {
  padding: 150px 0;
  position: relative;
}
@media screen and (max-width:768px) {
  .sec-business .flow-facility .business-flow {
    padding: 0;
    padding-bottom: 60px;
  }
}
.sec-business .flow-facility .business-flow::before {
  content: "";
  height: 100%;
  width: 43.1918008785%;
  background: url(../../assets/images/business-flow-bg.jpg) no-repeat top center/cover;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
@media screen and (max-width:768px) {
  .sec-business .flow-facility .business-flow::before {
    display: block;
    position: static;
    width: 100%;
    height: 260px;
    margin-bottom: 60px;
    background: url(../../assets/images/business-flow-bg-sp.jpg) no-repeat center/cover;
  }
}
.sec-business .flow-facility .business-flow .flow-list {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.0689655172%;
}
@media screen and (max-width:940px) {
  .sec-business .flow-facility .business-flow .flow-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width:480px) {
  .sec-business .flow-facility .business-flow .flow-list {
    margin-top: 42px;
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
}
.sec-business .flow-facility .business-flow .flow-list .item {
  background-color: var(--gray02);
  border-radius: 20px;
  padding: 0 20px 30px;
  position: relative;
  border: 3px solid var(--blue01);
}
@media screen and (max-width:768px) {
  .sec-business .flow-facility .business-flow .flow-list .item {
    padding: 0 30px 30px;
  }
}
.sec-business .flow-facility .business-flow .flow-list .item .step-num {
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  flex-direction: column;
  align-items: center;
  color: var(--blue01);
  font-weight: 700;
  text-align: center;
  margin: 0 auto 10px;
  line-height: 1.2;
  margin-top: -0.8em;
  background-color: var(--gray02);
}
.sec-business .flow-facility .business-flow .flow-list .item .step-num .text-step {
  font-size: 2rem;
}
.sec-business .flow-facility .business-flow .flow-list .item .step-num .num {
  font-size: 2.4rem;
}
.sec-business .flow-facility .business-flow .flow-list .item .step-num .num::after {
  content: attr(data-num);
}
.sec-business .flow-facility .business-flow .flow-list .item .img-wrapper {
  margin: 0 20px 20px;
  aspect-ratio: 1.5833333333;
  overflow: hidden;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width:768px) {
  .sec-business .flow-facility .business-flow .flow-list .item .img-wrapper {
    aspect-ratio: 2.0916666667;
    margin: 0 10px 20px;
  }
}
.sec-business .flow-facility .business-flow .flow-list .item .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.sec-business .flow-facility .business-flow .flow-list .item h4 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 5px;
  color: var(--blue01);
  font-weight: 700;
  line-height: 1.5;
}
.sec-business .flow-facility .business-flow .flow-list .item .text {
  line-height: 1.5;
  font-size: 1.5rem;
  text-align: justify;
}
.sec-business .flow-facility .business-facility .facility-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.1551724138%;
  width: 100%;
}
@media screen and (max-width:940px) {
  .sec-business .flow-facility .business-facility .facility-list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
    aspect-ratio: 331/200;
  }
}
@media screen and (max-width:480px) {
  .sec-business .flow-facility .business-facility .facility-list {
    margin-top: 30px;
    row-gap: 30px;
    grid-template-columns: 1fr;
    aspect-ratio: 331/200;
  }
}
.sec-business .flow-facility .business-facility .facility-list .item .img-wrapper {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 212/190;
  margin-bottom: 20px;
}
@media screen and (max-width:940px) {
  .sec-business .flow-facility .business-facility .facility-list .item .img-wrapper {
    margin-bottom: 10px;
    aspect-ratio: 331/200;
  }
}
.sec-business .flow-facility .business-facility .facility-list .item .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.sec-business .flow-facility .business-facility .facility-list .item h4 {
  color: var(--blue01);
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  font-size: 2.4rem;
}
.sec-business .business-support {
  background-color: var(--blue01);
  color: white;
}
.sec-business .business-support .img-wrapper {
  width: 100%;
  height: 100%;
  aspect-ratio: 1366/590;
  min-height: 400px;
  max-height: 660px;
}
@media screen and (max-width:768px) {
  .sec-business .business-support .img-wrapper {
    min-height: 250px;
    aspect-ratio: 375/250;
  }
}
.sec-business .business-support .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-position: top;
  object-position: top;
  -o-object-fit: cover;
  object-fit: cover;
}
.sec-business .business-support .ttl-container {
  background-color: var(--blue01);
  border-radius: 40px 40px 0 0;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 105px 24px 24px;
  text-align: center;
  margin-top: -230px;
  position: relative;
}
@media screen and (max-width:1140px) {
  .sec-business .business-support .ttl-container {
    padding: 60px 18px 18px;
    margin-top: -150px;
  }
}
@media screen and (max-width:768px) {
  .sec-business .business-support .ttl-container {
    padding: 40px 26px 20px;
    margin-top: -107px;
  }
}
.sec-business .business-support .ttl-container .en-ttl {
  font-weight: 600;
  font-size: 1.7rem;
  margin-bottom: 20px;
  letter-spacing: 0;
  text-transform: uppercase;
}
@media screen and (max-width:768px) {
  .sec-business .business-support .ttl-container .en-ttl {
    font-size: 1.6rem;
    line-height: 1.3;
    text-transform: none;
  }
}
.sec-business .business-support .ttl-container h3 {
  font-size: clamp(24px, 2.3426061493vw, 32px);
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.5;
}
@media screen and (max-width:768px) {
  .sec-business .business-support .ttl-container h3 {
    margin-bottom: 10px;
  }
}
.sec-business .business-support .ttl-container .desc {
  font-size: 2rem;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width:768px) {
  .sec-business .business-support .ttl-container .desc {
    font-size: 1.7rem;
    line-height: 1.6;
  }
}
.sec-business .business-support .slide-text {
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
}
@media screen and (max-width:768px) {
  .sec-business .business-support .slide-text {
    margin-top: 20px;
  }
}
.sec-business .business-support .slide-text-wrapper {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-animation: rightToLeft 70s linear infinite;
  animation: rightToLeft 70s linear infinite;
}
.sec-business .business-support .slide-text-wrapper .text-set {
  display: flex;
  flex-shrink: 0;
}
.sec-business .business-support .slide-text-wrapper .text {
  line-height: 0.72;
  opacity: 0.5;
  color: white;
  padding-right: 0.4em;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: clamp(64px, 11.420204978vw, 156px);
}

@media screen and (max-width:768px) {
  .page-ttl + section {
    padding-top: 50px;
  }
}

.contact-top-box {
  padding: 50px 54px;
  border-radius: 40px;
  background: var(--gray02);
  display: block;
  width: fit-content;
  margin: 0 auto 120px;
}
@media screen and (max-width:768px) {
  .contact-top-box {
    padding: 40px 30px;
    margin-bottom: 60px;
  }
}
.contact-top-box .text {
  margin-bottom: 20px;
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width:768px) {
  .contact-top-box .text {
    margin-bottom: 10px;
    line-height: 1.8;
  }
}
.contact-top-box .tel-link {
  gap: 1em;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.contact-top-box .tel-link .text {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0;
}
@media screen and (max-width:768px) {
  .contact-top-box .tel-link .text {
    display: none;
  }
}
.contact-top-box .tel-link .num {
  font-size: 3.2rem;
  line-height: 1.6;
  letter-spacing: 0;
  font-weight: 600;
}
@media screen and (max-width:768px) {
  .contact-top-box .tel-link .num {
    font-size: 3rem;
  }
}
.contact-top-box .time {
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.6;
  gap: 1em;
  justify-content: center;
}

.contact .form,
.contact-confirm .form,
.contact-thanks .form,
.recruit .form,
.entry .form,
.entry-confirm .form,
.entry-thanks .form {
  font-weight: 700;
  font-family: var(--ja);
  font-size: 1.8rem;
}
.contact .form .wpcf7-list-item,
.contact-confirm .form .wpcf7-list-item,
.contact-thanks .form .wpcf7-list-item,
.recruit .form .wpcf7-list-item,
.entry .form .wpcf7-list-item,
.entry-confirm .form .wpcf7-list-item,
.entry-thanks .form .wpcf7-list-item {
  margin-left: 0;
}
.contact .form span.nocheck::before,
.contact-confirm .form span.nocheck::before,
.contact-thanks .form span.nocheck::before,
.recruit .form span.nocheck::before,
.entry .form span.nocheck::before,
.entry-confirm .form span.nocheck::before,
.entry-thanks .form span.nocheck::before {
  content: "※任意";
  color: var(--gray01);
  font-size: 1.8rem;
  margin-left: 0.3em;
  font-weight: 500;
}
@media screen and (max-width:768px) {
  .contact .form span.nocheck::before,
  .contact-confirm .form span.nocheck::before,
  .contact-thanks .form span.nocheck::before,
  .recruit .form span.nocheck::before,
  .entry .form span.nocheck::before,
  .entry-confirm .form span.nocheck::before,
  .entry-thanks .form span.nocheck::before {
    font-size: 1.4rem;
  }
}
.contact .form .check::before,
.contact-confirm .form .check::before,
.contact-thanks .form .check::before,
.recruit .form .check::before,
.entry .form .check::before,
.entry-confirm .form .check::before,
.entry-thanks .form .check::before {
  content: "※必須";
  color: var(--blue01);
  font-size: 1.8rem;
  margin-left: 0.3em;
  font-weight: 500;
}
@media screen and (max-width:768px) {
  .contact .form .check::before,
  .contact-confirm .form .check::before,
  .contact-thanks .form .check::before,
  .recruit .form .check::before,
  .entry .form .check::before,
  .entry-confirm .form .check::before,
  .entry-thanks .form .check::before {
    font-size: 1.4rem;
  }
}
.contact .form .year td.flex,
.contact-confirm .form .year td.flex,
.contact-thanks .form .year td.flex,
.recruit .form .year td.flex,
.entry .form .year td.flex,
.entry-confirm .form .year td.flex,
.entry-thanks .form .year td.flex {
  justify-content: flex-start;
}
@media screen and (max-width:768px) {
  .contact .form .year td.flex,
  .contact-confirm .form .year td.flex,
  .contact-thanks .form .year td.flex,
  .recruit .form .year td.flex,
  .entry .form .year td.flex,
  .entry-confirm .form .year td.flex,
  .entry-thanks .form .year td.flex {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.contact .form .year td.flex label,
.contact-confirm .form .year td.flex label,
.contact-thanks .form .year td.flex label,
.recruit .form .year td.flex label,
.entry .form .year td.flex label,
.entry-confirm .form .year td.flex label,
.entry-thanks .form .year td.flex label {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 1.8rem;
}
@media screen and (max-width:768px) {
  .contact .form .year td.flex label,
  .contact-confirm .form .year td.flex label,
  .contact-thanks .form .year td.flex label,
  .recruit .form .year td.flex label,
  .entry .form .year td.flex label,
  .entry-confirm .form .year td.flex label,
  .entry-thanks .form .year td.flex label {
    font-size: 1.5rem;
    line-height: 2;
    margin-right: 24px;
  }
}
.contact .form input[type=radio],
.contact-confirm .form input[type=radio],
.contact-thanks .form input[type=radio],
.recruit .form input[type=radio],
.entry .form input[type=radio],
.entry-confirm .form input[type=radio],
.entry-thanks .form input[type=radio] {
  appearance: none;
  cursor: pointer;
  background: var(--gray02);
  border-radius: 50%;
  border: none;
  width: 20px;
  height: 20px;
  margin-right: 0.5em;
  transition: all 0.2s var(--cubic-bezier);
  position: relative;
}
.contact .form input[type=radio]:checked::before,
.contact-confirm .form input[type=radio]:checked::before,
.contact-thanks .form input[type=radio]:checked::before,
.recruit .form input[type=radio]:checked::before,
.entry .form input[type=radio]:checked::before,
.entry-confirm .form input[type=radio]:checked::before,
.entry-thanks .form input[type=radio]:checked::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue01);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contact .form input[type=checkbox],
.contact-confirm .form input[type=checkbox],
.contact-thanks .form input[type=checkbox],
.recruit .form input[type=checkbox],
.entry .form input[type=checkbox],
.entry-confirm .form input[type=checkbox],
.entry-thanks .form input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  background: var(--gray02);
  border: none;
  margin-right: 0.5em;
  position: relative;
  transition: all 0.2s ease;
}
.contact .form input[type=checkbox]:checked::before,
.contact-confirm .form input[type=checkbox]:checked::before,
.contact-thanks .form input[type=checkbox]:checked::before,
.recruit .form input[type=checkbox]:checked::before,
.entry .form input[type=checkbox]:checked::before,
.entry-confirm .form input[type=checkbox]:checked::before,
.entry-thanks .form input[type=checkbox]:checked::before {
  content: "";
  top: 2px;
  left: 6px;
  display: block;
  width: 6px;
  height: 12px;
  position: absolute;
  transform-origin: center;
  border-right: var(--blue01) 3px solid;
  border-bottom: var(--blue01) 3px solid;
  transform: rotate(45deg);
}
@media screen and (max-width:768px) {
  .contact .form input[type=checkbox],
  .contact-confirm .form input[type=checkbox],
  .contact-thanks .form input[type=checkbox],
  .recruit .form input[type=checkbox],
  .entry .form input[type=checkbox],
  .entry-confirm .form input[type=checkbox],
  .entry-thanks .form input[type=checkbox] {
    width: 26px;
    height: 26px;
  }
  .contact .form input[type=checkbox]:checked::before,
  .contact-confirm .form input[type=checkbox]:checked::before,
  .contact-thanks .form input[type=checkbox]:checked::before,
  .recruit .form input[type=checkbox]:checked::before,
  .entry .form input[type=checkbox]:checked::before,
  .entry-confirm .form input[type=checkbox]:checked::before,
  .entry-thanks .form input[type=checkbox]:checked::before {
    top: 3px;
    left: 10px;
    width: 10px;
    height: 19px;
    border-right-width: 4px;
    border-bottom-width: 4px;
  }
}
.contact .form table,
.contact-confirm .form table,
.contact-thanks .form table,
.recruit .form table,
.entry .form table,
.entry-confirm .form table,
.entry-thanks .form table {
  display: block;
  width: 100%;
}
.contact .form table tbody,
.contact-confirm .form table tbody,
.contact-thanks .form table tbody,
.recruit .form table tbody,
.entry .form table tbody,
.entry-confirm .form table tbody,
.entry-thanks .form table tbody {
  display: block;
}
.contact .form table tr,
.contact-confirm .form table tr,
.contact-thanks .form table tr,
.recruit .form table tr,
.entry .form table tr,
.entry-confirm .form table tr,
.entry-thanks .form table tr {
  display: block;
  margin-bottom: 32px;
}
@media screen and (max-width:768px) {
  .contact .form table tr,
  .contact-confirm .form table tr,
  .contact-thanks .form table tr,
  .recruit .form table tr,
  .entry .form table tr,
  .entry-confirm .form table tr,
  .entry-thanks .form table tr {
    margin-bottom: 25px;
  }
}
.contact .form table tr th,
.contact .form table tr .zip-ttl,
.contact-confirm .form table tr th,
.contact-confirm .form table tr .zip-ttl,
.contact-thanks .form table tr th,
.contact-thanks .form table tr .zip-ttl,
.recruit .form table tr th,
.recruit .form table tr .zip-ttl,
.entry .form table tr th,
.entry .form table tr .zip-ttl,
.entry-confirm .form table tr th,
.entry-confirm .form table tr .zip-ttl,
.entry-thanks .form table tr th,
.entry-thanks .form table tr .zip-ttl {
  margin-bottom: 5px;
  display: block;
  line-height: 2;
}
.contact .form table tr .zip-wrap,
.contact-confirm .form table tr .zip-wrap,
.contact-thanks .form table tr .zip-wrap,
.recruit .form table tr .zip-wrap,
.entry .form table tr .zip-wrap,
.entry-confirm .form table tr .zip-wrap,
.entry-thanks .form table tr .zip-wrap {
  margin-bottom: 6px;
}
.contact .form table tr .zip-wrap input,
.contact-confirm .form table tr .zip-wrap input,
.contact-thanks .form table tr .zip-wrap input,
.recruit .form table tr .zip-wrap input,
.entry .form table tr .zip-wrap input,
.entry-confirm .form table tr .zip-wrap input,
.entry-thanks .form table tr .zip-wrap input {
  max-width: 240px;
  width: 100%;
}
@media screen and (max-width:768px) {
  .contact .form table tr .zip-wrap input,
  .contact-confirm .form table tr .zip-wrap input,
  .contact-thanks .form table tr .zip-wrap input,
  .recruit .form table tr .zip-wrap input,
  .entry .form table tr .zip-wrap input,
  .entry-confirm .form table tr .zip-wrap input,
  .entry-thanks .form table tr .zip-wrap input {
    max-width: 100%;
  }
}
.contact .form table tr .flex,
.contact-confirm .form table tr .flex,
.contact-thanks .form table tr .flex,
.recruit .form table tr .flex,
.entry .form table tr .flex,
.entry-confirm .form table tr .flex,
.entry-thanks .form table tr .flex {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.contact .form table tr.kind label,
.contact-confirm .form table tr.kind label,
.contact-thanks .form table tr.kind label,
.recruit .form table tr.kind label,
.entry .form table tr.kind label,
.entry-confirm .form table tr.kind label,
.entry-thanks .form table tr.kind label {
  display: flex;
  align-items: center;
}
.contact .form table tr.kind td,
.contact-confirm .form table tr.kind td,
.contact-thanks .form table tr.kind td,
.recruit .form table tr.kind td,
.entry .form table tr.kind td,
.entry-confirm .form table tr.kind td,
.entry-thanks .form table tr.kind td {
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.contact .form table tr.kind td label,
.contact-confirm .form table tr.kind td label,
.contact-thanks .form table tr.kind td label,
.recruit .form table tr.kind td label,
.entry .form table tr.kind td label,
.entry-confirm .form table tr.kind td label,
.entry-thanks .form table tr.kind td label {
  font-weight: 500;
}
@media screen and (max-width:768px) {
  .contact .form table tr.kind td,
  .contact-confirm .form table tr.kind td,
  .contact-thanks .form table tr.kind td,
  .recruit .form table tr.kind td,
  .entry .form table tr.kind td,
  .entry-confirm .form table tr.kind td,
  .entry-thanks .form table tr.kind td {
    gap: 3px;
  }
}
@media screen and (max-width:768px) {
  .contact .form table tr.kind td .wpcf7-checkbox,
  .contact-confirm .form table tr.kind td .wpcf7-checkbox,
  .contact-thanks .form table tr.kind td .wpcf7-checkbox,
  .recruit .form table tr.kind td .wpcf7-checkbox,
  .entry .form table tr.kind td .wpcf7-checkbox,
  .entry-confirm .form table tr.kind td .wpcf7-checkbox,
  .entry-thanks .form table tr.kind td .wpcf7-checkbox {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
}
.contact .form table tr.accept td,
.contact-confirm .form table tr.accept td,
.contact-thanks .form table tr.accept td,
.recruit .form table tr.accept td,
.entry .form table tr.accept td,
.entry-confirm .form table tr.accept td,
.entry-thanks .form table tr.accept td {
  margin-bottom: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.contact .form table tr.accept td label,
.contact-confirm .form table tr.accept td label,
.contact-thanks .form table tr.accept td label,
.recruit .form table tr.accept td label,
.entry .form table tr.accept td label,
.entry-confirm .form table tr.accept td label,
.entry-thanks .form table tr.accept td label {
  display: flex;
  align-items: center;
  font-weight: 500;
}
.contact .form table tr.accept td .under,
.contact-confirm .form table tr.accept td .under,
.contact-thanks .form table tr.accept td .under,
.recruit .form table tr.accept td .under,
.entry .form table tr.accept td .under,
.entry-confirm .form table tr.accept td .under,
.entry-thanks .form table tr.accept td .under {
  text-decoration: underline;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: all 0.3s var(--cubic-bezier);
  width: 100%;
}
@media screen and (max-width:768px) {
  .contact .form table tr.accept td .under,
  .contact-confirm .form table tr.accept td .under,
  .contact-thanks .form table tr.accept td .under,
  .recruit .form table tr.accept td .under,
  .entry .form table tr.accept td .under,
  .entry-confirm .form table tr.accept td .under,
  .entry-thanks .form table tr.accept td .under {
    margin: 0 auto;
    margin-top: 5px;
    text-align: center;
  }
}
.contact .form table tr.accept td .under:hover,
.contact-confirm .form table tr.accept td .under:hover,
.contact-thanks .form table tr.accept td .under:hover,
.recruit .form table tr.accept td .under:hover,
.entry .form table tr.accept td .under:hover,
.entry-confirm .form table tr.accept td .under:hover,
.entry-thanks .form table tr.accept td .under:hover {
  text-decoration: none;
}
.contact .form table tr.your-name td.flex label,
.contact .form table tr .your-kana td.flex label, .contact .form table tr .your-address td.flex label,
.contact-confirm .form table tr.your-name td.flex label,
.contact-confirm .form table tr .your-kana td.flex label,
.contact-confirm .form table tr .your-address td.flex label,
.contact-thanks .form table tr.your-name td.flex label,
.contact-thanks .form table tr .your-kana td.flex label,
.contact-thanks .form table tr .your-address td.flex label,
.recruit .form table tr.your-name td.flex label,
.recruit .form table tr .your-kana td.flex label,
.recruit .form table tr .your-address td.flex label,
.entry .form table tr.your-name td.flex label,
.entry .form table tr .your-kana td.flex label,
.entry .form table tr .your-address td.flex label,
.entry-confirm .form table tr.your-name td.flex label,
.entry-confirm .form table tr .your-kana td.flex label,
.entry-confirm .form table tr .your-address td.flex label,
.entry-thanks .form table tr.your-name td.flex label,
.entry-thanks .form table tr .your-kana td.flex label,
.entry-thanks .form table tr .your-address td.flex label {
  width: 3em;
  margin-right: 0;
}
@media screen and (max-width:768px) {
  .contact .form table th,
  .contact-confirm .form table th,
  .contact-thanks .form table th,
  .recruit .form table th,
  .entry .form table th,
  .entry-confirm .form table th,
  .entry-thanks .form table th {
    font-size: 1.5rem;
  }
}
.contact .form table td,
.contact-confirm .form table td,
.contact-thanks .form table td,
.recruit .form table td,
.entry .form table td,
.entry-confirm .form table td,
.entry-thanks .form table td {
  width: 100%;
  display: block;
  line-height: 2;
}
@media screen and (max-width:768px) {
  .contact .form table td,
  .contact-confirm .form table td,
  .contact-thanks .form table td,
  .recruit .form table td,
  .entry .form table td,
  .entry-confirm .form table td,
  .entry-thanks .form table td {
    font-size: 1.5rem;
  }
}
.contact .form table td.flex,
.contact-confirm .form table td.flex,
.contact-thanks .form table td.flex,
.recruit .form table td.flex,
.entry .form table td.flex,
.entry-confirm .form table td.flex,
.entry-thanks .form table td.flex {
  gap: 12% 4px;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width:768px) {
  .contact .form table td.flex,
  .contact-confirm .form table td.flex,
  .contact-thanks .form table td.flex,
  .recruit .form table td.flex,
  .entry .form table td.flex,
  .entry-confirm .form table td.flex,
  .entry-thanks .form table td.flex {
    flex-direction: column;
    row-gap: 15px;
  }
}
.contact .form table td.flex label,
.contact-confirm .form table td.flex label,
.contact-thanks .form table td.flex label,
.recruit .form table td.flex label,
.entry .form table td.flex label,
.entry-confirm .form table td.flex label,
.entry-thanks .form table td.flex label {
  margin-right: 16px;
  white-space: nowrap;
  font-weight: 700;
}
.contact .form table td.flex div,
.contact-confirm .form table td.flex div,
.contact-thanks .form table td.flex div,
.recruit .form table td.flex div,
.entry .form table td.flex div,
.entry-confirm .form table td.flex div,
.entry-thanks .form table td.flex div {
  display: flex;
  align-items: center;
  width: 48%;
}
@media screen and (max-width:768px) {
  .contact .form table td.flex div,
  .contact-confirm .form table td.flex div,
  .contact-thanks .form table td.flex div,
  .recruit .form table td.flex div,
  .entry .form table td.flex div,
  .entry-confirm .form table td.flex div,
  .entry-thanks .form table td.flex div {
    width: 100%;
  }
}
.contact .form table td input[type=text],
.contact .form table td input[type=email],
.contact .form table td input[type=tel],
.contact .form table td textarea,
.contact-confirm .form table td input[type=text],
.contact-confirm .form table td input[type=email],
.contact-confirm .form table td input[type=tel],
.contact-confirm .form table td textarea,
.contact-thanks .form table td input[type=text],
.contact-thanks .form table td input[type=email],
.contact-thanks .form table td input[type=tel],
.contact-thanks .form table td textarea,
.recruit .form table td input[type=text],
.recruit .form table td input[type=email],
.recruit .form table td input[type=tel],
.recruit .form table td textarea,
.entry .form table td input[type=text],
.entry .form table td input[type=email],
.entry .form table td input[type=tel],
.entry .form table td textarea,
.entry-confirm .form table td input[type=text],
.entry-confirm .form table td input[type=email],
.entry-confirm .form table td input[type=tel],
.entry-confirm .form table td textarea,
.entry-thanks .form table td input[type=text],
.entry-thanks .form table td input[type=email],
.entry-thanks .form table td input[type=tel],
.entry-thanks .form table td textarea {
  width: 100%;
  border: none;
  padding: 16px 24px;
  line-height: 2;
  background-color: var(--gray02);
  margin-left: 0;
  font-family: var(--ja);
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width:768px) {
  .contact .form table td input[type=text],
  .contact .form table td input[type=email],
  .contact .form table td input[type=tel],
  .contact .form table td textarea,
  .contact-confirm .form table td input[type=text],
  .contact-confirm .form table td input[type=email],
  .contact-confirm .form table td input[type=tel],
  .contact-confirm .form table td textarea,
  .contact-thanks .form table td input[type=text],
  .contact-thanks .form table td input[type=email],
  .contact-thanks .form table td input[type=tel],
  .contact-thanks .form table td textarea,
  .recruit .form table td input[type=text],
  .recruit .form table td input[type=email],
  .recruit .form table td input[type=tel],
  .recruit .form table td textarea,
  .entry .form table td input[type=text],
  .entry .form table td input[type=email],
  .entry .form table td input[type=tel],
  .entry .form table td textarea,
  .entry-confirm .form table td input[type=text],
  .entry-confirm .form table td input[type=email],
  .entry-confirm .form table td input[type=tel],
  .entry-confirm .form table td textarea,
  .entry-thanks .form table td input[type=text],
  .entry-thanks .form table td input[type=email],
  .entry-thanks .form table td input[type=tel],
  .entry-thanks .form table td textarea {
    padding: 4px 20px;
    border-radius: 3px;
  }
}
.contact .form table td .wpcf7-checkbox span,
.contact-confirm .form table td .wpcf7-checkbox span,
.contact-thanks .form table td .wpcf7-checkbox span,
.recruit .form table td .wpcf7-checkbox span,
.entry .form table td .wpcf7-checkbox span,
.entry-confirm .form table td .wpcf7-checkbox span,
.entry-thanks .form table td .wpcf7-checkbox span {
  vertical-align: middle;
}
.contact .form .btn-container,
.contact-confirm .form .btn-container,
.contact-thanks .form .btn-container,
.recruit .form .btn-container,
.entry .form .btn-container,
.entry-confirm .form .btn-container,
.entry-thanks .form .btn-container {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
@media screen and (max-width:768px) {
  .contact .form .btn-container,
  .contact-confirm .form .btn-container,
  .contact-thanks .form .btn-container,
  .recruit .form .btn-container,
  .entry .form .btn-container,
  .entry-confirm .form .btn-container,
  .entry-thanks .form .btn-container {
    margin-top: 50px;
  }
}
.contact .form .btn01-wrap,
.contact-confirm .form .btn01-wrap,
.contact-thanks .form .btn01-wrap,
.recruit .form .btn01-wrap,
.entry .form .btn01-wrap,
.entry-confirm .form .btn01-wrap,
.entry-thanks .form .btn01-wrap {
  position: relative;
  display: inline-block;
}
.contact .form .btn01,
.contact-confirm .form .btn01,
.contact-thanks .form .btn01,
.recruit .form .btn01,
.entry .form .btn01,
.entry-confirm .form .btn01,
.entry-thanks .form .btn01 {
  width: 210px;
  height: 64px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 0 20px;
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.3s var(--cubic-bezier);
  border: 1px solid var(--blue01);
  border-radius: 40px;
  margin-top: 0;
  background: none;
  cursor: pointer;
}
.contact .form,
.contact-confirm .form,
.contact-thanks .form,
.recruit .form,
.entry .form,
.entry-confirm .form,
.entry-thanks .form {
  /* 矢印 */
}
.contact .form .btn01-wrap .arrow,
.contact-confirm .form .btn01-wrap .arrow,
.contact-thanks .form .btn01-wrap .arrow,
.recruit .form .btn01-wrap .arrow,
.entry .form .btn01-wrap .arrow,
.entry-confirm .form .btn01-wrap .arrow,
.entry-thanks .form .btn01-wrap .arrow {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blue01);
  width: 34px;
  height: 34px;
  border-radius: 50%;
}
.contact .form .btn01-wrap .arrow::after,
.contact-confirm .form .btn01-wrap .arrow::after,
.contact-thanks .form .btn01-wrap .arrow::after,
.recruit .form .btn01-wrap .arrow::after,
.entry .form .btn01-wrap .arrow::after,
.entry-confirm .form .btn01-wrap .arrow::after,
.entry-thanks .form .btn01-wrap .arrow::after {
  content: "";
  width: 16px;
  height: 12px;
  display: inline-block;
  background: url(../../assets/images/icon-btn01-arrow.svg) no-repeat center/contain;
}
.contact .form,
.contact-confirm .form,
.contact-thanks .form,
.recruit .form,
.entry .form,
.entry-confirm .form,
.entry-thanks .form {
  /* hover */
}
.contact .form .btn01:hover,
.contact-confirm .form .btn01:hover,
.contact-thanks .form .btn01:hover,
.recruit .form .btn01:hover,
.entry .form .btn01:hover,
.entry-confirm .form .btn01:hover,
.entry-thanks .form .btn01:hover {
  background-color: var(--blue01);
  color: white;
}
.contact .form,
.contact-confirm .form,
.contact-thanks .form,
.recruit .form,
.entry .form,
.entry-confirm .form,
.entry-thanks .form {
  /* CF7: 未入力時など disabled でも文字を薄くしない */
}
.contact .form .btn01:disabled,
.contact .form .btn01[disabled],
.contact-confirm .form .btn01:disabled,
.contact-confirm .form .btn01[disabled],
.contact-thanks .form .btn01:disabled,
.contact-thanks .form .btn01[disabled],
.recruit .form .btn01:disabled,
.recruit .form .btn01[disabled],
.entry .form .btn01:disabled,
.entry .form .btn01[disabled],
.entry-confirm .form .btn01:disabled,
.entry-confirm .form .btn01[disabled],
.entry-thanks .form .btn01:disabled,
.entry-thanks .form .btn01[disabled] {
  opacity: 1;
  color: var(--black01);
  -webkit-text-fill-color: var(--black01);
}
.contact .form .btn01:disabled:hover,
.contact .form .btn01[disabled]:hover,
.contact-confirm .form .btn01:disabled:hover,
.contact-confirm .form .btn01[disabled]:hover,
.contact-thanks .form .btn01:disabled:hover,
.contact-thanks .form .btn01[disabled]:hover,
.recruit .form .btn01:disabled:hover,
.recruit .form .btn01[disabled]:hover,
.entry .form .btn01:disabled:hover,
.entry .form .btn01[disabled]:hover,
.entry-confirm .form .btn01:disabled:hover,
.entry-confirm .form .btn01[disabled]:hover,
.entry-thanks .form .btn01:disabled:hover,
.entry-thanks .form .btn01[disabled]:hover {
  background: none;
  background-color: transparent;
  color: var(--black01);
  -webkit-text-fill-color: var(--black01);
}
.contact .form .wpcf7-form-control-wrap,
.contact-confirm .form .wpcf7-form-control-wrap,
.contact-thanks .form .wpcf7-form-control-wrap,
.recruit .form .wpcf7-form-control-wrap,
.entry .form .wpcf7-form-control-wrap,
.entry-confirm .form .wpcf7-form-control-wrap,
.entry-thanks .form .wpcf7-form-control-wrap {
  width: 100%;
}

::placeholder {
  color: var(--gray01);
}

.contact-confirm .form table tr.your-address td.flex, .entry-confirm .form table tr.your-address td.flex {
  column-gap: 16px;
  row-gap: 4px;
  justify-content: flex-start;
}
.contact-confirm .form table tr.your-address td.flex .zip-wrap, .entry-confirm .form table tr.your-address td.flex .zip-wrap {
  width: fit-content;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  box-shadow: none;
}

.h1-wrapper {
  gap: 30px;
}
.h1-wrapper span {
  font-size: 2.2rem;
  font-weight: 600;
}

.r-mv {
  width: 100%;
  height: calc(100svh + 36px);
  top: 0;
  display: flex;
  position: sticky;
}
@media screen and (max-width:768px) {
  .r-mv {
    flex-direction: column;
    height: calc(100svh - 64px);
    top: 64px;
  }
}
.r-mv .r-mv-swiper {
  width: 57.1010248902%;
  overflow: hidden;
}
@media screen and (max-width:768px) {
  .r-mv .r-mv-swiper {
    width: 100%;
  }
}
.r-mv .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.r-mv .text-wrapper {
  flex-shrink: 1;
  width: 42.8989751098%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width:768px) {
  .r-mv .text-wrapper {
    width: 88.2666666667%;
    margin: 11px auto 0;
    justify-content: flex-start;
  }
}
.r-mv .text-wrapper .message {
  width: 83.6177474403%;
}
@media screen and (max-width:768px) {
  .r-mv .text-wrapper .message {
    width: 81.8731117825%;
  }
}
.r-mv .text-wrapper .message span {
  width: 100%;
}
.r-mv .text-wrapper .ja {
  margin-top: 32px;
  font-size: clamp(15px, 1.317715959vw, 25px);
  color: var(--blue01);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width:768px) {
  .r-mv .text-wrapper .ja {
    margin-top: 16px;
    margin-bottom: 24px;
    font-weight: 700;
  }
}
.r-mv .text-wrapper .en {
  width: 100%;
  margin: 0 auto;
  display: block;
}
.r-mv .scrolldown {
  position: absolute;
  left: 25px;
  bottom: 0;
  height: 124px;
  z-index: 2;
}
@media screen and (max-width:768px) {
  .r-mv .scrolldown {
    left: 22px;
    bottom: -36px;
  }
}
.r-mv .scrolldown span {
  color: var(--blue01);
  font-size: 1rem;
  font-weight: 600;
  writing-mode: vertical-lr;
}
.r-mv .scrolldown::after {
  content: "";
  bottom: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5px;
  height: 72px;
  display: block;
  background: linear-gradient(to bottom, var(--blue01) 0px, var(--blue01) 36px, white 36px, white 72px);
  z-index: 3;
}
@media screen and (max-width:768px) {
  .r-mv .scrolldown::after {
    width: 1px;
  }
}

.r-message {
  padding: 160px 0;
  margin-top: -36px;
  width: 100%;
  z-index: 1;
  background: url(../../assets/images/r_message.webp) no-repeat center/cover;
  background-position: center 50%;
  position: relative;
  will-change: background-position;
}
@media screen and (max-width:768px) {
  .r-message {
    margin-top: 0;
    padding: 80px 0;
    background: url(../../assets/images/r_message_sp.webp) no-repeat center/cover;
  }
}
.r-message::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 120, 199, 0.9);
  z-index: 1;
}
.r-message .r-message-parallax {
  position: relative;
  z-index: 2;
}
.r-message .inner {
  position: relative;
  z-index: 2;
}
.r-message .contents {
  display: flex;
  color: white;
  justify-content: center;
  gap: 7.2413793103%;
}
@media screen and (max-width:768px) {
  .r-message .contents {
    flex-direction: column;
  }
}
.r-message .contents h2 {
  font-size: 1.8rem;
  font-weight: 700;
  padding-bottom: 16px;
  letter-spacing: 0;
  position: relative;
  align-self: flex-start;
}
@media screen and (max-width:768px) {
  .r-message .contents h2 {
    margin-bottom: 50px;
  }
}
.r-message .contents h2::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--yellow01);
  left: 0;
  bottom: 0;
  position: absolute;
}
.r-message .contents .text-wrapper {
  max-width: 487px;
  width: 100%;
}
.r-message .contents .text-wrapper .lead {
  margin-bottom: 50px;
  font-size: clamp(24px, 2.3426061493vw, 32px);
  font-weight: 600;
}
@media screen and (max-width:768px) {
  .r-message .contents .text-wrapper .lead {
    margin-bottom: 30px;
  }
}
.r-message .contents .text-wrapper .desc {
  line-height: 2.1;
  font-size: 1.7rem;
}
@media screen and (max-width:768px) {
  .r-message .contents .text-wrapper .desc {
    line-height: 2;
    font-size: 1.6rem;
  }
}
.r-message .breadcrumb {
  display: none;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 30px;
  z-index: 3;
  margin-top: 0;
}
@media screen and (max-width:768px) {
  .r-message .breadcrumb {
    display: block;
  }
}
.r-message .breadcrumb span {
  color: white;
}

.en2 {
  font-family: "Roboto", sans-serif;
}

.has-y-circle {
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 50px;
  isolation: isolate;
  line-height: 1.5;
}
.has-y-circle span {
  position: relative;
  z-index: 1;
}
.has-y-circle::before {
  position: absolute;
  top: 50%;
  left: 0.4em;
  transform: translateY(-50%);
  content: "";
  white-space: nowrap;
  z-index: -1;
  letter-spacing: 0;
  pointer-events: none;
  font-weight: 800;
  color: var(--gray02);
  font-family: var(--en2);
  line-height: 1;
  font-size: clamp(64px, 10.980966325vw, 150px);
}
@media screen and (max-width:768px) {
  .has-y-circle::before {
    left: 0;
  }
}
.has-y-circle::after {
  content: "";
  width: 11px;
  position: relative;
  margin-right: 0.5em;
  display: block;
  background: var(--yellow01);
  border-radius: 50%;
  height: 11px;
  z-index: 1;
}
@media screen and (max-width:768px) {
  .has-y-circle::after {
    margin-right: 8px;
  }
}

.r-reason {
  --reason-page-turn: 0.7s;
  background: white;
  z-index: 1;
  position: relative;
}
.r-reason .has-y-circle::before {
  content: "WHY KATSURA?";
}
@media screen and (max-width:768px) {
  .r-reason .has-y-circle::before {
    content: "WHY\aKATSURA?";
    white-space: pre-line;
  }
}
@media screen and (max-width:768px) {
  .r-reason .desc {
    font-size: 1.7rem;
    line-height: 1.8;
  }
}
.r-reason .reason-scroll {
  position: relative;
  margin-top: 60px;
}
@media screen and (max-width:768px) {
  .r-reason .reason-scroll {
    margin-top: 50px;
  }
}
.r-reason .reason-sticky {
  position: sticky;
  top: 220px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width:768px) {
  .r-reason .reason-sticky {
    flex-direction: column;
    position: static;
  }
}
.r-reason .reason-texts {
  flex: 1;
}
.r-reason .reason-text {
  width: 37.5%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--cubic-bezier);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width:768px) {
  .r-reason .reason-text {
    width: 100%;
  }
}
.r-reason .reason-text.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
}
.r-reason .reason-text .sub-ttl {
  font-size: 3.2rem;
  color: var(--blue01);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5;
  margin-bottom: 20px;
}
.r-reason .reason-text h4 {
  font-size: clamp(24px, 2.635431918vw, 3.6rem);
  font-weight: 600;
  padding-bottom: 20px;
  margin-bottom: 35px;
  border-bottom: 2px solid var(--blue01);
}
.r-reason .reason-text .desc {
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width:768px) {
  .r-reason .reason-text .desc {
    font-size: 1.7rem;
    line-height: 1.8;
  }
}
.r-reason .reason-images {
  width: 53.6206896552%;
  position: relative;
  margin-left: auto;
  aspect-ratio: 622/477;
  overflow: hidden;
  border-radius: 40px;
  isolation: isolate;
  flex-shrink: 0;
}
.r-reason .reason-image {
  pointer-events: none;
  z-index: 1;
  visibility: hidden;
  clip-path: inset(0 0 0 0);
  position: absolute;
  inset: 0;
}
.r-reason .reason-image.is-current {
  z-index: 3;
  visibility: visible;
}
.r-reason .reason-image.is-next {
  z-index: 2;
  visibility: visible;
}
.r-reason .reason-image.is-leaving {
  z-index: 4;
  visibility: visible;
  animation: reasonPageTurn var(--reason-page-turn) var(--cubic-bezier) forwards;
}
.r-reason .reason-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.r-reason .reason-triggers {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width:768px) {
  .r-reason .reason-triggers {
    display: none;
  }
}
.r-reason .reason-trigger {
  height: 58vh;
  min-height: 400px;
}
.r-reason .reason-trigger:last-child {
  height: 120vh;
  min-height: 680px;
}
.r-reason .reason-list-wrapper {
  margin-top: 50px;
}
.r-reason .reason-list-wrapper .reason-list .item:not(:last-child) {
  margin-bottom: 50px;
}
.r-reason .reason-list-wrapper .reason-list .item .text-wrapper {
  margin-bottom: 20px;
}
.r-reason .reason-list-wrapper .reason-list .item .text-wrapper .sub-ttl {
  color: var(--blue01);
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
  letter-spacing: 0;
}
.r-reason .reason-list-wrapper .reason-list .item .text-wrapper h4 {
  line-height: 1.5;
  font-size: 2.4rem;
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  border-bottom: 2px solid var(--blue01);
}
.r-reason .reason-list-wrapper .reason-list .item .text-wrapper .desc {
  font-size: 1.7rem;
  line-height: 1.8;
}
.r-reason .reason-list-wrapper .reason-list .item .img-wrapper {
  width: 100%;
  aspect-ratio: 331/280;
  border-radius: 20px;
  overflow: hidden;
}
.r-reason .reason-list-wrapper .reason-list .item .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-work {
  background: var(--blue01);
  border-radius: 40px 40px 0 0;
  position: relative;
}
@media screen and (max-width:768px) {
  .our-work {
    border-radius: 30px 30px 0 0;
  }
}
.our-work .has-y-circle {
  color: white;
  z-index: 2;
}
.our-work .has-y-circle::before {
  content: "OUR WORK";
  z-index: 1;
  color: rgba(255, 255, 255, 0.3);
}
.our-work .sec-top .lead {
  color: white;
}
.our-work .sec-top .desc {
  color: white;
}
@media screen and (max-width:768px) {
  .our-work .sec-top .desc {
    font-size: 1.7rem;
    line-height: 1.8;
  }
}
.our-work .contents {
  background: white;
  border-radius: 40px;
  width: 100%;
  padding: 80px 40px;
  margin-top: 70px;
}
@media screen and (max-width:768px) {
  .our-work .contents {
    margin-top: 50px;
    padding: 60px 0;
    border-radius: 30px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
  }
}
.our-work .our-work-list {
  max-width: 980px;
  width: 100%;
  margin: 0 auto 100px;
}
@media screen and (max-width:768px) {
  .our-work .our-work-list {
    width: 88.2666666667%;
    margin-bottom: 70px;
  }
}
.our-work .our-work-list .item {
  gap: 5.306122449%;
  align-items: stretch;
}
@media screen and (max-width:768px) {
  .our-work .our-work-list .item {
    flex-direction: column-reverse;
  }
}
.our-work .our-work-list .item:not(:last-child) {
  margin-bottom: 80px;
}
@media screen and (max-width:768px) {
  .our-work .our-work-list .item:not(:last-child) {
    margin-bottom: 60px;
  }
}
.our-work .our-work-list .item .img-wrapper {
  width: 51.0204081633%;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width:768px) {
  .our-work .our-work-list .item .img-wrapper {
    width: 100%;
  }
}
.our-work .our-work-list .item .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.our-work .our-work-list .item .text-wrapper {
  flex: 1;
  margin-bottom: 20px;
}
.our-work .our-work-list .item .text-wrapper .num {
  font-size: 2rem;
  font-weight: 600;
  color: var(--blue01);
  display: flex;
  letter-spacing: 0;
  align-items: center;
  margin-bottom: 20px;
  line-height: 1.5;
}
@media screen and (max-width:768px) {
  .our-work .our-work-list .item .text-wrapper .num {
    margin-bottom: 15px;
  }
}
.our-work .our-work-list .item .text-wrapper .num::before {
  content: "";
  width: 15px;
  height: 2px;
  display: inline-block;
  background: var(--yellow01);
  margin-right: 10px;
}
.our-work .our-work-list .item .text-wrapper h4 {
  font-size: clamp(24px, 2.9282576867vw, 40px);
  font-weight: 600;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  z-index: 1;
  line-height: 1.5;
}
@media screen and (max-width:768px) {
  .our-work .our-work-list .item .text-wrapper h4 {
    margin-bottom: 15px;
  }
}
.our-work .our-work-list .item .text-wrapper h4::after {
  content: "";
  width: 100%;
  height: 0.7em;
  background: var(--yellow01);
  display: block;
  position: absolute;
  bottom: 0.2em;
  left: 0;
  z-index: -1;
}
.our-work .our-work-list .item .text-wrapper .lead {
  color: var(--blue01);
  font-size: 2.4rem;
  margin-bottom: 20px;
  line-height: 1.5;
}
@media screen and (max-width:768px) {
  .our-work .our-work-list .item .text-wrapper .lead {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
}
.our-work .our-work-list .item .text-wrapper .text {
  text-align: justify;
}
.our-work .has-horizon {
  font-size: clamp(22px, 2.3426061493vw, 32px);
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
  line-height: 1.5;
  margin-bottom: 35px;
}
@media screen and (max-width:768px) {
  .our-work .has-horizon {
    display: block;
  }
}
.our-work .has-horizon::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--yellow01);
  display: block;
  margin-right: 0.5em;
}
@media screen and (max-width:768px) {
  .our-work .has-horizon::before {
    margin-bottom: 20px;
    margin-right: 0;
  }
}
.our-work .schedule-area {
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (max-width:768px) {
  .our-work .schedule-area {
    width: 88.2666666667%;
    margin: 0 auto;
    overflow-x: unset;
  }
}
.our-work .schedule-swiper-area {
  position: relative;
}
.our-work .schedule-swiper-area .schedule-swiper {
  overflow: hidden;
}
.our-work .schedule-swiper-area .schedule-swiper .swiper-wrapper {
  align-items: stretch;
}
.our-work .schedule-swiper-area .schedule-swiper .swiper-slide {
  height: auto;
  display: flex;
}
@media screen and (max-width:768px) {
  .our-work .schedule-swiper-area .schedule-swiper {
    margin: 0 8px;
  }
}
.our-work .schedule-swiper-area .slide-item {
  background-color: var(--gray02);
  border-radius: 20px;
  border: 2px solid var(--blue01);
  padding: 40px;
  width: 100%;
  height: 100%;
}
.our-work .schedule-swiper-area .slide-item .time {
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 0;
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.our-work .schedule-swiper-area .slide-item .time::before {
  content: "";
  width: 31px;
  height: 31px;
  display: block;
  background: url(../../assets/images/icon-clock.svg) no-repeat center/contain;
  margin-right: 0.3em;
}
.our-work .schedule-swiper-area .slide-item .ttl {
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue01);
  margin-bottom: 20px;
}
.our-work .schedule-swiper-area .slide-item .text {
  text-align: justify;
}
.our-work .schedule-swiper-area .slide-item.item01 .time::before {
  background: url(../../assets/images/clock0800.svg) no-repeat center/contain;
}
.our-work .schedule-swiper-area .slide-item.item02 .time::before {
  background: url(../../assets/images/clock0830.svg) no-repeat center/contain;
}
.our-work .schedule-swiper-area .slide-item.item03 .time::before {
  background: url(../../assets/images/clock1200.svg) no-repeat center/contain;
}
.our-work .schedule-swiper-area .slide-item.item04 .time::before {
  background: url(../../assets/images/clock1300.svg) no-repeat center/contain;
}
.our-work .schedule-swiper-area .slide-item.item05 .time::before {
  background: url(../../assets/images/clock1700.svg) no-repeat center/contain;
}
.our-work .schedule-swiper-area .swiper-controller {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 45px;
  gap: 10px;
  position: absolute;
  right: 0;
  top: -82px;
}
@media screen and (max-width:768px) {
  .our-work .schedule-swiper-area .swiper-controller {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 35px);
    justify-content: space-between;
    z-index: 3;
  }
}
.our-work .schedule-swiper-area .swiper-button-prev,
.our-work .schedule-swiper-area .swiper-button-next {
  border-radius: 50%;
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  left: auto;
  position: relative;
  margin-top: 0;
  right: auto;
  top: auto;
  bottom: auto;
  border: 1px solid var(--blue01);
  background: var(--blue01);
  display: inline-flex;
  transition: background-color 0.3s var(--cubic-bezier);
}
@media screen and (max-width:768px) {
  .our-work .schedule-swiper-area .swiper-button-prev,
  .our-work .schedule-swiper-area .swiper-button-next {
    width: 35px;
    height: 35px;
  }
}
.our-work .schedule-swiper-area .swiper-button-prev::after,
.our-work .schedule-swiper-area .swiper-button-next::after {
  content: "";
  width: 22px;
  height: 16px;
  display: inline-block;
  background: url(../../assets/images/icon-btn01-arrow.svg) no-repeat center/contain;
  transition: background-image 0.3s var(--cubic-bezier);
}
.our-work .schedule-swiper-area .swiper-button-prev:hover,
.our-work .schedule-swiper-area .swiper-button-next:hover {
  background-color: white;
}
.our-work .schedule-swiper-area .swiper-button-prev:hover::after,
.our-work .schedule-swiper-area .swiper-button-next:hover::after {
  background: url(../../assets/images/icon-arrow-right-blue.svg) no-repeat center/contain;
}
.our-work .schedule-swiper-area .swiper-button-prev {
  transform: rotate(180deg);
}
.our-work .slide-img-wrapper {
  height: 300px;
  width: 100%;
  margin-top: 80px;
  overflow: hidden;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
@media screen and (max-width:768px) {
  .our-work .slide-img-wrapper {
    margin-top: 30px;
    height: 170px;
  }
}
.our-work .slide-img-wrapper .slide-track {
  width: max-content;
  display: flex;
  animation: recruit-slide-marquee-pc 30s linear infinite;
  will-change: transform;
}
@media screen and (max-width:768px) {
  .our-work .slide-img-wrapper .slide-track {
    animation: recruit-slide-marquee-sp 19.53s linear infinite;
    will-change: auto;
  }
}
.our-work .slide-img-wrapper .slide-track .slide-group {
  display: flex;
  gap: 30px;
  flex-shrink: 0;
  padding-left: 30px;
}
@media screen and (max-width:768px) {
  .our-work .slide-img-wrapper .slide-track .slide-group {
    gap: 20px;
    padding-left: 20px;
  }
}
.our-work .slide-img-wrapper .slide-track .item {
  width: 400px;
  height: 300px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width:768px) {
  .our-work .slide-img-wrapper .slide-track .item {
    width: 260px;
    height: 170px;
  }
}
.our-work .slide-img-wrapper .slide-track .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes recruit-slide-marquee-pc {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-2150px, 0, 0);
  }
}
@keyframes recruit-slide-marquee-sp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-1400px, 0, 0);
  }
}
.sub-sec {
  background: linear-gradient(to bottom, rgba(242, 244, 247, 0.5), white);
  border-radius: 40px;
  padding: 100px 60px;
}
@media screen and (max-width:768px) {
  .sub-sec {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 60px 0 50px;
    border-radius: 30px;
  }
}
@media screen and (max-width:768px) {
  .sub-sec .content {
    width: 88.2666666667%;
    margin: 0 auto;
  }
}
.sub-sec .sub-sec-head {
  margin-bottom: 50px;
  gap: 6.1224489796%;
}
@media screen and (max-width:768px) {
  .sub-sec .sub-sec-head {
    flex-direction: column;
    margin-bottom: 40px;
    align-items: flex-start;
  }
}
.sub-sec .sub-sec-head .img-wrapper {
  width: 49.1836734694%;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width:768px) {
  .sub-sec .sub-sec-head .img-wrapper {
    width: 100%;
    aspect-ratio: 331/280;
  }
}
.sub-sec .sub-sec-head .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub-sec .sub-sec-head .text-wrapper {
  flex: 1;
}
.sub-sec .sub-sec-head .sub-ttl {
  color: var(--blue01);
  margin-bottom: 20px;
  font-size: 1.8rem;
  letter-spacing: 0;
  line-height: 1.3;
}
@media screen and (max-width:768px) {
  .sub-sec .sub-sec-head .sub-ttl {
    margin-bottom: 15px;
  }
}
.sub-sec .sub-sec-head h4 {
  font-weight: 600;
  font-size: clamp(28px, 2.635431918vw, 36px);
  line-height: 1.5;
  margin-bottom: 50px;
}
@media screen and (max-width:768px) {
  .sub-sec .sub-sec-head h4 {
    margin-bottom: 30px;
  }
}
.sub-sec .sub-sec-head .lead {
  color: var(--blue01);
  line-height: 1.5;
  margin-bottom: 20px;
  font-size: clamp(22px, 1.756954612vw, 24px);
  font-weight: 600;
}

.environment {
  position: relative;
  background: white;
  padding-bottom: 80px;
}
@media screen and (max-width:768px) {
  .environment {
    padding-top: 108px;
    padding-bottom: 50px;
  }
}
.environment .sec-head {
  margin-bottom: 60px;
  max-width: 762px;
}
@media screen and (max-width:768px) {
  .environment .sec-head {
    margin-bottom: 50px;
  }
}
.environment .sec-head .desc {
  max-width: 832px;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media screen and (max-width:768px) {
  .environment .sec-head .desc {
    font-size: 1.7rem;
  }
}
.environment .has-y-circle::before {
  content: "ENVIRONMENT";
}
@media screen and (max-width:768px) {
  .environment .has-y-circle::before {
    content: "ENVIRON\aMENT";
    white-space: pre-line;
  }
}
@media screen and (max-width:768px) {
  .environment .training .sub-sec-head .text-wrapper {
    margin-bottom: 30px;
  }
}
.environment .training-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5.1020408163%;
}
@media screen and (max-width:768px) {
  .environment .training-list {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}
.environment .training-list .item {
  background: var(--gray02);
  padding: 25px 50px 56px;
  border-radius: 20px;
  position: relative;
}
@media screen and (max-width:768px) {
  .environment .training-list .item {
    padding: 25px 30px 30px;
  }
}
.environment .training-list .item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 2px;
  height: 20px;
  background: var(--yellow01);
}
.environment .training-list .item .num {
  display: block;
  color: var(--blue01);
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.environment .training-list .item .ttl {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--blue01);
}

@media screen and (max-width:768px) {
  .benefits .sub-sec-head .text-wrapper {
    margin-bottom: 30px;
  }
}
.benefits .benefit-list-top {
  margin-bottom: 20px;
}
@media screen and (max-width:768px) {
  .benefits .benefit-list-top {
    flex-direction: column-reverse;
    padding: 20px 30px 30px;
    gap: 20px;
  }
}
.benefits .benefit-list-top .img-wrapper {
  max-width: 211px;
}
@media screen and (max-width:768px) {
  .benefits .benefit-list-top .img-wrapper {
    max-width: unset;
    width: 100%;
  }
}
.benefits .benefit-list-top .text-wrapper {
  flex: 1;
}
.benefits .item {
  display: flex;
  padding: 40px;
  height: 100%;
  gap: 40px;
  border-radius: 20px;
  background-color: var(--gray02);
}
@media screen and (max-width:768px) {
  .benefits .item {
    padding: 20px 30px;
    gap: 20px;
  }
}
.benefits .item h5 {
  color: var(--blue01);
  font-weight: 600;
  font-size: 2.4rem;
  margin-bottom: 10px;
  line-height: 1.5;
}
.benefits .item .desc {
  font-size: 1.5rem;
  line-height: 1.5;
}
.benefits .item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  position: relative;
  flex-shrink: 0;
}
.benefits .benefit-list {
  gap: 20px 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width:768px) {
  .benefits .benefit-list {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width:768px) {
  .data .sub-sec-head {
    margin-bottom: 30px;
  }
}
.data .sub-sec-head .desc {
  max-width: 530px;
}
.data .data-list {
  display: flex;
  justify-content: center;
  gap: 30px 70px;
  flex-wrap: wrap;
}
@media screen and (max-width:768px) {
  .data .data-list {
    row-gap: 20px;
  }
}
.data .data-list .item {
  background: var(--gray02);
  border-radius: 20px;
  padding: 18px 40px;
  max-width: 310px;
  width: 100%;
  flex-shrink: 0;
  height: 263px;
  position: relative;
}
@media screen and (max-width:480px) {
  .data .data-list .item {
    max-width: 100%;
  }
}
.data .data-list .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 25px;
  height: 3px;
  width: 16px;
  background: var(--blue01);
}
@media screen and (max-width:768px) {
  .data .data-list .item::before {
    left: 36px;
  }
}
.data .data-list .item::after {
  content: "";
  width: 77px;
  height: 77px;
  bottom: 0;
  position: absolute;
  right: 30px;
  display: block;
}
@media screen and (max-width:768px) {
  .data .data-list .item::after {
    right: 48px;
  }
}
.data .data-list .item .ttl {
  color: var(--blue01);
  font-size: 1.8rem;
  margin-bottom: 32px;
  font-weight: 600;
}
.data .data-list .item .num {
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
}
.data .data-list .item .num .count-num {
  color: var(--blue01);
  font-size: 8.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-right: 10px;
}
.data .data-list .item.item01::after {
  background: url(../../assets/images/data01.svg) no-repeat bottom right/contain;
}
.data .data-list .item.item02::after {
  background: url(../../assets/images/data02.svg) no-repeat bottom center/contain;
}
.data .data-list .item.item03::after {
  background: url(../../assets/images/data03.svg) no-repeat bottom center/contain;
}
.data .data-list .item.item04::after {
  background: url(../../assets/images/data04.svg) no-repeat bottom center/contain;
}

.interview {
  background: var(--blue01);
  border-radius: 40px;
  color: white;
  position: relative;
}
.interview .has-y-circle {
  z-index: 2;
}
@media screen and (max-width:768px) {
  .interview .has-y-circle {
    margin-bottom: 21px;
  }
}
.interview .has-y-circle::before {
  content: "INTERVIEW";
  z-index: 1;
  opacity: 0.3;
}
.interview .sec-head .desc {
  max-width: 803px;
  width: 100%;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media screen and (max-width:768px) {
  .interview .sec-head .desc {
    font-size: 1.7rem;
  }
}
.interview .interview-list {
  margin-top: 60px;
}
@media screen and (max-width:768px) {
  .interview .interview-list {
    margin-top: 50px;
  }
}
.interview .interview-list .item {
  padding: 120px 0;
}
@media screen and (max-width:768px) {
  .interview .interview-list .item {
    padding: 70px 0;
  }
}
.interview .interview-list .item .int-num {
  color: var(--yellow01);
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0;
  margin-bottom: 100px;
}
@media screen and (max-width:768px) {
  .interview .interview-list .item .int-num {
    margin-bottom: 90px;
  }
}
.interview .interview-list .item:not(:last-child) {
  border-bottom: 2px dotted var(--yellow01);
}
.interview .interview-list .item:first-child {
  padding-top: 0;
}
.interview .interview-list .item:last-child {
  padding-bottom: 0;
}
.interview .interview-list .flex-wrapper {
  gap: 5.1724137931%;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width:768px) {
  .interview .interview-list .flex-wrapper {
    flex-direction: column;
  }
}
.interview .interview-list .flex-wrapper:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width:768px) {
  .interview .interview-list .flex-wrapper:nth-of-type(even) {
    flex-direction: column;
  }
}
.interview .interview-list .flex-wrapper:not(:last-child) {
  margin-bottom: 100px;
}
@media screen and (max-width:768px) {
  .interview .interview-list .flex-wrapper:not(:last-child) {
    margin-bottom: 30px;
  }
}
.interview .interview-list .flex-wrapper .img-container {
  flex-shrink: 0;
  width: 49.5689655172%;
  position: relative;
  aspect-ratio: 575/397;
}
@media screen and (max-width:768px) {
  .interview .interview-list .flex-wrapper .img-container {
    width: calc(100% + 10px);
    aspect-ratio: 331/260;
    margin-bottom: 30px;
  }
}
.interview .interview-list .flex-wrapper .img-container::before {
  content: "";
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 20px;
  background: var(--yellow01);
}
@media screen and (max-width:768px) {
  .interview .interview-list .flex-wrapper .img-container::before {
    width: calc(100% - 10px);
    height: calc(100% - 20px);
  }
}
.interview .interview-list .flex-wrapper .img-container .img-wrapper {
  z-index: 2;
  position: relative;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  overflow: hidden;
  border-radius: 20px;
}
@media screen and (max-width:768px) {
  .interview .interview-list .flex-wrapper .img-container .img-wrapper {
    width: calc(100% - 10px);
    height: calc(100% - 20px);
  }
}
.interview .interview-list .flex-wrapper .img-container .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.interview .interview-list .flex-wrapper .q-wrapper {
  flex: 1;
}
.interview .interview-list .flex-wrapper .q-wrapper dl:not(:last-child) {
  margin-bottom: 50px;
}
@media screen and (max-width:768px) {
  .interview .interview-list .flex-wrapper .q-wrapper dl:not(:last-child) {
    margin-bottom: 20px;
  }
}
.interview .interview-list .flex-wrapper .q-wrapper dl dt {
  font-size: clamp(20px, 1.8301610542vw, 25px);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 24px;
  display: flex;
}
@media screen and (max-width:768px) {
  .interview .interview-list .flex-wrapper .q-wrapper dl dt {
    margin-bottom: 10px;
  }
}
.interview .interview-list .flex-wrapper .q-wrapper dl dt .num {
  background-color: var(--yellow01);
  font-size: 2.4rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: -3px;
  width: 50px;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  height: 35px;
  border-radius: 10px;
  display: inline-flex;
  margin-right: 10px;
}
@media screen and (max-width:768px) {
  .interview .interview-list .flex-wrapper .q-wrapper dl dt .num {
    width: 40px;
    height: 28px;
    margin-top: 2px;
    font-size: 1.8rem;
  }
}
.interview .interview-list .flex-wrapper .q-wrapper dl dd {
  font-size: 1.7rem;
  line-height: 1.6;
  text-align: justify;
}
.interview .interview-list .flex-wrapper.top {
  position: relative;
}
.interview .interview-list .flex-wrapper.top .meta-box {
  position: absolute;
  bottom: calc(100% - 30px);
  left: 0;
  width: 308px;
  height: 105px;
  font-size: 1.8rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 3;
  color: var(--black01);
  background: white;
  border: 2px solid var(--yellow01);
  border-radius: 20px;
  padding: 20px 35px;
}
@media screen and (max-width:768px) {
  .interview .interview-list .flex-wrapper.top .meta-box {
    padding: 20px 25px;
    width: fit-content;
  }
}
.interview .interview-list .flex-wrapper.top .meta-box dl {
  justify-content: flex-start;
}
.interview .interview-list .flex-wrapper.top .meta-box dl dt {
  padding-right: 15px;
  border-right: 1px solid var(--black01);
  margin-right: 15px;
}
.interview .interview-list .flex-wrapper.top .meta-box .initi {
  font-size: 2.4rem;
  font-weight: 600;
  font-family: var(--ja);
  line-height: 1.2;
}

.faq {
  background-color: white;
  position: relative;
}
@media screen and (max-width:768px) {
  .faq {
    padding-top: 96px;
  }
}
.faq .has-y-circle::before {
  content: "Q&A";
}
.faq .accordion-area {
  margin-top: 133px;
}
@media screen and (max-width:768px) {
  .faq .accordion-area {
    margin-top: 46px;
  }
}
.faq .accordion-area .item:not(:last-child) {
  margin-bottom: 40px;
}
.faq .accordion-area .sec {
  border: 2px solid var(--blue01);
  border-radius: 15px;
  overflow: hidden;
}
.faq .accordion-area .title {
  background: var(--blue01);
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  padding: 22px 96px 22px 40px;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width:768px) {
  .faq .accordion-area .title {
    padding: 20px 40px 20px 20px;
  }
}
.faq .accordion-area .title::before,
.faq .accordion-area .title::after {
  content: "";
  position: absolute;
  top: 42px;
  right: 40px;
  width: 28px;
  height: 4px;
  background: #fff;
  border-radius: 999px;
  transform-origin: center;
  transition: transform 0.35s ease;
}
@media screen and (max-width:768px) {
  .faq .accordion-area .title::before,
  .faq .accordion-area .title::after {
    width: 18px;
    right: 10px;
    height: 3px;
    top: 32px;
  }
}
.faq {
  /* 横棒 */
}
.faq .accordion-area .title::before {
  transform: rotate(0deg);
}
.faq {
  /* 縦棒 */
}
.faq .accordion-area .title::after {
  transform: rotate(90deg);
}
.faq {
  /* 開いたとき */
}
.faq .accordion-area .title.is-open::after {
  transform: rotate(180deg) scaleX(0);
}
.faq .accordion-area .title .text {
  font-size: clamp(17px, 1.756954612vw, 24px);
  font-weight: 700;
  display: flex;
  align-items: center;
  line-height: 1.6;
}
@media screen and (max-width:768px) {
  .faq .accordion-area .title .text {
    font-size: 1.7rem;
  }
}
.faq .accordion-area .title .text::before {
  content: "Q";
  margin-right: 30px;
  font-size: 2.5rem;
  width: 46px;
  height: 46px;
  color: var(--blue01);
  border-radius: 50%;
  background: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media screen and (max-width:768px) {
  .faq .accordion-area .title .text::before {
    width: 24px;
    height: 24px;
    font-size: 1.6rem;
    margin-right: 10px;
  }
}
.faq .accordion-area .box {
  display: none;
}
.faq .accordion-area .box-inner {
  display: flex;
  padding: 22px 40px;
}
@media screen and (max-width:768px) {
  .faq .accordion-area .box-inner {
    padding: 20px 25px 20px 20px;
  }
}
.faq .accordion-area .box-inner::before {
  content: "A";
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 2.5rem;
  background: var(--yellow01);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
}
@media screen and (max-width:768px) {
  .faq .accordion-area .box-inner::before {
    width: 24px;
    height: 24px;
    font-size: 1.6rem;
    margin-right: 10px;
  }
}
.faq .accordion-area .box .text {
  font-size: 2rem;
  line-height: 1.6;
  flex: 1;
}
@media screen and (max-width:768px) {
  .faq .accordion-area .box .text {
    font-size: 1.5rem;
  }
}

.bg-gray {
  background: var(--gray02);
  border-radius: 40px;
  position: relative;
}
@media screen and (max-width:768px) {
  .bg-gray {
    border-radius: 30px;
  }
}

.lower .guideline {
  padding-top: 177px;
  padding-bottom: 0;
}
@media screen and (max-width:768px) {
  .lower .guideline {
    padding-top: 80px;
  }
}

.guideline {
  position: relative;
}
.guideline .has-y-circle {
  position: relative;
  z-index: 4;
}
.guideline .has-y-circle::before {
  content: "GUIDELINE";
  color: white;
  z-index: 1;
}
.guideline .contents {
  margin-top: 100px;
  background: white;
  padding: 100px;
  border-radius: 40px;
}
@media screen and (max-width:768px) {
  .guideline .contents {
    margin-top: 46px;
    padding: 60px 25px 80px;
    border-radius: 30px;
    margin-left: -14px;
    margin-right: -14px;
  }
}
.guideline .contents dl {
  width: 100%;
  border-top: 1px solid var(--gray01);
  margin-bottom: 80px;
}
@media screen and (max-width:768px) {
  .guideline .contents dl {
    margin-bottom: 50px;
  }
}
.guideline .contents dl > div {
  display: flex;
  border-bottom: 1px solid var(--gray01);
}
@media screen and (max-width:768px) {
  .guideline .contents dl > div {
    flex-direction: column;
    padding: 20px 0;
  }
}
.guideline .contents dl dt {
  padding: 24px 0;
  width: 160px;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width:768px) {
  .guideline .contents dl dt {
    font-size: 1.6rem;
    margin-bottom: 8px;
    padding: 0;
    line-height: 2;
  }
}
.guideline .contents dl dd {
  padding: 24px 0;
  flex: 1;
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width:768px) {
  .guideline .contents dl dd {
    padding: 0;
    line-height: 2;
    font-size: 1.6rem;
  }
}
.guideline .btn01 {
  margin: 0 auto;
}

.bg-white-wrapper {
  position: relative;
}
.bg-white-wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  background: white;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.entry {
  padding-top: 237px;
}
@media screen and (max-width:768px) {
  .entry {
    padding-top: 96px;
  }
}
.entry .has-y-circle {
  margin-bottom: 70px;
}
@media screen and (max-width:768px) {
  .entry .has-y-circle {
    margin-bottom: 36px;
  }
}
.entry .has-y-circle::before {
  content: "ENTRY";
  color: white;
}
.entry .sec-head {
  margin-bottom: 60px;
}
@media screen and (max-width:768px) {
  .entry .sec-head {
    margin-bottom: 30px;
  }
}
.entry .sec-head .desc {
  max-width: 803px;
  width: 100%;
}
.entry .form {
  background: white;
  border-radius: 40px;
  padding: 100px 0;
}
@media screen and (max-width:768px) {
  .entry .form {
    padding: 50px 14px 80px;
    border-radius: 30px;
    margin-right: -14px;
    margin-left: -14px;
  }
}
.entry .form table,
.entry .form .form-top-text {
  width: 82.7586206897%;
  margin: 0 auto;
}
@media screen and (max-width:768px) {
  .entry .form table,
  .entry .form .form-top-text {
    width: 100%;
  }
}
.entry .form .form-top-text {
  margin-bottom: 80px;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media screen and (max-width:768px) {
  .entry .form .form-top-text {
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1.6rem;
  }
}

.wpcf7-spinner {
  display: none;
}

@media screen and (max-width:768px) {
  main.recruit + .footer {
    padding-top: 80px;
  }
}

.privacy .inner {
  max-width: 920px;
}
.privacy .top-text {
  line-height: 2;
  margin-bottom: 80px;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width:768px) {
  .privacy .top-text {
    margin-bottom: 50px;
    font-size: 1.4rem;
  }
}
.privacy .wp-block-group {
  margin-bottom: 60px;
}
@media screen and (max-width:768px) {
  .privacy .wp-block-group {
    margin-bottom: 30px;
  }
}
.privacy .wp-block-group h3 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.6;
}
@media screen and (max-width:768px) {
  .privacy .wp-block-group h3 {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
}
.privacy .wp-block-group p {
  font-weight: 400;
  line-height: 2;
  text-align: justify;
  font-size: 1.6rem;
}
@media screen and (max-width:768px) {
  .privacy .wp-block-group p {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}
.privacy .wp-block-group h4 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 20px;
  margin-top: 40px;
}
@media screen and (max-width:768px) {
  .privacy .wp-block-group h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    margin-top: 20px;
  }
}
.privacy .wp-block-group:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width:768px) {
  .lower .works-sec {
    padding: 50px 0 80px;
  }
}

.works-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 3.953147877vw;
  column-gap: 3.953147877vw;
  row-gap: 4.39238653vw;
}
@media screen and (max-width:940px) {
  .works-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width:480px) {
  .works-list {
    grid-template-columns: 1fr;
    row-gap: 50px;
  }
}
.works-list .item .img-wrapper {
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 350/250;
  margin-bottom: 20px;
}
@media screen and (max-width:768px) {
  .works-list .item .img-wrapper {
    aspect-ratio: 331/250;
  }
}
.works-list .item .img-wrapper img {
  transition: transform 0.3s var(--cubic-bezier);
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}
.works-list .item h4 {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 10px;
  font-family: var(--ja);
}
.works-list .item a {
  display: block;
}
.works-list .item a:hover .img-wrapper img {
  transform: scale(1.05);
}
.works-list .item .link-text {
  color: var(--blue01);
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1em;
}

.circle-arrow01 {
  width: 26px;
  height: 26px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--blue01);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.circle-arrow01::after {
  content: "";
  width: 12px;
  height: 10px;
  background: url(../../assets/images/icon-btn01-arrow.svg) no-repeat center/contain;
}

.pagenation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
}
@media screen and (max-width:768px) {
  .pagenation {
    margin-top: 80px;
  }
}
.pagenation .page-numbers {
  font-family: var(--ja);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 4px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: white;
  transition: all 0.3s var(--cubic-bezier);
}
@media screen and (max-width:768px) {
  .pagenation .page-numbers {
    width: 32px;
    height: 32px;
    margin: 0 2px;
  }
}
.pagenation .page-numbers.current {
  background: var(--blue01);
  color: white;
}
.pagenation .page-numbers.next, .pagenation .page-numbers.prev {
  border: 1px solid var(--blue01);
  background-color: white;
}
.pagenation .page-numbers.next span, .pagenation .page-numbers.prev span {
  display: grid;
  place-content: center;
}
.pagenation .page-numbers.next span::after, .pagenation .page-numbers.prev span::after {
  content: "";
  width: 16px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--cubic-bezier);
  background: url(../../assets/images/icon-next-blue.svg) no-repeat center/contain;
}
@media screen and (max-width:768px) {
  .pagenation .page-numbers.next span::after, .pagenation .page-numbers.prev span::after {
    width: 12px;
    height: 11px;
  }
}
.pagenation .page-numbers.next span.pager-prev::after, .pagenation .page-numbers.prev span.pager-prev::after {
  background: url(../../assets/images/icon-prev-blue.svg) no-repeat center/contain;
}
.pagenation .page-numbers:hover.next, .pagenation .page-numbers:hover.prev {
  background: var(--blue01);
}
.pagenation .page-numbers:hover.next span::after, .pagenation .page-numbers:hover.prev span::after {
  background: var(--blue01);
  background: url(../../assets/images/icon-next-white.svg) no-repeat center/contain;
}
.pagenation .page-numbers:hover.prev span::after {
  background: url(../../assets/images/icon-prev-white.svg) no-repeat center/contain;
}

.ttl01 {
  font-size: clamp(24px, 2.635431918vw, 36px);
  font-weight: 700;
  line-height: 1.5;
  padding-top: 40px;
  position: relative;
  margin-bottom: 60px;
}
.ttl01::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--blue01);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.other-works {
  background: var(--gray02);
  padding-bottom: 200px;
}
@media screen and (max-width:768px) {
  .other-works {
    padding-bottom: 60px;
  }
}
.other-works .other-works-list {
  border: 2px solid var(--blue01);
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  transition: height 0.5s var(--cubic-bezier);
}
.other-works .other-works-list .other-works-ttl {
  font-size: 2rem;
  color: white;
  background: var(--blue01);
  padding: 28px 45px 26px;
  font-weight: 600;
}
@media screen and (max-width:768px) {
  .other-works .other-works-list .other-works-ttl {
    padding: 20px 30px;
  }
}
.other-works .other-works-list .item {
  font-size: 1.8rem;
  background-color: white;
  padding: 26px 45px 28px;
  font-family: var(--ja);
  overflow: hidden;
  transition: opacity 0.4s ease;
  text-align: justify;
}
@media screen and (max-width:768px) {
  .other-works .other-works-list .item {
    padding: 20px 30px;
  }
}
.other-works .other-works-list .item:not(:last-child) {
  border-bottom: 1px solid var(--gray01);
}
.other-works .other-works-list .item.is-hidden {
  display: none;
  opacity: 0;
}
.other-works .other-works-list .item.is-visible {
  opacity: 1;
}
.other-works .other-works-list.is-open .item.is-hidden {
  display: block;
}
.other-works .other-works-btn-wrap {
  margin-top: 32px;
  text-align: center;
}
.other-works .other-works-btn-wrap .btn01 {
  width: 160px;
}
.other-works .other-works-btn-wrap .btn01 .text {
  color: var(--black01);
}
@media (hover: hover) and (pointer: fine) {
  .other-works .other-works-btn-wrap .btn01:hover .text {
    color: white;
  }
}
.other-works .other-works-btn {
  cursor: pointer;
  margin: 0 auto;
}

.page-ttl02 {
  width: 100%;
  height: 330px;
  position: relative;
}
.page-ttl02::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(2, 120, 199, 0.8);
}
@media screen and (max-width:768px) {
  .page-ttl02 {
    height: 230px;
  }
}
.page-ttl02 .img-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.page-ttl02 .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.page-ttl02 .lower-ttl {
  position: absolute;
  flex-direction: column;
  bottom: 75px;
  padding: 0 8.5651537335vw;
  width: 100%;
  align-items: flex-start;
  margin: 0 auto;
  z-index: 1;
  left: 50%;
  color: white;
  transform: translateX(-50%);
  row-gap: 10px;
}
@media screen and (max-width:768px) {
  .page-ttl02 .lower-ttl {
    width: 88.2666666667%;
    bottom: 40px;
    row-gap: 5px;
    padding: 0;
  }
}
.page-ttl02 .lower-ttl h2 {
  font-size: clamp(32px, 3.513909224vw, 48px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
}
.page-ttl02 .lower-ttl .sub-ttl {
  line-height: 1.5;
  font-size: clamp(1.6rem, 1.317715959vw, 1.8rem);
}
@media screen and (max-width:768px) {
  .page-ttl02 + .breadcrumb {
    margin-top: 25px;
  }
}

.single-works article {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}
.single-works article h3 {
  font-size: clamp(22px, 2.3426061493vw, 32px);
  font-weight: 600;
  margin-bottom: 60px;
  line-height: 1.6;
  font-family: var(--ja);
}
@media screen and (max-width:768px) {
  .single-works article h3 {
    margin-bottom: 30px;
  }
}
.single-works article .img-wrapper {
  aspect-ratio: 980/660;
  overflow: hidden;
  border-radius: 40px;
  margin-bottom: 80px;
}
@media screen and (max-width:768px) {
  .single-works article .img-wrapper {
    aspect-ratio: 331/230;
    border-radius: 30px;
    margin-bottom: 40px;
  }
}
.single-works article .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.single-works article dl {
  width: 100%;
  margin-bottom: 150px;
}
@media screen and (max-width:768px) {
  .single-works article dl {
    margin-bottom: 60px;
  }
}
.single-works article dl > div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 28px 0 26px;
  border-bottom: 1px solid var(--gray01);
}
@media screen and (max-width:768px) {
  .single-works article dl > div {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 0 20px;
  }
}
.single-works article dl > div:first-child {
  padding-top: 0;
}
.single-works article dl dt {
  color: var(--blue01);
  font-size: 2rem;
  width: 15%;
  font-weight: 700;
  font-family: var(--ja);
}
@media screen and (max-width:768px) {
  .single-works article dl dt {
    width: 100%;
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 10px;
  }
}
.single-works article dl dd {
  font-size: 2rem;
  font-family: var(--ja);
}
@media screen and (max-width:768px) {
  .single-works article dl dd {
    width: 100%;
    font-size: 1.6rem;
    line-height: 2;
  }
}
.single-works article .btn01 {
  margin-top: 0;
  display: flex;
  align-items: center;
  margin: 0 auto;
}

@media screen and (max-width:768px) {
  section.single {
    padding: 50px 0 100px;
  }
}

.no-post-yet {
  margin-top: 2em;
}

.post-type-archive-news section.news {
  padding: 180px 0;
}
@media screen and (max-width:768px) {
  .post-type-archive-news section.news {
    padding: 50px 0 80px;
  }
}
.post-type-archive-news .news-list {
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid var(--gray01);
}

.single-news article {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}
.single-news article .date {
  font-size: clamp(14px, 1.4641288433vw, 20px);
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 2;
}
@media screen and (max-width:768px) {
  .single-news article .date {
    margin-bottom: 20px;
  }
}
.single-news article h3 {
  font-size: clamp(18px, 2.3426061493vw, 32px);
  padding-bottom: 30px;
  border-bottom: 1px solid var(--gray01);
  margin-bottom: 60px;
  font-weight: 600;
  line-height: 1.6;
  font-family: var(--ja);
}
@media screen and (max-width:768px) {
  .single-news article h3 {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.single-news article .text {
  line-height: 2;
  text-align: justify;
}
.single-news article .btn01 {
  margin-top: 0;
  display: flex;
  margin: 0 auto;
}
.single-news article .single-content {
  margin-bottom: 120px;
}
.single-news article .single-content p {
  font-family: var(--ja);
  line-height: 2;
}
@media screen and (max-width:768px) {
  .single-news article .single-content {
    margin-bottom: 60px;
  }
}
.single-news article .single-content .wp-block-image {
  border-radius: 40px;
  overflow: hidden;
}
@media screen and (max-width:768px) {
  .single-news article .single-content .wp-block-image {
    border-radius: 30px;
  }
}
.single-news article .single-content .wp-block-image img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.single-news article .single-content p + .wp-block-image {
  margin-top: 32px;
}
@media screen and (max-width:768px) {
  .single-news article .single-content p + .wp-block-image {
    margin-top: 20px;
  }
}
.single-news article .single-content .wp-block-image + p {
  margin-top: 32px;
}
@media screen and (max-width:768px) {
  .single-news article .single-content .wp-block-image + p {
    margin-top: 20px;
  }
}

/*# sourceMappingURL=style.css.map */
