@charset "UTF-8";

/*============================================================================================================
	base
============================================================================================================*/
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
th,
td,
section,
article,
header,
footer,
main,
nav,
span,
a,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

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

@media screen and (max-width: 768px) {
  img {
    width: 100%;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
th,
td,
dt,
dd {
  margin: 0;
  word-wrap: break-word;
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: top;
}

ul,
ol,
dl {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

/*------------------------------------------
	root
------------------------------------------*/
:root {
  --inner-padding: 10px;
  --header-height: 120px;
  --font-size-base: 15px;
  --line-height-base: 2;
  --line-height-head: 1.5;
  --letter-spacing: .05em;
  --font-family-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  --font-family-serif: "Noto Serif JP", serif;
  --color-txt: #4d4d4d;
  --color-gray: #646464;
}

@media screen and (max-width: 768px) {
  :root {
    --inner-padding: 20px;
    --header-height: 60px;
    --font-size-base: 13px;
  }
}

/*------------------------------------------
	utility
------------------------------------------*/
@media screen and (max-width: 1800px) {
  .u-pcl {
    display: none !important;
  }
}

@media screen and (min-width: 1099px) {
  .u-pcs {
    display: none !important;
  }
}

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

@media screen and (max-width: 768px) {
  .u-pc {
    display: none !important;
  }
}

@media screen and (min-width: 375px) {
  .u-sp-small {
    display: none !important;
  }
}

/*------------------------------------------
	font
------------------------------------------*/
body {
  color: var(--color-txt);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-family: var(--font-family-base);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

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

a {
  letter-spacing: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  line-height: var(--line-height-head);
}

.f-serif {
  font-family: var(--font-family-serif);
}

/*------------------------------------------
	frame / smooth scroll
------------------------------------------*/
html {
  scroll-behavior: smooth;
}

.inner {
  max-width: 1500px;
  width: calc(100% - 30px);
  margin-inline: auto;
}

/*------------------------------------------
	hover
------------------------------------------*/
@media (hover: hover) {
  a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}

/*------------------------------------------
	grid/flex
------------------------------------------*/
.grid {
  display: -ms-grid;
  display: grid;
}

@media screen and (min-width: 769px) {
  .grid.col2 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .grid.col3 {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 769px) {
  .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2%;
  }

  .flex>* {
    width: 50%;
  }
}

/*------------------------------------------
	center
------------------------------------------*/
.taC {
  text-align: center;
}

.taR {
  text-align: right;
}

.plC {
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.fitC {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

/*============================================================================================================
	.l-header
============================================================================================================*/
.l-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9990;
  width: 100%;
  height: var(--header-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  padding: 10px 40px;
  background: rgba(255, 255, 255, 0.6509803922);
}

.l-header__tit,
.l-header__entry {
  position: relative;
  z-index: 9992;
}

.l-header__tit a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
}

.l-header__tit-logo {
  width: 290px;
}

.l-header__tit-txt {
  color: var(--color-gray);
  font-size: 18px;
  line-height: var(--line-height-head);
}

.l-header__entry {
  margin-inline: auto 30px;
  color: var(--color-gray);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-underline-offset: 5px;
}

.l-header__entry a {
  display: block;
}

@media screen and (max-width: 768px) {
  .l-header {
    gap: 10px;
    padding-inline: 15px 10px;
  }

  .l-header__tit a {
    gap: 15px;
  }

  .l-header__tit-logo {
    width: min(70%, 170px);
    -o-object-fit: contain;
    object-fit: contain;
    height: 50px;
  }

  .l-header__tit-txt {
    font-size: 10px;
  }

  .l-header__entry {
    font-size: 13px;
    position: absolute;
    right: 20px;
    margin: 0;
    top: calc(100% + 5px);
    --width: 2px;
    --blur: 2px;
    --color: 255, 255, 255;
    --opacity: .8;
    text-shadow: var(--width) var(--width) var(--blur) rgba(var(--color), var(--opacity)), calc(var(--width) * -1) var(--width) var(--blur) rgba(var(--color), var(--opacity)), calc(var(--width) * -1) calc(var(--width) * -1) var(--blur) rgba(var(--color), var(--opacity)), var(--width) calc(var(--width) * -1) var(--blur) rgba(var(--color), var(--opacity)), var(--width) 0 var(--blur) rgba(var(--color), var(--opacity)), 0 var(--width) var(--blur) rgba(var(--color), var(--opacity)), calc(var(--width) * -1) 0 var(--blur) rgba(var(--color), var(--opacity)), 0 calc(var(--width) * -1) var(--blur) rgba(var(--color), var(--opacity));
  }

  .l-header__entry a {
    padding-block: 5px;
  }
}

/*============================================================================================================
	.l-nav
============================================================================================================*/
/*	グレーアウト
------------------------------------------*/
.l-nav {
  font-size: clamp(18px, 16.3529411765px + 0.4705882353vw, 22px);
}

.l-nav-list .is-gray {
  color: #b4b4b4;
}

.l-nav-list-child__item.is-gray {
  padding-block: 5px;
  padding-left: 1.2em;
  position: relative;
}

.l-nav-list-child__item.is-gray::after {
  --size: .5em;
  content: "";
  display: block;
  width: var(--size);
  height: var(--size);
  border: 1px solid;
  border-left: none;
  border-bottom: none;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 0.9em;
  left: 0;
}

@media screen and (max-width: 768px) {
  .l-nav-list-child__item.is-gray {
    padding-block: 7px;
  }

  .l-nav-list-child__item.is-gray::after {
    top: 1.1em;
  }
}

.l-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9991;
}

.l-nav-inner {
  width: min(100%, 1280px);
  height: 100%;
  margin-inline: auto;
  padding: var(--header-height) 30px 100px;
  position: relative;
  z-index: 2;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.l-nav-inner::-webkit-scrollbar {
  display: none;
}

.l-nav__logo {
  width: min(100%, 410px);
  margin: 0 auto 80px;
}

.l-nav__logo img {
  width: 100%;
}

.l-nav-list {
  display: -ms-grid;
  display: grid;
  grid-gap: 40px 6vw;
  line-height: 1.5;
}

.l-nav-list__parent {
  margin-bottom: 15px;
  padding-block: 15px;
  border-bottom: 1px solid #b4b4b4;
  font-weight: 500;
  font-size: 18px;
}

.l-nav-list__parent .small {
  display: block;
  font-size: 14px;
}

.l-nav-list-child__item a {
  display: block;
  padding-block: 5px;
  padding-left: 1.2em;
  position: relative;
}

.l-nav-list-child__item a::after {
  --size: .5em;
  content: "";
  display: block;
  width: var(--size);
  height: var(--size);
  border: 1px solid;
  border-left: none;
  border-bottom: none;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 0.9em;
  left: 0;
}

.l-nav-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 40px 0 0 auto;
}

.l-nav-sub__item {
  padding-inline: 10px;
  line-height: 1.5;
  font-size: 14px;
  position: relative;
}

.l-nav-sub__item::before,
.l-nav-sub__item:last-of-type::after {
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  background: var(--color-txt);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.l-nav-sub__item:last-of-type::after {
  left: auto;
  right: 0;
}

.l-nav-overlay {
  cursor: pointer;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(255, 255, 255, 0.95);
}

@media screen and (min-width: 769px) {
  .l-nav-list {
    grid-auto-flow: column;
    -ms-grid-rows: (auto)[2];
    grid-template-rows: repeat(2, auto);
  }

  .l-nav-list-child {
    display: block !important;
    height: auto !important;
  }
}

@media screen and (max-width: 768px) {
  .l-nav-inner {
    padding-top: calc(var(--header-height) + 50px);
  }

  .l-nav-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 30px;
    text-align: center;
  }

  .l-nav-list__parent {
    cursor: pointer;
    margin-bottom: 0;
    padding-right: 20px;
    border-top: 1px solid #b4b4b4;
    border-bottom: none;
    font-size: 16px;
    position: relative;
  }

  .l-nav-list__parent::before,
  .l-nav-list__parent::after {
    content: "";
    display: block;
    width: 13px;
    height: 1px;
    background: #969696;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  .l-nav-list__parent::after {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  .l-nav-list__parent.is-open::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .l-nav-list__parent.is-open::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .l-nav-list__parent .small {
    font-size: 12px;
  }

  .l-nav-list-child {
    display: none;
    padding: 0 10px 15px;
  }

  .l-nav-list-child__item a {
    padding-block: 7px;
  }

  .l-nav-list-child__item a::after {
    top: 1.1em;
  }

  .l-nav-sub {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 10px;
    margin-top: 20px;
  }

  .l-nav-sub__item {
    padding-inline: 0;
    font-size: 13px;
  }

  .l-nav-sub__item::before,
  .l-nav-sub__item:last-of-type::after {
    content: none;
  }
}

.l-nav .l-nav-list__item a {
  color: #f39800;
  font-weight: 500;
}

@media (hover: hover) {
  .l-nav a:hover {
    opacity: 1;
    color: #f15a24;
  }
}

/*	copyright
------------------------------------------*/
.l-nav__copyright {
  margin-top: 20px;
  color: var(--color-gray);
  font-size: 12px;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .l-nav__copyright {
    margin-top: 30px;
    font-size: 10px;
    text-align: center;
  }
}

/*	.l-navBtn
------------------------------------------*/
.l-navBtn {
  --size: var(--header-height);
  overflow: hidden;
  cursor: pointer;
  width: var(--size);
  height: var(--size);
  text-align: center;
  position: relative;
  z-index: 9992;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.l-navBtn span {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 75%;
  height: 2px;
  background: var(--color-gray);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.l-navBtn span:nth-of-type(1) {
  top: 22px;
}

.l-navBtn span:nth-of-type(2) {
  top: 31px;
}

.l-navBtn span:nth-of-type(3) {
  top: 40px;
}

.l-navBtn::after {
  content: "MENU";
  content: none;
  position: absolute;
  left: 11%;
  bottom: 17px;
  color: var(--color-gray);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.5em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.l-navBtn.is-close span:nth-of-type(1) {
  top: 50%;
  -webkit-transform: rotate(-210deg);
  transform: rotate(-210deg);
}

.l-navBtn.is-close span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
}

.l-navBtn.is-close span:nth-of-type(3) {
  top: 50%;
  -webkit-transform: rotate(210deg);
  transform: rotate(210deg);
}

.l-navBtn.is-close::after {
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .l-navBtn span {
    height: 1px;
  }

  .l-navBtn span:nth-of-type(1) {
    top: 20px;
  }

  .l-navBtn span:nth-of-type(2) {
    top: 25px;
  }

  .l-navBtn span:nth-of-type(3) {
    top: 30px;
  }

  .l-navBtn::after {
    bottom: 10px;
    font-size: 10px;
    letter-spacing: 0.35em;
  }
}

@media screen and (min-width: 1300px) {
  .l-header {
    padding-inline: 17% 8%;
  }
}

@media screen and (min-width: 901px) {
  .l-nav-overlay {
    position: relative;
  }

  .l-navBtn {
    display: none;
  }

  .l-nav {
    display: -ms-grid;
    display: grid;
    position: relative;
    place-content: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
  }

  .l-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .l-nav-inner {
    padding: 0;
  }
}

/*------------------------------------------
	共通パーツ
------------------------------------------*/
/*------------------------------------------
	ボタン
------------------------------------------*/
.btn_wrap {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .btn_wrap {
    margin: 2em 0;
    width: 100%;
  }
}

.btn1 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 258px;
  height: 61px;
  border: 2px solid #ffffff;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  overflow: hidden;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
  background-color: transparent;
  width: 258px;
  height: 61px;
}

@media screen and (max-width: 768px) {
  .btn1 {
    margin-inline: auto;
  }
}

.btn1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #ffffff;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
  z-index: -1;
}

.btn1::after {
  content: "";
  background: url("../img/common/arrow_w.svg") no-repeat center center;
  background-size: contain;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  -webkit-transition: background 0.4s ease, -webkit-transform 0.4s ease;
  transition: background 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, background 0.4s ease;
  transition: transform 0.4s ease, background 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transition-delay: 0s, 0.1s;
  transition-delay: 0s, 0.1s;
  z-index: 2;
  position: absolute;
  right: 1em;
}

.btn1::first-line {
  z-index: 2;
}

.btn1:hover {
  color: #f1a724;
}

.btn1:hover::before {
  width: 100%;
}

.btn1:hover::after {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
  background: url("../img/common/arrow_o.svg") no-repeat center center;
}

@media screen and (min-width: 769px) {
  .l_section {}
}

@media screen and (max-width: 768px) {
  .l_section {}
}

/*------------------------------------------
	orange 背景
------------------------------------------*/
.bg_orange {
  background: #f1a724;
  position: relative;
  margin: 106px 0 170px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .bg_orange {
    padding-top: 60px;
    margin: 60px 0 50px;
  }
}

.bg_orange::before {
  content: "";
  display: inline-block;
  background: url(../img/common/bg_orange_1.svg) no-repeat;
  background-size: 175% auto;
  background-position: left top;
  width: 100%;
  height: 106px;
  max-width: 100vw;
  overflow-x: hidden;
  position: absolute;
  inset: -104px 0 auto 0;
  z-index: -1;
}

@media screen and (min-width: 2000px) {
  .bg_orange::before {
    height: 6vw;
    inset: -5.9vw 0 auto 0;
  }
}

@media screen and (max-width: 768px) {
  .bg_orange::before {
    background-size: 180% auto;
    height: 60px;
    inset: -59px 0 auto 0;
  }
}

.bg_orange::after {
  content: "";
  display: inline-block;
  background: url(../img/common/bg_orange_2.svg) no-repeat;
  background-size: 175% auto;
  background-position: left top;
  width: 100%;
  height: 170px;
  max-width: 100vw;
  overflow-x: hidden;
  position: absolute;
  inset: auto 0 -168px 0;
  z-index: -1;
}

@media screen and (min-width: 2000px) {
  .bg_orange::after {
    height: 8vw;
    inset: auto 0 -7.9vw 0;
  }
}

@media screen and (max-width: 768px) {
  .bg_orange::after {
    background-size: 180% auto;
    height: 100px;
    inset: auto 0 -99px 0;
  }
}

.bg_orange * {
  color: #fff;
}

/*------------------------------------------
layout01
------------------------------------------*/
@media screen and (min-width: 1600px) {
  .layout01 {
    margin-left: auto;
    margin-right: 8%;
  }
}

@media screen and (min-width: 769px) {
  .layout01 {
    max-width: 1289px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media screen and (min-width: 769px) {
  .layout01 .layout01_img_box {
    width: 54%;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 768px) {
  .layout01 .layout01_img_box {
    width: 100%;
    margin-inline: auto;
  }
}

.layout01 .layout01_img_box.-circle::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 52%;
  bottom: 50%;
  left: 25%;
  width: 100%;
  height: 158%;
  background: url(../img/home/circle_1.webp) no-repeat center center;
  background-size: contain;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: rotateCircle 50s linear infinite;
  animation: rotateCircle 50s linear infinite;
  z-index: 1;
}

.layout01 .layout01_img_box.-circle2::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 52%;
  bottom: 50%;
  left: 25%;
  width: 100%;
  height: 158%;
  background: url(../img/crosstalk/circle_talk.webp) no-repeat center center !important;
  background-size: contain;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: rotateCircle 50s linear infinite;
  animation: rotateCircle 50s linear infinite;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .layout01 .layout01_img_box.-circle::before {
    width: 100%;
    height: 180%;
    left: 0;
  }

  .layout01 .layout01_img_box.-circle2::before {
    width: 100% !important;
    height: 100% !important;
    top: 74% !important;
    left: 51% !important;
  }

  .layout01 .layout01_img_box.-circle3::before {
    width: 100% !important;
    height: 100% !important;
    left: 80% !important;
    top: 83% !important;
  }
}

.layout01 .layout01_img_box img {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .layout01 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.layout01 .layout01_txt_box p {
  font-size: clamp(16px, 13.9411764706px + 0.5882352941vw, 21px);
  margin-bottom: 2em;
  line-height: 1.7;
}

@media screen and (min-width: 769px) {
  .layout01 .layout01_txt_box {
    width: 39%;
  }
}

@media screen and (max-width: 768px) {
  .layout01 .layout01_txt_box {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

@-webkit-keyframes rotateCircle {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotateCircle {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/*============================================================================================================
	page
============================================================================================================*/
/*	home
============================================================================================================*/
/*------------------------------------------
	.homeMv
------------------------------------------*/
.homeMv {
  aspect-ratio: 192/118;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  position: relative;
}

.homeMv__catch {
  width: 44.5%;
  color: #fff;
  font-size: max(30px, 2.5vw);
  line-height: 1.7;
  position: absolute;
  top: auto;
  bottom: 27%;
  right: 4%;
  margin: auto;
  z-index: 2;
}

.homeMv__catch img {
  display: block;
}

.homeMv__catch .mv_copy_1 {
  width: 32%;
}

.homeMv__catch .mv_copy_2 {
  padding: 8% 0 0;
}

.homeMv__catch .mv_copy_3 {
  width: 40%;
  position: absolute;
  left: 0;
  bottom: -10%;
}

@media screen and (max-width: 768px) {
  .homeMv {
    height: auto;
    aspect-ratio: 2000/2899;
    margin-bottom: 60px;
  }

  .homeMv .homeMv-imgBox img {
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 2000/2899;
  }

  .homeMv__catch {
    width: 80%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    top: 13%;
    right: 0;
    left: 0;
    font-size: 5.5vw;
  }
}

.js-home-mv-slider {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  height: 100%;
}

.js-home-mv-slider.is-initialized {
  opacity: 1;
}

.js-home-mv-slider .splide__track {
  height: 100%;
}

.js-home-mv-slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .p_lead {
    padding-bottom: 0;
  }
}

@media screen and (min-width: 769px) {
  .p_lead .p_lead_list {
    padding: 0 0 0 20px;
  }
}

@media screen and (max-width: 768px) {
  .p_lead .p_lead_item {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .p_lead .p_lead_item>* {
    width: 50%;
  }
}

.p_lead .p_lead_item {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.p_lead .p_lead_item>img {
  width: 42%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .p_lead .p_lead_item>img {
    width: 41%;
  }
}

.p_lead .p_lead_item:first-child {
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .p_lead .p_lead_item:first-child {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 769px) {
  .p_lead .p_lead_item:nth-child(2) {
    padding-top: 13%;
    width: 93%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 0;
  }
}

.p_lead .p_lead_item:nth-child(2) img {
  width: 44%;
}

@media screen and (max-width: 768px) {
  .p_lead .p_lead_item:nth-child(2) img {
    width: 38%;
  }
}

.p_lead .p_lead_item:nth-child(2) img:first-child {
  padding-top: 10%;
}

@media screen and (max-width: 768px) {
  .p_lead .p_lead_item:nth-child(2) img:first-child {
    padding-top: 16%;
  }
}

@media screen and (max-width: 768px) {
  .p_lead .p_lead_item:nth-child(2) {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    gap: 6%;
    margin-right: 4%;
  }
}

.p_lead .p_lead_item_txt {
  font-size: clamp(15px, 12.1176470588px + 0.8235294118vw, 22px);
  font-weight: 600;
  padding: 2em 0 0 1em;
  line-height: 1.8;
}

.p_lead .p_lead_item_txt img {
  max-width: 224px;
  display: block;
  margin-bottom: 2em;
}

@media screen and (max-width: 450px) {
  .p_lead .p_lead_item_txt img {
    width: 80%;
    margin-bottom: 1em;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .p_lead .p_lead_item_txt {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

@media screen and (max-width: 450px) {
  .p_lead .p_lead_item_txt {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

.l_section_ttl {
  margin-bottom: 2em;
}

@media screen and (max-width: 768px) {
  .l_section_ttl {
    margin-bottom: 0;
    font-size: clamp(30px, 25.8823529412px + 1.1764705882vw, 40px);
    text-align: center;
  }
}

.l_section_ttl img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -o-object-fit: contain;
  object-fit: contain;
  height: 3.4em;
}

@media screen and (max-width: 768px) {
  .l_section_ttl {
    margin-inline: auto;
    padding: 2em 0 1em;
  }

  .l_section_ttl img {
    height: 2em;
  }
}

.p_company {
  padding-top: 83px;
  margin-bottom: 226px;
}

@media screen and (max-width: 768px) {
  .p_company {
    padding-top: 60px;
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 768px) {
  .p_company .l_section_ttl {
    width: 8em;
  }
}

@media screen and (min-width: 769px) {
  .p_company .layout01 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

.p_step {
  position: relative;
}

@media screen and (min-width: 769px) {
  .p_step {
    padding-top: 60px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100vw;
    overflow: hidden;
    margin-bottom: 246px;
  }
}

@media screen and (max-width: 768px) {
  .p_step {
    padding-bottom: 0px;
  }
}

.p_step::before {
  content: "";
  display: inline-block;
  width: 80%;
  max-width: 1220px;
  height: 100%;
  border: #f1a724 solid 1px;
  position: absolute;
  inset: 0 50% 0 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .p_step::before {
    width: 95%;
    padding-bottom: 1em;
  }
}

.p_step .l_section_ttl {
  margin-bottom: 0;
}

@media screen and (min-width: 769px) {
  .p_step .l_section_ttl img {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .p_step .l_section_ttl {
    width: 11em;
  }
}

.p_step .p_step_lead {
  font-size: clamp(22px, 7.1764705882px + 4.2352941176vw, 58px);
}

.step-slider-wrapper {
  position: relative;
  width: 100vw;
  margin-left: calc(-1 * (100vw - 100%) / 2);
  overflow: hidden;
  padding-left: 16%;
  padding-bottom: 86px;
}

@media screen and (max-width: 768px) {
  .step-slider-wrapper {
    padding-left: 0;
  }
}

.js-step-slider {
  overflow: visible;
}

.js-step-slider {
  margin-top: 2rem;
}

.js-step-slider .swiper-slide {
  position: relative;
  cursor: pointer;
  background: #fff;
  border-radius: 18.6px;
  padding: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5em;
  z-index: 1;
  min-height: 166px;
  height: auto;
}

@media screen and (max-width: 1499px) {
  .js-step-slider .swiper-slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .js-step-slider .swiper-slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.js-step-slider .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(241, 167, 36, 0.5215686275);
  z-index: -1;
  border-radius: 18.6px;
}

.js-step-slider .swiper-slide img {
  width: 24.5%;
  height: auto;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 1499px) {
  .js-step-slider .swiper-slide img {
    width: 100%;
  }
}

.js-step-slider .swiper-slide .p_step_swiper_txt {
  color: #fff;
  line-height: 1.6;
}

.js-step-slider .swiper-slide .p_step_swiper_txt h3 {
  font-size: clamp(16px, 14.7647058824px + 0.3529411765vw, 19px);
}

@media screen and (max-width: 768px) {
  .js-step-slider .swiper-slide .p_step_swiper_txt h3 {
    margin-bottom: 0.5em;
  }
}

.js-step-slider .swiper-slide .p_step_swiper_txt p {
  font-size: clamp(14px, 12.7647058824px + 0.3529411765vw, 17px);
  letter-spacing: -0.03em;
  line-height: 1.5;
}

.step-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.step-modal.is-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .step-modal.is-open {
    width: 100vw;
  }
}

.step-modal__content {
  background: #fff;
  max-width: 1391px;
  width: 80%;
  padding: 6vw;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .step-modal__content {
    width: 90%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 11vw 6vw 8vw;
  }
}

.step-modal__content .step-modal__inner {
  width: 100%;
}

@media screen and (min-width: 769px) {
  .step-modal__content .step-modal__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 5%;
  }
}

.step-modal__close {
  position: absolute;
  top: 9%;
  right: 5%;
  font-size: 2rem;
  color: #f15a24;
  cursor: pointer;
  border: 1px solid;
  aspect-ratio: 1/1;
  width: 1.8em;
  line-height: 1.8;
  border-radius: 50%;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

@media screen and (max-width: 768px) {
  .step-modal__close {
    top: 3%;
    right: 3%;
    font-size: 20px;
  }
}

.step-modal__text {
  padding-top: 8%;
}

.step-modal__text #modalTitle {
  font-size: clamp(18px, 16.7647058824px + 0.3529411765vw, 21px);
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  color: #f15a24;
  border-bottom: 1px solid #f15a24;
}

.step-modal__text #modalDesc {
  font-size: clamp(15px, 14.1764705882px + 0.2352941176vw, 17px);
  line-height: 1.6;
}

.step-modal img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.custom-arrows {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -87px;
  z-index: 10;
  pointer-events: none;
  width: 100%;
  height: 50px;
}

.custom-arrows .swiper-button-next:after,
.custom-arrows .swiper-rtl .swiper-button-prev:after,
.custom-arrows .swiper-button-prev:after,
.custom-arrows .swiper-rtl .swiper-button-next:after {
  display: none;
}

@media screen and (max-width: 768px) {
  .custom-arrows {
    display: none;
  }
}

.custom-arrows .swiper-button {
  background: none;
  border: none;
  pointer-events: auto;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  width: 50px;
}

.custom-arrows .swiper-button img {
  width: 30px;
  height: auto;
}

.custom-arrows .swiper-button-prev {
  left: 38%;
}

@media screen and (max-width: 1000px) {
  .custom-arrows .swiper-button-prev {
    left: 36%;
  }
}

.custom-arrows .swiper-button-next {
  left: 41%;
}

@media screen and (max-width: 768px) {
  .custom-arrows .swiper-button-prev {
    left: 35%;
  }

  .custom-arrows .swiper-button-next {
    left: 50%;
  }
}

@media screen and (min-width: 769px) {
  .p_cross {
    padding-top: 106px;
  }
}

@media screen and (min-width: 1600px) {
  .p_cross .layout01 {
    margin-left: 13%;
    margin-right: auto;
  }

  .p_cross .layout02 {
    margin-left: 0 !important;
    margin-right: auto;
  }
}

@media screen and (min-width: 769px) {
  .p_cross .layout01 {
    max-width: 1457px;
  }

  .p_cross .layout01 .layout01_img_box {
    width: 48%;
    padding-bottom: 100px;
  }

  .p_cross .layout01 .layout01_img_box.-circle2 {
    width: 100% !important;
  }

  .p_cross .layout01 .layout01_img_box.-circle3 {
    width: 100% !important;
  }
}
}

.p_cross .layout01 .layout01_img_box.-circle::before {
  background: url(../img/home/circle_2.webp) no-repeat center center;
  background-size: contain;
}

.p_cross .layout01 .layout01_img_box.-circle2::before {
  background: url(../img/crosstalk/circle_talk.webp) no-repeat center center !important;
  background-size: contain !important;
}

.p_cross .layout01 .layout01_img_box.-circle3::before {
  background: url(../img/crosstalk/circle_talk.webp) no-repeat center center !important;
  background-size: contain !important;
}

@media screen and (min-width: 1101px) {
  .p_cross .layout01 .layout01_img_box.-circle2::before {
    width: 130%;
    height: auto;
    top: -4%;
    left: 13%;
    bottom: 0%;
  }

  .p_cross .layout01 .layout01_img_box.-circle3::before {
    width: 100%;
    height: auto;
    top: 77%;
    left: 67%;
    bottom: 0%;
  }
}

@media screen and (max-width: 1100px) {
  .p_cross .layout01 .layout01_img_box.-circle::before {
    width: 140%;
    height: 140%;
    top: 37%;
    left: 5%;
  }

  .p_cross .layout01 .layout01_img_box.-circle2::before {
    width: 100%;
    height: auto;
    top: 60%;
    left: 54%;
    bottom: 20%;
  }

  .p_cross .layout01 .layout01_img_box.-circle3::before {
    width: 100%;
    height: auto;
    top: 79%;
    left: 61%;
    bottom: 0%;
  }
}

.p_staff {
  /* 表示切替制御 */
}

@media screen and (min-width: 769px) {
  .p_staff {
    max-width: 1920px;
    margin: auto;
    padding-left: calc((100vw - 1543px) * 0.5 + 60px);
    margin-bottom: 150px;
    width: 100vw;
  }
}

@media screen and (max-width: 1499px) {
  .p_staff {
    width: 96%;
    overflow: hidden;
    margin-left: auto;
  }
}

.p_staff .l_section_ttl img {
  height: 1.9em;
}

@media screen and (max-width: 768px) {
  .p_staff .l_section_ttl img {
    height: 1em;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 1em;
    max-width: 88%;
  }
}

.p_staff .swiper-wrapper_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 769px) {
  .p_staff .swiper-wrapper_flex {
    gap: 40px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
  }
}

@media screen and (max-width: 1099px) {
  .p_staff .swiper-wrapper_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }
}

.p_staff .p_staff_txtBox {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 385px;
  width: 20%;
  border-bottom: 1px solid #f7931e;
  height: auto;
  padding-left: 1em;
  padding-top: 90px;
  font-size: clamp(16px, 13.9411764706px + 0.5882352941vw, 21px);
}

@media screen and (max-width: 1099px) {
  .p_staff .p_staff_txtBox {
    width: 90%;
    max-width: none;
    margin-inline: auto;
    padding-top: 20px;
    min-height: 230px;
  }
}

@media screen and (max-width: 1099px) and (max-width: 768px) {
  .p_staff .p_staff_txtBox {
    min-height: 160px;
  }
}

.p_staff .p_staff_txtBox .replace {
  margin-left: -0.5em;
}

.p_staff .p_staff_txtBox p {
  font-size: clamp(16px, 13.9411764706px + 0.5882352941vw, 21px);
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .p_staff .p_staff_txtBox p {
    line-height: 2;
  }
}

.p_staff .staff-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1em;
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .p_staff .staff-head {
    margin-bottom: 0;
  }
}

.p_staff .staff-count {
  font-weight: bold;
  font-size: 16px;
  color: #f1a724;
}

.p_staff .staff-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p_staff .staff-arrows button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  width: 40px;
}

@media screen and (max-width: 768px) {
  .p_staff .staff-arrows button {
    display: none;
  }
}

.p_staff .staff-arrows button img {
  width: 30px;
}

.p_staff .text-slider.swiper {
  min-height: 160px;
}

@media screen and (max-width: 768px) {
  .p_staff .text-slider.swiper {
    min-height: 110px;
  }
}

.p_staff .text-slider .swiper-slide {
  display: none;
}

.p_staff .text-slider .swiper-slide.is-visible {
  display: block;
}

.p_staff .staff-text {
  font-size: 16px;
  line-height: 1.6;
}

.p_staff .staff-text .en {
  display: block;
  color: #888;
}

.p_staff .p_staff_sliderWrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (min-width: 1099px) {
  .p_staff .p_staff_sliderWrapper {
    width: 74%;
    margin-top: auto;
    overflow: hidden;
  }
}

.p_staff .image-slider img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.p_staff .image-slider.swiper {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

.p_staff .image-slider .swiper-wrapper {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p_staff .image-slider .swiper-slide-next {
  opacity: 0.6;
}

.p_staff .image-slider .swiper-slide-active {
  opacity: 1;
}

.p_staff .image-slider .swiper-slide {
  min-width: 0;
}

.p_staff .text-slider .swiper-slide {
  display: none;
}

.p_staff .text-slider .swiper-slide.is-visible {
  display: block;
}

.p_staff .text-slider .swiper-slide p span {
  display: inline-block;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  opacity: 0;
}

.p_works {
  display: -ms-grid;
  display: grid;
}

@media screen and (min-width: 769px) {
  .p_works {
    padding-top: 100px;
  }
}

@media screen and (max-width: 768px) {
  .p_works {
    padding-top: 20px;
  }
}

.p_works>* {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: 1/1;
}

.p_works .p_works_txt_box {
  z-index: 1;
  background: rgba(255, 255, 255, 0.8823529412);
  max-width: 800px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  text-align: center;
  padding: 0 3%;
  -webkit-box-shadow: 0px 0px 10px 10px rgba(255, 255, 255, 0.8823529412);
  box-shadow: 0px 0px 10px 10px rgba(255, 255, 255, 0.8823529412);
}

@media screen and (max-width: 768px) {
  .p_works .p_works_txt_box {
    width: 100%;
    background: rgba(255, 255, 255, 0.7098039216);
  }
}

.p_works .p_works_txt_box h2 {
  text-align: center;
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .p_works .p_works_txt_box h2 {
    margin-top: 0px;
  }
}

.p_works .p_works_txt_box h2 img {
  max-width: 634px;
  width: 80%;
}

.p_works .p_works_txt_box h2 span {
  display: block;
  font-size: clamp(16px, 14.7647058824px + 0.3529411765vw, 19px);
  position: relative;
  margin: 3px 0 111px;
}

@media screen and (max-width: 768px) {
  .p_works .p_works_txt_box h2 span {
    margin: 20px 0 14px;
  }
}

.p_works .p_works_txt_box h2 span::before {
  content: "";
  display: inline-block;
  background: #000;
  width: 36px;
  height: 1px;
  position: absolute;
  bottom: -30px;
  left: 50%;
  right: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .p_works .p_works_txt_box h2 span::before {
    bottom: -14px;
  }
}

.p_works .p_works_txt_box .p_works_lead {
  text-align: center;
  margin-bottom: 3em;
}

.p_works .p_works_txt_box .p_works_lead img {
  max-width: 385px;
  width: 70%;
}

.p_works .p_works_txt_box p {
  font-size: clamp(14px, 12.7647058824px + 0.3529411765vw, 17px);
  letter-spacing: 0;
  font-weight: 600;
}

.p_works .p_works-slider-wrapper .p_works_slider {
  overflow: hidden;
  width: 100%;
  line-height: 0;
}

.p_works .p_works-slider-wrapper .p_works_slider.-top .p_works_track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: scrollLeft 60s linear infinite;
  animation: scrollLeft 60s linear infinite;
}

.p_works .p_works-slider-wrapper .p_works_slider.-bottom .p_works_track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: scrollRight 60s linear infinite;
  animation: scrollRight 60s linear infinite;
}

.p_works .p_works-slider-wrapper .p_works_slider .p_works_item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.p_works .p_works-slider-wrapper .p_works_slider .p_works_item img {
  height: auto;
  width: auto;
  max-height: 279px;
  vertical-align: top;
}

@media screen and (max-width: 500px) {
  .p_works .p_works-slider-wrapper .p_works_slider .p_works_item img {
    max-height: 255px;
  }
}

@-webkit-keyframes scrollLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes scrollLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@-webkit-keyframes scrollRight {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes scrollRight {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.p_join {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p_join .l_section_ttl {
  text-align: center;
}

@media screen and (min-width: 769px) {
  .p_join .l_section_ttl {
    margin-bottom: 0.5em;
  }
}

@media screen and (max-width: 768px) {
  .p_join .l_section_ttl {
    margin-top: 38%;
  }
}

@media screen and (min-width: 769px) {
  .p_join .l_section_ttl img {
    height: 6em;
    margin-bottom: 1em;
    max-width: 31vw;
  }
}

@media screen and (max-width: 768px) {
  .p_join .l_section_ttl img {
    width: 60%;
    height: auto;
  }
}

.p_join .folding-door-container {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 2/0.97;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, left bottom, from(#ff6b35), to(#f7931e));
  background: linear-gradient(180deg, #e9ac46 0%, #fcee21 100%);
}

@media screen and (max-width: 1200px) {
  .p_join .folding-door-container {
    aspect-ratio: 2/1.3;
  }
}

@media screen and (max-width: 768px) {
  .p_join .folding-door-container {
    aspect-ratio: 3/5;
  }
}

.p_join .folding-door-content {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: white;
  z-index: 10;
  opacity: 0;
}

@media screen and (min-width: 769px) {
  .p_join .folding-door-content {
    padding-bottom: 3%;
  }
}

.p_join .folding-door-content__title {
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.p_join .folding-door-content__text {
  text-align: center;
  font-size: clamp(0.75rem, 2.5vw, 0.875rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}

@media screen and (min-width: 769px) {
  .p_join .folding-door-content__text {
    line-height: 3;
    margin-bottom: 1.5rem;
    padding: 0;
    padding-bottom: 10px;
  }
}

.p_join .folding-door-content__button {
  background-color: white;
  color: #f1a724;
  font-family: var(--font-family-serif);
  padding: 0.5rem 2rem;
  border-radius: 9999px;
  border: 1px solid transparent;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 258px;
  height: 61px;
}

.p_join .folding-door-content__button:hover {
  background-color: transparent;
  color: white;
  border-color: white;
}

.p_join .folding-door-left-container,
.p_join .folding-door-right-container {
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 20;
  width: 51%;
  -webkit-perspective: 2000px;
  perspective: 2000px;
  -webkit-perspective-origin: top;
  perspective-origin: top;
}

@media screen and (max-width: 768px) {

  .p_join .folding-door-left-container,
  .p_join .folding-door-right-container {
    height: 40%;
  }
}

.p_join .folding-door-left-container {
  left: 0;
}

.p_join .folding-door-right-container {
  right: 0;
}

.p_join .folding-door-left-door,
.p_join .folding-door-right-door {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.p_join .folding-door-left-door {
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: translateX(-1%);
  transform: translateX(-1%);
}

.p_join .folding-door-right-door {
  -webkit-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: translateX(1%);
  transform: translateX(1%);
}

.p_join .folding-door-left-image,
.p_join .folding-door-right-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  -webkit-transform: scaleX(1.08);
  transform: scaleX(1.08);
}

.p_join .folding-door-left-image {
  background-image: url("../img/home/join_1.webp");
  background-repeat: no-repeat;
  background-position: left top -10px;
}

@media screen and (max-width: 768px) {
  .p_join .folding-door-left-image {
    background-position: left top;
  }
}

.p_join .folding-door-right-image {
  background-image: url("../img/home/join_2.webp");
  background-repeat: no-repeat;
  background-position: right top -30px;
}

@media screen and (max-width: 768px) {
  .p_join .folding-door-right-image {
    background-position: center;
  }
}

.folding-door-left-door,
.folding-door-right-door {
  position: relative;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.folding-door-left-door::after,
.folding-door-right-door::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 101%;
  height: 12%;
  height: 0;
  background: inherit;
  -webkit-transform-origin: top;
  transform-origin: top;
  z-index: 2;
  background: #f1c417;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.folding-door-right-door::after {
  clip-path: polygon(100% 100%, 0 0, 0 100%);
}

.folding-door-left-door::after,
.folding-door-right-door::after {
  height: var(--door-after-height, 0);
}

/*	company
============================================================================================================*/
.page_company section:not(.p_join) .l_section_ttl {
  padding-left: 16%;
  margin-bottom: 4%;
}

@media screen and (max-width: 768px) {
  .page_company section:not(.p_join) .l_section_ttl {
    padding-left: 0;
  }
}

@media screen and (min-width: 769px) {
  .page_company section:not(.p_join) .l_section_ttl img {
    height: 4.4em;
  }
}

@media screen and (max-width: 768px) {
  .page_company section:not(.p_join) .l_section_ttl img {
    max-width: 100% !important;
    height: 1.7em;
  }
}

.orange {
  color: #f1a724 !important;
}

@media screen and (min-width: 769px) {
  .homeMv.-company {
    aspect-ratio: 1920/976;
  }
}

@media screen and (max-width: 768px) {
  .homeMv.-company {
    margin-bottom: 0;
    aspect-ratio: 1993/2880;
  }

  .homeMv.-company .homeMv-imgBox img {
    aspect-ratio: 838/1170;
  }
}

.homeMv.-company .homeMv__catch {
  margin: unset;
  bottom: 50%;
  right: auto;
  left: 4%;
  padding-left: 5%;
}

@media screen and (max-width: 768px) {
  .homeMv.-company .homeMv__catch {
    top: 10%;
    left: 0;
    bottom: auto;
    width: 80%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding-left: 0;
  }
}

.homeMv.-company .mv_copy_1 {
  width: 60%;
}

@media screen and (max-width: 768px) {
  .homeMv.-company .mv_copy_1 {
    width: 75%;
  }
}

.homeMv.-company .mv_copy_2 {
  padding: 5% 0 0;
  max-width: 734px;
}

@media screen and (max-width: 1200px) {
  .homeMv.-company .mv_copy_2 {
    max-width: 100%;
  }
}

.homeMv.-company .mv_copy_3 {
  left: 58%;
  bottom: -58%;
  width: 63%;
}

@media screen and (max-width: 768px) {
  .homeMv.-company .mv_copy_3 {
    left: 0;
    bottom: -20%;
    width: 55%;
  }
}

.p_massage {
  font-size: clamp(15px, 13.3529411765px + 0.4705882353vw, 19px);
  line-height: 1.7368421053;
  background: #f9b49c;
  margin-top: 4%;
  margin-bottom: 13.5%;
}

.p_massage .bg-fix {
  background: #f8d28f;
  width: 100%;
  height: 101%;
  position: absolute;
  z-index: 1;
  top: -1px;
}

@media screen and (max-width: 768px) {
  .p_massage {
    margin-top: 0;
    padding-top: 30px;
    margin-bottom: 17.5%;
  }
}

.p_massage::before {
  background: url(../img/common/bg_orange_21.svg) no-repeat;
  background-size: 155% auto;
  height: 263px;
  width: 100%;
  inset: -262px 0 auto 0;
  -webkit-transition: background-position 0.8s ease-out;
  transition: background-position 0.8s ease-out;
  mix-blend-mode: multiply;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .p_massage::before {
    height: 300px;
    background-size: 450% auto;
    inset: -270px 0 auto 0;
  }
}

.p_massage::after {
  background: url(../img/common/bg_orange_22.svg) no-repeat;
  background-size: 162% auto;
  height: 250px;
  inset: auto 0 -231px 0;
  width: 100%;
}

@media screen and (max-width: 1300px) {
  .p_massage::after {
    height: 230px;
  }
}

@media screen and (max-width: 768px) {
  .p_massage::after {
    background-size: 330% auto;
    inset: auto 0 -229px 0;
  }
}

.p_massage .inner {
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 769px) {
  .p_massage .inner {
    padding-top: 40px;
    max-width: 1100px;
  }
}

.p_massage .p_massage_name {
  width: 195px;
  margin: 4% 4% 1%;
}

@media screen and (max-width: 768px) {
  .p_massage .p_massage_name {
    width: 150px;
  }
}

.p_overview {
  margin-bottom: 15%;
}

.p_overview .c-tableWrap {
  overflow-x: auto;
  max-width: 1287px;
}

.p_overview .c-table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(14px, 10.2941176471px + 1.0588235294vw, 23px);
  line-height: 1.6;
}

.p_overview .c-table th,
.p_overview .c-table td {
  padding: 0.5em 1em;
  vertical-align: top;
  font-weight: 500;
}

.p_overview .c-table th {
  width: 38%;
  color: #000;
  border-top: 1px solid #f1a724;
  border-bottom: 1px solid #f1a724;
  text-align: left;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .p_overview .c-table th {
    width: 110px;
    white-space: wrap;
  }
}

.p_overview .c-table td {
  border-top: 1px solid #f1a724;
  border-bottom: 1px solid #f1a724;
  color: #333;
}

.bg_orange.p_data * {
  color: unset;
}

.p_data {
  margin-bottom: 0;
  padding-bottom: 10%;
}

.p_data::before {
  background: url(../img/common/bg_orange_1_b.svg) no-repeat;
  background-size: 158% auto;
  background-position: left top;
  height: 255px;
  inset: -187px 0 auto 0;
}

@media screen and (max-width: 1200px) {
  .p_data::before {
    height: 230px;
  }
}

@media screen and (max-width: 768px) {
  .p_data::before {
    inset: -229px 0 auto 0;
  }
}

.p_data::after {
  content: none;
}

.p_data .inner {
  max-width: 1360px;
}

@media screen and (min-width: 769px) {
  .p_data .inner {
    width: 80%;
  }
}

.p_data .l_section_ttl {
  padding-top: 3%;
  padding-left: 8% !important;
  margin-bottom: 3% !important;
}

.p_data .l_section_ttl img {
  max-width: 430px;
}

.p_data .info-grid {
  display: -ms-grid;
  display: grid;
  grid-template-areas: "a b c" "d d d" "e f g" "h i j" "k k k";
  gap: 30px;
}

@media screen and (min-width: 769px) {
  .p_data .info-grid {
    margin-right: 25px;
  }
}

@media screen and (max-width: 768px) {
  .p_data .info-grid {
    gap: 5px;
  }
}

.p_data .box {
  position: relative;
  text-align: center;
}

.p_data .box h4 {
  font-weight: 600;
  font-size: clamp(25px, 16.7647058824px + 2.3529411765vw, 45px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p_data .box .number {
  display: inline-block;
  font-family: "Barlow", sans-serif;
  font-variant-numeric: tabular-nums;
  /* 数字を均等幅に整える */
  letter-spacing: -0.01em;
  font-weight: 900;
  color: #f1a724;
  /* オレンジ本体 */
  text-shadow: -2px -2px #fff, 2px -2px #fff, -2px 2px #fff, 2px 2px #fff, -2px 0 #fff, 2px 0 #fff, 0 -2px #fff, 0 2px #fff;
  line-height: 1;
}

@media screen and (min-width: 769px) {
  .p_data .box .number {
    font-size: 10vw;
  }
}

@media screen and (min-width: 1200px) {
  .p_data .box .number {
    font-size: 9vw;
  }
}

@media screen and (max-width: 768px) {
  .p_data .box .number {
    font-size: 11.5vw;
  }
}

.p_data .box:not(.d):not(.k) {
  padding-top: 100%;
  background-size: cover;
}

.p_data .box:not(.d):not(.k)>div {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10%;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.p_data .a {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: a;
  background: url(../img/company/boxa.webp) no-repeat;
}

.p_data .b {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: b;
  background: url(../img/company/boxb.webp) no-repeat;
}

.p_data .c {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  grid-area: c;
  background: url(../img/company/boxc.webp) no-repeat;
}

.p_data .d {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-area: d;
}

.p_data .e {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  grid-area: e;
  background: url(../img/company/boxe.webp) no-repeat;
}

.p_data .f {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
  grid-area: f;
  background: url(../img/company/boxf.webp) no-repeat;
}

.p_data .g {
  -ms-grid-row: 5;
  -ms-grid-column: 5;
  grid-area: g;
  background: url(../img/company/boxg.webp) no-repeat;
}

.p_data .h {
  -ms-grid-row: 7;
  -ms-grid-column: 1;
  grid-area: h;
  background: url(../img/company/boxh.webp) no-repeat;
}

.p_data .i {
  -ms-grid-row: 7;
  -ms-grid-column: 3;
  grid-area: i;
  background: url(../img/company/boxi.webp) no-repeat;
}

.p_data .j {
  -ms-grid-row: 7;
  -ms-grid-column: 5;
  grid-area: j;
  background: url(../img/company/boxj.webp) no-repeat;
}

.p_data .k {
  -ms-grid-row: 9;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-area: k;
}

.p_data .box.d .grid {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}

.p_data .a .number {
  padding-right: 5%;
  padding-top: 17%;
}

@media screen and (min-width: 769px) {
  .p_data .a .number {
    font-size: 6.5vw;
  }
}

@media screen and (min-width: 1200px) {
  .p_data .a .number {
    font-size: 7.5vw;
  }
}

@media screen and (max-width: 768px) {
  .p_data .a .number {
    font-size: 9vw;
  }
}

.p_data .b #count_up_sales {
  padding-right: 58%;
  padding-top: 21%;
}

@media screen and (min-width: 769px) {
  .p_data .b #count_up_sales {
    font-size: 6.5vw;
  }
}

@media screen and (min-width: 1200px) {
  .p_data .b #count_up_sales {
    font-size: 7.5vw;
  }
}

@media screen and (max-width: 768px) {
  .p_data .b #count_up_sales {
    font-size: 9vw;
  }
}

.p_data .b #count_up_sales_million {
  padding-right: 25%;
}

@media screen and (min-width: 769px) {
  .p_data .b #count_up_sales_million {
    font-size: 5.5vw;
  }
}

@media screen and (min-width: 1200px) {
  .p_data .b #count_up_sales_million {
    font-size: 6vw;
  }
}

@media screen and (max-width: 768px) {
  .p_data .b #count_up_sales_million {
    font-size: 7.5vw;
  }
}

.p_data .c .number {
  padding-top: 16%;
}

.p_data .d .grid {
  position: absolute;
  bottom: 16%;
  width: 100%;
}

.p_data .d .number {
  padding-right: 20%;
}

@media screen and (min-width: 769px) {
  .p_data .d .number {
    font-size: 10vw;
  }
}

@media screen and (min-width: 1200px) {
  .p_data .d .number {
    font-size: 9vw;
  }
}

@media screen and (max-width: 768px) {
  .p_data .d .number {
    padding-right: 14%;
  }
}

.p_data .d #count_up_sales_percent {
  padding-left: 7%;
}

@media screen and (max-width: 768px) {
  .p_data .d #count_up_sales_percent {
    padding-left: 15%;
  }
}

.p_data .e .number {
  padding-right: 18%;
  padding-top: 16%;
}

.p_data .f div {
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.p_data .g .number {
  padding-right: 17%;
}

@media screen and (min-width: 769px) {
  .p_data .g .number {
    font-size: 7.5vw;
  }
}

@media screen and (min-width: 1200px) {
  .p_data .g .number {
    font-size: 8.5vw;
  }
}

.p_data .h .number {
  padding-top: 32%;
  padding-right: 19%;
}

.p_data .i .number {
  padding-top: 32%;
  padding-right: 19%;
}

.p_data .j .number {
  padding-top: 32%;
  padding-right: 19%;
}

.p_works.-company {
  background: #f8d28f;
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .p_works.-company {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.p_works.-company .p_works-slider-wrapper {
  overflow: hidden;
}

.p_works.-company .p_works_track {
  gap: 50px;
}

@media screen and (max-width: 768px) {
  .p_works.-company .p_works_track {
    gap: 15px;
  }
}

.p_works.-company .p_works_track .p_works_item img {
  max-height: 443px;
}

@media screen and (max-width: 1000px) {
  .p_works.-company .p_works_track .p_works_item img {
    max-height: 250px;
  }
}

@media screen and (max-width: 768px) {
  .p_works.-company .p_works_track .p_works_item img {
    max-height: 150px;
  }
}

/*	staff
============================================================================================================*/
.gradient-text {
  background: -webkit-gradient(linear, left top, right top, from(#f8c555), to(#e25a3a));
  background: linear-gradient(to right, #f8c555, #e25a3a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.homeMv .back_orange {
  background: linear-gradient(45deg, #e0a647, #fcee21);
  letter-spacing: 0.01em;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
  margin-bottom: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5% 2% 1% 3%;
  display: block;
}

@media screen and (min-width: 1201px) {
  .homeMv .back_orange {
    font-size: 2.26vw;
    padding-right: 0;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .homeMv .back_orange {
    font-size: 2.5vw;
    margin-bottom: 10px;
  }
}

@media (min-width: 501px) and (max-width: 769px) {
  .homeMv .back_orange {
    font-size: 3vw;
  }
}

@media screen and (max-width: 768px) {
  .homeMv .back_orange {
    margin-bottom: 15px;
  }
}

.homeMv.-staff {
  aspect-ratio: 1920/950;
}

@media screen and (max-width: 1200px) {
  .homeMv.-staff {
    aspect-ratio: 1920/1050;
  }
}

@media screen and (max-width: 768px) {
  .homeMv.-staff {
    aspect-ratio: 4/3.5;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 500px) {
  .homeMv.-staff {
    aspect-ratio: 4/6;
  }
}

.homeMv.-staff .homeMv__catch {
  width: 50%;
  margin: unset;
  bottom: 47%;
  right: auto;
  left: 5%;
}

@media screen and (max-width: 768px) {
  .homeMv.-staff .homeMv__catch {
    bottom: 37%;
    width: 100%;
    top: auto;
    font-size: 4.5vw;
  }
}

@media screen and (max-width: 500px) {
  .homeMv.-staff .homeMv__catch {
    bottom: 23%;
  }
}

.homeMv.-staff .prof {
  width: 330px;
  height: 235px;
  position: absolute;
  bottom: 0px;
  right: 14%;
  font-size: clamp(16px, 13.1176470588px + 0.8235294118vw, 23px);
  margin-bottom: 10px;
}

@media screen and (max-width: 1200px) {
  .homeMv.-staff .prof {
    right: 5%;
    width: 320px;
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .homeMv.-staff .prof {
    width: 200px;
  }
}

.homeMv.-staff .prof::before {
  content: "";
  display: inline-block;
  background: rgba(229, 127, 57, 0.8196078431);
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -9px;
  right: -9px;
  mix-blend-mode: multiply;
}

.homeMv.-staff .prof .txt {
  position: relative;
  background: #fff;
  width: 100%;
  height: 100%;
  padding: 14% 14% 4%;
}

@media screen and (max-width: 1200px) {
  .homeMv.-staff .prof .txt {
    padding: 6% 14% 4%;
  }
}

.homeMv.-staff .prof .txt p {
  line-height: 1.3;
}

.homeMv.-staff .prof .prof_name {
  font-size: clamp(20px, 10.5294117647px + 2.7058823529vw, 43px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  line-height: 1.4;
}

.homeMv.-staff .prof .prof_name .en {
  display: block;
  font-size: clamp(15px, 8.8235294118px + 1.7647058824vw, 30px);
}

@media screen and (max-width: 768px) {
  .homeMv.-staff .homeMv-imgBox img {
    aspect-ratio: 4/3;
  }
}

@media screen and (max-width: 500px) {
  .homeMv.-staff .homeMv-imgBox img {
    aspect-ratio: 4/5;
    -o-object-position: 65% bottom;
    object-position: 65% bottom;
  }
}

@media screen and (max-width: 768px) {
  .homeMv.-staff.-fix03 .homeMv-imgBox img {
    -o-object-position: 55% bottom;
    object-position: 55% bottom;
  }
}

.homeMv.-staff.-fix03 .homeMv__catch {
  bottom: 30%;
}

@media screen and (max-width: 768px) {
  .homeMv.-staff.-fix03 .homeMv__catch {
    bottom: 22%;
  }
}

.homeMv.-staff.-fix03 .homeMv__catch .back_orange {
  padding-right: 3%;
}

.p_staff_layout {
  padding-top: 6%;
}

@media screen and (max-width: 768px) {
  .p_staff_layout {
    margin-bottom: 25%;
  }
}

@media screen and (max-width: 500px) {
  .p_staff_layout {
    margin-bottom: 10%;
  }
}

@media screen and (min-width: 769px) {
  .p_staff_layout .inner {
    margin-inline: 0 auto;
    width: 80%;
    max-width: 1400px;
  }
}

.p_staff_layout .l_section_ttl {
  padding: 0 5%;
  padding-left: 15%;
}

@media screen and (max-width: 768px) {
  .p_staff_layout .l_section_ttl {
    margin-bottom: 7%;
    padding-left: 0;
  }
}

.p_staff_layout .l_section_ttl img {
  height: auto;
  max-width: 714px;
}

@media screen and (max-width: 768px) {
  .p_staff_layout .l_section_ttl img {
    width: 75%;
  }
}

.p_staff_layout_txt {
  max-width: 1245px;
  font-size: clamp(16px, 13.1176470588px + 0.8235294118vw, 23px);
  line-height: 2.5;
  margin-bottom: 8%;
}

@media screen and (min-width: 769px) {
  .p_staff_layout_txt {
    margin-left: 15%;
  }
}

@media screen and (max-width: 768px) {
  .p_staff_layout_txt {
    margin-bottom: 7%;
    line-height: 2;
  }
}

@media screen and (max-width: 768px) {
  .p_staff_layout.-second {
    margin-bottom: 5%;
    padding-bottom: 0;
  }
}

.p_staff_layout.-second .l_section_ttl img {
  max-width: 1018px;
}

@media screen and (max-width: 768px) {
  .p_staff_layout.-second .l_section_ttl img {
    width: 95%;
  }
}

.p_staff_layout.-second .p_staff_layout_txt {
  margin-bottom: 6%;
}

.bg_orange.-w {
  background: rgba(241, 167, 36, 0.24);
  margin-top: 365px;
  margin-bottom: 117px;
}

@media screen and (max-width: 768px) {
  .bg_orange.-w {
    padding-top: 0;
    padding-bottom: 5%;
    margin-bottom: 25%;
  }
}

.bg_orange.-w * {
  color: inherit;
}

@media screen and (max-width: 768px) {
  .bg_orange.-w {
    margin-top: 130px;
  }
}

.bg_orange.-w::before {
  background: url(../img/common/bg_wave_w_1.svg) no-repeat;
  background-size: 155% auto;
  height: 263px;
  width: 100%;
  inset: -262px 0 auto 0;
  -webkit-transition: background-position 0.8s ease-out;
  transition: background-position 0.8s ease-out;
}

@media screen and (min-width: 1201px) {
  .bg_orange.-w::before {
    height: 263px;
    inset: -263px 0 auto 0;
  }
}

.bg_orange.-w::after {
  background: url(../img/common/bg_wave_w_2.svg) no-repeat;
  background-size: 155% auto;
  height: 262px;
  inset: auto 0 -262px 0;
  width: 100%;
}

.bg_orange.-w .inner {
  position: relative;
  z-index: 2;
  margin-top: -100px;
}

@media screen and (min-width: 769px) {
  .bg_orange.-w .inner {
    max-width: 1324px;
    margin-inline: auto 0;
    width: 80%;
  }
}

@media screen and (min-width: 1950px) {
  .bg_orange.-w .inner {
    margin-inline: auto 5%;
  }
}

@media screen and (min-width: 1201px) {
  .bg_orange.-w .l_section_ttl {
    margin-bottom: 1.8em;
  }
}

.bg_orange.-w .l_section_ttl img {
  height: auto;
  max-width: 1119px;
}

@media screen and (max-width: 1200px) {
  .bg_orange.-w .l_section_ttl img {
    width: 85%;
  }
}

.bg_orange.-w .p_staff_layout_img {
  width: 100%;
}

.bg_orange.-w .p_staff_layout_txt {
  padding-top: 3%;
  margin-left: 0;
  margin-bottom: 4%;
}

@media screen and (min-width: 1201px) {
  .bg_orange.-w .p_staff_layout_txt {
    margin-right: 10%;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .bg_orange.-w .p_staff_layout_txt {
    margin-right: 12%;
  }
}

.bg_orange.-w .p_staff_layout_img {
  margin-left: auto;
}

.p_index {
  margin-bottom: 0;
  padding-bottom: 8%;
  font-family: var(--font-family-serif);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(45%, #f15a24), color-stop(45%, transparent));
  background: linear-gradient(0deg, #f1a724 45%, transparent 45%);
}

@media screen and (max-width: 768px) {
  .p_index {
    padding-bottom: 13%;
  }
}

.p_index .inner {
  max-width: 1846px;
}

.p_index .l_section_ttl img {
  max-width: 554px;
  width: 80%;
}

.p_index .p_index_list {
  margin-top: 4%;
  padding-right: 10px;
  display: -ms-grid;
  display: grid;
}

@media screen and (min-width: 769px) {
  .p_index .p_index_list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .p_index .p_index_list {
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .p_index .p_index_list {
    row-gap: 30px;
  }
}

.p_index .p_index_item {
  position: relative;
}

.p_index .p_index_item::before {
  content: "";
  display: inline-block;
  background: rgba(229, 127, 57, 0.8196078431);
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -9px;
  right: -9px;
  mix-blend-mode: multiply;
  z-index: -2;
  border-radius: 135px 0 135px 0;
}

@media screen and (max-width: 1200px) {
  .p_index .p_index_item::before {
    border-radius: 100px 0 100px 0;
  }
}

.p_index .p_index_item::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 10px;
  background: linear-gradient(80deg, #f2bd25 0%, #f2bd25 50%, #e55927 100%);
  border-radius: 135px 0 135px 0;
  z-index: 1;
  pointer-events: none;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 1200px) {
  .p_index .p_index_item::after {
    padding: 5px;
    border-radius: 100px 0 100px 0;
  }
}

.p_index .p_index_item .p_index_inner {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 135px 0 135px 0;
  width: 99%;
  height: 99%;
  padding: 14% 15% 14% 17%;
  z-index: 1;
  font-size: clamp(19px, 15.2941176471px + 1.0588235294vw, 28px);
  line-height: 1.5;
}

@media (min-width: 769px) and (max-width: 1200px) {
  .p_index .p_index_item .p_index_inner {
    padding: 23% 9% 14% 13%;
    font-size: 1.9vw;
    border-radius: 100px 0 100px 0;
  }
}

@media screen and (max-width: 768px) {
  .p_index .p_index_item .p_index_inner {
    border-radius: 100px 0 100px 0;
    padding: 14% 10% 14% 15%;
  }
}

.p_index .p_index_item .p_index_inner .gradient-text:first-child {
  position: relative;
  padding-bottom: 14%;
  margin-bottom: 22%;
}

@media screen and (max-width: 768px) {
  .p_index .p_index_item .p_index_inner .gradient-text:first-child {
    padding-bottom: 1em;
    margin-bottom: 1em;
  }
}

.p_index .p_index_item .p_index_inner .gradient-text:first-child::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 195px;
  max-width: 100%;
  height: 1px;
  background: repeating-linear-gradient(to right, #e55927, #e55927 10px, transparent 10px, transparent 20px);
}

.p_index .p_index_item .p_index_name {
  line-height: 1.4;
  font-size: clamp(19px, 14.4705882353px + 1.2941176471vw, 30px);
  margin-top: 5%;
}

@media screen and (max-width: 768px) {
  .p_index .p_index_item .p_index_name {
    padding-top: 1em;
  }
}

.p_index .p_index_item .p_index_name span {
  display: block;
  font-size: clamp(16px, 11.8823529412px + 1.1764705882vw, 26px);
}

/*============================================================================================================
	animation
============================================================================================================*/
.anim-fadeUp {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
}

/*------------------------------------------
オレンジ波
------------------------------------------*/
.bg_orange.js-wave-slide::before {
  background-position: 100% bottom;
  -webkit-transition: background-position 1.2s ease-out;
  transition: background-position 1.2s ease-out;
}

.bg_orange.js-wave-slide::after {
  background-position: 100% top;
  -webkit-transition: background-position 1.2s ease-out;
  transition: background-position 1.2s ease-out;
}

.bg_orange.js-wave-slide.is-inview::before {
  background-position: -10px bottom;
  scale: 1;
}

.bg_orange.js-wave-slide.is-inview::after {
  background-position: -10px top;
  scale: 1;
}

/*------------------------------------------
オレンジ波company
------------------------------------------*/
.bg_orange.js-wave-slide-fix::before {
  background-position: 100% bottom;
  -webkit-transition: background-position 1.2s ease-out;
  transition: background-position 1.2s ease-out;
}

.bg_orange.js-wave-slide-fix::after {
  background-position: 89% top;
  -webkit-transition: background-position 1.2s ease-out;
  transition: background-position 1.2s ease-out;
}

.bg_orange.js-wave-slide-fix.is-inview::before {
  background-position: -10px bottom;
}

@media screen and (max-width: 768px) {
  .bg_orange.js-wave-slide-fix.is-inview::before {
    background-position: 35% bottom;
  }
}

.bg_orange.js-wave-slide-fix.is-inview::after {
  background-position: -10px top;
}

@media screen and (max-width: 768px) {
  .bg_orange.js-wave-slide-fix.is-inview::after {
    background-position: 30% top;
  }
}

/*------------------------------------------
mv copy
------------------------------------------*/
.mv_copy_1 {
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
}

.mv_copy_2_wrap,
.mv_copy_3 {
  clip-path: inset(0 100% 0 0);
  will-change: clip-path;
  display: inline-block;
}

/*------------------------------------------
mv staff
------------------------------------------*/
.back_orange {
  clip-path: inset(0 100% 0 0);
  will-change: clip-path;
  display: inline-block;
}

.prof {
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
}

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

/* ========== CrossTalk ========== */
.p_crossMv {
  padding: clamp(48px, 8vw, 96px) 0 32px;
  position: relative;
  overflow: hidden;
}

.p_crossMv__kicker {
  font-size: 14px;
  letter-spacing: .12em;
  margin-bottom: 6px;
  color: #fff;
}

.p_crossMv__title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(40px, 8vw, 84px);
  line-height: 1;
  color: #fff;
  margin: 0 0 8px;
}

.p_crossMv__sub {
  font-size: 14px;
  color: rgba(255, 255, 255, .9);
  margin-bottom: clamp(20px, 4vw, 40px);
}

.p_crossMv__cards {
  gap: clamp(16px, 3vw, 28px);
}

.c-memberCard {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
}

.c-memberCard__ph img {
  width: 100%;
  height: auto;
  display: block;
}

.c-memberCard__meta {
  padding: 16px 18px 20px;
}

.c-memberCard__role {
  font-size: 12px;
  color: #8a8a8a;
  letter-spacing: .1em;
  margin: 0 0 4px;
}

.c-memberCard__name {
  font-size: clamp(18px, 2.4vw, 22px);
  margin: 0;
}

/* Talk block */
.p_talk {
  position: relative;
  background: rgba(241, 167, 36, 0.23);
  padding: clamp(48px, 6vw, 88px) 0;
}

.p_talk.-alt {
  background: #fff;
}

/* セクションのリズム */

.p_talk__lead {
  font-weight: bold;
  letter-spacing: .04em;
  margin: 0 0 clamp(20px, 3vw, 28px);
  position: relative;
  color: #f1a724;
  font-size: 40px;
}

.p_talk__lead span {
  color: #e3a86b;
  margin-right: 6px;
}

.p_talk__circleMark {
  position: absolute;
  right: max(0px, calc(50% - 720px));
  top: clamp(20px, 4vw, 40px);
  opacity: .15;
  width: clamp(260px, 28vw, 480px);
  height: auto;
  pointer-events: none;
}

/* 吹き出しリスト */
.p_talkList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  row-gap: 18px;
}

.p_talkList__item {
  display: grid;
  grid-template-columns: 160px 1fr;
  column-gap: 8px;
  align-items: center;
  margin-bottom: 80px;
}

.p_talkList__icon img {
  width: 162px;
  height: 162px;
  display: block;
  object-fit: cover;
}

/* 吹き出し本体 */
.p_talkList__bubble {
  position: relative;
  padding: 14px 16px;
  line-height: 1.9;
  word-break: auto-phrase;
  width: 100%;
  max-width: clamp(980px, 60%, 900px);
  margin: 0 auto;
}

/* クロージング写真 */
.p_talkPhoto {
  margin-top: clamp(28px, 6vw, 56px);
}

.p_talkPhoto img {
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 800;
}

/* レスポンシブ */
@media (max-width: 767px) {
  .p_crossMv {
    padding-top: 36px;
  }

  .p_talk__circleMark {
    right: -40px;
    top: -10px;
    opacity: .12;
  }

  .p_talkList__item {
    grid-template-columns: 81px 1fr;
    margin-bottom: 10px;
  }

  .p_talkList__icon img {
    width: 81px;
    height: 81px;
  }

  .p_talk__lead {
    font-size: 20px;
  }
}

/* ===== CrossTalk Hero ===== */
.p_crossHero {
  background: #ea8c4a;
  /* 参考画像のオレンジ帯 */
}

.p_crossHero__wrap {
  position: relative;
  max-width: min(1706px, 100%);
  margin-inline: auto;
  padding: clamp(28px, 6vw, 64px) 0;
  /* 上下にオレンジ帯の余白 */
  padding-left: 207px;
  padding-bottom: 200px;
}

.p_crossHero__img {
  aspect-ratio: 1706/806;
}

.p_crossHero__badge span {
  font-weight: 700;
  letter-spacing: .08em;
  color: #f1a724;
  white-space: nowrap;
  display: inline-block;
  margin-right: 0;
  font-size: 38px;
}

/* SP最適化 */
@media (max-width: 767px) {
  .p_crossHero__title {
    bottom: clamp(-4px, -1.6vw, -10px);
  }

  .p_crossHero__badge {
    right: 12px;
    bottom: 12px;
    padding: 8px 12px;
  }
}

/* ===== Talk Members（MV直下の白い枠） ===== */
.p_talkMembers .inner {
  position: relative;
  margin-inline: unset;
}

/* カード共通 */
.p_tmCard {}

.p_tmCard__ph img {
  width: 100%;
  height: auto;
  display: block;
}

.p_tmCard__cap {
  margin-top: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  column-gap: 12px;
}

.p_tmCard__cap--duo {
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(16px, 3vw, 36px);
}

.p_tmCard__meta {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  column-gap: 10px;
}

.p_tmCard__role {
  display: inline-block;
  font-size: 14px;
  letter-spacing: .06em;
  padding-left: 10px;
}

.p_tmCard__role.-orange {
  border-color: #e3a86b;
}

.p_tmCard__role.-blue {
  border-color: #3ca4d6;
}

.p_tmCard__role.-green {
  border-color: #7bbf86;
}

.p_tmCard__name {
  font-weight: 800;
  font-size: clamp(20px, 3vw, 28px);
  letter-spacing: .06em;
}

.-orange::before {
  background: #f1a724 !important;
}

/* SP */
@media (max-width: 900px) {
  .p_talkMembers__grid {
    grid-template-columns: 1fr;
  }

  .p_talkMembers__cap {
    grid-template-columns: auto 1fr;
  }

  .p_talkMembers__cross {
    opacity: .15;
  }
}

@media (max-width: 480px) {
  .p_tmCard__cap--duo {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }
}

/* === Talk bubble：アイコン下の小バッジ（肩書/イニシャル） === */
.p_talkList__icon {
  position: relative;
  display: grid;
  justify-items: center;
}

.p_talkList__badge {
  display: inline-block;
  font-size: 11px;
  line-height: 1;
  padding: 4px 6px;
  background: #f6f6f6;
  color: #555;
  border: 1px solid rgba(0, 0, 0, .08);
}

.p_talkList__badge.-orange {
  background: #f1a724;
  color: #fff;
}

.p_talkList__badge.-blue {
  background: #29abe2;
  color: #fff;
}

.p_talkList__badge.-green {
  background: #8fc47a;
  color: #fff;
}

/* セクション末の写真 余白強め */
.p_talkPhoto.-mt {
  margin-top: clamp(24px, 5vw, 56px);
}

/* ===== 新卒採用について：右写真付き2カラム ===== */
.p_talk.-withShots {
  background: #fff;
}

/* 前後の帯とトーン差をつける */
.p_talkShots__grid {
  /* display:grid; */
  grid-template-columns: 1fr min(36%, 360px);
  gap: clamp(18px, 4vw, 32px);
  align-items: start;
}

.p_talkShots__right {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2.4vw, 20px);
}

.p_talkShot img {
  width: 100%;
  height: auto;
  display: block;
}

/* タイトルと本文の行間・字間は既存 .p_talk を継承 */
@media (max-width: 900px) {
  .p_talkShots__grid {
    grid-template-columns: 1fr;
  }

  .p_talkShots__right {
    order: 2;
    /* 会話の後に写真 */
  }
}

/* 2色背景レイヤー */
.p_talkMembers .twoTone-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}

.p_talkMembers .twoTone-bg__top {
  height: 45%;
  background: #ea8c4a;
}

.p_talkMembers .twoTone-bg__bottom {
  flex: 1;
  background: #f6e8d0;
}

/* 背景に跨って見える “Talk Member” */
.p_talkMembers .twoTone-bg__wm {
  position: absolute;
  left: clamp(12px, 2vw, 24px);
  bottom: clamp(4px, 1vw, 10px);
  margin: 0;
  line-height: 1;
  white-space: nowrap;
  font-size: clamp(56px, 14vw, 180px);
  color: transparent;
  -webkit-text-stroke: 2px rgb(241 90 36 / 20%);
  text-stroke: 2px rgba(241, 90, 36, .20);
}

/* パネルは前面へ（白い角丸ボックスは既存のまま） */
.p_talkMembers .p_talkMembers__panel {
  position: relative;
  z-index: 1;
}

/* --- Talk Member セクション画像調整 --- */

.p_talkMembers__grid .p_tmCard:last-child .p_tmCard__ph img {
  max-width: 650px;
}

/* ── Talk Members：肩書き＋氏名の見た目を強化（ページ専用） ── */
.p_talkMembers .p_tmCard__cap {
  margin-top: 12px;
}

/* 役職：左に長めの縦バー */
.p_talkMembers .p_tmCard__role {
  position: relative;
  display: inline-block;
  padding-left: 16px;
  /* 文字とバーの距離 */
  font-size: 16px;
  /* 役職は小さめ */
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.3;
}

.p_talkMembers .p_tmCard__role::before {
  content: "";
  position: absolute;
  left: 0;
  top: -6px;
  /* 役職文字より少し上から */
  width: 10px;
  /* バーの太さ */
  height: calc(100% + 26px);
  /* 役職の上下に伸ばす＝長めのバー */
  border-radius: 2px;
  background: #e3a86b;
  /* デフォルト橙 */
}

/* カラー差し替え（既存の修飾クラスに連動） */
.p_talkMembers .p_tmCard__role.-orange::before {
  background: #e3a86b;
}

.p_talkMembers .p_tmCard__role.-blue::before {
  background: #3ca4d6;
}

.p_talkMembers .p_tmCard__role.-green::before {
  background: #7bbf86;
}

/* 氏名：大きく・太く */
.p_talkMembers .p_tmCard__name {
  display: block;
  margin-top: 6px;
  font-weight: 900;
  font-size: clamp(26px, 3.6vw, 42px);
  /* 画像2のバランスに近づける */
  letter-spacing: .06em;
  color: #333;
}

/* Duo側の2人表示でも同じ見た目になるよう調整（隣り合わせ） */
.p_talkMembers .p_tmCard__cap--duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(12px, 2.4vw, 24px);
}

.p_talkMembers .p_tmCard__cap--duo .p_tmCard__meta {
  display: block;
}

/* ===== Talk Member セクション調整（2枚目の見た目へ） ===== */

/* 2色背景の配分を控えめに（上オレンジは薄め） */
.p_talkMembers .twoTone-bg__top {
  height: 28%;
}

/* レイアウト：左右に写真、中央に× */
.p_talkMembers__panel {
  position: relative;
}

/* 右：2人カードの写真サイズ */
.p_talkMembers__grid .p_tmCard:last-child .p_tmCard__ph {
  inline-size: clamp(320px, 36vw, 650px);
  aspect-ratio: 650 / 431;
}

.p_talkMembers__grid .p_tmCard:last-child .p_tmCard__ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 統一の角丸と影（必要なら） */
.p_tmCard__ph {
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

/* ------ キャプション（役職ピル＋氏名） ------ */

/* 役職は“縦バー”をやめ、色付きピルに */
.p_talkMembers .p_tmCard__role {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #fff;
}

.p_talkMembers .p_tmCard__role::before {
  content: none;
}

/* ピル色（既存クラスを流用） */
.p_talkMembers .p_tmCard__role.-orange {
  background: #e3a86b;
}

.p_talkMembers .p_tmCard__role.-blue {
  background: #3ca4d6;
}

.p_talkMembers .p_tmCard__role.-green {
  background: #7bbf86;
}

/* 氏名は太く・やや小さめ（2枚目寄せ） */
.p_talkMembers .p_tmCard__name {
  display: block;
  margin-top: 6px;
  font-weight: 900;
  font-size: clamp(20px, 2.8vw, 28px);
  letter-spacing: .04em;
  color: #222;
}

/* Duo 側は2人のメタを横並び（等幅） */
.p_talkMembers .p_tmCard__cap--duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(12px, 2.2vw, 24px);
}

/* 余白微調整（全体） */
.p_talkMembers .p_tmCard__cap {
  margin-top: 10px;
}

/* --- Talk Member：役職（縦バータイプに戻す） --- */
.p_talkMembers .p_tmCard__role {
  position: relative;
  display: inline-block;
  padding-left: 14px;
  /* バーと文字の間隔 */
  background: none !important;
  /* ピル背景を削除 */
  color: #000 !important;
  /* テキストを黒系に */
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  border-radius: 0;
}

/* 各カラーに応じたバー色（個別指定） */
.p_talkMembers .p_tmCard__role.-orange::before {
  background: #e3a86b;
}

.p_talkMembers .p_tmCard__role.-blue::before {
  background: #3ca4d6;
}

.p_talkMembers .p_tmCard__role.-green::before {
  background: #7bbf86;
}

/* 余白微調整 */
.p_talkMembers .p_tmCard__cap {
  margin-top: 8px;
}

/* --- Talk Member：役職＋名前を縦線でまとめる --- */
.p_talkMembers .p_tmCard__meta {
  position: relative;
  padding-left: 14px;
  /* 線と文字の距離 */
}

/* 縦線本体（部署＋名前全体を囲む） */
.p_talkMembers .p_tmCard__meta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  /* 線の太さ */
  height: 100%;
  /* meta全体の高さに合わせる */
  border-radius: 2px;
  background: #7bbf86;
  /* デフォルト緑 */
}

/* 色別バリエーション（社長・青など） */
.p_talkMembers .p_tmCard__meta:first-child::before {
  background: #3ca4d6;
}

/* O・A側（青） */
.p_talkMembers .p_tmCard__meta:last-child::before {
  background: #7bbf86;
}

/* M・K側（緑） */

/* 役職（部署）は通常のテキスト */
.p_talkMembers .p_tmCard__role {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
  background: none !important;
  padding-left: 0;
}

/* 氏名（イニシャル） */
.p_talkMembers .p_tmCard__name {
  display: block;
  margin-top: 4px;
  font-weight: 900;
  font-size: clamp(20px, 2.8vw, 28px);
  letter-spacing: .04em;
  color: #222;
}

/* --- 吹き出しリストの人物アイコンと肩書きラベル位置調整 --- */
.p_talkList__icon {
  position: relative;
  display: inline-block;
  z-index: 2;
}

/* バッジ（社長など）を画像の上に重ねる */
.p_talkList__badge {
  position: absolute;
  bottom: -7px;
  /* 下からの距離：好みに応じて調整 */
  left: 50%;
  transform: translateX(-50%);
  background: #e3a86b;
  /* オレンジ */
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.4;
  padding: 3px 10px;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 2;
}

/* オレンジ以外のカラーバリエーションも想定して */
.p_talkList__badge.-blue {
  background: #3ca4d6;
}

.p_talkList__badge.-green {
  background: #7bbf86;
}

@media (max-width: 1100px) {
  .p_talkMembers .p_tmCard__role {
    padding: 4px;
  }
}

@media (max-width: 1100px) {
  .p_talkMembers__cross {
    /* 位置調整：少し下へ & 少し縮小 */
    transform: translateY(30px) scale(0.85);
    opacity: 0.15;
  }

  /* 画像やカードに隠れないように前後関係維持 */
  .p_talkMembers__panel {
    position: relative;
    z-index: 1;
  }

  .p_talkMembers__cross {
    position: absolute;
    z-index: 0;
  }

  /* Talk Memberの顔写真を縮小 */
  .p_tmCard__ph img {
    width: 85%;
    margin: 0 auto;
    display: block;
  }

  /* 顔写真下キャプションの余白を少し調整 */
  .p_tmCard__cap {
    margin-top: 8px;
  }
}

@media (max-width: 768px) {
  .p_talkList__badge {
    bottom: -8px;
    font-size: 10px;
    padding: 3px 8px;
  }
}

/* 写真の想定高さ（レスポンシブで調整） */
:root {
  --left-photo-h: clamp(220px, 36vw, 520px);
}

/* 親セクションに余白を確保して重なり防止 */
.l_section.p_talk {
  position: relative;
  padding-bottom: calc(var(--left-photo-h) + 16px);
  /* 16pxは余裕分、任意 */
}

/* この写真だけ左下に固定配置（角丸なし） */
.p_talkPhoto.-left {
  position: absolute;
  left: 0;
  bottom: 0;
  height: var(--left-photo-h);
  /* 高さを決め打ち */
  margin: 0;
  border-radius: 0;
  transform: none;
  z-index: 1;
}

.p_talkPhoto.-left img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* はみ出しなくフィット */
  border-radius: unset;
}

.p_talk_area {
  padding-bottom: 0 !important;
}

/* モバイルで少し低めにしたい場合の例 */
@media (max-width: 768px) {
  :root {
    --left-photo-h: clamp(180px, 48vw, 360px);
  }
}

/* CrossTalk ヒーロー右寄せ */
.p_crossHero__wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
  /* 右寄せ */
  align-items: flex-end;
  overflow: hidden;
}

/* 画像そのものの制御 */
.p_crossHero__img {
  width: auto;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
  transform: translateX(3%);
  /* ←必要に応じて右へズラす（調整可） */
}

/* タイトル・バッジを重ねる */
.p_crossHero__title,
.p_crossHero__badge {
  position: absolute;
  right: 5%;
  /* 左寄せ固定（必要なら中央でもOK） */
  z-index: 2;
}

/* --------------------------------
   右側の画像群を縦中央に配置
-------------------------------- */
.p_talkShots__right {
  position: absolute;
  right: 0;
  /* 右端に寄せる */
  top: 31%;
  /* セクションの縦中央 */
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  /* 縦並び */
  gap: 20px;
  /* 画像間の余白 */
  width: 40%;
  /* 横幅（調整可） */
  max-width: 510px;
  z-index: 1;
}

/* 各画像の調整 */
.p_talkShot {
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.p_talkShot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* 親セクション設定 */
.l_section.p_talk {
  position: relative;
  /* absolute基準にするため必要 */
}

/* 左側（本文）の余白確保 */
.p_talk .inner {
  padding-right: 45%;
  /* 画像分の余白を確保（調整可） */
  overflow: visible;
}

@media (max-width: 1100px) {
  .p_talk .inner {
    padding-right: 20%;
  }
}

/* スマホ時は通常の縦並びに戻す */
@media (max-width: 1100px) {
  .p_talkShots__right {
    position: static;
    transform: none;
    width: 50%;
    max-width: none;
    margin-top: 24px;
    display: block;
    margin-left: auto;
    margin-right: 0;
  }

  .p_talk .inner {
    padding-right: 0;
  }

  .l_section.p_talk {}
}

/* 食い込み量を調整 */
:root {
  --photo-overlap: 120px;
  /* PCでの食い込み量、好みで変更 */
}

/* 写真を下方向へはみ出させる */
.p_talkPhoto.-intoNext {
  position: relative;
  z-index: 2;
  display: block;
  margin: 0 auto;
  transform: translateY(var(--photo-overlap));
  border-radius: 0;
  box-shadow: none;
}

/* 食い込んだ分、下のセクションが押し上げられないよう補正 */
.p_talkPhoto.-intoNext img {
  display: block;
  width: 100%;
  height: auto;
}

/* 下のセクションを少し上に引き上げて隙間をなくす */
.p_talk_area+.l_section {
  margin-top: calc(-1 * var(--photo-overlap));
}

/* スマホ調整 */
@media (max-width: 768px) {
  :root {
    --photo-overlap: 40px;
  }
}

/* 1) ヒーロー一式の積層基準を用意して、他の帯より前面に */
.p_crossHero {
  position: relative;
  z-index: 10;
  /* オレンジ帯などより前へ */
}

/* 2) 画像ラップを絶対配置の基準に（!important で勝ちに行く） */
.p_crossHero__wrap {
  position: relative !important;
  overflow: visible !important;
  /* クリップされないように */
}

/* 3) 画像はベースレイヤーに固定（z-index:1） */
.p_crossHero__img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  position: relative !important;
  z-index: 1 !important;
}

/* 4) バッジを“必ず”重ねる（absolute + 高い z-index） */
.p_crossHero__badge {
  position: absolute !important;
  right: clamp(0px, 3vw, 0px) !important;
  bottom: clamp(115px, 3vw, 115px) !important;
  z-index: 3 !important;
  margin: 0 !important;
  transform: none !important;
}

/* 5) もし .-right で flex を使っているなら、絶対配置を邪魔しないよう明示 */
.p_crossHero__wrap.-right {
  display: block !important;
  /* flex が強い場合は一旦ブロックに */
}

/* ※ flex のままでも absolute は効きますが、テーマ側の独自指定を無力化するための保険です */

/* 2) 画像ボックスは列幅いっぱい。個別 max-width を無効化 */
.p_talkMembers__grid .p_tmCard .p_tmCard__ph {
  width: 100% !important;
  max-width: none !important;
}

/* 4) 以前の「左右で別サイズ」指定を打ち消し（早く縮むのを防止） */
.p_talkMembers__grid .p_tmCard:first-child .p_tmCard__ph img,
.p_talkMembers__grid .p_tmCard:last-child .p_tmCard__ph img {
  max-width: none !important;
}

/* 5) 画面が狭くなったら1カラム（重なり/はみ出し防止） */
@media (max-width: 960px) {
  .p_talkMembers__grid {
    grid-template-columns: 1fr;
  }

  .p_talkMembers__cross {
    display: none;
    /* 中央の×は消す or 小さく */
  }
}

/* ← 左カードの“伸びすぎ”を上限で止める */
.p_talkMembers__grid .p_tmCard:first-child .p_tmCard__ph {
  inline-size: clamp(260px, 32vw, 420px);
  /* 最小/流体/最大 */
  aspect-ratio: 329 / 431;
  /* 元の比率 */
}

/* 右カード（2人）の推奨サイズ帯 */
.p_talkMembers__grid .p_tmCard:last-child .p_tmCard__ph {
  inline-size: clamp(340px, 40vw, 640px);
  aspect-ratio: 650 / 431;
}

/* スマホは1カラムに */
@media (max-width: 960px) {
  .p_talkMembers__grid {
    grid-template-columns: 1fr;
  }
}

/* 各カード共通：幅をfluidにしつつ最大幅で抑える */
.p_talkMembers__grid .p_tmCard {
  flex: 1 1 45%;
  max-width: 600px;
  /* 左右の上限を統一 */
  min-width: 320px;
}

/* 右画像：通常通りfluid */
.p_talkMembers__grid .p_tmCard:last-child .p_tmCard__ph img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-width: 640px;
}

/* スマホ時1カラム */
@media (max-width: 1100px) {
  .p_talkMembers__grid {
    flex-direction: column;
    align-items: center;
  }

  .p_talkMembers__cross {
    display: none;
  }

  .p_talkMembers__grid .p_tmCard {
    max-width: 600px !important;
    min-width: 0;
  }

  .p_talkMembers .inner {
    width: calc(100% - 70px) !important;
  }

  .p_talkMembers__grid .p_tmCard:first-child .p_tmCard__ph {
    aspect-ratio: 0 !important;
  }

  .p_talkMembers__grid .p_tmCard:first-child .p_tmCard__ph img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    margin: 0 auto;
    display: block;
  }

  .p_talkMembers .p_tmCard__cap {
    margin-top: -12px;
  }

  .p_talkMembers__grid .p_tmCard:last-child .p_tmCard__ph {
    aspect-ratio: 0 !important;
  }

  .p_talkMembers__grid .p_tmCard:last-child .p_tmCard__ph img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    margin: 0 auto;
    display: block;
  }

  .p_talkMembers_left_name {
    display: block !important;
    width: 58% !important;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== Talk Member：左右の写真を「同率で」縮小 ===== */

/* レイアウト */
.p_talkMembers__grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(32px, 4vw, 80px);
  flex-wrap: nowrap;
  /* PCは2カラムのまま */
}

/* ---- ここが肝 ----
   ・PCでは “今の見た目の大きさ” を上限（max）として固定
   ・viewportが狭くなるほど 34vw / 52vw を基準に同率で小さくなる
   ・min 値で崩れ防止
*/
:root {
  --gap: clamp(32px, 4vw, 80px);

  /* 左右のサイズ帯（好みで微調整OK） */
  --left-min: 280px;
  --left-max: 329px;
  /* ←今のPCでの見た目の上限 */
  --right-min: 420px;
  --right-max: 650px;
  /* ←今のPCでの見た目の上限 */
}

/* 左（社長） */
.p_talkMembers__grid .p_tmCard:first-child {
  flex: 0 1 clamp(var(--left-min), 34vw, var(--left-max));
  max-width: var(--left-max);
}

/* 右（2人） */
.p_talkMembers__grid .p_tmCard:last-child {
  flex: 0 1 clamp(var(--right-min), 52vw, var(--right-max));
  max-width: var(--right-max);
}

.p_talkMembers__grid .p_tmCard:last-child .p_tmCard__ph {
  aspect-ratio: 650 / 431;
  /* 元画像比率を維持（任意） */
}

/* 中央の × はそのまま。はみ出す時は小さく or 非表示 */
@media (max-width: 1200px) {
  .p_talkMembers__cross {
    font-size: clamp(72px, 8vw, 120px);
  }
}

@media (max-width: 960px) {
  .p_talkMembers__grid {
    flex-wrap: wrap;
  }

  .p_talkMembers__cross {
    display: none;
  }

  /* 1カラム時は消す */
  .p_talkMembers__grid .p_tmCard {
    flex: 1 1 100%;
    max-width: 680px;
  }

  .p_talkMembers__grid .p_tmCard:first-child {
    flex-basis: 100%;
  }

  .p_talkMembers__grid .p_tmCard:last-child {
    flex-basis: 100%;
  }
}

/* 左右カード共通 */
.p_tmCard {
  flex: 0 1 auto;
}

/* 左（社長） */
.p_talkMembers__panel .p_tmCard:first-child {
  flex-basis: clamp(280px, 32vw, 420px);
}

/* 右（2人） */
.p_talkMembers__panel .p_tmCard:last-child {
  flex-basis: clamp(420px, 52vw, 760px);
}

/* 全体スケール：画面幅に応じて */
@media (max-width: 1200px) {
  .p_talkMembers__panel {
    transform: scale(calc(100vw / 1200));
    transform-origin: center top;
  }
}

/* スマホ（1カラム） */
@media (max-width: 1100px) {
  .p_talkMembers__panel {
    flex-direction: column;
    transform: none;
  }

  .p_talkMembers__cross {
    display: none;
  }
}

/* ===============================
   Talk Member パネルの見た目
   =============================== */
.p_talkMembers__panel {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 22px;
  padding: clamp(24px, 4vw, 56px) clamp(28px, 5vw, 72px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .08);
  max-width: 1770px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(32px, 4vw, 80px);
  width: 100%;
  scale: 1;
  transition: scale 0.3s ease;
}

/* 左=社長（縦長の比率を維持） */
.p_talkMembers__grid .p_tmCard:first-child .p_tmCard__ph {
  aspect-ratio: 329 / 431;
}

.p_talkMembers__grid .p_tmCard:first-child .p_tmCard__ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* 右=2人（横長の比率を維持） */
.p_talkMembers__grid .p_tmCard:last-child .p_tmCard__ph {
  aspect-ratio: 650 / 431;
}

.p_talkMembers__grid .p_tmCard:last-child .p_tmCard__ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 画像は前面にして×が透けるように */
.p_tmCard {
  position: relative;
  z-index: 1;
}

/* ---- キャプション：縦線が部署＋名前全体にかかる ---- */
.p_tmCard__cap {
  margin-top: 14px;
}

.p_tmCard__cap--duo {
  /* 右の2人を左右に並べる */
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(12px, 2vw, 24px);
}

.p_tmCard__meta {
  position: relative;
  padding-left: 14px;
}

.p_tmCard__meta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  border-radius: 2px;
  background: #e3a86b;
  /* デフォ:橙(社長) */
}

/* 右側の色分け */
.p_talkMembers__grid .p_tmCard:last-child .p_tmCard__meta:first-child::before {
  background: #3ca4d6;
}

/* O・A=青 */
.p_talkMembers__grid .p_tmCard:last-child .p_tmCard__meta:last-child::before {
  background: #7bbf86;
}

/* M・K=緑 */

.p_tmCard__role {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
}

.p_tmCard__name {
  display: block;
  font-weight: 900;
  color: #222;
  font-size: clamp(22px, 2.8vw, 30px);
  letter-spacing: .04em;
}

/* --- レスポンシブ（縦積み） --- */
@media (max-width: 960px) {
  .p_talkMembers__grid {
    grid-template-columns: 1fr;
  }

  .p_talkMembers__cross {
    display: none;
  }
}

/* ベース色（必要に応じて既存の色に合わせてください） */
:root {
  --talk-sand: #f6e8d0;
  /* 「社長と二人の関係性について」側のベージュ */
  --talk-orange: #ea8c4a;
  /* 既存のオレンジ（参照用） */
}

/* 2色背景の“上側”も下側と同じベージュにして、セクションをまたいで一体化 */
.p_talkMembers.-mergeNextBG .twoTone-bg__top,
.p_talkMembers.-mergeNextBG .twoTone-bg__bottom {
  background: var(--talk-sand);
}

/* 万一、Talk Member セクション直下に余白段差が出る場合はこれも */
.p_talkMembers.-mergeNextBG {
  background: var(--talk-sand);
  /* セクション自体の背景も統一 */
}

.talk-members-band {
  position: relative;
  /* レイアウトに乗せる通常要素 */
  width: 100%;
  height: clamp(140px, 16vw, 260px);
  /* 見た目に合わせて調整 */
  margin-top: -120px;
  /* CrossTalk の下に食い込ませる */
  z-index: 0;
  /* 後続の白パネルより後ろ */
}

/* Talk Member セクション全体 */
.p_talkMembers {
  position: relative;
  overflow: visible;
  /* Talk Member全体がはみ出しても見えるように */
  margin-top: -280px;
  /* ← 上のオレンジ部分に食い込む */
  z-index: 23;
  /* CrossTalkより上に出す */
  padding: clamp(36px, 6vw, 72px) 0;
}

/* ウォーターマーク "Talk Member" は中央配置で残す */
.twoTone-bg__wm {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(90px, 12vw, 180px);
  font-weight: 700;
  color: rgba(234, 140, 74, 0.15);
  /* やや薄めのオレンジ文字で馴染ませる */
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

/* パネル内の実内容を前面へ */
.p_talkMembers__grid,
.p_talkMembers__cross {
  position: relative;
  z-index: 1;
}

/* 内容は手前に出す */
.p_talkMembers__grid,
.p_talkMembers__cross {
  position: relative;
  z-index: 1;
}

/* ===============================
   Talk Member セクション 全体
=============================== */

/* 画像レイアウト：左右バランス良く配置 */
.p_talkMembers__grid {
  display: grid;
  grid-template-columns: 1fr 1.42fr;
  /* 左：右 ≒ 38%：54% */
  gap: clamp(24px, 4.5vw, 56px);
  align-items: start;
}

.p_tmCard__ph {
  overflow: hidden;
}

.p_tmCard__ph img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* キャプション */
.p_talkMembers .p_tmCard__cap {
  margin-top: 10px;
}

/* ===============================
   中央の「×」をCSSで描画
=============================== */
.p_talkMembers__cross {
  position: absolute;
  left: 50%;
  top: clamp(46px, 10vw, 120px);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
}

.p_talkMembers__cross::before,
.p_talkMembers__cross::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 0;
  border-top: clamp(6px, 0.9vw, 10px) solid rgba(241, 167, 36, 0.28);
  border-radius: 999px;
}

.p_talkMembers__cross::before {
  transform: rotate(45deg);
}

.p_talkMembers__cross::after {
  transform: rotate(-45deg);
}

/* ===============================
   Talk Member（背景文字）
=============================== */
.p_talkMembers__wm {
  position: absolute;
  bottom: 8%;
  left: 30%;
  transform: translateX(-50%);
  margin: 0;
  font-family: "HGP創英角ｺﾞｼｯｸUB", "HGP創英角ゴシックUB", sans-serif;
  font-weight: bold;
  font-size: clamp(60px, 9vw, 150px);
  /* 大きすぎないよう調整 */
  line-height: 1;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 2px rgba(241, 90, 36, 0.15);
  text-stroke: 2px rgba(241, 90, 36, 0.15);
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}

@media (max-width: 768px) {
  .p_talkMembers__wm {
    left: 51%;
    font-size: clamp(46px, 9vw, 150px);
  }
}

/* 内容は前面に */
.p_talkMembers__grid {
  position: relative;
  z-index: 2;
}

/* --- 中央の「×」 --- */
.p_talkMembers__grid::before {
  content: "×";
  position: absolute;
  top: 50%;
  left: 36%;
  transform: translate(-50%, -50%);
  font-family: "HGP創英角ｺﾞｼｯｸUB", "HGP創英角ゴシックUB", sans-serif;
  font-size: clamp(48px, 7vw, 120px);
  color: transparent;
  /* ← 塗りつぶしを透明にする */
  -webkit-text-stroke: 2px rgba(241, 90, 36, 0.15);
  /* ← 輪郭線だけ表示 */
  text-stroke: 2px rgba(241, 90, 36, 0.15);
  /* ← 一部ブラウザ互換 */
  font-weight: bold;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}

/* ===============================
   レスポンシブ（スマホ）
=============================== */
@media (max-width: 1100px) {
  .p_talkMembers__grid {
    grid-template-columns: 1fr;
    gap: clamp(20px, 4vw, 28px);
  }

  .p_talkMembers__cross {
    position: static;
    margin: 0 auto -4px;
    transform: none;
  }

  .p_talkMembers__grid::before {
    left: 50%;
  }

  .p_talkMembers {
    margin-top: -200px;
  }

  .p_crossHero__img {
    transform: translateX(0%);
  }
}

/* ===== CrossTalk セクション全体 ===== */
.p_crossHero {
  position: relative;
  overflow: hidden;
}

/* 画像を包む要素を相対配置にする */
.p_crossHero__imgWrap {
  position: relative;
  display: block;
  overflow: hidden;
  margin-inline-end: 0px;
}

/* 社長 × 社員対談バッジ（画像上に重ねる） */
.p_crossHero__badge {
  position: absolute;
  bottom: 30px;
  /* 画像下からの距離 */
  right: 40px;
  /* 画像右からの距離 */
  background: #fff;
  padding: 0.4em 0.3em;
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  font-weight: bold;
  font-size: 16px;
  color: #f18b00;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 点線部分 */
.p_crossHero__badge .dash {
  display: inline-block;
  width: 50px;
  height: 2px;
  border-bottom: 3px dashed #e8b07c;
}

/* タイトル */
.p_crossHero__title {
  position: absolute;
  left: 5%;
  bottom: 5%;
  font-family: "Britannic Bold", "Times New Roman", serif;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(48px, 10vw, 286px);
  font-weight: bold;
  z-index: 1;
  letter-spacing: 0.02em;
  line-height: 1;
  text-shadow: 0 2px 0 rgba(0, 0, 0, .05);
  pointer-events: none;
  padding-bottom: 98px;
  opacity: 0;
  transform: translateX(-80px);
  animation: slideInLeft 1.2s ease-out forwards;
  animation-delay: 0.3s;
  /* ← 少し遅れて出したい場合（任意） */
}

.p_crossHero__badge .badge-inner {
  background: #fff;
  /* 背景白なら */
  padding: 8px 20px;
  /* 内側余白 */
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(241, 90, 36, 0.4);
}

@media (max-width: 1100px) {
  .p_crossHero__wrap {
    padding-left: 0px;
  }

  .p_crossHero__badge {
    padding: 0.3em 1em;
    font-size: 13px;
    bottom: clamp(15px, 3vw, 115px) !important;
    display: inline-block;
    padding: 6px;
    /* ★枠線と文字の間の余白 */
  }

  .p_crossHero__badge span {
    margin-right: 0.2em !important;
    font-size: 13px;
  }

  .p_crossHero__title {
    bottom: 19%;
  }
}

/* サイトの .inner の左右パディング量に合わせて調整 */
:root {
  /* いつものコンテンツ左右余白（未定ならそのままでOK） */
  --container-pad: clamp(16px, 4vw, 40px);
}

/* この画像だけ左にくっつける（右側はそのまま） */
.p_talkPhoto.-flush-left {
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: 1237px;
  margin-left: -28vw;
  display: block;
}

.p_talkPhoto.-flush-left img {
  display: block;
  width: 100%;
  height: auto;
}

/* --- 左端ぴったり寄せ（flush-left2） --- */
.p_talkPhoto.-flush-left2 {
  position: relative;
  left: 50%;
  width: 100vw;
  /* ビューポート幅いっぱい */
  max-width: 1214px;
  margin-left: -28vw;
  /* .innerの中央寄せを打ち消す */
  display: block;
  overflow: hidden;
  z-index: 2;
}

.p_talkPhoto.-flush-left2 img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1100px) {
  .p_talkPhoto.-flush-left2 {
    left: 50%;
    width: 70%;
    margin-left: -50vw;
  }

  .p_talkPhoto.-flush-left {
    width: 70%;
    margin-left: -50vw;
  }
}

@media (max-width: 767px) {
  .p_talkPhoto.-flush-left {
    left: -5%;
    width: 100%;
    margin-left: 0;
  }

  .p_talkPhoto.-flush-left2 {
    left: -10%;
    width: 100%;
    margin-left: 0;
  }
}

.p_talkMembers::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  height: 677px;
  background: rgba(241, 167, 36, 0.23);
  z-index: 0;
  /* 背面へ */
}

.crosstalk_margin {
  margin-bottom: 20px;
}

@media (max-width: 1100px) {
  .p_talkMembers::after {
    height: 90%;
  }

  /* 画像の押し出しをやめる：はみ出しの主因 */
  .p_crossHero__img {
    transform: none !important;
    width: 100% !important;
    height: auto !important;
  }

  /* レイアウトを縦積みに＆左右100%に */
  .p_cross .layout01 {
    display: block;
    margin: 0;
  }

  .p_cross .layout01 .layout01_img_box,
  .p_cross .layout01 .layout01_txt_box {
    width: 100% !important;
  }

  /* バッジを中央に固定＆画面幅に収まるように */
  .p_crossHero__badge {
    position: absolute;
    /* 既にabsoluteなら不要 */
    left: 50%;
    transform: translateX(-50%);
    /* これで中央 */
    max-width: calc(100vw - 32px);
    box-sizing: border-box;
  }

  .p_crossHero__badge .badge-inner {
    max-width: 100%;
  }

  /* 念のため横スクロールを封じる（開発中の保険） */
  html,
  body {
    overflow-x: hidden;
  }
}

/* 左からスライドインのアニメーション */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 初期は非表示＆少し下へ */
.p_talkMembers__grid .p_tmCard {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.8s cubic-bezier(0.25, 0.1, 0.25, 1),
    transform 1.8s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: opacity, transform;
}

/* 交差したカードだけ表示へ。遅延はCSS変数で与える */
.p_talkMembers__grid .p_tmCard.in {
  opacity: 1;
  transform: none;
  transition-delay: var(--d, 0ms);
}

/* 動きを減らす設定のユーザー配慮 */
@media (prefers-reduced-motion: reduce) {
  .p_talkMembers__grid .p_tmCard {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* 左右でフェードインの遅延をずらす */
.p_talkMembers__grid .p_tmCard:nth-child(1) {
  --d: 0ms;
  /* 左（社長） */
}

.p_talkMembers__grid .p_tmCard:nth-child(2) {
  --d: 1000ms;
  /* 右（社員） */
}

/* PCサイズ時の調整 */
@media screen and (min-width: 769px) {
  .p_talk .p_talkPhoto.-mt.-left::before {
    width: 140%;
    height: 140%;
    top: 37%;
    left: 5%;
  }
}