@charset "utf-8";

/*
 * style.css
 *
 *  version --- 1.0
 *  updated --- 2017/11/30
 */

:root {
  --vw: 1512;
  --vh: 982;

  --black: #000;
  --blue: #2e78ee;
  --gray: #dcdcdc;
  --white: #fff;
  --lightblue: #eef1f6;

  --linear: linear-gradient(90deg, #27e58e 0%, #0fc4f2 25.96%, #1b34b2 100%);

  --font:
    YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  --poppins: "Poppins", sans-serif;
  --mincho:
    YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho,
    serif;
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 768px) {
  :root {
    --vw: 375;
    --vh: 667;
  }
}

/* !HTML5 elements
---------------------------------------------------------- */
header,
footer,
nav,
section,
aside,
article {
  display: block;
}

/* !Reseting
---------------------------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

fieldset {
  border: none;
}

ul,
ol,
li {
  list-style: none;
}

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

table {
  border-collapse: collapse;
}

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

select::-ms-expand {
  display: none;
}

input[type="radio"]::-ms-check,
input[type="checkbox"]::-ms-check {
  display: none;
}

select,
input[type="radio"],
input[type="checkbox"],
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="reset"],
input[type="button"],
input[type="submit"],
textarea {
  appearance: none;
  border-radius: 0;
  font-family: var(--font);
  color: var(--black);
}

input[type="text"]::-ms-clear,
input[type="tel"]::-ms-clear,
input[type="number"]::-ms-clear {
  display: none;
}

input[type="reset"],
input[type="button"],
input[type="submit"] {
  font-family: var(--font);
  cursor: pointer;
}

*,
*:before,
*::after {
  box-sizing: border-box;
}
/* !Clearfix
---------------------------------------------------------- */
.clearfix {
  display: block;
  min-height: 1%;
}

.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}

* html .clearfix {
  height: 1%;
}

/* !Layout
---------------------------------------------------------- */
html {
  overflow-y: scroll;
  font-size: 62.5%;
}

/*** タブレット 768x ~ 1200px***/
@media screen and (min-width: 769px) and (max-width: 1200px) {
  html {
    font-size: calc(100vw / 120);
  }
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

body {
  font-family: var(--font);
  font-size: 1.6rem;
  -webkit-text-size-adjust: none;
  line-height: 1.5;
  font-weight: normal;
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: #fff;
  transition: background-color 2.5s ease;
}

body.is-ceo-bg-active {
  background-color: #eef1f6;
}

html.unload,
.no-move {
  overflow: hidden;
}

/* !Base Fonts -------------------------------------------------------------- */
a {
  color: var(--black);
  text-decoration: none;
}

/*** hover ***/
@media screen and (min-width: 769px) {
  a {
    transition: all 0.5s;
  }

  a:hover {
    text-decoration: none;
    color: var(--blue);
  }

  .op {
    transition: opacity 0.5s ease-out;
  }

  .op:hover {
    opacity: 0.7;
    text-decoration: none;
  }

  a[href^="tel:"] {
    cursor: default;
    pointer-events: none;
  }
}

.is-hide {
  display: none;
}

@media screen and (min-width: 769px) {
  .is-sp {
    display: none;
  }
}

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

.color-blue {
  color: var(--blue);
}

.font-poppins {
  font-family: var(--poppins);
}

@media screen and (min-width: 769px) {
  .message-ceo .message-ceo__box:not([data-view]) {
    transition: none !important;
  }
}

.fade-left {
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  transition: 2.4s cubic-bezier(0.19, 1, 0.22, 1);
}

._inview.fade-left {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.fade-up {
  opacity: 0;
  transform: translateY(20%);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

._inview.fade-up {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .works-oneday__item.fade-up {
    /* 親要素自体の不透明度や移動のアニメーションを無効化 */
    opacity: 1;
    transform: none;
    transition: none;
  }

  .works-oneday__item .works-oneday__title,
  .works-oneday__item .works-oneday__box {
    opacity: 0;
    transform: translateY(20%);
    transition:
      opacity 0.5s ease,
      transform 0.5s ease;
  }

  /* タイトルとボックスを出現させる */
  .works-oneday__item._inview .works-oneday__title,
  .works-oneday__item._inview .works-oneday__box {
    opacity: 1;
    transform: translateY(0);
  }

  /* ボックスだけ、出現を0.3秒遅らせる */
  .works-oneday__item._inview .works-oneday__box {
    transition-delay: 0.3s;
  }
}

/* !wrapper
---------------------------------------------------------- */
#wrapper {
  width: 100%;
  /* background: var(--white); */
}

/* !header
---------------------------------------------------------- */

#header {
  width: 100%;
}

._header_hide .header-logo .logo,
._header_hide .header-logo .enlogo {
  opacity: 0;
  transform: translateY(-10rem);
}

.header-logo .logo {
  position: fixed;
  left: 2.4rem;
  top: 3.65rem;
  z-index: 999;
  width: 2.55rem;
  opacity: 1;
  transform: translateY(0);
  transition: 0.6s ease;
}

.header-logo .logo img {
  width: 100%;
}

.header-logo .enlogo {
  position: fixed;
  left: 5.35rem;
  top: 4.45rem;
  z-index: 999;
  opacity: 1;
  transform: translateY(0);
  transition: 0.6s ease;
}

.header-logo .enlogo img {
  filter: brightness(0);
}

.header-logo .enlogo img,
.header-logo .enlogo a,
.header-logo .enlogo a span {
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    filter 0.25s ease;
}

.header-logo .enlogo a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  color: var(--black);
}

.header-logo .enlogo a img {
  width: 19.691rem;
}

.header-logo .enlogo a span {
  border: 0.1rem solid var(--black);
  width: 9.2rem;
  height: 2.6rem;
  border-radius: 1.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  line-height: 1;
  font-family: var(--poppins);
}

.top-body:not(._start) #header .header-logo .enlogo img {
  filter: brightness(0);
}
.top-body:not(._start) #header .header-logo .enlogo a {
  color: var(--black);
}
.top-body:not(._start) #header .header-logo .enlogo a span {
  border-color: var(--black);
}

.btn-menu {
  display: none;
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 768px) {
  ._header_hide .header-logo .logo,
  ._header_hide .header-logo .enlogo {
    transform: translateY(-5rem);
  }
  .header-logo .logo {
    left: 1.6rem;
    top: 1.6rem;
    width: 2.064rem;
  }

  .header-logo .enlogo {
    top: 2.459rem;
    left: 3.988rem;
  }

  .header-logo .enlogo a {
    gap: 1.295rem;
  }

  .header-logo .enlogo a img {
    width: 15.94rem;
  }

  .header-logo .enlogo a span {
    width: 7.8rem;
    height: 2.1rem;
    border-radius: 2.6rem;
    font-size: 1.2rem;
  }

  ._header_hide .btn-menu {
    opacity: 0;
    transform: translateY(-5rem);
  }

  .btn-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.4rem;
    width: 3.2rem;
    height: 3.2rem;
    border: 0.1rem solid var(--black);
    border-radius: 100%;
    position: fixed;
    z-index: 999;
    right: 1.6rem;
    top: 1.6rem;
    opacity: 1;
    transform: translateY(0);
    transition:
      border-color 0.25s ease,
      opacity 0.6s ease,
      transform 0.6s ease;
  }

  #header.is-logo-light .btn-menu,
  #header.is-menu-light .btn-menu,
  #header.is-open .btn-menu {
    border-color: var(--white);
  }

  .btn-menu .btn-menu__line {
    width: 1.6rem;
    height: 0.1rem;
    background: var(--black);
    content: "";
    border-radius: 0.1rem;
    transition:
      background-color 0.25s ease,
      opacity 0.5s,
      transform 0.5s;
  }

  #header.is-logo-light .btn-menu .btn-menu__line,
  #header.is-menu-light .btn-menu .btn-menu__line,
  #header.is-open .btn-menu .btn-menu__line {
    background: var(--white);
  }

  #header.is-open .btn-menu .btn-menu__line:nth-child(1) {
    transform: translateY(0.5rem) rotate(30deg);
  }

  #header.is-open .btn-menu .btn-menu__line:nth-child(2) {
    opacity: 0;
  }

  #header.is-open .btn-menu .btn-menu__line:nth-child(3) {
    transform: translateY(-0.5rem) rotate(-30deg);
  }
}

/* !global navigation
---------------------------------------------------------- */

._header_hide #g-navi {
  opacity: 0;
  transform: translateY(-10rem);
}

#g-navi {
  position: fixed;
  z-index: 998;
  right: 2.4rem;
  top: 2.4rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1.6rem;
  padding: 0 2.4rem;
  display: flex;
  align-items: center;
  gap: 3.2rem;
  opacity: 1;
  transform: translateY(0);
  transition: 0.6s ease;
}

#g-navi .main-menu {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}

#g-navi .main-menu > li {
  position: relative;
  padding: 1.6rem 0;
}

#g-navi .main-menu > li > a {
  display: flex;
  height: 3.5rem;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
}

#g-navi .main-menu > li > a.parent:after {
  width: 0.8rem;
  height: 100%;
  background: url(../img/common/icon_arrow_down.svg) center center no-repeat;
  background-size: 100% auto;
  content: "";
}

#g-navi .sub-menu li a {
  padding: 0.7rem 1rem 0.7rem 0;
  display: block;
  background: url(../img/common/icon_arrow_right.svg) right center no-repeat;
  background-size: 0.5rem auto;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: bold;
}

#g-navi .navi-entry a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 9.7rem;
  height: 3.5rem;
  border: 0.1rem solid var(--blue);
  background: var(--blue);
  font-size: 1.6rem;
  font-weight: 1.5;
  font-weight: 500;
  color: var(--white);
  border-radius: 6rem;
}

@media screen and (max-width: 1239px) {
  #g-navi .main-menu {
    gap: 2.4rem;
  }
}

/*** hover ***/
@media screen and (min-width: 769px) {
  #g-navi .main-menu > li:hover > a {
    color: var(--blue);
  }

  #g-navi .sub-menu {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: 24rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1.6rem;
    padding: 1.2rem 2.4rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.5s,
      visibility 0.5s;
    display: block !important;
  }

  #g-navi .main-menu > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  #g-navi .navi-entry a:hover {
    background: var(--white);
    color: var(--blue);
  }
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 768px) {
  ._header_hide #g-navi {
    opacity: 0;
    transform: translateY(0);
  }
  #g-navi {
    right: 0;
    top: 0;
    width: 100%;
    height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 0;
    display: block;
    background: url(../img/common/noise_blue.webp) center center repeat;
    background-size: 10rem auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.5s,
      visibility 0.5s;
    padding: 9.2rem 2.4rem 8rem;
  }

  #header.is-open #g-navi {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  #g-navi .main-menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  #g-navi .main-menu > li {
    padding: 0;
    border-bottom: 0.1rem solid #5585d1;
    width: 100%;
  }

  #g-navi .main-menu > li > a {
    height: auto;
    justify-content: space-between;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 3.75;
    padding: 0;
    color: var(--white);
  }

  #g-navi .main-menu > li > a.parent:after {
    height: 0.5rem;
    background-image: url(../img/common/icon_arrow_down_white.svg);
    transition: transform 0.5s;
  }

  #g-navi .main-menu > li > a.parent.is-active:after {
    transform: scale(-1);
  }

  #g-navi .sub-menu {
    display: none;
    padding-bottom: 1.5rem;
  }

  #g-navi .sub-menu li + li {
    margin-top: 0.6rem;
  }

  #g-navi .sub-menu li a {
    padding: 0 0.8rem;
    background: none;
    color: var(--white);
    line-height: 1.5;
    font-weight: normal;
  }

  #g-navi .navi-entry {
    margin-top: 4.8rem;
    text-align: center;
  }

  #g-navi .navi-entry a {
    width: 100%;
    height: 4rem;
    border-radius: 6rem;
    background: var(--white);
    color: var(--blue);
    line-height: 1.8rem;
    font-weight: 500;
  }
}

/* !breadcrumb
---------------------------------------------------------- */
#breadcrumb {
  border: 0.1rem solid var(--blue);
  border-radius: 3.2rem;
  margin-bottom: 4.8rem;
  padding: 0.2rem 1.6rem;
}

#teaser .breadcrumb-wrap {
  opacity: 0;
  transform: translateY(100%);
}

#teaser._start .breadcrumb-wrap {
  opacity: 1;
  transform: translateY(0);
}

#breadcrumb ul {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

#breadcrumb ul li {
  font-size: 1.3rem;
  line-height: 2rem;
  font-weight: 500;
  position: relative;
}

#breadcrumb ul li + li:before {
  width: 2rem;
  height: 2rem;
  position: absolute;
  right: 100%;
  top: 0;
  z-index: 2;
  content: "";
  background: url(../img/common/icon_arrow_right_light.svg) center center
    no-repeat;
  background-size: 0.5rem auto;
}

#breadcrumb ul li:not(:last-child) {
  word-break: keep-all;
  white-space: nowrap;
}

#breadcrumb ul li a {
  color: var(--blue);
}

#breadcrumb .breadcrumb-current {
  /* mix-blend 用: オーバーレイで表示していたため透明 */
  /* color: transparent; */
  color: #000;
}

@media screen and (max-width: 768px) {
  #breadcrumb ul {
    gap: 1.8rem;
  }

  #breadcrumb ul li {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  #breadcrumb ul li + li:before {
    width: 1.8rem;
    height: 1.8rem;
  }
}

/* !teaser
---------------------------------------------------------- */
#teaser {
  position: relative;
  width: 100%;
  padding: 16rem 0 4.8rem;
}

#teaser .teaser_full {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 98.2rem;
  z-index: 1;
  overflow: hidden;
  --blur-bg: rgba(255, 255, 255, 0);
  --blur-val: 0rem;
}

/* #teaser .teaser_full:before {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: "";
  transition:
    background 0.15s ease,
    backdrop-filter 0.15s ease;
} */
#teaser .teaser_full:before {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--blur-bg);
  backdrop-filter: blur(var(--blur-val));
  -webkit-backdrop-filter: blur(var(--blur-val));
}

#teaser._start .teaser_full:before {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5rem);
  -webkit-backdrop-filter: blur(5rem);
  transform: translateY(0);
}

#teaser .teaser_full:after {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 8rem;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 1)
  );
  content: "";
}

#teaser .teaser_full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#teaser .inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

#teaser .page-title-wrap {
  opacity: 0;
  transform: translateY(100%);
}

#teaser._start .page-title-wrap {
  opacity: 1;
  transform: translateY(0);
}

#teaser .page-title {
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.3rem;
}

#teaser .page-title .page-title__eng {
  font-size: 8rem;
  font-family: var(--poppins);
  font-weight: 500;
  line-height: 1;
  color: var(--blue);
}

#teaser .page-title .page-title__jap {
  /* mix-blend 用: オーバーレイで表示していたため透明 */
  /* color: transparent; */
  color: #000;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}

#teaser .teaser-image {
  width: calc(100% + 8rem);
  height: 36rem;
  margin-right: -8rem;
  overflow: hidden;
  opacity: 0;
}

#teaser .teaser-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateX(100%);
  display: block;
  border-radius: 1.6rem 0 0 1.6rem;
}

#teaser._start .teaser-image {
  opacity: 1;
}

#teaser._start .teaser-image img {
  transform: translateX(0);
  /* transform: translateY(0); */

  /* opacity: 1; */
}

@media screen and (max-width: 768px) {
  #teaser {
    padding: 9.05rem 0 2.4rem;
  }

  #teaser .teaser_full {
    height: 60rem;
  }

  #teaser .page-title {
    gap: 0.9rem;
    margin-bottom: 2.45rem;
  }

  #teaser .page-title .page-title__eng {
    font-size: 4.8rem;
  }

  #teaser .page-title .page-title__jap {
    font-size: 2rem;
  }

  #teaser .teaser-image {
    width: calc(100% + 2.4rem);
    height: 20rem;
    margin-right: -2.4rem;
  }

  #teaser .teaser-image img {
    border-radius: 0.8rem 0 0 0.8rem;
  }
}

/* !teaser blend layer (テスト実装 - 戻す場合は .bak 参照)
---------------------------------------------------------- */
#teaser .teaser_blend {
  position: absolute;
  left: 8rem;
  top: 16rem;
  pointer-events: none;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  /* .page-title の margin-bottom と同じにして translateY(100%) の基準高を揃える */
  padding-bottom: 4rem;
  opacity: 0;
  transform: translateY(100%);
  transition:
    opacity 0.2s ease 1s,
    transform 0.2s ease 1s;
  /* mix-blend-mode: exclusion; */
  mix-blend-mode: normal;
}

#teaser._start .teaser_blend {
  opacity: 1;
  transform: translateY(0);
}

#teaser .teaser_blend__eng {
  font-size: 8rem;
  font-family: var(--poppins);
  font-weight: 500;
  line-height: 1;
  /* mix-blend 用 */
  /* color: transparent; */
  color: var(--blue);
  display: block;
}

#teaser .teaser_blend__jap {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  /* mix-blend 用 */
  /* color: var(--white); */
  color: #000;
  display: block;
}

/* breadcrumb blend
   PC: top = 16(padding) + 8(eng) + 0.3(gap) + 3.6(jap) + 4(margin-bottom) = 31.9rem */
#teaser .teaser_blend-bc {
  position: absolute;
  left: 8rem;
  top: 31.9rem;
  pointer-events: none;
  z-index: 3;
  /* mix-blend-mode: exclusion; */
  mix-blend-mode: normal;
  opacity: 0;
  transform: translateY(100%);
  transition:
    opacity 0.5s ease 1.5s,
    transform 0.5s ease 1.5s;
  border: 0.1rem solid transparent;
  border-radius: 3.2rem;
  padding: 0.2rem 1.6rem;
  /* #breadcrumb の margin-bottom と同じにして translateY(100%) の基準高を揃える */
  padding-bottom: calc(0.2rem + 4.8rem);
  box-sizing: border-box;
}

#teaser._start .teaser_blend-bc {
  opacity: 1;
  transform: translateY(0);
}

#teaser .teaser_blend-bc ul {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

#teaser .teaser_blend-bc li {
  font-size: 1.3rem;
  line-height: 2rem;
  font-weight: 500;
  position: relative;
}

#teaser .teaser_blend-bc__other {
  /* mix-blend 用 */
  /* color: transparent; */
  color: var(--blue);
  word-break: keep-all;
  white-space: nowrap;
  display: inline;
}

#teaser .teaser_blend-bc li + li::before {
  width: 2rem;
  height: 2rem;
  position: absolute;
  right: 100%;
  top: 0;
  content: "";
  opacity: 0;
}

#teaser .teaser_blend-bc__current {
  /* mix-blend 用 */
  /* color: var(--white); */
  color: #000;
}

@media screen and (max-width: 768px) {
  #teaser .teaser_blend {
    left: 2.4rem;
    top: 9.05rem;
    gap: 0.9rem;
    padding-bottom: 2.45rem;
  }

  #teaser .teaser_blend__eng {
    font-size: 4.8rem;
  }

  #teaser .teaser_blend__jap {
    font-size: 2rem;
  }

  /* SP: top = 9.05 + 4.8(eng) + 0.9(gap) + 3(jap 2×1.5) + 2.45(margin-bottom) = 20.2rem */
  #teaser .teaser_blend-bc {
    left: 2.4rem;
    top: 20.2rem;
    padding-bottom: calc(0.2rem + 4.8rem);
  }

  #teaser .teaser_blend-bc ul {
    gap: 1.8rem;
  }

  #teaser .teaser_blend-bc li {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  #teaser .teaser_blend-bc li + li::before {
    width: 1.8rem;
    height: 1.8rem;
  }
}

/* mix-blend 用オーバーレイを非表示（.inner 内の見出し・パンくずを黒表示。再有効化時はこのブロックを削除） */
#teaser .teaser_blend,
#teaser .teaser_blend-bc {
  display: none !important;
}

/* !contents
---------------------------------------------------------- */
#contents {
  position: relative;
  z-index: 2;
}

.inner {
  padding: 0 8rem;
}

.anchor-area {
  position: relative;
}

.anchor-area .anchor {
  position: absolute;
  top: -11.5rem;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .inner {
    padding: 0 2.4rem;
  }

  .anchor-area .anchor {
    top: -6.4rem;
  }
}

/* !page navi
---------------------------------------------------------- */
.page-navi {
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1.6rem;
  padding: 4rem;
  opacity: 0;
}

.page-navi._start {
  opacity: 1;
}

.page-navi ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4.8rem;
}

.page-navi ul li {
  width: 100%;
  max-width: 32rem;
}

.page-navi a {
  width: 100%;
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 0 2.4rem 4rem;
  background: url(../img/common/icon_arrow_down_blue.svg) right 2.4rem top
    1.1rem no-repeat;
  background-size: 0.8rem auto;
  position: relative;
}

.page-navi a:before,
.page-navi a:after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 0.1rem;
  border-radius: 0.1rem;
}

.page-navi a:before {
  z-index: 1;
  width: 100%;
  background: var(--gray);
}

.page-navi a:after {
  z-index: 2;
  background: var(--blue);
  width: 3.2rem;
  transition: width 0.5s ease;
}

@media all and (min-width: 769px) {
  .page-navi a:hover:after {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .page-navi {
    border-radius: 0.8rem;
    padding: 1.1rem 1.6rem 1.6rem;
  }

  .page-navi ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem 1.6rem;
  }

  .page-navi ul li {
    width: 100%;
  }

  .page-navi a {
    font-size: 1.3rem;
    line-height: 1.5;
    padding: 0 0.6rem 1.1rem 0;
    background: url(../img/common/icon_arrow_down_blue.svg) right top 0.725rem
      no-repeat;
    background-size: 0.8rem auto;
  }
}

/* !common entry
---------------------------------------------------------- */
.common-entry {
  width: 100%;
  background: url(../img/common/bg_entry.webp) center center no-repeat;
  background-size: cover;
  height: 98.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  /* z-index: 10; → 旧来の「CTA が画像に被さる演出」用。演出廃止につき削除 */
}

.common-entry__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 4;
}

.common-entry__text {
  width: 62.6rem;
}

.common-entry__text img {
  width: 100%;
}

.common-entry__links a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 31.2rem;
  height: 7.3rem;
  border-radius: 6rem;
  background: var(--white);
  font-size: 3.6rem;
  line-height: 1.5;
  font-weight: 700;
  font-family: var(--poppins);
  color: var(--blue);
  box-shadow: 2rem 2rem 2rem 0 rgba(0, 0, 0, 0.2);
}

.common-entry__line {
  width: 190rem;
  height: 120rem;
  position: absolute;
  top: -12.3rem;
  left: 50%;
  transform: translateX(-50%);
  margin-left: -10.8rem;
  z-index: 2;
  filter: blur(15px);
}

.common-entry__line svg {
  width: 100%;
  height: 100%;
}

.common-entry__line svg path {
  stroke-dasharray: 10000;
  stroke-dashoffset: 10000;
  pointer-events: none;
}

._inview .common-entry__line svg path {
  animation: animateDash 2s linear forwards;
}

@keyframes animateDash {
  to {
    stroke-dashoffset: 0;
  }
}

.common-entry__image--row {
  position: absolute;
  z-index: 3;
}

.common-entry__image--row img {
  width: 100%;
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.common-entry__inner:has(.common-entry__links:hover)
  ~ .common-entry__image
  .common-entry__image--row._image01
  img {
  transform: translateY(-10%);
}

.common-entry__image--row._image01 {
  width: 13.4rem;
  top: 4.6rem;
  right: 50%;
  transform: translateX(-24.2rem);
}

.common-entry__image--row._image02 {
  width: 17.9rem;
  top: 11.1rem;
  left: 50%;
  transform: translateX(54.1rem);
}

.common-entry__inner:has(.common-entry__links:hover)
  ~ .common-entry__image
  .common-entry__image--row._image02
  img {
  transform: translateY(-10%);
}

.common-entry__image--row._image03 {
  width: 24.1rem;
  top: 21.7rem;
  right: 50%;
  transform: translateX(-43.1rem);
}

.common-entry__inner:has(.common-entry__links:hover)
  ~ .common-entry__image
  .common-entry__image--row._image03
  img {
  transform: translateY(10%);
}

.common-entry__image--row._image04 {
  width: 24.3rem;
  bottom: 2.563rem;
  right: 50%;
  transform: translateX(-22.2rem);
}

.common-entry__inner:has(.common-entry__links:hover)
  ~ .common-entry__image
  .common-entry__image--row._image04
  img {
  transform: translateY(-10%);
}

.common-entry__image--row._image05 {
  width: 25.35rem;
  bottom: 19rem;
  left: 50%;
  transform: translateX(44.7rem);
  z-index: 1;
}

.common-entry__inner:has(.common-entry__links:hover)
  ~ .common-entry__image
  .common-entry__image--row._image05
  img {
  transform: translateY(10%);
}

/*** hover ***/
@media screen and (min-width: 769px) {
  .common-entry__links a:hover {
    color: var(--white);
    background: var(--blue);
    box-shadow: 2rem 2rem 2rem 0 rgba(0, 0, 0, 0);
  }
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 768px) {
  .common-entry {
    height: 84.4rem;
  }

  .common-entry__text {
    padding: 0 1.6rem;
    width: 100%;
    text-align: center;
  }

  .common-entry__text img {
    width: 100%;
    max-width: 34.2rem;
  }

  .common-entry__links a {
    width: 18rem;
    height: 4rem;
    border-radius: 3.3rem;
    font-size: 2rem;
    box-shadow: 1.1rem 1.1rem 1.1rem 0 rgba(0, 0, 0, 0.2);
  }

  .common-entry__line {
    width: 118.72rem;
    height: auto;
    aspect-ratio: 19 / 12;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-left: 0;
    filter: blur(9px);
  }

  ._inview .common-entry__line svg path {
    animation: animateDash 1.4s linear forwards;
  }

  .common-entry__image--row._image01 {
    width: 8.85rem;
    transform: translateX(50%);
    top: 3.5rem;
  }

  .common-entry__image--row._image02 {
    width: 7.2rem;
    top: 16.7rem;
    transform: translateX(9.3rem);
  }

  .common-entry__image--row._image03 {
    width: 12rem;
    top: 14.3rem;
    transform: translateX(-4.2rem);
  }

  .common-entry__image--row._image04 {
    width: 10.65rem;
    bottom: 4rem;
    transform: translateX(-2rem);
  }

  .common-entry__image--row._image05 {
    width: 14.05rem;
    bottom: 10.3rem;
    transform: translateX(3.9rem);
    /* z-index: 3; */
  }
}

/* !page Top
---------------------------------------------------------- */
.page-top {
}

/*** hover ***/
@media screen and (min-width: 769px) {
}

/* !footer
---------------------------------------------------------- */
#footer {
  background: url(../img/common/noise_blue.webp) center center repeat;
  background-size: 10rem auto;
  padding: 6rem 2rem;
  position: relative;
  z-index: 10;
}

.footer-inner {
  width: 100%;
  max-width: 94.8rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 41rem;
  gap: 4rem;
}

.footer-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-logo {
  margin-bottom: 2.4rem;
}

.footer-logo a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-logo .logo img {
  width: 2.55rem;
}

.footer-logo .enlogo {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.footer-logo .enlogo img {
  width: 19.691rem;
}

.footer-logo .enlogo span {
  border: 0.1rem solid var(--white);
  width: 9.2rem;
  height: 2.6rem;
  border-radius: 1.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  line-height: 1;
  font-family: var(--poppins);
  color: var(--white);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}

.footer-links a {
  font-size: 1.4rem;
  line-height: 1.6rem;
  color: var(--white);
}

.copyright {
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--white);
  font-family: var(--poppins);
}

.footer-menu {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-menu > ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2rem;
}

.footer-menu > ul > li {
  line-height: 1;
}

.footer-menu > ul > li > a {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--white);
  font-weight: bold;
}

.footer-menu > ul ul li {
  margin-top: 0.5rem;
}

.footer-menu > ul ul li a {
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--white);
}

/*** hover ***/
@media screen and (min-width: 769px) {
  .footer-menu > ul ul {
    display: block !important;
  }
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 768px) {
  #footer {
    padding: 6.4rem 2.4rem;
  }

  .footer-inner {
    display: flex;
    flex-direction: column-reverse;
    gap: 3.8rem;
  }

  .footer-box {
    align-items: center;
    gap: 2.4rem;
  }

  .footer-logo {
    margin-bottom: 0;
  }

  .footer-logo a {
    width: 100%;
    justify-content: center;
    gap: 0.4rem;
  }

  .footer-logo .enlogo {
    gap: 1.6rem;
  }

  .footer-logo .enlogo img {
    width: 19.691rem;
  }

  .footer-logo .enlogo span {
    width: 9.2rem;
    height: 2.6rem;
    border-radius: 3.2rem;
    font-size: 1.4rem;
  }

  .footer-links {
    display: flex;
    align-items: center;
    gap: 3.2rem;
  }

  .footer-links a {
    font-size: 1.3rem;
  }

  .footer-menu > ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2rem;
  }

  .footer-menu > ul > li > a {
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 500;
    color: var(--white);
    font-weight: bold;
  }

  .footer-menu > ul ul li {
    margin-top: 0.5rem;
  }

  .footer-menu > ul ul li a {
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--white);
  }
}

/* !heading
---------------------------------------------------------- */

.heading-large {
  /* margin-bottom: 6.4rem; */
  margin-bottom: clamp(4rem + -3vh, 3.2rem, 5.4rem);
  color: var(--blue);
}

.about__heading-large {
  margin-bottom: clamp(4rem + -3vh, 7.2rem, 6.4rem);
}

.about__heading-large__eng {
  margin-bottom: 0px;
}

.heading-large .heading-large__eng {
  font-size: 1.6rem;
  font-weight: 500;
  font-family: var(--poppins);
  line-height: 1.5;
  display: block;
  margin-bottom: 0.15rem;
}

.heading-large .heading-large__jap {
  font-size: 4.2rem;
  line-height: 1.5;
  font-weight: 700;
  display: block;
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 768px) {
  .heading-large {
    margin-bottom: 2.15rem;
  }

  .heading-large .heading-large__eng {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
  }

  .heading-large .heading-large__jap {
    font-size: 2.8rem;
  }
}

/* !links
---------------------------------------------------------- */
.btn-links {
  border: 0.1rem solid var(--blue);
  border-radius: 6.4rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 700;
  gap: 1.6rem;
  padding: 0.8rem 2.4rem;
  color: var(--blue);
}

.btn-links:after {
  width: 3.5rem;
  height: 2.6rem;
  content: "";
  background: url(../img/common/icon_arrow_right_blue.svg) center center
    no-repeat;
  background-size: 0.5rem auto;
  transition:
    background-image 0.5s,
    transform 0.5s;
}

.about__btn-links.btn-links {
  padding: 0.8rem 1.6rem 1.1rem 2.4rem;
}

.icon-blank {
  display: inline-block;
  padding-right: 2.4rem;
  background: url(../img/common/icon_blank.svg) right center no-repeat;
  background-size: 1.6rem auto;
}

/*** hover ***/
@media screen and (min-width: 769px) {
  .btn-links:hover {
    background: var(--blue);
    color: var(--white);
  }

  .btn-links:hover:after {
    background-image: url(../img/common/icon_arrow_right_white.svg);
    transform: translateX(1.6rem);
  }
}
/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 768px) {
  .btn-links:after {
    transform: translateX(1.6rem);
  }

  .btn-links {
    font-size: 1.6rem !important;
  }
}

/* !main Visual
---------------------------------------------------------- */
#main-visual {
  width: 100%;
  height: 100vh;
}

.main-visual__image {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  will-change: transform;
}
.main-visual__opening--image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  will-change: transform;
}
.main-visual__opening--image__item {
  width: calc((974 / var(--vw)) * 100vw);
  height: calc((632 / var(--vw)) * 100vw);
  background-color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  will-change: transform;
  opacity: 0;
  overflow: hidden;
}
._loaded .main-visual__opening--image__item {
  animation: mv-clip 0.3s cubic-bezier(0.025, 0.64, 0.415, 0.975) forwards;
}
.main-visual__opening--image__item:nth-of-type(2) {
  animation-delay: 0.78s;
}
.main-visual__opening--image__item:nth-of-type(3) {
  animation-delay: 1.22s;
}
.main-visual__opening--image__item:nth-of-type(4) {
  animation-delay: 1.58s;
}
.main-visual__opening--image__item:nth-of-type(5) {
  animation-delay: 1.86s;
}
.main-visual__opening--image__item:nth-of-type(6) {
  animation-delay: 2.11s;
}
.main-visual__opening--image__item:nth-of-type(7) {
  animation-delay: 2.34s;
}
@keyframes mv-clip {
  0% {
    opacity: 0;
    width: calc((974 / var(--vw)) * 100vw);
    height: calc((632 / var(--vw)) * 100vw);
  }
  80% {
    opacity: 1;
    width: calc((974 / var(--vw)) * 100vw);
    height: calc((632 / var(--vw)) * 100vw);
  }
  100% {
    opacity: 1;
    width: 100vw;
    height: 100vh;
  }
}
.main-visual__opening--image__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.main-visual__image--item {
  width: calc((974 / var(--vw)) * 100vw);
  height: calc((632 / var(--vw)) * 100vw);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  z-index: 3;
  will-change: transform;
  opacity: 0;
  overflow: hidden;
  border-radius: 0;
}
._step01.main-visual__image--item {
  animation: mv-clip 0.3s cubic-bezier(0.025, 0.64, 0.415, 0.975) forwards;
}
@keyframes mv-unload {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
._step02.main-visual__image--item {
  transition: 1.2s cubic-bezier(0.77, 0, 0.175, 1);
  width: 100%;
  height: 100vh;
}

.main-visual__image--item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}

#main-visual .mv-copy {
  width: 104.4rem;
  position: absolute;
  right: 2.1rem;
  bottom: 6.4rem;
  z-index: 2;
  mix-blend-mode: difference;
  opacity: 0;
  transform: translateY(100%);
  transition:
    transform 1.2s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 1.2s ease;
}

#main-visual .mv-copy._step03 {
  opacity: 1;
  transform: translateY(0);
}

#main-visual .mv-copy img {
  width: 100%;
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 768px) {
  .main-visual__opening--image__item,
  .main-visual__image--item {
    width: 80vw;
    height: 80vh;
  }

  #main-visual .mv-copy {
    width: 100%;
    padding: 0 1.6rem;
    right: 0;
    bottom: 2.4rem;
  }

  @keyframes mv-clip {
    0% {
      opacity: 0;
      width: 80vw;
      height: 80vh;
    }
    80% {
      opacity: 1;
      width: 80vw;
      height: 80vh;
    }
    100% {
      opacity: 1;
      width: 100vw;
      height: 100vh;
    }
  }
}

.top-head {
  width: 100%;
  overflow: hidden;
}

.top-about {
  width: 100%;
  position: relative;
  z-index: 2;
}

.top-about__inner {
  width: 100%;
  height: auto;
  padding: 10vh 0 0;
  position: relative;
  z-index: 1;
}

.top-about__slider--container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.top-about__slider {
  display: flex;
  flex-direction: column;
  gap: calc((16 / var(--vw)) * 100vw);
  width: calc((334 / var(--vw)) * 100vw);
  height: 100%;
  border-radius: calc((16 / var(--vw)) * 100vw);
  position: absolute;
  top: 0;
  overflow: hidden;
}
.top-about__slider._left {
  left: 0;
}
.top-about__slider._right {
  right: 0;
}
.top-about__slider--wrap {
  display: flex;
  flex-direction: column;
  gap: calc((16 / var(--vw)) * 100vw);
  width: 100%;
  height: auto;
  will-change: transform;
}
.top-about__slider--list {
  display: flex;
  flex-direction: column;
  gap: calc((16 / var(--vw)) * 100vw);
  width: 100%;
  height: auto;
}
.top-about__slider--item {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
}

.top-about__content {
  width: calc((844 / var(--vw)) * 100vw);
  padding: calc((480 / var(--vw)) * 100vw) 0;
  margin: 0 auto;
}

.top-about__content--inner {
  padding: 0 calc((72 / var(--vw)) * 100vw);
}

.top-about__text {
  font-size: calc((26 / var(--vw)) * 100vw);
  font-weight: 700;
  line-height: 2;
  width: 100%;
}

.top-about__text--row {
  display: block;
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  transition: 2.4s cubic-bezier(0.19, 1, 0.22, 1);
}

._inview .top-about__text--row {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.top-about__links {
  margin-top: calc((72 / var(--vw)) * 100vw);
  width: 100%;
}

.top-about__links--row {
  position: relative;
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  transition: 2.4s cubic-bezier(0.19, 1, 0.22, 1);
}

._inview .top-about__links--row {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.top-about__links--row a {
  width: 100%;
  height: calc((110 / var(--vw)) * 100vw);
  display: flex;
  align-items: center;
  font-size: calc((18 / var(--vw)) * 100vw);
  font-weight: 700;
  line-height: 1.5;
  padding: 0 calc((51 / var(--vw)) * 10vw) 0 calc((24 / var(--vw)) * 100vw);
  background: url(../img/common/icon_arrow_right_blue.svg) right
    calc((23 / var(--vw)) * 100vw) center no-repeat;
  background-size: calc((5 / var(--vw)) * 100vw) auto;
  position: relative;
}

.top-about__links--row a:before,
.top-about__links--row a:after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 0.1rem;
  border-radius: 0.1rem;
}

.top-about__links--row a:before {
  z-index: 1;
  width: 100%;
  background: var(--gray);
}

.top-about__links--row a:after {
  z-index: 2;
  background: var(--blue);
  width: calc((32 / var(--vw)) * 100vw);
  transition: width 0.5s ease;
}

@media all and (min-width: 769px) {
  .top-about__links--row a:hover:after {
    width: 100%;
  }

  /* about */
  .top-about__object {
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
  }
  .top-about__object--inner {
    width: 200vw;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 9999px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    clip-path: circle(0% at 50% 50%);
    will-change: transform;
    overflow: hidden;
    pointer-events: none;
  }
  .top-about__object--bg {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 9999px;
    pointer-events: auto;
    background-image: url(../img/common/noise_blue.webp);
    background-size: 10rem 10rem;
    background-repeat: repeat;
    background-position: center;
  }
  .top-about__object--text__wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    will-change: transform;
  }
  .top-about__object--text {
    font-size: calc((32 / var(--vw)) * 100vw);
    font-weight: 700;
    line-height: 2;
    text-align: center;
    color: var(--white);
    white-space: nowrap;
    z-index: 2;
    pointer-events: none;
    will-change: transform;
    transform: translateY(-10vh);
  }
  .top-about__object--text__row {
    overflow: hidden;
    display: block;
  }
  .top-about__object--text__row--item {
    display: block;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateY(100%);
  }
  ._inview .top-about__object--text__row--item {
    transform: translateY(0%);
  }

  .top-about__slider {
    transform: translateY(50%);
  }
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 768px) {
  .top-about__object {
    width: 100%;
    height: 80vh;
    position: relative;
    z-index: 2;
  }
  .top-about__object--inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
  }
  .top-about__object--bg {
    width: 100vh;
    height: 100vh;
    border-radius: 50%;
    clip-path: ellipse(5% 5% at 50% 50%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
    opacity: 0;
    background-image: url(../img/common/noise_blue.webp);
    background-size: 10rem 10rem;
    background-repeat: repeat;
    background-position: center;
  }
  .top-about__object--text__wrap {
    display: flex;
    flex-direction: column;
    gap: calc((5 / var(--vw)) * 100vw);
    position: relative;
    transform: translateY(-20vh);
    z-index: 2;
  }
  .top-about__object--text {
    font-size: calc((24 / var(--vw)) * 100vw);
    font-weight: 700;
    line-height: 2;
    text-align: center;
    color: var(--white);
    white-space: nowrap;
    pointer-events: none;
    will-change: transform;
  }
  .top-about__object--text__row {
    overflow: hidden;
    display: block;
  }
  .top-about__object--text__row--item {
    display: block;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateY(100%);
  }
  ._inview .top-about__object--text__row--item {
    transform: translateY(0%);
  }

  .top-about__inner {
    padding: calc((184 / var(--vw)) * 100vw) 0;
  }
  .top-about__inner > .pin-spacer {
    height: 100%;
  }
  .top-about__slider--container {
    height: 100% !important;
    z-index: 2;
    overflow: hidden;
    will-change: transform;
  }
  .top-about__slider {
    flex-direction: row;
    gap: calc((8 / var(--vw)) * 100vw);
    width: 100%;
    height: auto;
    border-radius: calc((16 / var(--vw)) * 100vw);
    background-color: var(--color--white);
    position: absolute;
    left: 0 !important;
    overflow: initial;
  }
  .top-about__slider._left {
    top: 0 !important;
  }
  .top-about__slider._right {
    top: initial !important;
    bottom: 0px;
    right: auto;
  }
  .top-about__slider::after {
    content: "";
    display: block;
    width: 100%;
    height: calc((47 / var(--vw)) * 100vw);
    position: absolute;
    left: 0;
    z-index: 1;
  }
  .top-about__slider._left::after {
    top: 100%;
    background: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 1) 75%
    );
  }
  .top-about__slider._right::after {
    bottom: 100%;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 1) 75%
    );
  }
  .top-about__slider--wrap {
    flex-direction: row;
    gap: calc((8 / var(--vw)) * 100vw);
    width: auto;
    height: calc((120 / var(--vw)) * 100vw);
  }
  .top-about__slider--list {
    flex-direction: row;
    gap: calc((8 / var(--vw)) * 100vw);
    width: auto;
    height: 100%;
  }
  .top-about__slider--item {
    width: auto;
    height: 100%;
  }

  .top-about__content {
    width: 100%;
    padding: 0;
  }
  .top-about__content--inner {
    padding: 0 2.4rem;
  }
  .top-about__text {
    font-size: 1.8rem;
  }

  .top-about__links {
    margin-top: 4.8rem;
  }
  .top-about__links--row:after {
    width: 3.2rem;
  }

  .top-about__links--row a {
    width: 100%;
    height: 7.6rem;
    font-size: 1.6rem;
    padding: 0 4rem 0 2.4rem;
    background-position: right 2.4rem center;
    background-size: 0.5rem auto;
  }
}

.top-body {
  position: relative;
  width: 100%;
}

.top-mainimage {
  width: 100%;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-mainimage__image {
  width: calc((1416 / var(--vw)) * 100vw);
  height: calc((662 / var(--vh)) * 100vh);
  overflow: hidden;
  transition:
    width 1.5s cubic-bezier(0.77, 0, 0.175, 1),
    height 1.5s cubic-bezier(0.77, 0, 0.175, 1);
  position: relative;
}

._start .top-mainimage__image {
  width: 100%;
  height: 100vh;
}

.top-mainimage__image:before {
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--blue);
  opacity: 0;
  content: "";
  transition: opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

._start .top-mainimage__image:before {
  opacity: 0.8;
}

.top-mainimage__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-mainimage__box {
  height: 600vh;
  position: relative;
}

.top-mainimage__box .top-mainimage__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  pointer-events: none;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.top-mainimage__box .top-mainimage__item {
  width: 100%;
  height: 200vh;
}

.top-mainitem {
  margin-top: 100vh;
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-mainitem__inner {
  width: 100%;
  padding: 0 8rem;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.top-mainimage__box._arrived1 .top-mainitem:nth-child(1) .top-mainitem__inner,
.top-mainimage__box._arrived2 .top-mainitem:nth-child(2) .top-mainitem__inner {
  transform: translateY(-5%) scale(0.95);
}

.top-mainimage__box._arrived2 .top-mainitem:nth-child(1) .top-mainitem__inner {
  transform: translateY(-10%) scale(0.9);
}

.top-mainitem__wrap {
  background: var(--white);
  padding: 4.8rem;
  border-radius: 1.6rem;
  display: grid;
  grid-template-columns: auto 56rem;
  gap: 6.4rem;
  position: relative;
}

.top-mainitem__wrap:before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: var(--blue);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
  content: "";
}

.top-mainimage__box._arrived1
  .top-mainitem:nth-child(1)
  .top-mainitem__wrap:before,
.top-mainimage__box._arrived2
  .top-mainitem:nth-child(2)
  .top-mainitem__wrap:before {
  opacity: 0.3;
}

.top-mainimage__box._arrived2
  .top-mainitem:nth-child(1)
  .top-mainitem__wrap:before {
  opacity: 0.6;
}

.top-mainitem__box {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 6.6rem;
  gap: 2rem;
}

.top-mainitem__box--head {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
}

.top-mainitem__box--head__title {
  margin-bottom: 2.4rem;
}

.top-mainitem__box--head__title--eng {
  font-family: var(--poppins);
  font-weight: 500;
  color: var(--blue);
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 0.2rem;
  display: block;
}

.top-mainitem__box--head__title--jap {
  font-size: 4.2rem;
  line-height: 1.5;
  font-weight: 700;
  display: block;
}

.top-mainitem__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0.8rem;
}

.top-mainitem__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-mainitem__links {
  width: 100%;
}

.top-mainitem__links--row a {
  width: 100%;
  height: 11rem;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 0 5.1rem 0 2.4rem;
  background: url(../img/common/icon_arrow_right_blue.svg) right 2.3rem center
    no-repeat;
  background-size: 0.5rem auto;
  position: relative;
}

.top-mainitem__links--row a:before,
.top-mainitem__links--row a:after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 0.1rem;
  border-radius: 0.1rem;
}

.top-mainitem__links--row a:before {
  z-index: 1;
  width: 100%;
  background: var(--gray);
}

.top-mainitem__links--row a:after {
  z-index: 2;
  background: var(--blue);
  width: 3.2rem;
  transition: width 0.5s ease;
}

@media all and (min-width: 769px) {
  .top-mainitem__links--row a:hover:after {
    width: 100%;
  }
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 768px) {
  .top-mainimage__image {
    width: calc(100% - 3.2rem);
    height: calc(100vh - 3.2rem);
  }

  .top-mainitem__inner {
    padding: 0 1.6rem;
  }

  .top-mainitem__wrap {
    padding: 1.6rem 1.6rem 3.2rem;
    border-radius: 1.6rem;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 2.7rem;
    height: calc(100vh - 16rem);
  }

  .top-mainitem__image {
    aspect-ratio: 163 / 120;
    border-radius: 1.6rem;
  }

  .top-mainitem__box {
    padding-top: 0;
    gap: 1rem;
    justify-content: space-between;
    height: auto;
    flex-grow: 1;
  }

  .top-mainitem__box--head {
    font-size: 1.4rem;
    line-height: 1.75;
  }

  .top-mainitem__box--head__title {
    margin-bottom: 1.5rem;
  }

  .top-mainitem__box--head__title--eng {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 0;
  }

  .top-mainitem__box--head__title--jap {
    font-size: 2.8rem;
    line-height: 1.5;
  }

  .top-mainitem__links--row:after {
    width: 3.2rem;
  }

  .top-mainitem__links--row a {
    height: 7.6rem;
    font-size: 1.6rem;
    padding: 0 4rem 0 2.4;
    background-position: right 2.4rem center;
  }
}

.top-interview {
  background: var(--lightblue);
  position: relative;
  z-index: 10;
  padding: 15.4rem 0 16rem;
  overflow: hidden;
}

.top-interview__heading {
  position: absolute;
  left: -1.9rem;
  top: -1.4rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.3rem;
  line-height: 1;
}

.top-interview__heading--main {
  font-size: 14.8rem;
  color: var(--blue);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 700;
}

.top-interview__heading--note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 700;
  color: var(--blue);
}

.top-interview__heading--note img {
  width: 10.287rem;
}

.top-interview__inner {
  width: 100%;
  max-width: 94.8rem;
  margin: 0 auto;
}

.top-interview__list .swiper {
  overflow: visible;
}

.top-interview__list--item {
  display: grid;
  grid-template-columns: 24.8rem auto;
  gap: 4.8rem;
  width: 100%;
  padding-left: 3.5rem;
  position: relative;
  transform: scale(0.5);
  transform-origin: left center;
  transition: transform 0.5s;
}

.top-interview__subtitle {
  font-size: 1.6rem;
  font-weight: 500;
  font-family: var(--poppins);
  line-height: 1;
  color: var(--blue);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  word-break: keep-all;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 0.8rem;
  opacity: 0;
  transition: opacity 0.5s;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.top-interview__subtitle:after {
  flex-grow: 1;
  width: 0.1rem;
  background: var(--blue);
  content: "";
}

.top-interview__image {
  width: 100%;
  aspect-ratio: 248 / 398;
  overflow: hidden;
}

.top-interview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-interview__box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  clip-path: inset(-5% 105% -5% -5%);
  transition: clip-path 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.5s;
}

.top-interview__title {
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: 700;
  width: 100%;
  color: var(--black);
}

.top-interview__info {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
  width: 100%;
  color: var(--black);
}

.top-interview__info--join,
.top-interview__info--post {
  display: block;
}

.top-interview__name {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.top-interview__name--jap {
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.5;
}

.top-interview__name--eng {
  font-family: var(--poppins);
}

.top-interview__links {
  position: relative;
  width: 100%;
  height: 6.8rem;
  display: flex;
  align-items: flex-start;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 0 5.1rem 0 2.4rem;
  background: url(../img/common/icon_arrow_right_blue.svg) right 2.3rem top
    0.95rem no-repeat;
  background-size: 0.5rem auto;
  transition: color 0.5s ease;
}

.top-interview__links:before,
.top-interview__links:after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 0.1rem;
  border-radius: 0.1rem;
}

.top-interview__links:before {
  z-index: 1;
  width: 100%;
  background: var(--gray);
}

.top-interview__links:after {
  z-index: 2;
  background: var(--blue);
  width: 3.2rem;
  transition: width 0.5s ease;
}

.swiper-slide-active .top-interview__list--item {
  transform: scale(1);
}

.swiper-slide-active .top-interview__subtitle {
  opacity: 1;
}

.swiper-slide-active .top-interview__box {
  clip-path: inset(-5% -5% -5% -5%);
}

@media screen and (min-width: 769px) {
  .top-interview__heading--main {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }

  .top-interview__list--item:hover .top-interview__links:after {
    width: 100%;
  }
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 768px) {
  .top-interview {
    padding: 0 2.4rem 4.8rem;
  }

  .top-interview__heading {
    position: relative;
    left: 0;
    top: 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.3rem;
    width: calc(100% + 4.8rem);
    margin: 0 -2.4rem 4.8rem;
    padding: 0 1.6rem 0 0;
  }

  .top-interview__heading--main {
    font-size: 4.7rem;
    line-height: 1.1;
    margin: -0.8rem 0 0 -1.2rem;
  }

  .top-interview__heading--note {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    line-height: 1.4;
  }

  .top-interview__heading--note img {
    width: 7rem;
  }

  .top-interview__list {
    width: 100%;
  }

  /*.top-interview__list .swiper {
        overflow: hidden;
    }*/

  .top-interview__list--item {
    display: block;
    padding-left: 0;
    transform: scale(1);
  }

  .top-interview__head {
    position: relative;
    width: 100%;
    padding: 0 5.8rem 0 3.5rem;
    display: block;
    transform: scale(0.2);
    transform-origin: left center;
    display: block;
    transition: transform 0.5s;
    margin-left: -14rem;
  }

  .swiper-slide-active .top-interview__head {
    transform: scale(1);
    margin-left: 0;
  }

  .top-interview__box {
    margin-top: 2.3rem;
    gap: 3.5rem;
  }

  .top-interview__title {
    font-size: 2.4rem;
  }

  .top-interview__info {
    font-size: 1.4rem;
  }

  .top-interview__name {
    margin-bottom: 2rem;
  }

  .top-interview__name--jap {
    font-size: 2.1rem;
  }

  .top-interview__links {
    height: 5rem;
    font-size: 1.6rem;
    padding: 0 4rem 0 2.4rem;
    background-position: right 0.5rem top 0.65rem;
  }

  .top-interview__links:after {
    width: 3.2rem;
  }
}

.top-crosstalk {
  margin-top: 16rem;
}

.top-crosstalk__inner {
  display: grid;
  grid-template-columns: auto 36rem;
  gap: 3.2rem;
  padding: 3.2rem;
  background: url(../img/common/noise_blue.webp) center center repeat;
  background-size: 10rem auto;
  border-radius: 0.8rem;
  color: var(--white);
  position: relative;
}

.top-crosstalk__heading {
  font-size: 10rem;
  font-weight: 100;
  font-family: var(--poppins);
  line-height: 0.7;
  position: absolute;
  left: 2.4rem;
  top: 2.4rem;
  z-index: 2;
  color: var(--white);
  opacity: 0.3;
}

.top-crosstalk__image {
  width: 100%;
  aspect-ratio: 360 / 284;
  clip-path: polygon(0 2.4rem, 100% 0, 100% 100%, 0 calc(100% - 2.4rem));
}

.top-crosstalk__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-crosstalk__box {
  padding-top: 9.6rem;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}

.top-crosstalk__title {
  color: var(--white);
  font-size: 2.8rem;
  line-height: 1.5;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.top-crosstalk__links {
  position: relative;
  width: 100%;
  height: 6.8rem;
  display: flex;
  align-items: flex-start;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 0 5.1rem 0 2.4rem;
  background: url(../img/common/icon_arrow_right_white.svg) right 2.3rem top
    0.95rem no-repeat;
  background-size: 0.5rem auto;
  color: var(--white);
}

.top-crosstalk__links:before,
.top-crosstalk__links:after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 0.1rem;
  border-radius: 0.1rem;
}

.top-crosstalk__links:before {
  z-index: 1;
  width: 100%;
  background: #6aa3ff;
}

.top-crosstalk__links:after {
  z-index: 2;
  background: var(--white);
  width: 3.2rem;
  transition: width 0.5s ease;
}

.top-interview__button {
  text-align: center;
  margin-top: 8rem;
}

@media all and (min-width: 769px) {
  .top-crosstalk {
    margin-top: 8rem;
  }

  .top-crosstalk__inner:hover {
    background-image: url(../img/common/noise_drakblue.webp);
    box-shadow: 2rem 2rem 2rem 0 #cadeff;
  }

  .top-crosstalk__inner:hover .top-crosstalk__links:after {
    width: 100%;
  }
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 768px) {
  .top-crosstalk {
    margin-top: 8rem;
  }

  .top-crosstalk__inner {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    padding: 2rem 1.6rem 1.6rem;
  }

  .top-crosstalk__heading {
    font-size: 5.72rem;
    line-height: 0.6993;
    position: relative;
    left: 0;
    top: 0;
    text-align: center;
    width: calc(100% + 3.2rem);
    margin: 0 -1.6rem 1.6rem;
  }
  .top-crosstalk__box {
    padding-top: 0;
  }

  .top-crosstalk__title {
    font-size: 1.8rem;
    display: block;
    margin-top: 1rem;
  }

  .top-crosstalk__links {
    margin-top: 1.6rem;
    height: 7.6rem;
    font-size: 1.6rem;
    align-items: center;
    padding: 0 4rem 0 2.4;
    background-position: right 0.5rem center;
  }

  .top-crosstalk__links:after {
    width: 3.2rem;
  }

  .top-interview__button {
    margin-top: 4.8rem;
  }
}

/* !採用メッセージ
---------------------------------------------------------- */
.message-top {
  width: 100%;
  position: relative;
  padding: 20.2rem 0 22.7rem;
}

.message-top .message-top__inner {
  width: 100%;
  max-width: 90rem;
  margin: 0 auto;
  font-size: 2.6rem;
  line-height: 2;
  font-weight: bold;
}

.message-top .message-top__title {
  font-size: 6.5rem;
  line-height: 1.5;
  font-weight: 600;
  font-family: var(--mincho);
  margin: 13.5rem 0;
}

.message-top .message-top__title span {
  font-size: 5rem;
}

.message-top .message-top__line {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 120%;
  aspect-ratio: 1512 / 982;
  filter: blur(8px);
}

.message-top .message-top__line svg {
  width: 100%;
  height: 100%;
}

.message-top .message-top__line svg path {
  stroke-dasharray: 10000;
  stroke-dashoffset: 10000;
  pointer-events: none;
}

.message-top ._inview.message-top__line svg path {
  animation: animateDash 1.1s 1.6s linear forwards;
}

.message-wanted {
  padding: calc(5.85rem + 9.3rem) 0 18.9rem;
  /* padding-top はピン位置用。margin-top で padding-top 分を打ち消し message-top 直下に接続 */
  margin-top: calc(-1 * (11.7rem + 9.3rem + 5.85));
  min-height: 100vh;
  overflow: visible;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.message-wanted--bg {
  background: transparent;
}

.message-wanted .message-wanted__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  overflow: visible;
}

.message-wanted .message-wanted__list {
  width: 53%;
  max-width: 71.6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 3.2rem;
  overflow: visible;
}

.message-wanted .message-wanted__list--item {
  width: 100%;
  border: 0.1rem solid var(--blue);
  border-radius: 1.6rem;
  padding: 1.8rem 3.2rem 2.4rem;
  display: flex;
  align-items: center;
  gap: 3.2rem;
}

.message-wanted .message-wanted__list--item .message-wanted__image {
  width: 9.9rem;
  min-width: 9.9rem;
}

.message-wanted .message-wanted__list--item .message-wanted__image img {
  width: 100%;
}

.message-wanted .message-wanted__list--item .message-wanted__info {
  flex-grow: 1;
  font-size: 1.6rem;
  line-height: 1.75;
}

.message-wanted .message-wanted__list--item .message-wanted__title {
  font-size: 3.695rem;
  line-height: 1.5;
  color: var(--blue);
  font-family: var(--mincho);
  font-weight: 600;
  margin-bottom: 1rem;
}

.message-wanted .message-wanted__list--item .message-wanted__title span {
  font-size: 2.794rem;
}

.message-wanted .message-wanted__box {
  width: calc(47% - 2rem);
  font-size: 2.1rem;
  line-height: 2;
  font-weight: bold;
}

.message-ceo {
  padding: 12rem 0 0;
  position: relative;
  transition: background 2.5s ease;
}

.message-ceo.is-bg-on {
  background: #eef1f6;
}

/* JS がアニメーションを制御するステージ領域 */
.message-ceo .message-ceo__stage {
  position: relative;
}

/* image-outer: sticky のスクロール範囲を決定する絶対配置コンテナ */
.message-ceo .message-ceo__image-outer {
  position: absolute;
  right: 0;
  top: 0;
  width: 48%;
  max-width: 65rem;
  height: 100%;
  pointer-events: none;
}

/* image-wrap: sticky で画像を viewport 下端に表示。top:0 で吸着、flex-end で下端揃え */
.message-ceo .message-ceo__image-wrap {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: visible;
}

.message-ceo .message-ceo__image {
  padding: 0 5.2rem;
}

.message-ceo .message-ceo__image img {
  width: 100%;
  max-width: 47.71rem;
  height: auto;
  aspect-ratio: 477 / 767;
  display: block;
}

/* box は inner の左半分のみ占める */
.message-ceo .message-ceo__inner {
  display: flex;
  justify-content: flex-start;
  /* align-items: flex-end; */
  align-items: center; /* ======= */
  gap: 6rem;
  min-height: 100vh; /* padding-top: 84rem; */
}

.message-ceo .message-ceo__box {
  font-size: 2.1rem;
  line-height: 2;
  font-weight: 700;
  /* padding-bottom: 15rem; */
  width: calc(52% - 6rem);
}

.message-ceo .message-ceo__box p + p {
  margin-top: 2em;
}

.message-ceo .heading-large {
  margin-bottom: 5.05rem;
}

.message-ceo .message-ceo__sign {
  font-size: 1.6rem;
  line-height: 2;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-weight: 400;
  margin-bottom: 10.65rem;
}

.message-ceo .message-ceo__sign span {
  font-size: 2.1rem;
  font-weight: 700;
}

@media screen and (min-width: 769px) and (max-width: 1800px) {
  .message-ceo .message-ceo__box {
    font-size: clamp(1.45rem, 1.08vw, 2.1rem);
  }

  .message-ceo .heading-large .heading-large__eng {
    font-size: clamp(1.2rem, 0.8vw, 1.6rem);
  }

  .message-ceo .heading-large .heading-large__jap {
    font-size: clamp(3rem, 2.15vw, 4.2rem);
  }

  .message-ceo .message-ceo__sign {
    font-size: clamp(1.2rem, 0.8vw, 1.6rem);
  }

  .message-ceo .message-ceo__sign span {
    font-size: clamp(1.5rem, 1.08vw, 2.1rem);
  }
}

@media screen and (max-width: 768px) {
  .message-top {
    padding: 4.8rem 0 3.5rem;
  }

  .message-top .message-top__inner {
    font-size: 1.6rem;
  }

  .message-top .message-top__title {
    font-size: 3.873rem;
    margin: 6.5rem 0;
    text-align: center;
  }

  .message-top .message-top__title span {
    font-size: 2.93rem;
  }

  .message-top .message-top__line {
    position: absolute;
    right: -10%;
    bottom: 9.7rem;
    z-index: -1;
    aspect-ratio: 902 / 537;
  }
  @media screen and (min-width: 551px) {
    .message-top .message-top__line {
      bottom: 0;
    }
  }

  .message-top ._inview.message-top__line svg path {
    animation: animateDash 1.4s linear 1s forwards;
  }

  .message-wanted {
    padding: 3.5rem 0 3.75rem;
    margin-top: 0;
  }

  .message-wanted .message-wanted__inner {
    flex-direction: column;
    gap: 2.4rem;
  }

  .message-wanted .message-wanted__list {
    width: 100%;
    max-width: 100%;
    gap: 1.6rem;
  }

  .message-wanted .message-wanted__list--item {
    padding: 1.6rem 1.6rem 1.7rem;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
  }

  .message-wanted .message-wanted__list--item .message-wanted__info {
    width: 100%;
    font-size: 1.4rem;
  }

  .message-wanted .message-wanted__list--item .message-wanted__title {
    font-size: 2.956rem;
    margin-bottom: 1.4rem;
    text-align: center;
  }

  .message-wanted .message-wanted__list--item .message-wanted__title span {
    font-size: 2.236rem;
  }

  .message-wanted .message-wanted__box {
    width: 100%;
    font-size: 1.4rem;
  }

  .message-ceo {
    padding: 3.75rem 0 0;
  }

  .message-ceo .message-ceo__stage {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* min-height: 100vh; */
  }

  .message-ceo .inner {
    order: 1;
  }

  .message-ceo .message-ceo__image-outer {
    position: static;
    width: 100%;
    max-width: none;
    height: auto;
    order: 2;
    pointer-events: auto;
  }

  .message-ceo .message-ceo__image-wrap {
    position: static;
    top: auto;
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    padding: 3.2rem 0 0;
    overflow: visible;
  }

  .message-ceo .message-ceo__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: auto;
    padding-top: 0;
  }

  .message-ceo .message-ceo__image {
    width: 100%;
    max-width: 29.4rem;
    padding: 0;
  }

  .message-ceo .message-ceo__image img {
    width: 100%;
  }

  .message-ceo .message-ceo__box {
    font-size: 1.4rem;
    padding-bottom: 0;
    width: 100%;
  }

  .message-ceo .heading-large {
    margin-bottom: 4.2rem;
  }

  .message-ceo .message-ceo__info {
    display: flex;
    flex-direction: column-reverse;
  }

  .message-ceo .message-ceo__text {
    width: 100%;
  }

  .message-ceo .message-ceo__sign {
    font-size: 1.4rem;
    line-height: 1.5;
    justify-content: flex-end;
    margin: 3.2rem 0 0;
    width: 100%;
  }

  .message-ceo .message-ceo__sign span {
    font-size: 1.6rem;
  }
}

/* !営業職紹介
---------------------------------------------------------- */
.works-sales {
  padding: 20.2rem 0 24rem;
}

.works-sales .works-sales__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.works-sales .works-sales__head {
  width: 41.7%;
  max-width: 56.4rem;
}

.works-sales .works-sales__image {
  width: 100%;
}

.works-sales .works-sales__image img {
  width: 100%;
  border-radius: 0.8rem;
}

.works-sales .works-sales__body {
  width: 44.8%;
}

.works-sales .works-sales__text {
  font-size: 2.1rem;
  line-height: 2;
  font-weight: bold;
}

.works-sales .works-sales__box {
  margin-top: 8rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2.4rem;
}

.works-sales .works-sales__box ul li {
  font-size: 1.6rem;
  line-height: 1.5;
  padding-left: 2.4rem;
  position: relative;
  padding: 0.4rem 0 0.4rem 2.4rem;
}

.works-sales .works-sales__box ul li:before {
  width: 0.4rem;
  height: 0.4rem;
  content: "";
  background: var(--black);
  position: absolute;
  left: 1rem;
  top: 1.4rem;
  z-index: 2;
  border-radius: 100%;
}

.works-sales .works-sales__subtitle {
  border: 0.1rem solid var(--blue);
  border-radius: 3.2rem;
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 0.9rem 1.6rem;
  font-weight: bold;
  color: var(--blue);
}

.works-oneday {
  background: var(--lightblue);
  padding: 16rem 0;
}

.works-oneday .works-oneday__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8rem;
  position: relative;
}

.works-oneday .works-oneday__side {
  width: 52rem;
  min-width: 52rem;
  position: sticky;
  top: 10rem;
}

.works-oneday__links {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 2.4rem;
}

.works-oneday__title {
  width: 100%;
  display: flex;
  align-items: center;
  border-radius: 0.8rem;
  overflow: hidden;
  padding: 1.6rem 0;
  color: var(--blue);
  position: relative;
}

.works-oneday__title:before {
  width: 0.1rem;
  background: var(--blue);
  position: absolute;
  left: 9.1rem;
  top: 1.6rem;
  bottom: 1.6rem;
  z-index: 2;
  content: "";
  transition: background 0.5s;
}

.works-oneday__title:after {
  width: 100%;
  height: 100%;
  border: 0.1rem solid var(--blue);
  border-radius: 0.8rem;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  content: "";
  transition: opacity 0.5s;
}

.works-oneday__title.is-active {
  color: var(--white);
  background: linear-gradient(90deg, #27e58e 0%, #0fc4f2 25.96%, #1b34b2 100%);
}

.works-oneday__title.is-active:before {
  background: var(--white);
}

.works-oneday__title.is-active:after {
  opacity: 0;
}

@media all and (min-width: 769px) {
  .works-oneday__links .works-oneday__title:hover {
    color: var(--white);
    background: linear-gradient(
      90deg,
      #27e58e 0%,
      #0fc4f2 25.96%,
      #1b34b2 100%
    );
  }

  .works-oneday__links .works-oneday__title:hover:before {
    background: var(--white);
  }

  .works-oneday__links .works-oneday__title:hover:after {
    opacity: 0;
  }
}

.works-oneday__title .works-oneday__title--date {
  width: 9rem;
  min-width: 9rem;
  padding: 0.65rem 0;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.5;
  font-family: var(--poppins);
  font-weight: 400;
}

.works-oneday__title .works-oneday__title--contents {
  font-size: 2.1rem;
  line-height: 1.2857;
  font-weight: bold;
  padding: 0 2.4rem;
}

.works-oneday .works-oneday__contents {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.works-oneday__contents .works-oneday__title {
  color: var(--white);
  background: linear-gradient(90deg, #27e58e 0%, #0fc4f2 25.96%, #1b34b2 100%);
  display: none;
}

.works-oneday__contents .works-oneday__title:before {
  background: var(--white);
}

.works-oneday__contents .works-oneday__title:after {
  opacity: 0;
}

.works-oneday__box {
  background: var(--white);
  padding: 4.8rem 4.8rem 4rem;
  border-radius: 1.6rem;
}

.works-oneday__image {
  width: 100%;
  border-radius: 0.8rem;
  aspect-ratio: 65 / 36;
  overflow: hidden;
}

.works-oneday__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.works-oneday__text {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  line-height: 1.75;
}

.works-oneday__text p + p {
  margin-top: 1.75em;
}

.works-career {
  background: url(../img/common/noise_blue.webp) center center repeat;
  background-size: 10rem 10rem;
  padding: 16rem 0;
  color: var(--white);
}

.works-career .works-career__inner {
  width: 100%;
  display: flex;
  align-items: flex-start;
}

.works-career .heading-large {
  width: 50%;
  color: var(--white);
  margin-bottom: 0;
}

.works-career .works-career__text {
  width: 50%;
  padding-left: 4.8rem;
  font-size: 2.1rem;
  line-height: 2;
  font-weight: bold;
}

.works-career .works-career__image {
  margin-top: 8rem;
  width: 100%;
}

.works-career .works-career__image img {
  width: 100%;
}

.works-interview {
  padding: 16rem 0;
  width: 100%;
  overflow: hidden;
}

.works-interview__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 10.4rem;
}

.works-interview__heading .heading-large {
  margin-bottom: 0;
}

.works-interview__heading .works-interview__heading--note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
  font-size: 1.54rem;
  line-height: 1;
  font-weight: bold;
  color: var(--blue);
}

.works-interview__heading .works-interview__heading--note img {
  width: 11.315rem;
}

@media screen and (max-width: 768px) {
  #works .page-navi ul li:nth-child(2) {
    grid-row: 2 / 3;
    grid-column: 1 / 3;
  }

  .works-sales {
    padding: 4.8rem 0 8rem;
  }

  .works-sales .works-sales__inner {
    flex-direction: column;
  }

  .works-sales .works-sales__head {
    width: 100%;
    max-width: 100%;
  }

  .works-sales .works-sales__image {
    display: none;
  }

  .works-sales .works-sales__body {
    width: 100%;
  }

  .works-sales .works-sales__text {
    font-size: 1.4rem;
  }

  .works-sales .works-sales__box {
    margin-top: 4.8rem;
    gap: 1.6rem;
  }

  .works-sales .works-sales__box ul li {
    font-size: 1.4rem;
    padding: 0.35rem 0 0.35rem 2.1rem;
  }

  .works-sales .works-sales__box ul li:before {
    width: 0.35rem;
    height: 0.35rem;
    left: 0.875rem;
    top: 1.225rem;
  }

  .works-sales .works-sales__subtitle {
    font-size: 1.4rem;
  }

  .works-oneday {
    padding: 8rem 0;
  }

  .works-oneday .works-oneday__inner {
    display: block;
    position: relative;
  }

  .works-oneday .works-oneday__side {
    width: 100%;
    min-width: 100%;
    position: relative;
    top: 0;
  }

  .works-oneday__links {
    display: none;
  }

  .works-oneday__title {
    padding: 1.2rem 0;
    margin-bottom: 0.8rem;
  }

  .works-oneday__title:before {
    left: 6.7rem;
    top: 1.2rem;
    bottom: 1.2rem;
  }

  .works-oneday__title:after {
    display: none;
  }

  .works-oneday__title .works-oneday__title--date {
    width: 6.7rem;
    min-width: 6.7rem;
    padding: 0.4rem 0;
    font-size: 1.6rem;
  }

  .works-oneday__title .works-oneday__title--contents {
    font-size: 1.6rem;
    line-height: 1.5;
    padding: 0 1.6rem;
  }

  .works-oneday .works-oneday__contents {
    width: 100%;
    gap: 1.6rem;
  }

  .works-oneday__contents .works-oneday__title {
    display: flex;
  }

  .works-oneday__box {
    padding: 1.6rem;
    border-radius: 0.8rem;
  }

  .works-oneday__image {
    aspect-ratio: 31 / 17;
  }

  .works-career {
    padding: 8rem 0;
  }

  .works-career .works-career__inner {
    flex-direction: column;
  }

  .works-career .heading-large {
    width: 100%;
    margin-bottom: 2.2rem;
  }

  .works-career .works-career__text {
    width: 100%;
    padding-left: 0;
    font-size: 1.4rem;
  }

  .works-career .works-career__image {
    margin-top: 3.2rem;
  }

  .works-interview {
    padding: 8rem 0;
  }

  .works-interview__heading {
    margin-bottom: 2.2rem;
  }

  .works-interview__heading .works-interview__heading--note {
    gap: 0.8rem;
    font-size: 1rem;
  }

  .works-interview__heading .works-interview__heading--note img {
    width: 6.943rem;
  }
}

/* !環境を知る
---------------------------------------------------------- */
.enviroment-culture {
  padding: 20.2rem 0 8rem;
}

.enviroment-culture__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

.enviroment-culture__list .enviroment-culture__list--item {
  background: var(--lightblue);
  padding: 2.4rem;
  border-radius: 1.6rem;
  font-size: 1.6rem;
  line-height: 1.75;
}

.enviroment-culture__list--item:nth-child(1)._inview {
  transition-delay: 0s;
}

.enviroment-culture__list--item:nth-child(2)._inview {
  transition-delay: 0.15s;
}

.enviroment-culture__list--item:nth-child(3)._inview {
  transition-delay: 0.3s;
}

.enviroment-culture__list--item:nth-child(4)._inview {
  transition-delay: 0.45s;
}

.enviroment-culture__list--item:nth-child(5)._inview {
  transition-delay: 0.6s;
}

.enviroment-culture__image {
  width: 100%;
  border-radius: 0.4rem;
  overflow: hidden;
  aspect-ratio: 387 / 240;
  margin-bottom: 2.8rem;
}

.enviroment-culture__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.enviroment-culture__title {
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--blue);
  margin-bottom: 0.8rem;
}

.enviroment-training {
  padding: 8rem 0;
}

.enviroment-training__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}

.enviroment-training__list .enviroment-training__list--item {
  border: 0.1rem solid var(--blue);
  padding: 2.4rem;
  border-radius: 1.6rem;
  font-size: 1.6rem;
  line-height: 1.75;
}

.enviroment-training__list--item:nth-child(1)._inview {
  transition-delay: 0s;
}

.enviroment-training__list--item:nth-child(2)._inview {
  transition-delay: 0.15s;
}

.enviroment-training__list--item:nth-child(3)._inview {
  transition-delay: 0.3s;
}

.enviroment-training__list--item:nth-child(4)._inview {
  transition-delay: 0.45s;
}

.enviroment-training__image {
  width: 100%;
  border-radius: 0.8rem;
  margin-bottom: 0.8rem;
}

.enviroment-training__image img {
  width: 100%;
}

.enviroment-training__title {
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--blue);
  margin-bottom: 0.8rem;
}

.enviroment-benefits {
  padding: 8rem 0 16rem;
}

.enviroment-benefits__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

.enviroment-benefits__list .enviroment-benefits__list--item {
  background: var(--blue);
  padding: 1.6rem 2.4rem;
  border-radius: 2.4rem;
  font-size: 2.1rem;
  line-height: 1.5;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 2.4rem;
  color: var(--white);
}

.enviroment-benefits__list--item:nth-child(1)._inview {
  transition-delay: 0s;
}

.enviroment-benefits__list--item:nth-child(2)._inview {
  transition-delay: 0.15s;
}

.enviroment-benefits__list--item:nth-child(3)._inview {
  transition-delay: 0.3s;
}

.enviroment-benefits__list--item:nth-child(4)._inview {
  transition-delay: 0.45s;
}

.enviroment-benefits__list--item:nth-child(5)._inview {
  transition-delay: 0.6s;
}

.enviroment-benefits__list--item:nth-child(6)._inview {
  transition-delay: 0.75s;
}

.enviroment-benefits__image {
  width: 9.6rem;
  min-width: 9.6rem;
  border-radius: 100%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.enviroment-benefits__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.enviroment-benefits__list--item-texts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.enviroment-benefits__list--item-text-main {
  height: 15px;
  display: flex;
  align-items: center;
}

.enviroment-benefits__list--item-text-sub {
  font-size: 1.4rem;
  height: 10px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  #enviroment .page-navi ul li:nth-child(1) {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
  }

  .enviroment-culture {
    padding: 4.8rem 0 4rem;
  }

  .enviroment-culture__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.6rem;
  }

  .enviroment-culture__list .enviroment-culture__list--item {
    padding: 1.6rem;
    border-radius: 0.8rem;
    font-size: 1.4rem;
  }

  .enviroment-culture__image {
    aspect-ratio: 31 / 17;
    margin-bottom: 1rem;
  }

  .enviroment-culture__title {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
  }

  .enviroment-training {
    padding: 4rem 0 5.25rem;
  }

  .enviroment-training__list {
    grid-template-columns: repeat(1, 1fr);
  }

  .enviroment-training__list .enviroment-training__list--item {
    padding: 1.6rem;
    border-radius: 0.8rem;
    font-size: 1.4rem;
  }

  .enviroment-training__image {
    max-width: 27.2rem;
    margin: 0 auto;
    margin-bottom: 1rem;
  }

  .enviroment-benefits__list--item-text-main {
    height: 13px;
  }

  .enviroment-training__title {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
  }

  .enviroment-benefits {
    padding: 5.25rem 0 8rem;
  }

  .enviroment-benefits__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.6rem;
  }

  .enviroment-benefits__list .enviroment-benefits__list--item {
    padding: 0.8rem 1.6rem;
    border-radius: 0.8rem;
    font-size: 1.8rem;
    gap: 1.6rem;
  }

  .enviroment-benefits__image {
    width: 6.4rem;
    min-width: 6.4rem;
  }
}

/* !募集要項
---------------------------------------------------------- */
.recruitment-info {
  padding: 20.2rem 0 16rem;
}

.recruitment-info__list {
  border-top: 0.1rem solid #d1e3ff;
}

.recruitment-info__list .recruitment-info__list--item {
  border-bottom: 0.1rem solid #d1e3ff;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  line-height: 1.75;
}

.recruitment-info__list .recruitment-info__list--item dt {
  width: 26.6%;
  max-width: 36rem;
  padding: 2.4rem;
  color: var(--blue);
}

.recruitment-info__list .recruitment-info__list--item dd {
  flex-grow: 1;
  padding: 2.4rem;
}

.recruitment-info__list .recruitment-info__list--item dd small {
  font-size: 1.4rem;
}

.recruitment-info__list .recruitment-info__list--item dd ul li {
  padding-left: 1.6rem;
  position: relative;
  line-height: 200%;
}

.recruitment-info__list--lineHeight {
  line-height: 175% !important;
}

.recruitment-info__list .recruitment-info__list--item dd ul li:before {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 100%;
  background: var(--black);
  content: "";
  position: absolute;
  left: 0.625rem;
  top: 1.455rem;
  z-index: 2;
}

.recruitment-flow {
  padding: 16rem 0;
  background: var(--lightblue);
}

.recruitment-flow__inner {
  background: var(--white);
  border-radius: 3.2rem;
  padding: 8rem 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.recruitment-flow__list {
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
}

.recruitment-flow__list .recruitment-flow__list--item {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  position: relative;
}

.recruitment-flow__list .recruitment-flow__list--item:not(:last-child):before {
  width: 0.1rem;
  height: calc(100% + 6.4rem);
  background: var(--blue);
  position: absolute;
  left: 3.2rem;
  top: 50%;
  z-index: 1;
  content: "";
}

.recruitment-flow__step {
  width: 6.4rem;
  min-width: 6.4rem;
  padding: 0.1rem;
  border-radius: 100%;
  background: var(--blue);
  position: relative;
  z-index: 2;
}

.recruitment-flow__step .recruitment-flow__step--inner {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.3rem;
  border-radius: 100%;
  background: var(--white);
  font-family: var(--poppins);
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--blue);
}

.recruitment-flow__list
  .recruitment-flow__list--item:last-child
  .recruitment-flow__step {
  padding: 0.3rem;
  background: linear-gradient(90deg, #27e58e 0%, #0fc4f2 25.96%, #1b34b2 100%);
}

.recruitment-flow__step .recruitment-flow__step--number {
  font-size: 2rem;
}

.recruitment-flow__content {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.recruitment-flow__image {
  width: 8rem;
  min-width: 8rem;
  border-radius: 0.8rem;
}

.recruitment-flow__image img {
  width: 100%;
}

.recruitment-flow__box {
  flex-grow: 1;
  font-size: 1.6rem;
  line-height: 1.75;
}

.recruitment-flow__box a {
  color: var(--blue);
}

.recruitment-flow__title {
  font-size: 2.1rem;
  line-height: 1.5;
  font-weight: bold;
  color: var(--blue);
  margin-bottom: 1rem;
}

.recruitment-faq {
  width: 100%;
  max-width: 94.8rem;
  margin: 0 auto;
  margin-top: 8rem;
}

.recruitment-faq .recruitment-faq__block {
  background: url(../img/common/noise_blue.webp) center center repeat;
  background-size: 10rem 10rem;
  border-radius: 0.8rem;
  display: block;
  padding: 3.2rem;
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1.75;
}

.recruitment-faq .recruitment-faq__title {
  font-size: 10rem;
  font-family: var(--poppins);
  font-weight: 100;
  line-height: 0.7;
  opacity: 0.3;
  margin-bottom: 4rem;
}

.recruitment-faq .recruitment-faq__links {
  text-align: right;
  margin-top: 2.2rem;
}

.recruitment-faq__links--block {
  position: relative;
  width: 100%;
  height: 6.8rem;
  display: inline-flex;
  align-items: flex-start;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 0 5.1rem 0 2.4rem;
  background: url(../img/common/icon_arrow_right_white.svg) right 2.3rem top
    0.95rem no-repeat;
  background-size: 0.5rem auto;
  transition: color 0.5s ease;
  max-width: 43.5rem;
}

.recruitment-faq__links--block:before,
.recruitment-faq__links--block:after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 0.1rem;
  border-radius: 0.1rem;
}

.recruitment-faq__links--block:before {
  z-index: 1;
  width: 100%;
  background: #6aa3ff;
}

.recruitment-faq__links--block:after {
  z-index: 2;
  background: var(--white);
  width: 3.2rem;
  transition: width 0.5s ease;
}

@media screen and (min-width: 769px) {
  .recruitment-faq .recruitment-faq__block:hover {
    background-image: url(../img/common/noise_drakblue.webp);
  }

  .recruitment-faq
    .recruitment-faq__block:hover
    .recruitment-faq__links--block:after {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .recruitment-info {
    padding: 4.8rem 0 8rem;
  }

  .recruitment-info__list .recruitment-info__list--item {
    flex-direction: column;
    align-items: flex-start;
    height: flex-start;
    font-size: 1.4rem;
    padding: 1.675rem 0;
  }

  .recruitment-info__list .recruitment-info__list--item dt {
    width: 100%;
    max-width: unset;
    padding: 0;
    margin-bottom: 0.15rem;
  }

  .recruitment-info__list .recruitment-info__list--item dd {
    width: 100%;
    padding: 0;
  }

  .recruitment-info__list .recruitment-info__list--item dd small {
    font-size: 1.2rem;
  }

  .recruitment-info__list .recruitment-info__list--item dd ul li {
    padding-left: 1.8rem;
    line-height: 175%;
  }

  .recruitment-info__list .recruitment-info__list--item dd ul li:before {
    width: 0.3rem;
    height: 0.3rem;
    left: 0.55rem;
    top: 1.075rem;
  }

  .recruitment-flow {
    padding: 8rem 0;
  }

  .recruitment-flow__inner {
    border-radius: 1.6rem;
    padding: 4.8rem 1.6rem;
  }

  .recruitment-flow__list {
    gap: 3.2rem;
  }

  .recruitment-flow__list .recruitment-flow__list--item {
    gap: 0.8rem;
  }

  .recruitment-flow__list
    .recruitment-flow__list--item:not(:last-child):before {
    height: calc(100% + 3.2rem);
    left: 2.8rem;
  }

  .recruitment-flow__step {
    width: 5.6rem;
    min-width: 5.6rem;
  }

  .recruitment-flow__content {
    gap: 0.8rem;
  }

  .recruitment-flow__image {
    width: 6.4rem;
    min-width: 6.4rem;
    border-radius: 0.64rem;
  }

  .recruitment-flow__box {
    font-size: 1.4rem;
  }

  .recruitment-flow__title {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
  }

  .recruitment-faq {
    margin-top: 4.8rem;
  }

  .recruitment-faq .recruitment-faq__block {
    padding: 1.6rem 1.6rem 2.4rem;
    font-size: 1.4rem;
  }

  .recruitment-faq .recruitment-faq__title {
    font-size: 5.7rem;
    margin-bottom: 1.65rem;
  }

  .recruitment-faq .recruitment-faq__links {
    text-align: right;
    margin-top: 3.45rem;
  }

  .recruitment-faq__links--block {
    height: 5rem;
    font-size: 1.6rem;
    padding: 0 4rem 0 2.4rem;
    background-position: right 0.5rem top 0.65rem;
  }
}

/* !よくある質問
---------------------------------------------------------- */
.faq-wrap {
  padding: 0 0 16rem;
}

.faq-wrap .faq-wrap__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8rem;
  position: relative;
}

.faq-wrap__inner .faq-links__list {
  opacity: 0;
  transform: translateY(20%);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.faq-wrap__inner .heading-large {
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  transition: 2.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.faq-wrap__inner._inview .faq-links__list {
  opacity: 1;
  transform: translateY(0);
}

.faq-wrap__inner._inview .heading-large {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.faq-wrap .faq-wrap__side {
  width: 36rem;
  min-width: 36rem;
  position: sticky;
  top: 10rem;
}

.faq-links__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 2.4rem;
}

.faq-links__list .faq-links__list--item {
  width: 100%;
  display: flex;
  align-items: center;
  border-radius: 0.8rem;
  overflow: hidden;
  padding: 2.25rem 2.4rem;
  color: var(--blue);
  position: relative;
  font-size: 2.1rem;
  line-height: 1.2857;
  font-weight: bold;
}

.faq-links__list .faq-links__list--item:after {
  width: 100%;
  height: 100%;
  border: 0.1rem solid var(--blue);
  border-radius: 0.8rem;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  content: "";
  transition: opacity 0.5s;
}

.faq-links__list .faq-links__list--item.is-active {
  color: var(--white);
  background: linear-gradient(90deg, #27e58e 0%, #0fc4f2 25.96%, #1b34b2 100%);
}

.faq-links__list .faq-links__list--item.is-active:before {
  background: var(--white);
}

.faq-links__list .faq-links__list--item.is-active:after {
  opacity: 0;
}

@media all and (min-width: 769px) {
  .faq-links__list .faq-links__list--item:hover {
    color: var(--white);
    background: linear-gradient(
      90deg,
      #27e58e 0%,
      #0fc4f2 25.96%,
      #1b34b2 100%
    );
  }

  .faq-links__list .faq-links__list--item:hover:before {
    background: var(--white);
  }

  .faq-links__list .faq-links__list--item:hover:after {
    opacity: 0;
  }
}

.faq-wrap .faq-wrap__contents {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16rem;
}

.faq-list .faq-list__item {
  border-bottom: 0.1rem solid #d1e3ff;
  padding: 3.2rem 0;
}

.faq-list .faq-list__item:first-child {
  border-top: 0.1rem solid #d1e3ff;
}

.faq-list .faq-list__item .faq-title {
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.667;
  padding-left: 4rem;
  cursor: pointer;
  position: relative;
}

.faq-list .faq-list__item .faq-title:before {
  font-size: 2.4rem;
  font-family: var(--poppins);
  color: var(--blue);
  font-weight: 500;
  line-height: 1.5;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  content: "Q.";
}

.faq-list .faq-list__item .faq-contents {
  font-size: 1.6rem;
  line-height: 1.75;
  padding-left: 4rem;
  position: relative;
  margin-top: 3.2rem;
  display: none;
}

.faq-list .faq-list__item .faq-contents:before {
  font-size: 2.4rem;
  font-family: var(--poppins);
  color: var(--blue);
  font-weight: 500;
  line-height: 1.5;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  content: "A.";
}

@media screen and (max-width: 768px) {
  .faq-wrap {
    padding: 2.4rem 0 8rem;
  }

  .faq-wrap .faq-wrap__inner {
    display: block;
  }

  .faq-wrap .faq-wrap__side {
    display: none;
  }

  .faq-wrap .faq-wrap__contents {
    width: 100%;
    gap: 8rem;
  }

  .faq-list .faq-list__item {
    padding: 2.4rem 0;
  }

  .faq-list .faq-list__item .faq-title {
    font-size: 1.6rem;
    line-height: 1.8125;
    padding-left: 2.7rem;
  }

  .faq-list .faq-list__item .faq-title:before {
    font-size: 1.8rem;
    line-height: 1.61;
  }

  .faq-list .faq-list__item .faq-contents {
    font-size: 1.4rem;
    padding-left: 2.7rem;
    margin-top: 1.6rem;
  }

  .faq-list .faq-list__item .faq-contents:before {
    font-size: 1.8rem;
    line-height: 1.61;
  }

  .br-hidden-sp {
    display: none;
  }
}

/* !エントリーフォーム
---------------------------------------------------------- */
.entry-wrap {
}

.entry-inner {
  width: 100%;
  max-width: 880px;
  margin-inline: auto;
  padding-top: calc(51px - 41px);
  padding-bottom: 160px;
}

@media screen and (max-width: 768px) {
  .entry-inner {
    padding-top: calc(48px - 2.4rem);
    padding-bottom: 80px;
  }
}

.entry__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 21px;
  line-height: 200%;
}

@media screen and (max-width: 768px) {
  .entry__title {
    font-size: 16px;
  }
}

.entry__title-main {
  font-weight: bold;
}

.entry__title-sub {
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .entry__title-sub {
    font-size: 16px;
    line-height: 175%;
    display: flex;
  }
}

.entry__title-sub::before {
  content: "※";
}

@media screen and (max-width: 768px) {
  .entry__title-sub::before {
    height: 100%;
    display: block;
  }
}

.entry__items {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.entry-inner .wpcf7,
.entry-inner .wpcf7 form {
  margin: 0;
  padding: 0;
}

.entry-inner .wpcf7 form > .hidden-fields-container {
  display: none;
}

@media screen and (max-width: 768px) {
  .entry__items {
    margin-top: 32px;
    gap: 32px;
  }
}

.entry__item {
  display: flex;
  gap: 40px;
}

.entry__item .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  max-width: 468px;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.entry__item .wpcf7-form-control-wrap[data-name="referral-source"] {
  max-width: 284px;
}

@media screen and (max-width: 768px) {
  .entry__item {
    gap: 16px;
    flex-direction: column;
  }

  .entry__item .wpcf7-form-control-wrap,
  .entry__item .wpcf7-form-control-wrap[data-name="referral-source"] {
    max-width: none;
  }
}

.entry__item input,
.entry__item textarea,
.entry__item select {
  border: 1px solid rgba(204, 204, 204, 1);
  padding-inline: 16px;
  background: rgba(245, 245, 245, 1);
  width: 100%;
  border-radius: 4px;
  max-width: 468px;
  transition: all 0.3s ease;
  outline: none;
  box-shadow: none;
}

@media screen and (max-width: 768px) {
  .entry__item input,
  .entry__item textarea,
  .entry__item select {
    max-width: none;
    width: 100%;
  }
}

.entry__item input {
  height: 48px;
}

@media screen and (max-width: 768px) {
  .entry__item input {
    height: 46px;
  }
}

.entry__item input:focus-visible,
.entry__item textarea:focus-visible,
.entry__item select:focus-visible {
  background: rgba(202, 222, 255, 1);
  border-color: rgba(46, 120, 238, 1);
  outline: none;
}

/* エラー時表示変更 必要に応じて使用 */
.entry__item input.is-error,
.entry__item textarea.is-error,
.entry__item select.is-error,
.entry__item input.wpcf7-not-valid,
.entry__item textarea.wpcf7-not-valid,
.entry__item select.wpcf7-not-valid {
  background-color: rgba(250, 224, 232, 1);
  border-color: rgba(221, 27, 84, 1);
  outline: none;
}

.entry__item input.is-error::placeholder,
.entry__item textarea.is-error::placeholder,
.entry__item select.is-error::placeholder,
.entry__item input.wpcf7-not-valid::placeholder,
.entry__item textarea.wpcf7-not-valid::placeholder,
.entry__item select.wpcf7-not-valid::placeholder {
  color: rgba(221, 27, 84, 1);
}

.entry__item input.wpcf7-not-valid:focus-visible,
.entry__item textarea.wpcf7-not-valid:focus-visible,
.entry__item select.wpcf7-not-valid:focus-visible {
  background-color: rgba(250, 224, 232, 1);
  border-color: rgba(221, 27, 84, 1);
}

.entry__item input {
  padding-block: 18px;
  font-size: 16px;
  line-height: 175%;
  font-weight: 400;
  color: #000;
}

@media screen and (max-width: 768px) {
  .enrty__item input {
    font-size: 14px;
  }
}

.entry__item input::placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 175%;
  color: rgba(204, 204, 204, 1);
}

@media screen and (max-width: 768px) {
  .enrty__item input::placeholder {
    font-size: 14px;
  }
}

.entry__item input[type="file"] {
  border: none;
  padding: 0;
  background: none;
  border-radius: 0;
}

.entry__item input.file-hidden,
.entry__item .file-hidden {
  display: none !important;
}

.entry__item .wpcf7-form-control-wrap[data-name="resume-file"],
.entry__item .wpcf7-form-control-wrap[data-name="career-file"] {
  display: none !important;
}

.file-custom {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 468px;
  font-size: 16px;
  line-height: 175%;
  font-weight: 400;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  min-height: 48px;
}

@media screen and (max-width: 768px) {
  .file-custom {
    font-size: 14px;
    line-height: 175%;
  }
}

.file-custom-btn {
  display: flex;
  width: 147px;
  min-width: 147px;
  min-height: 31px;
  text-align: center;
  align-items: center;
  background-color: rgba(245, 245, 245, 1);
  border: 1px solid rgba(204, 204, 204, 1);
  border-radius: 4px;
  color: #333;
  transition: background-color 0.3s;
  text-align: center;
  padding-left: 16px;
  padding-right: 19px;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .file-custom-btn {
    width: 122px;
    min-width: 122px;
  }
}

.file-custom-btn:hover {
  background-color: #e0e0e0;
}

.file-custom.is-error {
  align-items: flex-start;
  flex-wrap: wrap;
  overflow: visible;
}

.file-custom.is-error .file-custom-btn {
  background-color: rgba(250, 224, 232, 1);
  border-color: rgba(221, 27, 84, 1);
}

.file-custom-error {
  flex-basis: 100%;
  margin-left: 0;
  white-space: normal;
}

.entry__item textarea {
  min-height: 200px;
  padding-block: 16px;
}

@media screen and (max-width: 768px) {
  .entry__item textarea {
    min-height: 240px;
  }
}

.entry__item select,
.entry__item-select {
  align-items: center;
  display: flex;
  position: relative;
  max-width: 284px;
  height: 48px;
  box-sizing: border-box;

  /* デフォルトの矢印を非表示にする*/
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  background-image: url(../img/entry/arrow.svg);
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 11px 5.5px;
}

@media screen and (max-width: 768px) {
  .entry__item select,
  .entry__item-select {
    max-width: none;
    background-position: right 19.5px center;
  }
}

.entry__item select:focus,
.entry__item-select:focus {
  background-image: url(../img/entry/arrow.svg) !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 11px 5.5px !important;
}

@media screen and (max-width: 768px) {
  .entry__item select:focus,
  .entry__item-select:focus {
    background-position: right 19.5px center;
  }
}

.entry__item select option {
  font-size: 16px;
  font-weight: 400;
  line-height: 175%;
  height: 12px;
}

.entry__item-head {
  max-width: 188px;
  width: 100%;
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgba(46, 120, 238, 1);
  font-size: 18px;
  font-weight: 700;
  line-height: 175%;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .entry__item-head {
    gap: 10px;
    font-size: 16px;
    width: 100%;
    max-width: none;
  }
}

.entry__item-required {
  background: rgba(46, 120, 238, 1);
  color: #fff;
  border-radius: 20px;
  font-size: 13px;
  line-height: 175%;
  font-weight: 700;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  width: 50px;
  height: 22px;
}

@media screen and (max-width: 768px) {
  .entry__item-required {
    font-size: 11px;
    width: 46px;
    height: 20px;
  }
}

.entry__item-content {
}

.entry__item-confirm-text {
  width: 72.27%;
}

.entry__privacy {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: calc(80px - 24px); /* 24px = gap */
  font-size: 16px;
  line-height: 175%;
  font-weight: 400;
  text-align: center;
}

.entry__privacy .wpcf7-form-control-wrap,
.entry__privacy .wpcf7-acceptance,
.entry__privacy .wpcf7-list-item,
.entry__privacy label,
.entry__privacy .wpcf7-list-item-label {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.entry__privacy .wpcf7-list-item {
  margin: 0;
}

.entry__privacy label {
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .entry__privacy {
    margin-top: calc(64px - 32px); /* 32px = gap */
    font-size: 14px;
  }
}

.entry__privacy input {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  margin: 0;
  border: 1px solid rgba(204, 204, 204, 1);
  border-radius: 4px;
  margin-right: 9px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .entry__privacy input {
    width: 24px;
    height: 24px;
  }
}

.entry__privacy input:checked {
  background: rgba(202, 222, 255, 1);
  position: relative;
  border-color: rgba(46, 120, 238, 1);
}

.entry__privacy input:checked::before {
  content: "";
  position: absolute;
  width: 13.5px;
  height: 10.21px;
  background-image: url(../img/entry/check-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .entry__privacy input:checked::before {
    width: 11px;
    height: 8px;
  }
}

.entry__privacy-link {
  text-decoration-line: underline;
}

.entry__privacy-link:hover {
  text-decoration-line: underline;
  color: rgba(0, 0, 0, 1);
}

.entry__submit-btn {
  -webkit-appearance: none;
  appearance: none;
  margin-top: calc(48px - 24px); /* 24px=gap分 */
  color: #fff;
  background: rgba(46, 120, 238, 1);
  border-radius: 64px;
  display: inline-block;
  align-items: center;
  justify-content: center;
  max-width: 360px;
  height: 61px;
  align-items: center;
  text-align: center;
  display: flex;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  margin-inline: auto;
  border: 1px solid rgba(46, 120, 238, 1);
  padding: 0 24px;
  line-height: 61px;
  box-shadow: none;
}

.entry-inner input.wpcf7-submit.entry__submit-btn,
.entry-inner .wpcf7 form input.wpcf7-submit.entry__submit-btn {
  -webkit-appearance: none;
  appearance: none;
  color: #fff;
  background: rgba(46, 120, 238, 1);
  border: 1px solid rgba(46, 120, 238, 1);
  border-radius: 64px;
  display: block;
  max-width: 360px;
  width: 100%;
  height: 61px;
  margin-inline: auto;
  padding: 0 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 61px;
  text-align: center;
  box-shadow: none;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

@media screen and (max-width: 768px) {
  .entry__submit-btn {
    margin-top: calc(40px - 32px); /* 24px=gap分 */
    font-size: 18px;
    line-height: 300%;
    max-width: 280px;
  }
}

/* .entry__submit-btn:hover {
  background: rgba(255, 255, 255, 1);
  color: rgba(46, 120, 238, 1);
} */

.entry-inner input.wpcf7-submit.entry__submit-btn:hover,
.entry-inner .wpcf7 form input.wpcf7-submit.entry__submit-btn:hover {
  background: rgba(255, 255, 255, 1);
  color: rgba(46, 120, 238, 1);
}

.entry__submit-btn:focus-visible {
  border-color: rgb(0, 95, 204);
}

.entry-inner .wpcf7-spinner {
  display: none;
}

.wpcf7 form .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 12px 16px;
  border-radius: 4px;
}

.wpcf7-not-valid-tip {
  margin-top: 8px;
  color: #dd1b54;
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 175%;
}

@media screen and (max-width: 768px) {
  .wpcf7-not-valid-tip {
    font-size: 14px;
  }
}

.entry__privacy .wpcf7-not-valid-tip {
  justify-content: center;
}

/* !エントリーフォーム入力確認ページ
---------------------------------------------------------- */
.confirm__items {
  gap: 50px;
  margin-top: 61px;
}

@media screen and (max-width: 768px) {
  .confirm__items {
    margin-top: 32px;
    gap: 32px;
  }
}

.entry__item-confirm-text {
  font-size: 16px;
  font-weight: normal;
  line-height: 175%;
}

@media screen and (max-width: 768px) {
  .entry__item-confirm-text {
    font-size: 14px;
    width: 100%;
  }
}

.entry__item-confirm-privacy-text {
  font-size: 16px;
  line-height: 175%;
  font-weight: normal;
  margin-top: 60px;
  margin-left: calc(188px + 40px);
}

@media screen and (max-width: 768px) {
  .entry__item-confirm-privacy-text {
    font-size: 14px;
    margin-top: 32px;
    margin-left: 0;
  }
}

.entry__btn-wrap {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.entry__btn-wrap .entry__submit-btn {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .entry__btn-wrap {
    margin-top: 40px;
    gap: 24px;
  }
}

@media screen and (max-width: 768px) {
  .confirm__submit-btn {
    margin-top: 0;
  }
}

.entry__btn-wrap .entry__back-btn {
  width: 240px;
  border: 1px solid rgba(46, 120, 238, 1);
  height: 45px;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  border-radius: 64px;
  margin-inline: auto;
  color: rgba(46, 120, 238, 1);
  background: rgba(255, 255, 255, 1);
  font-weight: bold;
  font-size: 18px;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.entry__btn-wrap .entry__back-btn:hover {
  background: rgba(46, 120, 238, 1);
  color: rgba(255, 255, 255, 1);
}

@media screen and (max-width: 768px) {
  .entry__back-btn {
    font-size: 16px;
    width: 192px;
    height: 44px;
  }
}

/* !サンクスページ
---------------------------------------------------------- */

.thanks__top-btn {
  margin-top: 56px;
  border: 1px solid rgba(46, 120, 238, 1);
  max-width: 297px;
  height: 45px;
  align-items: center;
  display: flex;
  padding-inline: 24px;
  gap: 32px;
  border-radius: 64px;
  margin-inline: auto;
  font-weight: bold;
  line-height: 300%;
  color: rgba(46, 120, 238, 1);
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.thanks__top-btn:hover {
  background: rgba(46, 120, 238, 1);
  color: rgba(255, 255, 255, 1);
}

@media screen and (max-width: 768px) {
  .thanks__top-btn {
    margin-top: 40px;
    font-size: 16px;
    justify-content: space-between;
    height: 44px;
  }
}

.thanks__top-btn svg {
  stroke: #2e78ee;
  transition: stroke 0.3s ease;
}

.thanks__top-btn:hover svg {
  stroke: rgba(255, 255, 255, 1);
}

/* !会社を知る
---------------------------------------------------------- */

.about-philosophy {
  padding: 18.5rem 0 24rem;
}

.about-philosophy .about-philosophy__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.about-philosophy .about-philosophy__head .heading-large {
  width: 50%;
}

.about-philosophy .about-philosophy__head .about-philosophy__text {
  width: 50%;
  padding-left: 4.8rem;
  font-size: 2.1rem;
  line-height: 2;
  font-weight: bold;
}

.about-philosophy__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
  margin-top: 9rem;
}

.about-philosophy__list .about-philosophy__list--item {
  background: var(--lightblue);
  border-radius: 1.6rem;
  padding: 3.6rem 4.8rem 4rem;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 500;
}

.about-philosophy__list .about-philosophy__title {
  font-size: 2.6rem;
  line-height: 1.5;
  font-weight: bold;
  color: var(--blue);
  margin-bottom: 1.4rem;
}

.js-image-scroll {
  overflow: hidden;
  display: flex;
}
.js-image-scroll ul {
  display: flex;
  align-items: center;
}
.js-image-scroll ul:nth-child(odd) {
  animation-name: image-loop-left1;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.js-image-scroll ul:nth-child(even) {
  animation-name: image-loop-left2;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes image-loop-left1 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes image-loop-left2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}

.about-business {
  background: url(../img/common/noise_blue.webp) center center repeat;
  background-size: 10rem 10rem;
  padding: 0 0 16rem;
}

.about-business__slider {
  width: 100%;
  margin-bottom: 1.6rem;
}

.about-business__slider li {
  padding-left: 4.8rem;
  font-size: 15.8rem;
  line-height: 1.5;
  font-family: var(--poppins);
  color: var(--white);
  font-weight: 400;
  word-break: keep-all;
  white-space: nowrap;
  min-width: 30.4rem;
}

.about-business__slider li img {
  display: block;
  width: 25.6rem;
  aspect-ratio: 128 / 75;
  border-radius: 1.6rem;
  object-fit: cover;
}

.about-business__heading {
  text-align: center;
  font-size: 4.2rem;
  line-height: 1.5;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 5.8rem;
}

.about-business__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.about-business__list .about-business__list--item {
  background: var(--white);
  border-radius: 1.6rem;
  padding: 2.4rem 2.4rem 1.6rem;
  font-size: 1.6rem;
  line-height: 1.75;
  box-shadow: 1rem 1rem 2rem 0 rgba(0, 0, 0, 0.25);
}

.about-business__list .about-business__image {
  margin-bottom: 3.5rem;
  width: 100%;
}

.about-business__list .about-business__image img {
  width: 100%;
}

@media all and (max-width: 769px) {
  .about-business__list .about-business__image img {
    object-fit: cover;
    height: 169px;
  }
}

.about-business__list .about-business__title {
  font-size: 2.1rem;
  line-height: 1.5;
  font-weight: bold;
  color: var(--blue);
  margin-bottom: 0.8rem;
}

.about-business__button {
  margin-top: 6.6rem;
  text-align: center;
  max-width: 297px;
  width: 100%;
  margin-inline: auto;
}

@media all and (max-width: 769px) {
  .about-business__button {
    max-width: 297px;
  }
}

.about-business__button .btn-links {
  border-color: var(--white);
  color: var(--white);
}

@media all and (max-width: 769px) {
  .about-business__button .btn-links {
    width: 100%;
    padding: 0.8rem 3.6rem 0.9rem 2.4rem;
  }

  .about-business__button .btn-links:after {
    transform: translateX(2.99rem);
  }
}

.about-business__button .btn-links:after {
  background-image: url(../img/common/icon_arrow_right_white.svg);
}

@media all and (min-width: 769px) {
  .about-business__button .btn-links:hover {
    background: var(--white);
    color: var(--blue);
  }

  .about-business__button .btn-links:hover:after {
    background-image: url(../img/common/icon_arrow_right_blue.svg);
  }

  .about-business__button .btn-links:hover .icon-blank {
    background-image: url(../img/common/icon_blank_blue.svg);
  }
}

.about-data {
  background: var(--lightblue);
  padding: 15.3rem 0;
}

.about-data__list + .about-data__list {
  margin-top: 3.2rem;
}

.about-data__list {
  display: grid;
  gap: 3.2rem;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.about-data__list.column2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-data__list.column3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-data__list .about-data__list--item {
  background: var(--white);
  border-radius: 1.6rem;
  padding: 3.8rem 2rem 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 28.8rem;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.about-data__list .about-data__list--item.about-data__list--item-job {
  padding: 3.2rem 2rem 2.4rem;
}

.about-data__list .about-data__list--item--fit {
  align-self: start;
  padding: 3.2rem 2rem 2.4rem;
}

.about-data__title {
  font-size: 2.1rem;
  line-height: 1.5;
  font-weight: bold;
  position: relative;
  z-index: 2;
}

.about-data__image {
  width: 16.8rem;
  margin-top: -1.6rem;
  position: relative;
  z-index: 1;
}

.about-data__info {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.4rem;
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1;
  position: relative;
  z-index: 2;
  margin-top: -1.5rem;
}

.js-count-number {
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

.about-data__info .number {
  font-size: 4.8rem;
  font-family: var(--poppins);
  line-height: 0.7;
  color: var(--blue);
  font-weight: bold;
}

@media all and (max-width: 768px) {
  .about-data__info .number {
    font-size: 2.8rem;
  }
}

.about-data__job--item .about-data__info .number {
  width: fit-content !important;
}

/* .about-data__job--item .about-data__info .number {
  font-size: 2.8rem;
} */

.about-data__note {
  font-size: 1.4rem;
  line-height: 1.5;
  /* margin-top: 0.9rem; */
  position: relative;
  z-index: 2;
  margin-top: 1.3rem;
}

.about-data__list.column3
  .about-data__list--item:nth-child(3)
  .about-data__note {
  margin-top: 0.9rem;
}

.about-data__sex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-data__sex .about-data__image {
  width: 20.8rem;
  margin: -1.6rem -3rem 0;
}

.about-data__sex + .about-data__note {
  margin-top: -2rem;
  margin-left: -2.5rem;
}

.about-data__chart {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 3.2rem;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  /* margin-top: 2.4rem; */
}

.about-data__chart .about-data__chart--item {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  justify-content: flex-end;
  height: 16rem;
  min-width: 0;
}

.about-data__chart--line {
  width: 5.4rem;
  max-width: 100%;
  background: var(--blue);
  margin-top: 1.1rem;
}

.about-data__chart--line.line1-1 {
  height: 4rem;
}

.about-data__chart--line.line1-2 {
  height: 5rem;
}

.about-data__chart--line.line1-3 {
  height: 5.5rem;
}

.about-data__chart--line.line1-4 {
  height: 7.9rem;
}

.about-data__chart--line.line1-5 {
  height: 8.9rem;
}

.about-data__chart--line.line1-6 {
  height: 8.9rem;
}

.about-data__chart--line.line2-1 {
  height: 6.1rem;
}

.about-data__chart--line.line2-2 {
  height: 3rem;
}

.about-data__chart--line.line2-3 {
  height: 2.5rem;
}

.about-data__chart--line.line2-4 {
  height: 1.4rem;
}

.about-data__chart--line.line2-5 {
  height: 0.8rem;
}

.about-data__chart--title {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  margin-top: 0.8rem;
}

.about-data__chart .about-data__info {
  margin: 0;
  white-space: nowrap;
}

/* .about-data__chart + .about-data__note {
  margin-top: 2.1rem;
} */

.about-data__job {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 2.4rem;
  width: 100%;
  min-width: 0;
  max-width: 50rem;
  margin: 0 auto;
  margin-top: 2.6rem;
  padding: 0 0 2.8rem;
}

.about-data__job .about-data__job--item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.4rem;
  width: 100%;
  min-width: 0;
}

.about-data__job .about-data__job--title {
  flex-shrink: 0;
  font-size: 2.1rem;
  line-height: 1.5;
  font-weight: bold;
  width: 14.7rem;
}

.about-data__job.about-data__job--job-industry .about-data__job--title {
  width: 10.5rem;
}

@media screen and (max-width: 768px) {
  .about-data__job.about-data__job--job-industry .about-data__job--title {
    width: 8.2rem;
  }
}

.about-data__job .about-data__job--line {
  background: var(--blue);
  flex-shrink: 1;
  min-width: 0;
  height: 3rem;
}

.about-data__job--line.line1-1 {
  width: 280px;
}

.about-data__job--line.line1-2 {
  width: 17.6rem;
}

.about-data__job--line.line1-3 {
  width: 12.2rem;
}

.about-data__job--line.line1-4 {
  width: 12.2rem;
}

.about-data__job--line.line1-5 {
  width: 12.2rem;
}

.about-data__job--line.line1-6 {
  width: 12.2rem;
}

.about-data__job--line.line1-7 {
  width: 5.5rem;
}

.about-data__job--line.line1-8 {
  width: 5.5rem;
}

.about-data__job--line.line1-9 {
  width: 4.4rem;
}

.about-data__job--line.line2-1 {
  width: 24.3rem;
}

.about-data__job--line.line2-2 {
  width: 20.9rem;
}

.about-data__job--line.line2-3 {
  width: 7.1rem;
}

.about-data__job--line.line2-4 {
  width: 7.1rem;
}

.about-data__job--line.line2-5 {
  width: 3.3rem;
}

.about-data__job--line.line2-6 {
  width: 3.3rem;
}

.about-data__job .about-data__info {
  flex-shrink: 0;
  margin: 0;
  white-space: nowrap;
}

@media screen and (min-width: 769px) {
  .about-data__list.column3 .about-data__list--item:nth-child(2) {
    grid-row: 1 / 2;
    grid-column: 2 / 4;
    container-type: inline-size;
    min-height: 28.8rem;
    padding: 3.8rem min(2rem, 2.7cqw) 2rem;
  }

  .about-data__list.column3
    .about-data__list--item:nth-child(2)
    .about-data__title {
    font-size: min(2.1rem, 2.8cqw);
  }

  .about-data__list.column3
    .about-data__list--item:nth-child(2)
    .about-data__chart {
    gap: 0px;
    margin-top: 19px;
  }

  .about-data__list.column3
    .about-data__list--item:nth-child(2)
    .about-data__info {
    gap: min(0.4rem, 0.5cqw);
    font-size: min(2.1rem, 2cqw);
  }

  .about-data__list.column3
    .about-data__list--item:nth-child(2)
    .about-data__info
    .number {
    font-size: min(4.8rem, 6cqw);
  }

  .about-data__list.column3
    .about-data__list--item:nth-child(2)
    .about-data__chart--line {
    width: min(5.4rem, 7.2cqw);
    margin-top: 1.1rem;
  }

  .about-data__list.column3
    .about-data__list--item:nth-child(2)
    .about-data__chart--title {
    font-size: min(1.6rem, 2cqw);
    margin-top: 0.8rem;
  }

  .about-data__list.column3
    .about-data__list--item:nth-child(2)
    .about-data__chart--item {
    height: 17.4rem;
  }

  .about-data__list.column2 .about-data__list--item:first-child {
    container-type: inline-size;
  }

  .about-data__list.column2
    .about-data__list--item:first-child
    .about-data__title {
    font-size: min(2.1rem, 4.5cqw);
  }

  .about-data__list.column2
    .about-data__list--item:first-child
    .about-data__info {
    gap: min(0.4rem, 0.5cqw);
    font-size: min(2.1rem, 2.5cqw);
  }

  .about-data__list.column2
    .about-data__list--item:first-child
    .about-data__info
    .number {
    font-size: min(4.8rem, 7.5cqw);
  }

  .about-data__list.column2
    .about-data__list--item:first-child
    .about-data__chart--line {
    width: min(5.4rem, 11cqw);
  }

  .about-data__list.column2
    .about-data__list--item:first-child
    .about-data__chart--title {
    font-size: min(1.6rem, 3cqw);
  }

  .about-data__list.column2
    .about-data__list--item:first-child
    .about-data__note {
    font-size: min(1.4rem, 2.5cqw);
  }
}
@media screen and (max-width: 768px) {
  .about-data__list.column3
    .about-data__list--item:nth-child(3)
    .about-data__note {
    margin-top: 0.8rem;
    margin-right: -3px;
  }
}

@media screen and (max-width: 1299px) {
  .about-data__job--line.line1-1,
  .about-data__job--line.line2-1 {
    width: 20.5rem;
  }

  .about-data__job--line.line2-2 {
    width: 18.9rem;
  }
}

@media screen and (max-width: 768px) {
  .about-philosophy {
    padding: 4.5rem 0 8rem;
  }

  .about-philosophy .about-philosophy__head {
    display: block;
  }

  .about-philosophy .about-philosophy__head .heading-large {
    width: auto;
  }

  .about-philosophy .about-philosophy__head .about-philosophy__text {
    width: auto;
    padding-left: 0;
    font-size: 1.4rem;
  }

  .about-philosophy__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.6rem;
    margin-top: 11.6rem;
  }

  .about-philosophy__list .about-philosophy__list--item {
    border-radius: 0.8rem;
    padding: 1.7rem 1.6rem;
    font-size: 1.4rem;
  }

  .about-philosophy__list .about-philosophy__title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .about-business {
    padding: 0 0 4.8rem;
  }

  .about-business__slider {
    margin-bottom: 2.1rem;
  }

  .about-business__slider li {
    padding-left: 1.3rem;
    font-size: 8rem;
    min-width: 15.5rem;
  }

  .about-business__slider li img {
    width: 14.2rem;
    aspect-ratio: 142 / 83;
    border-radius: 0.8rem;
  }

  .about-business__heading {
    font-size: 2.4rem;
    margin-bottom: 3.9rem;
  }

  .about-business__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.6rem;
  }

  .about-business__list .about-business__list--item {
    border-radius: 0.8rem;
    padding: 1.6rem;
    font-size: 1.4rem;
  }

  .about-business__list .about-business__image {
    margin-bottom: 1.8rem;
  }

  .about-business__list .about-business__title {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
  }

  .about-business__button {
    margin-top: 4.8rem;
  }

  .about-data {
    padding: 7.4rem 0;
  }

  .about-data__list + .about-data__list {
    margin-top: 1.6rem;
  }

  .about-data__list {
    gap: 1.6rem;
  }

  .about-data__list.column2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .about-data__list.column3 {
    grid-template-columns: repeat(1, 1fr);
  }

  .about-data__sex {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-data__sex .about-data__image {
    width: 20.8rem;
    margin: -1.6rem -3rem 0;
  }

  .about-data__sex + .about-data__note {
    margin-top: -1.6rem;
  }

  .about-data__chart {
    gap: 0.8rem;
    margin-top: -1.2rem;
  }

  .about-data__list.column3
    .about-data__chart
    .about-data__chart--item:nth-child(1),
  .about-data__list.column3
    .about-data__chart
    .about-data__chart--item:nth-child(2) {
    display: none;
  }

  .about-data__chart--line {
    width: 3rem;
  }

  .about-data__chart--line.line2-1 {
    height: 6.1rem;
  }

  .about-data__chart--line.line2-2 {
    height: 3rem;
  }

  .about-data__chart--line.line2-3 {
    height: 2.5rem;
  }

  .about-data__chart--line.line2-4 {
    height: 1.4rem;
  }

  .about-data__chart .about-data__info {
    margin: 0;
    gap: 0;
    font-size: 1.4rem;
  }

  .about-data__chart .number {
    font-size: 2.8rem;
  }

  .about-data__chart + .about-data__note {
    margin-top: 3rem;
    margin-right: -2px;
  }

  .about-data__job {
    gap: 1.6rem;
    max-width: 96%;
    margin-top: 3.1rem;
    padding: 0 0 2.8rem;
  }

  .about-data__job .about-data__job--item {
    gap: 0;
  }

  .about-data__job .about-data__job--title {
    font-size: 1.4rem;
    width: 10.8rem;
  }

  .about-data__job--line.line1-1 {
    width: 13.4rem;
  }

  .about-data__job--line.line1-2 {
    width: 9.5rem;
  }

  .about-data__job--line.line1-3 {
    width: 6.6rem;
  }

  .about-data__job--line.line1-4 {
    width: 6.6rem;
  }

  .about-data__job--line.line1-5 {
    width: 6.6rem;
  }

  .about-data__job--line.line1-6 {
    width: 6.6rem;
  }

  .about-data__job--line.line1-7 {
    width: 3rem;
  }

  .about-data__job--line.line1-8 {
    width: 3rem;
  }

  .about-data__job--line.line1-9 {
    width: 2.4rem;
  }

  .about-data__job--line.line2-1 {
    width: 12.8rem;
  }

  .about-data__job--line.line2-2 {
    width: 11rem;
  }

  .about-data__job--line.line2-3 {
    width: 3.7rem;
  }

  .about-data__job--line.line2-4 {
    width: 3.7rem;
  }

  .about-data__job--line.line2-5 {
    width: 1.7rem;
  }

  .about-data__job--line.line2-6 {
    width: 1.7rem;
  }

  .about-data__job .about-data__info {
    margin: 0;
    gap: 0;
    font-size: 2.8rem;
    margin-left: 0.8rem;
  }
}

/* ==========================================================
   共通部品の統一（WP側追記 2026-07-09）
   style.css と top-style.css で重複定義されていた共通部品
   （ヘッダーENロゴの白切替・フッターロゴ/hover・グロナビの
   サブメニュー位置とホバーブリッジ）の値を top-style.css（最新）
   に合わせて統一する。style.css のみを読み込む entry / confirm /
   thanks を含め、全ページで見た目・挙動を揃えるための上書き。
---------------------------------------------------------- */
#header.is-logo-light .header-logo .enlogo img {
  filter: brightness(0) invert(1);
}

#header.is-logo-light .header-logo .enlogo a {
  color: var(--white);
}

#header.is-logo-light .header-logo .enlogo a span {
  border-color: var(--white);
}

.header-logo .enlogo {
  transition: 0.2s ease;
}

.footer-logo .enlogo img {
  filter: brightness(0) invert(1);
}

@media screen and (min-width: 769px) {
  #footer .footer-links a,
  #footer .footer-menu a,
  #footer .footer-logo a {
    transition: opacity 0.25s ease;
  }

  #footer .footer-links a:hover,
  #footer .footer-menu a:hover {
    opacity: 0.7;
    color: var(--white);
  }

  #footer .footer-logo a:hover {
    opacity: 0.8;
    color: var(--white);
  }

  /* 親〜サブメニュー間の透明ヒットエリア（HTML の .sub-menu-bridge）でホバーを継続 */
  #g-navi .sub-menu-bridge {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: 24rem;
    height: 1.6rem;
    z-index: 1;
    pointer-events: none;
    background: transparent;
  }

  #g-navi .main-menu > li:hover .sub-menu-bridge {
    pointer-events: auto;
  }

  #g-navi .sub-menu {
    left: -2.4rem;
    top: calc(100% + 1.6rem);
    transform: none;
    z-index: 2;
  }
}

@media screen and (max-width: 768px) {
  #g-navi .sub-menu-bridge {
    display: none;
  }
}
