@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:wght@100..900&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

.dsp-pc {
  display: block;
}
@media (max-width: 768px) {
  .dsp-pc {
    display: none;
  }
}

.dsp-sp {
  display: none;
}
@media (max-width: 768px) {
  .dsp-sp {
    display: block;
  }
}

img {
  width: 100%;
}

a {
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
a:hover {
  opacity: 0.7;
  cursor: pointer;
}

.wrapper {
  margin: 0 auto;
  max-width: 1140px;
  width: 92%;
}

.section {
  padding: 6.25rem 0;
}
@media (max-width: 768px) {
  .section {
    padding: 3.125rem 0 3.125rem;
  }
}
.section--lg {
  padding: 10rem 0;
}
@media (max-width: 768px) {
  .section--lg {
    padding: 4rem 0;
  }
}
@media (max-width: 768px) {
  .section--mainarea {
    padding: 0 0 3.125rem;
  }
}

/* =====================================
  Fadein
===================================== */
/* 初期状態（JS有効時のみ） */
html.js body {
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}

/* 表示 */
html.js body.is-loaded {
  opacity: 1;
}

a {
  color: #000;
}

.white {
  color: #fff;
}

body {
  font-family: "Noto Sans JP", serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.04em;
  line-height: 2;
}

.en {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

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

/* Wordpressのバー */
#wpadminbar {
  position: fixed !important;
  top: auto !important;
  left: 0 !important;
  bottom: 0 !important;
  background-color: rgba(0, 0, 0, 0.75) !important;
}

/* =====================================
  Header
===================================== */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 2000;
  /* トップページ（透過） */
  background: transparent;
  color: #fff;
  /* 下層ページ */
}
@media (max-width: 768px) {
  .header {
    height: 70px;
  }
}
body:not(.home) .header {
  position: relative;
  background: #fff;
  color: #000;
}
.header .header__inner {
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 5%;
}
@media (max-width: 768px) {
  .header .header__inner {
    padding: 0 3%;
  }
}
.header .header__inner .header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
.header .header__inner .header__right .lang-switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  letter-spacing: 0.1em;
}
.header .header__inner .header__right .lang-switch li:first-child:after {
  content: "|";
  margin-left: 0.5rem;
}
.header .header__inner .header__right .lang-switch li a {
  color: #fff;
}
body:not(.home) .header .header__inner .header__right .lang-switch li a {
  color: #000;
}
body:not(.home) .header .header__inner .header__right .lang-switch li.is-active a {
  color: #e60012;
}
.header .header__inner .header__right .lang-switch li.is-active a {
  color: #e60012;
}
@media (max-width: 768px) {
  .header .header__inner .header__right .lang-switch {
    display: none;
  }
}
.header .header__inner .header__right .header__entry {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.5rem;
  height: 44px;
  padding: 0 20px;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.12em;
  text-transform: capitalize;
  -webkit-transition: color 0.3s ease, border-color 0.3s ease;
  transition: color 0.3s ease, border-color 0.3s ease;
  /* 下層ページ */
}
.header .header__inner .header__right .header__entry .icon-arrow {
  width: 16px;
  height: auto;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  will-change: transform;
}
.header .header__inner .header__right .header__entry:hover .icon-arrow {
  -webkit-transform: translate3d(6px, 0, 0);
          transform: translate3d(6px, 0, 0);
}
body:not(.home) .header .header__inner .header__right .header__entry {
  border-color: #000;
  color: #000;
  /* 下層でも矢印だけ動かす */
}
body:not(.home) .header .header__inner .header__right .header__entry .icon-arrow {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
body:not(.home) .header .header__inner .header__right .header__entry:hover .icon-arrow {
  -webkit-transform: translate3d(6px, 0, 0);
          transform: translate3d(6px, 0, 0);
}
@media (max-width: 768px) {
  .header .header__inner .header__right .header__entry {
    display: none;
  }
}

body.is-menu-open .header {
  background: #fff;
  color: #121F3F;
}
body.is-menu-open .header .header__right .lang-switch li a {
  color: #121F3F;
}
body.is-menu-open .header .header__right .lang-switch li.is-active a {
  color: #e60012;
}
body.is-menu-open .header .header__right .header__entry {
  color: #121F3F;
  border-color: #121F3F;
}
body.is-menu-open .header .header__right .header__entry .icon-arrow {
  -webkit-filter: brightness(0) saturate(100%) invert(14%) sepia(32%) saturate(744%) hue-rotate(189deg) brightness(92%) contrast(96%);
          filter: brightness(0) saturate(100%) invert(14%) sepia(32%) saturate(744%) hue-rotate(189deg) brightness(92%) contrast(96%);
}
body.is-menu-open .header .header__right .header__entry:hover {
  background: #121F3F;
  color: #fff;
}
body.is-menu-open .header .header__right .header__entry:hover .icon-arrow {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

body.is-menu-open .btn-gnavi {
  color: #121F3F;
}

body.is-menu-open .logo img {
  content: url("../img/logo-aj.svg");
}

/* =====================================
  Logo
===================================== */
.logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.logo picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.logo img {
  display: block;
  height: 48px;
}
@media (max-width: 768px) {
  .logo img {
    height: 26px;
  }
}

/* =====================================
  Hamburger Button
===================================== */
.btn-gnavi {
  position: relative;
  cursor: pointer;
  width: 38px;
  height: 20px;
  cursor: pointer;
  z-index: 1200;
  display: block;
  color: #fff;
  /* 開いた状態 */
  /* 下層ページ（常に黒） */
  /* SP微調整 */
}
.btn-gnavi span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  -webkit-transition: opacity 0.3s ease, background 0.3s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.3s ease, background 0.3s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.3s ease, background 0.3s ease;
  transition: transform 0.4s ease, opacity 0.3s ease, background 0.3s ease, -webkit-transform 0.4s ease;
}
.btn-gnavi span:nth-child(1) {
  top: 0;
}
.btn-gnavi span:nth-child(2) {
  bottom: 0;
}
.btn-gnavi.is-active {
  color: #121F3F;
}
.btn-gnavi.is-active span:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(45deg);
          transform: translateY(9px) rotate(45deg);
}
.btn-gnavi.is-active span:nth-child(2) {
  -webkit-transform: translateY(-9px) rotate(-45deg);
          transform: translateY(-9px) rotate(-45deg);
}
body:not(.home) .btn-gnavi {
  color: #000;
}
@media (max-width: 768px) {
  .btn-gnavi {
    right: 10px;
    width: 40px;
  }
}

/* =====================================
  Full Screen Global Menu
===================================== */
.globalmenu--overlay {
  position: fixed;
  background: #fff;
  z-index: 1100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: calc(100vh - 100px);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  top: 100px;
  bottom: 0;
  right: 0;
  width: 50vw;
  padding: 0 0 2.5rem;
  gap: 1.5rem;
  overflow: hidden;
  overflow-y: auto;
  z-index: 1500;
  overflow-x: hidden;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.3s ease;
  transition: transform 0.4s ease, opacity 0.3s ease, -webkit-transform 0.4s ease;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.4s ease;
  transition: transform 0.6s ease, opacity 0.4s ease, -webkit-transform 0.6s ease;
}
@media (max-width: 768px) {
  .globalmenu--overlay {
    inset: 0;
    top: 70px;
    width: 100%;
    height: 100%;
    padding-bottom: 7rem;
  }
}
.globalmenu--overlay.is-open {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.globalmenu--overlay .globalmenu__inner {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media (max-width: 768px) {
  .globalmenu--overlay .globalmenu__inner {
    width: 92%;
  }
}
.globalmenu--overlay .globalmenu__inner::-webkit-scrollbar {
  display: none;
}
@media (max-width: 768px) {
  .globalmenu--overlay .menu-lang {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
  }
  .globalmenu--overlay .menu-lang li a {
    color: #121F3F;
  }
  .globalmenu--overlay .menu-lang .is-active a {
    color: #e60012;
    opacity: 1;
  }
}
.globalmenu--overlay .menu-item > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem 1.5rem 1rem;
  border-bottom: 1px solid #121F3F;
}
@media (max-width: 768px) {
  .globalmenu--overlay .menu-item > a {
    padding: 1.5rem 0rem 0.5rem;
  }
}
.globalmenu--overlay .menu-item .menu-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3rem;
  color: #121F3F;
}
.globalmenu--overlay .menu-item .en {
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  line-height: 1.2;
}
.globalmenu--overlay .menu-item .jp {
  font-weight: bold;
  font-size: 0.75rem;
  line-height: 1.5;
}
.globalmenu--overlay .menu-item .submenu {
  padding: 0 0 0 1rem;
}
.globalmenu--overlay .menu-item .submenu li {
  margin-top: 12px;
  padding-left: 1.5rem;
  position: relative;
}
.globalmenu--overlay .menu-item .submenu li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 1px;
  background: #121F3F;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.globalmenu--overlay .menu-item .submenu a {
  color: #121F3F;
}
.globalmenu--overlay .menu-cta {
  padding: 1.5rem 1rem;
  width: 100%;
  margin: 1.5rem auto 0;
  background: #121F3F;
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  .globalmenu--overlay .menu-cta {
    width: 100%;
  }
}
.globalmenu--overlay .menu-cta .title {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  position: relative;
  text-align: center;
  padding-top: 1.5rem;
}
.globalmenu--overlay .menu-cta .title::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 50px;
  height: 20px;
  background-image: url("../img/circle_red.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.globalmenu--overlay .menu-cta .text {
  margin-top: 0.5rempx;
}
.globalmenu--overlay .menu-cta .cta-btn {
  margin-top: 1rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid #fff;
  color: #fff;
}

/* =====================================
  Overlay
===================================== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* =====================================
  Body Control
===================================== */
body.is-menu-open {
  overflow: hidden;
}

.footer {
  position: relative;
  color: #fff;
  padding: 160px 0 40px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4))), url("../img/img_footer.webp");
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/img_footer.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* 左エリア */
  /* ナビ */
}
@media (max-width: 768px) {
  .footer {
    padding: 60px 0;
  }
}
.footer a {
  color: #fff;
}
.footer .wrapper {
  max-width: 1340px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .footer .wrapper {
    padding: 0 3%;
    width: 100%;
  }
}
.footer-flexwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 80px;
}
@media (max-width: 768px) {
  .footer-flexwrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    text-align: center;
  }
}
.footer-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media (max-width: 768px) {
  .footer-left {
    gap: 0.5rem;
  }
}
.footer-logo img {
  max-width: 300px;
}
@media (max-width: 768px) {
  .footer-logo img {
    max-width: 330px;
  }
}
.footer .btnarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.footer .btnarea a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  letter-spacing: 0.05em;
  color: #fff;
}
.footer .btnarea a .icon-blank {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url("../img/arrow_blank.svg") no-repeat center/contain;
}
.footer .btnarea a:hover {
  opacity: 0.7;
}
.footer-borderbtn {
  border: 1px solid #fff;
  padding: 10px 20px;
  font-size: 14px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.footer-nav {
  display: block;
}
@media (max-width: 768px) {
  .footer-nav {
    display: none;
  }
}
.footer-nav .parentlist {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}
.footer-nav .parentlist > li {
  position: relative;
  padding-left: 18px;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
  margin-bottom: 1.5rem;
}
.footer-nav .parentlist > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D9D9D9;
}
.footer-nav .parentlist > li > a {
  font-weight: bold;
  letter-spacing: 0.05em;
}
.footer-nav .childrenlist {
  margin-top: 0.5rem;
  padding-left: 1rem;
}
.footer-nav li {
  position: relative;
  padding-left: 16px;
}
.footer-nav li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 10px;
  height: 1px;
  background: #fff;
  opacity: 0.8;
}
.footer .footer-bottom {
  max-width: 1340px;
  margin: 70px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  .footer .footer-bottom {
    margin-top: 2.5rem;
    padding: 0 3%;
  }
}
.footer .footer-links {
  text-align: left;
}
.footer .footer-links a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  letter-spacing: 0.05em;
  color: #fff;
}
@media (max-width: 768px) {
  .footer .footer-links a {
    font-size: 12px;
  }
}
.footer .footer-links a .icon-blank {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url("../img/arrow_blank.svg") no-repeat center/contain;
}
.footer .footer-links a:hover {
  opacity: 0.7;
}
.footer .copyright {
  text-align: left;
  font-size: 14px;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .footer .copyright {
    font-size: 12px;
  }
}

.pagetop {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  display: none;
  /* 初期は非表示 */
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1000;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.pagetop.is-active {
  display: block;
  opacity: 1;
}

.sidemenupage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4em;
  -ms-flex-item-align: start;
      align-self: flex-start;
  /* トグル表示 */
}
@media (max-width: 768px) {
  .sidemenupage {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.sidemenupage .sidemenu {
  position: -webkit-sticky;
  position: sticky;
  top: 4em;
  width: 160px;
}
@media (max-width: 768px) {
  .sidemenupage .sidemenu {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: auto;
    position: static;
    top: auto;
  }
}
.sidemenupage .sidemenu--basiclist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.2rem;
}
@media (max-width: 768px) {
  .sidemenupage .sidemenu--basiclist {
    grid-template-columns: repeat(2, 1fr);
  }
}
.sidemenupage .sidemenu--basiclist a {
  color: #455580;
}
.sidemenupage .sidemenu--basiclist a.is-active {
  color: #121F3F;
  font-weight: bold;
}
@media (max-width: 768px) {
  .sidemenupage .sidemenu--basiclist a.is-active {
    font-weight: 400;
    olor: #455580;
  }
}
.sidemenupage .sidemenu--basiclist a:before {
  content: "-";
  margin-right: 0.5rem;
}
@media (max-width: 768px) {
  .sidemenupage .sidemenu--basiclist a:before {
    content: "";
    background: url("../img/sidemenu-arrow.svg") no-repeat center center;
    width: 18px;
    height: 13px;
    display: inline-block;
    background-size: contain;
    margin-right: 0.5rem;
    vertical-align: middle;
  }
}
@media (max-width: 768px) {
  .sidemenupage__people {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
}
.sidemenupage__people .sidemenu {
  width: 200px;
}
@media (max-width: 768px) {
  .sidemenupage__people .sidemenu {
    width: auto;
  }
}
@media (max-width: 768px) {
  .sidemenupage__people .list {
    display: none;
  }
}
.sidemenupage__people .toggle {
  cursor: pointer;
}
@media (max-width: 768px) {
  .sidemenupage__people .toggle {
    /* スマホのみトグル表示 */
    display: block;
    position: relative;
  }
  .sidemenupage__people .toggle::after {
    content: "+";
    position: absolute;
    right: 0;
  }
}
@media (max-width: 768px) {
  .sidemenupage__people .open {
    display: block !important;
  }
}
.sidemenupage__people a {
  color: #455580;
}
.sidemenupage__people .en {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  color: #121F3F;
}
@media (max-width: 768px) {
  .sidemenupage__people .en {
    border-bottom: 1px solid #121F3F;
  }
}
.sidemenupage__people .sidemenu__cat {
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .sidemenupage__people .sidemenu__cat {
    margin-bottom: 1.5rem;
  }
}
.sidemenupage__people .sidemenu__cat ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
.sidemenupage__people .sidemenu__cat ul a {
  display: block;
}
.sidemenupage__people .sidemenu__tag .taglink {
  display: inline-block;
  margin-right: 0.625rem;
  font-size: 0.875rem;
}
.sidemenupage__people .sidemenu__tag .taglink:before {
  content: "#";
}
.sidemenupage .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 300px;
}
@media (max-width: 768px) {
  .sidemenupage .content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    min-width: auto;
  }
}

.btnarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.c-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  min-height: 64px;
  padding: 1rem 0;
  text-decoration: none;
  color: #121F3F;
  border-bottom: 1px solid #121F3F;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}
.c-cta.white {
  border-bottom: 1px solid #fff;
}
.c-cta__left {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.c-cta__left.jp {
  font-size: 1rem;
}
.c-cta__left.white {
  color: #fff;
}
.c-cta__right {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.c-cta__right.white {
  color: #fff;
}
.c-cta__icon {
  display: inline-block;
  width: 48px;
  height: 24px;
  background: url("../img/arrow_right.svg") no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-cta__icon.white {
  background: url("../img/arrow_right_white.svg") no-repeat center/contain;
}
.c-cta:hover .c-cta__icon {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.c-panelbtn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3.5rem;
  padding: 1.5rem 2rem;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.12em;
  text-transform: capitalize;
  position: relative;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
}
.c-panelbtn .icon-arrow {
  width: 16px;
  height: auto;
  position: absolute;
  right: 2rem;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  will-change: transform;
}
.c-panelbtn:hover .icon-arrow {
  -webkit-transform: translate3d(12px, -50%, 0);
          transform: translate3d(12px, -50%, 0);
}

.pagettl {
  padding: 2.5rem 0;
  color: #121F3F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 768px) {
  .pagettl {
    padding: 2rem 0;
    display: block;
  }
}
.pagettl h1,
.pagettl .pagettl--single {
  font-size: 4rem;
  letter-spacing: 0.08em;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
@media (max-width: 768px) {
  .pagettl h1,
  .pagettl .pagettl--single {
    font-size: 2.5rem;
  }
}
.pagettl h1 span,
.pagettl .pagettl--single span {
  display: block;
  color: #121F3F;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.2em;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .pagettl h1 span,
  .pagettl .pagettl--single span {
    font-size: 1.25rem;
  }
}
.pagettl .breadcrumbs {
  font-size: 12px;
}
.pagettl .breadcrumbs a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  opacity: 0.5;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media (max-width: 768px) {
  .pagettl .breadcrumbs {
    padding: 0.5rem 0;
    font-size: 11px;
    overflow-x: scroll;
    word-break: keep-all;
    white-space: nowrap;
    text-align: right;
  }
}

.ttl.-entxt_01 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1;
}
.ttl.-entxt_01.-mg {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .ttl.-entxt_01 {
    font-size: 2.5rem;
  }
}
.ttl.-white {
  color: #fff;
}

.txt.-txt01 {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .txt.-txt01 {
    font-size: 1.25rem;
  }
}
.txt.-txt02 {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .txt.-txt02 {
    font-size: 1.5rem;
  }
}
.txt.-txt03 {
  font-size: 1.25em;
}
.txt.-txt04 {
  font-size: 1.5rem;
}

:root {
  --recruit-overlap: 40px;
}

.joinus {
  padding-top: 80px;
  position: relative;
  z-index: 10;
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
  margin: 0;
}
.joinus.subpage {
  padding-top: 0px;
}
@media (max-width: 768px) {
  .joinus {
    padding-top: 40px;
    padding-top: 50px;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
}
.joinus .recruit__inner {
  background-color: #121F3F;
  padding: 4rem;
  width: 90%;
  max-width: 1340px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .joinus .recruit__inner {
    padding: 2.5rem 1rem 4rem;
    width: 92%;
  }
}
.joinus .recruit__inner .recruit__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.joinus .recruit__inner .recruit__content .recruit__left {
  color: #fff;
  width: 45%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 0;
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .joinus .recruit__inner .recruit__content .recruit__left {
    width: 100%;
  }
}
.joinus .recruit__inner .recruit__content .recruit__left .recruit__ttl {
  position: relative;
  text-align: center;
  padding-top: 1.5rem;
}
.joinus .recruit__inner .recruit__content .recruit__left .recruit__ttl::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 50px;
  height: 20px;
  background-image: url("../img/circle_red.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.joinus .recruit__inner .recruit__content .recruit__left .recruit__sub {
  text-align: center;
}
.joinus .recruit__inner .recruit__content .recruit__right {
  width: 52%;
  display: grid;
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .joinus .recruit__inner .recruit__content .recruit__right {
    width: 100%;
    gap: 2rem;
    margin-top: 2rem;
  }
  .joinus .recruit__inner .recruit__content .recruit__right .c-panelbtn {
    padding: 1.25rem 1.875rem;
  }
}

#TOPPAGE {
  /* 初期状態（少し縮小） */
  /* 表示中のスライドだけズーム */
  /* Slick必須 */
  /* ===== SP ===== */
  /* 親が途中で切らないようにする */
  /* Slickが高さを潰すのを防ぐ */
}
#TOPPAGE #fv {
  position: relative;
  height: 100vh;
  min-height: 800px;
  overflow: hidden;
}
@media (max-width: 768px) {
  #TOPPAGE #fv {
    height: 500px;
    min-height: auto;
  }
}
#TOPPAGE #fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}
#TOPPAGE #fv__slide {
  height: 100%;
}
#TOPPAGE #fv .imgarea {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  #TOPPAGE #fv .imgarea {
    height: 500px;
  }
}
#TOPPAGE #fv .fv__vertical-menu {
  color: #fff;
  position: absolute;
  z-index: 2;
  top: 15%;
  left: 5%;
}
#TOPPAGE #fv .fv__vertical-menu ul li {
  margin-bottom: 1rem;
}
#TOPPAGE #fv .fv__vertical-menu ul li a {
  color: #fff;
}
@media (max-width: 768px) {
  #TOPPAGE #fv .fv__vertical-menu {
    display: none;
  }
}
#TOPPAGE #fv .fv__catch {
  position: absolute;
  z-index: 2;
  bottom: 10%;
  left: 5%;
  color: #fff;
  line-height: 1.4;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #fff;
  font-size: 4rem;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "游明朝", "MS PMincho", serif;
}
@media (max-width: 768px) {
  #TOPPAGE #fv .fv__catch {
    font-size: 2rem;
    left: 3%;
  }
}
#TOPPAGE .fv__slider .slick-slide .imgarea {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 10s ease;
  transition: -webkit-transform 10s ease;
  transition: transform 10s ease;
  transition: transform 10s ease, -webkit-transform 10s ease;
}
#TOPPAGE .fv__slider .slick-slide.slick-active .imgarea {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
#TOPPAGE .fv__slider,
#TOPPAGE .slick-list,
#TOPPAGE .slick-track,
#TOPPAGE .slick-slide {
  height: 100%;
}
#TOPPAGE .thought {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-bottom: clamp(60px, 10vw, 160px);
  /* ===== スライダーエリア ===== */
}
#TOPPAGE .thought::before {
  content: "";
  position: absolute;
  width: clamp(360px, 46vw, 760px);
  aspect-ratio: 542/452;
  background: url("../img/circle.svg") no-repeat center/contain;
  pointer-events: none;
  z-index: -1;
  left: 0;
  top: 0;
  -webkit-transform: translate(-16%, -18%);
          transform: translate(-16%, -18%);
}
#TOPPAGE .thought::after {
  content: "";
  position: absolute;
  width: clamp(260px, 34vw, 560px);
  aspect-ratio: 542/452;
  background: url("../img/circle.svg") no-repeat center/contain;
  pointer-events: none;
  z-index: -1;
  right: 0;
  bottom: 0;
  -webkit-transform: translate(8%, 28%) rotate(152deg);
          transform: translate(8%, 28%) rotate(152deg);
}
#TOPPAGE .thought__content {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 960px;
  margin: 0 auto;
  margin-bottom: 5rem;
}
#TOPPAGE .thought__title {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 32px;
  width: 35%;
}
#TOPPAGE .thought__text {
  width: 58%;
}
#TOPPAGE .thought__text p {
  font-size: 0.95rem;
  line-height: 2;
  color: #333;
}
#TOPPAGE .thought__text p:not(:last-child) {
  margin-bottom: 24px;
}
#TOPPAGE .thought__gallery {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
#TOPPAGE .thought__slider {
  width: 100%;
  visibility: hidden;
}
#TOPPAGE .thought__slider .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  /* 初期縦並び防止 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#TOPPAGE .thought__slider .slick-slide {
  width: 320px;
  /* デフォルト */
  margin-right: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
#TOPPAGE .thought__slide {
  width: 320px;
  margin-right: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#TOPPAGE .thought__slide img {
  width: 100%;
  display: block;
  border-radius: 16px;
}
@media (max-width: 768px) {
  #TOPPAGE .thought {
    width: 92%;
    margin: 0 auto;
  }
  #TOPPAGE .thought__content {
    width: 100%;
    display: block;
  }
  #TOPPAGE .thought__title {
    font-size: 1.6rem;
    margin-bottom: 24px;
    width: 100%;
  }
  #TOPPAGE .thought__text {
    width: 100%;
  }
  #TOPPAGE .thought__text p {
    font-size: 0.9rem;
    line-height: 1.9;
  }
  #TOPPAGE .thought__slider .slick-slide {
    width: 255px;
    /* デフォルト */
    margin-right: 16px;
  }
  #TOPPAGE .thought__slide {
    width: 255px;
    margin-right: 16px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
#TOPPAGE .about {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.7))), url("../img/bg_topabout.webp");
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), url("../img/bg_topabout.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#TOPPAGE .about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 64px;
}
#TOPPAGE .about__image, #TOPPAGE .about__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(50% - 32px);
          flex: 1 1 calc(50% - 32px);
  min-width: 300px;
}
@media (max-width: 768px) {
  #TOPPAGE .about__image, #TOPPAGE .about__text {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    min-width: auto;
  }
}
#TOPPAGE .about__text .ttlarea {
  margin-bottom: 1.5rem;
}
#TOPPAGE .about__text .ex {
  line-height: 2;
}
#TOPPAGE .work {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.7))), url("../img/bg_topwork.webp");
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), url("../img/bg_topwork.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#TOPPAGE .work__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 64px;
}
@media (max-width: 768px) {
  #TOPPAGE .work__content {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
}
#TOPPAGE .work__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(65% - 32px);
          flex: 0 0 calc(65% - 32px);
  min-width: 340px;
}
@media (max-width: 768px) {
  #TOPPAGE .work__image {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
#TOPPAGE .work__text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(35% - 32px);
          flex: 0 0 calc(35% - 32px);
  min-width: 340px;
}
@media (max-width: 768px) {
  #TOPPAGE .work__text {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    margin-top: 2rem;
    min-width: auto;
  }
}
#TOPPAGE .work__text .ttlarea {
  margin-bottom: 1.5rem;
}
#TOPPAGE .work__text .ex {
  line-height: 2;
}
#TOPPAGE .people {
  background-color: #F4F4F4;
  overflow: visible;
}
#TOPPAGE .people__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  #TOPPAGE .people__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 2rem;
  }
}
#TOPPAGE .people__content .c-cta {
  width: 21%;
}
@media (max-width: 768px) {
  #TOPPAGE .people__content .c-cta {
    display: none;
  }
}
#TOPPAGE .people__text {
  width: 60%;
}
@media (max-width: 768px) {
  #TOPPAGE .people__text {
    width: 100%;
  }
}
#TOPPAGE .people__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  #TOPPAGE .people__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
#TOPPAGE .people__list .people-item img {
  -o-object-fit: cover;
     object-fit: cover;
}
#TOPPAGE .people__cta-sp {
  display: none;
  margin-top: 32px;
  text-align: center;
}
@media (max-width: 768px) {
  #TOPPAGE .people__cta-sp {
    display: block;
  }
}
#TOPPAGE .people__cta-sp .c-cta {
  width: 100%;
  max-width: 320px;
  margin-left: auto;
}
#TOPPAGE .people,
#TOPPAGE .people__inner,
#TOPPAGE .people__content {
  overflow: visible;
}
#TOPPAGE .people__slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#TOPPAGE .people__slider .slick-slide {
  height: auto;
}

.tag--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 0.5rem;
}
.tag--list .tag {
  color: #121F3F;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.5;
}
.tag--list .tag:before {
  content: "#";
}

.people__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .people__list {
    grid-template-columns: 1fr;
  }
}
.people__list .people-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
.people__list .people-item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
}
.people__list .people-item h3 {
  font-size: 1.25rem;
  line-height: 1.5;
  color: #333;
  margin-bottom: 0.5rem;
}
.people__list .people-item .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.people__list .people-item .flex .cat,
.people__list .people-item .flex .year {
  font-size: 0.875rem;
}
.people__list .people-item .flex .cat {
  color: #95855D;
  font-weight: bold;
}
.people__list .people-item .flex .year {
  color: #555;
}

#PEOPLE .cattitle {
  font-size: 2rem;
  color: #121F3F;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
#PEOPLE .people__singleintro {
  background-color: #F4F4F4;
  position: relative;
  overflow: hidden;
  /* 左へ流れ続ける */
}
@media (max-width: 768px) {
  #PEOPLE .people__singleintro {
    padding-bottom: 5rem;
  }
}
#PEOPLE .people__singleintro .people--slidetxt {
  position: absolute;
  bottom: -90px;
  overflow: hidden;
  white-space: nowrap;
  color: #EDEDED;
  font-size: 9.375rem;
  font-weight: 500;
  -webkit-animation: slideText 100s linear infinite;
          animation: slideText 100s linear infinite;
}
@media (max-width: 768px) {
  #PEOPLE .people__singleintro .people--slidetxt {
    font-size: 4rem;
    bottom: -38px;
  }
}
@-webkit-keyframes slideText {
  0% {
    -webkit-transform: translateX(-25%);
            transform: translateX(-25%);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes slideText {
  0% {
    -webkit-transform: translateX(-25%);
            transform: translateX(-25%);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
#PEOPLE .people__singleintro .people__singleflex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4rem;
}
@media (max-width: 768px) {
  #PEOPLE .people__singleintro .people__singleflex {
    gap: 1.5rem;
  }
}
#PEOPLE .people__singleintro .people__singleflex .txt {
  width: calc(50% - 32px);
  display: grid;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  #PEOPLE .people__singleintro .people__singleflex .txt {
    width: 100%;
  }
}
#PEOPLE .people__singleintro .people__singleflex .txt h1 {
  font-size: 2.25rem;
  font-weight: bold;
  color: #121F3F;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  #PEOPLE .people__singleintro .people__singleflex .txt h1 {
    font-size: 2rem;
  }
}
#PEOPLE .people__singleintro .people__singleflex .txt .name {
  color: #121F3F;
  font-weight: bold;
}
#PEOPLE .people__singleintro .people__singleflex .txt .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#PEOPLE .people__singleintro .people__singleflex .txt .flex .cat {
  color: #95855D;
  font-weight: bold;
  margin-right: 1rem;
}
#PEOPLE .people__singleintro .people__singleflex .txt .flex .year {
  color: #555;
}
#PEOPLE .people__singleintro .people__singleflex .img {
  width: calc(50% - 32px);
}
@media (max-width: 768px) {
  #PEOPLE .people__singleintro .people__singleflex .img {
    width: 100%;
  }
}
#PEOPLE .people__singleintro .people__singleflex .img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
}
#PEOPLE .people__article {
  max-width: 800px;
  display: grid;
  gap: 1rem;
}
#PEOPLE .people__article h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #121F3F;
  position: relative;
  padding-left: 1.75rem;
  line-height: 1.5;
  padding-top: 1rem;
}
#PEOPLE .people__article h2:before {
  content: "";
  background-color: #121F3F;
  width: 20px;
  height: 2px;
  display: block;
  position: absolute;
  left: 0;
  top: 2.2rem;
}
@media (max-width: 768px) {
  #PEOPLE .sidemenu .list {
    display: none;
  }
  #PEOPLE .sidemenu .list.is-open {
    display: block;
  }
  #PEOPLE .sidemenu .toggle {
    cursor: pointer;
    position: relative;
    padding-right: 1.5rem;
  }
  #PEOPLE .sidemenu .toggle::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
  }
  #PEOPLE .sidemenu .toggle.is-open::after {
    content: "-";
  }
}

#COMPANY .intro__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  #COMPANY .intro__content {
    gap: 1.5rem;
  }
}
#COMPANY .intro__content .intro__left,
#COMPANY .intro__content .intro__right {
  width: 47%;
}
@media (max-width: 768px) {
  #COMPANY .intro__content .intro__left,
  #COMPANY .intro__content .intro__right {
    width: 100%;
  }
}
#COMPANY .intro__content .intro__left .intro__ttl {
  color: #121F3F;
  font-size: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  #COMPANY .intro__content .intro__left .intro__ttl {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
#COMPANY .intro__content .intro__left .intro__ttl span {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
#COMPANY .intro__content .intro__right img {
  width: 100%;
}
#COMPANY .compapy__business {
  background-color: #F4F4F4;
}
#COMPANY .compapy__business .wrapper .business__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 64px;
}
#COMPANY .compapy__business .wrapper .business__content .business__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(65% - 32px);
          flex: 0 0 calc(65% - 32px);
  max-width: 65%;
}
#COMPANY .compapy__business .wrapper .business__content .text-area {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(35% - 32px);
          flex: 1 1 calc(35% - 32px);
}
#COMPANY .compapy__business .wrapper .business__content .text-area .business__ttl {
  color: #121F3F;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
#COMPANY .compapy__business .wrapper .business__content .text-area .business__ttl span {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
#COMPANY .compapy__business .wrapper .business__content .text-area p {
  color: #121F3F;
  margin-bottom: 2.5rem;
}
#COMPANY .compapy__business .wrapper .business__content .text-area .business__innerimg {
  display: none;
}
@media (max-width: 768px) {
  #COMPANY .compapy__business .wrapper .business__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
  #COMPANY .compapy__business .wrapper .business__content .business__img {
    display: none;
    height: auto;
  }
  #COMPANY .compapy__business .wrapper .business__content .text-area .business__innerimg {
    display: block;
  }
}
#COMPANY .compapy__history .history__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#COMPANY .compapy__history .history__content .history__left {
  width: 28%;
}
@media (max-width: 768px) {
  #COMPANY .compapy__history .history__content .history__left {
    width: 100%;
  }
}
#COMPANY .compapy__history .history__content .history__left .history__ttl {
  font-size: 3rem;
  line-height: 1.5;
  color: #121F3F;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  #COMPANY .compapy__history .history__content .history__left .history__ttl {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
}
#COMPANY .compapy__history .history__content .history__left .history__ttl span {
  display: block;
  font-size: 1.1rem;
  padding-left: 1rem;
  position: relative;
  color: #121F3F;
  font-weight: bold;
  padding-left: 2rem;
}
#COMPANY .compapy__history .history__content .history__left .history__ttl span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background-color: #121F3F;
}
#COMPANY .compapy__history .history__content .history__right {
  width: 66%;
  display: flow-root;
  position: relative;
}
@media (max-width: 768px) {
  #COMPANY .compapy__history .history__content .history__right {
    width: 100%;
  }
}
#COMPANY .compapy__history .history__content .history__right .history__timeline {
  position: relative;
}
#COMPANY .compapy__history .history__content .history__right .history__timeline::before {
  content: "";
  position: absolute;
  top: -3px;
  bottom: -3px;
  left: calc(80px + 1.5rem + 8px);
  width: 1px;
  background: #A6A6A6;
  pointer-events: none;
}
#COMPANY .compapy__history .history__content .history__right .history__timeline .history__list .history__item {
  display: grid;
  grid-template-columns: 80px 16px 1fr;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 1.5rem;
}
#COMPANY .compapy__history .history__content .history__right .history__timeline .history__list .history__item:last-child {
  padding-bottom: 0;
}
#COMPANY .compapy__history .history__content .history__right .history__timeline .history__list .history__item .history__date {
  color: #455580;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
#COMPANY .compapy__history .history__content .history__right .history__timeline .history__list .history__item .history__rail {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#COMPANY .compapy__history .history__content .history__right .history__timeline .history__list .history__item .history__rail .history__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #455580;
  z-index: 1;
}
#COMPANY .compapy__history .history__content .history__right .history__timeline .history__list .history__item .history__text {
  line-height: 1.5;
  font-weight: 500;
}
#COMPANY .compapy__history .history__content .history__right .history__timeline .history__list .history__item .history__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#COMPANY .compapy__history .history__content .history__right .history__timeline .history__list .history__item .history__flex img {
  width: 32%;
}
@media (max-width: 768px) {
  #COMPANY .compapy__history .history__content .history__right .history__timeline .history__list .history__item .history__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.5rem;
  }
  #COMPANY .compapy__history .history__content .history__right .history__timeline .history__list .history__item .history__flex img {
    width: 100%;
  }
}
#COMPANY .compapy__history .history__content .history__right .history__timeline .history__list .history__item .history__flex .history__text {
  font-weight: bold;
  font-size: 1.1rem;
  width: 55%;
  color: #121F3F;
  line-height: 1.5;
}
@media (max-width: 768px) {
  #COMPANY .compapy__history .history__content .history__right .history__timeline .history__list .history__item .history__flex .history__text {
    font-size: 1rem;
    width: 100%;
  }
}
#COMPANY .compapy__history .history__content .history__right .history__timeline .history__more {
  padding-top: 6px;
  margin-top: 0;
}
#COMPANY .compapy__history .history__content .history__right .history__toggle {
  margin: 1rem auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 6px 10px;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
#COMPANY .compapy__history .history__content .history__right .history__toggle:hover {
  opacity: 1;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
#COMPANY .compapy__history .history__content .history__right .history__toggleText {
  display: inline-block;
  padding-top: 5px;
  font-size: 1rem;
  font-weight: 500;
}
#COMPANY .compapy__history .history__content .history__right .history__chev {
  width: 12px;
  height: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transition: transform 0.25s ease, opacity 0.2s ease, -webkit-transform 0.25s ease;
}
#COMPANY .compapy__history .history__content .history__right .history__toggle[aria-expanded=true] .history__chev {
  -webkit-transform: rotate(-135deg) !important;
          transform: rotate(-135deg) !important;
  margin-top: 7px;
}
@media (max-width: 768px) {
  #COMPANY .compapy__history .history__content .history__right .history__toggle {
    margin-top: 20px;
    font-size: 13px;
  }
}
#COMPANY .compapy-info .wrapper .info__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#COMPANY .compapy-info .wrapper .info__content .info__left {
  width: 28%;
}
@media (max-width: 768px) {
  #COMPANY .compapy-info .wrapper .info__content .info__left {
    width: 100%;
  }
}
#COMPANY .compapy-info .wrapper .info__content .info__left .info__ttl {
  font-size: 3rem;
  line-height: 1.5;
  color: #121F3F;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  #COMPANY .compapy-info .wrapper .info__content .info__left .info__ttl {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
}
#COMPANY .compapy-info .wrapper .info__content .info__left .info__ttl span {
  display: block;
  font-size: 1.1rem;
  padding-left: 1rem;
  position: relative;
  color: #121F3F;
  font-weight: bold;
  padding-left: 2rem;
}
#COMPANY .compapy-info .wrapper .info__content .info__left .info__ttl span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background-color: #121F3F;
}
#COMPANY .compapy-info .wrapper .info__content .info__right {
  width: 66%;
  display: flow-root;
  position: relative;
}
@media (max-width: 768px) {
  #COMPANY .compapy-info .wrapper .info__content .info__right {
    width: 100%;
  }
}
#COMPANY .compapy-info .wrapper .info__content .info__right .info-table tbody tr th {
  width: 20%;
  border-bottom: 1px solid #121F3F;
  text-align: center;
  padding: 1rem 0;
  color: #121F3F;
  font-weight: bold;
}
#COMPANY .compapy-info .wrapper .info__content .info__right .info-table tbody tr td {
  width: 80%;
  border-bottom: 1px solid #D9D9D9;
  padding: 1rem 0 1rem 0.5rem;
}

#BUSINESS .business .wrapper .business-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6.25rem;
}
@media (max-width: 768px) {
  #BUSINESS .business .wrapper .business-list {
    gap: 4rem;
  }
}
#BUSINESS .business .wrapper .business-list .business-item:last-child {
  padding-bottom: 0;
}
#BUSINESS .business .wrapper .business-list .business-item .business-ttl {
  color: #121F3F;
  font-size: 2rem;
  text-align: center;
  line-height: 1;
  margin-bottom: 2.5rem;
}
#BUSINESS .business .wrapper .business-list .business-item .business-ttl span {
  display: block;
  font-size: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  position: relative;
}
#BUSINESS .business .wrapper .business-list .business-item .business-ttl span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 50px;
  height: 20px;
  background-image: url(../img/circle_red.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
#BUSINESS .business .wrapper .business-list .business-item .business-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#BUSINESS .business .wrapper .business-list .business-item .business-content.reverse {
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
}
@media (max-width: 768px) {
  #BUSINESS .business .wrapper .business-list .business-item .business-content {
    gap: 1.5rem;
  }
}
#BUSINESS .business .wrapper .business-list .business-item .business-content .business-left {
  width: 65%;
}
@media (max-width: 768px) {
  #BUSINESS .business .wrapper .business-list .business-item .business-content .business-left {
    width: 100%;
  }
}
#BUSINESS .business .wrapper .business-list .business-item .business-content .business-right {
  width: 29%;
}
@media (max-width: 768px) {
  #BUSINESS .business .wrapper .business-list .business-item .business-content .business-right {
    width: 100%;
  }
}

#TEAMS .content {
  display: grid;
  gap: 5rem;
}
@media (max-width: 768px) {
  #TEAMS .content {
    gap: 4rem;
  }
}
#TEAMS .content .team--item {
  padding-top: 2.5rem;
  border-top: 4px solid #EDEDED;
  position: relative;
}
@media (max-width: 768px) {
  #TEAMS .content .team--item {
    padding-top: 2rem;
  }
}
#TEAMS .content .team--item:after {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  height: 4px;
  width: 5rem;
  background-color: #121F3F;
  display: block;
}
#TEAMS .content .team--item h2 {
  font-size: 2rem;
  color: #121F3F;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  #TEAMS .content .team--item h2 {
    margin-bottom: 1rem;
  }
}
#TEAMS .content .team--item .team--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
}
@media (max-width: 768px) {
  #TEAMS .content .team--item .team--inner {
    gap: 1.5rem;
  }
}
#TEAMS .content .team--item .team--inner .txt {
  width: calc(50% - 20px);
  display: grid;
  gap: 1rem;
}
@media (max-width: 768px) {
  #TEAMS .content .team--item .team--inner .txt {
    width: 100%;
  }
}
#TEAMS .content .team--item .team--inner .txt .place {
  color: #95855D;
  font-weight: bold;
}
#TEAMS .content .team--item .team--inner .txt .place:before {
  content: "";
  background: url("../img/icon-place.svg") no-repeat center center;
  background-size: contain;
  width: 22px;
  height: 22px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
#TEAMS .content .team--item .team--inner .txt .detail {
  color: #121F3F;
  font-weight: bold;
}
#TEAMS .content .team--item .team--inner .teams--img {
  width: calc(50% - 20px);
}
@media (max-width: 768px) {
  #TEAMS .content .team--item .team--inner .teams--img {
    width: 100%;
  }
}
#TEAMS .content .team--item .teams--box {
  border: 1px solid #97A2BF;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  #TEAMS .content .team--item .teams--box {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
}
#TEAMS .content .team--item .teams--box .teams--point h4 {
  color: #121F3F;
  font-weight: bold;
  border-left: 4px solid #121F3F;
  padding-left: 0.5rem;
  margin-bottom: 1rem;
  line-height: 1.5;
  display: block;
}
#TEAMS .content .team--item .teams--box .teams--point .teams--listing li {
  padding-left: 1rem;
}
#TEAMS .content .team--item .teams--box .teams--point .teams--listing li:before {
  content: "・";
  text-indent: -1rem;
  display: inline-block;
}

#FAQ .content {
  display: grid;
  gap: 5rem;
}
#FAQ .content .faqwrap {
  padding-top: 2.5rem;
  border-top: 4px solid #EDEDED;
  position: relative;
}
#FAQ .content .faqwrap:after {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  height: 4px;
  width: 5rem;
  background-color: #121F3F;
  display: block;
}
#FAQ .content .faqwrap h2 {
  font-size: 2rem;
  color: #121F3F;
  margin-bottom: 1.5rem;
}
#FAQ .content .faqwrap .faq--content {
  border-top: 1px solid #D9D9D9;
  padding: 1.5rem 0;
}
#FAQ .content .faqwrap .faq--content .question {
  font-weight: bold;
  padding-left: 3rem;
  margin-bottom: 1.5rem;
  position: relative;
}
#FAQ .content .faqwrap .faq--content .question:before {
  content: "Q.";
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  color: #4683AB;
  font-weight: bold;
  display: block;
  position: absolute;
  left: 0;
  top: -4px;
}
#FAQ .content .faqwrap .faq--content .answer {
  padding-left: 3rem;
  position: relative;
}
#FAQ .content .faqwrap .faq--content .answer:before {
  content: "A.";
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  color: #D40F1B;
  font-weight: bold;
  display: block;
  position: absolute;
  left: 0;
  top: -4px;
}

#RECRUIT .recruit__intro {
  background-color: #F4F4F4;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
#RECRUIT .recruit__intro::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: clamp(360px, 52vw, 820px);
  aspect-ratio: 542/452;
  background: url("../img/circle.svg") no-repeat center/contain;
  pointer-events: none;
  z-index: 0;
  -webkit-transform: translate(-22%, -17%);
          transform: translate(-22%, -17%);
}
#RECRUIT .recruit__intro .recruit__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  #RECRUIT .recruit__intro .recruit__flex {
    gap: 1.5rem;
  }
}
#RECRUIT .recruit__intro .recruit__flex .txt,
#RECRUIT .recruit__intro .recruit__flex .img {
  width: 47%;
}
@media (max-width: 768px) {
  #RECRUIT .recruit__intro .recruit__flex .txt,
  #RECRUIT .recruit__intro .recruit__flex .img {
    width: 100%;
  }
}
#RECRUIT .recruit__intro .recruit__flex .txt .intro__ttl {
  color: #121F3F;
  font-size: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  #RECRUIT .recruit__intro .recruit__flex .txt .intro__ttl {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
#RECRUIT .recruit__intro .recruit__flex .txt .intro__ttl span {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
#RECRUIT .recruit__intro .recruit__flex .img img {
  width: 100%;
}
#RECRUIT .recruit__main .job-ttl {
  color: #121F3F;
  font-size: 2rem;
  text-align: center;
  line-height: 1;
  margin-bottom: 2.5rem;
  position: relative;
  padding-top: 1.5rem;
}
@media (max-width: 768px) {
  #RECRUIT .recruit__main .job-ttl {
    margin-bottom: 2rem;
  }
}
#RECRUIT .recruit__main .job-ttl::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 50px;
  height: 20px;
  background-image: url(../img/circle_red.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (max-width: 768px) {
  #RECRUIT .recruit__main .sidemenupage {
    gap: 2.5rem;
  }
}
#RECRUIT .recruit__main .sidemenupage .content .job--item {
  padding-top: 2.5rem;
  border-top: 4px solid #EDEDED;
  position: relative;
  padding-bottom: 5em;
}
@media (max-width: 768px) {
  #RECRUIT .recruit__main .sidemenupage .content .job--item {
    padding-top: 2rem;
    padding-bottom: 4em;
  }
}
#RECRUIT .recruit__main .sidemenupage .content .job--item:last-child {
  padding-bottom: 0;
}
#RECRUIT .recruit__main .sidemenupage .content .job--item::after {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  width: 10%;
  height: 4px;
  background: #121F3F;
}
#RECRUIT .recruit__main .sidemenupage .content .job--item h2 {
  color: #121F3F;
}
#RECRUIT .recruit__main .sidemenupage .content .job--item .job--box {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  #RECRUIT .recruit__main .sidemenupage .content .job--item .job--box {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
#RECRUIT .recruit__main .sidemenupage .content .job--item .job--box .jobcard {
  border: 1px solid #121F3F;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 50px;
  gap: 1.5rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 768px) {
  #RECRUIT .recruit__main .sidemenupage .content .job--item .job--box .jobcard {
    gap: 0.5rem;
  }
}
#RECRUIT .recruit__main .sidemenupage .content .job--item .job--box .jobcard .job--txt .jobcard__dept {
  font-size: 1.25rem;
  padding-bottom: 0.5rem;
  color: #121F3F;
}
#RECRUIT .recruit__main .sidemenupage .content .job--item .job--box .jobcard .jobcard__arrow {
  display: inline-block;
  width: 48px;
  height: 24px;
  background: url("../img/arrow_right.svg") no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
#RECRUIT .recruit__main .sidemenupage .content .job--item .job--box .jobcard:hover.jobcard__arrow {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
#RECRUIT .recruit__link {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  #RECRUIT .recruit__link {
    grid-template-columns: 1fr;
  }
}
#RECRUIT .recruit__link .recruit__btn {
  height: 400px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  #RECRUIT .recruit__link .recruit__btn {
    height: 250px;
  }
}
#RECRUIT .recruit__link .recruit__btn.team {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.7))), url("../img/recruit/bg_team.webp");
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), url("../img/recruit/bg_team.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#RECRUIT .recruit__link .recruit__btn.faq {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.7))), url("../img/recruit/bg_faq.webp");
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), url("../img/recruit/bg_faq.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#RECRUIT .recruit__link .recruit__btn .recruit__btninner {
  width: 77%;
}
@media (max-width: 768px) {
  #RECRUIT .recruit__link .recruit__btn .recruit__btninner {
    width: 92%;
  }
}
#RECRUIT .recruit__link .recruit__btn .recruit__btninner .recruit__btnflex {
  display: grid;
  grid-template-columns: 1fr 50px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#RECRUIT .recruit__link .recruit__btn .recruit__btninner .recruit__btnflex .btn__arrow {
  display: inline-block;
  width: 48px;
  height: 24px;
  background: url("../img/arrow_right_white.svg") no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

#PRIVACYPOLICY strong {
  font-weight: bold;
}

#ENTRY .entryform {
  border: 1px solid #D9D9D9;
}