@charset "utf-8";

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    border: 0;
    outline: 0;
}
header,
footer,
article,
section,
aside,
hgroup,
nav,
menu,
figure,
figcaption,
time {
    display: block;
}
li {
    list-style: none;
}
ol li {
    list-style: decimal;
}
img {
    width: 100%;
    max-width: 100%;
    height: auto;
    font-size: 0;
    line-height: 0;
    vertical-align: top;
    border: 0;
}
table {
    border-spacing: 0;
    border-collapse: collapse;
}
caption,
th {
    text-align: left;
}
hr {
    display: block;
    height: 1px;
    margin: 1em 0;
    padding: 0;

    border: 0;
    border-top: 1px solid #ccc;
}
input,
select {
    vertical-align: middle;
}
input,
textarea {
    margin: 0;
    padding: 0;
}
/*----------------------------------------
	Common
----------------------------------------*/
html {
    width: 100%;
    font-size: 62.5%;
}
body {
    font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Meiryo","Osaka","ＭＳ Ｐゴシック", "MS P Gothic",Verdana,Arial, Helvetica, sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #3C3C3C;
    position:relative;
    z-index: 0;
    line-height: 1.875;
    letter-spacing: .03em;
    -webkit-font-feature-settings: "palt" 1;
    font-feature-settings: "palt" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
    height: 100%;
}
a {
    color: #1b2734;
    outline: none;
    overflow: hidden;
    text-decoration: underline;
}
a:hover {
    color: #1b2734;
    text-decoration: none;
}
a[href^="tel:"] {
	cursor: default;
}
.show-mobile-inline,
.show-mobile {
    display: none;
}
.hide-mobile {
    display: block;
}
.hide-mobile-inline {
	display: inline-block;
}
.br-mobile {
    display: none !important;
}
@media (min-width: 768px) and (max-width: 999px){

}
@media only screen and (max-width: 767px) {
	.show-mobile {
		display: block;
	}
	.show-mobile-inline {
		display: inline-block;
	}
	.hide-mobile {
		display: none;
	}
	.hide-mobile-inline {
		display: none;
	}
    .br-mobile {
        display: block !important;
    }
    main {
        overflow-x: hidden;
    }
}
@media only screen and (max-width: 999px) {
    body {
    }
}
@media only screen and (max-width: 767px) {
    body {
        font-size: 1.4rem;
    }
}
/*----------------------------------------
	Animation
----------------------------------------*/
.animate.delay1 {
    transition-delay: .1s;
}
.animate.delay2 {
    transition-delay: .2s;
}
.animate.delay3 {
    transition-delay: .3s;
}
.animate.delay4 {
    transition-delay: .4s;
}
.animate.delay5 {
    transition-delay: .5s;
}
.animate.delay6 {
    transition-delay: .6s;
}
.animate.delay7 {
    transition-delay: .7s;
}
.animate.delay8 {
    transition-delay: .8s;
}
.animate.delay9 {
    transition-delay: .9s;
}
.animate.delay10 {
    transition-delay: 1s;
}
.fadeIn {
    transition: opacity 1s .1s;
    transition: transform 1s cubic-bezier(.4, 0, .2, 1) .1s, opacity 1s .1s;
    opacity: 0;
}
.fadeIn.inview {
    opacity: 1;
}
.fadeUpIn {
    transition: opacity 1s .1s;
    transition: transform 1s cubic-bezier(.4, 0, .2, 1) .1s, opacity 1s .1s;
    transform: translateY(30px);
    opacity: 0;
}
.fadeUpIn.inview {
    transform: translateY(0);
    opacity: 1;
}
.blurIn {
    animation-name: blurInAnime;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    opacity: 0;
}
@keyframes blurInAnime {
    0% {
        filter:blur(15px);
        transform:scale(1.02);
        opacity:0
    }
    100% {
        filter:blur(0);
        transform:scale(1);
        opacity:1
    }
}
.maskIn {
    color: transparent;
    /* display: inline-block; */
    max-width: fit-content;
    overflow: hidden;
    position: relative;
    transition: color 0ms 450ms;
}
.maskIn::after {
    background: #000;
    bottom: 0;
    content: '';
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(-101%, 0)
}
.maskIn.inview {
    color: inherit;
}
.maskIn.inview::after {
    animation: maskIn 1.2s cubic-bezier(0.8, 0, 0.170, 1);
}
@keyframes maskIn {
    0% {
        transform: translate(-101%, 0)
    }
    40%, 60% {
        transform: translate(0, 0)
    }
    100% {
        transform: translate(101%, 0)
    }
}
@keyframes blink {
    0% {
        opacity:0;
    }
    100% {
        opacity:1;
    }
}
.rotateX.inview {
	animation-name: rotateX;
	animation-duration: 1s;
	animation-fill-mode:forwards;
}
@keyframes rotateX {
	from{
		transform: rotateX(0);
		}
	to{
	    transform: rotateX(-360deg);
	}
}
.zoomIn {
    transform: scale(0.6);
	opacity: 0;
}
.zoomIn.inview {
	animation-name: zoomInAnime;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
}
@keyframes zoomInAnime{
  from {
	transform: scale(0.6);
	opacity: 0;
  }

  to {
    transform: scale(1);
	opacity: 1;
  }
}
/*----------------------------------------
	Misc
----------------------------------------*/
.inner {
    width: 91.667vw;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}
.full-width {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.t-blue {
    color: #01b2de;
}
.f-bold {
    font-weight: bold;
}
@media only screen and (max-width: 767px) {
    .inner {
        width: 86.666vw;
    }
}
/*----------------------------------------
	Components
----------------------------------------*/
.c-bread-crumb {
    font-family: 'Barlow', sans-serif;
    font-size: 1.2rem;
    width: 94%;
    margin-right: auto;
    margin-left: auto;
    padding: 2rem 0;
}
.c-bread-crumb ul {
    display: flex;
    /* overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none; */
}
.c-bread-crumb ul li {
    position: relative;
    flex: 0 0 auto;
    list-style: none;
}
.c-bread-crumb ul li:not(:first-child):before {
    position: absolute;
    top: 50%;
    display: block;
    content: '>';
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.c-bread-crumb ul li a {
    padding-right: 12px;
    padding-left: 12px;
}
.c-bread-crumb ul li:first-of-type a {
    padding-left: 6px;
}
.c-bread-crumb ul li:last-child span {
    padding-left: 12px;
}
.c-article-header {
    text-align: center;
    padding: 10rem 0;
}
.c-article-header  h1 {
    display: flex;
    flex-direction: column;
    line-height: 1;
    color: #0F266B;
}
.c-article-header  h1 .en {
    font-family: 'Jost', sans-serif;
    font-size: 4.2rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
}
.c-article-header  h1 .jp {
    font-size: 1.4rem;
    font-weight: 400;
}
.c-article-body {
    max-width: 100rem;
}
.c-input-text {
    width: 100%;
    padding: 1.4rem;
    border: 1px solid #b3b3b3;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-size: 1.6rem;
}
.c-select {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    text-indent: 4px;
    background: #EEE no-repeat;
    height: 4.4rem;
    vertical-align: middle;
    border: 1px solid #CCC;
    font-size: 1.6rem;
}
.c-input-textarea {
    width: 100%;
    padding: 8px 5px;
    border: 1px solid #b3b3b3;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-size: 1.6rem;
    height: 15rem;
}
.c-button {
    font-weight: 700;
    font-size: 2rem;
    line-height: 1;
    color: #fff;
    background-color: #0F266B;
    border-radius: 0.4rem;
    padding: 2rem 4rem;
    letter-spacing: .06rem;
    border: none;
    cursor: pointer;
}
.c-scroll-hint {
    display: none;
}
.c-modal-overlay {
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .55);
}
@media only screen and (max-width: 767px) {
    .c-article-header  h1 .en {
        font-size: 3.2rem;
    }
    .c-article-header h1 .jp {
        font-size: 1.2rem;
    }
    .c-article-header {
        text-align: center;
        padding: 6rem 0;
    }
    .c-button {
        font-size: 1.6rem;
    }
    .c-scroll-hint {
        display: block;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 9;
        background: rgba(15, 90, 140,.75);
        font-size: 2rem;
        color: #fff;
        line-height: 1.5;
        text-align: center;
        padding: 3rem 3rem;
        border-radius: 1rem;
    }
    .c-scroll-hint img {
        width: 5rem;
        height: auto;
    }
    .c-scroll-hint p {
        margin-top: 1rem;
    }
    .c-scroll-hint.inview {
        animation: blink 1s;
        animation-direction: reverse;
        animation-fill-mode: forwards;
        animation-iteration-count: 3;
        animation-delay: 1s;
    }
}

/*----------------------------------------
	Common Parts
----------------------------------------*/
@media only screen and (max-width: 767px) {
}

/*----------------------------------------
	Custom Cursor
----------------------------------------*/
#cursor {
    pointer-events: none;
    position: fixed;
    top: -6px;
    left: -6px;
    width: 12px;
    height: 12px;
    background: #0F266B;
    border-radius: 50%;
    transition: transform 0.6s, top, 0.5s, left 0.5s, width .5s, height .5s, background-color .5s;
    transition-timing-function: cubic-bezier(0.000, 1.005, 0.975, 1.000);
    z-index: 999;
    display: none;
}
#cursor.is_hover {
    top: -32px;
    left: -32px;
    width: 64px;
    height: 64px;
    transition: .5s;
    background: rgba(0, 0, 0, 0.4);
}
@media only screen and (max-width: 767px) {
    #cursor {
        display: none;
    }
}
/*----------------------------------------
	layout
----------------------------------------*/
.l-wrapper {
}
.l-header {
    width: 100%;
    position: fixed;
    top: 0;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    z-index: 10;
    transition: all .3s ease;
    transform: translateY(-10rem);
}
.when_scroll .l-header {
    background-color: rgba(0, 0, 0, .3);
}
.loaded .l-header {
    transform: translateY(0);
    transition: all .8s ease;
    transition-delay: 1s;
}
.l-main {
}
.l-footer {
}
@media only screen and (max-width: 999px) {
    .l-header {
        height: 6rem;
        padding: 1.5rem 0;
    }
    .l-main {
    }
    .l-footer {
    }
}
/*----------------------------------------
	Header
----------------------------------------*/
.p-header {
    width: 98vw;
    max-width: 1280px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.p-header-logo {
    width: 30%;
    max-width: 33rem;
}
.p-header-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/common/logo.png) no-repeat center;
    background-size: contain;
}
.p-header-logo a img {
    opacity: 0;
}
.p-header-navi {
    width: 70%;
    display: flex;
    justify-content: end;
}
.p-header-navi ul {
    display: flex;
    border-right: 1px dotted #fff;
}
.p-header-navi ul li {
    padding: 0.2rem 1.5rem 0 1.5rem;
    border-left: 1px dotted #fff;
}
.p-header-navi ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
    line-height: 1;
    text-decoration: none;
    position: relative;
}
.p-header-navi ul li a .jp {
    font-size: 1.4rem;
    letter-spacing: .08rem;
    margin-bottom: 0.8rem;
}
.p-header-navi ul li a .en {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
}
.p-header-navi ul li a::before {
    display: block;
    content: '';
    height: 1px;
    background: #ffff00;
    width: 100%;
    transition: all 0.2s ease-in-out;
    transform: scaleX(0);
    transform-origin: center;
    position: absolute;
    top: 1.8rem;
}
.p-header-navi ul li.current a::before,
.p-header-navi ul li a:hover::before {
    width: 100%;
    transform: scaleX(1);
}
.p-header-navi__sns {
    margin-left: 2.4rem;
    display: flex;
}
.p-header-navi__sns a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.p-header-navi__sns a img {
    width: 3.2rem;
}
.p-header-navi__sns a img.color {
    display: none;
}
.p-header-navi__sns a img.white {
    display: block;
}
.p-header-sp-btn {
    display: none;
    width: 3rem;
    height: 3rem;
    position: absolute;
    top: 0;
    right: 1rem;
    z-index: 100;
    cursor: pointer;
    transition: .4s ease-in-out;
}
.p-header-sp-btn span {
    width: 3rem;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    transition: .2s ease-in-out;
    transform-origin: center;
}
.p-header-sp-btn span.l1 {
    top: 0.7rem;
}
.p-header-sp-btn span.l2 {
    top: 1.4rem;
}
.p-header-sp-btn span.l3 {
    top: 2.1rem;
}
.is-menu-open .p-header-sp-btn span.l2 {
    display: none;
}
.is-menu-open .p-header-sp-btn span.l1 {
    top: 1.4rem;
    transform: rotate(-135deg);
}
.is-menu-open .p-header-sp-btn span.l3 {
    top: 1.4rem;
    transform: rotate(135deg);
}
.is-menu-open .p-header-navi__sns a img.color {
    display: none !important;
}
.is-menu-open .p-header-navi__sns a img.white {
    display: block !important;
}
@media only screen and (max-width: 999px) {
    .p-header {
        width: 92vw;
    }
    .p-header-navi {
        width: 100vw;
        height: 100vh;
        background: linear-gradient(to left, rgba(9, 42, 103, 1) 0, rgba(6, 13, 77, 1) 100%);
        position: fixed;
        top: 0;
        right: -100vw;
        z-index: 91;
        transition: 0.3s cubic-bezier(0,0,0,1);;
        display: block;
        padding: 10rem 2rem 0 2rem;
        overflow-y: scroll;
    }
    .p-header-navi::before {
        content: '';
        display: block;
        width: 19rem;
        height: 2.955rem;
        position: absolute;
        top: 2rem;
        background: url(../img/common/logo.png) no-repeat center;
        background-size: contain;
    }
    .p-header-navi ul {
        flex-direction: column;
        border-right: none;
        border-bottom: 1px dotted #fff;
    }
    .p-header-navi ul li {
        border-left: none !important;
        border-bottom: 1px dotted #fff;
        padding: 2.2rem 0;
        transition: .4s cubic-bezier(0,0,0,1);
        transform: translateX(40px);
        opacity: 0;
    }
    .p-header-navi ul li:last-of-type {
        border-bottom: none;
    }
    .p-header-navi ul li a {
        color: #fff !important;
        text-align: left;
        align-items: baseline;
        padding: 0 2rem;
    }
    .p-header-navi ul li a .jp {
        font-size: 1.8rem;
    }
    .p-header-navi ul li a .en {
        font-size: 1.1rem;
    }
    .p-header-navi ul li a .en br {
        display: none;
    }
    .p-header-navi ul li a::before {
        height: 100%;
        width: 2px;
        height: 100%;
        transform: scaleX(1) scaleY(0);
        top: 0;
        left: 0;
    }
    .p-header-navi ul li.current a::before,
    .p-header-navi ul li a:hover::before {
        width: 2px;
        transform: scaleX(1) scaleY(1);
    }
    .p-header-navi__sns {
        margin-left: 1.6rem;
    }
    .p-header-navi__sns a {
        margin-top: 4rem;
        justify-content: start;
    }
    .p-header-logo {
        width: 19rem;
        position: absolute;
        top: 0;
    }
    .p-header-sp-btn {
        display: block;
    }
    .is-menu-open .p-header-sp-btn span {
        background-color: #fff !important;
    }
    .is-menu-open .p-header-navi {
        right: 0;
    }
}
@media only screen and (max-width: 767px) {

}
/*----------------------------------------
	Footer
----------------------------------------*/
.l-footer {
    background-color: #000;
}
.p-footer {
    padding: 1.6rem 0 2.4rem 0;
    line-height: 1;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.p-footer-logo {
    width: 22rem;
}
.p-footer-link {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}
.p-footer-link a {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
}
.p-footer-link a.instagram img {
    width: 2rem;
    height: auto;
}
@media only screen and (max-width: 767px) {
    .p-footer {
        width: 94vw;
    }
    .p-footer-link a {
        font-size: 1.2rem;
    }
    .p-footer-logo {
        width: 16rem;
    }
}


/*----------------------------------------
	Loading
----------------------------------------*/
body:not(.loaded) {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
#loading {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000000;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}
#loading img {
    width: 80%;
    max-width: 70rem;
    position: relative;
    z-index: 1;
}
#loading::before,
#loading::after {
    content: '';
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
}
#loading::before {
    background-color: #fff;
}
#loading::after {
    background-color: #0F266B;
    animation: afterIn .7s cubic-bezier(0,0,0,1);
    animation-fill-mode: forwards;
}
.loaded #loading {
    animation: loadingHide .0s linear;
    animation-fill-mode: forwards;
    animation-delay: 1.2s;
}
.loaded #loading img {
    animation: loadingHide 0.1s linear;
    animation-fill-mode: forwards;
    animation-delay: .5s;
}
.loaded #loading::before {
    animation: afterOut .7s cubic-bezier(0,0,0,1);
    animation-fill-mode: forwards;
    animation-delay: .5s;
}
.loaded #loading::after {
    animation: afterOut .7s cubic-bezier(0,0,0,1);
    animation-fill-mode: forwards;
    animation-delay: .5s;
}
.p-progress-bar {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000001;
    height: 8px;
    background-color: #fff;
}
@keyframes loadingHide {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes afterIn {
    0% {
        transform: translate(-101%, 0)
    }
    100% {
        transform: translate(0, 0)
    }
}
@keyframes afterOut {
    0% {
        transform: translate(0, 0)
    }
    100% {
        transform: translate(101%, 0)
    }
}


/*----------------------------------------
	Common Project
----------------------------------------*/
.p-entry-section {
    position: relative;
    height: 39rem;
    width: 100%;
    cursor: pointer;
    overflow: hidden;
}
.p-entry-section::after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/common/bg_entry.jpg) no-repeat center;
    background-size: cover;
    transition: .4s ease-out;
}
.p-entry-section:hover::after {
    transform: scale(1.1);
}
.p-entry-section .inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.p-entry-section .p-entry-section__content {
    display: flex;
    align-items: center;
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 6rem;
    font-weight: 500;
    letter-spacing: .2rem;
}
.p-entry-section .p-entry-section__content::before {
    content: '';
    width: 5rem;
    height: 1px;
    background-color: #fff;
    margin-right: 1rem;
}
.p-entry-popup {
    display: none;
    background: #fff;
    width: 92vw;
    max-width: 78rem;
    max-height: 94vh;
    overflow-y: scroll;
    padding: 7rem 6rem 6rem 6rem;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}
.p-entry-popup h2 {
    display: flex;
    flex-direction: column;
    line-height: 1;
    color: #0F266B;
    text-align: center;
    border-bottom: 1px solid #C7C7C7;
    margin-bottom: 2rem;
    padding-bottom: 4rem;
}
.p-entry-popup h2 .en {
    font-family: 'Jost', sans-serif;
    font-size: 4.2rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
}
.p-entry-popup h2 .jp {
    font-size: 1.4rem;
    font-weight: 400;
}
.p-entry-popup__close {
    color: #0F266B;
    text-align: center;
    margin-top: 5rem;
}
.p-entry-popup__close > div {
    display: inline-flex;
    align-items: center;
    font-size: 1.4rem;
    padding: 0.6rem 2.6rem;
    line-height: 1;
    border: 1px solid #0F266B;
}
.p-entry-popup__close > div img {
    width: 10px;
    margin-right: 8px;
}
@media only screen and (max-width: 767px) {
    .p-entry-section {
        height: 20rem;
    }
    .p-entry-section::after {
        background: url(../img/common/bg_entry_sp.jpg) no-repeat center;
        background-size: cover;
    }
    .p-entry-section .p-entry-section__content {
        font-size: 4rem;
    }
    .p-entry-popup {
        padding: 5rem 2rem 3rem 2rem;
    }
    .p-entry-popup h2 .en {
        font-size: 3.2rem;
    }
    .p-entry-popup h2 .jp {
        font-size: 1.2rem;
    }

}
/*----------------------------------------
	TOP PAGE
----------------------------------------*/
.p-top-visual {
    background-color: #0F266B;
    position: relative;
    height: 100vh;
    transition: opacity 1.8s ease-in-out;
}
.p-top-visual::after {
    content: '';
    display: block;
    width: 100%;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.p-top-visual__copy {
    width: 80%;
    max-width: 70rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 1s 4s;
}
.loaded .p-top-visual__copy {
    opacity: 0;
}
.p-top-visual__fullmovie {
    width: 10%;
    max-width: 15rem;
    min-width: 10rem;
    position: absolute;
    right: 4%;
    bottom: 4%;
    z-index: 2;
}
.p-scroll {
    width: 13.5rem;
    height: auto;
    position: absolute;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%) rotate(90deg);
    z-index: 1;
    display: flex;
    align-items: center;
}
.p-scroll span {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
    line-height: 1;
    color: #fff;
    margin-right: .8rem;
}
.p-scroll img {
    width: 0.7rem;
}
.p-scroll::after,
.p-scroll::before {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 0;
    display: block;
    width: 7.6rem;
    height: 1px;
    margin: 0;
    content: '';
    background-color: rgba(255, 255, 255, .2);
}
.p-scroll::after {
    z-index: 2;
    animation-name: pagerScroll;
    animation-duration: 1.6s;
    animation-timing-function: cubic-bezier(.77, 0, .175, 1);
    animation-delay: 0s;
    animation-iteration-count: infinite;
    background-color: white;
    animation-fill-mode: forwards;
}
@keyframes pagerScroll {
    0%,
    20% {
        right: 7.6rem;
        width: 0;
    }
    60% {
        right: 0;
        width: 7.6rem;
    }
    100% {
        right: 0;
        width: 0;
    }
}

#player {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100vw;
    min-height: 100%;
}
.p-top-visual iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* CONCEPY */
.p-top-concept {
    position: relative;
    background: url(../img/top/img_concept.jpg) no-repeat center top;
    background-size: cover;
    padding: 8%;
    overflow: hidden;
}
.p-top-concept::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/top/bg_concept.png) no-repeat center top;
    background-size: contain;
}
.p-top-concept__jp {
    position: absolute;
    top: 9%;
    right: 5%;
    width: 22%;
    max-width: 25rem;
}
.p-top-concept__en {
    position: relative;
    width: 18%;
    max-width: 17rem;
}
.p-top-concept__content {
    position: relative;
    color: #fff;
    margin-top: 6rem;
    width: fit-content;
    padding: 3rem 3rem 3rem 0;
    background-color: rgba(60, 60, 60, .8);
}
.p-top-concept__content::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(-100%, 0);
    background-color: rgba(60, 60, 60, .8);
}
.p-top-concept__content p {
    position: relative;
    line-height: 2;
    letter-spacing: .1rem;
}
/* 数字で見る */
.p-top-keynumber-mission-wrap {
    background: url(../img/top/bg_keynumber.svg) no-repeat center bottom;
    background-size: cover;
}
.p-top-keynumber {
    height: 70vw;
    max-height: 105rem;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}
.p-top-keynumber .item {
    transition: .3s;
    animation: marquee linear infinite;
    animation-duration: 20s;
    position: absolute;
    left: 0;
    transition: 1s;
}
.p-top-keynumber .item:hover {
    /* animation-play-state: paused; */
    opacity: .75;
}
.p-top-keynumber .item a {
    display: block;
}
.p-top-keynumber .item.maternity {
    width: 13%;
    max-width: 22rem;
    top: 2%;
    animation-delay: -5s;
}
.p-top-keynumber .item.staff {
    width: 30%;
    max-width: 47rem;
    top: 10%;
    animation-delay: -13s;
}
.p-top-keynumber .item.shop {
    width: 15%;
    max-width: 23rem;
    top: 25%;
    animation-delay: -16.5s;
}
.p-top-keynumber .item.service {
    width: 15%;
    max-width: 23rem;
    top: 5%;
    animation-delay: -20s;
}
.p-top-keynumber .item.paid_vacation {
    width: 16%;
    max-width: 24rem;
    top: 24%;
    animation-delay: -6s;
}
.p-top-keynumber .item.division {
    width: 7%;
    max-width: 10rem;
    top: 33%;
    animation-delay: -2s;
}
.p-top-keynumber .item.section {
    width: 16%;
    max-width: 24rem;
    bottom:20%;
    animation-delay: -18s;
}
.p-top-keynumber .item.subsidiaries {
    width: 11%;
    max-width: 17rem;
    bottom: 5%;
    animation-delay: -14s;
}
.p-top-keynumber .item.dayoff {
    width: 14%;
    max-width: 22rem;
    bottom: 2%;
    animation-delay: -10s;
}
.p-top-keynumber .item.av_age {
    width: 14%;
    max-width: 21rem;
    bottom: 33%;
    animation-delay: -9s;
}
.p-top-keynumber .item.founding {
    width: 14%;
    max-width: 24rem;
    bottom: 0;
    animation-delay: -4s;
}
.p-top-keynumber .item.department {
    width: 8%;
    max-width: 12rem;
    bottom: 8%;
    animation-delay: 0;
}
@keyframes marquee {
  0% {
    transform: translate(101vw, 0%)
  }
  100% {
    transform: translate(-50rem, 0%)
  }
}
.p-top-keynumber__content {
    color: #0F266B;
    position: relative;
    z-index: 1;
    width: fit-content;
    margin-right: auto;
    margin-left: 4.1665vw;
}
.p-top-keynumber__content h2 {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 2rem;
}
.p-top-keynumber__content h2 .en {
    font-family: 'Jost', sans-serif;
    font-size: 5rem;
    font-weight: 500;
    margin-bottom: 0.7rem;
}
.p-top-keynumber__content h2 .jp {
    font-size: 1.4rem;
    font-weight: 500;
}
.p-top-keynumber__content > a {
    display: inline-block;
    color: #0F266B;
    border: 1px solid #0F266B;
    text-decoration: none;
    padding: 0.5rem 1.6rem;
    font-size: 1.4rem;
    transition: .3s;
}
.p-top-keynumber__content > a:hover {
    color: #fff;
    background-color: #0F266B;
}
/* 事業案内 */
.p-top-mission {
    padding: 8vw 0 0 0;
}
.p-top-mission__lead {
    color: #fff;
}
.p-top-mission__lead h2 {
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
    line-height: 1.5;
    font-size: 3.2rem;
    margin-bottom: 2rem;
}
.p-top-mission__lead p {
    width: 80%;
    max-width: 45rem;
}
.p-top-mission__visual {
    width: 100vw;
}
.p-top-mission__visual .inner {
    width: 100vw;
    max-width: initial;
    height: 51vw;
    background: url(../img/top/bg_mission_visual.svg) no-repeat center top;
    background-size: cover;
    position: relative;
}
.p-mission-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* z-index: 2; */
}
.p-mission-bg .item {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center top;
    background-repeat: no-repeat;
}
.p-mission-bg .item.layer1 {
    background-image: url(../img/top/bg_mission_visual1.svg);
}
.p-mission-bg .item.layer2 {
    background-image: url(../img/top/bg_mission_visual2.svg);
    animation: cloudMove 50s linear infinite;
}
.p-mission-bg .item.layer3 {
    background-image: url(../img/top/bg_mission_visual3.svg);
}
.p-mission-bg .item.layer4 {
    background-image: url(../img/top/bg_mission_visual4.svg);
    animation: cloudMove 46s linear infinite;
}
.p-mission-bg .item.layer5 {
    background-image: url(../img/top/bg_mission_visual5.svg);
}
.p-mission-bg .item.layer6 {
    background-image: url(../img/top/bg_mission_visual6.svg);
    animation: cloudMove 40s linear infinite;
}
.p-mission-bg .item.layer7 {
    background-image: url(../img/top/bg_mission_visual7.svg);
}
.p-mission-bg .item.layer8 {
    background-image: url(../img/top/bg_mission_visual8.svg);
    animation: cloudMove 36s linear infinite;
}
.p-mission-bg .item.layer9 {
    background-image: url(../img/top/bg_mission_visual9.svg);
}
.p-mission-bg .item.layer10 {
    background-image: url(../img/top/bg_mission_visual10.svg);
    animation: cloudMove 28s linear infinite;
}
.p-mission-bg .item.layer11 {
    background-image: url(../img/top/bg_mission_visual11.svg);
}
@keyframes cloudMove {
    0% , 100%{
        background-position: 6rem 0;
    }
    50%{
        background-position: -6rem 0;
    }
}
.p-mission-navi {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.p-mission-navi .item {
    position: absolute;
}
.p-mission-navi .item .tip-box {
    width: 48rem;
    position: absolute;
    z-index: 100;
    padding: 6rem 4rem 4rem 4rem;
    color: #fff;
    background: rgba(50, 50, 50, .95);
    display: none;
}
.p-mission-navi .item .tip-box::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 7vw;
    height: 7vw;
    max-width: 6rem;
    max-height: 6rem;
    z-index: 1;
}
.p-mission-navi .item .tip-box .heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    color: #fff;
}
.p-mission-navi .item .tip-box .heading .name {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    font-weight: 700;
}
.p-mission-navi .item .tip-box .heading .name .copy {
    margin-bottom: 2rem;
}
.p-mission-navi .heading .name .en {
    height: 3.4vw;
    max-height: 4rem;
    margin-bottom: 0.8rem;
}
.p-mission-navi .heading .name .en img {
    width: auto;
    max-width: 100%;
    height: 100%;
}
.p-mission-navi .item .tip-box .heading .name a.jp {
    text-decoration: underline;
    color: #fff;
    font-size: 1.4rem;
}
.p-mission-navi .item .tip-box .summary {
    position: relative;
    z-index: 1;
    font-size: 1.4rem;
    line-height: 1.75;
    margin-top: 2rem;
}
.p-mission-navi .item.mission1 {
    height: 16%;
    width: 19%;
    bottom: 50%;
    right: 5%;
}
.p-mission-navi .item.mission1 .tip-box:before {
    background: url(../img/mission/triangle_mission1.svg) no-repeat left top;
    background-size: contain;
}
.p-mission-navi .item.mission2 {
    height: 16%;
    width: 12%;
    bottom: 32%;
    left: 31%;
}
.p-mission-navi .item.mission2 .tip-box:before {
    background: url(../img/mission/triangle_mission2.svg) no-repeat left top;
    background-size: contain;
}
.p-mission-navi .item.mission3 {
    height: 16%;
    width: 19%;
    bottom: 11%;
    left: 44%;
}
.p-mission-navi .item.mission3 .tip-box:before {
    background: url(../img/mission/triangle_mission3.svg) no-repeat left top;
    background-size: contain;
}
.p-mission-navi .item.mission4 {
    height: 16%;
    width: 16%;
    top: 24%;
    left: 24%;
}
.p-mission-navi .item.mission4 .tip-box:before {
    background: url(../img/mission/triangle_mission4.svg) no-repeat left top;
    background-size: contain;
}
.p-mission-navi .item.mission5 {
    height: 16%;
    width: 23%;
    bottom: 32%;
    left: 48%;
}
.p-mission-navi .item.mission5 .tip-box:before {
    background: url(../img/mission/triangle_mission5.svg) no-repeat left top;
    background-size: contain;
}
.p-mission-navi .item.mission6 {
    height: 14%;
    width: 17%;
    top: 13%;
    right: 19%;
}
.p-mission-navi .item.mission6 .tip-box:before {
    background: url(../img/mission/triangle_mission6.svg) no-repeat left top;
    background-size: contain;
}
.p-mission-navi .item.mission7 {
    height: 14%;
    width: 12%;
    top: 12%;
    right: 39%;
}
.p-mission-navi .item.mission7 .tip-box:before {
    background: url(../img/mission/triangle_mission7.svg) no-repeat left top;
    background-size: contain;
}
.p-mission-navi .item.mission8 {
    height: 14%;
    width: 10%;
    top: 5%;
    right: 9%;
}
.p-mission-navi .item.mission8 .tip-box:before {
    background: url(../img/mission/triangle_mission8.svg) no-repeat left top;
    background-size: contain;
}
.p-mission-navi .item.mission1 .tip-box,
.p-mission-navi .item.mission6 .tip-box,
.p-mission-navi .item.mission7 .tip-box,
.p-mission-navi .item.mission8 .tip-box {
    right: 0;
}
.p-top-mission__lead > a,
.p-top-mission__visual .inner > a {
    display: inline-block;
    text-decoration: none;
    padding: 0.5rem 1.6rem;
    font-size: 1.4rem;    transition: .3s;
}
.p-top-mission__lead > a {
    color: #fff;
    border: 1px solid #fff;
    display: none;
}
.p-top-mission__visual .inner > a {
    color: #0F266B;
    border: 1px solid #0F266B;
    position: absolute;
    bottom: 5%;
    right: 3%;
    z-index: 3;
}
.p-top-mission__lead > a:hover,
.p-top-mission__visual .inner > a:hover {
    color: #fff;
    background-color: #0F266B;
    border: 1px solid #0F266B;
}
/* インタビュースライド */
.p-top-people {
    overflow: hidden;
    padding-top: 4rem;
    background-color: #f4f4f4;
    position: relative;
}
.p-top-people::after {
    content: '';
    display: block;
    width: 6%;
    height: 38%;
    position: absolute;
    left: 0;
    top: 8%;
    z-index: 1;
    background: url(../img/top/text_people_en.svg) no-repeat left top;
    background-size: contain;
}
.p-top-people__slide-wrap {
    width: 130vw;
    display: flex;
}
.p-top-people .swiper-container {
    height: 60rem;
    width: 60vw;
}
.p-top-people .swiper-container#main {
    width: 70vw;
    background-color: #f4f4f4;
}
.p-top-people .swiper-container#thumbnail {
    transform: translateX(-20vw);
    position: relative;
}
.p-top-people .swiper-container#thumbnail::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
}
.p-top-people .swiper {
    height: 100%;
    background-color: #f4f4f4;
}
.p-top-people .swiper-slide {
    display: block;
    position: relative;
    margin: 0 ;
    transition: width .8s ease,height .8s ease;
    display: block;
    cursor: pointer;
}
.p-top-people .swiper-slide::before {
    content: '';
    display: block;
    width: 20%;
    height: 20%;
    background: url(../img/top/allow_slide.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    right: 6%;
    bottom: 16%;
    z-index: 1;
    opacity: 0;
    transition: .3s;
}
.p-top-people .swiper-slide:hover::before {
    opacity: 1;
}
.p-top-people .swiper-slide figure {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.p-top-people #main .swiper-slide figure {
    width: 86%;
    margin-left: auto;
    margin-right: 0;
}
.p-top-people .swiper-slide figure img {
    width: auto;
    max-width: initial;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.p-top-people__content {
    position: absolute;
    left: 0;
    bottom: 0;
    background: url(../img/top/bg_slide_content.svg) no-repeat left bottom;
    background-size: contain;
    padding: 8rem 12rem 2rem 4rem;
}
.p-top-people__content > div {
    transition: 1s;
    transform: translateX(3rem);
    opacity: 0;
}
.p-top-people__content > div:nth-of-type(2) {
    transition-delay: .3s;
}
.p-top-people__content > div:nth-of-type(3) {
    transition-delay: .6s;
}
.swiper-slide-active .p-top-people__content > div {
    transform: translateX(0);
    opacity: 1;
}
.p-top-people__content .number {
    max-width: 27rem;
    width: 50%;
    margin-bottom: 4rem;
}
.p-top-people__content .profile {
}
.p-top-people__content .profile .name {
    display: flex;
    align-items: baseline;
    line-height: 1;
    margin-bottom: 1.6rem;
    font-weight: 700;
}
.p-top-people__content .profile .name .jp {
    font-size: 2.4rem;
    letter-spacing: .2rem;
    margin-right: 1.6rem;
}
.p-top-people__content .profile .name .en {
    font-family: 'Jost', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
}
.p-top-people__content .profile .meta {
    display: flex;
    flex-direction: column;
    line-height: 1.6;
    font-size: 1.5rem;
}
.p-top-people__content.blue {
    color: #35A6B9;
}
.p-top-people__content.red {
    color: #D96369;
}
.p-top-people__content.yellow {
    color: #F8BA00;
}
.p-top-people__content.green {
    color: #A1C90F;
}
.p-top-people__content.purple {
    color: #63589B;
}
.p-top-people .inner.link-more {
    max-width: initial;
    display: flex;
    justify-content: end;
    padding: 1.2rem 0 1.4rem 0;
}
.p-top-people .inner.link-more a {
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
}
.p-top-people .inner.link-more a:hover {
    text-decoration: underline;
    cursor: pointer;
}
/* TOP NEWS */
.p-top-news {
    padding: 8rem 0;
    background: url(../img/top/bg_top_news.svg) no-repeat center top;
    background-size: cover;
}
.p-top-news .inner {
    display: flex;
    max-width: 82rem;
}
.p-top-news__title {
    width: 8rem;
    display: flex;
    align-items: center;
    width: fit-content;
}
.p-top-news__title h2 {
    font-family: 'Jost', sans-serif;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1;
    color: #0F266B;
    letter-spacing: .2rem;
}
.p-top-news__content {
    width: calc(100% - 8rem);
}
.p-top-news__content ul {
    margin-left: 8%;
    padding-left: 8%;
    border-left: 1px solid #0F266B;
}
.p-top-news__content ul li {
    display: flex;
    padding: 0.4rem 0;
}
.p-top-news__content ul li:first-of-type {
    padding-top: 0;
}
.p-top-news__content ul li:last-of-type {
    padding-bottom: 0;
}
.p-top-news__content ul .date {
    width: 90px;
    display: block;
    color: #0F266B;
    font-family: 'Jost', sans-serif;
    margin-right: 3rem;
}
.p-top-news__content ul a {
    color: #0F266B;
    display: block;
    width: calc(100% - 90px);
    line-height: 1.4;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.p-top-news .link-more {
    justify-content: end;
    margin-top: 3rem;
}
.p-top-news .link-more a {
    text-decoration: none;
    font-size: 1.4rem;
}
.p-top-news__content ul a:hover,
.p-top-news .link-more a:hover {
    cursor: pointer;
    text-decoration: underline;
}

@media only screen and (max-width: 767px) {
    .p-top-visual {
        height: 90vh;
    }
    .p-top-concept {
       padding: 14% 6% 6% 6%;
       position: relative;
       background: url(../img/top/img_concept_sp.jpg) no-repeat center top;
        background-size: cover;
    }
    .p-top-concept::before {
        background-size: auto 24rem;
    }
    .p-top-people::after {
        content: '';
        display: block;
        width: 5rem;
        top: 4%;
    }
    .p-top-concept__content {
        padding: 3rem 2rem 3rem 0;
    }
    .p-top-concept__content p {
        font-size: 1.3rem;
        letter-spacing: .05rem;
    }
    .p-top-concept__jp {
        top: 8%;
        width: 30%;
    }
    /* ひとを知る */
    .p-top-people .swiper-container {
        height: 50rem;
        width: 40vw;
    }
    .p-top-people .swiper-container#main {
        width: 90vw;
    }
    .p-top-people #main .swiper-slide.swiper-slide-active figure {
        width: 92%;
    }
    .p-top-people .swiper-container#thumbnail {
        transform: translateX(-20vw);
        position: relative;
    }
    .p-top-people__content {
        padding: 8rem 8rem 2rem 8%;
    }
    .p-top-people__content .number {
        width: 36%;
        margin-bottom: 3rem;
    }
    .p-top-people__content .profile .name {
        margin-bottom: 1.3rem;
    }
    .p-top-people__content .profile .name .jp {
        font-size: 2rem;
    }
    .p-top-people__content .profile .meta {
        font-size: 1.1rem;
    }
    /* 数字で見る */
    .p-top-keynumber {
        height: 170vw;
    }
    .p-top-keynumber__content h2 .en {
        font-size: 3.2rem;
    }
    .p-top-keynumber__content h2 .jp {
        font-size: 1.2rem;
    }
    .p-top-keynumber .item.staff {
        width: 60%;
        max-width: 24rem;
    }
    .p-top-keynumber .item.maternity {
        width: 38%;
        max-width: 14rem;
    }
    .p-top-keynumber .item.service {
        width: 38%;
        max-width: 14rem;
    }
    .p-top-keynumber .item.shop {
        width: 30%;
        max-width: 12rem;
    }
    .p-top-keynumber .item.section {
        width: 36%;
        max-width: 13rem;
    }
    .p-top-keynumber .item.subsidiaries {
        width: 20%;
    }
    .p-top-keynumber .item.dayoff {
        width: 32%;
        max-width: 12rem;
    }
    .p-top-keynumber .item.av_age {
        width: 32%;
        max-width: 12rem;
    }
    .p-top-keynumber .item.paid_vacation {
        width: 38%;
        max-width: 14rem;
    }
    .p-top-keynumber .item.division {
        width: 14%;
        max-width:6rem;
    }
    .p-top-keynumber .item.founding {
        width: 30%;
        max-width: 12rem;
    }
    .p-top-keynumber .item.department {
        width: 18%;
        max-width: 7.5rem;
    }
    /* 事業案内 */
    .p-top-mission {
        padding: 20vw 0 0 0;
    }
    .p-top-mission__lead h2 {
        font-size: 2.2rem;
    }
    .p-top-mission__lead p {
        width: 100%;
        margin-bottom: 2rem;
    }
    .p-top-mission__lead > a {
        display: inline-block;
    }
    .p-top-keynumber-mission-wrap {
        background: url(../img/top/bg_keynumber_sp.svg) no-repeat center top;
        background-size: cover;
    }
    .p-top-mission__visual {
        width: 100vw;
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
        position: relative;
    }
    .p-top-mission__visual .inner {
        width: 100rem;
        height: 48rem;
    }
    .p-top-mission__visual .inner > a {
        display: none;
    }
    .p-mission-navi .item .tip-box {
        position: fixed;
        z-index: 10000;
        top: 50% !important;
        left: 50% !important;
        max-width: 90vw !important;
        transform: translate(-50%, -50%) !important;
        padding: 10vw 6vw 6vw 6vw;
    }
    .p-mission-navi .item .tip-box:after {
        content: '';
        cursor: pointer;
        display: block;
        background: url(../img/top/btn_close.png) repeat center;
        background-size: 25px auto;
        width: 25px;
        height: 25px;
        position: absolute;
        right: 12px;
        top: 12px;
    }
    .p-mission-navi .heading .name .en {
        height: 3.2rem;
    }
    .tip-showed .p-top-mission__visual {
        overflow: initial;
    }
    /* TOP NEWS */
    .p-top-news {
        background: url(../img/top/bg_top_news_sp.svg) no-repeat center top;
        background-size: cover;
    }
    .p-top-news .inner {
        flex-direction: column;
    }
    .p-top-news__title {
        border-bottom: 1px solid #0F266B;
        margin-bottom: 3rem;
        padding-bottom: 2.8rem;
    }
    .p-top-news__content {
        width: initial;
    }
    .p-top-news__content ul {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
    }
    .p-top-news__content ul a {
        width: 100%;
        font-size: 1.6rem;
        line-height: 1.5;
        overflow: inherit;
        text-overflow: inherit;
        white-space: inherit;
    }
    .p-top-news__content ul li {
        padding: 1rem 0;
        flex-direction: column;
    }
    .p-top-news .link-more a {
        text-align: center;
    }
}
/*----------------------------------------
	ひとを知る（インタビュー）
----------------------------------------*/
/* パンクズ */
.p-people .c-bread-crumb,
.p-people .c-bread-crumb a {
    color: #fff;
    text-decoration: none;
}
/* メインビジュアル */
.p-people-visual {
    position: relative;
    background-size: cover;
    background-position: center;
}
.p-people-visual::after {
    position: absolute;
    right: 0;
    bottom: 0;
    content: '';
    display: block;
    width: 60vw;
    height: 100%;
    background: url(../img/people/triangle_main_visual.png) no-repeat right bottom;
    background-size: contain;
}
.p-people-visual .inner {
    max-width: 100rem;
    position: relative;
}
.p-people-visual .inner::before {
    content: '';
    display: block;
    padding-top: 90rem;
}
.p-people-visual__copy {
    position: absolute;
    top: 45%;
    right: 10%;
    z-index: 1;
    transform: translate(0, -50%);
    display: flex;
    flex-direction: row-reverse;
    align-items: baseline;
}
.p-people-visual__copy span {
    position: relative;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    z-index: 1;
    line-height: 2;
    display: inline-block;
    font-size: 3rem;
    letter-spacing: .2rem;
    font-weight: 700;
    color: #0F266B;
    background-color: #fff;
    padding: 1.6rem 0.4rem;
    margin: 0 0.5rem;
}
.p-people-visual__copy span:last-of-type {
    margin-top: 2rem;
}
.p-people-visual__number {
    width: 18rem;
    position: absolute;
    bottom: -10rem;
    right: 0;
    z-index: 1;
    padding-top: 5rem;
}
.p-people-visual__number .label {
    width: 20rem;
    max-width: initial;
    position: absolute;
    top: 0;
    left: -6rem;
}
.p-people-first-wrap {
    position: relative;
}
.p-people-first-wrap::after,
.p-people-first-wrap::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    content: '';
    display: block;
    height: 100%;
}
.p-people-first-wrap::before {
    width: 40vw;
    background: url(../img/people/01/triangle_1.svg) no-repeat left top;
    background-size: contain; 
}
.p-people-02 .p-people-first-wrap::before {
    background: url(../img/people/02/triangle_1.svg) no-repeat left top;
    background-size: contain; 
}
.p-people-03 .p-people-first-wrap::before {
    background: url(../img/people/03/triangle_1.svg) no-repeat left top;
    background-size: contain; 
}
.p-people-04 .p-people-first-wrap::before {
    background: url(../img/people/04/triangle_1.svg) no-repeat left top;
    background-size: contain; 
}
.p-people-05 .p-people-first-wrap::before {
    background: url(../img/people/05/triangle_1.svg) no-repeat left top;
    background-size: contain; 
}
.p-people-06 .p-people-first-wrap::before {
    background: url(../img/people/06/triangle_1.svg) no-repeat left top;
    background-size: contain; 
}
.p-people-07 .p-people-first-wrap::before {
    background: url(../img/people/07/triangle_1.svg) no-repeat left top;
    background-size: contain; 
}
.p-people-08 .p-people-first-wrap::before {
    background: url(../img/people/08/triangle_1.svg) no-repeat left top;
    background-size: contain; 
}
.p-people-first-wrap::after {
    width: 100%;
    background: url(../img/people/triangle_bg_content.png) no-repeat left top;
    background-size: cover; 
}
/* プロフィール */
.p-people-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 0 4rem 0;
}
.p-people-profile__photo {
    width: 22rem;
    height: 22rem;
    border-radius: 40rem;
    overflow: hidden;
    margin-right: 3rem;
}
.p-people-profile__content {
    position: relative;
    width: fit-content;
    min-width: 34rem;
    border-bottom: 1px solid #0F266B;
    padding: 4.4rem 3rem 3rem 3rem;
    color: #0F266B;
}
.p-people-profile__content .label {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.p-people-profile__content .label span {
    position: relative;
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
}
.p-people-profile__content .label::before {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 1.3rem;
    width: calc(100% - 5.4rem);
    height: 1px;
    background-color: #0F266B;
}
.p-people-profile__content .name {
    display: flex;
    align-items: baseline;
    line-height: 1;
    margin-bottom: 1.6rem;
    font-weight: 700;
}
.p-people-profile__content .name .jp {
    font-size: 2.6rem;
    letter-spacing: .2rem;
    margin-right: 1.6rem;
}
.p-people-profile__content .name .en {
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
}
.p-people-profile__content .meta {
    line-height: 1.6;
}
    /* インタビュー本文 */
.p-people-block {
    padding: 16rem 0;
}
.p-people-block .inner {
    max-width: 90rem;
}
.p-people-block h2 {
    font-size: 2.8rem;
    letter-spacing: .3rem;
    line-height: 1.5;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4.5rem;
}
.p-people-block p {
    text-align: justify;
    letter-spacing: .1rem;
}
.p-people-full-image {
    height: 56rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
/* メッセージ */
.p-people-message {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 14rem 0;
    color: #0F266B;
}
.p-people-message::before,
.p-people-message::after {
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
}
.p-people-message::before {
    width: 100%;
    left: 0;
    background: url(../img/people/bg_gray_gradation.svg) no-repeat center;
    background-size: cover;
    z-index: -2;
}
.p-people-message::after {
    width: 70%;
    right: 0;
    z-index: -2;
    background: url(../img/people/01/triangle_2.svg) no-repeat center;
    background-size: cover;
}
.p-people-02 .p-people-message::after {
    background: url(../img/people/02/triangle_2.svg) no-repeat center;
    background-size: cover;
}
.p-people-03 .p-people-message::after {
    background: url(../img/people/03/triangle_2.svg) no-repeat center;
    background-size: cover;
}
.p-people-04 .p-people-message::after {
    background: url(../img/people/04/triangle_2.svg) no-repeat center;
    background-size: cover;
}
.p-people-05 .p-people-message::after {
    background: url(../img/people/05/triangle_2.svg) no-repeat center;
    background-size: cover;
}
.p-people-06 .p-people-message::after {
    background: url(../img/people/06/triangle_2.svg) no-repeat center;
    background-size: cover;
}
.p-people-07 .p-people-message::after {
    background: url(../img/people/07/triangle_2.svg) no-repeat center;
    background-size: cover;
}
.p-people-08 .p-people-message::after {
    background: url(../img/people/08/triangle_2.svg) no-repeat center;
    background-size: cover;
}
.p-people-message__content {
    position: absolute;
    width: 91.667vw;
    max-width: 1100px;
    left: 50%;
    transform: translate(-50%, 0);
}
.p-people-message__content .label {
    display: block;
    width: 17rem;
    max-width: initial;
    margin-left: -5rem;
    margin-bottom: 1rem;
}
.p-people-message__content .heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}
.p-people-message__content .heading span {
    line-height: 1;
    display: inline-block;
    font-size: 2.3rem;
    letter-spacing: .3rem;
    font-weight: 700;
    background-color: #fff;
    padding: 1rem 1.8rem 1.2rem 1.8rem;
    margin-bottom: 0.5rem;
}
.p-people-message__content .body {
    max-width: 53rem;
    text-align: justify;
}
.p-people-message figure {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.p-people-message figure figcaption {
    font-size: 1.2rem;
    margin-right: 3vw;
}
/* スケジュール */
.p-people-schedule {
    padding: 7rem 0 6rem 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.p-people-schedule h2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 4rem;
}
.p-people-schedule h2 .en {
    font-family: 'Jost', sans-serif;
    font-size: 2.6rem;
}
.p-people-schedule h2 .jp {
    font-size: 1.4rem;
}
.p-people-schedule__image {
    width: 90vw;
    max-width: 98rem;
    margin-left: auto;
    margin-right: auto;
}
/* リストスライド */
.p-people-list-slide {
    background-color: #0F266B;
    position: relative;
}
.p-people-list-slide .swiper {
    width: 90vw;
    max-width: 120rem;
}
.p-people-list-slide .swiper-slide {
    display: block;
    position: relative;
}
.p-people-list-slide__content {
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 7rem 2rem 2rem 2rem;
}
.p-people-list-slide__content .bg-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    mix-blend-mode: multiply;
}
.p-people-list-slide .swiper-slide figure {
    width: 100%;
    overflow: hidden;
}
.p-people-list-slide .swiper-slide figure img {
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: 250ms;
}
.p-people-list-slide .swiper-slide:hover figure img {
    transform: scale(1.2);
}
.p-people-list-slide__content .profile {
    position: relative;
    color: #fff;
    text-align: right;
}
.p-people-list-slide__content .profile .name {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: .5rem;
}
.p-people-list-slide__content .profile .name .jp {
    font-size: 2.2rem;
    margin-bottom: .8rem;
}
.p-people-list-slide__content .profile .name .en {
    font-family: 'Jost', sans-serif;
    font-size: 1.3rem;
}
.p-people-list-slide__content .profile .division {
    font-size: 1.4rem;
    line-height: 1.3;
}
.p-people-list-slide .swiper-button-next {
    right: 2vw;
}
.p-people-list-slide .swiper-button-prev {
    left: 2vw;
}
.p-people-list-slide .swiper-button-next,
.p-people-list-slide .swiper-button-prev {
    color: #fff;
}
.p-people-list-slide .swiper-button-next:after,
.p-people-list-slide .swiper-button-prev:after {
    font-size: 3rem;
}
@media only screen and (max-width: 767px) {
    /* パンクズ */
    .p-people .c-bread-crumb,
    .p-people .c-bread-crumb a {
        color: #0F266B;
        font-size: 1rem;
    }
    /* メインビジュアル */
    .p-people-visual .inner::before {
        padding-top: 52rem;
    }
    .p-people-visual::after {
        width: 50vw;
        background: url(../img/people/triangle_main_visual.png) no-repeat left bottom;
        background-size: cover;
    }
    .p-people-visual__copy {
        right: 3%;
    }
    .p-people-visual__copy span {
        font-size: 1.6rem;
    }
    .p-people-visual__number {
        width: 9rem;
        bottom: -4rem;
        right: 1rem;
        padding-top: 3.4rem;
    }
    .p-people-visual__number .label {
        width: 13rem;
        left: -5rem;
    }
    /* プロフィール */
    .p-people-profile {
        flex-direction: column;
        padding: 7rem 0 0 0;
    }
    .p-people-profile__photo {
        width: 16rem;
        height: 16rem;
        margin-right: 0;
        margin-bottom: 3rem;
    }
    .p-people-profile__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 4.4rem 2rem 2.6rem 2rem;
        max-width: 100%;
        min-width: 28rem;
    }
    .p-people-profile__content .name {
        align-items: baseline;
    }
    .p-people-profile__content .name .jp {
        font-size: 2rem;
    }
    .p-people-profile__content .name .en {
        font-size: 1.2rem;
    }
    .p-people-profile__content .meta {
        font-size: 1.2rem;
    }
    .p-people-first-wrap::before {
        width: 50vw;
    }
    .p-people-first-wrap::after {
        background-size: contain;
    }
    /* インタビュー本文 */
    .p-people-block {
        padding: 10rem 0;
    }
    .p-people-full-image {
        height: 30rem;
    }
    .p-people-block h2 {
        font-size: 2rem;
    }
    /* スケジュール */
    .p-people-schedule {
        padding: 5rem 0 6rem 0;
    }
    .p-people-schedule h2 .jp {
        font-size: 1.2rem;
    }
    /* メッセージ */
    .p-people-message {
        flex-direction: column-reverse;
        padding: 5rem 0 10rem 0;
    }
    .p-people-message__content .label {
        width: 100%;
        margin-left: initial;
        text-align: right;
    }
    .p-people-message__content .label img {
        width: 15rem;
    }
    .p-people-message figure {
        width: 100vw;
        margin-bottom: 4rem;
    }
    .p-people-message figure figcaption {
        display: none;
    }
    .p-people-message__content {
        position: relative;
        width: 86vw;
        left: initial;
        transform: initial;
    }
    .p-people-message__content .heading span {
        font-size: 1.7rem;
        letter-spacing: .2rem;
        padding: 1rem 1rem 1.2rem 1rem;
    }
    .p-people-message__content .body {
        width: 100%;
    }
    .p-people-message__content .body p {
        color: #0F266B !important;
    }
    .p-people-note {
        margin-top: 1.6rem;
        text-align: right;
        font-size: 1.1rem;
    }
    /* リストスライド */
    .p-people-list-slide .swiper {
        width: 84vw;
    }
    .p-people-list-slide__content .profile .name .jp {
        font-size: 1.6rem;
    }
    .p-people-list-slide__content .profile .name .en {
        font-family: 'Jost', sans-serif;
        font-size: 1rem;
    }
    .p-people-list-slide__content .profile .division {
        font-size: 1rem;
    }
    .p-people-list-slide .swiper-button-next:after,
    .p-people-list-slide .swiper-button-prev:after {
        font-size: 2.4rem;
    }
    .p-people-list-slide .swiper-button-next {
        right: 0rem;
    }
    .p-people-list-slide .swiper-button-prev {
        left: 0;
    }
}
/*----------------------------------------
	サブページ共通
----------------------------------------*/
/* Header */
.no-visual-page .l-wrapper {
    background: url(../img/common/bg_edit_page.svg) no-repeat center top;
    background-size: 100% auto;
}
.when_scroll.no-visual-page .l-header {
    background-color: rgba(255, 255, 255, .3);
}
.no-visual-page .p-header-logo a {
    background: url(../img/common/logo_b.png) no-repeat center;
    background-size: contain;
}
.no-visual-page .p-header-navi ul li a {
    color: #0F266B;
}
.no-visual-page .p-header-navi ul {
    border-right: 1px dotted #0F266B;
}
.no-visual-page .p-header-navi ul li {
    border-left: 1px dotted #0F266B;
}
.no-visual-page .p-header-sp-btn span {
    background-color: #0F266B;
}
.no-visual-page .p-header-navi__sns a img.color {
    display: block;
}
.no-visual-page .p-header-navi__sns a img.white {
    display: none;
}
/* Main */
.no-visual-page .l-main {
    padding-top: 92px;
}
@media only screen and (max-width: 767px) {
    .no-visual-page .l-main {
        padding-top: 70px;
    }
}
/*----------------------------------------
	募集要項
----------------------------------------*/
.p-recruit-info {
    padding-bottom: 10rem;
}
.p-recruit-info .c-article-body {
    max-width: 80rem;
}
.p-recruit-info .c-article-body h2 {
    text-align: center;
    line-height: 1.4;
    padding-bottom: 1.4rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #C7C7C7;
    font-size: 2.2rem;
    font-weight: 500;
}
.p-recruit-info .c-article-body dl {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 8rem;
    line-height: 1.5;
}
.p-recruit-info .c-article-body dl dt {
    width: 30%;
    padding: 1.4rem 0;
    font-weight: 700;
    color: #0F266B;
}
.p-recruit-info .c-article-body dl dd {
    width: 70%;
    padding: 1.4rem 0;
}
@media only screen and (max-width: 767px) {
    .p-recruit-info {
        padding-bottom: 2rem;
    }
    .p-recruit-info .c-article-body h2 {
        font-size: 2rem;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }
    .p-recruit-info .c-article-body dl {
        margin-bottom: 6rem;
    }
    .p-recruit-info .c-article-body dl dt {
        padding-right: 3rem;
        text-align: justify;
        text-align-last: justify;
        text-justify: inter-ideograph;
    }
}
/*----------------------------------------
	お知らせ／一覧
----------------------------------------*/
.c-article-body.p-news-list {
    max-width: 100rem;
    padding-bottom: 14rem;
}
.p-news-list ul {
    border-top: 1px solid #C7C7C7;
}
.p-news-list li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px solid #C7C7C7;
    padding: 6rem 2%;
}
.p-news-list li figure {
    width: 32%;
}
.p-news-list li figure a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.p-news-list li figure a img {
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: 250ms;
}
.p-news-list li figure:hover a img {
    transform: scale(1.2);
}
.p-news-list__content {
    width: 60%;
}
.p-news-list__content .title {
    font-size: 2.2rem;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 1.4rem;
}
.p-news-list__content .title a {
    text-decoration: none;
}
.p-news-list__content .summary {
    margin-bottom: 1.8rem;
    line-height: 1.75;
    text-align: justify;
    text-justify: inter-ideograph;
}
.p-news-list__content .summary a {
    color: #007AAA;
}
.p-news-list__content .date {
    font-family: 'Oswald', sans-serif;
}
.wp-pagenavi {
    padding: 4rem;
    text-align: center;
    border-bottom: 1px solid #C7C7C7;
}
.wp-pagenavi a,
.wp-pagenavi span {
    border: none;
    font-size: 2rem;
    font-weight: bold;
    padding: 0;
    margin: 0 1rem;
}
.wp-pagenavi a {
    color: #C7C9C9;
}
@media only screen and (max-width: 767px) {
    .p-news-list li {
        flex-direction: column;
    }
    .p-news-list li figure {
        width: 100%;
        margin-bottom: 2rem;
    }
    .p-news-list__content {
        width: 100%;
    }
    .p-news-list__content .title {
        font-size: 2rem;
    }
}
/*----------------------------------------
	お知らせ／詳細
----------------------------------------*/
.p-news-detail-head {
    margin-bottom: 5rem;
    padding-top: 2rem;
    border-top: 1px solid #C7C7C7;
}
.p-news-detail-head .date {
    font-family: 'Oswald', sans-serif;
    display: block;
    margin-bottom: 3rem;
    line-height: 1;
}
.p-news-detail-head h1 {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1.6;
}
.p-news-detail-body {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}
.p-news-detail-navi {
    max-width: 100rem;
    padding: 4rem 0 14rem 0;
    margin: 6rem auto 0 auto;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #C7C7C7;
    border-bottom: 1px solid #C7C7C7;
}
.p-news-detail-navi > div {
    width: 30%;
}
.p-news-detail-navi > div:nth-of-type(2) {
    text-align: center;
}
.p-news-detail-navi > div:nth-of-type(3) {
    text-align: right;
}
.p-news-detail-navi a {
    text-decoration: none;
    font-weight: 700;
}
/* WordPress Post Style */
.p-news-detail-body p {
    margin-bottom: 8rem;
}
.p-news-detail-body h1,
.p-news-detail-body h2,
.p-news-detail-body h3,
.p-news-detail-body h4,
.p-news-detail-body h5 {
    line-height: 1.4;
    margin-bottom: 5rem;
}
.p-news-detail-body h3,
.p-news-detail-body h4,
.p-news-detail-body h5 {
    margin-bottom: 3rem;
}
.p-news-detail-body li {
    list-style: initial;
    margin-left: 2rem;
}
.wp-block-image {
    margin: 0 0 5rem 0;
}
.p-news-detail-body .wp-block-image img {
    margin-bottom: 0;
}
.p-news-detail-body img {
    margin-bottom: 5rem;
}
.wp-block-image figcaption {
    font-size: 1.4rem;
    margin-top: 0.4rem;
    margin-bottom: 0;
}
.wp-block-quote {
    overflow-wrap: break-word;
    line-height: 1.6;
    margin-bottom: 5rem;
}
.wp-block-quote p {
    border-left: 2px solid #727171;
    padding: 0 0 0 2rem;
    margin: 0;
}
.wp-block-quote cite {
    font-size: 1.2rem;
    padding: 0 0 0 2rem;
    color: #acacac;
}

/*----------------------------------------
	FAQ
----------------------------------------*/
.p-faq.inner {
    max-width: 80rem;
    margin-bottom: 14rem;
}
.p-faq > section > h2 {
    border-top: 1px solid #C7C7C7;
    padding: 2.4rem 0 2.6rem 0;
}
.p-faq > section:last-of-type {
    border-bottom: 1px solid #C7C7C7;
    margin-bottom: 10rem;
}
.p-faq > section > h2 span {
    display: block;
    font-weight: 500;
    font-size: 2.2rem;
    line-height: 1;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: .2s linear;
}
.p-faq > section > h2 span::before {
    content: '';
    display: block;
    width: 2rem;
    height: 2rem;
    background: url(../img/common/icon_plus.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    right: 1.4rem;
    top: calc(50% + 0.2rem );
    transform: translate(0, -50%);
    transform-origin: center;
    transition: .2s linear;
}
.p-faq > section.open > h2 span::before {
    transform: translate(0, -50%) rotate(225deg);
}
.p-faq > section > dl {
    display: none;
    border-top: 1px solid #C7C7C7;
    padding-top: 4rem;
}
.p-faq > section:not(:last-of-type) > dl {
    padding-bottom: 6rem;
}
.p-faq > section > dl dt {
    color: #0F266B;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.p-faq > section > dl dd {
    margin-bottom: 4rem;
}
.p-recuit-link {
    max-width: 66rem;
    margin-left: auto;
    margin-right: auto;
}
.p-recuit-link p {
    margin-bottom: 5rem;
}
.p-recuit-link__navi {
    display: flex;
    text-align: center;
    justify-content: center;
}
.p-recuit-link__navi .item {
    width: 50%;
    display: flex;
    justify-content: center;
}
.p-recuit-link__navi .item a {
    width: 80%;
    max-width: 20rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #0081C5;
    font-weight: 600;
}
.p-recuit-link__navi .item a img {
    margin-bottom: 1rem;
}
/* Contact Form */
.p-contact {
    color: #0F266B;
    padding-bottom: 14rem;
}
.p-contact-header {
    text-align: center;
    padding: 10rem 0 4rem 0;
}
.p-contact-header h2 {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 4rem;
}
.p-contact-header .en {
    font-family: 'Jost', sans-serif;
    font-size: 4.2rem;
    font-weight: 400;
    margin-bottom: 0.8rem;  
}
.p-contact-header .jp {
    font-size: 1.4rem;
    font-weight: 400;
}
/* Form */
.p-form-wrap {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}
.p-form-wrap form {
    
}
.p-form-wrap form dl {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid #C7C7C7;
    padding: 2rem 0;
}
.p-form-wrap form dl dt {
    width: 30%;
    margin-right: 4%;
    font-weight: 700;
    text-align: right;
}
.p-form-wrap form dl dd {
    width: 66%;
}
.p-form-submit {
    text-align: center;
}
.p-form-submit p {
    margin: 3rem auto;
    font-size: 1.2rem;
    color: #3C3C3C;
}
@media only screen and (max-width: 767px) {
    .p-faq.inner {
        margin-bottom: 10rem;
    }
    .p-faq > section > h2 {
        border-top: 1px solid #C7C7C7;
        padding: 2.2rem 0 2.6rem 0;
    }
    .p-faq > section > h2 span {
        font-size: 1.8rem;
    }
    .p-faq > section > dl dt {
        font-size: 1.5rem;
    }
    .p-contact-header .en {
        font-size: 3.6rem;
    }
    .p-faq > section:last-of-type {
        margin-bottom: 6rem;
    }
    /* Form */
    .p-form-wrap form dl {
        flex-direction: column;
    }
    .p-form-wrap form dl dt {
        width: 100%;
        margin-right: 0;
        margin-bottom: .4rem;
        text-align: left;
    }
    .p-form-wrap form dl dd {
        width: 100%;
    }
    .p-form-submit p {
        text-align: left;
    }
    .p-entry-popup h2 {
        margin-bottom: 1.5rem;
        padding-bottom: 3rem;
    }
    .p-recuit-link p {
        margin-bottom: 4rem;
        line-height: 1.75;
    }
    .p-recuit-link__navi {
        flex-direction: column;
        align-items: center;
    }
    .p-recuit-link__navi .item {
        width: 70%;
    }
    .p-recuit-link__navi .item:first-of-type {
        margin-bottom:3rem;
    }
}
/*----------------------------------------
	育成・福利厚生
----------------------------------------*/
.p-employee-welfare-visual {
    position: relative;
    background-size: cover;
    background-position: center;
}
.p-employee-welfare-visual .inner {
    position: relative;
}
.p-employee-welfare-visual .inner::before {
    content: '';
    display: block;
    padding-top: 90rem;
}
.p-employee-welfare-visual::after {
    position: absolute;
    right: 0;
    bottom: 0;
    content: '';
    display: block;
    width: 60vw;
    height: 100%;
    background: url(../img/people/triangle_main_visual.png) no-repeat right bottom;
    background-size: contain;
}
.p-employee-welfare-visual__copy {
    position: absolute;
    bottom: 10%;
    right: 0;
    z-index: 1;
    line-height: 1;
    font-weight: 500;
}
.p-employee-welfare-visual__copy span {
    display: block;
    color: #fff;
    text-align: right;
}
.p-employee-welfare-visual__copy .en {
    font-family: 'Jost', sans-serif;
    font-size: 6rem;
    letter-spacing: .2rem;
    margin-bottom: 0.8rem;
}
.p-employee-welfare-visual__copy .jp {
    font-size: 1.5rem;
}
/* 育成 */
.p-welfare,
.p-employee {
    position: relative;
}
.p-employee {
    background: url(../img/welfare/bg_employee.svg) no-repeat center;
    background-size: cover;
    color: #0F266B;
    padding: 10rem 0 0;
}
.p-welfare::before,
.p-employee::before {
    display: block;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: absolute;
    top: 6rem;
    font-family: 'Jost', sans-serif;
    font-size: 6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.p-employee::before {
    content: 'EMPLOYEE TRAINNING';
    left: -1rem;
}
.p-employee-heading,
.p-welfare-heading {
    text-align: center;
    margin-bottom: 12rem;
    font-weight: 500;
    position: relative;
}
.p-employee-heading h2,
.p-welfare-heading h2 {
    font-size: 3rem;
    margin-bottom: 1.6rem; 
}
/* 福利厚生 */
.p-welfare {
    background-color: #0F5A8C;
    color: #fff;
    padding: 10rem 0 12rem 0;
}
.p-welfare::before {
    content: 'WELFARE';
    right: -1rem;
}
.p-welfare .inner {
    max-width: 90rem;
}
.p-welfare-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.p-welfare-content dl {
    width: 42%;
    margin-bottom: 6rem;
}
.p-welfare-content dt {
    font-size: 2.4rem;
    line-height: 1;
    padding-bottom: 1.4rem;
    margin-bottom: 1.6rem;
    border-bottom: 1px solid #fff;
}
@media only screen and (max-width: 767px) {
    .p-employee-welfare-visual .inner::before {
        padding-top: 52rem;
    }
    .p-employee-welfare-visual__copy .en {
        font-weight: 600;
        font-size: 3.4rem;
    }
    .p-employee-heading h2,
    .p-welfare-heading h2 {
        font-size: 2.4rem;
    }
    .p-employee-content {
        position: relative;
        width: 100%;
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
    }
    .p-employee-content figure {
        width: 120rem;
    }
    .p-welfare::before,
    .p-employee::before {
        top: 32rem;
        font-size: 4rem;
    }
    .p-welfare {
        padding: 10rem 0 6rem 0;
    }
    .p-welfare::before {
        right: -0.6rem;
    }
    .p-welfare .inner {
        width: 70vw;
    }
    .p-welfare-content dl {
        width: 100%;
        margin-bottom: 8rem;
    }
    .p-welfare-content dt {
        font-size: 2rem;
        text-align: center;
        padding-bottom: 1.8rem;
    }
}
/*----------------------------------------
	仕事を知る
----------------------------------------*/
.p-mission-content {
    max-width: initial;
}
.p-mission-content__lead {
    display: flex;
    justify-content: space-between;
    color: #0F266B;
    max-width: 96rem;
    margin-bottom: 8rem;
}
.p-mission-content__lead h2 {
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
    line-height: 1.5;
    font-size: 3.2rem;
    min-width: fit-content;
    margin-right: 4rem;

}
.p-mission-content__lead p {}
.p-mission-content__list .inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.p-mission-content__list {
    background: url(../img/mission/bg_mission.svg) no-repeat center bottom;
    background-size: cover;
}
.p-mission-content__list .item {
    width: 48%;
    position: relative;
    padding: 5%;
    margin-bottom: 4%;
    color: #fff;
}
.p-mission-content__list .item::after,
.p-mission-content__list .item::before {
    content: '';
    display: block;
    position: absolute;
}
.p-mission-content__list .item::before {
    top: 0;
    left: 0;
    width: 14%;
    height: 14%;
    z-index: 1;
}
.p-mission-content__list .item:nth-of-type(1):before {
    background: url(../img/mission/triangle_mission1.svg) no-repeat left top;
    background-size: contain;
}
.p-mission-content__list .item:nth-of-type(2):before {
    background: url(../img/mission/triangle_mission2.svg) no-repeat left top;
    background-size: contain;
}
.p-mission-content__list .item:nth-of-type(3):before {
    background: url(../img/mission/triangle_mission3.svg) no-repeat left top;
    background-size: contain;
}
.p-mission-content__list .item:nth-of-type(4):before {
    background: url(../img/mission/triangle_mission4.svg) no-repeat left top;
    background-size: contain;
}
.p-mission-content__list .item:nth-of-type(5):before {
    background: url(../img/mission/triangle_mission5.svg) no-repeat left top;
    background-size: contain;
}
.p-mission-content__list .item:nth-of-type(6):before {
    background: url(../img/mission/triangle_mission6.svg) no-repeat left top;
    background-size: contain;
}
.p-mission-content__list .item:nth-of-type(7):before {
    background: url(../img/mission/triangle_mission7.svg) no-repeat left top;
    background-size: contain;
}
.p-mission-content__list .item:nth-of-type(8):before {
    background: url(../img/mission/triangle_mission8.svg) no-repeat left top;
    background-size: contain;
}
.p-mission-content__list .item::after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3c3c3c;
    mix-blend-mode: multiply;
}
.p-mission-content__list .heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    color: #fff;
}
.p-mission-content__list .heading .name {
    display: flex;
    flex-direction: column;
    width: 60%;
    line-height: 1.3;
    font-weight: 700;
}
.p-mission-content__list .heading .name .copy {
    margin-bottom: 2rem;
}
.p-mission-content__list .heading .name .en {
    height: 3.4vw;
    margin-bottom: 0.6rem;
}
.p-mission-content__list .heading .name .en img {
    width: auto;
    max-width: 100%;
    height: 100%;
}
.p-mission-content__list .heading .name .jp {
}
.p-mission-content__list .heading figure {
    width: 40%;
}
.p-mission-content__list .summary {
    position: relative;
    z-index: 1;
    font-size: 1.4rem;
    line-height: 1.75;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.p-mission-content__list .photos {
    position: relative;
    z-index: 1;
}
.p-mission-content__list .photos figure {
    width: 100%;
}
.p-mission-content__list .link {
    position: relative;
    z-index: 1;
    margin-top: 1.4rem;
    text-align: right;
}
.p-mission-content__list .link a {
    color: #fff;
    text-decoration: underline;
}
@media (min-width: 768px) and (max-width: 999px){
    .p-mission-content__lead p br {
        display: none;
    }
    .p-mission-content__list .heading .name .copy br {
        display: inline;
    }
    .p-mission-content__list .heading figure {
        width: 36%;
    }
}
@media only screen and (max-width: 767px) {
    .p-mission-content__lead {
        flex-direction: column;
        text-align: center;
    }
    .p-mission-content__lead h2 {
       font-size: 2.2rem;
        min-width: initial;
        margin-right: 0;
        margin-bottom: 3rem;
    }
    .p-mission-content__lead p {
        letter-spacing: 0;
    }
    .p-mission-content__list .inner {
        flex-direction: column;
    }
    .p-mission-content__list .item {
        width: 100%;
        padding: 4rem 3rem 3rem 3rem;
        margin-bottom: 3rem;
    }
    .p-mission-content__list .item::before {
        width: 6rem;
        height: 6rem;
    }
    .p-mission-content__list .heading .name .en {
        height: 2.6rem;
    }
    .p-mission-content__list .heading figure {
        width: 38%;
    }

    #renewable-energy .heading .name {
        width: 100%;
    }
    #renewable-energy .heading figure {
        position: absolute;
        right: -1rem;
        top: -3rem;
    }
}
/*----------------------------------------
	南国殖産を知る
----------------------------------------*/
.p-key-number {
}
.p-key-number__content {
    background: #324682 url(../img/key_number/bg_key-content.svg) no-repeat center top;
    background-size: cover;
}
.p-key-number__content .inner {
    max-width: 115rem;
    padding: 10rem 0;
}
.p-key-number__content .item {
    width: 100%;
    height: 100%;
    color: #0F266B;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.p-key-number__content .item .title {
    text-align: center;
    font-size: 2.8rem;
    position: relative;
    line-height: 1.3;
    padding-bottom: 1.6rem;
    margin-bottom: 1.6rem;
}
.p-key-number__content .item .title::after {
    content: '';
    display: block;
    height: 1px;
    width: 14rem;
    border-bottom: 1px solid #3c3c3c;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.p-key-number__content .item .content {
    display: flex;
    align-items: baseline;
    width: 100%;
    justify-content: center;
}
.p-key-number__content .item .t-number {
    font-family: 'Oswald', sans-serif;
    line-height: 1;
    letter-spacing: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.p-key-number__content .item .t-small {
    font-size: 5rem;
    line-height: 1.2;
}
/* 従業員 */
.p-key-number__content .item#key1 .t-number {
    font-size: 14rem;
}
.p-key-number__content .item#key1 .t-small {
    font-size: 4rem;
}
.p-key-number__content .item#key1 .content {
    background: url(../img/key_number/bg_key1.svg) no-repeat center;
    background-size: contain;
}
.p-key-number__content .item#key1-1 figure {
    max-width: 29rem;
}
/* 創業 */
.p-key-number__content .item#key2 .t-number {
    font-size: 20rem;
}
.p-key-number__content .item#key2 .content {
    background: url(../img/key_number/bg_key2.svg) no-repeat center;
    background-size: contain;
}
/* 平均有給休暇 */
.p-key-number__content .item#key3 .t-number {
    font-size: 14rem;
}
.p-key-number__content .item#key3 .content {
    background: url(../img/key_number/bg_key3.svg) no-repeat center;
    background-size: contain;
}
/* 平均年齢 */
.p-key-number__content .item#key4 .t-number {
    font-size: 16rem;
}
/* 事業部課数 */
.p-key-number__content .item#key5 .t-number {
    font-size: 8rem;
    margin-right: .5rem;
}
.p-key-number__content .item#key5 .t-small {
    font-size: 2rem;
}
.p-key-number__content .item#key5 .content {
    background: url(../img/key_number/bg_key5.svg) no-repeat center;
    background-size: auto 12rem;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.p-key-number__content .item#key5 .content .meta {
    display: flex;
    align-items: end;
}
.p-key-number__content .item#key5 .content .split {
    display: block;
    width: 1rem;
    height: 1rem;
    background: #0F266B;
    margin: 2rem .3rem 0 1em;
}
.p-key-number__content .item#key5 .content .meta:last-of-type {
    width: 100%;
    margin-top: 1rem;
}

/* 店舗数 */
.p-key-number__content .item#key6 .t-number {
    font-size: 14rem;
}
.p-key-number__content .item#key6 .content {
    background: url(../img/key_number/bg_key6.svg) no-repeat center;
    background-size: auto 90%;
}
.p-key-number__content .item#key7 .t-small,
.p-key-number__content .item#key10 .t-small,
.p-key-number__content .item#key6 .t-small {
    font-size: 4rem;
}
/* 子会社・関連会社 */
.p-key-number__content .item#key7 .t-number {
    font-size: 14rem;
}
.p-key-number__content .item#key7 .content {
    background: url(../img/key_number/bg_key7.svg) no-repeat center;
    background-size: auto 90%;
}
/* 年間休日 */
.p-key-number__content .item#key8 .t-number {
    font-size: 16rem;
}
.p-key-number__content .item#key8 .content {
    background: url(../img/key_number/bg_key8.svg) no-repeat center;
    background-size: auto 80%;
}
/* 発電量 */
.p-key-number__content .item#key9 {
    background: url(../img/key_number/bg_key9.svg) no-repeat center bottom;
    background-size: 60% auto;
}
.p-key-number__content .item#key9 .title {
    font-size: 2.4rem;
}
.p-key-number__content .item#key9 .t-number {
    font-size: 12rem;
}
/* 平均勤続年数 */
.p-key-number__content .item#key10 .t-number {
    font-size: 14rem;
}.p-key-number__content .item#key10 .content {
    background: url(../img/key_number/bg_key10.svg) no-repeat center;
    background-size: contain;
}
/* レイアウト */
.l-key-number {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.l-key-number__col1,
.l-key-number__col2,
.l-key-number__col3 {
    background-color: #fff;
    padding: 6% 0;
    margin-bottom: 2%;
}
.l-key-number__col2 {
    width: 66%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.l-key-number__col2 .item {
    width: 50%;
}
.l-key-number__col2 .item:first-of-type {
}
.l-key-number__col2 .item:last-of-type {
    width: 36%;
    max-width: 28rem;
}
.l-key-number__col2 .item#key5 {
    width: 40%;
}
.l-key-number__col2 .item#key6 {
    width: 40%;
}
.l-key-number__col3 {
    width: 32%;
}
.l-key-number__col1 {
    width: 32%;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media only screen and (max-width: 999px) {
    .p-key-number__content .item .title {
        font-size: 2.2rem;
    }
    .l-key-number__col2 .item#key6,
    .l-key-number__col2 .item#key5 {
        width: 43%;
    }
    .p-key-number__content .item#key1 .t-number {
        font-size: 10rem;
    }
    .p-key-number__content .item#key2 .t-number {
        font-size: 15rem;
    }
    .p-key-number__content .item#key3 .t-number {
        font-size: 12rem;
    }
    .p-key-number__content .item#key4 .t-number {
        font-size: 12rem;
    }
    .p-key-number__content .item#key5 .t-number {
        font-size: 5rem;
    }
    .p-key-number__content .item#key6 .t-number {
        font-size: 10rem;
    }
    .p-key-number__content .item#key7 .t-number {
        font-size: 10rem;
    }
    .p-key-number__content .item#key8 .t-number,
    .p-key-number__content .item#key9 .t-number {
        font-size: 10rem;
    }
    .p-key-number__content .item#key10 .t-number {
        font-size: 10rem;
    }
    .p-key-number__content .item .t-small {
        font-size: 3rem;
    }
    .p-key-number__content .item#key1 .t-small,
    .p-key-number__content .item#key7 .t-small,
    .p-key-number__content .item#key10 .t-small,
    .p-key-number__content .item#key6 .t-small {
        font-size: 3rem;
    }

}
@media only screen and (max-width: 767px) {
    .p-key-number .p-employee-welfare-visual {
        background-position: right;
    }
    .p-key-number__content .item .title {
        font-size: 1.8rem;
    }
    .p-key-number__content .item#key9 .title {
        font-size: 1.8rem;
    }
    .p-key-number__content .item .t-small {
        font-size: 2.6rem;
    }
    .l-key-number__col2 .item:last-of-type {
        width: 40%;
        max-width: 28rem;
    }
    .p-key-number__content .item .title::after {
        width: 7rem
    }
    .p-key-number__content .item .content {
        background-size: contain !important;
    }
    .p-key-number__content .item#key1 .t-number {
        font-size: 6rem;
    }
    .p-key-number__content .item#key1 .t-small {
        font-size: 2rem;
    }
    .p-key-number__content .item#key2 .t-number {
        font-size: 10rem;
    }
    .p-key-number__content .item#key3 .t-number {
        font-size: 8rem;
    }
    .p-key-number__content .item#key4 .t-number {
        font-size: 7rem;
    }
    .p-key-number__content .item#key5 .t-number {
        font-size: 4rem;
        margin-right: 0;
    }
    .p-key-number__content .item#key5 .t-small {
        font-size: 1.1rem;
    }
    .p-key-number__content .item#key6 .t-number,
    .p-key-number__content .item#key7 .t-number,
    .p-key-number__content .item#key8 .t-number,
    .p-key-number__content .item#key9 .t-number,
    .p-key-number__content .item#key10 .t-number {
        font-size: 8rem;
    }
    .p-key-number__content .item#key6 .t-small,
    .p-key-number__content .item#key7 .t-small,
    .p-key-number__content .item#key8 .t-small,
    .p-key-number__content .item#key9 .t-small,
    .p-key-number__content .item#key10 .t-small {
        font-size: 1.6rem;
    }
    /* レイアウト */
    .l-key-number__col1,
    .l-key-number__col2,
    .l-key-number__col3 {
        padding: 6% 0 8% 0;
        margin-bottom: 4%;
    }
    .l-key-number__col2 {
        width: 100%;
    }
    .l-key-number__col1 {
        width: 48%;
    }
    .l-key-number__col3 {
        width: 48%;
    }
}
/*----------------------------------------
	ひとを知る（一覧）
----------------------------------------*/
.p-people-list {
    padding-bottom: 10rem;
}
.p-people-list .inner {
    max-width: 116rem;
}
.p-people-list ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.p-people-list ul li {
    width: 46%;
    position: relative;
    margin-bottom: 6%;
}
.p-people-list ul li a {
    display: block;
}
.p-people-list ul li a figure {
    width: 100%;
    overflow: hidden;
}
.p-people-list ul li a figure img {
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: 250ms;
}
.p-people-list ul li:hover a figure img {
    transform: scale(1.2);
}
.p-people-list__content {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 10rem 2rem 4rem 0;
}
.p-people-list__content .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    mix-blend-mode: multiply;
}
.p-people-list__content h2 {
    position: absolute;
    left: -2rem;
    bottom: 30%;
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.p-people-list__content h2 span {
    font-size: 2.3rem;
    letter-spacing: .3rem;
    color: #0F266B;
    display: block;
    background-color: #fff;
    padding: 0.8rem 1.2rem 1.2rem 1.2rem;
    margin-bottom: 0.8rem;
    width: fit-content;
}
.p-people-list__content .profile {
    position: relative;
    color: #fff;
    text-align: right;
}
.p-people-list__content .profile .name {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 1rem;
}
.p-people-list__content .profile .name .jp {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}
.p-people-list__content .profile .name .en {
    font-family: 'Jost', sans-serif;
    font-size: 1.3rem;
}
.p-people-list__content .profile .division {
    font-size: 1.4rem;
    line-height: 1.3;
}
@media (min-width: 768px) and (max-width: 999px){
    .p-people-list__content h2 span {
        font-size: 1.8rem;
    }
    .p-people-list__content .profile .name .jp {
        font-size: 1.8rem;
    }
    .p-people-list__content {
        padding-bottom: 2rem;
    }
}
@media only screen and (max-width: 767px) {
    .p-people-list .inner {
        width: 80vw;
    }
    .p-people-list ul {
        flex-direction: column;
    }
    .p-people-list ul li {
        width: 100%;
        margin-bottom: 10%;
    }
    .p-people-list__content {
        padding: 8rem 1.6rem 2rem 0;
    }
    .p-people-list__content h2 span {
        font-size: 1.3rem;
        letter-spacing: .05rem;
        padding: 0.8rem 0.8rem 0.8rem 0.8rem;
    }
    .p-people-list__content .profile .name .jp {
        font-size: 1.5rem;
    }
    .p-people-list__content .profile .name .en {
        font-size: 1.1rem;
    }
    .p-people-list__content .profile .division {
        font-size: 1.1rem;
    }
}
