@charset "UTF-8";
/*reset css*/
body, h1, h2, h3, h4, p, ul, ol, li, a, dl, dt, dd, table, tr, th, td, span, figcaption {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  line-height: 1;
  outline: none;
  box-sizing: border-box;
  color: #333333;
  font-weight: 500;
}

button, input, select, textarea {
  background-color: unset;
  border: none;
  outline: none;
  -webkit-appearance: none;
}

div, section, article, figure, picture {
  box-sizing: border-box;
  margin: 0;
  display: block;
  padding: 0;
}

/*common*/
html, body {
  font-size: 62.5%;
  color: #333333;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}
button {
  font-family: "Noto Sans JP", sans-serif;
}

a {
  transition: all 0.2s;
}

a:hover {
  opacity: 0.7;
}

img, svg, video {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

main {
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 768px) {
  .is_sp {
    display: none;
  }
  html, body {
    font-size: 0.5208333333vw;
  }
}
@media screen and (max-width: 767px) {
  html, body {
    font-size: 2.6666666667vw;
  }
  .is_pc {
    display: none;
  }
  .is_sp {
    display: block;
  }
}
/* common text size */
/* p{
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.02em;
}
span{
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.02em;
}
h2{
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}
.lead{
  font-size: 2.4rem;
  letter-spacing: 0.02em;
}
.txt{
  font-size: 1.8rem;
  letter-spacing: 0.02em;
} *

/* common animation ///////////////////////////////////////////////*/
.js-focus {
  filter: blur(24px);
  transform: scale(1.25);
  opacity: 0;
  transition-duration: 1.5s;
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.focus-in {
  filter: blur(0px);
  transform: scale(1);
  opacity: 1;
}

@keyframes focus-in {
  0% {
    filter: blur(24px);
    transform: scale(1.25);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    transform: scale(1);
    opacity: 1;
  }
}
.js_fade_u {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.5, 1, 0.89, 1), transform 1s cubic-bezier(0.36, 0.46, 0, 1.01);
}

.fade_in {
  opacity: 1;
  transform: translate(0);
}

@keyframes anm_coin {
  0% {
    transform: rotateY(-450deg);
    opacity: 0;
  }
  100% {
    transform: rotateY(0deg);
    opacity: 1;
  }
}
/* txt overflow animation */
/* js-m-txt wrapping to maskElem */
.js-m-txt {
  overflow: auto;
}

.js-m-txt .maskElem-y {
  transform: translateY(120%);
  display: block;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

.js-m-txt .maskElem-x {
  transform: translateX(-120%);
  display: block;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

@keyframes mask {
  100% {
    transform: translate(0);
  }
}
.mask.animated .maskElement-y,
.mask.animated .maskElement-x {
  animation: mask cubic-bezier(0.86, 0, 0.07, 1) forwards;
  animation-duration: 1.5s;
  overflow: hidden;
}

/* images overflow animation */
.js-m-img {
  clip-path: inset(0 100% 0 0);
  /* display: inline-block; */
  transition: 1.5s 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  transition-property: clip-path;
}

.js-m-img.center {
  clip-path: inset(0 100% 100% 0);
}

.js-m-img.animated {
  clip-path: inset(0);
}

.js-clip-animation-u {
  clip-path: inset(100% 0 0 0);
  /* display: inline-block; */
  transition: 1.5s 0.2s cubic-bezier(0.1, 0.37, 0.09, 1);
  transition-property: clip-path;
}

.clip-in {
  clip-path: inset(0);
}

.js-zoom {
  transition-duration: 0.8s;
  transform: scale(0);
}
.js-zoom.zoom-in {
  transform: scale(1);
}

/* /////////////////////////////////////////////// */
.js_maskAnimation,
.js_bgMaskAnimation {
  display: block;
  position: relative;
  overflow: hidden;
}
.js_maskAnimation .js_maskAnimation_elem,
.js_bgMaskAnimation .js_maskAnimation_elem {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.js_maskAnimation .js_maskAnimation_txt,
.js_bgMaskAnimation .js_maskAnimation_txt {
  font-size: inherit;
  color: inherit;
  letter-spacing: inherit;
}

.errorPage {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 16rem 0 26rem;
  width: 100vw;
  text-align: center;
}
.errorPage h1 {
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 3.2rem;
  line-height: 2;
}
.errorPage p {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 3.2rem;
}
.errorPage a {
  text-align: center;
  text-decoration: underline;
  font-size: 1.8rem;
  text-align: center;
}

@media (max-width: 767px) {
  #cursor {
    display: none;
  }
}

@media (min-width: 768px) {
  body {
    position: relative;
  }
  /* ポインター */
  #cursor {
    border: 1px solid #B0D0FF;
    position: fixed;
    width: 7.6rem;
    height: 7.6rem;
    border-radius: 100%;
    margin: -3.8rem 0 0 -3.8rem;
    pointer-events: none;
    transition: transform 0.3s;
    opacity: 0;
    z-index: 10000;
    animation: loop 3s linear infinite;
    transform-origin: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    transition-timing-function: ease-out;
    transform: scale(0.7);
  }
  #cursor .cursor_bg {
    width: 8rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(0, 178, 255, 0.5);
    filter: blur(3.5px);
    z-index: -1;
    border-radius: 60%;
  }
  #cursor span {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 60%;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  #cursor::before {
    content: "";
    width: 100%;
    height: 100%;
    border: 1px solid #B0D0FF;
    border-radius: 60%;
    background: transparent;
    opacity: 0;
  }
  #cursor.active {
    transform: scale(1);
    animation: loop2 2s linear infinite 0.5s;
    opacity: 1;
  }
  #cursor.active::before {
    animation: hamon 1s linear infinite 0s;
  }
  #cursor.active span {
    opacity: 1;
  }
  @keyframes loop {
    0% {
      transform: scale(0.7);
    }
    50% {
      transform: scale(1);
    }
    100% {
      transform: scale(0.7);
    }
  }
  @keyframes hamon {
    0% {
      transform: scale(1);
      opacity: 0;
    }
    15% {
      opacity: 1;
    }
    100% {
      transform: scale(1.5);
    }
  }
}
.l_inner {
  width: 120rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .l_inner {
    width: auto;
    padding: 0 1.6rem;
  }
}

.l_main {
  min-height: 100vh;
  padding-bottom: 34rem;
}
@media (max-width: 767px) {
  .l_main {
    padding-bottom: 15rem;
  }
}

@font-face {
  font-family: "A1 Mincho Std Bold";
  src: url("../font/A-OTF-A1MinchoStd-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}
.u_ff_en {
  font-family: "Philosopher", sans-serif;
  font-style: normal;
  font-weight: 400;
}

.u_ff_h {
  font-family: "A1 Mincho Std Bold", serif;
}

.u_ff_szk {
  font-family: "tot-shizukardmin-stdn", sans-serif;
}

.u_colW {
  color: #fff;
}

.u_colB {
  color: #002b6a;
}

.u_colG {
  color: #282828;
}

.u_col000 {
  color: #000000;
}

.u_col_r {
  color: #c80524;
}

.u_col_r2 {
  color: #c90221;
}

.u_col_g2 {
  color: #7c7c7c;
}

.u_bg_b {
  background: #002b6a;
}

.u_bg_r {
  background: #ef0820;
}

.u_bg_r2 {
  background: #c90221;
}

.u_bg_w {
  background: #fff;
}

.u_bg000 {
  background: #000000;
}

.u_bg_g {
  background: #f6f6f6;
}

.u_bg_g2 {
  background: #e5e5e5;
}

.u_bg_grd_r {
  background: linear-gradient(90deg, #C80321 0%, #CD1950 100%);
}

.u_tac {
  text-align: center;
}

.u_tal {
  text-align: left;
}

.u_tar {
  text-align: right;
}

.u_fwb {
  font-weight: bold;
}

.u_f20_16 {
  font-size: 2rem;
  line-height: 1.333;
}
@media (max-width: 767px) {
  .u_f20_16 {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}

.u_f18_16 {
  font-size: 1.8rem;
  line-height: 1.333;
}
@media (max-width: 767px) {
  .u_f18_16 {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}

.u_f18_14 {
  font-size: 1.8rem;
  line-height: 1.333;
}
@media (max-width: 767px) {
  .u_f18_14 {
    font-size: 1.4rem;
    line-height: 1.75;
  }
}

.u_f18_12 {
  font-size: 1.8rem;
  line-height: 1.333;
}
@media (max-width: 767px) {
  .u_f18_12 {
    font-size: 1.2rem;
    line-height: 1.75;
  }
}

.u_f16_14 {
  font-size: 1.8rem;
  line-height: 2;
}
@media (max-width: 767px) {
  .u_f16_14 {
    font-size: 1.4rem;
  }
}

.u_f16_12 {
  font-size: 1.6rem;
  line-height: 2;
}
@media (max-width: 767px) {
  .u_f16_12 {
    font-size: 1.2rem;
  }
}

.u_f24_20 {
  font-size: 2.4rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .u_f24_20 {
    font-size: 2rem;
  }
}

.u_f24_18 {
  font-size: 2.4rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .u_f24_18 {
    font-size: 1.8rem;
  }
}

.u_f24_16 {
  font-size: 2.4rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .u_f24_16 {
    font-size: 1.6rem;
  }
}

.u_f24_14 {
  font-size: 2.4rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .u_f24_14 {
    font-size: 1.4rem;
  }
}

.u_f28_22 {
  font-size: 2.8rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .u_f28_22 {
    font-size: 2.2rem;
  }
}

.u_f28_20 {
  font-size: 2.8rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .u_f28_20 {
    font-size: 2rem;
  }
}

.u_lh2 {
  line-height: 2;
}
@media (max-width: 767px) {
  .u_lh2 {
    line-height: 1.75;
  }
}

.u_linkTxt {
  font-weight: inherit;
  color: #2b57c6;
  text-decoration: underline;
  text-underline-offset: 0.8rem; /* 下線の位置を下にずらす */
}
.u_ls_05 {
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}

.u_ls_05_1 {
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .u_ls_05_1 {
    letter-spacing: 0.1em;
  }
}

@media (max-width: 767px) {
  .u_ls_0_05 {
    letter-spacing: 0.05em;
    font-feature-settings: "palt";
  }
}

.u_ls_04 {
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}

.c_header {
  position: fixed;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  height: auto;
  box-sizing: border-box;
}
.c_header.is_active .c_header_inner {
  background: #f6f6f6;
}
.c_header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 1.5rem 2rem 2.4rem;
  position: relative;
  transition-duration: 0.3s;
}
@media (max-width: 767px) {
  .c_header_inner {
    padding: 1.8rem 1.5rem 1.8rem;
  }
}
.c_header_lBlk {
  display: flex;
  align-items: flex-end;
  gap: 0 2.6rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .c_header_lBlk {
    position: relative;
    gap: 0 1.2rem;
    z-index: 0;
  }
}
.c_header_logo {
  width: 24.6rem;
  display: block;
}
@media (max-width: 767px) {
  .c_header_logo {
    width: 12rem;
  }
}
.c_header_lead {
  font-size: 2rem;
  line-height: 0.7;
}
@media (max-width: 767px) {
  .c_header_lead {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .c_header_menus {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    padding: 11rem 2.5rem 5rem 4rem;
    opacity: 0;
    visibility: hidden;
    background: #002b6a;
    overflow-y: auto;
  }
}
.c_header_menu {
  display: flex;
  align-items: center;
  gap: 0 4rem;
}
@media (max-width: 767px) {
  .c_header_menu {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2.2rem 0;
    height: auto;
  }
}
.c_header_menu_item {
  font-size: 1.8rem;
  font-weight: 500;
}
.c_header_menu_item > a, .c_header_menu_item > span {
  display: inline-block;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .c_header_menu_item {
    font-size: 1.6rem;
    line-height: 1.25;
    width: 100%;
  }
  .c_header_menu_item > a, .c_header_menu_item > span {
    color: #fff;
  }
}
@media (min-width: 768px) {
  .c_header_menu_item:hover .c_header_megaMenu {
    opacity: 1;
    visibility: visible;
  }
}
.c_header_menu_btnUnit {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
@media (max-width: 767px) {
  .c_header_menu_btnUnit {
    display: block;
    margin-top: 0;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .c_header_menu_btnWrapper:hover .c_header_megaMenu {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 767px) {
  .c_header_menu_btnWrapper + .c_header_menu_btnWrapper {
    margin-top: 2.2rem;
  }
}
@media (min-width: 768px) {
  .c_header_menu_btn {
    width: 15rem;
    height: 5.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2.75rem;
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
  }
}
@media (max-width: 767px) {
  .c_header_menu_btn {
    font-size: 1.8rem;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.25;
    background: transparent;
  }
  .c_header_menu_btn > a {
    display: inline-block;
    position: relative;
    z-index: 2;
  }
  .c_header_menu_btn > a {
    color: #fff;
  }
}
.c_header_menu_btn.u_ff_en {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .c_header_menu_btn.u_ff_en {
    font-size: 1.8rem;
  }
}
.c_header_megaMenu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 45rem;
  background: #ffffff;
  padding: 16rem 0 0;
  opacity: 0;
  visibility: hidden;
  transition-duration: 0.3s;
}
@media (max-width: 767px) {
  .c_header_megaMenu {
    display: block;
    position: static;
    height: auto;
    padding: 2rem 0 0;
    opacity: 1;
    visibility: visible;
    background: transparent;
    transition-duration: 0s;
  }
}
.c_header_megaMenu_inner {
  display: flex;
  gap: 0 6.8rem;
}
@media (max-width: 767px) {
  .c_header_megaMenu_inner {
    display: block;
    padding-left: 1.2rem;
    padding-right: 0;
  }
}
.c_header_megaMenu_img {
  width: 42rem;
  flex: 0 0 42rem;
  border-radius: 1rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .c_header_megaMenu_img {
    display: none;
  }
}
.c_header_megaMenu_ttl {
  font-size: 3.8rem;
}
@media (max-width: 767px) {
  .c_header_megaMenu_ttl {
    display: none;
  }
}
.c_header_megaMenu_list {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .c_header_megaMenu_list {
    margin-top: 0;
  }
}
.c_header_megaMenu_list > a {
  display: flex;
  padding: 1.1rem 0;
  border-bottom: 1px solid #dbdbdb;
  font-size: 2rem;
  align-items: center;
}
@media (max-width: 767px) {
  .c_header_megaMenu_list > a {
    font-size: 1.4rem;
    line-height: 1.25;
    padding: 0;
    border: unset;
    color: #c2c2c2;
    width: -moz-fit-content;
    width: fit-content;
  }
  .c_header_megaMenu_list > a:not(:first-of-type) {
    margin-top: 2.4rem;
  }
}
.c_header_megaMenu_list > a span {
  transition-duration: 0.3s;
  width: 3.5rem;
  height: 3.5rem;
  background: #002b6a;
  border-radius: 60%;
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .c_header_megaMenu_list > a span {
    display: none;
  }
}
.c_header_megaMenu_list > a span::before {
  content: "+";
}
@media (min-width: 768px) {
  .c_header_megaMenu_list.__ly1 > a {
    width: 45.5rem;
    justify-content: space-between;
  }
  .c_header_megaMenu_list.__ly2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem 4rem;
    width: 80rem;
  }
  .c_header_megaMenu_list.__ly2 > a {
    width: auto;
    min-width: 14.2rem;
    gap: 0 1.8rem;
  }
  .c_header_megaMenu_list.__ly2 > a span {
    margin-left: auto;
    margin-right: 0;
  }
  .c_header_megaMenu_list.__ly3 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 3.4rem;
  }
  .c_header_megaMenu_list.__ly3 > a {
    width: 33rem;
    justify-content: space-between;
  }
}
.c_header_megaMenu_row {
  padding-top: 2rem;
}
@media (max-width: 767px) {
  .c_header_megaMenu_row {
    padding-top: 0;
  }
}
.c_header_humb {
  position: relative;
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  background: #002b6a;
  z-index: 3;
  box-sizing: border-box;
  cursor: pointer;
  transition-duration: 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0.5rem;
  right: 0.5rem;
}
@media (min-width: 768px) {
  .c_header_humb {
    display: none;
  }
}
.c_header_humb_box {
  width: 1.6rem;
  height: 1.5rem;
  position: relative;
}
.c_header_humb_el {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: all 400ms;
  z-index: 300;
}
.c_header_humb_el:nth-of-type(1) {
  top: 2%;
}
.c_header_humb_el:nth-of-type(2) {
  top: 40%;
}
.c_header_humb_el:nth-of-type(3) {
  top: 80%;
}
.c_header_humb.is_open {
  background: #fff;
}
.c_header_humb.is_open .c_header_humb_el {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  top: 40%;
  background: #002b6a;
}
.c_header_humb.is_open .c_header_humb_el:nth-of-type(2) {
  display: none;
}
.c_header_humb.is_open .c_header_humb_el:nth-of-type(3) {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
@media (max-width: 767px) {
  .c_header .js_mm_trg {
    width: -moz-fit-content;
    width: fit-content;
    position: static;
    display: block;
  }
}
.c_header .js_mm_trg_el {
  position: absolute;
  right: 4rem;
  width: 1.2rem;
  height: 1.2rem;
  display: inline-block;
}
@media (min-width: 768px) {
  .c_header .js_mm_trg_el {
    display: none;
  }
}
.c_header .js_mm_trg_el::before, .c_header .js_mm_trg_el::after {
  content: "";
  position: absolute;
  background-color: #fff;
  transition: transform 0.3s ease;
}
.c_header .js_mm_trg_el::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.2rem;
  transform: translateY(-50%);
}
.c_header .js_mm_trg_el::after {
  top: 0;
  left: 50%;
  width: 0.2rem;
  height: 100%;
  transform: translateX(-50%);
}
.c_header .js_mm_trg.is_active .js_mm_trg_el::after {
  transform: translateX(-50%) rotate(90deg);
}

.c_footer {
  margin-top: 34rem;
  padding-bottom: 13rem;
  position: relative;
  z-index: 5;
  background: linear-gradient(90deg, #C80321 0%, #CD1950 100%);
}
@media (max-width: 767px) {
  .c_footer {
    background: linear-gradient(90deg, #C80321 0%, #CD1950 100%);
    margin-top: 18rem;
    padding-bottom: 2.4rem;
  }
}
.c_footer::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: calc(100% + 11rem);
  background: url(../images/footer_bg.png) no-repeat top center/cover;
  position: absolute;
  top: -33rem;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 767px) {
  .c_footer::before {
    background: url(../images/footer_bg.png) no-repeat top center/70rem;
    top: -12rem;
  }
}
.c_footer_top {
  position: relative;
  z-index: 3;
}
.c_footer_unit {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .c_footer_unit {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
}
.c_footer_box {
  width: 43rem;
  background: #fff;
  border-radius: 0.5rem 6.2rem 0.5rem 0.5rem;
  padding: 5.5rem 4.8rem 6.2rem;
}
@media (max-width: 767px) {
  .c_footer_box {
    margin-top: 5.4rem;
    width: 100%;
    padding: 5.5rem 2.4rem 4rem;
  }
}
.c_footer_box_unit + .c_footer_box_unit {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .c_footer_box_unit + .c_footer_box_unit {
    margin-top: 2.4rem;
  }
}
.c_footer_box_ttl {
  font-family: "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 2.8rem;
}
@media (max-width: 767px) {
  .c_footer_box_ttl {
    font-size: 2rem;
  }
}
.c_footer_box_btn {
  width: 100%;
  max-width: 33.3rem;
  height: 6.5rem;
  display: flex;
  align-items: center;
  padding: 0 3.8rem;
  border-radius: 0.5rem;
  font-size: 2rem;
  margin-top: 1.8rem;
  font-weight: bold;
  position: relative;
  cursor: pointer;
}
@media (max-width: 767px) {
  .c_footer_box_btn {
    height: 5rem;
    padding: 0 2rem;
    font-size: 1.6rem;
    max-width: unset;
    width: 100%;
    margin-top: 1rem;
  }
}
.c_footer_box_btn.__grd {
  background: url(../images/footer_btn_bg.jpg) no-repeat center center/cover;
}
.c_footer_box_btn.is_active > .c_footer_plus::after {
  transform: translateX(-50%) rotate(90deg);
}
.c_footer_box_accordion {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 2;
  background: #fff;
}
.c_footer_box_accordion .c_footer_box_link:last-of-type {
  border-bottom: unset;
}
.c_footer_box_links {
  margin-top: 4.2rem;
}
@media (max-width: 767px) {
  .c_footer_box_links {
    margin-top: 2.4rem;
  }
}
.c_footer_box_link {
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  border-bottom: 0.1rem solid #292323;
  font-size: 1.8rem;
  font-weight: 500;
  position: relative;
}
@media (max-width: 767px) {
  .c_footer_box_link {
    padding: 1.2rem 2rem;
    font-size: 1.6rem;
  }
}
.c_footer_plus {
  font-size: 2.2rem;
  width: 2.2rem;
  height: 2.2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 2.2rem;
}
.c_footer_plus::before, .c_footer_plus::after {
  content: "";
  position: absolute;
  background-color: #fff;
  transition: transform 0.3s ease;
}
.c_footer_plus::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.2rem;
  transform: translateY(-50%);
}
.c_footer_plus::after {
  top: 0;
  left: 50%;
  width: 0.2rem;
  height: 100%;
  transform: translateX(-50%);
}
.c_footer_plus.u_col000::before, .c_footer_plus.u_col000::after {
  background-color: #000;
}
@media (max-width: 767px) {
  .c_footer_plus {
    font-size: 1.6rem;
  }
}
.c_footer_head {
  margin-top: 13rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .c_footer_head {
    margin-top: 0;
    text-align: center;
  }
}
.c_footer_head_en {
  font-size: 2.5rem;
  display: block;
}
@media (max-width: 767px) {
  .c_footer_head_en {
    font-size: 1.6rem;
  }
}
.c_footer_head_jp {
  display: block;
  font-size: 5.8rem;
  line-height: 1.4827586207;
  margin-top: 3.2rem;
}
@media (max-width: 767px) {
  .c_footer_head_jp {
    font-size: 2.8rem;
    margin-top: 1.6rem;
    font-feature-settings: "palt";
    letter-spacing: 0.04em;
  }
}
.c_footer_bgObj {
  width: 100%;
  position: absolute;
  top: -14.5rem;
  left: 0;
  mix-blend-mode: overlay;
  z-index: 2;
}
@media (max-width: 767px) {
  .c_footer_bgObj {
    width: 100%;
    position: absolute;
    top: -1rem;
    left: 0;
  }
}
.c_footer_bottom {
  position: relative;
  z-index: 3;
  margin-top: 30rem;
}
@media (max-width: 767px) {
  .c_footer_bottom {
    margin-top: 5.4rem;
  }
}
.c_footer_menu {
  display: flex;
  justify-content: space-between;
  padding-right: 2rem;
  position: relative;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .c_footer_menu {
    display: block;
  }
}
.c_footer_logo {
  width: 34.3rem;
  display: block;
}
@media (max-width: 767px) {
  .c_footer_logo {
    width: 24rem;
    margin: 0 auto;
  }
}
.c_footer_menuUnit {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, auto);
  gap: 2.8rem 5.4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c_footer_menuUnit {
    margin-top: 5.4rem;
    grid-template-rows: unset;
    grid-auto-flow: unset;
    grid-template-columns: repeat(8, 1fr);
    grid-template-columns: repeat(2, 1fr);
    gap: 0 2.8rem;
    gap: 3.2rem 3.8rem;
  }
}
.c_footer_links_head {
  padding-bottom: 1.2rem;
  border-bottom: 0.1rem solid #b3b3b3;
  font-family: "Yu Mincho", "游明朝", "YuMincho", "ヒラギノ明朝 ProN", serif;
}
@media (max-width: 767px) {
  .c_footer_links_head {
    padding-bottom: 0.8rem;
  }
}
.c_footer_links_head > a, .c_footer_links_head > span {
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
}
@media (max-width: 767px) {
  .c_footer_links_head > a, .c_footer_links_head > span {
    font-size: 1.4rem;
  }
}
.c_footer_links_head + .c_footer_links_item {
  margin-top: 1.7rem;
}
@media (max-width: 767px) {
  .c_footer_links_head + .c_footer_links_item {
    margin-top: 0.8rem;
  }
}
.c_footer_links_item {
  color: #fff;
  margin-top: 0.8rem;
}
.c_footer_links_item a {
  font-size: 1.8rem;
  color: #fff;
}
@media (max-width: 767px) {
  .c_footer_links_item a {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
.c_footer_links_item + .c_footer_links_item {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .c_footer_links_item + .c_footer_links_item {
    margin-top: 0.8rem;
  }
}
.c_footer_copy {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 1.8rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .c_footer_copy {
    position: static;
    text-align: center;
    margin-top: 3.2rem;
    font-size: 1.2rem;
  }
}
.c_footer.__subPage {
  margin-top: 0;
}
@media (min-width: 768px) {
  .c_footer.__subPage::before {
    content: "";
    height: calc(100% + 21rem);
    top: -26rem;
  }
  .c_footer.__subPage .c_footer_bottom {
    margin-top: 6rem;
  }
  .c_footer.__subPage .c_footer_bgObj {
    top: 0;
  }
  .c_footer.__subPage .c_footer_unit {
    flex-direction: column-reverse;
    align-items: center;
    gap: 3.2rem 0;
  }
  .c_footer.__subPage .c_footer_head {
    margin-top: 0;
  }
  .c_footer.__subPage .c_footer_head_jp {
    display: none;
  }
  .c_footer.__subPage .c_footer_box {
    width: 100%;
    border-radius: 0.5rem 6.2rem 0.5rem 0.5rem;
    padding: 5.5rem 6.5rem 5rem 4.8rem;
    display: flex;
    align-items: flex-end;
  }
  .c_footer.__subPage .c_footer_box_btn {
    width: 33rem;
  }
  .c_footer.__subPage .c_footer_box_links {
    margin-top: 0;
    margin-left: auto;
    margin-right: 0;
    width: 33rem;
  }
  .c_footer.__subPage .c_footer_box_unit + .c_footer_box_unit {
    margin-left: 3rem;
  }
  .c_footer.__subPage .c_footer_box_unit + .c_footer_box_unit {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .c_footer.__subPage {
    margin-top: 0;
  }
}

.c_subMv_ly1_ttl {
  margin-left: 36rem;
  border-radius: 16rem 0 0 16rem;
  padding-left: 12.5rem;
  height: 32.2rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 2.4rem 0;
  margin-top: 15.5rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .c_subMv_ly1_ttl {
    margin-top: 8rem;
    margin-left: 4rem;
    border-radius: 16rem 0 0 16rem;
    padding-left: 4rem;
    height: 16rem;
    gap: 1rem 0;
  }
}
.c_subMv_ly1_ttl_en {
  font-size: 2.8rem;
  font-family: "Philosopher", sans-serif;
}
@media (max-width: 767px) {
  .c_subMv_ly1_ttl_en {
    font-size: 2rem;
  }
}
.c_subMv_ly1_ttl_jp {
  font-size: 6rem;
  font-family: "A1 Mincho Std Bold", serif;
}
@media (max-width: 767px) {
  .c_subMv_ly1_ttl_jp {
    font-size: 2.8rem;
    line-height: 1.3;
  }
}
.c_subMv_ly1_bc {
  box-sizing: border-box;
  margin-right: 84rem;
  border-radius: 0 16rem 16rem 0;
  height: 32.2rem;
  gap: 2.4rem 0;
  margin-top: -22rem;
  padding: 24.8rem 0 0 36rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .c_subMv_ly1_bc {
    margin-right: 3.2rem;
    border-radius: 0 16rem 16rem 0;
    margin-top: -10rem;
    height: 16rem;
    padding: 12rem 0 0 1.6rem;
  }
}
.c_subMv_ly1_bc_list {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .c_subMv_ly1_bc_list {
    flex-wrap: wrap;
    max-width: 28rem;
    gap: 0.4rem 0;
  }
}
.c_subMv_ly1_bc_item {
  font-size: 1.6rem;
  color: #7c7c7c;
}
@media (max-width: 767px) {
  .c_subMv_ly1_bc_item {
    font-size: 1rem;
  }
}
.c_subMv_ly1_bc_item:not(:first-of-type) {
  margin-left: 1.7rem;
  position: relative;
}
.c_subMv_ly1_bc_item:not(:first-of-type)::before {
  content: ">";
  font-size: 1.6rem;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -1.2rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media (max-width: 767px) {
  .c_subMv_ly1_bc_item:not(:first-of-type)::before {
    font-size: 1.2rem;
  }
}
.c_subMv_ly1_bc_item span {
  color: #7c7c7c;
}
.c_subMv_ly1_bc.u_colW .c_subMv_ly1_bc_item {
  color: #fff;
}
.c_subMv_ly1_bc.u_colW .c_subMv_ly1_bc_item span {
  color: #fff;
}

.c_subMv_ly2 {
  padding-top: 22.6rem;
}
@media (max-width: 767px) {
  .c_subMv_ly2 {
    padding-top: 12.6rem;
  }
}
.c_subMv_ly2_ttl {
  position: relative;
}
.c_subMv_ly2_ttl_en {
  font-family: "Philosopher", sans-serif;
  font-size: 25rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 1;
  position: absolute;
  width: 100%;
}
@media (max-width: 767px) {
  .c_subMv_ly2_ttl_en {
    font-size: 7.1rem;
  }
}
.c_subMv_ly2_ttl_jp {
  font-family: "A1 Mincho Std Bold", serif;
  font-size: 6rem;
  position: relative;
  z-index: 2;
  display: block;
}
.c_subMv_ly2_ttl_jp.__80 {
  font-size: 8rem;
}
@media (max-width: 767px) {
  .c_subMv_ly2_ttl_jp.__80 {
    font-size: 2.8rem;
  }
}
@media (max-width: 767px) {
  .c_subMv_ly2_ttl_jp {
    text-align: center;
    font-size: 2.8rem;
    line-height: 1.333;
  }
}
.c_subMv_ly2_bc {
  margin-top: 14rem;
}
@media (max-width: 767px) {
  .c_subMv_ly2_bc {
    margin-top: 9rem;
  }
}
.c_subMv_ly2_bc_list {
  display: flex;
  align-items: center;
}
.c_subMv_ly2_bc_item {
  font-size: 1.6rem;
  color: #7c7c7c;
}
@media (max-width: 767px) {
  .c_subMv_ly2_bc_item {
    font-size: 1.2rem;
  }
}
.c_subMv_ly2_bc_item:not(:first-of-type) {
  margin-left: 1.7rem;
  position: relative;
}
.c_subMv_ly2_bc_item:not(:first-of-type)::before {
  content: ">";
  font-size: 1.6rem;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -1.2rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media (max-width: 767px) {
  .c_subMv_ly2_bc_item:not(:first-of-type)::before {
    font-size: 1.2rem;
  }
}
.c_subMv_ly2_bc_item span {
  color: #7c7c7c;
}

.c_infoCards {
  padding-top: 5rem;
}
.c_infoCards_ttl {
  font-size: 3.8rem;
}
@media (max-width: 767px) {
  .c_infoCards_ttl {
    font-size: 2.4rem;
  }
}
.c_infoCards_note {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .c_infoCards_note {
    margin-top: 0.8rem;
  }
}
.c_infoCards_list {
  margin-top: 4.4rem;
  gap: 4.8rem 6.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .c_infoCards_list {
    margin-top: 4rem;
    gap: 3.2rem 1.6rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
.c_infoCards_item_img {
  width: 21.4rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .c_infoCards_item_img {
    width: 14rem;
  }
}
.c_infoCards_item_ttl {
  margin-top: 2rem;
  text-align: center;
  font-weight: bold;
}
@media (max-width: 767px) {
  .c_infoCards_item_ttl {
    margin-top: 1rem;
  }
}
.c_infoCards_item_txt {
  margin-top: 1.4rem;
}
@media (max-width: 767px) {
  .c_infoCards_item_txt {
    margin-top: 0.8rem;
  }
}

.c_tableSec_tabUnit {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  overflow: hidden;
  margin: 7rem auto 0;
  width: -moz-fit-content;
  width: fit-content;
}
.c_tableSec_tab {
  width: auto;
  min-width: 23rem;
  padding-inline: 2rem;
  height: 7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #9f9f9f;
  font-size: 2.6rem;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}
@media (max-width: 767px) {
  .c_tableSec_tab {
    width: auto;
    min-width: 11rem;
    font-size: 1.4rem;
    height: 5rem;
  }
}
.c_tableSec_tab.is_active {
  background: #002b6a;
  font-weight: 600;
}
.c_table {
  margin-top: 3.5rem;
}
.c_table_row {
  display: flex;
  align-items: flex-start;
  padding: 4.2rem 4.2rem 4.2rem 0;
  border-bottom: 0.2rem solid #c1c1c1;
}
@media (max-width: 767px) {
  .c_table_row {
    padding: 2.4rem 0;
  }
}
.c_table_head {
  font-size: 2rem;
  font-weight: bold;
  flex: 0 0 22rem;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .c_table_head {
    font-size: 1.4rem;
    flex: 0 0 11rem;
    line-height: 1.8125;
  }
}
.c_table_body {
  font-size: 1.8rem;
  line-height: 1.8125;
}
@media (max-width: 767px) {
  .c_table_body {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    font-feature-settings: "palt";
  }
}

.c_secTtl {
  position: relative;
}
.c_secTtl_jp {
  font-size: 5.2rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .c_secTtl_jp {
    font-size: 2.4rem;
  }
}
.c_secTtl_en {
  font-size: 19.1rem;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media (max-width: 767px) {
  .c_secTtl_en {
    font-size: 6.4rem;
  }
}

.c_workLink_linkWrapper {
  width: 40rem;
  height: 35rem;
  display: block;
  margin: 3rem auto 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .c_workLink_linkWrapper {
    width: 80%;
    height: 60rem;
    margin-top: 3.2rem;
  }
}
.talk .c_workLink_linkWrapper {
  margin-top: 10rem;
}
@media (max-width: 767px) {
  .talk .c_workLink_linkWrapper {
    margin-top: 6rem;
  }
}
.c_workLink_link_body {
  width: calc(100% - 1.6rem);
  height: calc(100% - 1.6rem);
  top: 0.8rem;
  left: 0.8rem;
  position: relative;
  z-index: 3;
  padding-top: 10rem;
  background: url(../images/talk_link_background.png) no-repeat center center/cover;
  overflow: hidden;
}
@media (max-width: 767px) {
  .c_workLink_link_body {
    width: 100vw;
    height: 20rem;
    top: 20rem;
    left: auto;
    margin: 0 calc(50% - 50vw);
    border-radius: unset;
    background: unset;
    padding-top: 4rem;
  }
}
.c_workLink_link_en {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .c_workLink_link_en {
    font-size: 1.6rem;
  }
}
.c_workLink_link_ttl {
  margin-top: 2.8rem;
  font-size: 4.4rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .c_workLink_link_ttl {
    font-size: 2.8rem;
    margin-top: 1.2rem;
  }
}
.c_workLink_link_btnIc {
  margin: 4.5rem auto 0;
  width: 4.4rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .c_workLink_link_btnIc {
    margin-top: 3.2rem;
    width: 3.2rem;
  }
}
.c_workLink_link_img {
  height: 41rem;
  width: 120rem;
  position: absolute;
  overflow: hidden;
}
@media (max-width: 767px) {
  .c_workLink_link_img {
    width: 40rem;
    height: 20rem;
  }
}
.c_workLink_link_img.__01 {
  right: 0;
  top: 0;
  z-index: 2;
  border-radius: 0 20.8rem 20.8rem 0;
}
@media (max-width: 767px) {
  .c_workLink_link_img.__01 img {
    -o-object-position: 53% 50%;
       object-position: 53% 50%;
  }
}
.c_workLink_link_img.__02 {
  left: 0;
  bottom: 0;
  z-index: 1;
  border-radius: 20.8rem 0 0 20.8rem;
}
@media (max-width: 767px) {
  .c_workLink_link_img.__02 img {
    -o-object-position: 21% 50%;
       object-position: 21% 50%;
  }
}
.c_workLink_link_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c_workLink_link_frame {
  height: 41rem;
  width: 120rem;
  position: absolute;
  border: 0.8rem solid #002b6a;
  overflow: hidden;
}
@media (max-width: 767px) {
  .c_workLink_link_frame {
    width: 60rem;
    height: 20rem;
    border: 0 solid #002b6a;
  }
}
.c_workLink_link_frame.__01 {
  right: 0;
  top: 0;
  z-index: 3;
  border-radius: 0 20.8rem 20.8rem 0;
}
.c_workLink_link_frame.__02 {
  left: 0;
  bottom: 0;
  z-index: 4;
  border-radius: 20.8rem 0 0 20.8rem;
}
.c_gld_border {
  margin-top: 16rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .c_gld_border {
    margin-top: 7em;
    padding-top: 0;
  }
}
.c_gld_border .l_inner {
  z-index: 2;
  position: relative;
}
.c_gld_border::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 126.8rem;
  background: url(../images/grd_g_bg.png) no-repeat top center/cover;
  position: absolute;
  top: -24.2rem;
  pointer-events: none;
}
@media (max-width: 767px) {
  .c_gld_border::before {
    background: url(../images/grd_g_bg.png) no-repeat top center/70rem;
    top: -12rem;
  }
}

.c_plusBtn {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .c_plusBtn {
    width: 3.2rem;
    height: 3.2rem;
  }
}
.c_plusBtn::before {
  content: "＋";
  font-size: 2.2rem;
  color: #002b6a;
}
@media (max-width: 767px) {
  .c_plusBtn::before {
    font-size: 1.8rem;
  }
}

.c_secTtl_s.__center {
  text-align: center;
}
.c_secTtl_s.__flx {
  display: flex;
  align-items: center;
  gap: 0 3.2rem;
}
@media (max-width: 767px) {
  .c_secTtl_s.__flx {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
}
.c_secTtl_s_en {
  font-size: 2.8rem;
  font-family: "Philosopher", sans-serif;
  display: block;
}
@media (max-width: 767px) {
  .c_secTtl_s_en {
    font-size: 1.6rem;
  }
}
.c_secTtl_s_jp {
  font-size: 5.2rem;
  font-family: "A1 Mincho Std Bold", serif;
  display: block;
}
@media (max-width: 767px) {
  .c_secTtl_s_jp {
    font-size: 2.8rem;
  }
}
.c_secTtl_s_en + .c_secTtl_s_jp {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .c_secTtl_s_en + .c_secTtl_s_jp {
    margin-top: 1.2rem;
  }
}

.c_iv {
  padding-top: 16.5rem;
}
@media (max-width: 767px) {
  .c_iv {
    padding-top: 8rem;
  }
}
.c_iv_ttl {
  position: relative;
  z-index: 2;
}
.c_iv_ttlArea {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .c_iv_ttlArea {
    display: block;
  }
}
.c_iv_en {
  font-size: 20rem;
  font-weight: bold;
  position: absolute;
  top: -8rem;
  left: 23rem;
  color: #f6f6f6;
  white-space: nowrap;
  z-index: 1;
}
@media (max-width: 767px) {
  .c_iv_en {
    font-size: 9rem;
    top: 0;
    left: 0rem;
  }
}
.c_iv_readBtn {
  width: 15rem;
  height: 5.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  border-radius: 27.5rem;
  position: relative;
  z-index: 3;
  font-weight: bold;
}
@media (max-width: 767px) {
  .c_iv_readBtn {
    width: 12rem;
    height: 4rem;
    font-size: 1.6rem;
    margin-left: auto;
    margin-right: 0;
  }
}
.c_iv_sliderArea {
  margin-top: 14rem;
  position: relative;
}
@media (max-width: 767px) {
  .c_iv_sliderArea {
    margin-top: 3.2rem;
  }
}
.c_iv_controls {
  display: flex;
  align-items: center;
  gap: 0 3rem;
  margin-top: 2rem;
  z-index: 5;
}
@media (max-width: 767px) {
  .c_iv_controls {
    margin-top: 1.4rem;
    gap: 0 2rem;
  }
}
.c_iv_fraction {
  font-size: 2.6rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .c_iv_fraction {
    font-size: 1.6rem;
  }
}
.c_iv_prev {
  background: url(../images/slider_prev.png) no-repeat center center/contain;
}
.c_iv_next {
  background: url(../images/slider_next.png) no-repeat center center/contain;
}
.c_iv_prev, .c_iv_next {
  width: 2.2rem;
  height: 3rem;
  cursor: pointer;
}
@media (max-width: 767px) {
  .c_iv_prev, .c_iv_next {
    width: 0.96rem;
    height: 1.6rem;
  }
}
.c_iv_imgSlider {
  /* 2つ目 */
  /* 3つ目 */
  /* 4つ目 */
}
@media (max-width: 767px) {
  .c_iv_imgSlider {
    margin-left: -1.6rem;
    margin-right: -1.6rem;
    padding: 0 1.6rem;
  }
}
.c_iv_imgSlider_wrapper {
  align-items: flex-end;
  height: 63.6rem;
}
@media (max-width: 767px) {
  .c_iv_imgSlider_wrapper {
    height: 33.6rem;
  }
}
.c_iv_imgSlider_item {
  width: 22.7rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: auto;
  transition: opacity 0.2s ease;
}
@media (max-width: 767px) {
  .c_iv_imgSlider_item {
    width: 8rem;
  }
}
.c_iv_imgSlider_item.swiper-slide[class*=-prev], .c_iv_imgSlider_item.swiper-slide[class*=-next], .c_iv_imgSlider_item.swiper-slide[class*=-active] {
  transition: width 0.4s ease, height 0.4s ease, opacity 0.2s ease;
}
.c_iv_imgSlider_item.swiper-slide-active {
  width: 42.3rem !important;
  z-index: 5;
  margin-right: -8rem !important;
}
@media (max-width: 767px) {
  .c_iv_imgSlider_item.swiper-slide-active {
    width: 22.3rem !important;
    z-index: 5;
    margin-right: -4rem !important;
  }
}
.swiper-slide-active + .c_iv_imgSlider_item {
  position: relative;
}
.c_iv_imgSlider .swiper-slide-active + .iv_imgSlider_item {
  position: relative;
  z-index: 4;
}
.c_iv_imgSlider .swiper-slide-active + .iv_imgSlider_item + .iv_imgSlider_item {
  position: relative;
  z-index: 3;
}
.c_iv_imgSlider .swiper-slide-active + .iv_imgSlider_item + .iv_imgSlider_item + .iv_imgSlider_item {
  position: relative;
  z-index: 2;
}
.c_iv_imgSlider .swiper-slide-active + .iv_imgSlider_item + .iv_imgSlider_item + .iv_imgSlider_item + .iv_imgSlider_item {
  position: relative;
  z-index: 1;
}
.c_iv_imgSlider_img {
  border-radius: 22rem;
  overflow: hidden;
  aspect-ratio: 423/636;
}
.c_iv_imgSlider_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c_iv_txtArea {
  position: absolute;
  top: 0;
  left: 51rem;
  z-index: 5;
}
@media (max-width: 767px) {
  .c_iv_txtArea {
    position: relative;
    left: 0;
    margin-top: 3.2rem;
  }
}
.c_iv_txtSlider {
  width: 70rem;
}
@media (max-width: 767px) {
  .c_iv_txtSlider {
    width: 100%;
  }
}
.c_iv_txtSlider_unit {
  display: flex;
  align-items: center;
  gap: 0 2.4rem;
}
@media (max-width: 767px) {
  .c_iv_txtSlider_unit {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem 0;
  }
}
.c_iv_txtSlider_name {
  font-size: 3rem;
  font-weight: bold;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .c_iv_txtSlider_name {
    font-size: 2rem;
  }
}
.c_iv_txtSlider_detail {
  line-height: 1.2;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .c_iv_txtSlider_detail {
    font-size: 1.4rem;
  }
}
.c_iv_txtSlider_ttl {
  font-size: 3.2rem;
  margin-top: 2.6rem;
  line-height: 1.71875;
  display: -webkit-box;
  /* Flexboxの一種を使う */
  -webkit-line-clamp: 2;
  /* 表示する行数を指定 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: bold;
}
@media (max-width: 767px) {
  .c_iv_txtSlider_ttl {
    font-size: 2.2rem;
    margin-top: 2rem;
  }
}
.c_iv_txtSlider .swiper-slide {
  opacity: 0;
  transition-duration: 0.3s;
}
.c_iv_txtSlider .swiper-slide-active {
  position: relative;
  z-index: 5;
  opacity: 1;
}

.p_home_ttl.__center {
  text-align: center;
}
.p_home_ttl.__flx {
  display: flex;
  align-items: center;
  gap: 0 3.2rem;
}
@media (max-width: 767px) {
  .p_home_ttl.__flx {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
}
.p_home_ttl_en {
  font-size: 2.8rem;
  font-family: "Philosopher", sans-serif;
  display: block;
}
@media (max-width: 767px) {
  .p_home_ttl_en {
    font-size: 1.6rem;
  }
}
.p_home_ttl_jp {
  font-size: 5.2rem;
  font-family: "A1 Mincho Std Bold", serif;
  display: block;
}
@media (max-width: 767px) {
  .p_home_ttl_jp {
    font-size: 2.8rem;
  }
}
.p_home_ttl_en + .p_home_ttl_jp {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .p_home_ttl_en + .p_home_ttl_jp {
    margin-top: 1.2rem;
  }
}
.p_home .mv {
  position: relative;
  padding: 40.8rem 0 0 11.5rem;
  aspect-ratio: 16/9;
  z-index: 2;
  background: #f6f6f6;
}
@media (max-width: 767px) {
  .p_home .mv {
    padding: 12rem 0 35rem 1.6rem;
    aspect-ratio: 375/667;
  }
}
.p_home .mv_ttl {
  font-size: 6.8rem;
  line-height: 1.4705882353;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .p_home .mv_ttl {
    font-size: 2.8rem;
  }
}
.p_home .mv_bgWrapper {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.p_home .mv_bgEl {
  width: 238.5rem;
  position: absolute;
  bottom: 2.8rem;
  left: -13.3rem;
}
@media (max-width: 767px) {
  .p_home .mv_bgEl {
    width: 74rem;
    position: absolute;
    bottom: 11.76rem;
    left: -20.35rem;
    transform: rotate(0deg);
  }
}
.p_home .mv_scroll {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.p_home .mv_scroll span {
  font-size: 2.7rem;
  display: block;
  color: #c90221;
}
@media (max-width: 767px) {
  .p_home .mv_scroll span {
    font-size: 1.4rem;
  }
}
.p_home .mv_scroll_bar {
  width: 0.2rem;
  height: 4rem;
  background: #ffffff;
  margin: 1.8rem auto 0;
  display: block;
  position: relative;
}
.p_home .mv_scroll_bar::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #c90221;
  animation: scrollBarAnime 2s ease infinite;
}
@keyframes scrollBarAnime {
  0% {
    right: 100%;
    height: 0;
  }
  100% {
    right: 0;
    height: 100%;
  }
}
.p_home .intro {
  position: relative;
  padding: 30rem 0 25.5rem;
}
@media (max-width: 767px) {
  .p_home .intro {
    padding: 8rem 0 14rem;
  }
}
.p_home .intro_inner {
  position: relative;
  z-index: 2;
}
.p_home .intro_ttl {
  font-size: 8.5rem;
  line-height: 1.4705882353;
}
@media (max-width: 767px) {
  .p_home .intro_ttl {
    font-size: 4rem;
  }
}
.p_home .intro_lead {
  font-size: 2.4rem;
  line-height: 2.0416666667;
  margin-top: 4.2rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .p_home .intro_lead {
    font-size: 1.6rem;
    margin-top: 20rem;
  }
}
.p_home .intro_txtBox {
  position: absolute;
  padding: 8.8rem 0 8.8rem;
  background: #b10419;
  border-radius: 7.2rem;
  width: 142rem;
  right: 0;
  top: 13.5rem;
}
@media (max-width: 767px) {
  .p_home .intro_txtBox {
    border-radius: 2.4rem;
    padding: 4rem 0 4rem;
    right: auto;
    left: 4rem;
    top: 13rem;
  }
}
.p_home .intro_txtBox_head {
  font-size: 25rem;
  font-weight: bold;
  position: relative;
  left: -2.4rem;
}
@media (max-width: 767px) {
  .p_home .intro_txtBox_head {
    font-size: 8rem;
    left: -1.2rem;
  }
}
.p_home .intro_txtBox_img {
  width: 99.9rem;
  position: absolute;
  top: 8rem;
  right: -5.5rem;
}
@media (max-width: 767px) {
  .p_home .intro_txtBox_img {
    width: 32rem;
    top: 5rem;
    left: 8rem;
  }
}
.p_home .intro_linkUnit {
  margin-top: 11.5rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .p_home .intro_linkUnit {
    margin-top: 4rem;
    flex-direction: column;
    gap: 2.4rem 0;
  }
}
.p_home .intro_linkBox {
  width: 58rem;
  height: 28.5rem;
  background: #fff;
  border-radius: 1.6rem;
  overflow: hidden;
  display: flex;
  position: relative;
}
@media (max-width: 767px) {
  .p_home .intro_linkBox {
    border-radius: 0.8rem;
    width: 100%;
    height: auto;
    aspect-ratio: 580/285;
  }
}
.p_home .intro_linkBox_img {
  width: 26.8rem;
  height: 100%;
}
@media (max-width: 767px) {
  .p_home .intro_linkBox_img {
    width: 49.3%;
    flex: 0 0 49%;
  }
}
.p_home .intro_linkBox_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right bottom;
     object-position: right bottom;
}
.p_home .intro_linkBox_body {
  padding: 8rem 0 0 4.8rem;
}
@media (max-width: 767px) {
  .p_home .intro_linkBox_body {
    padding: 2.4rem 0 0 1.6rem;
    width: 100%;
  }
}
.p_home .intro_linkBox_en {
  font-size: 2.2rem;
}
@media (max-width: 767px) {
  .p_home .intro_linkBox_en {
    font-size: 1.6rem;
  }
}
.p_home .intro_linkBox_head {
  font-size: 2.2rem;
  line-height: 1.6818181818;
  font-weight: bold;
  margin-top: 0.7rem;
}
@media (max-width: 767px) {
  .p_home .intro_linkBox_head {
    font-size: 1.5rem;
  }
}
.p_home .intro_linkBox_btn {
  width: 4.4rem;
  position: absolute;
  bottom: 1.8rem;
  right: 1.8rem;
}
@media (max-width: 767px) {
  .p_home .intro_linkBox_btn {
    width: 3.2rem;
  }
}
.p_home .co {
  position: relative;
  padding-bottom: 48rem;
}
@media (max-width: 767px) {
  .p_home .co {
    padding-bottom: 15rem;
  }
}
.p_home .co::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 269.4rem;
  background: url(../images/p_home_co_bg.png) no-repeat top center/cover;
  position: absolute;
  top: -31rem;
  pointer-events: none;
}
@media (max-width: 767px) {
  .p_home .co::before {
    background: url(../images/p_home_co_bg.png) no-repeat top center/70rem;
    top: -15rem;
    height: 90.4rem;
  }
}
.p_home .co_inner {
  position: relative;
  z-index: 2;
}
.p_home .co_slider {
  margin-top: 6.4rem;
  overflow: visible;
}
@media (max-width: 767px) {
  .p_home .co_slider {
    margin-top: 6.4rem;
  }
}
.p_home .co_slider_controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 3rem;
  margin-top: 3.6rem;
}
@media (max-width: 767px) {
  .p_home .co_slider_controls {
    margin-top: 2.4rem;
    gap: 0 2rem;
  }
}
.p_home .co_slider_fraction {
  font-size: 2.6rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .p_home .co_slider_fraction {
    font-size: 1.6rem;
  }
}
.p_home .co_slider_prev {
  background: url(../images/slider_prev.png) no-repeat center center/contain;
}
.p_home .co_slider_next {
  background: url(../images/slider_next.png) no-repeat center center/contain;
}
.p_home .co_slider_prev, .p_home .co_slider_next {
  width: 2.2rem;
  height: 3rem;
  cursor: pointer;
}
@media (max-width: 767px) {
  .p_home .co_slider_prev, .p_home .co_slider_next {
    width: 0.96rem;
    height: 1.6rem;
  }
}
.p_home .co_slider_card {
  width: 57rem;
  height: 72rem;
  border-radius: 2.2rem;
  transition-duration: 0.4s;
  transform: translateY(40.8rem);
  opacity: 0;
  border: 0.4rem solid #f6f6f6;
}
@media (max-width: 767px) {
  .p_home .co_slider_card {
    width: 32rem;
    height: auto;
    aspect-ratio: 575/750;
    border-radius: 1rem;
  }
}
.p_home .co_slider_card_inner {
  padding: 4rem 4rem;
  display: block;
}
@media (max-width: 767px) {
  .p_home .co_slider_card_inner {
    padding: 2rem;
  }
}
.p_home .co_slider_card.is_odd {
  background: #002b6a;
}
.p_home .co_slider_card.is_odd .co_slider_card_num,
.p_home .co_slider_card.is_odd .co_slider_card_en,
.p_home .co_slider_card.is_odd .co_slider_card_ttl,
.p_home .co_slider_card.is_odd .co_slider_card_txt {
  color: #ffffff;
}
.p_home .co_slider_card.is_odd .co_slider_card_btn {
  background: url(../images/plus_btn_02.png) no-repeat center center/cover;
}
.p_home .co_slider_card.is_even {
  background: #002b6a;
}
.p_home .co_slider_card.is_even .co_slider_card_num {
  color: #ffffff;
}
.p_home .co_slider_card.is_even .co_slider_card_ttl {
  color: #ffffff;
}
.p_home .co_slider_card.is_even .co_slider_card_en {
  color: #ffffff;
}
.p_home .co_slider_card.is_even .co_slider_card_txt {
  color: #ffffff;
}
.p_home .co_slider_card.is_even .co_slider_card_btn {
  background: url(../images/plus_btn_02.png) no-repeat center center/cover;
}
.p_home .co_slider_card_img {
  overflow: hidden;
  border-radius: 2rem;
  aspect-ratio: 454/322;
}
.p_home .co_slider_card_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p_home .co_slider_card_body {
  margin-top: 3.2rem;
  display: flex;
  align-items: flex-start;
  position: relative;
}
@media (max-width: 767px) {
  .p_home .co_slider_card_body {
    margin-top: 1.2rem;
  }
}
.p_home .co_slider_card_lBlk {
  flex: 0 0 10rem;
  width: 10rem;
  position: relative;
}
@media (max-width: 767px) {
  .p_home .co_slider_card_lBlk {
    flex: 0 0 6rem;
  }
}
.p_home .co_slider_card_num {
  font-size: 7.5rem;
}
@media (max-width: 767px) {
  .p_home .co_slider_card_num {
    font-size: 4.2rem;
  }
}
.p_home .co_slider_card_en {
  font-size: 2.2rem;
  transform-origin: top left;
  position: absolute;
  top: 9.8rem;
  left: 5.2rem;
  white-space: nowrap;
  transform: rotate(90deg);
}
@media (max-width: 767px) {
  .p_home .co_slider_card_en {
    font-size: 1.6rem;
    top: 6rem;
    left: 2.8rem;
  }
}
.p_home .co_slider_card_ttl {
  padding: 2.4rem 0 0;
  font-size: 2.8rem;
}
@media (max-width: 767px) {
  .p_home .co_slider_card_ttl {
    padding-top: 1.3rem;
    font-size: 1.8rem;
  }
}
.p_home .co_slider_card_txt {
  font-size: 1.8rem;
  line-height: 2.0625;
  margin-top: 3.2rem;
  padding-bottom: 6.2rem;
}
@media (max-width: 767px) {
  .p_home .co_slider_card_txt {
    font-size: 1.4rem;
    line-height: 1.75;
    margin-top: 2.4rem;
    padding-bottom: 3.2rem;
    width: 91%;
  }
}
.p_home .co_slider_card_btn {
  width: 4.4rem;
  height: 4.4rem;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 767px) {
  .p_home .co_slider_card_btn {
    width: 3.2rem;
    height: 3.2rem;
    bottom: -0.5rem;
    right: 0;
  }
}
.p_home .co_slider_card.swiper-slide[class*=-active] {
  transform: translateY(0);
  position: relative;
  z-index: 3;
  opacity: 1;
}
.p_home .co_slider_card.is_prev_1, .p_home .co_slider_card.swiper-slide[class*=-prev] {
  transform: rotate(-17deg) translateY(6.8rem);
  z-index: 2;
  opacity: 1;
}
@media (max-width: 767px) {
  .p_home .co_slider_card.is_prev_1, .p_home .co_slider_card.swiper-slide[class*=-prev] {
    transform: rotate(-10deg) translateY(4rem);
  }
}
.p_home .co_slider_card.is_prev_2 {
  transform: rotate(-40deg) translateY(29.8rem);
  z-index: 1;
  opacity: 1;
}
@media (max-width: 767px) {
  .p_home .co_slider_card.is_prev_2 {
    transform: rotate(-20deg) translateY(15rem);
  }
}
.p_home .co_slider_card.is_next_1, .p_home .co_slider_card.swiper-slide[class*=-next] {
  transform: rotate(17deg) translateY(6.8rem);
  z-index: 2;
  opacity: 1;
}
@media (max-width: 767px) {
  .p_home .co_slider_card.is_next_1, .p_home .co_slider_card.swiper-slide[class*=-next] {
    transform: rotate(10deg) translateY(4rem);
  }
}
.p_home .co_slider_card.is_next_2 {
  transform: rotate(40deg) translateY(29.8rem);
  z-index: 1;
  opacity: 1;
}
@media (max-width: 767px) {
  .p_home .co_slider_card.is_next_2 {
    transform: rotate(-20deg) translateY(15rem);
  }
}
.p_home .work {
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .p_home .work {
    padding-bottom: 8rem;
  }
}
.p_home .work::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 126.8rem;
  background: url(../images/p_home_work_bg.png) no-repeat top center/cover;
  position: absolute;
  top: -33rem;
  pointer-events: none;
}
@media (max-width: 767px) {
  .p_home .work::before {
    background: url(../images/p_home_work_bg.png) no-repeat top center/70rem;
    top: -11rem;
  }
}
@media (max-width: 767px) {
  .p_home .work::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0rem;
    pointer-events: none;
    background: #f6f6f6;
  }
}
.p_home .work_inner {
  position: relative;
  z-index: 2;
}
.p_home .work_list {
  margin-top: 5.4rem;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .p_home .work_list {
    display: block;
    gap: 0;
  }
}
.p_home .work_item {
  width: 45.6rem;
  flex: 0 0 45.6rem;
  height: 45.6rem;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .p_home .work_item {
    width: 32rem;
    flex: 0 0 32rem;
    height: 32rem;
    margin: 0 auto;
    display: block;
  }
}
.p_home .work_item:not(:first-of-type) {
  margin-left: -8.5rem;
}
@media (max-width: 767px) {
  .p_home .work_item:not(:first-of-type) {
    margin-left: auto;
    margin-top: -4rem;
  }
}
.p_home .work_item.__ly1 {
  background: #002b6a;
  position: relative;
  z-index: 3;
}
.p_home .work_item.__ly2 {
  background: url(../images/p_home_work_item_bg_01@2x.png) no-repeat center center/cover;
  z-index: 2;
}
.p_home .work_item.__ly3 {
  background: url(../images/p_home_work_item_bg_02@2x.png) no-repeat center center/cover;
  z-index: 1;
}
.p_home .work_item_ttl {
  margin-top: 14.5rem;
  font-size: 3.5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .p_home .work_item_ttl {
    margin-top: 9rem;
    font-size: 2.4rem;
  }
}
.p_home .work_item_txt {
  font-size: 1.8rem;
  line-height: 2.0625;
  margin: 2.5rem auto 0;
  width: 34rem;
}
@media (max-width: 767px) {
  .p_home .work_item_txt {
    font-size: 1.4rem;
    width: 28rem;
    margin: 2.5rem auto 0;
  }
}
.p_home .work_item_en {
  font-size: 2.2rem;
  text-align: center;
  margin-top: 15rem;
}
@media (max-width: 767px) {
  .p_home .work_item_en {
    margin-top: 8rem;
  }
}
.p_home .work_item_en + .work_item_ttl {
  line-height: 1.4642857143;
  margin-top: 1.9rem;
  height: 10.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .p_home .work_item_en + .work_item_ttl {
    height: 9.2rem;
  }
}
.p_home .work_item_btnIc {
  width: 4.4rem;
  position: absolute;
  bottom: 6.2rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media (max-width: 767px) {
  .p_home .work_item_btnIc {
    bottom: 4rem;
    width: 3.2rem;
  }
}
.p_home .work_enHead {
  font-size: 20rem;
  display: block;
  text-align: center;
  line-height: 0.7;
  position: relative;
  z-index: 1;
  margin-top: -1.2rem;
}
@media (max-width: 767px) {
  .p_home .work_enHead {
    font-size: 8.4rem;
    white-space: nowrap;
    margin: 3rem 0 0;
    text-align: center;
    margin-left: -1.6rem;
  }
}

.p_data .l_inner {
  position: relative;
  z-index: 2;
}
.p_data .data {
  margin-top: 16rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .p_data .data {
    margin-top: 10rem;
  }
}
.p_data .data_list {
  margin-top: 5.5rem;
  gap: 5rem 7.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .p_data .data_list {
    margin-top: 4rem;
    gap: 2.4rem 1.6rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
.p_data .data_item.__wide {
  grid-column: span 2;
}
.p_data .data_item_img {
  border-radius: 1rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p_data .data_item_img {
    width: 100%;
    margin: 0 auto;
  }
}
.p_data .data_item_ttl {
  margin-top: 2.6rem;
  text-align: center;
  font-weight: bold;
}
@media (max-width: 767px) {
  .p_data .data_item_ttl {
    margin-top: 1.2rem;
  }
}
.p_data .data_item_txt {
  margin-top: 1.4rem;
}
@media (max-width: 767px) {
  .p_data .data_item_txt {
    margin-top: 0.8rem;
    line-height: 1.3;
  }
}
.p_data .data_lImg {
  margin-top: 5rem;
  border-radius: 1rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p_data .data_lImg {
    margin-top: 3.2rem;
  }
}

.p_pp .pp_lead {
  margin-top: 6rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .p_pp .pp_lead {
    margin-top: 3.2rem;
  }
}
.p_pp .pp_info {
  margin-top: 4.4rem;
}
.p_pp .pp_txt {
  padding: 3rem 1rem 3.8rem 2.8rem;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .p_pp .pp_txt {
    padding: 1.6rem 0 2.8rem;
  }
}
.p_pp .pp_body {
  margin-top: 8.4rem;
}
@media (max-width: 767px) {
  .p_pp .pp_body {
    margin-top: 5.6rem;
  }
}
.p_pp .pp_head {
  font-weight: bold;
  padding: 1.6rem 3.1rem;
  background: #fff;
  border-radius: 0.5rem;
}
@media (max-width: 767px) {
  .p_pp .pp_head {
    padding: 1.2rem;
  }
}
.p_pp .pp_ttl {
  margin-top: 11rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .p_pp .pp_ttl {
    margin-top: 5.6rem;
  }
}
.p_pp .pp_ttl + .pp_head {
  margin-top: 3.2rem;
}
@media (max-width: 767px) {
  .p_pp .pp_ttl + .pp_head {
    margin-top: 2.4rem;
  }
}
.p_pp .pp_subLead {
  margin-top: 2.8rem;
}
@media (max-width: 767px) {
  .p_pp .pp_subLead {
    margin-top: 2rem;
  }
}
.p_pp .pp_subLead + .pp_head {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .p_pp .pp_subLead + .pp_head {
    margin-top: 2rem;
  }
}
.p_pp .pp_linkTxt {
  color: #2b57c6;
  text-decoration: underline;
  text-underline-offset: 0.8rem; /* 下線の位置を下にずらす */
}
.p_faq .faq_lead {
  margin-top: 8rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .p_faq .faq_lead {
    margin-top: 5.4rem;
  }
}
.p_faq .faq_dl {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .p_faq .faq_dl {
    margin-top: 5.4rem;
  }
}
.p_faq .faq_dl + .faq_dl {
  margin-top: 6.6rem;
}
@media (max-width: 767px) {
  .p_faq .faq_dl + .faq_dl {
    margin-top: 5.4rem;
  }
}
.p_faq .faq_dt {
  border-radius: 0.5rem;
  background: #fff;
  padding: 2.5rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 0 2rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .p_faq .faq_dt {
    padding: 1.6rem 1.2rem;
    gap: 0 1.2rem;
  }
}
.p_faq .faq_q {
  font-size: 4.1rem;
}
@media (max-width: 767px) {
  .p_faq .faq_q {
    font-size: 3.2rem;
  }
}
.p_faq .faq_dd {
  padding: 2.2rem 7.4rem 0;
}
@media (max-width: 767px) {
  .p_faq .faq_dd {
    padding: 1.6rem 1.2rem 0;
    letter-spacing: 0.05em;
  }
}

.p_entry {
  /* 押せる（disabled外れた）状態 */
}
@media (max-width: 767px) {
  .p_entry .c_subMv_ly1_ttl_jp {
    font-size: 2.6rem;
  }
}
.p_entry .entry_info {
  margin-top: 9.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .p_entry .entry_info {
    display: block;
    margin-top: 6rem;
  }
}
.p_entry .entry_lead {
  font-weight: bold;
}
@media (max-width: 767px) {
  .p_entry .entry_lead {
    text-align: center;
  }
}
.p_entry .entry_step {
  display: flex;
  gap: 0 2rem;
  align-items: center;
}
@media (max-width: 767px) {
  .p_entry .entry_step {
    justify-content: center;
    margin-top: 3.2rem;
  }
}
.p_entry .entry_step_el {
  width: 9.5rem;
  height: 9.5rem;
  background: #b7b7b7;
  border-radius: 50%;
  text-align: center;
  padding-top: 1.8rem;
}
@media (max-width: 767px) {
  .p_entry .entry_step_el {
    padding-top: 1.2rem;
    width: 7.2rem;
    height: 7.2rem;
    border-radius: 60%;
  }
}
.p_entry .entry_step_el.is_active {
  background: #002b6a;
}
.p_entry .entry_step_spacer {
  width: 4rem;
  height: 0.2rem;
  background: #002b6a;
}
.p_entry .entry_step_num {
  font-size: 1.9rem;
  display: block;
}
@media (max-width: 767px) {
  .p_entry .entry_step_num {
    font-size: 1.4rem;
  }
}
.p_entry .entry_step_txt {
  font-size: 1.8rem;
  font-weight: bold;
  display: block;
  margin-top: 0.6rem;
}
@media (max-width: 767px) {
  .p_entry .entry_step_txt {
    font-size: 1.6rem;
  }
}
.p_entry .entry_formBox {
  margin-top: 5.4rem;
  border-radius: 2rem;
  padding: 9.8rem 7rem 12.8rem 6.8rem;
}
@media (max-width: 767px) {
  .p_entry .entry_formBox {
    margin-top: 4rem;
    padding: 3rem 1.6rem 4rem;
  }
}
.p_entry .entry_form_unit {
  display: flex;
  align-items: flex-start;
  gap: 0 3.2rem;
}
@media (max-width: 767px) {
  .p_entry .entry_form_unit {
    flex-direction: column;
    gap: 1.2rem;
  }
}
.p_entry .entry_form_unit + .entry_form_unit {
  margin-top: 1.8rem;
}
@media (max-width: 767px) {
  .p_entry .entry_form_unit + .entry_form_unit {
    margin-top: 2.8rem;
  }
}
.p_entry .entry_form_ttl {
  flex: 0 0 18.8rem;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  min-height: 6.5rem;
}
@media (max-width: 767px) {
  .p_entry .entry_form_ttl {
    min-height: unset;
    flex: 0 0 auto;
    font-size: 1.6rem;
  }
}
.p_entry .entry_form_required {
  color: #ff0000;
  display: inline-block;
  margin-left: 0.4rem;
}
.p_entry .entry_form_input {
  width: 100%;
  min-height: 6.5rem;
}
@media (max-width: 767px) {
  .p_entry .entry_form_input {
    min-height: unset;
  }
}
.p_entry .entry_form_txt, .p_entry .entry_form_select, .p_entry .entry_form_area {
  padding: 1.9rem 2.8rem;
  font-size: 1.8rem;
  border: 0.2rem solid #dedede;
  border-radius: 1rem;
  width: 100%;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 767px) {
  .p_entry .entry_form_txt, .p_entry .entry_form_select, .p_entry .entry_form_area {
    padding: 1rem 1rem;
    font-size: 1.4rem;
    border-radius: 0.5rem;
  }
}
.p_entry .entry_form_txt::-moz-placeholder, .p_entry .entry_form_select::-moz-placeholder, .p_entry .entry_form_area::-moz-placeholder {
  color: #8d8d8d;
  font-size: 1.8rem;
}
.p_entry .entry_form_txt::placeholder, .p_entry .entry_form_select::placeholder, .p_entry .entry_form_area::placeholder {
  color: #8d8d8d;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .p_entry .entry_form_txt::-moz-placeholder, .p_entry .entry_form_select::-moz-placeholder, .p_entry .entry_form_area::-moz-placeholder {
    font-size: 1.4rem;
  }
  .p_entry .entry_form_txt::placeholder, .p_entry .entry_form_select::placeholder, .p_entry .entry_form_area::placeholder {
    font-size: 1.4rem;
  }
}
.p_entry .entry_form_txt.entry_form_txt__sm, .p_entry .entry_form_select.entry_form_txt__sm, .p_entry .entry_form_area.entry_form_txt__sm {
  width: 20rem;
}
@media (max-width: 767px) {
  .p_entry .entry_form_txt.entry_form_txt__sm, .p_entry .entry_form_select.entry_form_txt__sm, .p_entry .entry_form_area.entry_form_txt__sm {
    width: 7rem;
  }
}
.p_entry .entry_form_txt.entry_form_txt__xs, .p_entry .entry_form_select.entry_form_txt__xs, .p_entry .entry_form_area.entry_form_txt__xs {
  width: 7rem;
  padding-left: 2rem;
  padding-right: 0.8rem;
}
@media (max-width: 767px) {
  .p_entry .entry_form_txt.entry_form_txt__xs, .p_entry .entry_form_select.entry_form_txt__xs, .p_entry .entry_form_area.entry_form_txt__xs {
    width: 5rem;
    padding-left: 1.6rem;
  }
}
@media (max-width: 767px) {
  .p_entry .entry_form_txt[name=postal_code], .p_entry .entry_form_select[name=postal_code], .p_entry .entry_form_area[name=postal_code] {
    width: 12rem;
  }
}
@media (max-width: 767px) {
  .p_entry .entry_form_txt[name=tel]::-moz-placeholder, .p_entry .entry_form_txt[name=mobile]::-moz-placeholder, .p_entry .entry_form_select[name=tel]::-moz-placeholder, .p_entry .entry_form_select[name=mobile]::-moz-placeholder, .p_entry .entry_form_area[name=tel]::-moz-placeholder, .p_entry .entry_form_area[name=mobile]::-moz-placeholder {
    font-size: 1rem;
    letter-spacing: -0.03em;
  }
  .p_entry .entry_form_txt[name=tel]::placeholder, .p_entry .entry_form_txt[name=mobile]::placeholder, .p_entry .entry_form_select[name=tel]::placeholder, .p_entry .entry_form_select[name=mobile]::placeholder, .p_entry .entry_form_area[name=tel]::placeholder, .p_entry .entry_form_area[name=mobile]::placeholder {
    font-size: 1rem;
    letter-spacing: -0.03em;
  }
}
.p_entry .entry_form_select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; /* デフォルトの矢印を消す */
}
.p_entry .entry_form_area {
  height: 23rem;
  resize: vertical; /* 縦方向のみリサイズ許可 */
}
@media (max-width: 767px) {
  .p_entry .entry_form_area {
    height: 18rem;
  }
}
.p_entry .entry_form_suffix {
  font-size: 1.8rem;
  margin: 0 1.4rem;
}
@media (max-width: 767px) {
  .p_entry .entry_form_suffix {
    font-size: 1.4rem;
    margin: 0 1.4rem 0 0.4rem;
  }
}
.p_entry .entry_form_radioUnit {
  height: 100%;
  min-height: 6.5rem;
  display: flex;
  align-items: center;
  gap: 0 2.5rem;
}
@media (max-width: 767px) {
  .p_entry .entry_form_radioUnit {
    min-height: unset;
    gap: 0 1.6rem;
    margin-top: 0.8rem;
  }
}
.p_entry .entry_form_radioUnit input {
  display: none;
}
.p_entry .entry_form_radio {
  display: flex;
  align-items: center;
  gap: 0 1rem;
}
@media (max-width: 767px) {
  .p_entry .entry_form_radio {
    gap: 0 0.8rem;
  }
}
.p_entry .entry_form_radio input {
  display: none;
}
.p_entry .entry_form_radio_ico {
  width: 2rem;
  height: 2rem;
  border: 0.2rem solid #6b6b6b;
  border-radius: 60%;
  transition-duration: 0.2s;
}
@media (max-width: 767px) {
  .p_entry .entry_form_radio_ico {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.p_entry .entry_form_radio input[type=radio]:checked + .entry_form_radio_ico {
  background: #6b6b6b;
}
.p_entry .entry_form_radio_lbl {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .p_entry .entry_form_radio_lbl {
    font-size: 1.4rem;
  }
}
.p_entry .entry_form_upDesc {
  margin-top: 1.5rem;
  font-size: 1.8rem;
  line-height: 1.6666666667;
}
@media (max-width: 767px) {
  .p_entry .entry_form_upDesc {
    font-size: 1.4rem;
    margin-top: 0rem;
  }
}
.p_entry .entry_form_upNote {
  font-size: 1.5rem;
  line-height: 2;
}
@media (max-width: 767px) {
  .p_entry .entry_form_upNote {
    margin-top: 0.4rem;
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
.p_entry .entry_form_file {
  margin-top: 2.2rem;
  padding-bottom: 2rem;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .p_entry .entry_form_file {
    margin-top: 1.8rem;
    padding-bottom: 0;
  }
}
.p_entry .entry_form_file_input {
  display: none;
}
.p_entry .entry_form_file_label {
  width: 20rem;
  height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  line-height: 1.875;
  background: #efefef;
  border: 0.2rem solid #dedede;
  border-radius: 0.5rem;
  cursor: pointer;
  line-height: 1.3;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .p_entry .entry_form_file_label {
    width: 12rem;
    height: 4rem;
    font-size: 1rem;
    padding: 1.2rem;
  }
}
.p_entry .entry_form_file_name {
  font-size: 1.8rem;
  margin-left: 2.5rem;
}
@media (max-width: 767px) {
  .p_entry .entry_form_file_name {
    font-size: 1rem;
    margin-left: 1.2rem;
  }
}
.p_entry .entry_form_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10rem;
}
@media (max-width: 767px) {
  .p_entry .entry_form_btns {
    margin-top: 4.4rem;
  }
}
.p_entry .entry_form_submit {
  width: 33rem;
  height: 7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 2.2rem;
  border-radius: 3.5rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .p_entry .entry_form_submit {
    width: 28rem;
    height: 5.5rem;
    font-size: 1.8rem;
  }
}
.p_entry .entry_thanks {
  padding-top: 23rem;
  text-align: center;
}
@media (max-width: 767px) {
  .p_entry .entry_thanks {
    padding-top: 13rem;
  }
}
.p_entry .entry_thanks_en {
  font-size: 7rem;
  color: #cc1649;
  display: block;
}
@media (max-width: 767px) {
  .p_entry .entry_thanks_en {
    font-size: 5rem;
  }
}
.p_entry .entry_thanks_jp {
  margin-top: 2rem;
  font-size: 3rem;
  display: block;
}
@media (max-width: 767px) {
  .p_entry .entry_thanks_jp {
    font-size: 2.4rem;
    margin-top: 1.2rem;
  }
}
.p_entry .entry_info + .entry_form_btns {
  margin-top: 14rem;
}
@media (max-width: 767px) {
  .p_entry .entry_info + .entry_form_btns {
    margin-top: 6rem;
  }
}
.p_entry .entry_thanks + .entry_info {
  margin-top: 14rem;
}
@media (max-width: 767px) {
  .p_entry .entry_thanks + .entry_info {
    margin-top: 0;
    display: flex;
    flex-direction: column-reverse;
  }
  .p_entry .entry_thanks + .entry_info .entry_lead {
    margin-top: 4rem;
  }
}
.p_entry .entry .wpcf7-list-item.first {
  margin-left: 0;
}
.p_entry .entry .wpcf7-list-item-label {
  font-size: 1.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0 1rem;
}
@media (max-width: 767px) {
  .p_entry .entry .wpcf7-list-item-label {
    font-size: 1.4rem;
  }
}
.p_entry .entry .wpcf7-list-item-label::before {
  width: 2rem;
  height: 2rem;
  border: 0.2rem solid #6b6b6b;
  border-radius: 60%;
  transition-duration: 0.2s;
  display: inline-block;
}
@media (max-width: 767px) {
  .p_entry .entry .wpcf7-list-item-label::before {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.p_entry .entry input[type=radio]:checked + .wpcf7-list-item-label::before {
  background: #6b6b6b;
}
.p_entry .entry .wpcf7-not-valid-tip {
  font-size: 1.8rem;
  font-weight: bold;
  color: #c80524;
  margin: 0.4rem 0;
}
@media (max-width: 767px) {
  .p_entry .entry .wpcf7-not-valid-tip {
    font-size: 1.2rem;
  }
}
.p_entry .entry .wpcf7-response-output.wpcf7-validation-errors {
  border: none;
  font-size: 2rem;
  color: #c80524;
  font-weight: bold;
}
@media (max-width: 767px) {
  .p_entry .entry .wpcf7-response-output.wpcf7-validation-errors {
    font-size: 1.8rem;
  }
}
.p_entry .entry .hp-field {
  display: none !important;
}
.p_entry .entry .wpcf7-form-control-wrap.website {
  display: none;
}
.p_entry .contact_bottom {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 22rem;
}
@media (max-width: 767px) {
  .p_entry .contact_bottom {
    margin-top: 3.2rem;
    margin-left: 0;
  }
}
.p_entry .contact_bottom span {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  font-weight: bold;
}
@media (max-width: 767px) {
  .p_entry .contact_bottom span {
    font-size: 1.4rem;
  }
}
.p_entry .contact_bottom_check {
  cursor: pointer;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.4rem;
  background: #F5F5F5;
  margin-right: 0.8rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .p_entry .contact_bottom_check {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.p_entry .contact_bottom_check::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  background-image: url("data:image/svg+xml,%3Csvg width='25' height='24' viewBox='0 0 25 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.7969 6.35159C21.0219 6.57662 21.1483 6.88179 21.1483 7.19999C21.1483 7.51818 21.0219 7.82335 20.7969 8.04839L11.1969 17.6484C10.9719 17.8734 10.6667 17.9997 10.3485 17.9997C10.0303 17.9997 9.72517 17.8734 9.50014 17.6484L4.70014 12.8484C4.48155 12.6221 4.36059 12.3189 4.36333 12.0043C4.36606 11.6897 4.49226 11.3887 4.71475 11.1662C4.93724 10.9437 5.23822 10.8175 5.55285 10.8148C5.86749 10.812 6.17061 10.933 6.39694 11.1516L10.3485 15.1032L19.1001 6.35159C19.3252 6.12662 19.6303 6.00024 19.9485 6.00024C20.2667 6.00024 20.5719 6.12662 20.7969 6.35159Z' fill='%233B3B3B'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(0);
  transition-duration: 0.3s;
}
@media (max-width: 767px) {
  .p_entry .contact_bottom_check::after {
    width: 2rem;
    height: 2rem;
  }
}
.p_entry .contact_bottom_check.is_active:after {
  transform: scale(1);
}
.p_entry .c-agree_msg {
  margin-left: 22rem;
  text-align: left;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 3.2rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .p_entry .c-agree_msg {
    font-size: 1.6rem;
    font-feature-settings: "palt";
    margin-top: 2rem;
    margin-left: 0;
  }
}
.p_entry .entry_form_submit {
  opacity: 0.5;
  cursor: default;
  transition: opacity 0.3s ease;
}
.p_entry .entry_form_submit:not(:disabled) {
  opacity: 1;
  cursor: pointer;
}

@media (max-width: 767px) {
  .p_carrier .c_subMv_ly1_ttl_jp {
    font-size: 2.3rem;
  }
}
.p_carrier .carrier_lead {
  margin-top: 4.8rem;
}
@media (max-width: 767px) {
  .p_carrier .carrier_lead {
    margin-top: 3.2rem;
  }
}
.p_carrier .carrier_img {
  width: 100%;
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .p_carrier .carrier_img {
    margin-top: 3.2rem;
  }
}
.p_carrier .evaluation {
  margin-top: 14rem;
}
@media (max-width: 767px) {
  .p_carrier .evaluation {
    margin-top: 8rem;
  }
}
.p_carrier .evaluation_lead {
  margin-top: 3.4rem;
  position: relative;
  z-index: 2;
}
.p_carrier .evaluation_list {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .p_carrier .evaluation_list {
    margin-top: 4rem;
  }
}

.p_people .talk_leadArea {
  position: relative;
}
.p_people .talk_lead {
  margin-top: 12rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .p_people .talk_lead {
    margin-top: 4rem;
  }
}
.p_people .talk_ttlEn {
  position: absolute;
  font-size: 11rem;
  bottom: -6rem;
  right: -13rem;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .p_people .talk_ttlEn {
    top: -7rem;
    left: 0;
    transform: unset;
    font-size: 10rem;
    text-align: left;
  }
}
.p_people .iv {
  margin-top: 28rem;
}
@media (max-width: 767px) {
  .p_people .iv {
    margin-top: 14rem;
  }
}
.p_people .iv_links {
  margin-top: 11rem;
}
@media (max-width: 767px) {
  .p_people .iv_links {
    margin-top: 4.4rem;
  }
}
.p_people .iv_item {
  width: 100%;
  height: 30.8rem;
  position: relative;
  display: block;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .p_people .iv_item {
    height: auto;
    padding: 2.4rem 1.6rem 2.4rem;
    display: flex;
    flex-direction: column-reverse;
    border-radius: 1rem;
  }
}
.p_people .iv_item + .iv_item {
  margin-top: 17.7rem;
}
@media (max-width: 767px) {
  .p_people .iv_item + .iv_item {
    margin-top: 4.4rem;
  }
}
.p_people .iv_item:nth-of-type(odd) .iv_item_txtArea {
  left: 12.7rem;
}
@media (max-width: 767px) {
  .p_people .iv_item:nth-of-type(odd) .iv_item_txtArea {
    left: auto;
  }
}
.p_people .iv_item:nth-of-type(odd) .iv_item_img {
  right: 10.9rem;
}
.p_people .iv_item:nth-of-type(odd) .iv_item_num {
  top: 2rem;
  right: -12rem;
}
@media (max-width: 767px) {
  .p_people .iv_item:nth-of-type(odd) .iv_item_num {
    left: auto;
    right: -13.5rem;
    top: 1.5rem;
  }
}
.p_people .iv_item:nth-of-type(even) .iv_item_txtArea {
  left: 68rem;
}
@media (max-width: 767px) {
  .p_people .iv_item:nth-of-type(even) .iv_item_txtArea {
    left: auto;
  }
}
.p_people .iv_item:nth-of-type(even) .iv_item_img {
  left: 11.7rem;
}
.p_people .iv_item:nth-of-type(even) .iv_item_num {
  top: 2rem;
  left: 5.5rem;
}
@media (max-width: 767px) {
  .p_people .iv_item:nth-of-type(even) .iv_item_num {
    left: auto;
    right: -13.5rem;
    top: 1.5rem;
  }
}
.p_people .iv_item_txtArea {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 40rem;
}
@media (max-width: 767px) {
  .p_people .iv_item_txtArea {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: unset;
    width: 27rem;
  }
}
.p_people .iv_item_txtArea .c_plusBtn {
  position: absolute;
  bottom: -2.2rem;
  right: -6.4rem;
}
@media (max-width: 767px) {
  .p_people .iv_item_txtArea .c_plusBtn {
    right: -4.2rem;
    bottom: 0;
  }
}
.p_people .iv_item_ttl {
  font-size: 3.2rem;
  line-height: 1.5;
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 表示行数 */
  overflow: hidden;
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .p_people .iv_item_ttl {
    font-size: 2rem;
    margin-top: 2rem;
  }
}
.p_people .iv_item_txt {
  margin-top: 2.4rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 表示行数 */
  overflow: hidden;
}
@media (max-width: 767px) {
  .p_people .iv_item_txt {
    margin-top: 1rem;
  }
}
.p_people .iv_item_img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 48rem;
  height: 48rem;
  border-radius: 60%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p_people .iv_item_img {
    position: static;
    transform: unset;
    margin-top: 2rem;
    width: 24rem;
    height: 24rem;
    margin: 0 auto;
  }
}
.p_people .iv_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.p_people .iv_item_num {
  position: absolute;
  transform-origin: 0% 0%;
  transform: rotate(90deg);
  font-size: 2.8rem;
  display: inline-block;
  white-space: nowrap;
  width: 15rem;
}
@media (max-width: 767px) {
  .p_people .iv_item_num {
    font-size: 2rem;
  }
}
.p_people #iv {
  scroll-margin-top: 100px; /* モダンブラウザ対応 */
}

.p_flow .flow {
  margin-top: 6rem;
}
.p_flow .flow_list {
  display: flex;
  align-items: flex-start;
  gap: 0 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .p_flow .flow_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem 0;
  }
}
.p_flow .flow_card {
  display: flex;
  align-items: center;
  height: 25.4rem;
  padding: 0 3.2rem 0 2.4rem;
  gap: 0 1.8rem;
  border-radius: 2.2rem;
  box-shadow: -2.9px 2.9px 21px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .p_flow .flow_card {
    gap: 0 1.2rem;
    height: auto;
    padding: 2rem 1.6rem;
  }
}
.p_flow .flow_card:nth-child(2) {
  margin-top: 12rem;
}
@media (max-width: 767px) {
  .p_flow .flow_card:nth-child(2) {
    margin-top: 0;
  }
}
.p_flow .flow_card:nth-child(n+4) {
  /* ここにスタイルを書く */
  margin-top: 8.6rem;
}
@media (max-width: 767px) {
  .p_flow .flow_card:nth-child(n+4) {
    margin-top: 0;
  }
}
.p_flow .flow_card:nth-child(3), .p_flow .flow_card:nth-child(5), .p_flow .flow_card:nth-child(7) {
  margin-top: -3.4rem;
}
@media (max-width: 767px) {
  .p_flow .flow_card:nth-child(3), .p_flow .flow_card:nth-child(5), .p_flow .flow_card:nth-child(7) {
    margin-top: 0;
  }
}
.p_flow .flow_card_el {
  width: 12.3rem;
  height: 12.3rem;
  flex-shrink: 0;
  border-radius: 50%;
  text-align: center;
  padding-top: 2rem;
}
@media (max-width: 767px) {
  .p_flow .flow_card_el {
    padding-top: 1.2rem;
    width: 7.2rem;
    height: 7.2rem;
    border-radius: 60%;
  }
}
.p_flow .flow_card_num {
  font-size: 1.9rem;
  display: block;
}
@media (max-width: 767px) {
  .p_flow .flow_card_num {
    font-size: 1.4rem;
  }
}
.p_flow .flow_card_txt {
  font-size: 6rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .p_flow .flow_card_txt {
    font-size: 3rem;
  }
}
.p_flow .flow_card_ttl {
  font-weight: bold;
}
.p_flow .flow_card_desc {
  margin-top: 0.8rem;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
.p_culture .culture {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .p_culture .culture {
    margin-top: 6rem;
  }
}
.p_culture .culture_list {
  gap: 0 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
}
@media (max-width: 767px) {
  .p_culture .culture_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem 0;
  }
}
.p_culture .culture_card {
  border-radius: 2.2rem;
  padding: 6rem;
  height: 67.5rem;
}
@media (max-width: 767px) {
  .p_culture .culture_card {
    border: 1rem;
    padding: 2rem 1.6rem;
    height: auto;
  }
}
.p_culture .culture_card:nth-child(2) {
  margin-top: 10.5rem;
}
@media (max-width: 767px) {
  .p_culture .culture_card:nth-child(2) {
    margin-top: 0;
  }
}
.p_culture .culture_card:nth-child(n+4) {
  /* ここにスタイルを書く */
  margin-top: 7rem;
}
@media (max-width: 767px) {
  .p_culture .culture_card:nth-child(n+4) {
    margin-top: 0;
  }
}
.p_culture .culture_card:nth-child(3), .p_culture .culture_card:nth-child(5), .p_culture .culture_card:nth-child(7) {
  margin-top: -3.5rem;
}
@media (max-width: 767px) {
  .p_culture .culture_card:nth-child(3), .p_culture .culture_card:nth-child(5), .p_culture .culture_card:nth-child(7) {
    margin-top: 0;
  }
}
.p_culture .culture_card:nth-child(1), .p_culture .culture_card:nth-child(4), .p_culture .culture_card:nth-child(5) {
  background: #002b6a;
}
.p_culture .culture_card:nth-child(1) .culture_card_ttl,
.p_culture .culture_card:nth-child(1) .culture_card_txt,
.p_culture .culture_card:nth-child(1) .culture_card_en, .p_culture .culture_card:nth-child(4) .culture_card_ttl,
.p_culture .culture_card:nth-child(4) .culture_card_txt,
.p_culture .culture_card:nth-child(4) .culture_card_en, .p_culture .culture_card:nth-child(5) .culture_card_ttl,
.p_culture .culture_card:nth-child(5) .culture_card_txt,
.p_culture .culture_card:nth-child(5) .culture_card_en {
  color: white;
}
.p_culture .culture_card:nth-child(2), .p_culture .culture_card:nth-child(3), .p_culture .culture_card:nth-child(6) {
  background: #fff;
}
@media (max-width: 767px) {
  .p_culture .culture_card:nth-of-type(odd) {
    background: #002b6a;
  }
  .p_culture .culture_card:nth-of-type(odd) .culture_card_ttl,
  .p_culture .culture_card:nth-of-type(odd) .culture_card_txt,
  .p_culture .culture_card:nth-of-type(odd) .culture_card_en {
    color: white;
  }
  .p_culture .culture_card:nth-of-type(even) {
    background: #fff;
  }
  .p_culture .culture_card:nth-of-type(even) .culture_card_ttl,
  .p_culture .culture_card:nth-of-type(even) .culture_card_txt,
  .p_culture .culture_card:nth-of-type(even) .culture_card_en {
    color: #002b6a;
  }
}
.p_culture .culture_card_img {
  overflow: hidden;
  border-radius: 2rem;
  aspect-ratio: 455/323;
}
@media (max-width: 767px) {
  .p_culture .culture_card_img {
    border-radius: 1rem;
  }
}
.p_culture .culture_card_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p_culture .culture_card_txtArea {
  padding: 5.5rem 0 0 5.6rem;
  position: relative;
}
@media (max-width: 767px) {
  .p_culture .culture_card_txtArea {
    padding: 1.5rem 0 0 3.2rem;
  }
}
.p_culture .culture_card_txt {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .p_culture .culture_card_txt {
    margin-top: 0.8rem;
  }
}
.p_culture .culture_card_en {
  font-size: 2.2rem;
  position: absolute;
  top: 6rem;
  left: 2rem;
  transform: rotate(90deg);
  transform-origin: top left;
}
@media (max-width: 767px) {
  .p_culture .culture_card_en {
    font-size: 1.6rem;
    top: 2rem;
    left: 1.6rem;
  }
}

.p_iv .info {
  padding-bottom: 9rem;
}
@media (max-width: 767px) {
  .p_iv .info {
    padding-bottom: 5.6rem;
  }
}
.p_iv .info .c_secTtl_s {
  margin-top: 9rem;
}
@media (max-width: 767px) {
  .p_iv .info .c_secTtl_s {
    margin-top: 5.6rem;
  }
}
.p_iv .mv_inner {
  position: relative;
}
.p_iv .mv_mainImg {
  height: 70rem;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .p_iv .mv_mainImg {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    height: auto;
    aspect-ratio: 1000/700;
  }
}
.p_iv .mv_mainImg img {
  height: 100%;
  width: auto;
}
@media (max-width: 767px) {
  .p_iv .mv_mainImg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p_iv .article {
  position: relative;
  z-index: 2;
}
.p_iv .article_txtBox {
  border-radius: 2.2rem;
  width: 100%;
  max-width: 80rem;
  background: #002b6a;
  padding: 7rem 5rem 8.5rem 5rem;
  margin-top: -22.8rem;
  margin-left: 6.8rem;
}
@media (max-width: 767px) {
  .p_iv .article_txtBox {
    border-radius: 1rem;
    margin-left: auto;
    margin-top: -3.2rem;
    padding: 2rem 2.4rem 2.4rem;
  }
}
.p_iv .article_name {
  font-size: 3rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .p_iv .article_name {
    font-size: 2rem;
  }
}
.p_iv .article_ttl {
  font-size: 3.2rem;
  line-height: 1.71875;
  margin-top: 3.2rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .p_iv .article_ttl {
    font-size: 2rem;
    margin-top: 1.2rem;
  }
}
.p_iv .article_detail {
  font-size: 1.8rem;
  margin-top: 4.2rem;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .p_iv .article_detail {
    font-size: 1.2rem;
    margin-top: 1.6rem;
  }
}
.p_iv .article_body {
  margin-top: 9.5rem;
}
@media (max-width: 767px) {
  .p_iv .article_body {
    margin-top: 5rem;
  }
}
.p_iv .article_body + .article_body {
  margin-top: 24rem;
}
@media (max-width: 767px) {
  .p_iv .article_body + .article_body {
    margin-top: 12rem;
  }
}
.p_iv .article_blk {
  padding-left: 6.8rem;
  position: relative;
}
@media (max-width: 767px) {
  .p_iv .article_blk {
    padding-left: 3.2rem;
  }
}
.p_iv .article_blk + .article_blk {
  margin-top: 10rem;
}
@media (max-width: 767px) {
  .p_iv .article_blk + .article_blk {
    margin-top: 5.4rem;
  }
}
.p_iv .article_en {
  position: absolute;
  top: -4rem;
  right: 0;
}
.p_iv .article_en.__s {
  font-size: 12.4rem;
}
@media (max-width: 767px) {
  .p_iv .article_en.__s {
    font-size: 6rem;
  }
}
.p_iv .article_en.__m {
  font-size: 19.1rem;
}
@media (max-width: 767px) {
  .p_iv .article_en.__m {
    font-size: 8rem;
  }
}
.p_iv .article_head {
  position: relative;
  z-index: 1;
  font-weight: bold;
}
@media (max-width: 767px) {
  .p_iv .article_head {
    letter-spacing: 0.05em;
  }
}
.p_iv .article_head::before {
  content: "";
  width: 4.2rem;
  height: 0.2rem;
  background: #002b6a;
  position: absolute;
  top: 1.8rem;
  display: inline-block;
  left: -6.8rem;
}
@media (max-width: 767px) {
  .p_iv .article_head::before {
    width: 1.8rem;
    left: -3rem;
    top: 1.4rem;
  }
}
.p_iv .article_desc {
  margin-top: 2.8rem;
  position: relative;
  z-index: 2;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .p_iv .article_desc {
    margin-top: 1.6rem;
    letter-spacing: 0.02em;
  }
}
.p_iv .article_txtUnit {
  margin-top: 8.8rem;
  display: flex;
  gap: 0 6.8rem;
}
@media (max-width: 767px) {
  .p_iv .article_txtUnit {
    margin-top: 4.4rem;
    flex-direction: column;
    gap: 4.4rem;
  }
}
.p_iv .article_txtUnit .article_blk {
  flex: 0 0 50%;
}
@media (max-width: 767px) {
  .p_iv .article_txtUnit .article_blk {
    flex: 0 0 auto;
  }
}
.p_iv .article_mediaUnit {
  display: flex;
  gap: 0 5.5rem;
}
@media (max-width: 767px) {
  .p_iv .article_mediaUnit {
    flex-direction: column-reverse;
    gap: 3.2rem;
  }
}
.p_iv .article_mediaUnit + .article_blk {
  margin-top: 10rem;
}
@media (max-width: 767px) {
  .p_iv .article_mediaUnit + .article_blk {
    margin-top: 5.4rem;
  }
}
.p_iv .article_media {
  flex: 0 0 43.6rem;
  aspect-ratio: 1/1;
  border-radius: 60%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p_iv .article_media {
    flex: 0 0 auto;
    width: 28rem;
    margin: 0 auto;
  }
}
.p_iv .article_media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.p_iv .related {
  margin-top: 10.2rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .p_iv .related {
    margin-top: 5.4rem;
  }
}
.p_iv .related_box {
  padding: 6.8rem 0 7.6rem;
  border-radius: 6.8rem;
  width: 168.7rem;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 767px) {
  .p_iv .related_box {
    padding: 4.2rem 0 2.4rem;
    width: auto;
    border-radius: 2rem;
  }
}
.p_iv .related_box::before {
  content: "";
  width: 0.3rem;
  height: 6.7rem;
  background: #002b6a;
  display: inline-block;
  position: absolute;
  position: absolute;
  top: -3.35rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media (max-width: 767px) {
  .p_iv .related_box::before {
    height: 4.4rem;
    top: -2.2rem;
  }
}
.p_iv .related_ttl {
  text-align: center;
  font-size: 5rem;
}
@media (max-width: 767px) {
  .p_iv .related_ttl {
    font-size: 3.2rem;
  }
}
.p_iv .related_inner {
  margin-top: 6.4rem;
  display: flex;
  justify-content: center;
  gap: 4rem 2.6rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 767px) {
  .p_iv .related_inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem 1.6rem;
    margin-top: 4rem;
  }
}
.p_iv .related_item_img {
  aspect-ratio: 278/418;
  border-radius: 14rem;
  overflow: hidden;
  background: #ddd;
}
.p_iv .related_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p_iv .related_item_name {
  font-size: 2.3rem;
  color: #c90221;
  font-weight: bold;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .p_iv .related_item_name {
    font-size: 1.8rem;
  }
}
.p_iv .related_item_info {
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .p_iv .related_item_info {
    font-size: 1.2rem;
  }
}

.p_schedule .schedule_unit {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 7.2rem;
}
@media (max-width: 767px) {
  .p_schedule .schedule_unit {
    margin-top: 4rem;
    flex-direction: column;
    gap: 0.8rem 0;
  }
}
.p_schedule .schedule_unit + .schedule_unit {
  margin-top: 3.5rem;
}
@media (max-width: 767px) {
  .p_schedule .schedule_unit + .schedule_unit {
    margin-top: 3.2rem;
  }
}
.p_schedule .schedule_tl {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  gap: 0 8rem;
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  .p_schedule .schedule_tl {
    margin-top: 0;
  }
}
.p_schedule .schedule_tl_num {
  font-size: 4.5rem;
}
@media (max-width: 767px) {
  .p_schedule .schedule_tl_num {
    font-size: 2.4rem;
  }
}
.p_schedule .schedule_tl::after {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background: #002b6a;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2.3rem;
  border-radius: 60%;
}
@media (max-width: 767px) {
  .p_schedule .schedule_tl::after {
    display: none;
  }
}
.p_schedule .schedule_box {
  flex: 0 0 104rem;
  background: #fff;
  border-radius: 2rem;
  padding: 3.5rem 3.5rem 3.5rem 7rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0 5.2rem;
}
@media (max-width: 767px) {
  .p_schedule .schedule_box {
    width: 100%;
    flex: 0 0 auto;
    border-radius: 1rem;
    padding: 2rem 1.6rem 2rem;
    flex-direction: column-reverse;
  }
}
.p_schedule .schedule_box.__txt {
  padding: 3.5rem 5rem 5rem 7rem;
}
@media (max-width: 767px) {
  .p_schedule .schedule_box.__txt {
    padding: 2rem 1.6rem 2rem;
  }
}
@media (max-width: 767px) {
  .p_schedule .schedule_box.__txt .schedule_box_ttl {
    margin-top: 0;
  }
}
.p_schedule .schedule_box_media {
  flex: 0 0 30rem;
  aspect-ratio: 300/220;
  border-radius: 2rem;
  overflow: hidden;
}
.p_schedule .schedule_box_media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .p_schedule .schedule_box_media {
    border-radius: 1rem;
    width: 100%;
    flex: 0 0 auto;
  }
}
.p_schedule .schedule_box_ttl {
  margin-top: 0.8rem;
  line-height: 1.3214285714;
  font-weight: bold;
}
@media (max-width: 767px) {
  .p_schedule .schedule_box_ttl {
    margin-top: 1.2rem;
  }
}
.p_schedule .schedule_box_txt {
  margin-top: 4.4rem;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .p_schedule .schedule_box_txt {
    margin-top: 0.8rem;
  }
}
.p_talk {
  padding-top: 12rem;
}
@media (max-width: 767px) {
  .p_talk {
    padding-top: 8rem;
  }
}
.p_talk .mv {
  aspect-ratio: 1934/574;
  position: relative;
}
@media (max-width: 767px) {
  .p_talk .mv {
    aspect-ratio: 375/200;
  }
}
.p_talk .mv > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .p_talk .mv > img {
    -o-object-position: 77% 53%;
       object-position: 77% 53%;
  }
}
.p_talk .mv_ttl {
  position: relative;
  z-index: 2;
  padding-top: 24.4rem;
}
@media (max-width: 767px) {
  .p_talk .mv_ttl {
    padding-top: 0.8rem;
  }
}
.p_talk .mv_ttl_en {
  font-size: 2.8rem;
  font-weight: bold;
  display: block;
}
@media (max-width: 767px) {
  .p_talk .mv_ttl_en {
    font-size: 1.6rem;
  }
}
.p_talk .mv_ttl_jp {
  font-size: 6rem;
  display: block;
  margin-top: 2.8rem;
}
@media (max-width: 767px) {
  .p_talk .mv_ttl_jp {
    font-size: 2.4rem;
    margin-top: 0.5rem;
  }
}
.p_talk .c_subMv_ly2_bc {
  margin-top: 5.2rem;
}
@media (max-width: 767px) {
  .p_talk .c_subMv_ly2_bc {
    margin-top: 1rem;
  }
}
.p_talk .talk {
  margin-top: 4.4rem;
}
@media (max-width: 767px) {
  .p_talk .talk {
    margin-top: 3.2rem;
  }
}
.p_talk .talk_ttl {
  text-align: center;
  font-size: 5rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .p_talk .talk_ttl {
    font-size: 4rem;
  }
}
.p_talk .talk_list {
  margin-top: 5.5rem;
  display: flex;
  gap: 0 3.8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
}
@media (max-width: 767px) {
  .p_talk .talk_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.4rem 0;
    margin-top: 4rem;
  }
}
.p_talk .talk_item {
  background: #fff;
  padding: 4rem 4rem 4rem 2.5rem;
  border-radius: 2.2rem;
  gap: 0 6.5rem;
  display: flex;
  align-items: center;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .p_talk .talk_item {
    grid-template-columns: repeat(1, 1fr);
    padding: 2rem 1.6rem 2.5rem;
    border-radius: 1rem;
    gap: 0 2rem;
  }
}
.p_talk .talk_item:nth-child(2) {
  margin-top: 15.8rem;
}
@media (max-width: 767px) {
  .p_talk .talk_item:nth-child(2) {
    margin-top: 0;
  }
}
.p_talk .talk_item:nth-child(n+4) {
  /* ここにスタイルを書く */
  margin-top: 3.2rem;
}
@media (max-width: 767px) {
  .p_talk .talk_item:nth-child(n+4) {
    margin-top: 0;
  }
}
.p_talk .talk_item:nth-child(3), .p_talk .talk_item:nth-child(5), .p_talk .talk_item:nth-child(7) {
  margin-top: -12.6rem;
}
@media (max-width: 767px) {
  .p_talk .talk_item:nth-child(3), .p_talk .talk_item:nth-child(5), .p_talk .talk_item:nth-child(7) {
    margin-top: 0;
  }
}
.p_talk .talk_item_media {
  flex: 0 0 19rem;
  aspect-ratio: 1/1;
  border-radius: 60%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p_talk .talk_item_media {
    flex: 0 0 12rem;
    width: 16rem;
    margin: 0 auto;
  }
}
.p_talk .talk_item_media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p_talk .talk_item_txtArea {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .p_talk .talk_item_txtArea {
    margin-top: 1.2rem;
  }
}
.p_talk .talk_item_cat {
  padding: 1rem;
  background: #002b6a;
  color: #fff;
}
@media (max-width: 767px) {
  .p_talk .talk_item_cat {
    padding: 0.5rem;
  }
}
.p_talk .talk_item_postion {
  margin-top: 1.2rem;
}
@media (max-width: 767px) {
  .p_talk .talk_item_postion {
    margin-top: 0.4rem;
  }
}
.p_talk .talk_item_name {
  font-size: 2.5rem;
  margin-top: 1.2rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .p_talk .talk_item_name {
    font-size: 2.2rem;
    margin-top: 1rem;
  }
}
.p_talk .talk_item_desc {
  margin-top: 2.2rem;
}
@media (max-width: 767px) {
  .p_talk .talk_item_desc {
    margin-top: 1rem;
  }
}
.p_talk .talk_hero {
  margin-top: 9.6rem;
  aspect-ratio: 560/315;
}
.p_talk .talk_hero iframe {
  width: 100%;
  height: 100%;
}
.p_talk .talk_thema {
  margin-top: 7.8rem;
  display: flex;
  border-radius: 2.2rem;
  background: #002b6a;
  padding: 3rem;
  align-items: center;
}
@media (max-width: 767px) {
  .p_talk .talk_thema {
    border-radius: 1rem;
    margin-top: 4rem;
    flex-direction: column;
    gap: 1rem 0;
    align-items: flex-start;
    padding: 2rem;
  }
}
.p_talk .talk_thema_en {
  font-size: 3.5rem;
  margin-right: 6.2rem;
  position: relative;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .p_talk .talk_thema_en {
    font-size: 2.4rem;
    padding-left: 4rem;
    margin-right: 0;
  }
}
.p_talk .talk_thema_en::before {
  content: "";
  width: 0.1rem;
  height: 6rem;
  background: #fff;
  position: absolute;
  top: 50%;
  right: -3.1rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media (max-width: 767px) {
  .p_talk .talk_thema_en::before {
    height: 2.8rem;
    transform: rotate(90deg) translateY(-50%);
    top: 0;
    left: 0;
    transform-origin: center;
  }
}
.p_talk .talk_thema_jp {
  font-size: 2.5rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .p_talk .talk_thema_jp {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.p_talk .talk_unit {
  margin-top: 5.4rem;
}
@media (max-width: 767px) {
  .p_talk .talk_unit {
    margin-top: 4rem;
  }
}
.p_talk .talk_unit + .talk_thema {
  margin-top: 10rem;
}
@media (max-width: 767px) {
  .p_talk .talk_unit + .talk_thema {
    margin-top: 6rem;
  }
}
.p_talk .talk_cont {
  display: flex;
  align-items: center;
  gap: 0 8.2rem;
}
@media (max-width: 767px) {
  .p_talk .talk_cont {
    align-items: flex-start;
    gap: 0 2rem;
  }
}
.p_talk .talk_cont:not(:first-of-type) {
  margin-top: 4rem;
}
.p_talk .talk_cont:nth-of-type(odd) .talk_cont_txt {
  padding: 3.4rem 3.2rem 3.4rem 4.2rem;
}
@media (max-width: 767px) {
  .p_talk .talk_cont:nth-of-type(odd) .talk_cont_txt {
    padding: 1.6rem;
  }
}
.p_talk .talk_cont:nth-of-type(odd) .talk_cont_txt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -29.5px;
  transform: translateY(-50%);
  width: 30px;
  height: 34px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (max-width: 767px) {
  .p_talk .talk_cont:nth-of-type(odd) .talk_cont_txt::before {
    width: 19.5px;
    height: 22.1px;
    left: -19px;
    top: 1.9rem;
    transform: translateY(0);
  }
}
.p_talk .talk_cont:nth-of-type(even) {
  flex-direction: row-reverse;
}
.p_talk .talk_cont:nth-of-type(even) .talk_cont_txt {
  padding: 3.2rem 3.2rem;
}
@media (max-width: 767px) {
  .p_talk .talk_cont:nth-of-type(even) .talk_cont_txt {
    padding: 1.6rem;
  }
}
.p_talk .talk_cont:nth-of-type(even) .talk_cont_txt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: auto;
  right: -29.5px;
  transform: translateY(-50%) scaleX(-1);
  width: 30px;
  height: 34px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (max-width: 767px) {
  .p_talk .talk_cont:nth-of-type(even) .talk_cont_txt::before {
    width: 19.5px;
    height: 22.1px;
    right: -19px;
    top: 1.9rem;
    transform: translateY(0) scaleX(-1);
  }
}
.p_talk .talk_cont.__01 .talk_cont_txt {
  border-color: #002b6a;
  --arrow-color: #002b6a;
}
.p_talk .talk_cont.__01 .talk_cont_name {
  color: #002b6a;
}
.p_talk .talk_cont.__02 .talk_cont_txt {
  border-color: #cd174c;
  --arrow-color: #cd174c;
}
.p_talk .talk_cont.__02 .talk_cont_name {
  color: #cd174c;
}
.p_talk .talk_cont.__03 .talk_cont_txt {
  border-color: #50ac63;
  --arrow-color: #50ac63;
}
.p_talk .talk_cont.__03 .talk_cont_name {
  color: #50ac63;
}
.p_talk .talk_cont.__04 .talk_cont_txt {
  border-color: #b29444;
  --arrow-color: #b29444;
}
.p_talk .talk_cont.__04 .talk_cont_name {
  color: #b29444;
}
.p_talk .talk_cont.__01 .talk_cont_txt::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 34' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0 L0 17 L30 34' fill='%23fff' stroke='%23002b6a' stroke-width='2' stroke-linejoin='miter' stroke-linecap='butt'/%3E%3C/svg%3E");
}
.p_talk .talk_cont.__02 .talk_cont_txt::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 34' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0 L0 17 L30 34' fill='%23fff' stroke='%23cd174c' stroke-width='2' stroke-linejoin='miter' stroke-linecap='butt'/%3E%3C/svg%3E");
}
.p_talk .talk_cont.__03 .talk_cont_txt::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 34' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0 L0 17 L30 34' fill='%23fff' stroke='%2350ac63' stroke-width='2' stroke-linejoin='miter' stroke-linecap='butt'/%3E%3C/svg%3E");
}
.p_talk .talk_cont.__04 .talk_cont_txt::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 34' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0 L0 17 L30 34' fill='%23fff' stroke='%23b29444' stroke-width='2' stroke-linejoin='miter' stroke-linecap='butt'/%3E%3C/svg%3E");
}
.p_talk .talk_cont_lBlk {
  flex: 0 0 14rem;
}
@media (max-width: 767px) {
  .p_talk .talk_cont_lBlk {
    flex: 0 0 8rem;
  }
}
.p_talk .talk_cont_name {
  display: block;
  text-align: center;
  font-size: 1.8rem;
  margin-top: 0.8rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .p_talk .talk_cont_name {
    font-size: 1.2rem;
  }
}
.p_talk .talk_cont_ic {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 60%;
  overflow: hidden;
}
.p_talk .talk_cont_ic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .p_talk .talk_cont_ic {
    flex: 0 0 8rem;
  }
}
.p_talk .talk_cont_txt {
  position: relative;
  border-radius: 1.2rem;
  background: #fff;
  box-shadow: 0 0 21px rgba(0, 0, 0, 0.09);
  border: 2.5px solid transparent;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .p_talk .talk_cont_txt {
    border: 1.5px solid transparent;
  }
}
.p_talk .c_iv {
  background: #fff;
  margin-top: 35rem;
  padding-top: 7rem;
}
@media (max-width: 767px) {
  .p_talk .c_iv {
    margin-top: 12rem;
    padding-top: 5rem;
    padding-bottom: 1rem;
  }
}
.p_talk .c_iv::before {
  top: -27.2rem;
  background-image: url(../images/grd_w_bg.png);
}
@media (max-width: 767px) {
  .p_talk .c_iv::before {
    top: -8rem;
  }
}
.p_talk ~ .c_footer::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: calc(100% + 11rem);
  background: #fff;
  position: absolute;
  top: -33rem;
  left: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .p_talk ~ .c_footer::after {
    top: -15rem;
    height: 11rem;
  }
}

.p_talent .mv {
  padding: 16rem 0 20rem;
  margin-top: -10.2rem;
}
@media (max-width: 767px) {
  .p_talent .mv {
    margin-top: -6rem;
    padding: 10rem 0 10rem;
  }
}
.p_talent .mv_img {
  width: 48rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .p_talent .mv_img {
    width: 24rem;
  }
}
.p_talent .about {
  margin-top: 0;
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .p_talent .about {
    padding-bottom: 0rem;
  }
}
.p_talent .about::before {
  content: "";
  top: -26.2rem;
}
@media (max-width: 767px) {
  .p_talent .about::before {
    top: -10rem;
  }
}
.p_talent .about_subTtl {
  font-size: 4.8rem;
}
@media (max-width: 767px) {
  .p_talent .about_subTtl {
    font-size: 2.4rem;
  }
}
.p_talent .about_txt {
  margin-top: 4.8rem;
}
@media (max-width: 767px) {
  .p_talent .about_txt {
    margin-top: 2rem;
  }
}
.p_talent .message {
  padding-top: 6rem;
}
@media (max-width: 767px) {
  .p_talent .message::before {
    content: "";
    top: -10rem;
  }
}
@media (max-width: 767px) {
  .p_talent .message {
    padding-top: 0;
  }
}
.p_talent .message_ttl {
  margin-top: 9rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .p_talent .message_ttl {
    margin-top: 5.2rem;
  }
}
.p_talent .message_lead {
  margin-top: 11rem;
}
@media (max-width: 767px) {
  .p_talent .message_lead {
    margin-top: 4rem;
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
  }
}
.p_talent .message_box {
  background: #ffffff;
  border-radius: 2.2rem;
  padding: 3.8rem 3rem 3.4rem;
  margin-top: 8.2rem;
}
@media (max-width: 767px) {
  .p_talent .message_box {
    margin-top: 4.4rem;
    padding: 2rem 1.6rem;
    border-radius: 1rem;
  }
}
.p_talent .message_box + .message_box {
  margin-top: 4.8rem;
}
@media (max-width: 767px) {
  .p_talent .message_box + .message_box {
    margin-top: 2.4rem;
  }
}
.p_talent .message_box_top {
  display: flex;
  align-items: center;
  gap: 0 5rem;
}
@media (max-width: 767px) {
  .p_talent .message_box_top {
    display: block;
  }
}
.p_talent .message_box_ic {
  flex: 0 0 19rem;
  aspect-ratio: 1/1;
  border-radius: 60%;
}
@media (max-width: 767px) {
  .p_talent .message_box_ic {
    width: 18rem;
    margin: 0 auto;
  }
}
.p_talent .message_box_ic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p_talent .message_box_info {
  margin-top: 2.4rem;
}
.p_talent .message_box_main {
  margin-top: 3.4rem;
  padding-top: 3.8rem;
  border-top: 0.1rem solid #bebebe;
  display: flex;
  align-items: flex-start;
  gap: 0 4.2rem;
}
@media (max-width: 767px) {
  .p_talent .message_box_main {
    margin-top: 2.4rem;
    padding-top: 2.8rem;
    flex-direction: column-reverse;
    gap: 2rem 0;
  }
}
.p_talent .message_box_en {
  font-size: 2rem;
  margin-top: 2.2rem;
}
@media (max-width: 767px) {
  .p_talent .message_box_en {
    font-size: 1.6rem;
    margin-top: 0;
  }
}
.p_talent .message_box_ttl {
  margin-top: 2.8rem;
  padding-left: 4.4rem;
  position: relative;
  font-weight: bold;
}
@media (max-width: 767px) {
  .p_talent .message_box_ttl {
    padding-left: 2.8rem;
    margin-top: 1.2rem;
  }
}
.p_talent .message_box_ttl::before {
  content: "";
  background: url(../images/p_talent_box_message_ic.png) no-repeat center center/cover;
  width: 2.8rem;
  height: 2.8rem;
  display: inline-block;
  position: absolute;
  top: 0.6rem;
  left: 0;
}
@media (max-width: 767px) {
  .p_talent .message_box_ttl::before {
    width: 2rem;
    height: 2rem;
  }
}
.p_talent .message_box_txt {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .p_talent .message_box_txt {
    margin-top: 1rem;
  }
}
.p_talent .message_box_media {
  flex: 0 0 50rem;
  aspect-ratio: 500/330;
  border-radius: 2.2rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p_talent .message_box_media {
    flex: 0 0 auto;
    border-radius: 1rem;
    overflow: hidden;
    width: 100%;
  }
}
.p_talent .message_box_media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p_talent .message_bottomImg {
  margin-top: 6rem;
  aspect-ratio: 1200/460;
  border-radius: 2.2rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p_talent .message_bottomImg {
    margin-top: 5rem;
    border-radius: 1rem;
    aspect-ratio: 1200/600;
    overflow: hidden;
  }
}
.p_talent .message_bottomImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p_messeage .messeage {
  margin-top: 10rem;
}
@media (max-width: 767px) {
  .p_messeage .messeage {
    margin-top: 3rem;
  }
}
.p_messeage .messeage_main {
  margin-top: 6rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .p_messeage .messeage_main {
    margin-top: 2rem;
  }
}
.p_messeage .messeage_main_top {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .p_messeage .messeage_main_top {
    display: block;
  }
}
.p_messeage .messeage_main_top_img {
  width: 56rem;
  margin-right: 5.2rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .p_messeage .messeage_main_top_img {
    width: 35rem;
    margin: 0 auto;
  }
}
.p_messeage .messeage_main_bottom {
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .p_messeage .messeage_main_bottom {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .p_messeage .messeage_main_txt {
    margin-top: 2.4rem;
  }
}
.p_messeage .messeage_president {
  margin-top: 0;
  margin-left: auto;
  width: 40rem;
}
@media (max-width: 767px) {
  .p_messeage .messeage_president {
    width: 20rem;
    margin-top: 2.4rem;
  }
}
.p_messeage .messeage_president span {
  display: block;
  font-size: 1.8rem;
  margin-left: 3.5rem;
}
@media (max-width: 767px) {
  .p_messeage .messeage_president span {
    font-size: 1rem;
    margin-left: 2rem;
  }
}
.p_messeage .vision {
  position: relative;
  margin-top: 22.7rem;
}
@media (max-width: 767px) {
  .p_messeage .vision {
    margin-top: 15rem;
  }
}
.p_messeage .vision_lead {
  margin-top: 4rem;
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 4.8rem;
  margin-top: 12rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .p_messeage .vision_lead {
    margin-top: 5rem;
    font-size: 1.8rem;
  }
}
.p_messeage .vision_list {
  margin-top: 5.4rem;
}
@media (max-width: 767px) {
  .p_messeage .vision_list {
    margin-top: 4rem;
  }
}
.p_messeage .vision_item {
  background-color: #002b6a;
  color: white;
  padding: 2.4rem 4rem;
  width: 100%;
  height: auto;
  border-radius: 2rem 11.3rem 11.3rem 2rem;
  display: flex;
  align-items: center;
  max-width: 100rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .p_messeage .vision_item {
    height: 10rem;
    padding: 0.5rem 1.6rem;
    border-radius: 1rem;
  }
}
.p_messeage .vision_item_num {
  font-size: 5rem;
  width: 16rem;
}
@media (max-width: 767px) {
  .p_messeage .vision_item_num {
    width: 8rem;
    font-size: 5.2rem;
  }
}
.p_messeage .vision_item_txt {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .p_messeage .vision_item_txt {
    margin-top: 1.5rem;
  }
}
.p_messeage .vision_item_ttl {
  font-size: 4rem;
}
@media (max-width: 767px) {
  .p_messeage .vision_item_ttl {
    font-size: 2rem;
  }
}
.p_messeage .vision_item:not(:first-child) {
  margin-top: 2.1rem;
}
.p_messeage .strategy {
  position: relative;
  margin-top: 25rem;
}
@media (max-width: 767px) {
  .p_messeage .strategy {
    margin-top: 15rem;
  }
}
.p_messeage .strategy_list {
  margin-top: 5.8rem;
}
.p_messeage .strategy_item {
  width: auto;
  height: auto;
  background-color: white;
  padding: 5.2rem 9.2rem 5.2rem 6.3rem;
  border-radius: 2.2rem;
  border-radius: 2rem 11.3rem 11.3rem 2rem;
}
@media (max-width: 767px) {
  .p_messeage .strategy_item {
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    height: auto;
  }
}
.p_messeage .strategy_item_head {
  font-size: 3.1rem;
  color: #002b6a;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .p_messeage .strategy_item_head {
    font-size: 2rem;
  }
}
.p_messeage .strategy_item_ttl {
  margin-top: 5.2rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .p_messeage .strategy_item_ttl {
    margin-top: 1rem;
  }
}
.p_messeage .strategy_item_txt {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .p_messeage .strategy_item_txt {
    margin-top: 1rem;
  }
}
.p_messeage .strategy_item_img {
  display: block;
  width: 73.2rem;
  margin: 5rem auto 0 auto;
}
@media (max-width: 767px) {
  .p_messeage .strategy_item_img {
    width: 30rem;
    margin-top: 2rem;
  }
}
.p_messeage .strategy_item:not(:first-child) {
  margin-top: 5.2rem;
}

.p_business .salesPos {
  position: relative;
  margin-top: -30rem;
}
@media (max-width: 767px) {
  .p_business .salesPos {
    margin-top: -26rem;
  }
}
.p_business .salesPos_kv {
  height: 82rem;
  padding-top: 30rem;
}
@media (max-width: 767px) {
  .p_business .salesPos_kv {
    height: 43rem;
    padding-top: 18rem;
  }
}
.p_business .salesPos_kv h2 {
  position: relative;
  z-index: 3;
}
.p_business .salesPos_kv .c_gld_border {
  margin-top: 48rem;
  z-index: 0;
}
@media (max-width: 767px) {
  .p_business .salesPos_kv .c_gld_border {
    margin-top: 25rem;
  }
}
.p_business .salesPos_kv_img0 {
  width: 53.1rem;
  position: absolute;
  top: 4rem;
  left: 100rem;
}
@media (max-width: 767px) {
  .p_business .salesPos_kv_img0 {
    width: 20rem;
    top: 14rem;
    right: 1rem;
    left: auto;
  }
}
.p_business .salesPos_kv_img1 {
  width: 85rem;
  position: absolute;
  top: 5rem;
  right: 0;
}
.p_business .salesPos_main {
  position: relative;
  margin-top: -34rem;
  border-radius: 2.2rem;
  padding: 6.5rem 7rem;
}
@media (max-width: 767px) {
  .p_business .salesPos_main {
    border-radius: 1rem;
    padding: 3rem 2rem;
    margin-top: -13rem;
  }
}
.p_business .salesPos_main_ttl {
  text-align: center;
  font-size: 3.8rem;
}
@media (max-width: 767px) {
  .p_business .salesPos_main_ttl {
    font-size: 2.2rem;
  }
}
.p_business .salesPos_main_img {
  margin-top: 5.8rem;
  border-radius: 2rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p_business .salesPos_main_img {
    margin-top: 3rem;
    border-radius: 1rem;
  }
}
.p_business .salesPos_main_lead {
  margin-top: 4.2rem;
}
@media (max-width: 767px) {
  .p_business .salesPos_main_lead {
    margin-top: 2rem;
  }
}
.p_business .salesPos_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 6rem 0 0;
}
@media (max-width: 767px) {
  .p_business .salesPos_item {
    display: block;
    margin-top: 2rem;
  }
}
.p_business .salesPos_item_img {
  width: 50rem;
  flex-shrink: 0;
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 500/330;
}
.p_business .salesPos_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .p_business .salesPos_item_img {
    width: auto;
    border-radius: 1rem;
  }
}
.p_business .salesPos_item_lead {
  width: 51rem;
}
@media (max-width: 767px) {
  .p_business .salesPos_item_lead {
    width: auto;
  }
}
.p_business .salesPos_item_lead h4 {
  margin-top: 1.3rem;
}
@media (max-width: 767px) {
  .p_business .salesPos_item_lead h4 {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .p_business .salesPos_item_lead_txt {
    margin-top: 1rem;
  }
}
@media (max-width: 767px) {
  .p_business .salesPos_item_en {
    margin-top: 1rem;
  }
}
.p_business .salesPos_item:nth-child(odd) {
  flex-direction: row;
}
.p_business .salesPos_item:nth-child(even) {
  flex-direction: row-reverse;
}
.p_business .salesPos_item:not(:first-child) {
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .p_business .salesPos_item:not(:first-child) {
    margin-top: 4.4rem;
  }
}
.p_business .generalPos {
  position: relative;
  margin-top: 20rem;
}
@media (max-width: 767px) {
  .p_business .generalPos {
    margin-top: 6rem;
  }
}
.p_business .generalPos_bg {
  width: 100%;
  position: absolute;
  top: -23rem;
  left: 0;
}
@media (max-width: 767px) {
  .p_business .generalPos_bg {
    width: 70rem;
    position: absolute;
    top: -7rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
.p_business .generalPos .l_inner {
  position: relative;
  z-index: 2;
}
.p_business .generalPos_kv {
  position: relative;
  z-index: 2;
}
.p_business .generalPos_kv_img {
  width: 56rem;
  position: absolute;
  top: -37rem;
  right: 0;
}
@media (max-width: 767px) {
  .p_business .generalPos_kv_img {
    width: 20rem;
    top: -12rem;
    right: 1rem;
  }
}
.p_business .generalPos_list {
  border-radius: 2.2rem;
  padding: 6.5rem 7rem;
  margin-top: 50rem;
}
@media (max-width: 767px) {
  .p_business .generalPos_list {
    border-radius: 1rem;
    padding: 3rem 2rem;
    margin-top: 15rem;
  }
}
.p_business .generalPos_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .p_business .generalPos_item {
    display: block;
  }
}
.p_business .generalPos_item_img {
  width: 27rem;
  flex-shrink: 0;
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.p_business .generalPos_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .p_business .generalPos_item_img {
    width: auto;
    border-radius: 1rem;
    aspect-ratio: 1.35/1;
  }
}
.p_business .generalPos_item_lead {
  width: 75rem;
}
@media (max-width: 767px) {
  .p_business .generalPos_item_lead {
    width: auto;
  }
}
.p_business .generalPos_item_lead h4 {
  margin-top: 1.3rem;
}
@media (max-width: 767px) {
  .p_business .generalPos_item_lead h4 {
    margin-top: 0;
  }
}
.p_business .generalPos_item_lead_txt {
  margin-top: 2.8rem;
}
@media (max-width: 767px) {
  .p_business .generalPos_item_lead_txt {
    margin-top: 1rem;
  }
}
@media (max-width: 767px) {
  .p_business .generalPos_item_en {
    margin-top: 1rem;
  }
}
.p_business .generalPos_item:nth-child(odd) {
  flex-direction: row;
}
.p_business .generalPos_item:nth-child(even) {
  flex-direction: row-reverse;
}
.p_business .generalPos_item:not(:first-child) {
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .p_business .generalPos_item:not(:first-child) {
    margin-top: 4.4rem;
  }
}

.p_aboutus .l_inner {
  position: relative;
}
.p_aboutus .c_subMv_ly2 {
  padding-top: 11.2rem;
}
@media (max-width: 767px) {
  .p_aboutus .c_subMv_ly2 {
    padding-top: 8rem;
  }
}
.p_aboutus .c_subMv_ly2_bc {
  margin-top: 0;
}
.p_aboutus .c_subMv_ly2_ttl {
  margin-top: 11.4rem;
}
@media (max-width: 767px) {
  .p_aboutus .c_subMv_ly2_ttl {
    margin-top: 6.4rem;
  }
}
.p_aboutus .subttl {
  text-align: center;
  margin-top: 7.8rem;
  font-size: 4.4rem;
  position: relative;
}
@media (max-width: 767px) {
  .p_aboutus .subttl {
    font-size: 2.4rem;
    font-feature-settings: "palt";
    line-height: 1.333;
    width: 30rem;
    margin: 5rem auto 0;
  }
}
.p_aboutus .subttl::before, .p_aboutus .subttl::after {
  content: "〜";
  font-size: inherit;
}
@media (max-width: 767px) {
  .p_aboutus .subttl::before, .p_aboutus .subttl::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
}
@media (max-width: 767px) {
  .p_aboutus .subttl::before {
    left: 0;
  }
}
@media (max-width: 767px) {
  .p_aboutus .subttl::after {
    right: 0;
  }
}
.p_aboutus .subttl span {
  color: #c90526;
}
.p_aboutus .nav {
  display: flex;
  justify-content: center;
  width: auto;
  gap: 4rem 4.8rem;
  margin: 7rem auto 8rem;
}
@media (max-width: 767px) {
  .p_aboutus .nav {
    flex-direction: column;
    width: 25rem;
    margin-top: 5rem;
    margin-bottom: 5rem;
    gap: 2rem 0;
  }
}
.p_aboutus .nav_item {
  display: flex;
  gap: 0 1.5rem;
  width: auto;
}
@media (max-width: 767px) {
  .p_aboutus .nav_item {
    gap: 0 2.2rem;
  }
}
.p_aboutus .nav_num {
  font-size: 3rem;
}
.p_aboutus .nav_num.__01 {
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .p_aboutus .nav_num {
    font-size: 2rem;
  }
}
.p_aboutus .nav_txt {
  font-size: 3rem;
}
@media (max-width: 767px) {
  .p_aboutus .nav_txt {
    font-size: 2rem;
  }
}
.p_aboutus .f_obj {
  position: absolute;
}
.p_aboutus .f_obj.__01 {
  width: 11.3rem;
  top: 52rem;
  left: -20rem;
}
@media (max-width: 767px) {
  .p_aboutus .f_obj.__01 {
    width: 5rem;
    top: 41rem;
    left: 3rem;
  }
}
.p_aboutus .f_obj.__02 {
  width: 11.2rem;
  top: 32rem;
  left: -12rem;
}
@media (max-width: 767px) {
  .p_aboutus .f_obj.__02 {
    width: 5rem;
    top: 47rem;
    left: 14rem;
  }
}
.p_aboutus .f_obj.__03 {
  width: 8.2rem;
  top: 42rem;
  left: -0.3rem;
}
@media (max-width: 767px) {
  .p_aboutus .f_obj.__03 {
    width: 5rem;
    top: 45rem;
    left: 28rem;
  }
}
.p_aboutus .f_obj.__04 {
  width: 11.2rem;
  top: 39rem;
  right: -7rem;
}
@media (max-width: 767px) {
  .p_aboutus .f_obj.__04 {
    display: none;
  }
}
.p_aboutus .f_obj.__05 {
  width: 8.3rem;
  top: 32rem;
  right: -18.4rem;
}
@media (max-width: 767px) {
  .p_aboutus .f_obj.__05 {
    display: none;
  }
}
.p_aboutus .f_obj.__06 {
  width: 11.3rem;
  top: 46rem;
  right: -21rem;
}
@media (max-width: 767px) {
  .p_aboutus .f_obj.__06 {
    display: none;
  }
}
.p_aboutus .bg_line {
  position: absolute;
  left: 0;
  z-index: 2;
}
.p_aboutus .bg_line.__01 {
  top: 72rem;
}
@media (max-width: 767px) {
  .p_aboutus .bg_line.__01 {
    display: none;
  }
}
.p_aboutus .bg_line.__02 {
  top: 183rem;
}
@media (max-width: 767px) {
  .p_aboutus .bg_line.__02 {
    top: 156.3rem;
  }
}
.p_aboutus .section {
  position: relative;
  z-index: 3;
}
.p_aboutus .section_main_img {
  margin-top: 8rem;
  border-radius: 1rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p_aboutus .section_main_img {
    margin-top: 12rem;
  }
}
.p_aboutus .section_main_img + .section_box {
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .p_aboutus .section_main_img + .section_box {
    margin-top: 5rem;
  }
}
.p_aboutus .section_box {
  border-radius: 1rem;
  overflow: hidden;
  padding: 4.5rem 6rem 5rem;
  position: relative;
}
@media (max-width: 767px) {
  .p_aboutus .section_box {
    padding: 2rem 1.6rem 2rem;
  }
}
.p_aboutus .section_box_top {
  display: flex;
  align-items: center;
  gap: 0 4rem;
  padding-left: 0;
}
@media (max-width: 767px) {
  .p_aboutus .section_box_top {
    padding-left: 0;
    padding-bottom: 2rem;
    gap: 0 2.4rem;
  }
}
.p_aboutus .section_box_media {
  width: 37rem;
  border-radius: 2rem;
  overflow: hidden;
  position: absolute;
  top: 2.5rem;
  right: 5.5rem;
}
@media (max-width: 767px) {
  .p_aboutus .section_box_media {
    position: static;
    margin-top: 0;
    border-radius: 1rem;
    width: 100%;
  }
}
.p_aboutus .section_box_media.asp_1_9 {
  aspect-ratio: 1/0.9;
}
.p_aboutus .section_box_media.asp_1_1 {
  aspect-ratio: 1/1;
}
.p_aboutus .section_box_media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p_aboutus .section_box_num {
  font-size: 6rem;
}
@media (max-width: 767px) {
  .p_aboutus .section_box_num {
    font-size: 2.4rem;
  }
}
.p_aboutus .section_box_ttl {
  font-size: 4.2rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .p_aboutus .section_box_ttl {
    font-size: 2.4rem;
  }
}
.p_aboutus .section_box_head {
  font-size: 2.6rem;
  margin-top: 2.4rem;
  margin-top: 6rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.p_aboutus .section_box_head::before, .p_aboutus .section_box_head::after {
  content: "〜";
  font-size: inherit;
}
@media (max-width: 767px) {
  .p_aboutus .section_box_head {
    gap: 0 0.4rem;
    justify-content: center;
    text-align: center;
    font-size: 2rem;
    margin-top: 2.4rem;
    line-height: 1.3;
  }
}
.p_aboutus .section_box_lead {
  font-size: 1.9rem;
  margin-top: 2.2rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .p_aboutus .section_box_lead {
    font-size: 1.6rem;
    line-height: 1.5;
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
  }
}
.p_aboutus .section_box_lead + .section_box_dl {
  border-top: 1px solid #c4c4c4;
  margin-top: 10rem;
  padding-top: 4rem;
}
@media (max-width: 767px) {
  .p_aboutus .section_box_lead + .section_box_dl {
    margin-top: 2.4rem;
    padding-top: 2rem;
  }
}
.p_aboutus .section_box_dl {
  margin-top: 7rem;
}
@media (max-width: 767px) {
  .p_aboutus .section_box_dl {
    margin-top: 3rem;
  }
}
.p_aboutus .section_box_dt {
  font-weight: bold;
}
.p_aboutus .section_box_dt + .section_box_dd {
  margin-top: 2.4rem;
}
@media (max-width: 767px) {
  .p_aboutus .section_box_dt + .section_box_dd {
    margin-top: 1.6rem;
  }
}
.p_aboutus .section_box.__ly02 .section_box_head,
.p_aboutus .section_box.__ly02 .section_box_top,
.p_aboutus .section_box.__ly02 .section_box_dl,
.p_aboutus .section_box.__ly02 .section_box_lead {
  width: 55rem;
}
@media (max-width: 767px) {
  .p_aboutus .section_box.__ly02 .section_box_head,
  .p_aboutus .section_box.__ly02 .section_box_top,
  .p_aboutus .section_box.__ly02 .section_box_dl,
  .p_aboutus .section_box.__ly02 .section_box_lead {
    width: 100%;
  }
}
.p_aboutus .section_box.__ly02 .section_box_media {
  width: 50rem;
  border-radius: 2rem;
  overflow: hidden;
  position: absolute;
  right: 6rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media (max-width: 767px) {
  .p_aboutus .section_box.__ly02 .section_box_media {
    position: static;
    transform: unset;
    margin-top: 0;
    border-radius: 1rem;
    width: 100%;
  }
}
.p_aboutus .section_box.__ly02 .section_box_media.__lyTop {
  transform: unset;
  right: 6rem;
  top: 5rem;
}
.p_aboutus .section_box.__ly02 .section_box_dl {
  margin-top: 2rem;
  padding-top: 2rem;
}
.p_aboutus .section.__02 {
  margin-top: -4rem;
  position: relative;
  z-index: 1;
  margin-top: 30rem;
  background: #002b6a;
  padding-bottom: 11.8rem;
}
@media (max-width: 767px) {
  .p_aboutus .section.__02 {
    margin-top: 14rem;
    padding-bottom: 6.4rem;
  }
}
.p_aboutus .section.__02 .section_obj {
  position: absolute;
  top: -23rem;
  left: 50rem;
  width: 18.2rem;
}
@media (max-width: 767px) {
  .p_aboutus .section.__02 .section_obj {
    top: -10rem;
    left: 3rem;
    width: 8rem;
  }
}
.p_aboutus .section.__02 .l_inner {
  z-index: 2;
  position: relative;
}
.p_aboutus .section.__02::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 111.8rem;
  background: url(../images/p_aboutus_bg_b.png) no-repeat top center/cover;
  position: absolute;
  top: -34rem;
  pointer-events: none;
}
@media (max-width: 767px) {
  .p_aboutus .section.__02::before {
    background: url(../images/p_aboutus_bg_b.png) no-repeat top center/70rem;
    top: -12rem;
  }
}
.p_aboutus .section.__03 {
  padding: 11rem 0 0;
}
@media (max-width: 767px) {
  .p_aboutus .section.__03 {
    padding: 6.4rem 0 0;
  }
}
.p_aboutus .section.__03::before {
  content: "";
  width: 100%;
  height: calc(100% + 40rem);
  display: inline-block;
  background: url(../images/p_aboutus_section_03_bg.jpg) no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .p_aboutus .section.__03::before {
    height: calc(100% + 12rem);
  }
}
.p_aboutus .section.__03 .section_obj {
  position: absolute;
  top: -6rem;
  right: 50rem;
  width: 18.2rem;
}
.p_aboutus .section.__03 .l_inner {
  position: relative;
  z-index: 2;
}
.p_aboutus .section.__04 {
  padding: 11rem 0 0;
}
@media (max-width: 767px) {
  .p_aboutus .section.__04 {
    padding: 6.4rem 0 0;
  }
}
.p_aboutus .section.__04 .section_obj {
  position: absolute;
  top: -6rem;
  left: 44rem;
  width: 18.2rem;
}
.p_education .flow {
  padding-top: 4.5rem;
  padding-bottom: 7rem;
}
.p_education .flow_ttl {
  margin-top: 7rem;
  font-size: 3.8rem;
}
@media (max-width: 767px) {
  .p_education .flow_ttl {
    font-size: 2.4rem;
    margin-top: 4rem;
  }
}
.p_education .flow_blk {
  background: #fff;
  border-radius: 2rem;
  padding: 0 3.2rem 3.2rem;
  margin-top: 4.2rem;
}
@media (max-width: 767px) {
  .p_education .flow_blk {
    margin-top: 4rem;
    padding: 0 1.6rem 2.4rem;
  }
}
.p_education .flow_head {
  display: flex;
  align-items: center;
  padding: 2.2rem 3.2rem 2.2rem 0;
  background: #f6f6f6;
  gap: 0 3.5rem;
  font-size: 2.6rem;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0 0 2rem 0;
  font-weight: bold;
  margin-left: -3.2rem;
}
@media (max-width: 767px) {
  .p_education .flow_head {
    padding: 2rem 1.6rem;
    font-size: 2rem;
    gap: 0 0.8rem;
  }
}
.p_education .flow_head_en {
  font-size: 2.8rem;
}
@media (max-width: 767px) {
  .p_education .flow_head_en {
    font-size: 1.2rem;
  }
}
.p_education .flow_list_l {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .p_education .flow_list_l {
    margin-top: 2.4rem;
  }
}
.p_education .flow_list_l_item {
  background: #f6f6f6;
  border-radius: 1rem;
  position: relative;
}
.p_education .flow_list_l_item:nth-of-type(1) {
  --color: #5889d1;
}
.p_education .flow_list_l_item:nth-of-type(2) {
  --color: #2f65b4;
}
.p_education .flow_list_l_item:nth-of-type(3) {
  --color: #134690;
}
.p_education .flow_list_l_item:nth-of-type(4) {
  --color: #002b6a;
}
.p_education .flow_list_l_item:not(:last-of-type)::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 6.4rem solid transparent;
  border-left: 6.4rem solid transparent;
  border-top: 2.8rem solid var(--color);
  border-bottom: 0;
  position: absolute;
  bottom: -2.8rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media (max-width: 767px) {
  .p_education .flow_list_l_item:not(:last-of-type)::before {
    border-right: 4rem solid transparent;
    border-left: 4rem solid transparent;
    border-top: 1.8rem solid var(--color);
    bottom: -1.8rem;
  }
}
.p_education .flow_list_l_item:not(:first-of-type) {
  margin-top: 4.8rem;
}
@media (max-width: 767px) {
  .p_education .flow_list_l_item:not(:first-of-type) {
    margin-top: 2.8rem;
  }
}
.p_education .flow_list_l_ttl {
  font-weight: bold;
  padding: 1.8rem 0;
  text-align: center;
  color: #fff;
  background: var(--color);
  border-radius: 1rem;
}
@media (max-width: 767px) {
  .p_education .flow_list_l_ttl {
    padding: 1.2rem 0;
  }
}
.p_education .flow_list_l_body {
  display: flex;
  gap: 0 2.4rem;
  padding: 2.4rem 2.2rem;
  align-items: flex-start;
  border-radius: 0 0 1rem 1rem;
}
@media (max-width: 767px) {
  .p_education .flow_list_l_body {
    padding: 1.6rem 1.8rem 1.6rem;
    flex-direction: column;
    gap: 1.2rem 0;
  }
}
.p_education .flow_list_l_month {
  padding: 1.2rem 0;
  background: var(--color);
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  flex-shrink: 0;
  width: 10.5rem;
  text-align: center;
  border-radius: 0.4rem;
}
@media (max-width: 767px) {
  .p_education .flow_list_l_month {
    padding: 0.8rem 0;
    font-size: 1.4rem;
  }
}
.p_education .flow_list_l_month:empty {
  background: transparent;
}
@media (max-width: 767px) {
  .p_education .flow_list_l_month:empty {
    display: none;
  }
}
.p_education .flow_list_l_txt {
  margin-top: -0.4rem;
}
@media (max-width: 767px) {
  .p_education .flow_list_l_txt {
    line-height: 1.75;
  }
}
.p_education .flow_list_s {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .p_education .flow_list_s {
    margin-top: 2.4rem;
  }
}
.p_education .flow_list_s_item:nth-of-type(1) {
  --color: #5889d1;
}
.p_education .flow_list_s_item:nth-of-type(2) {
  --color: #2f65b4;
}
.p_education .flow_list_s_item:nth-of-type(3) {
  --color: #134690;
}
.p_education .flow_list_s_item:nth-of-type(4) {
  --color: #002b6a;
}
.p_education .flow_list_s_item:not(:last-of-type) .flow_list_s_ttl::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 6.4rem solid transparent;
  border-left: 6.4rem solid transparent;
  border-top: 2.8rem solid var(--color);
  border-bottom: 0;
  position: absolute;
  bottom: -2.7rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media (max-width: 767px) {
  .p_education .flow_list_s_item:not(:last-of-type) .flow_list_s_ttl::before {
    border-right: 4rem solid transparent;
    border-left: 4rem solid transparent;
    border-top: 1.8rem solid var(--color);
    bottom: -1.7rem;
  }
}
.p_education .flow_list_s_item:not(:first-of-type) {
  margin-top: 4.8rem;
}
@media (max-width: 767px) {
  .p_education .flow_list_s_item:not(:first-of-type) {
    margin-top: 2.8rem;
  }
}
.p_education .flow_list_s_ttl {
  font-weight: bold;
  padding: 1.8rem 0;
  text-align: center;
  color: #fff;
  background: var(--color);
  border-radius: 1rem;
  position: relative;
}
@media (max-width: 767px) {
  .p_education .flow_list_s_ttl {
    padding: 1.2rem 0;
  }
}
.p_education .flow_note {
  margin-top: 2.8rem;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .p_education .flow_note {
    letter-spacing: 0.05em;
    margin-top: 1.6rem;
  }
}/*# sourceMappingURL=style.css.map */