@charset "utf-8";

/*-----------------------------------------------------------
　　　　共通
------------------------------------------------------------*/

/* body.sub用の固定背景画像 */
body.sub {
    position: relative;
}

body.sub::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('../image/common/background-gray.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1000;
    pointer-events: none;
}

.sec404 {
    padding-bottom: 12rem;
}
.sec404 h2.title{
    color: var(--main-color);
    font-weight: bold;
}
.sec404 a.btn{
    margin-top: 5rem;
}

.btn-link{
    position: relative;
    margin: 0 7.5rem 4.5rem 0;
    font-size: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
.btn-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: currentColor;
    transition: width 0.3s ease;
}
.btn-link:hover::after {
    width: 100%;
}
.btn-link .arrow-wrapper{
    background: #051010;
    display: inline-block;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 2rem;
    transition: transform 0.3s ease;
}
.btn-link:hover .arrow-wrapper {
    transform: translateY(-50%) scale(1.2);
}
.btn-link .arrow {
    position: relative;
    width: 26px;
    height: 1px;
    margin: 0px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    transition: all 0.3s ease;
}
.btn-link .arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: -2px;
    width: 8px;
    height: 1px;
    background-color: white;
    transform: rotate(30deg);
    transition: all 0.3s ease;
}
.sec-ttl{
    margin-bottom: 1rem;
}
.sec-ttl .en{
    position: relative;
    line-height: 1;
    font-weight: 400;
    color: var(--main-color);
}
/* .sec-ttl .en:before{
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--main-color);
    top: 51%;
    left: -25px;
    transform: translateY(-50%);
}
.sec-ttl .en.white-color:before{
    background: var(--white);
} */
.sec-ttl .ja{
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.08em;
    margin-top: 1rem;
}
/* .sec-ttl .en.yellow-color:before{
    background: var(--yellow);
}
.sec-ttl .en.red-color:before{
    background: var(--red);
}
.sec-ttl .en.blue-color:before{
    background: var(--blue);
} */
.sec-ttl.t-center{
    width: fit-content;
    margin: 0 auto;
}
.sec-ttl.t-center .en{
    width: fit-content;
    margin: 0 auto;
}

/* .arrow-btn.arrow-wrapper{
    background: #051010;
    display: inline-block;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    position: absolute;
    right: 30px;
    bottom: 30px;
}
.arrow-btn .arrow {
    position: relative;
    width: 26px;
    height: 1px;
    margin: 0px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
}
.arrow-btn .arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: -2px;
    width: 8px;
    height: 1px;
    background-color: white;
    transform: rotate(30deg);
} */
.arrow {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 2px;
    border-radius: 9999px;
    background-color: var(--white);
  }
  
  .arrow::before,
  .arrow::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    width: 8px;
    height: 2px;
    border-radius: 9999px;
    background-color: var(--white);
    transform-origin: calc(100% - 1px) 50%;
  }
  
  .arrow::before {
    transform: rotate(45deg);
  }
  
  .arrow::after {
    transform: rotate(-45deg);
  }

/* テキストアニメーション */
@keyframes showTextFromBottom{
    0%{
     transform: translateY( 100% );
    
    }
    100%{
      transform: translateY( 0px );
    }
    }
    .textanimation span{
    animation: showText 3s backwards;
    display: inline-block;
    }
    .textanimation > span{
    overflow: hidden;
    }
    .textanimation > span > span{
    animation: showTextFromBottom 0.5s backwards;
    }

/* アニメーション開始前の初期状態 */
.textanimation {
    opacity: 1;
    line-height: 1.3;
}
.textanimation:not(.animated) {
    visibility: hidden;
}
.textanimation:not(.animated) span {
    opacity: 0;
}

.flex-left{
    width: 50%;
}
.flex-right{
    width: 50%;
}

.link-blank {
    position: relative;
    display: inline-block;
}
.link-blank::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: url(../image/common/link-blank.svg) no-repeat center;
    background-size: contain;
    transition: transform 0.3s ease;
}
.link-blank.icon-gray-color::after{
    background: url(../image/common/link-blank-gray.svg) no-repeat center;
    background-size: contain;
}
.pc-460{display: block;}
.sp-460{display: none;}

.head-border {
    display: flex;
    align-items: center;
    margin-top: 8rem;
}
.head-border:before,
.head-border:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: var(--text-color);
}
.head-border:before {
    margin-right: 1rem;
}
.head-border:after {
    margin-left: 1rem;
}

                
.border-line-arrow {
    position: relative;
    padding: 0.5rem 0;
    margin-bottom: 0.2rem;
    border-bottom: 2px solid;
}
.border-line-arrow:before,
.border-line-arrow:after {
    position: absolute;
    top: 100%;
    left: 50%;
    content: "";
    height: 0;
    width: 0;
}
.border-line-arrow:before {
    border: 10px solid;
    border-color: transparent;
    border-top-color: black;
    margin-left: -16px;
}
.border-line-arrow:after {
    border: 8px solid;
    border-color: transparent;
    border-top-color: white;
    margin-left: -14px;
}

.ttl-circle{
    position: relative;
    margin-left: 30px;
    line-height: 1;
}
.ttl-circle:before{
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--main-color);
    top: 60%;
    left: -30px;
    transform: translateY(-50%);
}

.line-left{
    border-left: 4px solid var(--main-color);
    padding-left: 3rem;
    line-height: 1.5;
}

.common-btn a {
    position: relative;
    width: fit-content;
    background: var(--main-color);
    color: #fff;
    padding: 2.5rem 3rem;
    line-height: 1.1;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.common-btn a:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.common-btn.t-center a {
    margin: 0 auto;
}
.common-btn.white-btn a{
    background: var(--white);
    color: var(--text-color);
}
.common-btn.white-btn a .arrow{
    background: var(--text-color);
}
.common-btn.white-btn a .arrow::before, .common-btn.white-btn a .arrow::after{
    background-color: var(--text-color);
}
.common-btn.white-btn a:hover {
    background: var(--gray);
}
.common-btn a .arrow-wrapper {
    transition: transform 0.3s ease;
}
.common-btn a:hover .arrow-wrapper {
    transform: scale(1.15);
}
.common-btn a .arrow {
    transition: transform 0.3s ease;
}
.common-btn a:hover .arrow {
    transform: translateX(3px);
}

.move-kakukaku{
    transition: translate 1.6s steps(4);
    animation: move-kakukaku 1.6s steps(1, start) infinite !important;
}
@keyframes move-kakukaku {
    0%,50%,100% {
        rotate: 5deg
    }
    25%,75% {
        rotate: -5deg
    }
}

.btn-hover{
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: .3s;
}

.poyopoyo {
    animation: poyopoyo 2s ease-out infinite;
    opacity: 1;
  }
  @keyframes poyopoyo {
    0%, 40%, 60%, 80% {
      transform: scale(1.0);
    }
    50%, 70% {
      transform: scale(0.95);
    }
  }


  .shine-animation {
      position: relative;
      background-image: linear-gradient(
      70deg,
      rgb(211, 209, 209, 0.3)  45%, 
      #fff 50%,
      rgb(211, 209, 209, 0.3) 55% 
    );
      background-size: 500% 100%;
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      animation: shine 5s infinite;
  }
  
  @keyframes shine {
    0% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  .image-shine {
    position: relative;
    overflow: hidden;
  }
  
  .image-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
      70deg,
      transparent 45%,
      rgba(255, 255, 255, 0.8) 50%,
      transparent 55%
    );
    background-size: 500% 100%;
    animation: shine 3s infinite;
    z-index: 100;
  }


.popup {
  opacity: 0;
  transform: translateY(40px) scale(0.5);
}

.popup-animate {
  animation: popup 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes popup {
  0% {
    transform: translateY(40px) scale(0.5);
    opacity: 0;
  }
  50% {
    transform: translateY(-10px) scale(1.1);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1.0);
    opacity: 1;
  }
}


.img-moving{
    transform: scale(0);
    transition: transform 0.5s ease-out;
    opacity: 0;
}
.img-moving.visible {
    animation: scaleUp 0.5s ease-out forwards;
    opacity: 1;
}
@keyframes scaleUp {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    70% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}

.btm-entry-section.txt-wrapper .sec-ttl .en{
    color: var(--light-green-text);
    margin-bottom: 1.5rem;
}
.btm-entry-section.txt-wrapper .sec-ttl .ja{
    margin-bottom: 4.5rem;
    line-height: 1.8;
}
.btm-entry-section.txt-wrapper .common-btn a .arrow-wrapper{
    margin-left: 5rem;
}

.common-btn.view-btn a{
    padding: 1.5rem 2.5rem;
}
.common-btn.view-btn .arrow-wrapper{
    margin-left: 4.5rem;
}
.sec-ttl.flex h2.ja,
.sec-ttl.flex h3{
    margin: 0;
    display: flex;
    align-items: flex-end;
}
.sec-ttl.flex h3{
    position: relative;
    margin-left: 3rem;
    margin-bottom: 5px;
    color: var(--text-color);
}
.sec-ttl.flex h3::before{
    content: "";
    position: absolute;
    bottom: 8px;
    left: -22px;
    transform: rotate(-65deg);
    width: 1.2rem;
    height: 1px;
    background-color: var(--text-color);
}

.btm-entry-section{
    padding-top: 0;
    position: relative;
}
.btm-entry-section .loop-slider.slider-container .slide{
    width: 480px;
    margin-right: 0;
}
.btm-entry-section .loop-slider.slider-container .slider-wrapper {
    animation: horizontal-animation 80s linear infinite;
}
.btm-entry-section .loop-slider-wrapper.btm .slider-wrapper {
    animation-direction: reverse;
}

.btm-entry-section .entry-section-musk {
    position: relative;
    overflow: hidden;
  }
  
  .btm-entry-section .entry-section-musk::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #073333 0% 0% no-repeat padding-box;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 10;
  }
  
  .btm-entry-section.entry-section-musk > * {
    position: relative;
    z-index: 2;
  }
  .btm-entry-section .txt-wrapper{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
  }

/*-----------------------------------------------------------
　　　　ヘッダー
------------------------------------------------------------*/

.header-logo img{
    min-width: 300px;
}
.header-right{
    display: flex;
    gap: 27px;
}
.g-nav{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.g-nav ul.g-nav-list{
    display: flex;
    gap: 20px;
    align-items: flex-end;
}
.g-nav ul.g-nav-list li.g-nav-list-item a{
    font-weight: 500;
    font-size: 1.8rem;
    transition: color 0.5s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    letter-spacing: 3px;
}
.g-nav ul.g-nav-list li.g-nav-list-item a:hover{
    color: var(--main-color);
    transition: color 0.5s ease, transform 0.3s ease;
}
.g-nav ul.g-nav-list li.g-nav-list-item.link-none a{
    transform: none;
}
.g-nav ul.g-nav-list li.g-nav-list-item.link-none a:hover{
    transition: none;
}

.g-nav-list-item {
    position: relative; /* 親要素に相対位置を設定 */
    height: 100%;
    display: flex;
    align-items: center;
}
.dropdown__lists {
    visibility: hidden;/*デフォルトでは非表示の状態にしておく*/
    opacity: 0;/*不透明度0*/
    transition: all .3s;/*表示の変化を0.3秒に指定*/
    width: max-content;
    position: absolute;
    top: 50px;
    left: 50%; /* 中央揃えに変更 */
    transform: translateX(-50%); /* 中央揃えのための調整 */
    z-index: 1000; /* 他の要素より前面に表示 */
}
.g-nav ul.g-nav-list li.g-nav-list-item:hover .dropdown__lists {
    visibility: visible;/*Gナビメニューにホバーしたら表示*/
    opacity: 1;/*不透明度1*/
}
.dropdown__list {
    background-color: var(--white);
    transition: all .3s;
    position: relative;
}
.dropdown__list:hover {
    background-color: #EDEDED;
}
.g-nav ul.g-nav-list li.g-nav-list-item li.dropdown__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    position: relative;
    font-size: 1.6rem;
    padding: 5px 20px;
}
.g-nav ul.g-nav-list li.g-nav-list-item li.dropdown__list:last-of-type a {
    padding-bottom: 10px;
}

.header-small{
    font-size: 70%;
    display: block;
    text-align: center;
    line-height: 1;
}
header .btn-wrapper{
    display: flex;
    gap: 10px;
}
header .btn-wrapper a{
    color: #fff;
    padding: 1.2rem 3.6rem;
    line-height: 1.4;
    position: relative;
}
header .btn-wrapper a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../image/common/effect-block.png);
    background-repeat: repeat;
    background-position: 0 0;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: multiply;
    border-radius: 9999px;
    opacity: 0.5;
}
header .btn-wrapper .btn-session{
    background: var(--btn-color01);
    font-size: 1.8rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: background 0.3s ease, color 0.3s ease;
    border-radius: 9999px;
}
header .btn-wrapper a{
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: background 0.3s ease, color 0.3s ease;
}
header .btn-wrapper a.btn-session{
    color: var(--text-color);
}
header .btn-wrapper .btn-entry{
    background: var(--btn-color02);
    font-size: 2rem;
    font-weight: 400;
    border-radius: 9999px;
    transition: background 0.3s ease, color 0.3s ease;
}
header .btn-wrapper .btn-session:hover {
    background: var(--main-color);
    color: #fff;
}
header .btn-wrapper .btn-entry:hover {
    background: var(--deep-green);
    color: #fff;
}

/*-----------------------------------------------------------
    フッター
------------------------------------------------------------*/

footer{
    background-color: white;
}
footer a{
    letter-spacing: 0;
}
footer .contact-area{
    background: transparent linear-gradient(90deg, #33A1A1 0%, #249595 100%) 0% 0% no-repeat padding-box;
    padding: 8rem 0;
    text-align: center;
}
footer .contact-area .sec-ttl .en{
    color: #fff!important;
    margin-left: 0;
    margin-bottom: 1.5rem;
}
footer .contact-area .sec-ttl .en::before{
    width: 11px;
    height: 11px;
    background: transparent;
    left: -15px;
}
footer .contact-area a{
    position: relative;
    width: fit-content;
    margin: 0 auto;
    font-weight: 600;
    background: var(--white);
    color: var(--main-color);
    padding: 2rem 9rem 2rem 3.4rem;
    line-height: 1.1;
    margin-top: 4.5rem;
}
footer .contact-area a .arrow-btn.arrow-wrapper{
    width: 34px;
    height: 34px;
    bottom: 50%;
    transform: translateY(50%);
    background: transparent;
    border: 1px solid var(--main-color);
}  
footer .contact-area a .arrow-btn .arrow{
    width: 15px;
    background-color: var(--main-color);
}
footer .contact-area a .arrow-btn .arrow::after{
    width: 4px;
    top: -1px;
    background-color: var(--main-color);
}
footer .contact-area p{
    letter-spacing: 4.5px;
    font-weight: 400;
}
.loop_text-wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
    margin-top: 3rem;
}
.loop_text {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 80px;
    overflow: hidden;
    padding-left: 35px;
    color: #1DBEBE;
    font-weight: bold!important;
    line-height: 1.1;
}
.loop_text:nth-child(odd) {
    animation: loop 50s -25s linear infinite;
}
.loop_text:nth-child(even) {
    animation: loop2 50s linear infinite;
}
footer .contact-area p.loop_text{
    letter-spacing: 0;
}
@keyframes loop {
    0% {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
@keyframes loop2 {
    0% {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%);
    }
}
footer .bottom-area{
    padding: 8.5rem 0;
}
footer .bottom-area .footer-sns{
    margin-top: 2rem;
    gap: 2rem;
}
footer .bottom-area .footer-sns .img{
    transition: transform 0.3s ease;
}
footer .bottom-area .footer-sns .img:hover{
    transform: scale(1.2);
    transition: transform 0.3s ease;
}
footer .footer-address{
    margin-top: 2.8rem;
    line-height: 1.7;
    margin-bottom: 3px;
}
.footer-left{
    display: flex;
    flex-direction: column;
}
.footer-left .link-blank{
    line-height: 1;
    color: #898D8D;
}
.footer-left .link-blank.txt::after{
    line-height: 1;
    top: 55%;
}
.footer-left .footer-btn{
    margin: 2.5rem 0 6rem;
}
.footer-left .footer-btn a{
    position: relative;
    width: 22rem;
    background: var(--white);
    color: var(--text-color);
    border: 1px solid var(--text-color);
    border-radius: 9999px;
    padding: 1.5rem 2.5rem;
    line-height: 1.1;
    display: block;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.footer-left .footer-btn a .arrow-btn.arrow-wrapper{
    width: 27px;
    height: 27px;
    bottom: 50%;
    right: 20px;
    transform: translateY(50%);
    background: transparent;
    border: 1px solid var(--white);
    transition: border-color 0.3s ease;
}
.footer-left .footer-btn a .arrow-btn .arrow{
    width: 13px;
    background-color: var(--white);
    transition: background-color 0.3s ease;
}
.footer-left .footer-btn a .arrow-btn .arrow::after{
    width: 4px;
    top: -1px;
    background-color: var(--white);
    transition: background-color 0.3s ease;
}
.footer-left .footer-btn a:hover {
    background: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}
.footer-left .footer-btn a:hover .arrow-btn.arrow-wrapper {
    border-color: #fff;
}
.footer-left .footer-btn a:hover .arrow-btn .arrow,
.footer-left .footer-btn a:hover .arrow-btn .arrow::after {
    background-color: #fff;
}
.footer-left .footer-btn a:not(:first-of-type){
    margin-top: 1rem;
}
.footer-left .footer-btn a.link-blank::after{
    width: 11px;
    height: 11px;
    right: 20px;
}
.footer-left .copyright{
    margin-top: 1rem;
}
.footer-link-wrapper{
    padding-bottom: 4rem;
}
.footer-link-wrapper:not(:first-of-type){
    border-top: 1px solid var(--gray-line);
    padding: 4rem 0;
}
.footer-list-index{
    gap: 6.5rem;
    font-weight: 500;
}
.footer-link-list{
    margin-top: 1.8rem;
    line-height: 1.2;
}
.footer-link-list li:not(:first-of-type){
    margin-top: 1.5rem;
}
.footer-link-list li{
    position: relative;
}
.footer-right{
    gap: 5.5rem;
    position: relative;
    top: -10px;
}
.footer-link-wrapper a {
    transition: color 0.2s ease;
}
.footer-link-wrapper a:hover {
    color: var(--main-color);
}
.footer-link-list li:hover::before {
    background-color: var(--main-color);
    opacity: 1;
}
.footer-link-list li:hover a{
    color: var(--main-color);
    transition: color 0.2s ease;
}

footer .contact-area a::before {
    border: 3px solid var(--white);
}
footer .contact-area a:hover {
    color: var(--white);
    background: var(--deep-green);
}
footer .contact-area a:hover .arrow-btn.arrow-wrapper{
    border: 1px solid var(--white);
}
footer .contact-area a:hover .arrow-btn .arrow{
    background-color: var(--white);
}
footer .contact-area a:hover .arrow-btn .arrow::after{
    background-color: var(--white);
}

.tel-link {
    text-decoration: none;
    color: inherit;
    cursor: default;
    pointer-events: none;
}

.footer-top-block{
    padding-bottom: 5.5rem;
    margin-bottom: 6rem;
    border-bottom: 1px solid var(--gray-line);
}
.footer-top-block .common-btn a{
    padding: 3.2rem 5rem;
    width: 38rem;
}

.footer-btm-block{
    padding-top: 2.7rem;
    border-top: 1px solid var(--gray-line);
}

/*-----------------------------------------------------------
　　　TOP
------------------------------------------------------------*/

p{
    letter-spacing: 2px;
}

.top-mv{
    position: relative;
    overflow: hidden;
}
.top-mv-img{
    opacity: 0;
    animation: fadeInImg 1.2s ease-out 0.5s forwards;
}
.top-mv-img img{
    width: 100%;
    height: auto;
    display: block;
}
.top-mv-text{
    position: absolute;
    width: 100%;
    top: 30%;
    padding-left: 7%;
    z-index: 10;
    opacity: 0;
    animation: fadeInText 0.8s ease-out 1.2s forwards;
}
.top-mv-text .text-top{
    letter-spacing: 3px;
    font-size: 3vw;
}
.top-mv-text .text-btm{
    letter-spacing: 3px;
    font-size: 4.5vw;
}

/* アニメーションキーフレーム */
@keyframes fadeInImg {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.top-highcareer-inner{
    padding: 0 4rem;
}
.top-highcareer .flex-left{
    max-width: 600px;
    padding-right: 8rem;
}
.top-highcareer .flex-right .text-wrapper{
    max-width: 420px;
}
.top-highcareer .flex-right .text-wrapper .sec-ttl{
    margin-bottom: 2rem;
}
.top-highcareer .flex-right .text-wrapper .common-btn{
    margin-top: 5rem;
}
.top-highcareer .flex-right .img-wrapper{
    position: relative;
    gap: 5rem;
    top: -6rem;
}
.top-highcareer .flex-right .img-wrapper .img01{
    position: relative;
    max-width: 245px;
    top: 13rem;
    animation: floatUpDown 5s ease-in-out infinite;
}
.top-highcareer .flex-right .img-wrapper .img02{
    position: relative;
    max-width: 280px;
    animation: floatUpDown 5s ease-in-out 2.5s infinite;
}

/* ふわふわ浮くアニメーション */
@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.top-people{
    padding-top: 22rem;
}
.top-people-wrapper{
    background: transparent linear-gradient(90deg, #33A1A1 0%, #128383 100%) 0% 0% no-repeat padding-box;
    margin: 0 auto;
    overflow: hidden;
}
.top-people-wrapper-inner{
    padding: 6% 7%;
}

.top-people .sec-ttl.flex h3::before{
    background-color: var(--white);
}
.top-people-swiper{
    margin-top: 8rem;
}
.top-people-swiper .swiper{
    padding: 1rem;
    overflow: visible;
}
.top-people .swiper-wrapper{
    padding-top: 1rem;
    display: flex;
    align-items: flex-start;
}
.top-people .swiper-slide{
    width: 300px;
    margin-top: 30px;
    transition: opacity 0.3s ease, transform 0.9s ease;
    transform-origin: center center;
    transform: scale(0.8667);
}
.top-people .swiper-slide.swiper-slide-active{
    width: 340px;
    margin-top: 0;
    transform: scale(1);
    z-index: 2;
}
.top-people .swiper-slide.swiper-slide-next{
    margin-left: 50px;
}
.top-people .swiper-slide.swiper-slide-prev{
    margin-right: 50px;
}

.people-item-image-inner{
    overflow: hidden;
    border-radius: 7px;
    transition: border 0.3s ease;
}
.people-item-image-inner img{
    transition: transform .4s ease;
    border-radius: 2px;
}
.people-item:hover .people-item-image-inner img,
.people-item-image-inner:hover img{
    transform: scale(1.1);
}
.people-all-list .people-item-image{
    position: relative;
}
.people-all-list .people-item-number{
    line-height: 1;
    position: absolute;
    top: -30px;
    left: -7px;
    display: flex;
    align-items: flex-start;
    transition: top 0.9s ease, left 0.9s ease, font-size 0.9s ease;
}
.top-people .swiper-slide.swiper-slide-active .people-item-number{
    top: -30px;
    left: -7px;
    font-size: 9rem;
}
.people-all-list .people-item-number span{
    position: relative;
    margin-top: 2px;
    padding-right: 3px;
    line-height: 1;
    transition: font-size 0.9s ease, margin-top 0.9s ease;
}
.top-people .swiper-slide.swiper-slide-active .people-item-number span{
    margin-top: 4px;
    line-height: 1;
}
.people-all-list .people-item-lead-area{
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 1s ease, transform 0.8s ease;
    transform: translateY(-60px);
}
.top-people .swiper-slide.swiper-slide-active .people-item-lead-area{
    opacity: 1;
    transform: translateY(0);
}
.people-all-list .people-item-lead{
    display: none;
}
.top-people .swiper-slide.swiper-slide-active .people-item-lead{
    display: block;
}
.people-all-list .people-item-lead p{
    width: max-content;
    font-size: 2rem;
    padding: 1rem 2rem;
    line-height: 1;
    background-color: #fff;
    letter-spacing: 0.1em;
}
.people-all-list .people-item-lead p:not(:first-of-type){
    margin-top: 6px;
}
.people-all-list .people-item-meta{
    padding: 1rem;
    line-height: 1;
    letter-spacing: 1px;
    transition: margin-top 0.9s ease;
}
.people-all-list .people-item-meta p{
    letter-spacing: 1px;
}
.people-all-list .people-item-meta .people-item-position{
    font-size: 24px;
    transition: font-size 0.9s ease;
}
.top-people .swiper-slide.swiper-slide-active .people-item-meta .people-item-position{
    font-size: 30px;
}
.people-all-list .people-item-meta .people-item-position span:not(:first-of-type){
    position: relative;
    margin-left: 2rem;
}
.people-all-list .people-item-meta .people-item-position span:not(:first-of-type)::after{
    content: "";
    position: absolute;
    left: -17px;
    top: 50%;
    transform: translateY(-50%) rotate(-65deg);
    width: 1.2rem;
    height: 1px;
    background-color: var(--white);
}
.people-all-list .people-item-meta .people-item-name{
    padding-top: 2px;
    font-size: 14px;
    transition: font-size 0.9s ease;
}
.top-people .swiper-slide.swiper-slide-active .people-item-meta .people-item-name{
    font-size: 18px;
}
.top-people .common-btn a{
    background: var(--white);
    color: var(--text-color);
}

.top-workstyle-btn-wrapper{
    margin-top: 4rem;
}
.top-workstyle-btn-wrapper li:not(:first-of-type){
    margin-top: 1.5rem;
}
.top-workstyle-btn-wrapper li a{
    width: 100%;
    background: var(--gray);
    color: var(--text-color);
    padding: 2.5rem 5rem;
}
.top-workstyle-btn-wrapper li a .txt .en{
    margin-bottom: 5px;
}
.top-workstyle-btn-wrapper li a .arrow{
    background: var(--main-color);
}
.top-workstyle-btn-wrapper li a .arrow::before, 
.top-workstyle-btn-wrapper li a .arrow::after{
    background-color: var(--main-color);
}
.top-workstyle .flex-left{
    padding-right: 9%;
}
.top-workstyle .flex-right{
    position: relative;
    overflow: hidden;
}
.top-workstyle .flex-right img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.top-cta-section{
    padding-top: 13rem;
}
.top-cta-section .entry-section-musk::before{
    background: #DCEBEB 0% 0% no-repeat padding-box;
    opacity: 0.95;
    mix-blend-mode: normal;
    max-width: 750px;
    left: 50%;
    transform: translateX(-50%);
}
.top-cta-section .btm-entry-section .sec-ttl .en{
    color: var(--main-color);
}
.top-cta-section .txt-wrapper .sec-ttl .ja{
    margin-bottom: 2rem;
    font-weight: normal;
    letter-spacing: 4px;
    margin-top: 3rem;
    line-height: 1.5;
}
.top-cta-section .txt-wrapper .sec-ttl p{
    line-height: 2.5;
    margin: 0 auto;
}
.top-cta-section .txt-wrapper{
    max-width: 500px;
    top: 60%;
}
.top-cta-section .txt-wrapper .common-btn{
    margin-top: 3rem;
}
.top-cta-section .txt-wrapper .common-btn a{
    padding: 1.5rem 2.5rem;
}
.top-cta-section .txt-wrapper .common-btn a .arrow-wrapper{
    margin-left: 4rem;
}

.top-movie{
    padding-top: 0;
}
.top-movie .bg-gray{
    padding: 9rem;
}
.top-movie .sec-ttl.t-center .en{
    margin-left: 3rem;
    margin-bottom: 5px;
}
.top-movie .movie{
    margin-top: 4rem;
}

/*-----------------------------------------------------------
　　　下層ページ共通
------------------------------------------------------------*/

.mv-layer{
    margin-top: 10rem;
}
.mv-layer-bg{
    height: 48rem;
    background: var(--white)!important;
}
.mv-layer .inner-middle{
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.mv-layer .txt-wrapper .white-color{
    color: var(--text-color)!important;
    font-weight: normal!important;
}
.breadcrumb-list {
    display: flex;
    gap: 4rem;
    margin-top: 4rem;
}
.breadcrumb-list li{
    font-size: 1.4rem;
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.2;
    position: relative;
}
.breadcrumb-list li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -2.2rem;
    top: 50%;
    transform: translateY(-50%) rotate(-65deg);
    width: 1.2rem;
    height: 1px;
    background-color: var(--text-color);
}
.breadcrumb-list li a{
    display: inline-block;
    color: var(--text-color);
    font-weight: 500;
}


/*-----------------------------------------------------------
    会社概要
------------------------------------------------------------*/

.about-message .txt-wrapper p{
    line-height: 2;
    letter-spacing: 3px;
}
.about-message .txt-wrapper p:not(:first-of-type){
    margin-top: 2rem;
}

#about .mv-layer-bg{
    background: url(../image/sub/about/mv-layer.webp) no-repeat;
    background-size: cover;
    background-position: top center;
}
.about-message .flex{
    display: flex;
    align-items: stretch; 
}
.about-message .flex-left{
    padding-right: 7rem;
    display: flex; 
    align-items: center;
}
.about-message .flex-right{
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
}
.about-message img{
    height: 100%;
    object-fit: cover;
    width: 100%; 
}
.about-mission .bg-img{
    position: relative;
    background: url(../image/sub/about/about-mission-bg-img.webp) no-repeat;
    background-size: cover;
    background-position: top center;
    height: 60rem;
}
.about-mission .sec-ttl-wrapper{
    width: 100vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.about-mission .sec-ttl-wrapper .sec-ttl.t-center .en{
    margin-bottom: 1rem;
}

.about-credo-wrapper{
    position: relative;
    will-change: transform;
}
.about-credo-wrapper .circle-layout {
    position: relative;
    /* left: 50%;
    transform: translateX(-50%); */
    width: 52rem;
    height: 52rem;
}

.about-credo-wrapper .label {
    background: #00a8a8;
    color: white;
    padding: 5px 10px;
    display: inline-block;
    border-radius: 5px;
    font-size: 14px;
}
.about-credo-wrapper .number {
    position: absolute;
    font-size: 80px;
    color: rgba(0,0,0,0.05);
    bottom: 10px;
    right: 10px;
}
.about-credo .bg-white{
    padding: 8rem 0 25rem;
}

.about-personality{
    padding-bottom: 13rem;
}
.about-personality-list{
    display: flex;
    justify-content: center;
    margin-top: 9rem;
    flex-wrap: wrap;
    gap: 60px 15px;
}
.about-personality-list li{
    width: calc((100% - 30px)/3);
    min-width: 390px;
}
.about-personality-list li .top{
    position: relative;
    padding: 6rem 2rem 4rem;
}
.about-personality-list li .top .personality-number{
    position: absolute;
    top: -14%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--main-color);
    width: 6.5rem;
    height: 6.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
/* .about-personality-list li:nth-of-type(2) .top .personality-number{
    background: var(--yellow);
}
.about-personality-list li:nth-of-type(3) .top .personality-number{
    background: var(--blue);
} */
.about-personality-list li .ttl{
    width: fit-content;
    border-bottom: 1px solid var(--main-color);
    margin: 0 auto 2rem;
}
/* .about-personality-list li:nth-of-type(2) .ttl{
    border-bottom: 1px solid var(--yellow);
}
.about-personality-list li:nth-of-type(3) .ttl{
    border-bottom: 1px solid var(--blue);
} */
.about-personality-list li .bottom .bg{
    padding: 5rem 3rem;
    min-height: 230px;
    background: var(--main-color);
}
.about-personality-list li .bottom{
    position: relative;
}
.about-personality-list li .bottom::before{
    content: "";
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--gray);
    rotate: 45deg;
}

.about-credo .img.t-center{
    margin-top: 3rem;
}
/* 既存の .about-credo-wrapper のスタイルを更新 */
.about-credo-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25rem;
    /* 画面幅に応じたスケーリングの基準点を設定 */
    transform-origin: center center;
}
.about-credo-wrapper .circle-layout {
    position: relative;
    width: 516px; 
    height: 516px;
    margin: 0 auto;
}
/* 円形配置の角度計算 */
.about-credo-wrapper .box1 {
    /* 上（0度） */
    transform: translate(-50%, -50%) translateY(-300px);
}
.about-credo-wrapper .box2 {
    /* 左下（240度） */
    transform: translate(-50%, -30%) rotate(120deg) translateY(-350px) rotate(-120deg);
}
.about-credo-wrapper .box3 {
    /* 右下（120度） */
    transform: translate(-50%, -30%) rotate(240deg) translateY(-350px) rotate(-240deg);
}

.about-credo-list li{
    max-width: 370px;
    position: absolute;
    background: #EFF7F7;
    top: 50%;
    left: 50%;
    min-height: 350px;
    border: 2px solid var(--main-color);
}

.about-credo-list li::after {
    content: "";
    position: absolute;
    width: 141px;
    height: 110px;
    background: url(../image/sub/about/about-credo-number01.svg) no-repeat;
    background-size: contain;
    bottom: 0;
    right: 0;
}
.about-credo-list li.box2::after {
    background: url(../image/sub/about/about-credo-number02.svg) no-repeat;
    background-size: contain;
    width: 147px;
    height: 110px;
}
.about-credo-list li.box3::after {
    background: url(../image/sub/about/about-credo-number03.svg) no-repeat;
    background-size: contain;
    width: 145px;
    height: 110px;
}

.about-credo-list-contents-wrapper{
    position: relative;
    padding: 6rem 4rem 8rem 4rem; 
    height: 100%;
}
.about-credo-list li .ttl{
    text-align: center;
    width: 80%;
    border-radius: 9999px;
    position: absolute;
    padding: 1rem;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}
.about-credo-list li .ttl .img{
    position: relative;
    top: -3px;
    margin-right: 1rem;
}
.about-credo-list li h4.txt01{
    line-height: 1.7;
}
.about-credo-list li p.txt02{
    line-height: 2.2;
    margin-top: 1rem;
}

/* 円の背景画像の位置調整 */
.about-credo-wrapper .circle-layout img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-message .txt-wrapper {
    margin-top: 5rem;
}


/*-----------------------------------------------------------
    役員対談
------------------------------------------------------------*/

section.introduction{
    padding-top: 0;
}
#crosstalk .mv-layer-bg{
    background: url(../image/sub/about/crosstalk/mv-layer.webp) no-repeat;
    background-size: cover;
    background-position: top center;
}

.introduction .bg-light-green{
    padding: 12rem 0;
}
.introduction-list{
    display: flex;
    justify-content: center;
    gap: 4rem;
    position: relative; 
}
.introduction-list li{
    width: 380px;
    text-align: center;
    position: relative;
}
.introduction-list::before,
.introduction-list::after{
    position: absolute;
    content: "";
    width: 120px;
    height: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--main-color);
    z-index: 1;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}
.introduction-list::before{
    transform: translate(-50%, -50%) rotate(45deg);
}
.introduction-list::after{
    transform: translate(-50%, -50%) rotate(-45deg);
}
.introduction-list li .bg-white{
    padding: 4rem 4rem 5rem;
}
.introduction-list li .crosstalk-name{
    position: relative;
    width: fit-content;
    margin: 0 auto;
    padding-bottom: 15px;
}
.introduction-list li .crosstalk-name:before {
    position: absolute;
    content: "";
    width: 30px;
    height: 1px;
    background-color: var(--main-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.introduction-list li .img{
    width: 150px;
    margin: 0 auto 30px;
}
.introduction-list li .en{
    margin-top: 15px;
}
.introduction-list li .position{
    margin-top: 3.5rem;
}

.introduction-index-list{
    margin-top: 4.5rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}
.introduction-index-list li{
    width: calc((100% - 30px)/3);
}
.introduction-index-list li .bg-white{
    padding: 3rem 3rem 6rem;
    border: 1px solid var(--main-color);
    min-height: 160px;
}

.introduction-index-list li .txt {
    position: relative;
}
.introduction-index-list li .txt::before {
    content: "";
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-right: 2px solid var(--main-color);
    border-bottom: 2px solid var(--main-color);
    transform: translateX(-50%) rotate(45deg);
    transition: bottom 0.3s ease;
}
.introduction-index-list li:hover .txt::before{
    bottom: -3.5rem;
}
.crosstalk .bg{
    padding: 12rem 0;
}
.crosstalk .border-line-arrow{
    font-weight: 500;
    padding-bottom: 1rem;
}
.crosstalk .talk-wrapper{
    margin-top: 6.5rem;
}
.talk-wrapper li{
    gap: 4.5rem;
    justify-content: center;
}
.talk-wrapper li:not(:first-of-type){
    margin-top: 4rem;
}
.talk-wrapper li.talk-left-wrapper{
    justify-content: flex-start;
}
.talk-wrapper li.talk-right-wrapper{
    justify-content: flex-end;
}
.crosstalk .talk-wrapper .bg-gray{
    padding: 3rem;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    letter-spacing: 2px;
}
.crosstalk .talk-wrapper .img{
    margin-bottom: 1rem;
    width: 10rem;
}
.crosstalk:not(:first-of-type){
    padding-top: 0;
}
.crosstalk03 .bg-gray{
        background: var(--white);
    }
.crosstalk-img-wrapper{
    gap: 2rem;
}
.crosstalk-img-wrapper .crosstalk-img-left{
    max-width: 644px;
    margin-bottom: 10rem;
}
.crosstalk-img-wrapper .crosstalk-img-right{
    max-width: 427px;
    margin-top: 10rem;
}
.crosstalk-img02{
    padding-top: 10rem;
}
.crosstalk03 .bg{
    padding-top: 4rem;
}

#crosstalk02 .border-line-arrow:after{
    border-top-color: var(--light-green);
}
.crosstalk-img03{
    padding-bottom: 16rem;
}

/*-----------------------------------------------------------
    五か年計画
------------------------------------------------------------*/

/* animation */
@-webkit-keyframes passing-bar{
	0% {
		left: 0;
		right: auto;
		width: 0;
	}
	50% {
		left: 0;
		right: auto;
		width: 100%;
	}
	51% {
		left: auto;
		right: 0;
		width: 100%;
	}
	100% {
		left: auto;
		right: 0;
		width: 0;
	}
}
@keyframes passing-bar{
	0% {
		left: 0;
		width: 0;
	}
	50% {
		left: 0;
		width: 100%;
	}
	51% {
		left: 0;
		width: 100%;
	}
	100% {
		left: 100%;
		width: 0;
	}
}
@-webkit-keyframes passing-txt{
	0% { opacity: 0; }
	50% { opacity: 0; }
	100% { opacity: 1; }
}
@keyframes passing-txt{
	0% { opacity:0; }
	50% { opacity:0; }
	100% { opacity:1; }
}
/* css */
.passing .passing-box-list li {
    position: relative;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.passing .passing-box-list li:not(:first-of-type){
    margin-top: 5rem;
}
.passing .passing-txt {
    position: relative;
    display: inline-block;
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    line-height: 1.5;
}
.passing .passing-txt:before {
    content: '';
    display: inline-block;
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background: #000;
}
.passing .passing-txt.move:before {
    -webkit-animation: passing-bar 1s ease 0s 1 normal forwards;
    animation: passing-bar 1s ease 0s 1 normal forwards;
}
.passing .passing-txt.move {
    -webkit-animation: passing-txt 0s ease .5s 1 normal forwards;
    animation:passing-txt 0s ease .5s 1 normal forwards;
}
.five-year-plan-section01 .img{
    margin-top: 18rem;
}

.five-year-plan-section02{
    padding-bottom: 20rem;
}
.five-year-plan-section02-list li:not(:first-of-type){
    margin-top: 8rem;
}
.five-year-plan-section02 .txt-wrapper{
    padding: 0 9rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.five-year-plan-section02 .ttl{
    color: #EFF7F7;
    position: relative;
    top: 50px;
    line-height: 1;
}
.five-year-plan-section02-list li .ttl01{
    letter-spacing: 1px;
}
.five-year-plan-section02-list li .ttl02{
    line-height: 1;
    padding: 10px 15px;
    margin-top: 3rem;
}
.five-year-plan-section02-list li .ttl01 span{
    display: inline-flex;
    align-items: center;
}
.five-year-plan-section02-list li .ttl01 span::before{
    content: "/";
    margin: 0 2rem;
    font-size: 0.9em;
    line-height: 1;
}
.five-year-plan-section02 .txt{
    letter-spacing: 2px;
    margin-top: 2rem;
}

.five-year-plan-section03{
    padding-bottom: 13rem;
    padding-top: 18rem;
}
.five-year-plan-section03 #myChart {
    width: 100%;
    max-width: 100%;
    height: 500px;
}
.five-year-plan-section03 .phase-list{
    --phase-gap: 7.5rem;
    margin-top: 6.5rem;
    display: flex;
    flex-direction: column;
    gap: var(--phase-gap);
}
.five-year-plan-section03 .phase-list li{
    padding: 5rem 7rem;
}
.phase-list > li{
    position: relative;
    padding: 24px 32px;
}

.phase-list > li + li::before{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, calc(-50% - var(--phase-gap) / 2)) rotate(180deg);
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 20px solid var(--light-green-text); 
}
.five-year-plan-chart-wrapper .txt{
    margin-bottom: 2px;
}
.five-year-plan-chart{
    margin-top: 11rem;
}
.five-year-plan-section03 .sec02{
    margin-top: 13rem;
}
.five-year-plan-section03 .ttl-wrapper .txt{
    margin-top: 1rem;
    line-height: 2.2;
}
.five-year-plan-section03 .ttl-wrapper.sec02 .txt{
    margin-top: 2rem;
}

.five-year-plan-section03 .loop-slider-wrapper{
    padding-top: 11rem;
}
@keyframes horizontal-animation {
    from {
      transform: translateX(0);
    }
  
    to {
      transform: translateX(-100%);
    }
  }
  
  .loop-slider.slider-container {
    display: flex;
    overflow: hidden;
  }
  
  .loop-slider.slider-container .slider-wrapper {
    display: flex;
    animation: horizontal-animation 50s linear infinite;
  }
  
  .loop-slider.slider-container .slide {
    position: relative;
    width: 400px;
    margin-right: 20px;
  }
  
  .loop-slider.slider-container slide img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
  }


.five-year-plan-section04{
    padding-bottom: 13rem;
}


/*-----------------------------------------------------------
    数字で知る
------------------------------------------------------------*/
#number main{
    background: var(--gray);
}
#number .mv-layer-bg{
    background: url(../image/sub/workstyle/number/mv-layer.webp) no-repeat;
    background-size: cover;
    background-position: top center;
}

.number-ttl{
    position: relative;
}
.number-ttl::before{
    position: absolute;
    content: "";
    background: url(../image/sub/workstyle/number/number-ttl.svg) no-repeat;
    background-size: contain;
    width: 30px;
    height: 6px;
    left: 50%;
    transform: translateX(-50%);
}

ul.number-list.number-data-list{
    margin-top: 5rem;
    display: flex;
    align-items: stretch;
}

ul.number-list.number-data-list li{
    width: calc(100% / 3);
    display: flex; 
    flex-direction: column; 
    position: relative;
}
.number-company-data ul.number-list.number-data-list li{
    height: 520px;
}
.number-company-data .number-data-wide{
    height: 575px;
}

/* .number-workstyle-data ul.number-list.number-data-list li{
    height: 500px;
} */

ul.number-list.number-data-list li:first-of-type{
    position: relative;
    left: 1px;
}
ul.number-list.number-data-list li:last-of-type{
    position: relative;
    right: 1px;
}
ul.number-list.number-data-list li .bg-white {
    padding: 4rem 4rem 5rem;
    text-align: center;
    border: 1px solid var(--main-color);
    height: 100%;
    display: block;
    transition: background 0.3s ease;
}
ul.number-list.number-data-list li .ttl {
    position: relative;
    margin-bottom: 0.2rem;
    border-bottom: 2px solid var(--main-color);
    font-weight: 600;
    font-size: 26px;
    display: inline-block; 
    width: fit-content; 
}
ul.number-list.number-data-list li .ttl:before,
ul.number-list.number-data-list li .ttl:after {
    position: absolute;
    top: 100%;
    left: 50%;
    content: "";
    height: 0;
    width: 0;
}
ul.number-list.number-data-list li .ttl:before {
    border: 11px solid;
    border-color: transparent;
    border-top-color: var(--main-color);
    margin-left: -11px;
}
ul.number-list.number-data-list li .ttl:after {
    border: 8px solid;
    border-color: transparent;
    border-top-color: white;
    margin-left: -8px;
}
ul.number-list.number-data-list li .number {
    line-height: 1.5;
    padding: 1rem 0;
}
ul.number-list.number-data-list li .number .en {
    font-weight: 600;
}

ul.number-company-data-list li:nth-of-type(3) .img{
    background: transparent;
    width: auto;
    max-width: 308px;
    height: auto;
    padding: 0;
} 
.number-list .img {
    background: var(--gray);
    border-radius: 50%;
    padding: 2rem;
    width: 160px;
    height: 160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.number-data-wide{
    width: calc(100% - 2px);
    padding: 4rem 4rem 6rem;
    margin: 0 auto;
    border: 1px solid var(--main-color);
    position: relative;
    top: -1px;
    background: var(--white);
}
.number-data-ttl{
    position: relative;
    margin-bottom: 0.2rem;
    border-bottom: 2px solid var(--main-color);
    font-weight: 600;
    font-size: 26px;
    display: inline-block;
    width: fit-content;
    margin: 0 auto;
}
.number-data-ttl:before,
.number-data-ttl:after {
    position: absolute;
    top: 100%;
    left: 50%;
    content: "";
    height: 0;
    width: 0;
}
.number-data-ttl:before{
    border: 11px solid;
    border-color: transparent;
    border-top-color: var(--main-color);
    margin-left: -11px;
}
.number-data-ttl:after {
    border: 8px solid;
    border-color: transparent;
    border-top-color: white;
    margin-left: -8px;
}
.number-data-wide .img{
    margin-top: 3rem;
}
.number-data-half .img{
    margin-top: 3rem;
}
.number-data-half{
    position: relative;
    top: -2px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 100%;
}
.number-data-half li{
    width: 50%;
    border: 1px solid var(--main-color);
    display: flex;
    flex-direction: column;
    position: relative;
    background: var(--white);
    flex: 1 1 50%;
    align-self: stretch;
}
.number-data-half li .bg-white{
    padding: 4rem 4rem 6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: background 0.3s ease;
    height: 100%;
}
.number-data-half li .bg-white .flex-wrapper{
    flex: 1;
    display: flex;
}
.number-data-half li:first-of-type{
    left: 1px;
}
.number-data-half li:not(:first-of-type){
    right: 1px;
}
ul.number-workstyle-data-list li:nth-of-type(1) .img{
    background: transparent;
    width: auto;
    max-width: 308px;
    height: auto;
    padding: 0;
    margin-top: 3rem;
}

/* 画像ホバー切り替えスタイル */
.img-hover-container {
    display: inline-block;
}

.img-hover-container .img-normal {
    display: block;
}

.img-hover-container .img-hover {
    display: none;
}

.number-data-half li:hover:not(.hover-disabled) .img-hover-container .img-normal,
.number-data-half li.hover-active:not(.hover-disabled) .img-hover-container .img-normal {
    display: none;
}

.number-data-half li:hover:not(.hover-disabled) .img-hover-container .img-hover,
.number-data-half li.hover-active:not(.hover-disabled) .img-hover-container .img-hover {
    display: block;
} 
ul.number-list.number-data-list li .number span.f-size-46{
    position: relative;
    top: -10px;
}

.number-company-data ul.number-list.number-data-list:not(:first-of-type){
    margin-top: 0;
    position: relative;
    top: -3px;
}
ul.number-list.number-data-list li .txt{
    margin-top: 2.5rem;
}
/* ul.number-list.number-data-list li .income{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
} */
ul.number-list.number-data-list li .income{
    margin-top: 6rem;
}
ul.number-list.number-data-list li .income .income-column:not(:first-of-type){
    margin-top: 2rem;
}
ul.number-list.number-data-list li.number-income .flex-hover{
    margin-top: 2rem;
}
ul.number-list.number-data-list li .income .flex p.bg-light-green{
    padding: 1rem 2.5rem;
    margin-right: 1.2rem;
}
ul.number-list.number-data-list li .income .flex p span{
    margin-right: 5px;
}
ul.number-list.number-data-list li.number-income .txt{
    margin-top: 0;
}
li.number-income .bg-white{
    display: flex;
    flex-direction: column;
    justify-content: space-between
}
ul.number-list.number-data-list li.number-post p .en{
    padding: 0 3px;
}
ul.number-list.number-data-list li.number-post p .en:nth-of-type(2){
    position: relative;
    top: 2px;
}

ul.number-list.number-data-list li.number-income:hover:not(.hover-disabled) .flex-hover,
ul.number-list.number-data-list li.number-income.hover-active:not(.hover-disabled) .flex-hover{
    display: flex;
    gap: 1.5rem;
}
ul.number-list.number-data-list li:hover:not(.hover-disabled) .income .flex p.bg-light-green,
ul.number-list.number-data-list li.hover-active:not(.hover-disabled) .income .flex p.bg-light-green{
    background: var(--white);
    padding: 6px 7.5px;
    margin-right: 5px;
}
ul.number-list.number-data-list li:hover:not(.hover-disabled) .income .income-column:not(:first-of-type),
ul.number-list.number-data-list li.hover-active:not(.hover-disabled) .income .income-column:not(:first-of-type){
    margin-top: 0;
}
ul.number-list.number-data-list li.number-income:hover:not(.hover-disabled) .flex-hover .f-size-20,
ul.number-list.number-data-list li.number-income.hover-active:not(.hover-disabled) .flex-hover .f-size-20{
    font-size: 1.2rem;
}
ul.number-list.number-data-list li.number-income:hover:not(.hover-disabled) .flex-hover .f-size-58,
ul.number-list.number-data-list li.number-income.hover-active:not(.hover-disabled) .flex-hover .f-size-58{
    font-size: 3.2rem;
}
ul.number-list.number-data-list li.number-income:hover:not(.hover-disabled) .flex-hover .f-size-23,
ul.number-list.number-data-list li.number-income.hover-active:not(.hover-disabled) .flex-hover .f-size-23{
    font-size: 1.1rem;
}
ul.number-list.number-data-list li.number-income:hover:not(.hover-disabled) .number-hover-display,
ul.number-list.number-data-list li.number-income.hover-active:not(.hover-disabled) .number-hover-display{
    margin-top: 4rem;
}
ul.number-list.number-data-list li.number-income:hover:not(.hover-disabled) .income,
ul.number-list.number-data-list li.number-income.hover-active:not(.hover-disabled) .income{
    margin-top: 3.5rem;
}
ul.number-list.number-data-list li:hover:not(.hover-disabled) .ttl:after,
ul.number-list.number-data-list li.hover-active:not(.hover-disabled) .ttl:after,
ul.number-list.number-data-list li:hover:not(.hover-disabled) .number-data-ttl:after,
ul.number-list.number-data-list li.hover-active:not(.hover-disabled) .number-data-ttl:after,
.number-data-half li:hover:not(.hover-disabled) .number-data-ttl:after,
.number-data-half li.hover-active:not(.hover-disabled) .number-data-ttl:after,
.number-data-wide:hover:not(.hover-disabled) .number-data-ttl:after,
.number-data-wide.hover-active:not(.hover-disabled) .number-data-ttl:after{
    border-top-color: var(--light-green);
}
    
/* ホバー時の表示切り替え */
ul.number-list.number-data-list li:hover:not(.hover-disabled) .bg-white,
ul.number-list.number-data-list li.hover-active:not(.hover-disabled) .bg-white,
.number-data-half li:hover:not(.hover-disabled) .bg-white,
.number-data-half li.hover-active:not(.hover-disabled) .bg-white{
    padding: 4rem 2.5rem 5rem;
    background: var(--light-green);
    height: 100%;
}
ul.number-list.number-data-list li .number-hover-display,
.number-data-half li .number-hover-display{
    display: none;
}
ul.number-list.number-data-list li:hover:not(.hover-disabled) .number-hover-none,
ul.number-list.number-data-list li.hover-active:not(.hover-disabled) .number-hover-none,
.number-data-half li:hover:not(.hover-disabled) .number-hover-none,
.number-data-half li.hover-active:not(.hover-disabled) .number-hover-none,
.number-data-wide:hover:not(.hover-disabled) .number-hover-none,
.number-data-wide.hover-active:not(.hover-disabled) .number-hover-none{
    display: none;
}
ul.number-list.number-data-list li:hover:not(.hover-disabled) .number-hover-display,
ul.number-list.number-data-list li.hover-active:not(.hover-disabled) .number-hover-display,
.number-data-half li:hover:not(.hover-disabled) .number-hover-display,
.number-data-half li.hover-active:not(.hover-disabled) .number-hover-display {
    display: block;
}
ul.number-list.number-data-list li:hover:not(.hover-disabled) .department-list-box-button,
ul.number-list.number-data-list li.hover-active:not(.hover-disabled) .department-list-box-button,
.number-data-half li:hover:not(.hover-disabled) .department-list-box-button,
.number-data-half li.hover-active:not(.hover-disabled) .department-list-box-button,
.number-data-wide:hover:not(.hover-disabled) .department-list-box-button,
.number-data-wide.hover-active:not(.hover-disabled) .department-list-box-button {
    background: var(--white);
}
ul.number-list.number-data-list li .department-list-box-button .icon-plus,
.number-data-half li .department-list-box-button .icon-plus,
.number-data-wide .department-list-box-button .icon-plus{
    transition: rotate 0.3s ease, color 0.3s ease;
}
ul.number-list.number-data-list li:hover:not(.hover-disabled) .department-list-box-button .icon-plus,
ul.number-list.number-data-list li.hover-active:not(.hover-disabled) .department-list-box-button .icon-plus,
.number-data-half li:hover:not(.hover-disabled) .department-list-box-button .icon-plus,
.number-data-half li.hover-active:not(.hover-disabled) .department-list-box-button .icon-plus,
.number-data-wide:hover:not(.hover-disabled) .department-list-box-button .icon-plus,
.number-data-wide.hover-active:not(.hover-disabled) .department-list-box-button .icon-plus{
    color: var(--main-color);
    rotate: 45deg;
}

ul.number-list.number-data-list .department-list-box-button{
    top: 1px;
    left: 1px;
}
ul.number-list.number-data-list li .number-hover-none p.txt{
    margin-top: 1.5rem;
}
ul.number-list.number-data-list li .number-hover-display{
    letter-spacing: 1px;
    text-align: start;
}
.number-data-wide .number-hover-display{
    display: none;
}
.number-data-wide:hover:not(.hover-disabled),
.number-data-wide.hover-active:not(.hover-disabled),
.number-data-wide:hover:not(.hover-disabled) .bg-white,
.number-data-wide.hover-active:not(.hover-disabled) .bg-white{
    background: var(--light-green);
}
.number-data-wide:hover:not(.hover-disabled) .number-hover-display,
.number-data-wide.hover-active:not(.hover-disabled) .number-hover-display{
    display: block;
}
.number-data-wide01:hover:not(.hover-disabled) .img,
.number-data-wide01.hover-active:not(.hover-disabled) .img{
    width: 60%;
}
.number-data-wide01:hover:not(.hover-disabled) .number-hover-display,
.number-data-wide01.hover-active:not(.hover-disabled) .number-hover-display{
    width: 30%;
    padding-left: 5.5rem;
}
ul.number-list.number-data-list li.number-graph01:hover:not(.hover-disabled) .img,
ul.number-list.number-data-list li.number-graph01.hover-active:not(.hover-disabled) .img{
    width: 56%;
    margin-bottom: 3rem;
}
.number-data-wide.number-graph02{
    height: 478px;
}
.number-data-wide.number-graph02:hover:not(.hover-disabled) .img,
.number-data-wide.number-graph02.hover-active:not(.hover-disabled) .img{
    width: 60%;
}
.number-data-wide.number-graph02:hover:not(.hover-disabled) .number-hover-display,
.number-data-wide.number-graph02.hover-active:not(.hover-disabled) .number-hover-display{
    width: 35%;
    padding-left: 5rem;
}
.number-data-half li.number-graph03:hover:not(.hover-disabled) .img,
.number-data-half li.number-graph03.hover-active:not(.hover-disabled) .img,
.number-data-half li.number-graph04:hover:not(.hover-disabled) .img,
.number-data-half li.number-graph04.hover-active:not(.hover-disabled) .img{
    width: 50%;
}
.number-data-half li.number-graph03:hover:not(.hover-disabled) .number-hover-display,
.number-data-half li.number-graph03.hover-active:not(.hover-disabled) .number-hover-display{
    width: 50%;
}
.number-data-half li.number-graph04:hover:not(.hover-disabled) .number-hover-display,
.number-data-half li.number-graph04.hover-active:not(.hover-disabled) .number-hover-display{
    width: 50%;
    padding-left: 2rem;
}
.number-data-half li.number-graph03:hover:not(.hover-disabled) .flex-wrapper,
.number-data-half li.number-graph03.hover-active:not(.hover-disabled) .flex-wrapper,
.number-data-half li.number-graph04:hover:not(.hover-disabled) .flex-wrapper,
.number-data-half li.number-graph04.hover-active:not(.hover-disabled) .flex-wrapper{
    margin-top: 4rem;
}
.number-data-wide.number-mbti:hover:not(.hover-disabled) .flex-left,
.number-data-wide.number-mbti.hover-active:not(.hover-disabled) .flex-left{
    width: 60%;
}
.number-data-wide.number-mbti:hover:not(.hover-disabled) .flex-left img,
.number-data-wide.number-mbti.hover-active:not(.hover-disabled) .flex-left img{
    width: 92%;
}
.number-data-wide.number-mbti:hover:not(.hover-disabled) .flex-right,
.number-data-wide.number-mbti.hover-active:not(.hover-disabled) .flex-right{
    width: 40%;
    margin-right: 2rem;
}

.number-data-half li:hover:not(.hover-disabled) .bg-white,
.number-data-half li.hover-active:not(.hover-disabled) .bg-white{
    padding: 4rem 2.5rem;
    background: var(--light-green);
}

.number-data-wide.number-mbti{
    top: -1px;
    height: 626px;
}
.number-data-wide.number-mbti .flex-wrapper01{
    margin-top: 4rem;
    gap: 2rem;
}
.number-data-wide.number-mbti .flex-right .bg-white{
    padding: 3rem;
    border: 1px solid #707070;
}
.number-data-wide.number-mbti .flex-right .flex-wrapper02 {
    gap: 1rem;
}
.number-data-wide.number-mbti .img{
    margin-top: 0;
}
.number-business-man-area01-list li.number-business-man-area01-list-li:not(:first-of-type){
    margin-top: 8rem;
}
.number-business-man-area01-list ol.label-list{
    display: flex;
    flex-wrap: wrap;
    margin-top: 3rem;
    gap: 1rem 2rem;
}
.number-business-man-area01-list ol.label-list li.ttl-circle{
    font-size: 1.8rem;
    margin-left: 25px;
}
.number-business-man-area01-list ol.label-list li.ttl-circle::before{
    width: 17px;
    height: 17px;
    top: 58%;
    left: -25px;
}
.number-business-man-area01-list ol.label-list li.ttl-circle:nth-of-type(1)::before{
    background: #177777;
}
.number-business-man-area01-list ol.label-list li.ttl-circle:nth-of-type(2)::before{
    background: #3F9494;
}
.number-business-man-area01-list ol.label-list li.ttl-circle:nth-of-type(3)::before{
    background: #68B1B1;
}
.number-business-man-area01-list ol.label-list li.ttl-circle:nth-of-type(4)::before{
    background: #91CDCD;
}
.number-business-man-area01-list ol.label-list li.ttl-circle:nth-of-type(5)::before{
    background: #BAEAEA;
}
.number-business-man-area01-list li:nth-of-type(4) ol.label-list{
    max-width: 450px;
}

/************************************
** 割合棒グラフ
************************************/

.number-business-man-area{
    border: 1px solid var(--main-color);
    margin-top: 3rem;
}
.number-business-man-area .bg-white{
    padding: 10rem 7rem;
}
.number-business-man-area01-list li .number-data-ttl{
    padding-bottom: 5px;
}
.number-business-man-area01-list li .number-data-ttl::before{
    margin-left: -10px;
    rotate: 135deg;
    top: inherit;
    bottom: -11px;
    left: 15px;
}
.number-business-man-area01-list li .number-data-ttl::after{
    margin-left: -5px;
    rotate: 135deg;
    top: inherit;
    bottom: -7px;
    left: 15px;
}

.number-business-man-area02{
    margin-top: -1px;
}
.number-business-man-area02 .bg-white{
    padding: 5rem;
}
.percentage-bar-wrap{
    margin: 1.5rem auto 0;/* 余白 */
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-flex:1;
    -ms-flex:1;
    flex:1;
}
.percentage-bar-wrap > div:last-child{
    margin-right: 0;
}
.percentage-bar{
    position: relative;
    height: 50px;/* 棒高さ */
} 
.percentage-bar-num{
    text-align:center;
    color:#fff;/* ラベル文字色 */
    line-height: 50px;
    font-weight: 600;/* ラベル文字太さ */
    font-size:2.8rem;/* ラベル文字サイズ */
}
.percentage-bar-wrap .percentage-bar:nth-of-type(5) .percentage-bar-num{
    color: var(--main-color);
}
.percentage-bar-item{
    position: absolute;
    top: -45px;
    right: 0;
    color:var(--main-color);/* コンテンツ文字色 */
    font-weight: 600;
    font-size: 2.8rem;
}
.percentage-bar-wrap .percentage-bar:nth-of-type(3) .percentage-bar-item{
    color: var(--main-color);
    right: inherit;
    left: 50%;
    transform: translateX(-50%);
}  
.bar-color > div:nth-of-type(1){background:#177777;}
.bar-color > div:nth-of-type(2){background:#3F9494;}
.bar-color > div:nth-of-type(3){background:#68B1B1;}
.bar-color > div:nth-of-type(4){background:#91CDCD;}
.bar-color > div:nth-of-type(5){background:#BAEAEA;}

.number-business-man-area02-voice{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5rem 6rem;
    max-width: 860px;
    margin: 0 auto;
    margin-top: 8rem;
}
.number-business-man-area .voice-bubble{
    position: relative;
    display: inline-block;
}
.number-business-man-area .voice-bubble::before {
    content: "";
    position: absolute;
    left: 20px;
    top: inherit;
    bottom: -16px;
    transform: none;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 15px 15px 0;
    border-color: transparent var(--light-green) transparent transparent;
    rotate: 45deg;
}
.number-business-man-area .voice-bubble:nth-of-type(2)::before{
    left: 50px;
}
.number-business-man-area .voice-bubble:nth-of-type(3)::before{
    left: inherit;
    right: 30px;
    rotate: 135deg;
}
.number-business-man-area .voice-bubble:nth-of-type(4)::before{
    left: inherit;
    right: 30px;
}
.number-business-man-area .voice-bubble:nth-of-type(5)::before{
    left: 20px;
}
.number-business-man-area .voice-bubble.voice-bubble-bg{
    padding: 2rem 3rem;
    line-height: 1.5;
    color: var(--deep-green);
}
.number-business-man-area .voice-bubble.bg-main::before {
    border-color: transparent var(--main-color) transparent transparent;
}
.number-business-man-area .voice-bubble.bg-main,
.number-business-man-area .voice-bubble.bg-red,
.number-business-man-area .voice-bubble.bg-blue{
    color: var(--white);
}
.number-business-man-area .voice-bubble.bg-red::before {
    border-color: transparent var(--red) transparent transparent;
}
.number-business-man-area .voice-bubble.bg-blue::before {
    border-color: transparent var(--blue) transparent transparent;
}
.number-business-man-area .voice-bubble.bg-light-green02::before {
    border-color: transparent var(--light-green02) transparent transparent;
}
.number-business-man-area02-wrapper .img{
    margin-top: 5.5rem;
}

.number-business-man-area03{
    margin-top: -2px;
}
.number-business-man-area03 .bg-white{
    padding: 5rem 5rem 8rem;
}
.number-business-man-area03-voice{
    margin-top: 6rem;
}
.number-business-man-area03-voice li:not(:first-of-type){
    margin-top: 4rem;
}
.number-business-man-area03-voice li .bubble-bg{
    position: relative;
    padding: 2rem 3rem;
    color: var(--deep-green);
    text-align: start;
    line-height: 1.5;
}
.number-business-man-area03-voice li .bubble-bg::before{
    content: "";
    position: absolute;
    left: -20px;
    top: 55%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 15px 15px 0;
    border-color: transparent var(--light-green) transparent transparent;
    rotate: 135deg;
}
.number-business-man-area03-voice li .flex-wrapper{
    gap: 3rem;
    position: relative;
    display: inline-flex;
}
.number-business-man-area03-voice li:nth-of-type(1) .flex-wrapper{
    left: -14%;
}
.number-business-man-area03-voice li:nth-of-type(2) .flex-wrapper{
    right: -11%;
}
.number-business-man-area03-voice li:nth-of-type(3) .flex-wrapper{
    left: -15%;
}
.number-business-man-area03-voice li:nth-of-type(4) .flex-wrapper{
    right: -15%;
}
.number-business-man-area03-voice li:nth-of-type(5) .flex-wrapper{
    left: -15%;
}
.number-business-man-area03-voice li:nth-of-type(6) .flex-wrapper{
    right: -10%;
}
.number-business-man-area03-voice li:nth-of-type(7) .flex-wrapper{
    left: -25%;
}
.number-business-man-area03-voice li:nth-of-type(8) .flex-wrapper{
    right: -10%;
}
.number-business-man-area03-voice li:nth-of-type(9) .flex-wrapper{
    left: -10%;
}
.number-business-man-area03-voice li:nth-of-type(10) .flex-wrapper{
    right: -10%;
}
.number-business-man-area03-voice li:nth-of-type(even) .bubble-bg::before{
    left: inherit;
    right: -20px;
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent var(--light-green);
    rotate: 225deg;
}
.number-business-man-area03-voice li:nth-of-type(2) .bubble-bg::before{
    border-color: transparent transparent transparent var(--light-green02);
    top: 42%;
}
.number-business-man-area03-voice li:nth-of-type(3) .bubble-bg::before{
    border-color: transparent var(--main-color) transparent transparent;
}
.number-business-man-area03-voice li:nth-of-type(6) .bubble-bg::before{
    border-color: transparent transparent transparent var(--main-color);
    top: 42%;
}
.number-business-man-area03-voice li:nth-of-type(8) .bubble-bg::before{
    border-color: transparent transparent transparent var(--light-green02);
    top: 42%;
}
.number-business-man-area03-voice li:nth-of-type(even) .move-kakukaku {
    animation: move-kakukaku 1.6s steps(1, start) infinite 0.4s !important;
}

.number-bussines-man .number-data-ttl{
    line-height: 1.3;
    padding-bottom: 5px;
}
.number-bussines-man{
    padding-bottom: 12rem;
}

.number-data-employees .circle_graph_area{
    width: 180px;
}
.number-data-employees .number-hover-none .txt-area{
    white-space: nowrap;
    line-height: 1.5;
}


/*-----------------------------------------------------------
    福利厚生・制度
------------------------------------------------------------*/

#benefits .mv-layer-bg{
    background: url(../image/sub/workstyle/benefits/mv-layer.webp) no-repeat;
    background-size: cover;
    background-position: top center;
}
.benefits .ttl-wrapper{
    border-bottom: 1px solid #98D1D0;
    padding: 0 6rem 4rem;
}
.benefits .ttl-wrapper .txt{
    margin-top: 2rem;
    margin-left: 3rem;
}
.benefits .ttl-circle{
    line-height: 1.1;
}
.benefits .ttl-circle:before{
    top: 50%;
    background: var(--main-color);
}
.ttl-circle.red::before{
    background: var(--red);
}
.ttl-circle.yellow::before{
    background: var(--yellow);
}
.ttl-circle.blue::before{
    background: var(--blue);
}
.ttl-circle.purple::before{
    background: var(--purple);
}
.ttl-circle.main::before{
    background: var(--main-color);
}
.benefits01{
    background: transparent linear-gradient(180deg, #F7F8F8 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
    padding-bottom: 12rem;
}
.benefits .flex-wrapper.top{
    margin-top: 6rem;
    align-items: stretch; 
    gap: 4rem;
    display: flex;
}
.benefits01-list{
    margin-top: 3rem;
}
.benefits01-list li{
    border-left: 4px solid var(--main-color);
    padding-left: 2.5rem;
}
.benefits01-list li:not(:first-of-type){
    margin-top: 4rem;
}
.benefits01-list li .ttl{
    line-height: 1;
}
.benefits01-list li .ttl .en{
    margin-right: 1.5rem;
    position: relative;
    top: 1px;
}
.benefits01-list li .txt{
    margin-top: 1rem;
}

.benefits03{
    padding-bottom: 12rem;
}

.benefits:nth-of-type(odd) .flex-wrapper.top .flex-left{
    width: 38%;
    display: flex;
    flex-direction: column;
}
.benefits:nth-of-type(odd) .flex-wrapper.top .flex-right{
    width: 60%;
    max-width: 650px;
    display: flex;
    align-items: stretch;
}
.benefits .flex-wrapper .flex-left,
.benefits .flex-wrapper .flex-right{
    position: relative;
}
.benefits:nth-of-type(even) .flex-wrapper.top .flex-right{
    width: 38%;
    display: flex;
    flex-direction: column;
}
.benefits:nth-of-type(even) .flex-wrapper.top .flex-left{
    width: 60%;
    max-width: 650px;
    display: flex;
    align-items: stretch;
}


.swiper-navWrap{
    display: flex;
    position: absolute;
    width: 100%;
    height: 50px;
    top: 0;
    left: 0;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
}
.benefits-swiper .swiper-button-prev{
    width: 40px;
    height: 40px;
    left: -20px;
    right: auto;
}
.benefits-swiper .swiper-button-next{
    width: 40px;
    height: 40px;
    left: auto;
    right: -20px;
}
.benefits-swiper .swiper-button-prev::after{
    content: "";
    background-image: url(../image/sub/workstyle/benefits/benefits-swiper-prev.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
}
.benefits-swiper .swiper-button-next::after{
    content: "";
    background-image: url(../image/sub/workstyle/benefits/benefits-swiper-next.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
}
.benefits-swiper {
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
}
.benefits-swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
}
.benefits-swiper .swiper-slide {
    width: 100% !important;
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: stretch;
}
.benefits-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.benefits-swiper .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal{
    bottom: -30px;
}
.benefits-swiper .swiper-pagination-bullet-active {
    background: var(--main-color);
}
.benefits-voice{
    margin-top: 8rem;
}
.benefits-voice .bg-gray{
    padding: 7rem 9rem;
}
.benefits-voice-list{
    margin-top: 5rem;
}
.benefits-voice-list li:not(:first-of-type){
    margin-top: 3.5rem;
}
.benefits-voice-list li:nth-of-type(odd) .flex-wrapper{
    justify-content: flex-start;
    gap: 3rem;
}
.benefits-voice-list li:nth-of-type(even) .flex-wrapper{
    justify-content: flex-end;
    gap: 3rem;
}
.benefits-voice-list li .flex-wrapper .flex-left,
.benefits-voice-list li .flex-wrapper .flex-right{
    width: auto;
}
.benefits-voice-list li .img{
    width: 126px;
    height: 126px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gray);
}
.benefits-voice-list .img.bg-white{
    background: var(--white);
}
.benefits-voice-list .img.red{
    background: var(--icon-red);
}
.benefits-voice-list .img.yellow{
    background: var(--icon-yellow);
}
.benefits-voice-list .img.blue{
    background: var(--icon-blue);
}
.benefits-voice-list .img.purple{
    background: var(--icon-purple);
}
.benefits-voice-list .img.green{
    background: var(--icon-green);
}
.benefits-voice-list li .bg-white {
    position: relative;
}
.benefits-voice-list li .txt{
    padding: 3rem 4rem;
}
.benefits-voice-list li:nth-of-type(odd) .bg-white::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 55%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 15px 15px 0;
    border-color: transparent #ffffff transparent transparent;
    rotate: 135deg;
}
.benefits-voice-list li:nth-of-type(even) .bg-white::before {
    content: "";
    position: absolute;
    right: -20px;
    top: 55%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent #ffffff;
    rotate: 225deg;
}
.benefits-voice-list li:nth-of-type(even) .move-kakukaku{
    animation: move-kakukaku 1.6s steps(1, start) infinite 0.4s !important;
}

.benefits02-list li .ttl-circle{
    margin-left: 20px;
}
.benefits02-list li .ttl-circle:before{
    width: 10px;
    height: 10px;
    left: -20px;
}
.benefits02-list li:not(:first-of-type){
    margin-top: 5rem;
}
.benefits02-list li .txt{
    margin-top: 1rem;
}
.benefits-voice{
    position: relative;
}
.benefits-voice::before{
    position: absolute;
    content: "";
    font-size: 180px;
    font-weight: bold;
    line-height: 1;
    opacity: 0.3;
    top: -40px;
    left: 20px;
}
.benefits-voice::after{
    position: absolute;
    content: "";
    font-size: 180px;
    font-weight: bold;
    line-height: 1;
    opacity: 0.3;
    bottom: -110px;
    right: 20px;
}
.benefits.bg-light-green{
    padding-bottom: 10rem;
}
.benefits.bg-light-green .benefits-voice .bg-gray{
    background: var(--white);
}
.benefits.bg-light-green .benefits-voice-list li .bg-white{
    background: var(--gray);
}
.benefits.bg-light-green .benefits-voice-list li:nth-of-type(2n+1) .bg-white::before{
    border-color: transparent var(--gray) transparent transparent;
}
.benefits.bg-light-green .benefits-voice-list li:nth-of-type(even) .bg-white::before{
    border-color: transparent transparent transparent var(--gray);
}
.benefits03.benefits .flex-wrapper.top{
    align-items: center;
}
.benefits03-list li{
    font-weight: 500;
}
.benefits03-list li:not(:first-of-type){
    margin-top: 5rem;
}
.benefits03-list li span.en{
    padding: 1rem;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 2rem;
    position: relative;
    top: -3px;
}
.benefits03-list li span.ja{
    border-bottom: 1px solid var(--main-color);
    padding-bottom: 0.5rem;
}
.benefits03 .flex-wrapper.top .flex-left{
    margin: 0 auto;
}
.benefits04.benefits .flex-wrapper.top{
    align-items: center;
}
#benefits footer{
    padding-top: 0;
}

/*-----------------------------------------------------------
    募集要項
------------------------------------------------------------*/

.guideline .mv-layer-bg{
    background: url(../image/sub/workstyle/guideline/mv-layer.webp) no-repeat;
    background-size: cover;
    background-position: top center;
}
.guideline.bg-gray{padding-bottom: 12rem;}

.tab-wrap {
    display: flex;
    flex-wrap: wrap;
    margin:20px 0;
    border: 2px solid var(--main-color);
    background: var(--white);
}
.tab-wrap:after {
    content: '';
    width: 100%;
    height: 3px;
    display: block;
    order: -1;
}
.tab-label {
    color: #7E7E7E;
    background: #DFF1F1;
    font-weight: bold;
    white-space: nowrap;
    text-align: center;
    padding: 20px .5em;
    order: -1;
    position: relative;
    z-index: 1;
    cursor: pointer;
    flex: 1;
    font-size: 2rem;
}
.tab-label:not(:last-of-type) {
    margin-right: 5px;
}
.tab-content {
    width: 100%;
    height: 0;
    overflow: hidden;
    opacity: 0;
}
  /* アクティブなタブ */
.tab-switch:checked+.tab-label {
    background: var(--white);
    color: var(--main-color);
}
.tab-switch:checked+.tab-label+.tab-content {
    height: auto;
    overflow: auto;
    padding: 8rem 6.5rem;
    opacity: 1;
    transition: .5s opacity;
}
  /* ラジオボタン非表示 */
.tab-switch {
    display: none;
}

.guideline-table {
    border-collapse: collapse;
    width: 100%;
    margin: 0 auto;
    max-width: 680px;
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "Yu Gothic Medium", "YuGothic", "メイリオ", "Meiryo", sans-serif; 
  }
  .guideline-table td{
    border-bottom: 1px solid #E3E3E3;
    padding: 2rem ;
    font-size: 16px;
  }
  .guideline-table th {
    border-bottom: 1px solid var(--main-color);;
    font-weight: bold;
    text-align: start;
    width: 20%;
    min-width: 4em;
    padding: 2rem 1rem;
    font-size: 16px;
    vertical-align: middle;
  }
.guideline-table .wrapper:not(:first-of-type){
    margin-top: 1rem;
}

.guideline-flow{
    padding-top: 0;
}
.guideline-flow .bg-gray{
    padding: 6rem 0 8rem;
    background: var(--white);
}
.guideline-flow-list{
    display: flex;
    margin-top: 10rem;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10rem;
    margin-right: 8rem;
}
.guideline-flow-list li {
    min-width: 280px;
    position: relative;
}
.guideline-flow-list li .bg-white{
    padding: 8rem 2rem 5rem;
    height: 100%;
    background: var(--gray);
}
.guideline-flow-list li .number{
    line-height: 1;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}
.guideline-flow-list li .txt{
    margin-top: 4rem;
}
.guideline-flow-list li:not(:last-of-type)::after {
    content: '';
    position: absolute;
    right: -75px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 40px;
    height: 37px;
    background: #AFD8D8;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.guideline-flow .note{
    margin-top: 4rem;
}
.guideline-flow .common-btn{
    margin-top: 8rem;
    text-align: center;
}
.guideline-flow .common-btn a{
    margin: 0 auto;
    text-align: start;
    color: var(--white);
    background: var(--main-color);
    padding: 1.6rem 3rem;
}
.guideline-flow .common-btn a .arrow{
    margin-left: 5rem;
}
.guideline-thoughts.bg-light-green{
    padding-bottom: 8.5rem;
}
.guideline-thoughts .ttl-wrapper.top{
    line-height: 1.5;
    margin-bottom: 7rem;
}
.guideline-thoughts .ttl-wrapper.top .en{
    line-height: 1;
    padding: 0.8rem 2rem;
    margin-bottom: 2.5rem;
}
.guideline-thoughts-list{
    margin-top: 12rem;
}
.guideline-thoughts-list li:not(:first-of-type){
    margin-top: 10rem;
}
.guideline-thoughts-list li .en{
    border-bottom: 5px solid var(--main-color);
    line-height: 1;
    padding-bottom: 1.5rem;
}
.guideline-thoughts-list li .en span{
    margin-left: 1rem;
}
.guideline-thoughts-list li .flex-wrapper{
    margin-top: 4.5rem;
}
.guideline-thoughts-list li .flex-wrapper .flex-left{
    padding-right: 8rem;
}
.guideline-thoughts-list li .flex-wrapper .ttl{
    line-height: 1.5;
}
.guideline-thoughts-list li .flex-wrapper .txt{
    margin-top: 2rem;
    font-weight: 500;
    line-height: 2;
}

/*-----------------------------------------------------------
    採用基準
------------------------------------------------------------*/

#standards .mv-layer-bg{
    background: url(../image/sub/workstyle/standards/mv-layer.webp) no-repeat;
    background-size: cover;
    background-position: top center;
}

.standards-requirements .en-ttl {
    animation: mvTextAnimation 0.5s ease forwards;
    animation-delay: 0.3s;
}
@keyframes mvTextAnimation {
    0% {
        opacity: 0;
        transform: scale(10);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.standards-requirements-contents{
    margin-top: 8rem;
}
.standards-requirements-contents .bg{
    background: url(../image/sub/workstyle/standards/standards-img01.webp) no-repeat;
    background-size: cover;
    background-position: top 70% center;
    padding: 12rem 0 10rem;
    margin: 0 2rem;
}
.standards-requirements-list li:not(:first-of-type){
    margin-top: 5rem;
}
.standards-requirements-list li .en{
    line-height: 1;
    padding-right: 5rem;
}
.standards-requirements-list li .txt-wrapper{
    padding-left: 5rem;
    border-left: 3px solid var(--white);
}
.standards-requirements-entry-area{
    margin-top: 8rem;
}
.standards-requirements-entry-area .bg-blur{
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.standards-requirements-entry-area .sec-ttl .en:before{
    background: var(--red);
}
.standards-requirements-entry-area .common-btn a{
    margin: 3rem auto 0;
}
.standards-requirements-entry-area p.txt{
    margin-top: 1.2rem;
}
.standards-requirements-entry-area .white-txt{
    color: var(--white);
}
.standards-mbti .top-img{
    margin-top: 3rem;
}
.standards-mbti .flex-wrapper {
    align-items: stretch;
    justify-content: space-between;
    gap: 1rem;
}
.standards-mbti .flex-wrapper .flex-left{
    display: flex;
    align-items: center;
    width: 40%;
}
.standards-mbti .flex-wrapper .flex-right{
    width: 55%;
}
.standards-mbti-list li{
    gap: 1.5rem;
}
.standards-mbti-list li .mbti-img img{
    min-width: 110px;
    max-width: 110px;
}

.standards-mbti .bg-gray{
    padding: 10rem;
}
.standards-mbti .bg-white{
    padding: 6rem;
}
.standards-mbti-list li:not(:first-of-type){
    margin-top: 2rem;
}
.standards-mbti-list li .txt{
    line-height: 1;
}
.standards-mbti-list li .mbti-txt .txt{
    line-height: 1.6;
    margin-top: 0;
}
.standards-mbti-list li .mbti-img{
    display: flex;
    align-items: center;
    margin-top: 3rem;
}
.standards-mbti-list li .txt01{
    position: relative;
    top: 2.5px;
    margin-right: 0.5rem;
}
.standards-mbti-list li:first-of-type .txt01::before{
    position: absolute;
    content: "";
    background: url(../image/sub/workstyle/standards/standards-mbti-icon.svg) no-repeat;
    background-size: contain;
    width: 14px;
    height: 12px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.standards-mbti-list li .txt03{
    position: relative;
    top: 2.5px;
    margin-left: 1.5rem;
    margin-right: 0.5rem;
}
.standards-mbti-entry-area{
    margin-top: 7rem;
}
.standards-mbti-entry-area p.txt{
    margin-top: 1.2rem;
}
.standards-chart .chart-img{
    margin-top: 5rem;
}
.standards-mbti-entry-area .common-btn{
    text-align: center;
}
.standards-mbti-entry-area .common-btn a{
    text-align: start;
    margin: 3rem auto 0;
    color: var(--white);
    background: var(--main-color);
}

.standards-mbti-list li:nth-of-type(even) .move-kakukaku{
    animation: move-kakukaku 1.6s steps(1, start) infinite 0.4s !important;
}

/*-----------------------------------------------------------
    ファストパス制度
------------------------------------------------------------*/

#comeback main{
    background: var(--gray);
    padding-bottom: 8.5rem;
}

#fastpass .mv-layer-bg{
    background: url(../image/sub/workstyle/fastpass/mv-layer.webp) no-repeat;
    background-size: cover;
    background-position: top center;
}

.fastpass .flex-wrapper .flex-left {
    padding-right: 6rem;
}
.fastpass .flex-wrapper .flex-right .ttl{
    line-height: 1;
}
.fastpass .flex-wrapper .flex-right .txt{
    line-height: 2.2;
    margin-top: 3rem;
}
.fastpass-bubble{
    padding: 3rem;
    border: 4px solid var(--main-color);
    border-radius: 9999px;
    margin-top: 12rem;
    position: relative;
    background: var(--white);
}
.fastpass-bubble::after{
    content: "";
    position: absolute;
    bottom: -41px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 40px solid transparent;
    border-left: 40px solid transparent;
    border-top: 40px solid var(--main-color);
    border-bottom: 0;
}
.fastpass-bubble .txt{
    font-weight: 700;
}

.fastpass-rule {
    margin-top: 6rem;
}
.fastpass-rule .flex-left{
    padding-right: 5rem;
}
.fastpass-rule .flex-left .ttl{
    line-height: 1;
}
.fastpass-rule .flex-left .ttl .f-size-97{
    font-weight: 500;
    position: relative;
    top: 2px;
    margin: 0 1rem;
    line-height: 1;
}
.fastpass-rule .flex-left .txt{
    margin-top: 2rem;
}
.fastpass-rule .bg-white{
    margin-top: 2rem;
    padding: 3rem;
}
.fastpass-rule-list li:not(:first-of-type){
    margin-top: 2rem;
}
.fastpass-rule-list li .white-color{
    padding: 5px 1rem;
    border-radius: 9999px;
    line-height: 1;
    margin-bottom: 0.5rem;
}


/*-----------------------------------------------------------
    見どころガイド
------------------------------------------------------------*/

.guide .mv-layer-bg {
	width: 100%;
	height: 617px; /* 画像の高さを指定 */
	position: relative;
	background: url("../image/sub/guide/guide-mv-bg.webp") repeat-x 0 0;
	background-size: auto 100%;
	animation: bg-slider 100s linear infinite; /* 23sの部分背景画像の約数だとスムーズ */
}
@keyframes bg-slider {
	from { background-position: 0 0; }
    to { background-position: -4842px 0; } /* 1518pxとは使用した背景画像の長さ */
}
.guide .mv-layer-bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(4, 47, 47, 0.5); 
	z-index: 1; 
	pointer-events: none; 
}
.guide .mv-ttl-bg{
    width: 100%;
    background: rgba(51, 161, 161, 0.8); 
    backdrop-filter: brightness(1.15) contrast(1.05);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}
.guide .mv-ttl-bg .inner-800{
    padding: 10rem 4%;
}
.mv-ttl-bg-txt{
    position: relative;
    width: 100vw;
}
.mv-ttl-bg-txt::before{
    content: "";
    position: absolute;
    background: url(../image/sub/guide/mv-ttl-bg-txt01.svg) repeat-x;
    background-size: contain;
    width: 100%;
    height: 4vw;
    top: 0;
    left: 0;
}
.mv-ttl-bg-txt::after{
    content: "";
    position: absolute;
    background: url(../image/sub/guide/mv-ttl-bg-txt02.svg) repeat-x;
    background-size: contain;
    width: calc(100% + 50px);
    height: 4vw;
    bottom: 0;
    left: -50px;
}
.guide .mv-ttl-wrapper{
    position: relative;
}
.guide .mv-ttl-wrapper::after{
    content: "";
    position: absolute;
    background: url(../image/sub/guide/guide-mv-man.svg) no-repeat;
    background-size: contain;
    width: 268px;
    height: 242px;
    top: 50%;
    right: -90px;
    transform: translateY(-50%);
}
.guide .mv-ttl-wrapper .ttl-top{
    font-weight: 700;
    letter-spacing: -0.15em;
    line-height: 1;
    position: relative;
    display: inline-block;
}
.guide .mv-ttl-wrapper .ttl-top::after{
    content: "";
    position: absolute;
    background: url(../image/sub/guide/guide-mv-bubble.svg) no-repeat;
    background-size: contain;
    width: 221px;
    height: 78px;
    top: 55%;
    transform: translateY(-50%);
}
.guide .mv-ttl-wrapper .ttl-btm{
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.15em;
}
.guide .mv-ttl-wrapper .ttl-top span:nth-of-type(5){
    margin-left: -25px;
}
.guide .mv-ttl-wrapper .ttl-btm span:nth-of-type(3){
    margin-left: -10px;
    position: relative;
    top: 5px;
}
.guide .mv-ttl-wrapper .ttl-btm span:nth-of-type(4){
    margin-left: -15px;
}
.guide .mv-ttl-wrapper .ttl-btm span:nth-of-type(7){
    margin-left: -25px;
}
.guide .mv-ttl-wrapper .txt{
    position: relative;
    margin-top: 1rem;
    margin-left: 2.5rem;
}
.guide .mv-ttl-wrapper .txt::before{
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--white);
    top: 55%;
    left: -20px;
    transform: translateY(-50%);
}

.guide .breadcrumb-list{
    margin-top: 2rem;
}
.guide .breadcrumb-list li,
.guide .breadcrumb-list li a{
    color: var(--text-color);
}
.guide .breadcrumb-list li:not(:last-child)::after{
    background: var(--text-color);
}

.guide-introduction-bg{
    border: 3px solid var(--main-color);
    padding: 4rem 8rem;
}
.guide-introduction .flex-wrapper .flex-left{
    width: 25%;
    text-align: center;
    padding-right: 2rem;
}
.guide-introduction .flex-wrapper .flex-right{
    width: 75%;
}
.guide-introduction .flex-wrapper .flex-right .ttl{
    display: inline-block;
    border-bottom: 2px solid var(--main-color);
}
.guide-introduction .flex-wrapper .flex-right .txt{
    line-height: 2;
    margin-top: 1.5rem;
}

.guide-anchor-link-list{
    margin-top: 4rem;
    gap: 1rem;
    display: flex;
    justify-content: space-between;
}
.guide-anchor-link-list li{
    width: calc((100% - 60px)/3);
}
.guide-anchor-link-list li a{
    padding: 3rem;
    position: relative;
    font-weight: 500;
}
.guide-anchor-link-list li a .arrow-btn.arrow-wrapper{
    background: transparent;
    border: 2px solid var(--white);
    top: 50%;
    right: 3rem;
    transform: translateY(-50%);
    bottom: auto;
    width: 32px;
    height: 32px;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: transform 0.3s ease;
}
.guide-anchor-link-list li a:hover .arrow-btn.arrow-wrapper{
    transform: translateY(-50%) scale(1.2);
}
.guide-anchor-link-list li a .anchor-link-arrow {
    position: relative;
    display: inline-block;
    width: 9px;
    height: 4.5px;
    top: 1px;
}
.guide-anchor-link-list li a .anchor-link-arrow::before,
.guide-anchor-link-list li a .anchor-link-arrow::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 1px);
    width: 2px;
    height: 6.3px;
    border-radius: 9999px;
    background-color: var(--white);
    transform-origin: 50% calc(100% - 1px);
}
.guide-anchor-link-list li a .anchor-link-arrow::before {
    transform: rotate(45deg);
}
.guide-anchor-link-list li a .anchor-link-arrow::after {
    transform: rotate(-45deg);
}

.guide-section .bg{
    background: #FDF0F1;
    padding: 10rem 9.5rem;
}
.guide-section .flex-wrapper.top{
    padding: 0 7rem;
    gap: 5rem;
}
.guide-section .flex-wrapper.top .img{
    width: 30%;
    position: relative;
}
.guide-section .flex-wrapper.top .txt{
    width: 70%;
    position: relative;
}
.guide-section .flex-wrapper.top .txt::before{
    content: "";
    position: absolute;
    width: 310px;
    height: 132px;
    background: url(../image/sub/guide/guide-01-text.svg) no-repeat;
    background-size: contain;
    top: -80px;
    left: -60px;
}

.guide-section-list{
    margin-top: 2.5rem;
}
.guide-section-list li:not(:first-of-type){
    margin-top: 5rem;
}
.guide-section-list li .flex-wrapper {
    gap: 5rem;
}
.guide-section-list .flex-wrapper .flex-right{
    text-align: center;
}
.guide-section-list li .bg-white{
    padding: 5rem 7rem 6rem;
    border: 1px solid var(--red);
    border-left: 10px solid var(--red);
}
.guide-section-list li a.btn-link{
    margin: 3.5rem 0 0;
}
.guide-section-list li .sec-ttl .en{
    margin-left: 20px;
}
.guide-section-list li .sec-ttl .en:before{
    width: 8px;
    height: 8px;
    left: -15px;
    top: 56%;
}
.guide-section-list li .sec-ttl .en.red-color:before{
    background: var(--red);
}
.guide-section-list li .sec-ttl .en.yellow-color:before{
    background: var(--yellow);
}
.guide-section-list li .sec-ttl .en.blue-color:before{
    background: var(--blue);
}
.guide-section-list li a.btn-link .arrow-wrapper{
    width: 32px;
    height: 32px;
    background: var(--red);
}
.guide-section-list li a.btn-link .arrow {
    width: 18px;
}
.guide-section-list li a.btn-link .arrow::after {
    width: 5px;
}

.guide-section.guide-business .bg {
    background: #FCF5E8;
}
.guide-section.guide-business .guide-section-list li .bg-white{
    border: 1px solid var(--yellow);
    border-left: 10px solid var(--yellow);
}
.guide-section.guide-business .guide-section-list li a.btn-link .arrow-wrapper {
    background: var(--yellow);
}
.guide-section.guide-business .flex-wrapper.top .txt::before{
    background: url(../image/sub/guide/guide-02-text.svg) no-repeat;
    background-size: contain;
    width: 225px;
    height: 120px;
}

.guide-section.guide-company .bg {
    background: #F0F6FF;
}
.guide-section.guide-company .guide-section-list li .bg-white{
    border: 1px solid var(--blue);
    border-left: 10px solid var(--blue);
}
.guide-section.guide-company .guide-section-list li a.btn-link .arrow-wrapper {
    background: var(--blue);
}
.guide-section.guide-company .flex-wrapper.top .txt::before{
    background: url(../image/sub/guide/guide-03-text.svg) no-repeat;
    background-size: contain;
    width: 225px;
    height: 120px;
}

.guide-section.guide-workstyle .bg{
    position: relative;
}
.guide-section.guide-workstyle .bg::before{
    position: absolute;
    content: "";
    background: url(../image/sub/guide/guide-workstyle-img01.webp) no-repeat;
    background-size: contain;
    width: 120px;
    height: 168px;
    left: -90px;
    bottom: 130px;
    animation: move-kakukaku 1.6s steps(1, start) infinite;
    animation-delay: 0s;
    z-index: 10;
}
.guide-section.guide-workstyle .bg::after{
    position: absolute;
    content: "";
    background: url(../image/sub/guide/guide-workstyle-img02.webp) no-repeat;
    background-size: contain;
    width: 114px;
    height: 190px;
    left: -30px;
    bottom: -80px;
    animation: move-kakukaku 1.6s steps(1, start) infinite;
    animation-delay: 0.4s;
    z-index: 10;
}

.guide-section.guide-business .bg{
    position: relative;
}
.guide-section.guide-business .bg::before{
    position: absolute;
    content: "";
    background: url(../image/sub/guide/guide-business-img01.webp) no-repeat;
    background-size: contain;
    width: 84px;
    height: 230px;
    right: 50px;
    bottom: 30px;
    animation: move-kakukaku 1.6s steps(1, start) infinite;
    animation-delay: 0s;
    z-index: 10;
}
.guide-section.guide-business .bg::after{
    position: absolute;
    content: "";
    background: url(../image/sub/guide/guide-business-img02.webp) no-repeat;
    background-size: contain;
    width: 66px;
    height: 174px;
    right: -30px;
    bottom: 90px;
    animation: move-kakukaku 1.6s steps(1, start) infinite;
    animation-delay: 0.4s;
    z-index: 10;
}

.guide-section.guide-company .bg{
    position: relative;
}
.guide-section.guide-company .bg::before{
    position: absolute;
    content: "";
    background: url(../image/sub/guide/guide-company-img.webp) no-repeat;
    background-size: contain;
    width: 125px;
    height: 183px;
    left: -60px;
    bottom: -10px;
    animation: move-kakukaku 1.6s steps(1, start) infinite;
    animation-delay: 0.4s;
    z-index: 10;
}

@keyframes smooth-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

.guide-section .flex-wrapper.top .img img {
    animation: smooth-float 3s ease-in-out infinite;
}

/*-----------------------------------------------------------
    部署紹介
------------------------------------------------------------*/
section.department{
    padding-bottom: 12rem;
}

.department-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.department-list li{
    max-width: 420px;
    min-width: 340px;
    width: calc((100% - 40px)/3);
    background: var(--white);
    padding: 5rem;
    padding-top: 10rem;
    position: relative;
}
.department-list-box{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.department-list li .img img{
    height: 200px;
    max-width: 200px;
}
.department-list li:nth-of-type(4) .img img{
    max-width: 240px;
}
.department-list .ttl{
    margin-top: 4rem;
    line-height: 1.2;
    text-align: center;
}
.department-list li .txt{
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 1.5rem;
    letter-spacing: 1px;
}
.department-list li:nth-of-type(2) .txt,
.department-list li:nth-of-type(4) .txt{
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.department-list-box-button{
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-plus {
    display: inline-block;
    vertical-align: middle;
    color: var(--white);
    line-height: 1;
    width: 20px;
    height: 0.1em;
    background: currentColor;
    border-radius: 0.1em;
    position: relative;
}
.icon-plus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    transform: rotate(90deg);
}
.department .modalWrapper .icon-plus{
    rotate: 45deg;
}

/* モーダル表示時の背景 */
.modal-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    background: rgba(0, 0, 0, 0.8);
    display: none;
  }
  
  /* モーダル本体 */
  .modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    background: rgba(0, 0, 0, 0.8);
  }
  
  .modalWrapper {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    width: 90%;
    max-width: 550px;
    max-height: 90vh;
    overflow: auto;
    padding: 5rem;
    z-index: 10000;
  }
  
  .modal-content {
    text-align: center;
  }
  
  .modal-close {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  
  .modal-img img {
    height: 220px;
    max-width: 220px;
    margin-bottom: 3rem;
  }
  #modal-04 .modal-img img {
    max-width: 260px;
  }
  
  .modal-ttl {
    margin-bottom: 1.5rem;
    line-height: 1.4;
  }
  
  .modal-txt {
    line-height: 2;
    text-align: left;
  }
  
  /* クリック可能にする */
  .department-list li.modal-trigger {
    cursor: pointer !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

/*-----------------------------------------------------------
    エントリー
------------------------------------------------------------*/

#entry .mv-layer-bg{
    background: url(../image/sub/entry/mv-layer.webp) no-repeat;
    background-size: cover;
    background-position: top center;
}

.entry-page{
    overflow: hidden;
    background: var(--light-green);
    padding-bottom: 12rem;
}
.entry-form{
    margin-top: 6rem;
}
.entry-form .bg-white{
    padding: 9rem;
}
.entry-form .bg-gray .content-area{
    max-width: calc(800px + 8%);
    margin: 0 auto;
}
.entry-form .note{
    margin-top: 3rem;
    line-height: 1.5;
}

.entry-button-wrapper{
    /* margin-top: 9rem; */
    text-align: center;
}
.entry-button-wrapper .flex.btn-mynavi{
    gap: 1rem;
}
.entry-button-wrapper .bg-gray{
    padding: 5rem;
}
.entry-button-wrapper a{
    width: fit-content;
    margin: 0 auto;
}
.entry-button-wrapper a:hover div.f-size-16{
    color: var(--main-color);
}
.entry-button-wrapper .img{
    max-width: 526px;
    margin: 2.5rem auto 0.5rem;
    overflow: hidden;
}
.entry-button-wrapper .img img{
    transition: transform 0.3s ease;
}
.entry-button-wrapper a:hover img{
    transform: scale(1.1);
}
.entry-button-wrapper .entry-button-list a{
    width: 100%;
}
.entry-button-wrapper .entry-button-list{
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 8rem;
}
.entry-button-wrapper .entry-button-list li{
    width: calc((100% - 80px)/3);
}
.entry-button-wrapper .entry-button-list li .txt{
    text-align: start;
}
.entry-button-wrapper .entry-button-list li a.link-blank::after{
    width: 11px;
    height: 11px;
    right: 30px;
    background: url(../image/common/link-blank-green.svg) no-repeat center;
    background-size: contain;
}

.wpforms-required-label{
    background: var(--main-color)!important;
    color: var(--white)!important;
    font-size: 1.2rem!important;
    padding: 2px 7px 3px!important;
    line-height: 1.3;
    position: relative !important;
    bottom: 3px;
    display: inline-block;
    border-radius: 9999px!important;
}
.submit-button{
    position: relative;
    display: flex !important;
    justify-content: right !important;
    padding: 3.5rem 15rem 3.5rem 3rem !important;
    margin: 0 auto !important;
    margin-top: 5.5rem !important;
    background: var(--main-color) !important;
    font-size: 1.8rem !important;
    align-content: center;
    flex-wrap: wrap;
    border-radius: 0!important;
    border-radius: 9999px!important;
}
.submit-button::after{
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 20px;
    height: 10px;
    background: url(../image/common/button-arrow.svg) no-repeat center;
    background-size: contain;
    transition: transform 0.3s ease;
}
/* .submit-button:hover::after{
    background: url(../image/common/button-arrow-main.svg) no-repeat center;
    background-size: contain;
} */
div.wpforms-container-full input[type="text"],
div.wpforms-container-full textarea{
    border: 1px solid transparent!important;
    border-radius: 0!important;
}
div.wpforms-container-full input[type="text"], div.wpforms-container-full textarea{
    background: var(--gray)!important;
}
.entry-button-wrapper a{
    background: var(--light-green02);
    color: #135F5F;
}
div.wpforms-container-full .wpforms-confirmation-container-full{
    background: transparent!important;
    border: none!important;
}
.entry-form a.extarnal{
    border-bottom: 1px solid var(--main-color);
    padding-bottom: 1px;
    display: inline;
    color: var(--main-color);
}

/*-----------------------------------------------------------
    プライバシーポリシー
------------------------------------------------------------*/

section.privacy{
    padding-bottom: 12rem;
    background: var(--gray);
}

#privacy .mv-layer-bg{
    background: url(../image/sub/privacy/mv-layer.webp) no-repeat;
    background-size: cover;
    background-position: top center;
}

.privacy-area:not(:first-of-type){
    margin-top: 5rem;
}
.privacy-area p.txt{
    margin-top: 2rem;
    line-height: 1.8;
}
.privacy-area ul{
    list-style: disc;
    padding-left: 2rem;
    margin-top: 2rem;
}
.privacy-area ul.txt li{
    margin-top: 2.5rem;
}
.privacy-area ul.txt li p.txt{
    margin-top: 1rem;
}
ul.privacy-area-asterisk-list{
    margin-top: 3rem;
}
ul.privacy-area-asterisk-list li{
    margin-top: 1.5rem;
}
ul.privacy-area-asterisk-list li .asterisk{
    margin-right: 1rem;
}


/*-----------------------------------------------------------
    働く人を知る（一覧）
------------------------------------------------------------*/

#people .mv-layer-bg{
    width: 100%;
    height: 500px;
    position: relative;
    background: url(../image/sub/people/mv-layer.webp) repeat-x 0 0;
    background-size: auto 100%;
    animation: bg-slider 100s linear infinite;
}

.guide .mv-layer-bg {
    width: 100%;
    height: 617px;
    position: relative;
    background: url(../image/sub/guide/guide-mv-bg.webp) repeat-x 0 0;
    background-size: auto 100%;
    animation: bg-slider 100s linear infinite;
}

.people-all{
    padding-bottom: 12rem;
}
.people-all .people-all-bg{
    padding: 6% 4%;
    position: relative;
    overflow: hidden;
}
.people-all .people-all-bg::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../image/common/effect-block.png);
    background-repeat: repeat;
    background-position: 0 0;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: multiply;
}
.people-all .people-all-bg > *{
    position: relative;
    z-index: 2;
}

li.people-none img{
    width: 100%;
}

#people .people-all-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6rem 2rem;
}
.people-all-list li{
    max-width: 284px;
}

.people-question02{
    padding-bottom: 12rem;
}
.people-question03{
    padding-top: 0;
}

#people .people-all-list .people-item-lead-area{
    opacity: 1;
    transform: none;
}
#people .people-all-list .people-item-lead{
    display: block;
}


/*-----------------------------------------------------------
    働く人を知る（詳細）
------------------------------------------------------------*/

.people-mv{
    margin-top: 9.9rem;
}
.people-mv-bg{
    position: relative;
}
.people-mv-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/image/sub/people/people-bg-img.png');
    background-size: 120px 120px;
    background-repeat: repeat;
    mix-blend-mode: multiply;
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
  }
.people-mv .ttl-copy{
    margin: 4rem 0 3rem;
}
.people-mv .ttl-copy span{
    width: fit-content;
    padding: 1.5rem 2rem;
    line-height: 1;
    letter-spacing: 0.1em;
}
.people-mv .ttl-copy span:not(:first-of-type){
    margin-top: 1rem;
}
.people-mv-block .people-name{
    letter-spacing: 0.05em;
}
.people-mv-block .people-position{
    line-height: 1;
    margin: 1.5rem 0 3.5rem;
}
.people-mv-block .people-year{
    border: 1px solid var(--white);
    line-height: 1;
    padding: 0.5rem 1rem;
    position: relative;
    top: -2px;
    margin-left: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}
.people-place {
    position: relative;
    padding-left: 20px;
    line-height: 1;
}
.people-place::before {
    content: '';
    position: absolute;
    left: 0;
    top: 55%;
    transform: translateY(-50%);
    width: 14px;
    height: 20px;
    background: url(../image/sub/people/people-place-icon.svg) no-repeat center;
    background-size: contain;
}
.people-mv-block .box .txt-area{
    width: fit-content;
    padding: 8rem 0;
    position: relative;
    z-index: 10;
}

.people-mv-bg-space{
    position: relative;
    padding: 5rem 0;
}
.people-mv .img{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    max-width: 890px;
    max-height: 640px;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}
.people-mv .img img{
    object-fit: cover;
}

.people-mv-block {
  position: relative;
  z-index: 2;
}

.introduction-wrapper{
    margin-top: 9rem;
}
.people-introduction .bg-light-green{
    padding: 2rem 0 11rem;
}
.people-introduction .breadcrumb-list{
    margin-top: 0;
}
.people-introduction .breadcrumb-list li{
    color: var(--text-color);
}
.people-introduction .breadcrumb-list li a {
    color: var(--text-color);
}
.people-introduction .breadcrumb-list li:not(:last-child)::after{
    background-color: var(--text-color);
    right: -2.5rem;
    transform: translateY(-50%);
}
.introduction-wrapper .bg-white{
    padding: 5rem 7rem;
}
.introduction-wrapper .flex-wrapper{
    gap: 5rem;
    justify-content: space-between;
}
.introduction-wrapper .ttl-circle{
    margin-left: 20px;
    margin-bottom: 10px;
}
.introduction-wrapper .ttl-circle::before{
    width: 12px;
    height: 12px;
    left: -20px;
}
.introduction-wrapper .img{
    max-width: 170px;
    width: 20%;
}
.introduction-wrapper .txt{
    line-height: 1.5;
    width: 80%;
}

.people-question-ttl{
    border-bottom: 1px solid #98D1D0;
    padding-bottom: 2.2rem;
}
.people-question-ttl .ttl-circle{
    margin-left: 15px;
    margin-bottom: 5px;
}
.people-question-ttl .ttl-circle::before{
    width: 10px;
    height: 10px;
    top: 55%;
    left: -15px;
}
.people-question h3{
    margin: 2.2rem 0 1rem;
    line-height: 1.7;
}
.people-question p.txt:not(:first-of-type){
    margin-top: 1.5rem;
}

.people-question .flex-wrapper .flex-left{
    padding-right: 4rem;
}

/* .people-question:nth-of-type(2) .ttl-circle::before{
    background: var(--purple);
}
.people-question:nth-of-type(3) .ttl-circle::before{
    background: var(--yellow);
} */
section.people-question03 .bg-main{
    padding: 5rem 0;
}
section.people-question03 .bg-white{
    padding: 5.5rem 10rem;
}

.people-schedule{
    padding-top: 0;
}
.people-schedule .bg-gray{
    padding: 8rem 0;
}
.people-schedule .bg-white{
    padding: 4rem 15rem;
    margin-top: 3rem;
}
.people-schedule .ttl-circle{
    margin-left: 20px;
    margin-bottom: 5px;
}
.people-schedule .ttl-circle::before{
    width: 12px;
    height: 12px;
    top: 55%;
    left: -20px;
}

.schedule-list-wrap {
    height: 100%;
}
.schedule-list {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.schedule-list-item {
    display: flex;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 3rem;
    gap: 3rem;
    border-left: solid 1px var(--main-color);
    position: relative;
    align-items: center;
    height: 100%;
}
/* .schedule-list-item:first-of-type{
    padding-top: 5rem;
    padding-bottom: 1.5rem;
}
.schedule-list-item:last-of-type{
    padding-top: 1.5rem;
    padding-bottom: 5rem;
} */
.schedule-list-item::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background: var(--main-color);
    border-radius: 100%;
    top: 50%;
    transform: translate(0, -50%);
    left: -5px;
}
/* .schedule-list-item:first-of-type::before{
    top: 68%;
}
.schedule-list-item:last-of-type::before{
    top: 32%;
} */
.schedule-list-item .time{
    min-width: 50px;
}

.people-message {
    background-image: url(../image/sub/people/people01/people-img02.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: fixed;
    margin-top: 0;
    padding: 12rem 0;
}
#people02 .people-message {
    background-image: url(../image/sub/people/people02/people-img02.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: fixed;
    margin-top: 0;
    padding: 12rem 0;
}
#people03 .people-message {
    background-image: url(../image/sub/people/people03/people-img02.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: fixed;
    margin-top: 0;
    padding: 12rem 0;
}
#people04 .people-message {
    background-image: url(../image/sub/people/people04/people-img02.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 40% top;
    background-attachment: fixed;
    margin-top: 0;
    padding: 12rem 0;
}
#people05 .people-message {
    background-image: url(../image/sub/people/people05/people-img02.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 40% top;
    background-attachment: fixed;
    margin-top: 0;
    padding: 12rem 0;
}
#people06 .people-message {
    background-image: url(../image/sub/people/people06/people-img02.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 60% top;
    background-attachment: fixed;
    margin-top: 0;
    padding: 12rem 0;
}
#people07 .people-message {
    background-image: none;
    background: var(--white);
    margin-top: 0;
    padding: 12rem 0;
}
/* #people03 .people-mv-block .people-year,
#people05 .people-mv-block .people-year,
#people06 .people-mv-block .people-year {
    display: block;
    width: fit-content;
    margin-left: 0;
    margin-top: 1.5rem;
} */


.people-message .bg-img {
    display: none;
}
.people-message .bg-white{
    width: 60%;
    padding: 7rem 7.5rem;
}
.people-message .ttl-circle{
    margin-left: 12px;
}
.people-message .ttl-circle::before{
    width: 8px;
    height: 8px;
    left: -12px;
    top: 55%;
}
.people-message .txt{
    margin-top: 2rem;
}
.people-message .txt p:not(:first-of-type){
    margin-top: 1rem;
}

#people07 .people-message .bg-white{
    background: var(--gray);
    width: 50%;
}
#people07 .people-message .img{
    width: 40%;
}
#people07 .people-message .flex-wrapper{
    gap: 5rem;
    justify-content: space-between;
}

#people01 footer,
#people02 footer,
#people03 footer,
#people04 footer,
#people05 footer,
#people06 footer,
#people07 footer{
    padding-top: 0;
}

#people04 .people-message .bg-white,
#people06 .people-message .bg-white{
    margin-left: auto;
}

.other-people{
    padding-top: 0;
}
.other-people-list{
    padding: 9rem 0;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}
.other-people-list li{
    width: calc((100% - 170px)/2);
}
.other-people-list li.people-index{
    width: 150px;
}
.other-people-list li.people-index a,
.other-people-list li.people-index-sp a{
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.other-people-list li.people-index a .list-icon,
.other-people-list li.people-index a .en,
.other-people-list li.people-index-sp a .list-icon,
.other-people-list li.people-index-sp a .en{
    transition: transform 0.3s ease;
}
.other-people-list li.people-index a:hover .list-icon,
.other-people-list li.people-index a:hover .en,
.other-people-list li.people-index-sp a:hover .list-icon,
.other-people-list li.people-index-sp a:hover .en{
    transform: scale(1.1);
}
.other-people-list li.people-index a .en,
.other-people-list li.people-index-sp a .en{
    line-height: 1;
    margin-top: 5px;
}
.other-people-list li.common-btn a{
    background: var(--white);
    color: var(--text-color);
    width: 100%;
    border-radius: 5px;
}
.other-people-list li.common-btn a .arrow-btn.arrow-wrapper{
    position: absolute;
    display: inline-block;
    border-radius: 50%;
}
.other-people-list li.common-btn a .arrow-btn{
    position: relative;
    background: var(--text-color);
    width: 54px;
    height: 54px;
    bottom: 50%;
    right: 25px;
    transform: translateY(50%);
}
.other-people-list li.common-btn a .arrow-btn .arrow{
    position: absolute;
    height: 2px;
    margin: 0px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.other-people-list li.common-btn a .img{
    margin-right: 2.5rem;
    max-width: 164px;
}
.other-people-list li.common-btn a .txt{
    gap: 0.5rem;
}
.other-people-list li.common-btn a .txt div{
    transition: color 0.3s ease;
}
.other-people-list li.common-btn a:hover .txt div{
    color: var(--main-color);
}
.other-people-list li.common-btn a .arrow-btn .arrow {
    width: 24px;
}
.other-people-list li.common-btn a .arrow-btn .arrow::after {
    top: 0px;
}
.other-people-list li.common-btn a .flex-wrapper01{
    gap: 6.5rem;
}

.other-people-list li .list-icon {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    width: 37px;
}
.other-people-list li .list-icon span {
    display: block;
    position: relative;
    width: 9px;
    height: 9px;
    background: var(--main-color);
}

.other-people-list li.common-btn a .img{
    margin-right: 3rem;
    max-width: 164px;
    overflow: hidden;
}

.other-people-list li.common-btn a .img img{
    transition: transform 0.3s ease;
}

.other-people-list li.common-btn a:hover .img img{
    transform: scale(1.1);
}

.musk-effect{
    position: relative;
    overflow: hidden;
}
.musk-effect::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../image/common/effect-block02.png);
    background-repeat: repeat;
    background-position: 0 0;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: multiply;
}

/*-----------------------------------------------------------
    ハイキャリア採用
------------------------------------------------------------*/

section.high-career-top{
    padding-top: 0;
}
.high-career-top .bg{
    background: transparent linear-gradient(106deg, #135F5F 0%, #0B4040 100%) 0% 0% no-repeat padding-box;
    padding: 13rem 0;
}
.high-career-top .img-wrapper{
    margin-right: calc(50% - 50vw);
    padding-left: 8.5rem;
}
.high-career-top .img-wrapper-list{
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.high-career-top .text-wrapper .ttl{
    font-size: 8.8rem;
    white-space: nowrap;
}
.high-career-top .text-wrapper h3.txt{
    font-size: 4rem;
    border-bottom: 1px solid var(--white);
    padding-bottom: 1.5rem;
    margin-top: 2rem;
    line-height: 1;
    display: inline-block;
    white-space: nowrap;
}
.high-career-top .text-wrapper p.txt{
    font-size: 3.2rem;
    margin-top: 2rem;
    white-space: nowrap;
}
.high-career-top .img-wrapper-list li img{
    max-width: none;
    max-height: none;
    border-radius: 5px;
    width: 15vw;
}
.high-career-top .img-wrapper-list li{
    position: relative;
}
.high-career-top .img-wrapper-list li:nth-child(2){ z-index: 2; }
.high-career-top .img-wrapper-list li:nth-child(1),
.high-career-top .img-wrapper-list li:nth-child(3){ z-index: 1; }
.high-career-top .img-wrapper-list li:nth-child(1){
    transform: translateY(-5rem);  
}
.high-career-top .img-wrapper-list li:nth-child(2){
    transform: translateY(7rem);
}

.high-career-section02{
    padding-top: 0;
}
.high-career-section02 .bg-white{
    padding-top: 12rem;
}
.high-career-section02 .txt01{
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 3rem;
}
.high-career-section02 .txt02,
.high-career-section02 .txt03{
    font-size: 6rem;
    line-height: 1.3;
    margin-top: 1.5rem;
}
.high-career-section02 .txt02 span,
.high-career-section02 .txt03 span{
    font-size: 4.5rem;
    margin-left: 1rem;
}
.high-career-section02 .flex-right p{
    letter-spacing: 2px;
}
.high-career-section02 .flex-right p:not(:first-of-type){
    margin-top: 3rem;
}
.high-career-section02 .btm-img{
    padding: 0 2rem;
    margin-top: 10rem;
}

.high-career-section03 .bg{
    background: #135F5F;
    padding: 12rem 0;
}
.high-career-section03 .bg-white.high-career-personality{
    padding: 7rem 5rem 10rem;
}
.high-career-section03 .bg-white.high-career-personality .content-box{
    max-width: 620px;
    margin: 0 auto;
}
.high-career-section03 .ttl-wrapper{
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--main-color);
}
.high-career-section03 .ttl-wrapper .en{
    line-height: 1;
}
.high-career-personality-list{
    margin-top: 5.5rem;
}
.high-career-personality-list li:not(:first-of-type){
    margin-top: 5rem;
}
.high-career-personality-list li .number{
    display: inline-block;
    margin-right: 2.7rem;
    font-size: 3.1rem;
    line-height: 1;
}
.high-career-personality-list li .txt{
    display: inline-block;
    position: relative;
    top: -2px;
    font-weight: bold;
}
.high-career-position{
    margin-top: 10rem;
}
.high-career-position .ttl-wrapper{
    border-bottom: 1px solid var(--light-green-text);
    padding-bottom: 0.5rem;
}
.high-career-position-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 5rem;
}
.high-career-position-list li{
    text-align: center;
    width: 366px;
    min-height: 356px;
    border-radius: 5px;
    padding: 4rem 4rem 4.5rem;
    background: var(--white);
}
.high-career-position-list li .en{
    line-height: 1;
    position: relative;
    display: inline-block;
}

.high-career-position-list li .en::after{
    content: '';
    position: absolute;
    bottom: -5px; 
    left: 50%;
    transform: translateX(-50%);
    width: 20px; 
    height: 2px; 
    background-color: var(--main-color);
}
.high-career-position-list li .img{
    height: 116px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
}
.high-career-position-list li .txt{
    line-height: 1.3;
    font-weight: bold;
    margin-top: 3rem;
}
.high-career-position .note-txt{
    letter-spacing: 2px;
    margin-top: 5rem;
    font-weight: 300;
}

.high-career-flow{
    padding: 5.5rem;
    margin-top: 10rem;
}
.high-career-flow .ttl-wrapper{
    border-bottom: 1px solid var(--main-color);
    padding-bottom: 0.5rem;
    margin-bottom: 4rem;
}
.high-career-flow .txt{
    letter-spacing: 2px;
    font-weight: 400;
    line-height: 2;
}

.high-career-section04{
    padding-bottom: 12rem;
}
.high-career-section04 .sec-ttl .ja{
    line-height: 1.8;
    margin-top: 3rem;
}
.high-career-section04 .common-btn{
    margin-top: 4rem;
}
.high-career-section04 .common-btn a{
    background: #135F5F;
}
.high-career-section04 .common-btn a .arrow-wrapper{
    margin-left: 5rem;
}

