.people-anim {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    display: block;
}
.people-anim.active {
    display: block;
    background: #C6B662;
    animation-name: PageAnime;
	animation-duration: 1.4s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
}
@keyframes PageAnime{
	0% {
		transform-origin: right;
		transform: scaleX(0);
	}
	50% {
		transform-origin: right;
		transform: scaleX(1);
	}
	50.001% {
		transform-origin: left;
	}
	100% {
		transform-origin: left;
		transform: scaleX(0);
	}
}
main.anim, .header__wrap.anim {
    opacity: 0;
}
main.anim.active, .header__wrap.anim.active {
    opacity: 0;
    animation-name: PageAnimeAppear;
	animation-duration: 1s;
	animation-delay: 0.8s;
	animation-fill-mode: forwards;
}
@keyframes PageAnimeAppear{
	0% {
	    opacity: 0;
	}
	100% {
	    opacity: 1;
    }
}
@media screen and (max-width: 768px) {
    .people-anim.active {
        animation-duration: 1.2s;
    }
}

/* PEOPLE */
/* interview index */
.interview-ttl__exp {
    font-size: 16px;
    text-align: center;
    letter-spacing: 0.02em;
    line-height: 2;
    position: relative;
}
.interview {
    padding: 20px 0 130px;
    margin-top: 90px;
}
.interview__container {
    width: 90%;
    max-width: 1040px;
    margin: 0 auto;
}
.interview__cnt {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0 20px;
}
.interview__cnt li {
    width: 300px;
    margin-top: 90px;
}
.interview__cnt li:nth-child(1), .interview__cnt li:nth-child(2), .interview__cnt li:nth-child(3) {
    margin-top: 0;
}
.interview__cnt li a {
    display: block;
}
.interview__number {
    font-size: 20px;
    font-weight: 700;
}
.interview__img {
    width: 100%;
    height: 370px;
    margin-top: 10px;
    position: relative;
}
.interview__img img {
    width: 100%;
    height: 100%;
}
.interview__img__index {
    display: inline-block;
    color: #C6B662;
    font-size: 19px;
    background: #000000;
    padding: 10px 15px;
    position: absolute;
    top: 0;
    left: 0;
}
.interview__img__message {
    position: absolute;
    bottom: 5px;
    left: -10px;
}
.interview__img__message span {
    display: inline-block;
    color: #C6B662;
    font-size: 17px;
    background: #000000;
    padding: 5px 8px;
    margin-bottom: 5px;
}
.interview__info__name {
    font-size: 30px;
    margin-top: 10px;
}
.interview__info__name span {
    font-size: 20px;
    display: block;
}
.interview__info__list {
    margin-top: 10px;
}
.interview__info__list p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
}
@media screen and (max-width: 1044px) {
    .interview__cnt {
        justify-content: space-around;
    }
    .interview__cnt li {
        margin-top: 90px;
    }
    .interview__cnt li:nth-child(3) {
        margin-top: 90px;
    }
}
@media screen and (max-width: 768px) {
    /* interview */
    .interview-ttl__exp {
        font-size: 16px;
        text-align: left;
    }
    .interview {
        padding: 0 0 50px;
        margin-top: 70px;
    }
    .interview__cnt li {
        width: 270px;
        margin-top: 50px;
    }
    .interview__cnt li:nth-child(3) {
        margin-top: 50px;
    }
    .interview__number {
        font-size: 16px;
    }
    .interview__img {
        height: 320px;
        margin-top: 10px;
    }
    .interview__img__index {
        font-size: 16px;
        padding: 5px 10px;
    }
    .interview__img__message span {
        font-size: 15px;
    }
    .interview__info__name {
        font-size: 24px;
        margin-top: 10px;
    }
    .interview__info__name span {
        font-size: 16px;
    }
    .interview__info__list {
        margin-top: 10px;
    }
    .interview__info__list p {
        font-size: 14px;
    }
}
@media screen and (max-width: 577px) {
    .interview__cnt li:nth-child(2) {
        margin-top: 50px;
    }
}





/* interview people */
.people {
    width: 100%;
}
.people__mv {
    width: 100%;
    height: 51.25vw;
    max-height: 800px;
    background: url('../images/contents/people-mv-bg01.jpg') center center no-repeat;
    background-size: cover;
    position: relative;
}
.people__mv::before {
    content: '';
    width: 100%;
    height: 100%;
    background: url('../images/contents/people-mv-bg02.png') center center no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.people__mv__item01 {
    width: 100%;
    max-width: 1460px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}
.people__mv__item01 img {
    width: 100%;
}
.people__mv__item02__wrap {
    width: 90%;
    height: 100%;
    max-width: 1460px;
    margin: 0 auto;
    position: relative;
}
.people__mv__item02 {
    width: 17%;
    max-width: 280px;
    position: absolute;
    left: -12%;
    top: 56%;
    transform: translateY(-50%);
    z-index: 1;
}
.people__mv__item02 img {
    width: 100%;
}
.people__mv__img {
    width: 83%;
    max-width: 1200px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.people__mv__img img {
    width: 100%;
    vertical-align: bottom;
}
.people__name--sp {
    display: none;
}
@media screen and (max-width: 1600px) {
    .people__mv__item02 {
        left: -13%;
    }
}
@media screen and (max-width: 1500px) {
    .people__mv__item02 {
        left: -15%;
    }
}
@media screen and (max-width: 768px) {
    .people__mv--sp {
        width: 100%;
        background: url('../images/contents/people-mv-bg-sp.jpg') center center no-repeat;
        background-size: cover;
        margin-top: 70px;
        position: relative;
    }
    .people__mv__item--sp {
        width: 100%;
    }
    .people__mv__item--sp img {
        width: 100%;
    }
    .people__mv__txt--sp {
        width: 73.4%;
        max-width: 550px;
        position: absolute;
        top: 8%;
        left: 50%;
        transform: translateX(-50%);
    }
    .people__mv__txt--sp img {
        width: 100%;
    }
    .people__mv__img--sp {
        height: 77.38vw;
        position: absolute;
        bottom: 0;
        left: 45%;
        transform: translateX(-50%);
    }
    .people__mv__img--sp img {
        height: 100%;
        vertical-align: bottom;
    }
    .people__mv__name--sp {
        width: 68%;
        max-width: 510px;
        position: absolute;
        bottom: 25px;
        right: 25px;
    }
    .people__mv__name--sp img {
        width: 100%;
        vertical-align: bottom;
    }
    .people__name--sp {
        display: block;
        width: 100%;
        background: #FFF;
        padding: 50px 0 20px;
    }
    .people__name--sp__container {
        width: 90%;
        max-width: 500px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }
    .people__name--sp__img {
        width: 100px;
        margin-right: 20px;
    }
    .people__name--sp__img img {
        width: 100%;
    }
    .people__name--sp__txt {
        width: calc(100% - 120px);
        max-width: 230px;
    }
    .people__name--sp__txt h2 {
        font-size: 34px;
        font-weight: 600;
    }
    .people__name--sp__txt h2 span {
        display: block;
        font-size: 20px;
        margin-bottom: 5px;
    }
    .people__name--sp__txt ul {
        margin-top: 20px;
    }
    .people__name--sp__txt ul li {
        font-size: 16px;
        letter-spacing: 0.05em;
        line-height: 2;
    }
}
/* profile */
.people__profile {
    width: 100%;
    padding: 50px 0;
}
.people__profile__container {
    width: 90%;
    max-width: 640px;
    margin: 0 auto;
}
.people__profile__container h2 {
    display: inline-block;
    font-size: 15px;
    letter-spacing: 0.08em;
    background: #ECE7D3;
    padding: 10px 15px;
}
.people__profile__container p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 2;
    margin-top: 20px;
}
@media screen and (max-width: 768px) {
    .people__profile {
        padding: 30px 0;
    }
}
/* before */
.people__before {
    width: 100%;
    padding: 50px 0;
}
.people__before__container {
    width: 100%;
    max-width: 1200px;
    padding-left: 100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
}
.people__before__ttl {
    width: 20%;
    margin-top: 20px;
}
.people__before__ttl img {
    width: 100%;
}
.people__before__txt {
    width: 45%;
}
.people__before__txt strong span {
    display: inline-block;
    color: #C6B662;
    font-size: 22px;
    letter-spacing: 0.04em;
    background: #000;
    padding: 5px 5px 5px 10px;
    margin-top: 10px;
}
.people__before__txt strong span:first-child {
    margin-top: 0;
}
.people__before__txt p {
    font-size: 16px;
    letter-spacing: 0.08em;
    line-height: 2;
    margin-top: 30px;
}
.people__before__img {
    width: 26%;
    height: 280px;
    margin-top: 40px;
}
.people__before__img img {
    width: 100%;
    height: 100%;
}
.people__before__item01 {
    width: 400px;
    position: absolute;
    top: -45px;
    left: -250px;
    z-index: -1;
}
.people__before__item01 img {
    width: 100%;
}
.people__before__item02 {
    width: 420px;
    position: absolute;
    top: -120px;
    right: -370px;
    z-index: -1;
}
.people__before__item02 img {
    width: 100%;
}
@media screen and (max-width: 768px) {
    .people__before {
        padding: 30px 0;
    }
    .people__before__container {
        padding: 0 5%;
        flex-wrap: wrap;
    }
    .people__before__ttl {
        width: 100%;
        max-width: 420px;
        margin: 20px auto 0;
    }
    .people__before__txt {
        width: 100%;
        margin-top: 30px;
    }
    .people__before__txt strong span {
        font-size: 18px;
    }
    .people__before__txt p {
        margin-top: 20px;
    }
    .people__before__img {
        width: 100%;
        height: 250px;
        margin-top: 30px;
    }
    .people__before__img img {
        object-position: 50% 20%;
    }
    .people__before__item01 {
        width: 120px;
        top: 120px;
        left: 0;
    }
    .people__before__item02 {
        width: 300px;
        top: 200px;
        right: -280px;
    }
    .people__before__item02 img {
        width: 100%;
    }
}
/* middle */
.people__middle {
    width: 100%;
}
.people__middle__container {
    width: 100%;
    padding-top: 50px;
    margin: 0 auto;
}
.people__middle__ttl__wrap {
    width: 100%;
    max-width: 930px;
    margin: 0 auto;
}
.people__middle__ttl {
    width: 95%;
    max-width: 685px;
    padding-right: 5%;
    margin: 0 0 0 auto;
}
.people__middle__ttl img {
    width: 100%;
}
.people__middle__txt__wrap {
    width: 100%;
    background: linear-gradient(#FFF 0%, #FFF 5%, #ECE7D3 5%, #ECE7D3 100%);
    padding-bottom: 40px;
    margin-top: 50px;
}
.people__middle__txt {
    width: 90%;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
}
.people__middle__txt strong span {
    display: inline-block;
    color: #C6B662;
    font-size: 22px;
    letter-spacing: 0.04em;
    background: #000;
    padding: 5px 5px 5px 10px;
    margin-top: 10px;
}
.people__middle__txt strong span:first-child {
    margin-top: 0;
}
.people__middle__txt p {
    font-size: 16px;
    letter-spacing: 0.08em;
    line-height: 2;
    margin-top: 30px;
}
.people__middle__txt--add {
    color: #838383;
}
.people__middle__img__wrap {
    width: 100%;
    background: linear-gradient(#ECE7D3 0%, #ECE7D3 60%, #FFF 60%, #FFF 100%);
}
.people__middle__img {
    width: 90%;
    max-width: 700px;
    height: 350px;
    margin: 0 auto;
    position: relative;
}
.people__middle__img img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}
.people__middle__item01 {
    width: 630px;
    position: absolute;
    top: 20px;
    left: -750px;
}
.people__middle__item01 img {
    width: 100%;
    position: relative;
}
.people__middle__item02 {
    width: 600px;
    position: absolute;
    top: -100px;
    right: -650px;
}
.people__middle__item02 img {
    width: 100%;
}
.people__middle__item03 {
    width: 600px;
    position: absolute;
    top: -80px;
    right: -410px;
    z-index: 1;
}
.people__middle__item03 img {
    width: 100%;
}
@media screen and (max-width: 768px) {
    .people__middle__container {
        padding-top: 30px;
    }
    .people__middle__ttl {
        width: 90%;
        max-width: 480px;
        padding-right: 0;
        margin: 0 auto;
    }
    .people__middle__txt__wrap {
        padding-bottom: 30px;
        margin-top: 30px;
    }
    .people__middle__txt strong {
        position: relative;
        z-index: 2;
    }
    .people__middle__txt strong span {
        font-size: 18px;
    }
    .people__middle__txt p {
        margin-top: 20px;
    }
    .people__middle__img {
        height: 250px;
    }
    .people__middle__item01 {
        width: 300px;
        top: 20px;
        left: -350px;
    }
    .people__middle__item02 {
        width: 150px;
        top: -40px;
        right: -80px;
    }
    .people__middle__item03 {
        width: 300px;
        top: -50px;
        right: -200px;
    }
}
/* after */
.people__after {
    width: 100%;
    padding: 30px 0 190px;
}
.people__after__container {
    width: 90%;
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    position: relative;
}
.people__after__ttl {
    width: 10.7%;
    min-width: 90px;
}
.people__after__ttl img {
    width: 100%;
}
.people__after__txt {
    width: 45%;
    margin-top: 120px;
}
.people__after__txt strong span {
    display: inline-block;
    color: #C6B662;
    font-size: 22px;
    letter-spacing: 0.04em;
    background: #000;
    padding: 5px 5px 5px 10px;
    margin-top: 10px;
}
.people__after__txt strong span:first-child {
    margin-top: 0;
}
.people__after__txt p {
    font-size: 16px;
    letter-spacing: 0.08em;
    line-height: 2;
    margin-top: 30px;
}
.people__after__img {
    width: 38%;
    height: 440px;
    margin-top: 120px;
}
.people__after__img img {
    width: 100%;
    height: 100%;
}
.people__after__item01 {
    width: 590px;
    position: absolute;
    bottom: -630px;
    left: -340px;
}
.people__after__item01 img {
    width: 100%;
}
@media screen and (max-width: 768px) {
    .people__after {
        padding-bottom: 100px;
        margin-top: 50px;
    }
    .people__after__container {
        flex-direction: row;
    }
    .people__after__ttl {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .people__after__txt {
        width: 100%;
        margin-top: 30px;
    }
    .people__after__txt strong span {
        font-size: 18px;
    }
    .people__after__txt p {
        margin-top: 20px;
    }
    .people__after__img {
        width: 100%;
        height: 300px;
        margin-top: 30px;
    }
    .people__after__img img {
        object-position: 50% 10%;
    }
    .people__after__item01 {
        width: 300px;
        bottom: -300px;
        left: -230px;
    }
}
/* faq */
.people__faq {
    width: 100%;
    background: url('../images/contents/people-faq-bg.jpg') center center no-repeat;
    background-size: cover;
    padding: 30px 0 60px;
}
.people__faq__ttl {
    width: 90%;
    font-size: 26px;
    text-align: center;
    letter-spacing: 0.12em;
    margin: 0 auto;
}
.people__faq__ttl span {
    font-size: 20px;
}
.people__faq__container {
    width: 90%;
    max-width: 1050px;
    margin: 40px auto 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: stretch;
}
.people__faq__container li {
    width: 48%;
    background: url('../images/contents/people-faq-cnt-bg.jpg') center center no-repeat;
    background-size: cover;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}
.people__faq__container li:nth-child(1), .people__faq__container li:nth-child(2) {
    margin-top: 0;
}
.people__faq__container li h3 {
    width: 100%;
    font-size: 20px;
    letter-spacing: -0.06em;
    text-align: center;
    background: #C6B662;
    padding: 10px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.people__faq__txt {
    width: 100%;
    min-height: 140px;
    position: relative;
}
.people__faq__txt p {
    width: 90%;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.people__faq__txt p img {
    width: 100%;
}
.people__faq__txt01 p {
    max-width: 220px;
}
.people__faq__txt02 p {
    max-width: 405px;
}
.people__faq__txt03 p {
    max-width: 290px;
}
.people__faq__txt04 p {
    max-width: 175px;
}
.people__faq__txt05 p {
    max-width: 255px;
}
.people__faq__txt06 p {
    max-width: 195px;
}
.people__faq__txt07 p {
    max-width: 375px;
}
.people__faq__txt08 p {
    max-width: 270px;
}
.people__faq__txt09 p {
    max-width: 49px;
}
.people__faq__txt10 p {
    max-width: 276px;
}
.people__faq__txt11 p {
    max-width: 234px;
}
.people__faq__txt12 p {
    max-width: 87px;
}
.people__faq__txt13 p {
    max-width: 324px;
}
.people__faq__txt14 p {
    max-width: 305px;
}
.people__faq__txt15 p {
    max-width: 340px;
}
.people__faq__txt16 p {
    max-width: 365px;
}
.people__faq__txt17 p {
    max-width: 271px;
}
.people__faq__txt18 p {
    max-width: 383px;
}
.people__faq__txt19 p {
    max-width: 320px;
}
.people__faq__txt20 p {
    max-width: 72px;
}
.people__faq__txt21 p {
    max-width: 55px;
}
.people__faq__txt22 p {
    max-width: 337px;
}
.people__faq__txt23 p {
    max-width: 108px;
}
.people__faq__txt24 p {
    max-width: 39px;
}
.people__faq__txt25 p {
    max-width: 335px;
}
.people__faq__txt26 p {
    max-width: 40px;
}
.people__faq__txt27 p {
    max-width: 42px;
}
.people__faq__txt28 p {
    max-width: 395px;
}
.people__faq__txt29 p {
    max-width: 362px;
}
.people__faq__txt30 p {
    max-width: 312px;
}
.people__faq__txt31 p {
    max-width: 356px;
}
.people__faq__txt32 p {
    max-width: 420px;
}
.people__faq__txt33 p {
    max-width: 274px;
}
.people__faq__txt34 p {
    max-width: 315px;
}
.people__faq__txt35 p {
    max-width: 236px;
}
.people__faq__txt36 p {
    max-width: 340px;
}
.people__faq__txt37 p {
    max-width: 115px;
}
.people__faq__txt38 p {
    max-width: 290px;
}
.people__faq__txt39 p {
    max-width: 176px;
}
.people__faq__txt40 p {
    max-width: 257px;
}
@media screen and (max-width: 768px) {
    .people__faq {
        padding: 50px 0;
    }
    .people__faq__ttl {
        min-width: 266px;
        font-size: 22px;
    }
    .people__faq__ttl span {
        font-size: 16px;
    }
    .people__faq__container {
        margin: 0 auto;
    }
    .people__faq__container li {
        width: 100%;
    }
    .people__faq__container li:nth-child(1), .people__faq__container li:nth-child(2) {
        margin-top: 30px;
    }
    .people__faq__container li h3 {
        font-size: 18px;
    }
}
/* people link */
.people__link {
    width: 100%;
    padding: 80px 0;
}
.people__link__container {
    width: 100%;
}
.people__link__ttl {
    width: 90%;
    max-width: 940px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.people__link__ttl__item {
    width: calc((100% - 290px) / 2);
}
.people__link__ttl__item span {
    display: block;
    width: 100%;
    height: 1px;
    background: #C6B662;
    margin-bottom: 9px;
    position: relative;
}
.people__link__ttl__item span:last-child {
    margin-bottom: 0;
}
.people__link__ttl h2 {
    font-size: 32px;
    letter-spacing: 0.02em;
    text-align: center;
}
.people__link__cnt {
    max-width: 1100px;
    margin: 30px auto 0;
    position: relative;
}
/* ▼ slider ▼ */
.slider {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
.slick-track {
    display: flex !important;
    align-items: center !important;
}
.slick-active:nth-child(2) {
    margin-left: auto;
}
.slider-item a {
    display: block;
    width: 61%;
    max-width: 335px;
    margin: 0 auto;
}
.slider-item__img {
    width: 30.45vw;
    max-width: 335px;
    margin: 0 auto;
}
.slider-item__img img {
    width: 100%;
}
.slider-item__index {
    text-align: center;
    margin-top: 10px;
}
.slider-item__index--job {
    font-size: 20px;
    letter-spacing: -0.06em;
}
.slider-item__index--name {
    font-size: 30px;
    letter-spacing: -0.06em;
}
.slider-item__detail {
    margin-top: 15px;
}
.slider-item__detail li {
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    line-height: 2;
}
.slick-prev, .slick-next {
    width: 35px !important;
    height: 35px !important;
    top: 32% !important;
    z-index: 2;
    transition: all 0.3s ease;
}
.slick-prev:hover, .slick-next:hover {
    opacity: 0.7;
    transition: all 0.3s ease;
}
.slick-prev {
    background: url('../images/contents/people-another-arrow01.png') center center no-repeat !important;
    background-size: cover !important;
    left: 10px !important;
}
.slick-next {
    background: url('../images/contents/people-another-arrow02.png') center center no-repeat !important;
    background-size: cover !important;
    right: 10px !important;
}
.slick-prev::before, .slick-next::before {
    display: none !important;
}
/* ▲ slider ▲ */
.people__link__btn {
    display: block;
    width: 16.36%;
    aspect-ratio: 1/1;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}
.people__link__btn:hover {
    opacity: 0.7;
    transition: all 0.3s ease;
}
.people__link__btn img {
    width: 100%;
}
@media screen and (max-width: 768px) {
    .people__link {
        padding: 50px 0;
    }
    .people__link__ttl__item {
        width: calc((100% - 200px) / 2);
    }
    .people__link__ttl h2 {
        font-size: 24px;
    }
    /* ▼ slider ▼ */
    .slider {
        max-width: 500px;
    }
    .slick-active:nth-child(2) {
        margin-left: 0;
    }
    .slider-item.pc {
        display: none !important;
    }
    .slider-item.sp {
        display: block !important;
    }
    .slider-item a {
        display: block;
        width: 61%;
        max-width: 335px;
        margin: 0 auto;
    }
    .slider-item__img {
        width: 100%;
        margin: 0 auto;
    }
    .slider-item__index--job {
        font-size: 16px;
    }
    .slider-item__index--name {
        font-size: 26px;
    }
    .slider-item__detail li {
        font-size: 14px;
    }
    .slick-prev:hover, .slick-next:hover {
        opacity: 1;
    }
    /* ▲ slider ▲ */
    .people__link__btn {
        width: 120px;
        position: static;
        margin: 30px auto;
        transform: translate(0, 0);
    }
    .people__link__btn:hover {
        opacity: 1;
    }
}





/* GLOBALREPORT */
.globalreport-ttl__exp {
    text-align: center;
    line-height: 2;
}
.globalreport {
    width: 100%;
}
.globalreport__container {
    width: 90%;
    max-width: 920px;
    margin: 120px auto 100px;
}
.globalreport__cnt {
    width: 100%;
    margin-top: 85px;
    display: flex;
    justify-content: space-between;
}
.globalreport__cnt:first-child {
    margin-top: 0;
}
.globalreport__img {
    width: 55%;
    overflow: hidden;
}
.globalreport__img img {
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
}
.globalreport__cnt:hover .globalreport__img img {
    transform: scale(1.1, 1.1);
    transition: all 0.5s ease;
}
.globalreport__exp {
    width: 44%;
    background: #ECE7D3;
    padding: 30px 40px 20px 20px;
    position: relative;
}
.globalreport__exp::before {
    content: '';
    width: 13px;
    height: 195px;
    background: url('../images/contents/globalreport-item01.png') center center no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}
.globalreport__exp__txt {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.globalreport__exp__txt__inner {
    width: 70%;
}
.globalreport__exp__ttl {
    width: 100%;
}
.globalreport__exp__ttl h3 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
}
.globalreport__exp__ttl h3 span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    font-family: noto-sans-cjk-jp, sans-serif;
    font-style: normal;
    margin-top: 5px;
}
.globalreport__exp__ttl p {
    font-size: 15px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    letter-spacing: 0.05em;
    margin-top: 10px;
}
.globalreport__exp__ttl p.space {
    letter-spacing: -0.02em;
}
.globalreport__name {
    margin-top: 20px;
}
.globalreport__name p {
    font-size: 20px;
    font-weight: 600;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.globalreport__name p span {
    display: block;
    color: #C7B561;
    font-size: 14px;
    letter-spacing: 0.04em;
}
.globalreport__btn {
    display: block;
    width: 100%;
    color: #FFF;
    font-size: 16px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 600;
    background: #262626;
    padding: 3px 10px;
    margin-top: 10px;
    position: relative;
    transition: all 0.5s ease;
}
.globalreport__cnt:hover .globalreport__btn {
    background: #6d6d6d;
    transition: all 0.5s ease;
}
.globalreport__btn span {
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background: #C6B662;
    position: absolute;
    top: 50%;
    right: 7px;
    transform: translateY(-50%);
}
.globalreport__btn span::before {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 1px solid #FFF;
    border-right: 1px solid #FFF;
    position: absolute;
    top: 60%;
    left: 20%;
    transform: rotate(45deg) translate(-50%, -50%);
}
.globalreport__exp__num {
    color: #C7B561;
    font-size: 58px;
    font-weight: 700;
    position: absolute;
    top: -45px;
    right: 40px;
}
.globalreport__exp__img {
    width: 25%;
    margin-top: 70px;
}
.globalreport__exp__img img {
    width: 100%;
    border-radius: 100%;
}
@media screen and (max-width: 768px) {
    .globalreport-ttl__exp {
        text-align: left;
    }
    .globalreport__container {
        margin: 100px auto 50px;
    }
    .globalreport__cnt {
        margin-top: 50px;
        flex-wrap: wrap;
    }
    .globalreport__img {
        width: 100%;
        height: 250px;
    }
    .globalreport__cnt:hover .globalreport__img img {
        transform: scale(1, 1);
    }
    .globalreport__exp {
        width: 100%;
        padding: 20px 40px 20px 20px;
    }
    .globalreport__exp__txt {
        flex-wrap: wrap;
    }
    .globalreport__exp__txt__inner {
        width: calc(100% - 90px);
    }
    .globalreport__exp__ttl h3 {
        font-size: 24px;
    }
    .globalreport__exp__ttl h3 span {
        font-size: 14px;
    }
    .globalreport__exp__ttl p {
        font-size: 13px;
        margin-top: 10px;
    }
    .globalreport__name p {
        font-size: 18px;
    }
    .globalreport__name p span {
        font-size: 12px;
    }
    .globalreport__btn {
        font-size: 16px;
    }
    .globalreport__cnt:hover .globalreport__btn {
        background: #262626;
    }
    .globalreport__exp__num {
        font-size: 50px;
        top: -40px;
        right: 40px;
    }
    .globalreport__exp__img {
        width: 80px;
        margin-top: 60px;
    }
}




/* globalreport detail */
.page-ttl__globalreport__img {
    width: 75px;
    margin: 0 auto;
}
.page-ttl__globalreport__img img {
    width: 100%;
}
.page-ttl-globalreport-detail {
    max-width: 250px;
    font-size: 30px;
    font-family: 'Roboto Slab', serif;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-align: center;
    margin: 20px auto 0;
    position: relative;
}
.page-ttl-globalreport-detail::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #C7B561;
    border-radius: 100%;
    position: absolute;
    top: 15px;
    left: 0;
}
.page-ttl-globalreport-detail::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #C7B561;
    border-radius: 100%;
    position: absolute;
    top: 15px;
    right: 0;
}
.page-ttl-globalreport-detail span {
    display: block;
    font-size: 18px;
    font-family: noto-sans-cjk-jp, sans-serif;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.18em;
}
/* cnt */
.globalreport__detail__person {
    width: 100%;
    background: #FFF;
    padding: 160px 0 65px;
}
.globalreport__detail__person__inner {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.globalreport__detail__img {
    width: 200px;
    border-radius: 100%;
    aspect-ratio: 1/1;
    vertical-align: bottom;
}
.globalreport__detail__img img {
    width: 100%;
    border-radius: 100%;
    border: 1px solid #C6B662;
}
.globalreport__detail__txt {
    width: calc(100% - 250px);
}
.globalreport__detail__txt__info {
    border-bottom: 1px solid #303030;
    padding-bottom: 20px;
}
.globalreport__detail__txt__info h3 {
    font-size: 26px;
}
.globalreport__detail__txt__info h3 span {
    color: #C6B662;
    font-size: 20px;
    letter-spacing: 0.04em;
    margin-left: 25px;
}
.globalreport__detail__txt__info dl {
    display: flex;
    margin-top: 10px;
}
.globalreport__detail__txt__info dl dt, .globalreport__detail__txt__info dl dd {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.02em;
}
.globalreport__detail__txt__info dl dt {
    width: 50px;
}
.globalreport__detail__txt__info dl dd {
    width: calc(100% - 50px);
}
.globalreport__detail__txt__info p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-top: 5px;
}
.globalreport__detail__txt__history {
    margin-top: 20px;
}
.globalreport__detail__txt__history li {
    line-height: 2;
    display: flex;
    margin-bottom: 5px;
}
.globalreport__detail__txt__history--year {
    width: 110px;
    font-size: 16px;
    letter-spacing: 0.08em;
}
.globalreport__detail__txt__history--txt {
    width: calc(100% - 80px);
    font-size: 16px;
    letter-spacing: 0.08em;
    text-indent: -1.4rem;
    padding-left: 1rem;
}
.globalreport__detail__txt__history--txt b {
    color: #C6B662;
}
/* exp01 */
.globalreport__detail__exp01 {
    width: 100%;
    background: #ECE7D3;
    padding: 80px 0;
}
.globalreport__detail__exp01__inner {
    width: 90%;
    max-width: 1040px;
    margin: 0 auto;
}
.globalreport__detail__exp01__block {
    width: 100%;
    margin-top: 75px;
    display: flex;
    justify-content: space-between;
}
.globalreport__detail__exp01__block:first-child {
    margin-top: 0;
}
.globalreport__detail__exp01__img {
    width: 47%;
    height: 340px;
}
.globalreport__detail__exp01__img01 img {
    object-position: 50% 50%;
}
.globalreport__detail__exp01__img02 img {
    object-position: 50% 100%;
}
.globalreport__detail__exp01__img03 img {
    object-position: 30% 50%;
}
.globalreport__detail__exp01__img04 img {
    object-position: 50% 50%;
}
.globalreport__detail__exp01__img05 img {
    object-position: 50% 50%;
}
.globalreport__detail__exp01__img06 img {
    object-position: 50% 50%;
}
.globalreport__detail__exp01__img04 img {
    max-width: 290px;
    display: block;
    margin: 0 auto;
}
.globalreport__detail__exp01__img img {
    width: 100%;
    height: 100%;
}
.globalreport__detail__exp01__txt {
    width: 46%;
}
.globalreport__detail__exp01__txt h3 {
    display: inline-block;
    color: #C6B662;
    font-size: 22px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 600;
    letter-spacing: 0.04em;
    background: #000;
    padding: 5px 10px;
}
.globalreport__detail__exp01__txt p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
    margin-top: 30px;
}
/* exp02 */
.globalreport__detail__exp02 {
    width: 100%;
    padding: 100px 0 140px;
}
.globalreport__detail__exp02__inner {
    width: 90%;
    max-width: 1040px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.globalreport__detail__exp02__block {
    width: 45%;
}
.globalreport__detail__exp02__block h3 {
    display: inline-block;
    color: #C6B662;
    font-size: 22px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 600;
    letter-spacing: 0.04em;
    background: #000;
    padding: 5px 10px;
}
.globalreport__detail__exp02__block p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
    margin-top: 30px;
}
/* holiday */
.globalreport__detail__holiday {
    width: 100%;
}
.globalreport__detail__holiday__block {
    width: 90%;
    max-width: 1040px;
    background: url('../images/contents/globalreport-detail-holiday-bg.jpg') center center no-repeat;
    background-size: cover;
    padding: 40px 0;
    margin: 0 auto;
}
.globalreport__detail__holiday__block h3 {
    width: 90%;
    font-size: 20px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.12em;
    margin: 0 auto;
}
.globalreport__detail__holiday__block h3 b {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.12em;
}
.globalreport__detail__holiday__cnt {
    width: 90%;
    max-width: 840px;
    margin: 30px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.globalreport__detail__holiday__cnt__img {
    width: 45%;
    height: 230px;
}
.globalreport__detail__holiday__cnt__img img {
    width: 100%;
    height: 100%;
}
.globalreport__detail__holiday__cnt__txt {
    width: 49%;
}
.globalreport__detail__holiday__cnt__txt p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 2;
}
/* slider */
.slider-item02 a {
    width: 28vw;
    max-width: 320px;
}
.slider-item__img02 {
    width: 28vw;
    max-width: 320px;
}
.slider-item__img02 img {
    width: 100%;
}
.slider-item__txt02 {
    font-size: 28px;
    letter-spacing: 0.05em;
    margin-top: 5px;
}
.slider-item__txt02 span {
    display: block;
    font-size: 16px;
    font-family: noto-sans-cjk-jp, sans-serif;
    font-style: normal;
}
.people__link__btn02 {
    top: 40%;
}

@media screen and (max-width: 768px) {
    .page-ttl__globalreport__img {
        width: 60px;
    }
    .page-ttl-globalreport-detail {
        max-width: 200px;
        font-size: 24px;
        margin: 15px auto 0;
    }
    .page-ttl-globalreport-detail::before {
        top: 12px;
    }
    .page-ttl-globalreport-detail::after {
        top: 12px;
    }
    .page-ttl-globalreport-detail span {
        font-size: 14px;
    }
    /* cnt */
    .globalreport__detail__person {
        padding: 60px 0;
    }
    .globalreport__detail__person__inner {
        flex-wrap: wrap;
    }
    .globalreport__detail__txt {
        width: 100%;
        margin-top: 20px;
    }
    .globalreport__detail__img {
        width: 150px;
        margin: 0 auto;
    }
    .globalreport__detail__txt__info h3 {
        font-size: 24px;
    }
    .globalreport__detail__txt__info h3 span {
        display: block;
        font-size: 18px;
        margin-left: 0;
    }
    /* exp01 */
    .globalreport__detail__exp01 {
        padding: 50px 0;
    }
    .globalreport__detail__exp01__block {
        margin-top: 50px;
        flex-wrap: wrap;
    }
    .globalreport__detail__exp01__img {
        width: 100%;
        height: auto;
    }
    .globalreport__detail__exp01__img01 img {
        object-position: 0% 60%;
    }
    .globalreport__detail__exp01__img02 img {
        object-position: 50% 100%;
    }
    .globalreport__detail__exp01__img03 img {
        object-position: 30% 20%;
    }
    .globalreport__detail__exp01__img04 {
        height: 300px;
    }
    .globalreport__detail__exp01__img04 img {
        object-position: 50% 0%;
    }
    .globalreport__detail__exp01__img05 img {
        object-position: 50% 20%;
    }
    .globalreport__detail__exp01__img06 img {
        object-position: 50% 20%;
    }
    .globalreport__detail__exp01__txt {
        width: 100%;
    }
    .globalreport__detail__exp01__txt h3 {
        font-size: 20px;
        margin-top: 30px;
    }
    .globalreport__detail__exp01__txt p {
        margin-top: 20px;
    }
    /* exp02 */
    .globalreport__detail__exp02 {
        padding: 50px 0;
    }
    .globalreport__detail__exp02__inner {
        flex-wrap: wrap;
    }
    .globalreport__detail__exp02__block {
        width: 100%;
        margin-top: 50px;
    }
    .globalreport__detail__exp02__block:first-child {
        margin-top: 0;
    }
    .globalreport__detail__exp02__block h3 {
        font-size: 20px;
    }
    .globalreport__detail__exp02__block p {
        margin-top: 20px;
    }
    /* holiday */
    .globalreport__detail__holiday__block h3 {
        font-size: 16px;
    }
    .globalreport__detail__holiday__block h3 b {
        font-size: 20px;
    }
    .globalreport__detail__holiday__cnt {
        flex-wrap: wrap;
    }
    .globalreport__detail__holiday__cnt__img {
        width: 100%;
        height: 230px;
    }
    .globalreport__detail__holiday__cnt__img img {
        object-position: 50% 30%;
    }
    .globalreport__detail__holiday__cnt__txt {
        width: 100%;
        margin-top: 20px;
    }
    /* slider */
    .slider-item02 a {
        width: 65vw;
    }
    .slider-item__img02 {
        width: 65vw;
    }
    .slider-item__txt02 {
        font-size: 24px;
    }
    .slider-item__txt02 span {
        font-size: 14px;
    }
}