/* ----------------------------- */
/* style.css */
/* ----------------------------- */

:root{
  /* scroll */
  scroll-padding-top: 80px;
  scroll-behavior: smooth;
  /* font-weight */
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  /* color */
  --color-primary: #1465F9;
  --color-primary-light: #EAF2FF;
  --color-accent: #FFF94B;
  --color-secondary: #1EC198;
  --color-secondary-light: #6BFBCE;
  --color-secondary-dark: #008A65;
  --color-white: #FFFFFF;
  --color-text-dark: #111111;
  --color-text-blue: #144DB5;
  --color-bg-blue: #7d99cd;
  /* margin */
  --margin-side-common: 32px;
  /* mesh */
  --url-mesh-img: url(../img/embellishments/bg_mesh_gradient.webp);
}
@media screen and (max-width: 760px) {
  :root{
    /* color */
    /* scroll */
    scroll-padding-top: 50px;
    /* margin */
    --margin-side-common: 16px;

  }
}
body {
  font-family: "Noto Sans JP", 'Hiragino Sans', 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-style: normal;
  font-weight: var(--font-regular);
  font-feature-settings:"palt";
  background: var(--color-white);
  color: var(--color-text-dark);
}
.font-family-en {
  font-family: "Noto Sans", sans-serif;
}
@media screen and (max-width: 1260px) {
}

img {
  width: 100%;
  vertical-align: bottom;
}

img.img__sp {
  display: none;
}
img.img__pc {
  display: block;
}
@media screen and (max-width: 760px) {
  img.img__sp {
    display: block;
  }
  img.img__pc {
    display: none;
  }
}

h1 {
  font-size: 48px;
  font-weight: var(--font-bold);
  color: var(--color-text-dark);
  padding-bottom: 80px;
  text-align: center;
}
h1 span {
  color: var(--color-primary);
}
h2 {
  font-size: 20px;
  font-weight: var(--font-medium);
  color: var(--color-text-dark);
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
}
h2 img {
  height: 72px;
  width: fit-content;
}
h3 {
  font-size: 24px;
  font-weight: var(--font-bold);
  padding-left: 1em;
  margin-bottom: 0.8em;
  position: relative;
  letter-spacing: 0.03em;
}
h3 span {
  font-size: 1.44em;
  color: var(--color-primary);
}
h3::before {
  content: "";
  height: 100%;
  width: 2px;
  background: var(--color-primary);
  position: absolute;
  left: 0;
}
h4 {
  font-size: 20px;
  font-weight: var(--font-bold);
}
@media screen and (max-width: 1260px) {
  h1 {
    font-size: 42px;
  }
  h2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 760px) {
  h1 {
    font-size: 38px;
    padding-bottom: 51px;
  }
  h2 {
    font-size: 16px;
  }
  h2 img {
    max-width: 100%;
    height: 64px;
  }
  h3 {
    font-size: 18px;
  }
  h4 {
    font-size: 16px;
  }
}

p {
  font-size: 16px;
  font-weight: var(--font-regular);
  color: var(--color-text-dark);
  line-height: 1.8;
}
p:last-of-type {
  margin-bottom: 46px;
}
@media screen and (max-width: 1260px) {
  p:last-of-type {
  }
}
@media screen and (max-width: 760px) {
  p {
    font-size: 14px;
  }
  p:last-of-type {
    margin-bottom: 23px;
  }
}

a {
  display: block;
  text-decoration: none;
  color: var(--color-text-dark);
}
ul li,
ol li {
  list-style: none;
  line-height: 1.8;
}
li::before {
  pointer-events: none;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
br.br__pc {
  display: none;
}
@media screen and (min-width: 760.01px) {
  br.br__sp {
    display: none;
  }
  br.br__pc {
    display: inline;
  }
}

button {
  background: var(--color-text-dark);
  width: 400px;
  max-width: 100%;
  height: 50px;
  display: block;
  margin: auto auto 0;
  border-radius: 70px;
  position: relative;
  transition: 0.5s ease;
}
button:hover {
  background: var(--color-primary);
}
button a {
  font-size: 16px;
  font-weight: var(--font-bold);
  color: var(--color-white);
  text-align: left;
  line-height: 50px;
  padding-left: 20px;
}
button::before {
  content: "";
  width: 30px;
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 10px;
  right: 13px;
  background-image: url(../img/icon_link_wh_bk.svg);
  transition: 0.5s ease;
  pointer-events: none;
}
button:hover::before {
  background-image: url(../img/icon_link_wh_bl.svg);
}
@media screen and (max-width: 1260px) {
  button {
  }
}
@media screen and (max-width: 760px) {
  button {
    width: 300px;
    max-width: 90%;
  }
}

/* mask */
figure.mask {
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: 100%;
  -webkit-mask-size: 100%;
}
figure.mask.squ {
  mask-image: url("../img/embellishments/mask_square_large.svg");
  -webkit-mask-image: url("../img/embellishments/mask_square_large.svg");
  aspect-ratio: 1 / 1;
}
figure.mask.squ_chip {
  mask-image: url("../img/embellishments/mask_square_chip_large.svg");
  -webkit-mask-image: url("../img/embellishments/mask_square_chip_large.svg");
  aspect-ratio: 1 / 1;
}
figure.mask.rect {
  mask-image: url("../img/embellishments/mask_rectangle_large.svg");
  -webkit-mask-image: url("../img/embellishments/mask_rectangle_large.svg");
  aspect-ratio: 69 / 44;
}
figure.mask.rect_chip {
  mask-image: url("../img/embellishments/mask_rectangle_chip_large.svg");
  -webkit-mask-image: url("../img/embellishments/mask_rectangle_chip_large.svg");
  aspect-ratio: 69 / 44;
}
figure.mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
figure.bg_wh {
  background: var(--color-white);
}
@media screen and (max-width: 760px) {
  figure.mask.squ {
    mask-image: url("../img/embellishments/mask_square_small.svg");
    -webkit-mask-image: url("../img/embellishments/mask_square_small.svg");
    aspect-ratio: 1 / 1;
  }
  figure.mask.squ_chip {
    mask-image: url("../img/embellishments/mask_square_chip_small.svg");
    -webkit-mask-image: url("../img/embellishments/mask_square_chip_small.svg");
  }
  figure.mask.rect {
    mask-image: url("../img/embellishments/mask_rectangle_small.svg");
    -webkit-mask-image: url("../img/embellishments/mask_rectangle_small.svg");
  }
  figure.mask.rect_chip {
    mask-image: url("../img/embellishments/mask_rectangle_chip_small.svg");
    -webkit-mask-image: url("../img/embellishments/mask_rectangle_chip_small.svg");
  }
}

/* .embellishments */
*:has(> figure.embellishments) {
  position: relative;
}
figure.embellishments {
  position: absolute;
  z-index: 10;
}

/* ----------------------------- */
/* .l-header */
/* ----------------------------- */
.l-header {
  position: fixed;
  width: 100%;
  padding: 0;
  z-index: 110;
  top: 0;
  overflow: visible;
  height: 80px;
}
.l-header::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.01);
  box-shadow: 0 6 10px rgba(0, 0, 0, 0.01);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
}
@media screen and (max-width: 1260px) {
}
@media screen and (max-width: 760px) {
  .l-header {
    height: 50px;
  }
}

/* .l-header__logo
----------------------------- */
.l-header__logo {
  width: 300px;
  margin-top: 28px;
  margin-left: 20px;
  padding-bottom: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
}
.l-header__logo img {
  display: block;
}
@media screen and (max-width: 1260px) {
}
@media screen and (max-width: 760px) {
  .l-header__logo {
    width: 233px;
    margin-top: 14px;
    margin-left: 10px;
    top: 0;
    left: 0;
  }
}

/* .l-header__nav
----------------------------- */
.l-header .l-header__nav_wrap {
  position: fixed;
  top: 90px;
  left: 10px;
  width: 280px;
  height: auto;
  max-height: calc(100dvh - 100px);
  padding: 0;
  z-index: 100;
  transition: 0.5s ease;
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: 30px;
  background: none;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
}
.l-header__nav-menu {
  padding: 20px 15px 0;
  background-color: rgba(255, 255, 255, 0.65);
  border-radius: 30px 30px 0 0;
  border: 1.2px solid rgba(82, 120, 244, 0.08);
  border-bottom: none;
}
.l-header__nav > ul > li {
  position: relative;
}
.l-header__nav-menu > ul > li {
  border-bottom: #ddd 1px solid;
}
.l-header__nav-menu > ul > li:last-child {
  border-bottom: none;
}
.l-header__nav > ul > li::before {
  content: "";
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 18px;
  right: 10px;
  background-image: url(../img/icon_link_bk_wh.svg);
  transition: 0.5s ease;
}
.l-header__nav > ul > li.sub-content::before {
  content: none;
}
.l-header__nav > ul > li a {
  padding: 13px 0 13px 10px;
  width: 100%;
  transition: 0.5s ease;
}
.l-header__nav-menu > ul > li:hover::before {
  background-image: url(../img/icon_link_bl_wh.svg);
}
.l-header__nav a {
  font-size: 16px;
  font-weight: var(--font-semibold);
  width: fit-content;
}
.l-header__nav .sub-content a {
  font-size: 12px;
  font-weight: var(--font-regular);
  padding: 15px 0 15px 10px;
}
.l-header__nav-menu > ul > li:hover a,
.l-header__nav-icon > ul > li:hover a {
  color: var(--color-primary);
}

/* .p-hamburger__button */
.p-hamburger__button {
  display: none;
}

/* .p-mask */
.p-mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 90;
}
.p-mask.is-open {
  display: block;
}

/* .l-header__nav-entry */
.l-header__nav-entry {
  background: #5279F4;
  padding: 25px 15px 20px;
  position: relative;
}
.l-header__nav-entry::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  mix-blend-mode: soft-light;
  background-size: cover;
  background-image: var(--url-mesh-img);
  background-position: left bottom;
  opacity: 0.2;
}
.l-header__nav-entry::after {
  position: absolute;
  content: "";
  top: 22px;
  left: calc(15px + 0.4em);
  width: calc(100% - 30px - 0.4em);
  height: 64px;
  display: block;
  mix-blend-mode: overlay;
  background-size: contain;
  background-image: url(../img/embellishments/txt_description_entry.svg);
  opacity: 0.2;
}
.l-header__nav-entry .wrap {
  position: relative;
  z-index: 10;
}
.l-header__nav-entry p {
  padding-left: 10px;
  margin-bottom: 8px;
}
.l-header__nav-entry p:nth-child(1) {
  letter-spacing: 0.05em;
  font-weight: var(--font-medium);
  color: var(--color-accent);
  font-size: 16px;
}
.l-header__nav-entry p:nth-child(2) {
  font-weight: var(--font-regular);
  color: var(--color-white);
  font-size: 14px;
}
.l-header__nav-entry p:last-of-type {
  margin-bottom: 24px;
}
.l-header__nav-entry .btn_grp {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 0 10px;
  justify-content: space-between;
}
.l-header__nav-entry button {
  background: var(--color-white);
  width: 48%;
  margin: 0;
  transition: 0.5s ease;
}
.l-header__nav-entry .btn_grp button.disable {
  opacity: 0.5;
  pointer-events: none;
}
.l-header__nav-entry button a {
  color: var(--color-text-dark);
  padding-left: 14px;
  width: 100%;
  font-weight: var(--font-bold);
  font-size: 14px;
}
.l-header__nav-entry button::before {
  background-image: url(../img/icon_external_bl_wh.svg);
}
.l-header__nav-entry button:hover {
  background: var(--color-accent);
}

/* .l-header__nav-icon */
.l-header__nav-icon {
  display: none;
}

/* .l-header-icon */
.l-header-icon {
  position: absolute;
  top: 22px;
  right: 30px;
}
.l-header-icon ul {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
}

.l-header-icon ul li a {
  line-height: 36px;
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  transition: 0.5s ease;
}
.l-header-icon ul li:hover a {
  color: var(--color-primary);
}
.l-header-icon ul li img {
  height: 36px;
  width: 36px;
}
.l-header-icon .l-header-icon__sp {
  display: none;
}


/* .l-header__nav （タブレット・スマホ）
----------------------------- */
@media screen and (max-width: 1260px) {
  /* .p-hamburger__button
  ----------------------------- */
  .p-hamburger__button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    cursor: pointer;
    z-index: 110;
    position: fixed;
    top: 0px;
    right: 0px;
  }
  .p-hamburger__button img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  .p-hamburger__button .icon_hamburger {
    width: 30px;
  }
  .p-hamburger__button .icon_close {
    width: 30px;
    display: none;
  }
  .l-header-icon {
    right: 80px;
  }

  /* .l-header__nav_wrap
  ----------------------------- */
  .l-header .l-header__nav_wrap {
    left: -100%;
    opacity: 0;
  }
  .l-header .l-header__nav_wrap.is-open {
    left: 10px;
    opacity: 1;
  }
  .l-header:has(.l-header__nav_wrap.is-open)::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

}
@media screen and (max-width: 760px) {
  .p-hamburger__button {
    width: 60px;
    height: 50px;
  }
  .l-header .l-header__nav_wrap {
    width: 100%;
    box-shadow: none;
    height: auto;
    max-height: 100dvh;
    padding: 50px 0;
    padding-bottom: 0;
    top: -100vh;
    left: 0;
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0.65);
  }
  .l-header .l-header__nav_wrap.is-open {
    top: 0;
    left: 0;
  }
  .l-header__nav > ul {
    padding: 5px 0 0;
  }
  .l-header__nav a {
  }
  .l-header__nav-menu {
    padding: 0 15px;
    background: none;
    border-radius: 0;
    border: none;
  }
  .l-header__nav > ul > li::before {
  }
  /* .l-header__nav-entry */
  .l-header__nav-entry::after {
    position: absolute;
    content: "";
    top: 15px;
    left: calc(15px + 0.2em);
    width: calc(100% - 30px - 0.2em);
    height: 64px;
    display: block;
    mix-blend-mode: overlay;
    background-size: contain;
    background-image: url(../img/embellishments/txt_description_entry.svg);
    opacity: 0.2;
  }
  .l-header__nav-entry p {
    margin-bottom: 16px;
  }
  .l-header__nav-entry p:nth-child(1) {
    font-size: 14px;
  }
  .l-header__nav-entry p:nth-child(2) {
    font-size: 14px;
  }
  .l-header__nav-entry p:last-of-type {
    margin-bottom: 24px;
  }
  .l-header__nav-entry button a {
    padding-left: 20px;
  }
  /* .l-header__nav-icon */
  .l-header__nav-icon {
    display: block;
    padding: 0 15px;
  }
  .l-header__nav-icon > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding: 15px 0 20px;
    justify-content: center;
  }
  .l-header__nav-icon > ul > li {
    width: fit-content;
  }
  .l-header__nav-icon > ul > li a {
    padding: 0;
    line-height: 36px;
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    font-weight: var(--font-regular);
    font-size: 12px;
  }
  .l-header__nav-icon > ul > li::before {
    content: none;
  }
  .l-header__nav-icon > ul > li img {
    height: 36px;
    width: 36px;
  }

  .l-header:has(.l-header__nav_wrap.is-open) {
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .l-header-icon {
    top: 7px;
    right: 56px;
  }
  .l-header-icon .l-header-icon__pc {
    display: none;
  }
  .l-header-icon .l-header-icon__sp {
    display: block;
  }

}

/* ----------------------------- */
/* .l-main-content （右側）
/* ----------------------------- */
.l-main-content {
  width: 100%;
  margin-left: 0;
  margin-top: 80px;
}
@media screen and (max-width: 1260px) {
  .l-main-content {
    width: 100%;
    margin-left: 0;
    margin-top: 80px;
  }
}
@media screen and (max-width: 760px) {
  .l-main-content {
    margin-top: 50px;
  }
}

/* ----------------------------- */
/* .l-main */
/* ----------------------------- */
.l-main {
  position: relative;
}

/* .l-top__section
----------------------------- */
.l-top__section {
  padding: 0;
  overflow: hidden;
  /* background: linear-gradient(to bottom right, #ebefff, transparent 30%); */
}
.l-top__section .wrap ,
.l-top__section .wrap .page_title {
  position: relative;
}
.page_title > figure, 
.page_title > h1 {
  padding-left: 300px;
}
.page_title > h1 {
  margin: 0 var(--margin-side-common);
}
.page_title figure {
  width: 70%;
  margin: 40px auto 80px;
}
.l-top__section .wrap .bg_page_title {
  width: 110%;
  height: 100%;
  background: var(--color-bg-blue);
  position: absolute;
  top: calc(60px - 40px);
  left: calc((100% - 300px) / 2 + 300px);
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  z-index: -50;
  mask-image: url("../img/embellishments/mask_circle.svg"),linear-gradient(rgba(0, 0, 0, 0.4), transparent calc(100% - 40px));
  -webkit-mask-image: url("../img/embellishments/mask_circle.svg"),linear-gradient(rgba(0, 0, 0, 0.4), transparent calc(100% - 40px));
  mask-composite: intersect;
  -webkit-mask-composite: intersect;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center top;
  -webkit-mask-position: center top;
  mask-size: 100%;
  -webkit-mask-size: 100%;
  overflow: hidden;
}
.l-top__section .wrap .bg_page_title::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  mix-blend-mode: color-burn;
  mix-blend-mode: screen;
  background-size: cover;
  background-image: var(--url-mesh-img);
  opacity: 0.8;
}

@media screen and (max-width: 1260px) {
  .l-top__section {
    padding: 0;
  }
  .page_title > figure, 
  .page_title > h1 {
    padding-left: 0;
  }
  .l-top__section .wrap .bg_page_title {
    width: 130%;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
  }
}
@media screen and (max-width: 760px) {
  .page_title figure {
    width: 100%;
    margin: 33px auto 51px;
  }
  .l-top__section .wrap .bg_page_title {
    width: 200%;
    top: calc(50px - 33px);
  }
}

/* .top_anchor_list
----------------------------- */
.top_anchor_list ul {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 0 var(--margin-side-common) 0 calc(var(--margin-side-common) + 300px);
  border-bottom: solid 1px #DDDDDD;
  padding-bottom: 20px;
}
.top_anchor_list ul li {
  position: relative;
  transition: 0.5s ease;
}
.top_anchor_list ul li::before {
  content: "";
  width: 12px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  bottom: 0;
  background-image: url(../img/icon_anchor_link.svg);
}
.top_anchor_list ul li a {
  font-size: 16px;
  padding-bottom: 22px;
  transition: 0.5s ease;
}
.top_anchor_list ul li:hover {
  transform: translateY(-5px);
}
.top_anchor_list ul li:hover a {
  color: var(--color-primary);
}
@media screen and (max-width: 1260px) {
  .top_anchor_list ul {
    margin: 0 var(--margin-side-common);
  }
}
@media screen and (max-width: 760px) {
  .top_anchor_list ul {
    gap: 30px;
    padding-bottom: 15px;
  }
  .top_anchor_list ul li::before {
    width: 10px;
    height: 10px;
  }
  .top_anchor_list ul li a {
    font-size: 12px;
    padding-bottom: 20px;
  }
}

/* card_no
----------------------------- */
.squ_chip_card ,
.rect_chip_card {
  position: relative;
}
.card_no {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.squ_chip_card .card_no {
  aspect-ratio: 1 / 1;
}
.rect_chip_card .card_no {
  aspect-ratio: 69 / 44;
}
.card_no img {
  position: absolute;
  height: auto;
}
.squ_chip_card .card_no img {
  width: 15%;
  top: 4%;
  left: 2%;
}
.rect_chip_card .card_no img {
  width: 8%;
  top: 3.5%;
  left: 1%;
}
@media screen and (max-width: 760px) {
  .squ_chip_card .card_no img {
    width: 18%;
    top: 5%;
    left: 3%;
  }
  .rect_chip_card .card_no img {
    width: 9.3%;
    top: 5%;
    left: 1.5%;
  }
}

/* .l-main__section
----------------------------- */
.l-main__section {
  position: relative;
}
.l-main__section .wrap {
  padding: 80px var(--margin-side-common) 80px calc(var(--margin-side-common) + 300px);
  max-width: 1400px;
  margin: auto;
  position: relative;
  z-index: 10;
}
.l-main__section .flex {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
}
.l-main__section .flex > * {
  width: 48%;
}
.l-main__section .flex > div {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.l-main__section .flex > div > *:nth-last-child(2):has(+ button) {
  margin-bottom: auto;
  padding-bottom: 23px;
}
.l-main__section .flex > img {
  height: auto;
}
.l-main__section figure {
  overflow: hidden;
}
@media screen and (max-width: 1260px) {
  .l-main__section .wrap {
    padding: 60px var(--margin-side-common);
  }
}
@media screen and (max-width: 760px) {
  .l-main__section .wrap {
    padding: 40px var(--margin-side-common);
  }
  .l-main__section .flex {
    flex-direction: column;
  }
  .l-main__section .flex > * {
    width: 100%;
  }
}

/* ----------------------------- */
/* #breadcrumb */
/* ----------------------------- */
#breadcrumb .wrap {
  padding: 40px var(--margin-side-common) 40px calc(var(--margin-side-common) + 300px);
  max-width: 1400px;
  margin: auto;
  position: relative;
  z-index: 10;
  font-size: 14px;
}
  
#breadcrumb .wrap ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin: 0;
  padding: var(--space-base) 0;
}

#breadcrumb .wrap ul li:not(:first-child)::before {
  content: '/';
  display: inline-block;
  margin-inline: 1em;
}

#breadcrumb .wrap ul li a {
  display: inline;
  color: var(--color-primary);
}

#breadcrumb .wrap ul li a:hover,
#breadcrumb .wrap ul li a:focus {
  text-decoration: underline;
}
@media screen and (max-width: 1260px) {
  #breadcrumb .wrap {
    padding: 30px var(--margin-side-common);
  }
}
@media screen and (max-width: 760px) {
  #breadcrumb .wrap {
    padding: 30px var(--margin-side-common);
    font-size: 12px;
  }
}

/* ----------------------------- */
/* .l-entry-content */
/* ----------------------------- */
.l-entry-content {
  background: #5279F4;
  position: relative;
}
.l-entry-content::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  mix-blend-mode: soft-light;
  background-size: cover;
  background-image: var(--url-mesh-img);
  opacity: 0.2;
}
.l-entry-content .wrap {
  padding: 70px var(--margin-side-common) 80px calc(var(--margin-side-common) + 300px);
  max-width: 1400px;
  margin: auto;
  position: relative;
  z-index: 10;
}

.l-entry-content h2 {
  color: var(--color-white);
}
.l-entry-content p {
  color: var(--color-white);
}

.l-entry-content .btn_grp {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
}
.l-entry-content button {
  background: var(--color-white);
  transition: 0.5s ease;
  width: 200px;
  margin: 0;
}
.l-entry-content .btn_grp button.disable {
  opacity: 0.5;
  pointer-events: none;
}
.l-entry-content button:hover {
  background: var(--color-accent);
}
.l-entry-content button a {
  color: var(--color-text-dark);
}
.l-entry-content button::before {
  background-image: url(../img/icon_external_bl_wh.svg);
}

@media screen and (max-width: 1260px) {
  .l-entry-content .wrap {
    padding: 50px var(--margin-side-common) 60px;
  }
  .l-entry-content .btn_grp {
    gap: 20px;
  }
  .l-entry-content button {
    width: min(200px, 46%);
  }
}
@media screen and (max-width: 760px) {
  .l-entry-content .wrap {
    padding: 35px var(--margin-side-common) 40px;
  }
  .l-entry-content button a {
    font-size: 14px;
  }
  .l-entry-content .btn_grp {
    justify-content: center;
  }
}


/* ----------------------------- */
/* .l-footer */
/* ----------------------------- */
.l-footer {
  background: var(--color-white);
}
.l-footer__logo {
  width: 260px;
  padding-top: 24px;
  padding-bottom: 0;
  margin-left: calc(var(--margin-side-common) + 300px);
  margin-bottom: 24px;
}
.l-footer__logo img {
  display: block;
}
.l-footer h1,
.l-footer .l-footer__nav_wrap {
  display: none;
}
@media screen and (max-width: 1260px) {
  .l-footer__logo {
    margin-left: var(--margin-side-common);
  }
  .l-footer h1,
  .l-footer .l-footer__nav_wrap {
    display: block;
  }
}
@media screen and (max-width: 760px) {
  .l-footer__logo {
    width: 233px;
  }
}

/* .l-footer__nav
----------------------------- */
.l-footer .l-footer__nav_wrap {
  padding-top: 16px;
  padding-left: calc(var(--margin-side-common) + 300px);
  padding-right: var(--margin-side-common);
}
.l-footer__nav > ul {
  /* padding: 25px 0; */
}
.l-footer__nav > ul > li {
  position: relative;
}
.l-footer__nav-menu > ul > li {
  border-bottom: #ddd 1px solid;
}
.l-footer__nav-menu > ul > li::before {
  content: "";
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 18px;
  right: 10px;
  background-image: url(../img/icon_link_bk_wh.svg);
  transition: 0.5s ease;
}
.l-footer__nav > ul > li.sub-content::before {
  content: none;
}
.l-footer__nav-menu > ul > li:hover::before {
  background-image: url(../img/icon_link_bl_wh.svg);
}
.l-footer__nav > ul > li a {
  padding: 13px 0 13px 10px;
  width: 100%;
  transition: 0.5s ease;
}
.l-footer__nav .sub-content a {
  font-size: 12px;
  font-weight: var(--font-regular);
  padding: 15px 0 15px 10px;
}
.l-footer__nav > ul > li:hover a {
  color: var(--color-primary);
}

.l-footer__nav-icon > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 24px 0;
}
.l-footer__nav-icon > ul > li {
  width: fit-content;
}

.l-footer__nav-icon > ul > li a {
  padding: 0;
  line-height: 36px;
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  font-weight: var(--font-regular);
  font-size: 12px;
}

.l-footer__nav-icon > ul > li img {
  height: 36px;
  width: 36px;
}
.l-footer__nav-icon > ul > li::before {
  content: none;
}

.l-footer__nav a {
  font-size: 16px;
  font-weight: var(--font-regular);
  width: fit-content;
}
.l-footer__nav-menu a {
  font-weight: var(--font-semibold);
}

/* .l-footer__nav （タブレット・スマホ）
----------------------------- */
@media screen and (max-width: 1260px) {

  /* .l-footer__nav_wrap
  ----------------------------- */
  .l-footer .l-footer__nav_wrap {
    padding-top: 8px;
    padding-left: var(--margin-side-common);
  }

}
@media screen and (max-width: 760px) {
}

/* .copyright
----------------------------- */
.copyright {
  background: #111111;
}
.copyright p {
  text-align: center;
  font-size: 12px;
  color: #FFFFFF;
  line-height: 1.5;
  padding: 8px;
  margin-bottom: 0;
}
@media screen and (max-width: 760px) {

}



/* ----------------------------- */
/* 
/* index
/* 
/* ----------------------------- */

/* .keyvisual, .copy
----------------------------- */
@media screen and (max-width: 1260px) {
}
@media screen and (max-width: 760px) {
  .p-keyvisual_grp {
    flex-direction: column;
    gap: 1.5vw;
  }
  .p-keyvisual_grp > * {
    width: 100%;
  }
  .keyvisual {
    overflow: hidden;
    margin-top: 10px;
  }

  .keyvisual img {
    transform: scale(1.3) translate(-20px, 0);
  }
}


/* .p-balloon
----------------------------- */
.p-balloon_grp {
  max-width: 1000px;
  margin: auto;
  padding-left: 300px;
}
.p-balloon {
  background: var(--color-accent);
  border-radius: 30px;
  position: relative;
  margin: auto var(--margin-side-common);
}
.p-balloon::before {
  content: "";
  width: 0;
  height: 0;
  background: none;
  position: absolute;
  bottom: -21px;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  border-top: 21px solid var(--color-accent);
  border-right: 14px solid transparent;
  border-left: 14px solid transparent;
}
.p-balloon p {
  color: var(--color-primary);
  font-weight: var(--font-medium);
  font-size: 16px;
  padding: 18px 28px;
  line-height: 1.8;
}
@media screen and (max-width: 1260px) {
  .p-balloon_grp {
    padding-left: 0;
    max-width: 700px;
  }
  .p-balloon p {
    font-size: 15px;
    padding: 15px 24px;
  }
}

/* .top_circle_wrap
----------------------------- */
.top_circle_wrap {
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 200vh;
  z-index: -30;
  overflow: hidden;
}
.top_circle {
  position: absolute;
  height: auto;
  width: 1300px;
  top: -570px;
  left: -650px;
}
.top_circle img {
  width: 100%;
  animation: rotate 60s linear infinite;
  opacity: 0.5;
}
@media screen and (max-width: 1260px) {
  .top_circle_wrap {
    top: 0;
  }
  .top_circle {
    width: 150vw;
    top: calc(375px - 98vw);
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
  }
  .circle_area_sp {
    height: calc(23vw - 55px);
  }
}
@media screen and (max-width: 760px) {
  .top_circle {
    width: 210vw;
    top: calc(238px - 121vw);
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
  }
  .circle_area_sp {
    height: calc(29vw - 7px);
  }
}

/* 回転アニメーションの定義 */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* .index_btn
----------------------------- */
button.index_btn {
  margin-top: 30px;
}
@media screen and (max-width: 760px) {
  button.index_btn {
    margin-top: 0;
  }
}

/* .philosophy
----------------------------- */
.l-main__section.philosophy {
  overflow: hidden;
}
.philosophy_title {
  font-weight: var(--font-bold);
  font-size: 36px;
  margin-bottom: 30px;
  line-height: 1;
}

.philosophy_mask_wrap {
  position: relative;
  overflow: hidden;
}

/* bg_philosophy */
.bg_philosophy {
  background: var(--color-bg-blue);
  width: 65%;
  max-width: 1200px;
  aspect-ratio: 1 / 1;
  mask-image: url("../img/embellishments/mask_circle.svg"),linear-gradient(rgba(0, 0, 0, 0.4), transparent 64%);
  -webkit-mask-image: url("../img/embellishments/mask_circle.svg"),linear-gradient(rgba(0, 0, 0, 0.4), transparent 64%);
  mask-composite: intersect;
  -webkit-mask-composite: intersect;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: right top;
  -webkit-mask-position: right top;
  mask-size: 100%;
  -webkit-mask-size: 100%;
  position: absolute;
  top: 70px;
  right: -10vw;
}
.bg_philosophy::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  mix-blend-mode: screen;
  background-size: cover;
  background-image: var(--url-mesh-img);
  background-position: left bottom;
  opacity: 0.8;
}
@media screen and (max-width: 1260px) {
  .bg_philosophy {
    width: 80%;
    right: -20vw;
    mask-image: url("../img/embellishments/mask_circle.svg"),linear-gradient(rgba(0, 0, 0, 0.4), transparent 47vw);
    -webkit-mask-image: url("../img/embellishments/mask_circle.svg"),linear-gradient(rgba(0, 0, 0, 0.4), transparent 47vw);
  }
}
@media screen and (max-width: 760px) {
  .bg_philosophy {
    width: 180%;
    top: 80px;
    left: 20%;
    mask-image: url("../img/embellishments/mask_circle.svg"),linear-gradient(rgba(0, 0, 0, 0.4), transparent 40%);
    -webkit-mask-image: url("../img/embellishments/mask_circle.svg"),linear-gradient(rgba(0, 0, 0, 0.4), transparent 40%);
  }
}
@media screen and (max-width: 500px) {
  .bg_philosophy {
    mask-image: url("../img/embellishments/mask_circle.svg"),linear-gradient(rgba(0, 0, 0, 0.4), transparent 60%);
    -webkit-mask-image: url("../img/embellishments/mask_circle.svg"),linear-gradient(rgba(0, 0, 0, 0.4), transparent 60%);
  }
}

/* .business_job
----------------------------- */
.l-main__section.business_job {
  overflow: hidden;
}
.bg_business_job {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg-blue);
  opacity: 0.2;
}
.bg_business_job::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  mix-blend-mode: screen;
  background-size: cover;
  background-image: var(--url-mesh-img);
  opacity: 0.8;
}

.business_job_ul {
  margin: 0 0 auto;
}
.business_job_ul li {
  border-bottom: solid 1px rgba(20, 101, 249, 0.5);
  position: relative;
}
.business_job_ul li:last-child {
  border-bottom: none;
}
.business_job_ul li::before {
  content: "";
  width: 30px;
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 16px;
  right: 13px;
  background-image: url(../img/icon_link_wh_bl.svg);
  transition: 0.8s ease;
}
.business_job_ul li:hover::before {
  background-image: url(../img/icon_link_bl_wh.svg);
}
.business_job_ul li a {
  line-height: 1.8;
  font-size: 16px;
  padding: 16px 1em;
  transition: 0.5s ease;
}
.business_job_ul li:hover a {
  color: var(--color-primary);
}
@media screen and (max-width: 760px) {
  .business_job_ul li::before {
    top: 14px;
  }
  .business_job_ul li a {
    font-size: 14px;
    padding: 16px 1em;
  }
}

/* .interview
----------------------------- */
.l-main__section.interview {
  overflow: hidden;
}

.bg_interview {
  background: var(--color-bg-blue);
  width: 1500px;
  aspect-ratio: 1 / 1;
  mask-image: url("../img/embellishments/mask_circle.svg"),linear-gradient(transparent, rgba(0, 0, 0, 0.4), transparent 48%);
  -webkit-mask-image: url("../img/embellishments/mask_circle.svg"),linear-gradient(transparent, rgba(0, 0, 0, 0.4), transparent 48%);
  mask-composite: intersect;
  -webkit-mask-composite: intersect;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: right top;
  -webkit-mask-position: right top;
  mask-size: 100%;
  -webkit-mask-size: 100%;
  position: absolute;
  top: 120px;
  left: -5%;
}
.bg_interview::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  mix-blend-mode: screen;
  background-size: cover;
  background-image: var(--url-mesh-img);
  background-position: left bottom;
  opacity: 0.8;
}
@media screen and (max-width: 1260px) {
  .bg_interview {
    width: 1200px;
    mask-image: url("../img/embellishments/mask_circle.svg"),linear-gradient(transparent, rgba(0, 0, 0, 0.4), transparent calc(400px + 33vw));
    -webkit-mask-image: url("../img/embellishments/mask_circle.svg"),linear-gradient(transparent, rgba(0, 0, 0, 0.4), transparent calc(400px + 33vw));
    left: -15%;
  }
}
@media screen and (max-width: 760px) {
  .bg_interview {
    width: 180%;
    top: 80px;
    left: auto;
    right: -65%;
  }
}

.interview_list_box {
  width: 100%;
}
.interview_list {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0 20px;
  gap: 40px;
  justify-content: space-between;
}
.interview_item {
  width: 30%;
  transition: 0.5s ease;
}
.interview_item:hover {
  transform: translateY(-5px);
}
.interview_item figure {
  position: relative;
  overflow: hidden;
}
.interview_item figure::before {
  content: "";
  height: 20%;
  aspect-ratio: 1 / 1;
  min-width: 45px;
  min-height: 45px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 35%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url(../img/icon_arrow_wh.svg);
  border-radius: 71% 0 0 0;
  background-color: var(--color-primary);
}
.interview_item .staff_name {
  margin-top: 10px;
  font-size: 20px;
  line-height: 24px;
  font-weight: var(--font-medium);
  position: relative;
  display: block;
  padding-left: 3em;
  margin: 15px auto 10px;
  width: fit-content;
}
.interview_item .staff_name span {
  font-size: 12px;
  color: var(--color-white);
  padding: 0 5px;
  line-height: 24px;
  border-radius: 5px;
  display: inline-block;
  background: var(--color-primary);
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (max-width: 1260px) {
  .interview_list_box {
    margin: 0;
    margin-left: calc( -1 * var(--margin-side-common) );
  }
  /* カルーセル */
  .interview_list {
    flex-wrap: nowrap;
    width: fit-content;
    padding-bottom: 10px;
  }
  .interview_list {
    width: calc(100% + (2 * var(--margin-side-common)));
    overflow: hidden;
  }
  .interview_list > * {
    width: 100%;
  }
  .interview_item {
    width: auto;
    padding-left: var(--margin-side-common);
    padding-right: 14px;
  }
  .interview_item figure {
    width: 33vw !important;
    min-width: 180px;
  }
}
@media screen and (max-width: 760px) {
  .interview_item figure {
    width: 35vw !important;
  }
  .interview_item figure::before {
    border-radius: 66.7% 0 0 0;
  }
  .interview_item .staff_name {
    font-size: 18px;
    margin: 10px auto 5px;
  }
  .interview_item .staff_name span {
    top: 2px;
  }
}

/* .environment
----------------------------- */
.l-main__section.environment {
  background: #F0F0F0;
}


/* .number
----------------------------- */
.l-main__section.number {
  overflow: hidden;
}

.bg_number {
  background: var(--color-bg-blue);
  width: 1500px;
  aspect-ratio: 1 / 1;
  mask-image: url("../img/embellishments/mask_circle.svg"),linear-gradient(transparent, rgba(0, 0, 0, 0.4), transparent 460px);
  -webkit-mask-image: url("../img/embellishments/mask_circle.svg"),linear-gradient(transparent, rgba(0, 0, 0, 0.4), transparent 460px);
  mask-composite: intersect;
  -webkit-mask-composite: intersect;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: right top;
  -webkit-mask-position: right top;
  mask-size: 100%;
  -webkit-mask-size: 100%;
  position: absolute;
  top: 120px;
  right: -15%;
}
.bg_number::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  mix-blend-mode: screen;
  background-size: cover;
  background-image: var(--url-mesh-img);
  background-position: left bottom;
  opacity: 0.8;
}
@media screen and (max-width: 1260px) {
  .bg_number {
    width: 1200px;
  }
}
@media screen and (max-width: 760px) {
  .bg_number {
    width: 180%;
    mask-image: url("../img/embellishments/mask_circle.svg"),linear-gradient(transparent, rgba(0, 0, 0, 0.4), transparent calc(100% -45px - 15vw));
    -webkit-mask-image: url("../img/embellishments/mask_circle.svg"),linear-gradient(transparent, rgba(0, 0, 0, 0.4), transparent calc(100% -45px - 15vw));
    top: 80px;
    left: auto;
    right: -65%;
  }
}

/* ----------------------------- */
/* 
/* company 会社を知る
/* 
/* ----------------------------- */

/* .message
----------------------------- */
.message p:last-of-type {
  margin-bottom: 0;
}
.chief_director {
  width: fit-content;
  margin-left: auto;
  margin-top: 16px;
}
.chief_director p {
  font-size: 14px;
}
.chief_director img {
  height: 35px;
  width: auto;
}
.l-main__section.message .flex {
  align-items: flex-start;
}
.company_message_wrap {
  position: relative;
}
.company_message_wrap > img {
  position: absolute;
  height: 12.5%;
  width: auto;
  bottom: 9%;
}
.company_message_wrap > img:nth-of-type(1) {
  left: 9%;
}
.company_message_wrap > img:nth-of-type(2) {
  left: 38.5%;
}
@media screen and (max-width: 760px) {
  .chief_director {
    margin-top: 8px;
  }
  .chief_director p {
    font-size: 10px;
  }
  .chief_director img {
    height: 25px;
  }
}

/* .principle
----------------------------- */
.principle h3 {
  margin-bottom: 1.5em;
}
.principle h3 span {
  font-size: min(1.44em, 6.5vw);
}
.principle.l-main__section figure img {
  max-width: 600px;
  display: block;
  margin: auto;
}
@media screen and (max-width: 800px) and (min-width: 760.1px) {
  .principle h3 span {
    font-size: 4vw;
  }
}

/* .policy
----------------------------- */
.l-main__section.policy {
  overflow: hidden;
}
.bg_policy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg-blue);
  mask-image: linear-gradient(rgb(0,0,0) 30%, transparent);
  -webkit-mask-image: linear-gradient(rgb(0,0,0) 30%, transparent);
  opacity: 0.2;
}
.bg_policy::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  mix-blend-mode: screen;
  background-size: cover;
  background-image: var(--url-mesh-img);
  opacity: 0.8;
}

.policy_list {
}
.policy_list li {
  padding: 0.5em 0;
}
.policy_list p {
  margin-bottom: 0;
  font-weight: var(--font-medium);
  font-size: 16px;
}
.policy_list p span {
  background: var(--color-primary);
  color: var(--color-white);
  margin-right: 0.8em;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 14px;
}
@media screen and (max-width: 760px) {
  .policy_list li {
    padding: 0.3em 0;
  }
  .policy_list p {
    font-size: 14px;
  }
  .policy_list p span {
    font-size: 12px;
  }
}
@media screen and (max-width: 430px) {
  .policy_list p {
    font-size: 12px;
  }
  .policy_list p span {
    margin-right: 0.5em;
    padding: 3px 5px;
    font-size: 10px;
  }
}

/* .outline
----------------------------- */
.l-main__section.outline {
  background: #F0F0F0;
}
.outline_list {
  margin-bottom: 40px;
}
.outline_list > dl {
  padding: 12px 0;
}
.outline_list > dl > dt {
  background: var(--color-white);
  font-weight: var(--font-bold);
  border-radius: 4px;
  padding: 5px 8px;
  margin-bottom: 12px;
  font-size: 14px;
}
.outline_list > dl > dd {
  font-size: 16px;
  line-height: 1.6;
}
.outline_list > dl dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.outline_list > dl dl dt {
  width: 5em;
}
.outline_list > dl dl dd {
  margin-left: auto;
  width: calc(100% - 6em);
}
.map_area {
  height: 450px;
}
.map_area iframe{
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 760px) {
  .outline_list {
    margin-bottom: 20px;
  }
  .outline_list > dl {
    padding: 10px 0;
  }
  .outline_list > dl > dt {
    border-radius: 3px;
    padding: 3px 5px;
    margin-bottom: 5px;
    font-size: 12px;
  }
  .outline_list > dl > dd {
    font-size: 14px;
  }
  .outline_list > dl dl dd {
    width: calc(100% - 5.2em);
  }
  .map_area {
    height: 300px;
    max-height: 50vw;
  }
}

/* ----------------------------- */
/* 
/* business 仕事を知る
/* 
/* ----------------------------- */

/* .business_business
----------------------------- */
.business_list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.business_list_item:nth-child(even) {
  flex-direction: row-reverse;
}
.business_list h3 {
  padding-left: 0;
  width: fit-content;
}
.business_list h3::before {
  background: none;
  content: "";
  width: 36px;
  height: 36px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0.5px;
  left: 0;
  background-image: url(../img/icon_external_gy.svg);
  transition: 0.5s ease;
  pointer-events: none;
}
.business_list h3:hover:before {
  background-image: url(../img/icon_external_bl_wh.svg);
}
.business_list h3 a {
  padding-left: calc(30px + 0.6em);
  transition: 0.5s ease;
}
.business_list h3:hover a {
  color: var(--color-primary);
}
@media screen and (max-width: 1260px) {
  .business_list {
    gap: 60px;
  }
}
@media screen and (max-width: 760px) {
  .business_list {
    gap: 40px;
  }
  .business_list p {
    margin: 0;
  }
  .business_list h3::before {
    width: 30px;
    height: 30px;
    top: -2px;
  }
}

/* .business_sales_dept
----------------------------- */
.l-main__section.business_sales_dept {
  overflow: hidden;
}
.bg_bus_sales {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg-blue);
  mask-image: linear-gradient(rgb(0,0,0) 30%, transparent);
  -webkit-mask-image: linear-gradient(rgb(0,0,0) 30%, transparent);
  opacity: 0.2;
}
.bg_bus_sales::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  mix-blend-mode: screen;
  background-size: cover;
  background-size: min(200vw, cover);
  background-repeat: repeat;
  background-image: var(--url-mesh-img);
  opacity: 0.8;
}

.bus_sales_list {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-top: 80px;
}
.bus_sales_item {
  width: 100%;
  background: var(--color-primary-light);
  border-radius: 30px;
  position: relative;
  padding: 48px 40px;
}
.bus_sales_item::after {
  content: "";
  width: 30px;
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  bottom: -52px;
  background-image: url(../img/icon_anchor_link.svg);
}
.bus_sales_item:last-child:after {
  content: none;
}
.bus_sales_item.client {
  background: var(--color-white);
}
.bus_sales_item h4 {
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: var(--font-bold);
  padding: 15px 25px;
  width: max-content;
  border-radius: 40px;
  font-size: 16px;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  z-index: 30;
}
.bus_sales_item > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.bus_sales_item p {
  margin-bottom: 0;
}
.bus_sales_item > p {
  margin-bottom: 15px;
}
.bus_sales_item > div p {
  font-size: 14px;
}
@media screen and (max-width: 760px) {
  .bus_sales_list {
    gap: 80px;
    margin-top: 44px;
  }
  .bus_sales_item::after {
    width: 20px;
    height: 20px;
    bottom: -40px;
  }
  .bus_sales_item {
    padding: 42px 30px;
  }
  .bus_sales_item h4 {
    padding: 10px 20px;
    font-size: 14px;
    top: -18px;
  }
  .bus_sales_item > div p {
    font-size: 12px;
  }
}

/* .bus_sales_item の 中
----------------------------- */

/* .client_list */
.client_list {
  gap: 20px 30px;
}
.client_list > div {
  width: 21%;
  max-width: 170px;
}
.client_list p {
  text-align: center;
  font-weight: var(--font-medium);
  width: 80%;
  margin: 0.2em auto 0;
}

/* .hearing_list */
.hearing_list {
  gap: 10px;
}
.hearing_list > div {
  width: 22%;
  max-width: 190px;
}

/* .solution_list */
.solution_list {
  justify-content: space-between !important;
  gap: 16px 0;
}
.solution_list > div {
  width: 48%;
}
.solution_list > div:last-child {
  width: 100%;
}
.solution_list > div:last-child p {
  text-align: right;
}
.solution_list > div > div {
  width: 100%;
  background: var(--color-white);
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 12px;
  position: relative;
  min-height: 50px;
}
.solution_list > div > div img {
  width: 36px;
  position: absolute;
  top: 0;
  left: 12px;
}
.solution_list > div > div p {
  line-height: calc(50px - 24px);
  padding-left: calc(1em + 36px);
}

/* .delivery_list */
.delivery_list {
  gap: 30px;
}
.delivery_list > div {
  width: 20%;
  max-width: 160px;
}
.delivery_list figure.mask {
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 10px;
}
.delivery_list p {
  text-align: center;
  font-weight: var(--font-medium);
  width: 80%;
  margin: 0.2em auto 0;
}

/* .follow_up_list */
.follow_up_list {
  gap: 20px;
}
.follow_up_list > div {
  background: var(--color-white);
  width: 30%;
  max-width: 120px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  position: relative;
}
.follow_up_list p {
  display: block;
  width: 100%;
  text-align: center;
  line-height: normal;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

/* .embellishments */
.solution .embellishments {
  top: -160px;
  right: -70px;
  width: 200px;
  aspect-ratio: 1 / 1;
}
.follow_up .embellishments {
  top: -170px;
  left: -70px;
  width: 200px;
  aspect-ratio: 1 / 1;
}
.l-main__section.business_sales_dept {
  overflow: hidden;
}
@media screen and (max-width: 760px) {
  /* .client_list */
  .client_list > div {
    width: 40%;
    max-width: none;
  }

  /* .hearing_list */
  .hearing_list {
    gap: 12px 5px;
  }
  .hearing_list > div {
    width: 47%;
    max-width: none;
  }

  /* .solution_list */
  .solution_list > div {
    width: 100%;
  }
  .solution_list > div > div {
    padding: 10px;
    margin-bottom: 8px;
    min-height: 42px;
  }
  .solution_list > div > div img {
    width: 30px;
    left: 10px;
  }
  .solution_list > div > div p {
    line-height: calc(42px - 20px);
    padding-left: calc(1em + 30px);
  }

  /* .delivery_list */
  .delivery_list {
    gap: 10px 30px;
  }
  .delivery_list > div {
    width: 42%;
    max-width: none;
  }
  .delivery_list figure.mask {
    border-radius: 10px;
  }

  /* .follow_up_list */
  .follow_up_list {
    gap: 8px;
  }

  /* .embellishments */
  .solution .embellishments {
    top: -120px;
    right: -54px;
    width: 150px;
  }
  .follow_up .embellishments {
    top: -120px;
    left: -44px;
    width: 150px;
  }
}

/* .business_management_dept
----------------------------- */
.l-main__section.business_management_dept {
  overflow: hidden;
}
.bg_bus_management {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg-blue);
  mask-image: linear-gradient(rgb(0,0,0) 30%, transparent);
  -webkit-mask-image: linear-gradient(rgb(0,0,0) 30%, transparent);
  opacity: 0.2;
}
.bg_bus_management::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  mix-blend-mode: screen;
  background-size: cover;
  background-image: var(--url-mesh-img);
  opacity: 0.8;
}

.mng_list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px 0;
}
.mng_list_item {
  display: flex;
  flex-wrap: wrap;
  width: 32%;
  background: var(--color-white);
  padding: 20px;
  border: solid 5px var(--color-primary-light);
  border-radius: 10px;
  gap: 20px;
  flex-direction: column;
}
.mng_list_item > figure {
  width: 100%;
}
.mng_list figure.mask {
  aspect-ratio: 69 / 44;
}
.mng_list_item h4 {
  font-weight: var(--font-bold);
  font-size: 16px;
  margin-bottom: 0.5em;
}
.mng_list_item p {
  font-size: 14px;
  margin: 0;
}

@media screen and (max-width: 760px) {
  .mng_list {
    flex-direction: column;
  }
  .mng_list_item {
    width: 100%;
    flex-direction: row;
    padding: 15px;
  }
  .mng_list_item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .mng_list_item > figure {
    width: 100px;
  }
  .mng_list_item > div {
    width: calc(100% - 20px - 100px);
  }
  .mng_list figure.mask {
    width: 100px;
    height: 100px;
  }
  .mng_list_item h4 {
    font-size: 14px;
  }
  .mng_list_item p {
    font-size: 12px;
  }
}

/* ----------------------------- */
/* 
/* interview 社員を知る
/* 
/* ----------------------------- */

.interview_list_02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 10px;
}
.interview_list_02 .interview_item {
  width: 47.5%;
  margin: 0;
  padding: 0;
}
.interview_list_02 .interview_item figure {
  width: 100% !important;
}
.interview_list_02 .interview_title {
  font-weight: var(--font-bold);
  text-align: center;
  font-size: 18px;
  line-height: 1;
  margin: 30px auto 20px;
  width: fit-content;
  position: relative;
  padding-left: 1.5em;
}
.interview_list_02 .interview_title::before {
  content: "";
  height: 1px;
  width: 1em;
  background: var(--color-primary);
  position: absolute;
  left: 0;
  top: 0.5em;
}
@media screen and (max-width: 1260px) {
}
@media screen and (max-width: 760px) {
  .interview_list_02 .interview_item {
    width: 100%;
  }
  .interview_list_02 .interview_title {
    font-size: 16px;
    margin: 10px auto 8px;
  }
}

/* ----------------------------- */
/* 
/* interview 個別ページ
/* 
/* ----------------------------- */

h1.interview_title {
  font-size: 34px;
  margin-bottom: 0;
  position: relative;
}
h1.interview_title::before {
  content: "社員を知る";
  background: var(--color-text-dark);
  color: var(--color-white);
  font-size: 16px;
  font-weight: var(--font-bold);
  line-height: normal;
  border-radius: 5px;
  padding: 3px 14px;
  position: absolute;
  top: -34px;
  left: calc((100% + 300px)/2);
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
}
@media screen and (max-width: 1260px) {
  h1.interview_title::before {
    left: 50%;
  }
}
@media screen and (max-width: 760px) {
  h1.interview_title {
    font-size: 30px;
  }
  h1.interview_title::before {
    font-size: 14px;
    border-radius: 5px;
    padding: 3px 10px;
    top: -28px;
  }
}

/* .profile
----------------------------- */
.profile .wrap {
  padding-bottom: 40px;
}
.p-profile_card {
  background: var(--color-primary-light);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 0;
}
.p-profile_card > figure {
  width: 40%;
}
.p-profile_card > figure img {
  min-height: 100%;
  object-fit: cover;
}
.p-profile_card > div {
  padding: 25px 30px;
  width: 60%;
}
.p-profile_card > div p {
  margin-bottom: 0;
}
.profile_name_wrap {
  display: flex;
  gap: 13px;
  margin-bottom: 10px;
}
.profile_name_wrap img {
  height: 34px;
  width: auto;
}
.p-profile_card .profile_name {
  font-weight: var(--font-medium);
  font-size: 20px;
  padding-left: 3em;
  line-height: 24px;
  vertical-align: middle;
  position: relative;
}
.p-profile_card .profile_name span {
  font-size: 12px;
  color: var(--color-white);
  padding: 0 5px;
  line-height: 24px;
  border-radius: 5px;
  display: inline-block;
  background: var(--color-primary);
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 760px) {
  .profile .wrap {
    padding-bottom: 10px;
  }
  .p-profile_card {
    flex-direction: column;
  }
  .p-profile_card > figure {
    width: 100%;
  }
  .p-profile_card > div {
    padding: 15px 20px;
    width: 100%;
  }
  .profile_name_wrap img {
    height: 30px;
  }
  .p-profile_card .profile_name {
    font-size: 18px;
  }
  .p-profile_card .profile_name span {
    top: 2px;
  }
}

/* .interview_details
----------------------------- */
.l-main__section.interview_details {
  overflow: hidden;
}

.bg_interview_details {
  background: var(--color-bg-blue);
  width: 1500px;
  aspect-ratio: 1 / 1;
  mask-image: url("../img/embellishments/mask_circle.svg"),linear-gradient(transparent, rgba(0, 0, 0, 0.4), transparent calc(100% - 50vw));
  -webkit-mask-image: url("../img/embellishments/mask_circle.svg"),linear-gradient(transparent, rgba(0, 0, 0, 0.4), transparent calc(100% - 50vw));
  mask-composite: intersect;
  -webkit-mask-composite: intersect;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: right top;
  -webkit-mask-position: right top;
  mask-size: 100%;
  -webkit-mask-size: 100%;
  position: absolute;
  bottom: -50vw;
  right: -15%;
}
.bg_interview_details::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  mix-blend-mode: screen;
  background-size: cover;
  background-image: var(--url-mesh-img);
  background-position: left bottom;
  opacity: 0.8;
}
@media screen and (max-width: 1260px) {
  .bg_interview_details {
    width: 1200px;
  }
}
@media screen and (max-width: 760px) {
  .bg_interview_details {
    width: 180%;
    mask-image: url("../img/embellishments/mask_circle.svg"),linear-gradient(transparent, rgba(0, 0, 0, 0.4), transparent calc(100% - 100vw));
    -webkit-mask-image: url("../img/embellishments/mask_circle.svg"),linear-gradient(transparent, rgba(0, 0, 0, 0.4), transparent calc(100% - 100vw));
    bottom: -100vw;
    right: auto;
    left: -65%;
  }
}

.interview_details_item {
  margin-bottom: 80px;
  width: 680px;
}
.interview_details_item:nth-child(even) {
  margin-left: auto;
}
.interview_details_item:last-child {
  margin-bottom: 0;
}
.interview_details_item .question {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 15px;
  margin-bottom: 20px;
}
.interview_details_item .question img {
  height: 24px;
  width: auto;
}
.interview_details_item .question p {
  font-size: 20px;
  font-weight: var(--font-bold);
  margin: 0;
  line-height: 24px;
}
.interview_details_item .answer {
  margin-bottom: 15px;
}
.interview_details_item .answer:last-child {
  margin-bottom: 0;
}
.interview_details_item .answer_name {
  margin-bottom: 0;
  font-weight: var(--font-bold);
  font-size: 1.2em;
}
@media screen and (max-width: 1260px) {
  .interview_details_item {
   max-width: 85%;
  }
}
@media screen and (max-width: 760px) {
  .interview_details_item {
    margin-bottom: 40px;
    width: 100%;
    max-width: none;
  }
  .interview_details_item:nth-child(even) {
    margin-left: 0;
  }
  .interview_img figure {
    width: 100%;
  }
  .interview_details_item .question {
    gap: 10px;
    margin-bottom: 10px;
  }
  .interview_details_item .question img {
    height: 22px;
  }
  .interview_details_item .question p {
    font-size: 16px;
    line-height: 22px;
  }
}

/* schedule */
.interview_details_item .schedule img {
  height: 28px;
  width: auto;
}
.interview_details_item.interview_schedule {
  background: var(--color-primary-light);
  border-radius: 30px;
  padding: 25px 30px;
}
.interview_schedule dl {
  border-bottom: dashed 1px #aaaaaa;
  display: flex;
  gap: 18px;
  padding: 12px 0;
}
.interview_schedule dl:last-child {
  border: none;
}
.interview_schedule dl dt {
  width: 42px;
}
.interview_schedule dl dt,
.interview_schedule dl dd {
  font-size: 16px;
}
.interview_schedule .embellishments {
  bottom: 0;
  right: -50px;
  width: 220px;
  aspect-ratio: 1 / 1;
}
@media screen and (max-width: 760px) {
  .interview_details_item .question img {
    height: 24px;
  }
  .interview_details_item.interview_schedule {
    padding: 15px 20px;
    margin-bottom: 50px;
  }
  .interview_schedule dl {
    gap: 15px;
  }
  .interview_schedule dl:nth-last-child(1),
  .interview_schedule dl:nth-last-child(2) {
    padding-right: 110px;
  }
  .interview_schedule dl dt {
    width: 36px;
  }
  .interview_schedule dl dt,
  .interview_schedule dl dd {
    font-size: 14px;
  }
  .interview_schedule .embellishments {
    bottom: -20px;
    right: 4px;
    width: 160px;
  }
}

/* interview_nav */
.interview_nav nav {
  margin: 0 var(--margin-side-common) 0 calc(var(--margin-side-common) + 300px);
  border-top: solid 1px #DDDDDD;
  padding-top: 40px;
}
.interview_nav nav ul {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: calc(1400px - 300px - (var(--margin-side-common) * 2));
}

.interview_nav li {
  position: relative;
}
.interview_nav li::before {
  content: "";
  width: 34px;
  height: 34px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  transition: 0.5s ease;
}
.interview_nav li.prev::before {
  top: 0;
  left: 0;
  background-image: url(../img/icon_link_prev_bk_wh.svg);
}
.interview_nav li.next::before {
  top: 0;
  right: 0;
  background-image: url(../img/icon_link_bk_wh.svg);
}
.interview_nav li.index::before {
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  background-image: url(../img/interview/icon_index.svg);
  width: 28px;
  height: 28px;
}
.interview_nav li.prev:hover::before {
  background-image: url(../img/icon_link_prev_bl_wh.svg);
}
.interview_nav li.next:hover::before {
  background-image: url(../img/icon_link_bl_wh.svg);
}
.interview_nav li.index:hover:before {
  background-image: url(../img/interview/icon_index_bl.svg);
}

.interview_nav li a {
  font-size: 16px;
  line-height: 34px;
  transition: 0.5s ease;
}
.interview_nav li.index a {
  font-size: 12px;
  line-height: 1.5;
}
.interview_nav li.prev a {
  padding-left: 44px;
}
.interview_nav li.next a {
  padding-right: 44px;
}
.interview_nav li.index a {
  padding-top: 36px;
}
.interview_nav li a:hover {
  color: var(--color-primary);
}

@media screen and (max-width: 1260px) {
  .interview_nav nav {
    margin: 0 var(--margin-side-common);
  }
  .interview_nav nav ul {
    max-width: none;
  }
}
@media screen and (max-width: 760px) {
  .interview_nav nav {
    padding-top: 40px;
  }
  .interview_nav li::before {
    width: 30px;
    height: 30px;
  }
  .interview_nav li.index::before {
    width: 24px;
    height: 24px;
  }
  .interview_nav li a {
    font-size: 14px;
    line-height: 30px;
  }
  .interview_nav li.prev a {
    padding-left: 40px;
  }
  .interview_nav li.next a {
    padding-right: 40px;
  }
  .interview_nav li.index a {
    font-size: 10px;
    padding-top: 30px;
  }
}

/* .recommend
----------------------------- */
.recommend_content {
  background: #F0F0F0;
  border-radius: 30px;
  padding: 20px;
  position: relative;
}
.recommend_content::before {
  content: "";
  width: 100%;
  height: 60px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  background-image: url(../img/embellishments/txt_recommend.svg);
  transition: 0.5s ease;
  top: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
}
.recommend_content .list_title {
  position: relative;
  z-index: 20;
}
.recommend_content .list_title p {
  font-weight: var(--font-medium);
  letter-spacing: 0.05em;
  text-align: center;
  line-height: normal;
}
.recommend_content .list_title p:nth-child(1) {
  font-size: 12px;
}
.recommend_content .list_title p:nth-child(2) {
  font-size: 18px;
}
.recommend_content .business_job_ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.recommend_content .business_job_ul li {
  width: 32%;
  border: none;
  border-right: solid 1px rgba(170, 170, 170, 0.5);
}
.recommend_content .business_job_ul li a {
  padding-right: calc(2em + 30px);
}
.recommend_content .business_job_ul li:last-child {
  border-right: none;
}
.recommend_content .business_job_ul li::before {
  background-image: url(../img/icon_link_wh_bk.svg);
}
.recommend_content .business_job_ul li:hover::before {
  background-image: url(../img/icon_link_bl_wh.svg);
}
@media screen and (max-width: 900px) and (min-width: 760.1px) {
  .recommend_content .business_job_ul li {
    width: fit-content;
  }
}
@media screen and (max-width: 760px) {
  .recommend_content::before {
    height: 50px;
  }
  .recommend_content .list_title p:nth-child(1) {
    font-size: 10px;
  }
  .recommend_content .list_title p:nth-child(2) {
    font-size: 16px;
  }
  .recommend_content .business_job_ul {
    flex-direction: column;
  }
  .recommend_content .business_job_ul li {
    width: 100%;
    border: none;
    border-bottom: solid 1px rgba(170, 170, 170, 0.5);
  }
  .recommend_content .business_job_ul li:last-child {
    border-bottom: none;
  }
  .recommend_content .business_job_ul li a {
    font-size: 14px;
  }
}


/* ----------------------------- */
/* 
/* environment 働く環境を知る
/* 
/* ----------------------------- */

/* .benefit
----------------------------- */
.benefit_list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 60px 0;
  justify-content: space-between;
}
.benefit_item {
  width: 47%;
}
.benefit_item h3 {
  margin-bottom: 10px;
}
.benefit_item p {
  margin-bottom: 0;
}
@media screen and (max-width: 760px) {
  .benefit_list {
    flex-direction: column;
    gap: 30px 0;
  }
  .benefit_item {
    width: 100%;
  }
}

/* .evaluation_career
----------------------------- */
.l-main__section.evaluation_career {
  overflow: hidden;
}

.bg_evaluation_career {
  background: var(--color-bg-blue);
  width: 80%;
  max-width: 1200px;
  aspect-ratio: 1 / 1;
  mask-image: url("../img/embellishments/mask_circle.svg"),linear-gradient(transparent, rgba(0, 0, 0, 0.3), transparent 95%);
  -webkit-mask-image: url("../img/embellishments/mask_circle.svg"),linear-gradient(transparent, rgba(0, 0, 0, 0.3), transparent 95%);
  mask-composite: intersect;
  -webkit-mask-composite: intersect;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: right top;
  -webkit-mask-position: right top;
  mask-size: 100%;
  -webkit-mask-size: 100%;
  position: absolute;
  top: 70px;
  left: -5%;
}
.bg_evaluation_career::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  mix-blend-mode: screen;
  background-size: cover;
  background-image: var(--url-mesh-img);
  background-position: left bottom;
  opacity: 0.8;
}
@media screen and (max-width: 1260px) {
  .bg_evaluation_career {
    max-width: none;
    left: -15%;
  }
}
@media screen and (max-width: 760px) {
  .bg_evaluation_career {
    width: 180%;
    mask-image: url("../img/embellishments/mask_circle.svg"),linear-gradient(transparent, rgba(0, 0, 0, 0.4), transparent 80%);
    -webkit-mask-image: url("../img/embellishments/mask_circle.svg"),linear-gradient(transparent, rgba(0, 0, 0, 0.4), transparent 80%);
    top: 65px;
    left: auto;
    right: -65%;
  }
}

.evaluation_career_item {
  margin-bottom: 60px;
}
.evaluation_career_item:last-child {
  margin-bottom: 0;
}
.evaluation_career figure {
  max-width: 600px;
  display: block;
  margin: auto;
}
.evaluation_career_flex {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 60px 0;
  justify-content: space-between;
}
.evaluation_career_flex > div {
  width: 47%;
}
div:has(+ .team_grp) p {
  margin-bottom: 0;
}
.team_grp {
  background: var(--color-white);
  border-radius: 30px;
  border: solid 5px #F0F0F0;
  padding: 20px;
  display: flex;
  justify-content: center;
  gap: 0 30px;
}
.team_grp img {
  height: 60px;
  width: auto;
  margin: auto 0;
}
.team_grp > div {
  margin: auto 0;
}
.team_grp p {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}
.team_grp p.dept {
  font-weight: var(--font-bold);
}
.team_grp p:nth-child(2) {
  margin-bottom: 0.5em;
}
@media screen and (max-width: 760px) {
  .evaluation_career_item {
    margin-bottom: 30px;
  }
  .evaluation_career_flex {
    flex-direction: column;
    gap: 30px 0;
  }
  .evaluation_career_flex > div {
    width: 100%;
  }
  .team_grp {
    gap: 0 20px;
  }
  .team_grp img {
    height: 40px;
  }
  .team_grp p {
    font-size: 12px;
  }
}

/* .env_questionnaire
----------------------------- */
.l-main__section.env_questionnaire {
  overflow: hidden;
}

.bg_env_questionnaire {
  background: var(--color-bg-blue);
  width: 80%;
  max-width: 1200px;
  aspect-ratio: 1 / 1;
  mask-image: url("../img/embellishments/mask_circle.svg"),linear-gradient(transparent, rgba(0, 0, 0, 0.4), transparent 60%);
  -webkit-mask-image: url("../img/embellishments/mask_circle.svg"),linear-gradient(transparent, rgba(0, 0, 0, 0.4), transparent 60%);
  mask-composite: intersect;
  -webkit-mask-composite: intersect;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: right top;
  -webkit-mask-position: right top;
  mask-size: 100%;
  -webkit-mask-size: 100%;
  position: absolute;
  top: 100px;
  right: -15%;
}
.bg_env_questionnaire::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  mix-blend-mode: screen;
  background-size: cover;
  background-image: var(--url-mesh-img);
  background-position: left bottom;
  opacity: 0.8;
}
@media screen and (max-width: 1260px) {
  .bg_env_questionnaire {
    max-width: none;
    mask-image: url("../img/embellishments/mask_circle.svg"),linear-gradient(transparent, rgba(0, 0, 0, 0.5), transparent 80%);
    -webkit-mask-image: url("../img/embellishments/mask_circle.svg"),linear-gradient(transparent, rgba(0, 0, 0, 0.5), transparent 80%);
  }
}
@media screen and (max-width: 760px) {
  .bg_env_questionnaire {
    width: 180%;
    top: auto;
    bottom: -10%;
    right: -65%;
  }
}
  
.questionnaire_cards .question_card,
.questionnaire_cards .answer_card {
  aspect-ratio: 259 / 125;
}

/* .question_card */
.env_questionnaire .question_card {
  box-sizing: border-box;
  border: solid 5px var(--color-primary-light);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  box-sizing: border-box;
}
.question_card > div {
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 10px;
}
.question_card .question_title {
  display: flex;
  justify-content: center;
  gap: max(1.9vw , 9px);
}
.question_card .question_title p {
  margin: 0;
  font-weight: var(--font-bold);
  font-size: min(2vw, 30px);
  line-height: min(2.2vw, 36px);
}
.question_card .question_title img {
  height: min(2.2vw, 36px);
  width: auto;
}

/* .answer_card */
.env_questionnaire .answer_card {
  box-sizing: border-box;
  background: var(--color-primary-light);
  border-radius: 30px;
  border: solid 5px var(--color-primary-light);
  box-sizing: border-box;
}

@media screen and (max-width: 1260px) {
  .question_card > div {
    gap: max(6vw , 30px);
  }
  .question_card .question_title p {
    font-size: max(3.8vw , 18px);
    line-height: max(4vw , 22px);
  }
  .question_card .question_title img {
    height: max(4vw , 22px);
  }
}
@media screen and (max-width: 760px) {
  .question_card .question_title p {
    font-size: max(3.8vw , 18px);
    line-height: max(4vw , 22px);
  }
  .question_card .question_title img {
    height: max(4vw , 22px);
  }
  .questionnaire_cards .question_card,
  .questionnaire_cards .answer_card {
    aspect-ratio: 69 / 100;;
    width: 100%;
  }
}

/* .slick-slider */
.env_questionnaire .slick-dotted.slick-slider {
  margin-bottom: 40px;
}

/* .questionnaire_nav */
.questionnaire_nav {
  position: relative;
  height: 40px;
}
/* .dots_wrap */
.env_questionnaire ul.dots_wrap  {
  display: flex;
  gap: 5px;
  justify-content: center;
  width: fit-content;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  padding: calc((34px - 13px)/2) 0;
  z-index: 10;
}
.env_questionnaire .dots_wrap li {
  margin: 0;
}
.env_questionnaire .dots_wrap li button {
  max-width: none;
  margin: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #ddd;
  font-size: 0;
  color: transparent;
}
.env_questionnaire .dots_wrap li.slick-active button {
  background: var(--color-primary);
}
.env_questionnaire .dots_wrap li button::before {
  content: none;
}

/* .arrows_area */
.questionnaire_nav ul.arrows_area {
  display: flex;
  justify-content: space-between;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.arrows_area li {
  position: relative;
  cursor: pointer;
  font-size: 16px;
  line-height: 34px;
  color: var(--color-text-dark);
  border-radius: 0;
  transition: 0.5s ease;
}
.arrows_area li.prev  {
  padding-left: 44px;
}
.arrows_area li.next  {
  padding-right: 44px;
}
.arrows_area li:hover {
  color: var(--color-primary);
}
.arrows_area li::before {
  content: "";
  width: 34px;
  height: 34px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  transition: 0.5s ease;
}
.arrows_area li.prev::before {
  left: 0;
  background-image: url(../img/icon_link_prev_bk_wh.svg);
}
.arrows_area li.next::before {
  right: 0;
  background-image: url(../img/icon_link_bk_wh.svg);
}
.arrows_area li.prev:hover::before {
  background-image: url(../img/icon_link_prev_bl_wh.svg);
}
.arrows_area li.next:hover::before {
  background-image: url(../img/icon_link_bl_wh.svg);
}

@media screen and (max-width: 760px) {
  /* .slick-slider */
  .env_questionnaire .slick-dotted.slick-slider {
    margin-bottom: 20px;
  }

  /* .questionnaire_nav */
  .arrows_area li {
    font-size: 14px;
    line-height: 30px;
  }
  .arrows_area li.prev  {
    padding-left: 40px;
  }
  .arrows_area li.next  {
    padding-right: 40px;
  }
  .arrows_area li::before {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 560px) {
  /* .dots_wrap */
  .env_questionnaire ul.dots_wrap  {
    gap: 3px;
    padding: calc((30px - 8px)/2) 0;
  }
  .env_questionnaire .dots_wrap li button {
    width: 8px;
    height: 8px;
  }
}
@media screen and (max-width: 374px) {
  .questionnaire_nav ul.arrows_area {
    top: 32px;
  }
}


/* ----------------------------- */
/* 
/* numbers 数字で見る
/* 
/* ----------------------------- */
h1 span:has(.numbers_date) {
  position: relative;
  color: var(--color-text-dark);
}
h1 span.numbers_date {
  font-size: 14px;
  text-align: center;
  margin-bottom: 0;
  font-weight: var(--font-regular);
  color: var(--color-text-dark);
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  padding-top: 10px;
}
@media screen and (max-width: 760px) {
  h1 span.numbers_date {
    font-size: 10px;
    padding-top: 5px;
  }
}

/* numbers_data */
.numbers_flex {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px 0;
}
.numbers_flex_01 {
  margin-bottom: 20px;
}
.numbers_flex_01 > * {
  width: calc(50% - 10px);
}
.numbers_flex_02 > * {
  width: calc(50% - 10px);
}
.numbers_flex_03 > * {
  width: calc(33.3% - 13.4px);
}
.numbers_item {
  background: var(--color-primary-light);
  border-radius: 30px;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  gap: 13px 0;
}
.numbers_item p.label {
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 16px;
  font-weight: var(--font-medium);
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  line-height: normal;
  padding: 2px 10px;
  border-radius: 20px;
}
.numbers_item .icon {
  height: 60px;
}
.numbers_item p.number {
  font-size: 18px;
  font-weight: var(--font-bold);
  line-height: 34px;
  text-align: center;
  margin-bottom: 0;
}
.numbers_item p.number > span {
  font-size: 36px;
}

/* 調整 */
.numbers_data p.mb_30 { 
  margin-bottom: 30px !important;
}
.numbers_data .w160 {
  width: 160px;
}
.numbers_data .w86 {
  width: 86px;
}
.numbers_data .w90pct {
  width: 90%;
  display: block;
  margin: 0 auto;
}
.numbers_data .ratio_gender_flex,
.numbers_data .ratio_job_flex {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.numbers_data .ratio_gender_flex {
  gap: 25px;
}
.numbers_data .ratio_job_flex {
  gap: 13px;
  margin: auto 0;
}
.numbers_data .overlap {
  position: relative;
  aspect-ratio: 1 / 1;
}
.numbers_data .overlap > * {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

@media screen and (max-width: 760px) {
  .numbers_flex_01 {
    flex-direction: column;
  }
  .numbers_flex_01 > * {
    width: 100%;
  }
  .numbers_flex_03 > * {
    width: calc(50% - 10px);
  }
  .numbers_item {
    padding: 20px 13px;
    gap: 11.5px 0;
  }
  .numbers_item p.label {
    font-size: 14px;
    padding: 1.5px 10px;
  }
  .numbers_item .icon {
    height: 50px;
  }
  .numbers_item p.number {
    font-size: 16px;
    line-height: 30px;
  }
  .numbers_item p.number > span {
    font-size: 32px;
  }
}

/* ----------------------------- */
/* 
/* faq よくある質問
/* 
/* ----------------------------- */

.accordion .accordion-item {
  border-bottom: 1px solid #ddd;
}
.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #1465F9;
}
.accordion button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 1.5em 0;
  background: none;
  border-radius: 0;
}
.accordion button:hover, .accordion button:focus {
  cursor: pointer;
  color: #1465F9;
}
.accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  color: #03b5d2;
  border: 1px solid #1465F9;
}
.accordion button::before {
  position: relative;
  top: auto;
  right: auto;
  transform: rotate(90deg);
}
.accordion button[aria-expanded='true']::before {
  transform: rotate(-90deg);
}
.accordion button .accordion-title {

}
.accordion button[aria-expanded='true'] {
  color: #1465F9;
}
.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}
.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  height: 100%;
  transition: opacity 0.3s;
}
.accordion .accordion-content {
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s;
}
.accordion .accordion-content > div {
  padding: 1em 1em 2em;
}
.accordion .accordion-content > div h3 {
  font-size: 1.125em;
}
.accordion .accordion-content > div p + h3 {
  margin-top: 1em;
}

@media screen and (max-width: 760px) {
  .accordion button,
  .accordion .accordion-content {
    font-size: 14px;
  }
}

