@charset "UTF-8";
/* 使用例
@use "global" as g;
@use "sass:map";

.hoge {
z-index: map.get(g.$layer, "header");
}

相対的な順番は、共通定義したドロワーの値から
z-index: map.get($layer, "drawer") + 1;
あるいは
z-index: map.get($layer, "drawer") - 1;
などして制御。
*/

@font-face {
    font-family: 'bananaslipplus';
    src: url(../fonts/bananaslipplus.woff) format("woff");
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "MS Ｐゴシック", "MS PGothic", sans-serif;
    color: #333333;
    letter-spacing: 0.02em;
}

img {
    width: 100%;
}

.banana {
    font-family: 'bananaslipplus';
}

@media (min-width: 768px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}

.l-inner {
    width: 1120px;
    max-width: 89.3333333333vw;
    margin: auto;
}

.p-drawerContent {
    background: #fff;
    width: 301px;
    height: 100vh;
    right: 0;
    top: 70px;
    position: fixed;
    z-index: 34;
    transform: translateX(105%);
    transition: transform 0.5s ease 0s;
}

.p-drawerContent.isActive {
    transform: translateX(0);
}

.p-drawerContent__items {
    margin-top: 24px;
}

.p-drawerContent__item a {
    display: block;
    padding: 18px 0;
    position: relative;
    letter-spacing: 0.02em;
    color: #333;
    border-bottom: 1px dotted #e4e4e4;
    width: 234px;
    max-width: 78%;
    margin: auto;
    transition: opacity 0.3s;
    cursor: pointer;
}

.p-drawerContent__item a:hover {
    opacity: 0.6;
}

.p-drawerContent__subList {
    background: #f0f0f0;
    width: 100%;
}

.p-drawerContent__subList.js-accordion-content {
    display: none;
}

.p-drawerContent__subItem a {
    color: #398abe;
}

.p-drawerContent .js-accordion-title {
    position: relative;
}

.p-drawerContent .js-accordion-title::before,
.p-drawerContent .js-accordion-title::after {
    position: absolute;
    content: "";
    display: inline-block;
    background: #398abe;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
}

.p-drawerContent .js-accordion-title::before {
    width: 14px;
    height: 1px;
    right: 0;
}

.p-drawerContent .js-accordion-title::after {
    width: 1px;
    height: 14px;
    right: 7px;
}

.p-drawerContent .js-accordion-title.open::after {
    transform: translateY(-50%) rotate(90deg);
}

.p-drawerBackground {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 33;
    display: none;
}

.p-drawerBackground.isActive {
    display: block;
}

.p-drawerIcon {
    position: fixed;
    width: 80px;
    height: 70px;
    top: 0;
    right: 0;
    background: #388abd;
    z-index: 1035;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.p-drawerIcon.isActive {
    background: #388abd;
}

.p-drawerIcon.isActive .p-drawerIcon__bar1 {
    transform: rotate(-30deg);
    top: 8px;
}

.p-drawerIcon.isActive .p-drawerIcon__bar2 {
    display: none;
}

.p-drawerIcon.isActive .p-drawerIcon__bar3 {
    transform: rotate(30deg);
    top: 8px;
}

.p-drawerIcon__bars {
    width: 40px;
    height: 18px;
    display: block;
    position: relative;
}

.p-drawerIcon__bar1,
.p-drawerIcon__bar2,
.p-drawerIcon__bar3 {
    position: absolute;
    width: 40px;
    height: 2px;
    background: #fff;
    top: 0;
    left: 0;
    transition: 0.3s;
}

.p-drawerIcon__bar1 {
    top: 0;
}

.p-drawerIcon__bar2 {
    top: 28px;
}

.p-drawerIcon__bar3 {
    top: 12px;
}

.p-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100%;
}

.p-header__logo {
    margin-top: 20px;
    margin-left: 20px;
}

@media screen and (max-width: 767px) {
    .p-header__logo {
        margin-top: 12px;
        margin-left: 12px;
    }
}

.p-header__logoImg {
    width: 240px;
}

@media screen and (max-width: 767px) {
    .p-header__logoImg {
        width: 130px;
    }
}

.p-header__logoText {
    font-size: 0.9375rem;
    font-weight: 500;
    font-family: "Barlow", sans-serif;
    color: #fff;
    margin-top: 8px;
    display: block;
}

@media screen and (max-width: 767px) {
    .p-header__logoText {
        font-size: 0.625rem;
        display: inline-block;
        margin-left: 4px;
    }
}

.p-header__nav {
    background: #fff;
    color: #1b2e6c;
    padding: 26px 32px;
    position: fixed;
    top: 0;
    right: 80px;
    display: inline-block;
    z-index: 35;
}

@media screen and (max-width: 767px) {
    .p-header__nav {
        display: none;
    }
}

.p-header__navList {
    display: flex;
}

.p-header__navItem.--slash::before {
    content: "／";
    display: inline-block;
    margin-left: 10px;
    margin-right: 6px;
}

.p-header__navLink {
    transition: opacity 0.3s;
}

.p-header__navLink:hover {
    opacity: 0.6;
}

.p-mv {
    overflow: hidden;
}

.p-mv .swiper-slide img {
    width: 100%;
    height: auto;
}

.p-about {
    background: #59a8d7;
    padding: 80px 0 170px;
    color: #fff;
    z-index: 0;
}

@media screen and (max-width: 767px) {
    .p-about {
        padding: 60px 0;
    }
}

.p-about__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px 0;
}

@media screen and (max-width: 767px) {
    .p-about__inner {
        justify-content: center;
    }
}

.p-about__text {
    font-size: 1.375rem;
    font-weight: 500;
    line-height: 2.1818181818;
    margin-top: 40px;
}

.p-about__text span {
    font-family: 'bananaslipplus';
    font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
    .p-about__text {
        font-size: 0.9375rem;
    }
}

.p-about__caution {
    font-size: 3.125rem;
    font-family: 'bananaslipplus';
    margin-top: 10px;
}

@media screen and (max-width: 767px) {
    .p-about__caution {
        font-size: 1.875rem;
        margin-top: 0;
    }
}

.p-about__lead {
    font-size: 2.875rem;
    margin-top: 50px;
}

@media screen and (max-width: 767px) {
    .p-about__lead {
        font-size: 1.6875rem;
        margin-top: 30px;
    }
}

.p-about__lead .--squareWrap {
    display: inline-flex;
    gap: 4px;
}

.p-about__lead .--square {
    font-family: 'bananaslipplus';
    background: #f67d7d;
    border-radius: 5px;
    width: 52px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .p-about__lead .--square {
        width: 30px;
        height: 30px;
    }
}

.p-sectionHead {
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .p-sectionHead {
        text-align: center;
    }
}

.p-sectionHead__lead {
    font-size: 1.75rem;
    font-weight: 600;
}

@media screen and (max-width: 767px) {
    .p-sectionHead__lead {
        font-size: 0.9375rem;
    }
}

.p-sectionHead__lead .--caution {
    font-family: 'bananaslipplus';
    font-size: 2.5rem;
    text-decoration: underline;
    text-decoration-thickness: 8px;
    text-decoration-color: #f0cc0f;
    text-underline-offset: -2px;
}

@media screen and (max-width: 767px) {
    .p-sectionHead__lead .--caution {
        font-size: 1.5rem;
        text-decoration-thickness: 4px;
    }
}

.p-sectionHead__lead.--decoration::before,
.p-sectionHead__lead.--decoration::after {
    content: "";
    width: 3px;
    height: 40px;
    background: #fff;
    display: inline-block;
    margin-bottom: -8px;
}

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

    .p-sectionHead__lead.--decoration::before,
    .p-sectionHead__lead.--decoration::after {
        width: 2px;
        height: 20px;
        margin-bottom: -4px;
    }
}

.p-sectionHead__lead.--decoration::before {
    transform: rotate(-45deg);
    margin-right: 26px;
}

@media screen and (max-width: 767px) {
    .p-sectionHead__lead.--decoration::before {
        margin-right: 16px;
    }
}

.p-sectionHead__lead.--decoration::after {
    transform: rotate(45deg);
    margin-left: 26px;
}

@media screen and (max-width: 767px) {
    .p-sectionHead__lead.--decoration::after {
        margin-left: 16px;
    }
}

.p-sectionHead__ttl {
    font-size: 5.125rem;
    font-weight: 700;
    font-family: "Barlow", sans-serif;
}

@media screen and (max-width: 767px) {
    .p-sectionHead__ttl {
        font-size: 2.5rem;
    }
}

.p-sectionHead__ttl.--outline {
    color: transparent;
    -webkit-text-stroke: 2px #FFF;
    text-stroke: 2px #FFF;
}

@media screen and (max-width: 767px) {
    .p-sectionHead__ttl.--outline {
        -webkit-text-stroke: 1px #FFF;
        text-stroke: 1px #FFF;
    }
}

.p-sectionHead__text {
    font-size: 1.1875rem;
    font-weight: 500;
    margin-top: 10px;
}

@media screen and (max-width: 767px) {
    .p-sectionHead__text {
        font-size: 0.8125rem;
        margin-top: 4px;
    }
}

.p-checker {
    color: #398abe;
    /* モーダル */
    /* モーダルアニメーション */
}

.p-checker__start {
    text-align: center;
    background: #fff;
    padding: 60px 40px 96px;
    position: relative;
    box-shadow: 0px 0px 15px -5px #777777;
}

@media screen and (max-width: 767px) {
    .p-checker__start {
        padding: 30px 20px 50px;
    }
}

.p-checker__start::after {
    position: absolute;
    content: "";
    background: url(../img/img_checker_01.png) no-repeat center center/contain;
    width: 100%;
    height: 35.619047619%;
    /* bottom: -5px; */
    bottom: 0;
    left: 0;
}

.p-checker__startText {
    font-size: 1.75rem;
    font-size: 28px;
    letter-spacing: 0.06em;
    font-weight: 600;
}

@media screen and (max-width: 767px) {
    .p-checker__startText {
        font-size: 1.0625rem;
    }
}

.p-checker__startTtl {
    font-size: 3.00rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-top: 14px;
    line-height: 1.10;
}

@media screen and (max-width: 767px) {
    .p-checker__startTtl {
        font-size: 2.00rem;
    }
}

.p-checker__startTtl .--caution {
    font-size: 4.00rem;
    font-family: 'bananaslipplus';
    font-weight: 300;
    letter-spacing: -0.1em;
}

@media screen and (max-width: 767px) {
    .p-checker__startTtl .--caution {
        font-size: 2.50rem;
    }
}

.p-checker__startTtl .--large {
    font-size: 4.00rem;
}

@media screen and (max-width: 767px) {
    .p-checker__startTtl .--large {
        font-size: 2.50rem;
    }
}

.p-checker__startStart {
    font-family: "Barlow", sans-serif;
    font-size: 2.625rem;
    font-weight: 700;
    color: #f67d7d;
    position: relative;
    margin-top: 40px;
}

@media screen and (max-width: 767px) {
    .p-checker__startStart {
        font-size: 1.625rem;
        margin-top: 30px;
    }
}

.p-checker__startStart::after {
    position: absolute;
    content: "";
    background: url(../img/ico_arrow_01.svg) no-repeat center center/contain;
    width: 30px;
    height: 32px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 10px;
}

@media screen and (max-width: 767px) {
    .p-checker__startStart::after {
        width: 18px;
        height: 18px;
        margin-left: 5px;
    }
}

.p-checker .modal-overlay {
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
}

.p-checker .modal-container {
    background-color: #fff;
    max-height: 80vh;
    max-width: 540px;
    overflow-y: auto;
    width: 80%;
}

.p-checker .modal-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.p-checker .modal-close {
    background: transparent;
    border: 0;
}

.p-checker .modal-header .modal-close::before {
    content: "✕";
    font-size: 2.5rem;
    margin-right: 10px;
}

.p-checker .box01 {
    background-color: #ccc;
    height: 200px;
    margin: 0 auto;
    width: 80%;
}

.p-checker .box02 {
    background-color: #ccc;
    height: 200px;
    margin: 0 auto;
    width: 80%;
}

@keyframes mmfadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes mmfadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes mmslideIn {
    from {
        transform: translateY(15%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes mmslideOut {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10%);
    }
}

.p-checker .micromodal-slide {
    display: none;
}

.p-checker .micromodal-slide.is-open {
    display: block;
}

.p-checker .micromodal-slide[aria-hidden=false] .modal-overlay {
    animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.p-checker .micromodal-slide[aria-hidden=false] .modal-container {
    animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.p-checker .micromodal-slide[aria-hidden=true] .modal-overlay {
    animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.p-checker .micromodal-slide[aria-hidden=true] .modal-container {
    animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.p-checker .micromodal-slide .modal-container,
.p-checker .micromodal-slide .modal-overlay {
    will-change: transform;
}

.question__body {
    margin-left: 40px;
    padding-bottom: 50px;
    position: relative;
}

@media screen and (max-width: 767px) {
    .question__body {
        margin-left: 20px;
        padding-bottom: 25px;
    }
}

.question__body::after {
    content: "";
    position: absolute;
    background: no-repeat center center/contain;
    display: inline-block;
}

.question__body.--q1::after {
    background-image: url(../img/img_quiz_01.png?2);
    width: 270px;
    height: 280px;
    bottom: 0px;
    right: 0;
}

@media screen and (max-width: 767px) {
    .question__body.--q1::after {
        width: 186px;
        height: 193px;
    }
}

.question__body.--q2::after {
    background-image: url(../img/img_quiz_02.png?2);
    width: 160px;
    height: 230px;
    bottom: 0px;
    right: 0;
    z-index: -1;
}

@media screen and (max-width: 767px) {
    .question__body.--q2::after {
        width: 184px;
        height: 195.2px;
        right: -30px;
    }
}

.question__body.--q3::after {
    background-image: url(../img/img_quiz_03.png?2);
    width: 240px;
    height: 220px;
    bottom: 0px;
    right: 0px;
    z-index: -1;
}

@media screen and (max-width: 767px) {
    .question__body.--q3::after {
        width: 168px;
        height: 155px;
    }
}

.question__body.--q4::after {
    background-image: url(../img/img_quiz_04.png?2);
    width: 180px;
    height: 240px;
    bottom: 0px;
    right: 0px;
    z-index: -1;
}

@media screen and (max-width: 767px) {
    .question__body.--q4::after {
        width: 153.6px;
        height: 192px;
        right: -20px;
    }
}

.question__body.--q5::after {
    background-image: url(../img/img_quiz_05.png?2);
    width: 180px;
    height: 220px;
    bottom: 0px;
    right: 0px;
    z-index: -1;
}

@media screen and (max-width: 767px) {
    .question__body.--q5::after {
        width: 126px;
        height: 154px;
    }
}

.question__body.--result {
    margin-left: 0;
    padding-bottom: 20px;
}

.question__body.--result::after {
    background-image: url(../img/img_quiz_06.png?2);
    width: 100%;
    height: 186px;
    bottom: -5px;
    right: 0;
    z-index: -1;
}

.question__body.--result.a0::after {
    background-image: url(../img/img_quiz_06_a0.png);
}

.question__body.--result.a20::after {
    background-image: url(../img/img_quiz_06_a20.png);
}

.question__body.--result.a40::after {
    background-image: url(../img/img_quiz_06_a40.png);
}

.question__body.--result.a60::after {
    background-image: url(../img/img_quiz_06_a60.png);
}

.question__body.--result.a80::after {
    background-image: url(../img/img_quiz_06_a80.png);
}

.question__body.--result.a100::after {
    background-image: url(../img/img_quiz_06_a100.png);
}

.question__number {
    font-size: 7.125rem;
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    margin-top: 40px;
}

@media screen and (max-width: 767px) {
    .question__number {
        font-size: 3.75rem;
    }
}

.question__text {
    font-size: 2.175rem;
    font-weight: 600;
    margin-top: 10px;
    line-height: 1.5;
}

@media screen and (max-width: 767px) {
    .question__text {
        font-size: 1.25rem;
    }
}

.question__btnWrap {
    display: flex;
}

.question__btn {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 3.25rem;
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    height: 150px;
}

@media screen and (max-width: 767px) {
    .question__btn {
        height: 100px;
        font-size: 2.375rem;
    }
}

.question__btn.--yes {
    background: #f67d7d;
}

.question__btn.--no {
    background: #1b2e6c;
}

.question__resultText {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.2258064516;
    text-align: center;
}

.question__resultText span {
    font-family: 'bananaslipplus';
    font-weight: 300;
}

@media screen and (max-width: 767px) {
    .question__resultText {
        font-size: 1.875rem;
    }
}

.question__resultText .--large {
    font-size: 3.875rem;
}

@media screen and (max-width: 767px) {
    .question__resultText .--large {
        font-size: 2.375rem;
    }
}

.question__resultNumber {
    font-size: 7.125rem;
    font-family: "Barlow", sans-serif;
    line-height: 1;
    color: #f67d7d;
}

@media screen and (max-width: 767px) {
    .question__resultNumber {
        font-size: 5rem;
    }
}

.question__resultPercentSign {
    color: #f67d7d;
}

.question__restart {
    text-decoration: underline;
    font-size: 1.125rem;
    margin-left: 25%;
    margin-top: 120px;
}

@media screen and (max-width: 767px) {
    .question__restart {
        font-size: 1rem;
    }
}

.question__entry {
    font-family: "Barlow", sans-serif;
    font-size: 2.625rem;
    font-weight: 600;
    color: #fff;
    background: #f67d7d;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
    position: relative;
}

@media screen and (max-width: 767px) {
    .question__entry {
        height: 80px;
        font-size: 1.875rem;
    }
}

.question__entry::after {
    content: "";
    position: absolute;
    background: url(../img/ico_arrow_02.svg) no-repeat center center/contain;
    width: 26px;
    height: 26px;
    display: inline-block;
    top: 54%;
    transform: translateY(-50%);
    left: calc(50% + 70px);
}

.p-workStyle {
    position: relative;
    z-index: 2;
    padding: 0 0 80px;
}

@media screen and (max-width: 767px) {
    .p-workStyle {
        padding: 36px 0 50px;
    }
}

.p-workStyle::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 50px;
    background: #fff;
    z-index: 3;
    bottom: 100%;
    display: inline-block;
    left: -58%;
}

@media screen and (max-width: 1179px) {
    .p-workStyle::before {
        left: -40%;
    }
}

@media screen and (max-width: 767px) {
    .p-workStyle::before {
        display: none;
    }
}

.p-workStyle__head {
    color: #398abe;
    position: relative;
    top: -20px;
    z-index: 4;
}

@media screen and (max-width: 767px) {
    .p-workStyle__head {
        top: 0;
    }
}

.p-workStyle__inner {
    width: 1400px;
    max-width: 100%;
    margin: auto;
}

.p-workStyle__media {
    position: relative;
    z-index: 1;
    margin-top: 60px;
}

@media screen and (max-width: 767px) {
    .p-workStyle__media {
        margin-top: 30px;
    }
}

.p-workStyle__mediaImg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 70%;
}

@media screen and (max-width: 767px) {
    .p-workStyle__mediaImg {
        width: 100%;
        position: static;
    }
}

.p-workStyle__mediaBody {
    z-index: 2;
    /* width: 614px; */
    width: fit-content;
    margin-left: auto;
    /* padding-right: 140px; */
    padding-right: 80px;
    padding-bottom: 10vw;
}

@media screen and (max-width: 1179px) {
    .p-workStyle__mediaBody {
        padding-bottom: 0;
        padding-right: 0;
        width: 400px;
    }
}

@media screen and (max-width: 767px) {
    .p-workStyle__mediaBody {
        width: 100%;
    }
}

.p-workStyle__mediaNumber {
    background: #bf272d;
    display: inline-block;
    color: #fff;
    font-size: 1.625rem;
    padding: 5px 18px;
    margin-top: 60px;
}

@media screen and (max-width: 767px) {
    .p-workStyle__mediaNumber {
        font-size: 1.125rem;
        padding: 5px;
        margin-top: -30px;
        margin-left: 20px;
        margin-right: 20px;
    }
}

.p-workStyle__mediaNumber .--edge {
    font-family: "Barlow", sans-serif;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    text-stroke: 1px #fff;
    font-size: 2rem;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .p-workStyle__mediaNumber .--edge {
        font-size: 1.375rem;
    }
}

.p-workStyle__mediaNumber .--primary {
    font-family: 'bananaslipplus';
    font-size: 2.0rem;
}

.p-workStyle__mediaLead {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin-top: 30px;
}

.p-workStyle__mediaLead01 {
    margin-right: 40px;
}

@media screen and (max-width: 767px) {
    .p-workStyle__mediaLead {
        font-size: 1.5rem;
        margin-top: 0px;
    }

    .p-workStyle__mediaLead01 {
        margin-right: 0;
    }
}

.p-workStyle__mediaLead .--bgWhite {
    background: #fff;
    display: inline-block;
    padding: 5px 18px;
}

.p-workStyle__mediaLead .--danger {
    font-size: 2.5rem;
}

.--green {
    color: #23baa9;
}

.--green_bg {
    background: #23baa9;
}

.--pink {
    color: #f67d7d;
}

.--pink_bg {
    background: #f67d7d;
}

.--green02 {
    color: #a1d343;
}

.--green02_bg {
    background: #a1d343;
}

.--blue {
    color: #8f8fd8;
}

.--blue_bg {
    background: #8f8fd8;
}

@media screen and (max-width: 767px) {
    .p-workStyle__mediaLead .--bgWhite {
        padding: .5rem 1rem;
    }

    .p-workStyle__mediaLead .--danger {
        font-size: 1.5rem;
    }
}

.p-workStyle__mediaBodyFooterWrap {
    display: flex;
    justify-content: flex-end;
}

@media screen and (max-width: 1179px) {
    .p-workStyle__mediaBodyFooterWrap {
        justify-content: flex-start;
    }
}

@media screen and (max-width: 767px) {
    .p-workStyle__mediaBodyFooterWrap {
        display: block;
        width: 100%;
    }
}

.p-workStyle__mediaBodyFooter {
    margin-top: 60px;
}

@media screen and (max-width: 767px) {
    .p-workStyle__mediaBodyFooter {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        padding: 0 20px;
        margin-top: 20px;
    }
}

.p-workStyle__mediaBodyFooterText {
    font-size: 1.125rem;
}

@media screen and (max-width: 767px) {
    .p-workStyle__mediaBodyFooterText {
        font-size: 0.8125rem;
    }
}

.p-workStyle__mediaBodyFooter .--large {
    font-size: 1.875rem;
    font-weight: 600;
    font-family: "Barlow", sans-serif;
}

@media screen and (max-width: 767px) {
    .p-workStyle__mediaBodyFooter .--large {
        font-size: 1.25rem;
    }
}

.p-workStyle__mediaBodyFooterBtn {
    color: #398abe;
    font-size: 1.5rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s;
    margin-top: 50px;
}

@media screen and (max-width: 767px) {
    .p-workStyle__mediaBodyFooterBtn {
        font-size: 1rem;
        margin-top: 0;
    }
}

.p-workStyle__mediaBodyFooterBtn:hover {
    opacity: 0.6;
}

.p-workStyle__mediaBodyFooterBtn:after {
    content: "";
    background: url(../img/ico_arrow_03.svg) no-repeat center center/contain;
    width: 24px;
    height: 24px;
    display: inline-block;
}

@media screen and (max-width: 767px) {
    .p-workStyle__mediaBodyFooterBtn:after {
        width: 18px;
        height: 18px;
    }
}

.p-workStyle__mediaRev {
    position: relative;
    z-index: 1;
    margin-top: 60px;
}

@media screen and (max-width: 767px) {
    .p-workStyle__mediaRev {
        margin-top: 30px;
    }
}

.p-workStyle__mediaRevImg {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    width: 70%;
}

@media screen and (max-width: 767px) {
    .p-workStyle__mediaRevImg {
        width: 100%;
        position: static;
    }
}

.p-workStyle__mediaRevBody {
    z-index: 2;
    width: fit-content;
    margin-left: 50px;
    padding-bottom: 6vw;
}

@media screen and (max-width: 1179px) {
    .p-workStyle__mediaRevBody {
        margin-left: 0;
        padding-bottom: 0;
        padding-right: 0;
        width: 400px;
    }
}

@media screen and (max-width: 767px) {
    .p-workStyle__mediaRevBody {
        width: 100%;
    }
}

.p-workStyle__mediaRevNumber {
    display: inline-block;
    color: #fff;
    font-size: 1.625rem;
    padding: 5px 18px;
    margin-top: 60px;
}

@media screen and (max-width: 767px) {
    .p-workStyle__mediaRevNumber {
        font-size: 1.125rem;
        padding: 5px;
        margin-top: -30px;
        margin-left: 20px;
        margin-right: 20px;
    }
}

.p-workStyle__mediaRevNumber .--edge {
    font-family: "Barlow", sans-serif;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    text-stroke: 1px #fff;
    font-size: 2rem;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .p-workStyle__mediaRevNumber .--edge {
        font-size: 1.375rem;
    }
}

.p-workStyle__mediaRevNumber .--primary {
    font-family: 'bananaslipplus';
    font-size: 2.0rem;
}

.p-workStyle__mediaRevLead {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin-top: 30px;
}

@media screen and (max-width: 767px) {
    .p-workStyle__mediaRevLead {
        font-size: 1.5rem;
        margin-top: 0px;
    }
}

.p-workStyle__mediaRevLead .--bgWhite {
    background: #fff;
    display: inline-block;
    padding: 5px 18px 5px 0;
}

@media screen and (max-width: 767px) {
    .p-workStyle__mediaRevLead .--bgWhite {
        padding-left: 18px;
    }
}

.p-workStyle__mediaRevLead .--danger {
    color: #bf272d;
    font-size: 3.5rem;
}

@media screen and (max-width: 767px) {
    .p-workStyle__mediaRevLead .--danger {
        font-size: 2rem;
    }
}

.p-workStyle__mediaRevBodyFooterWrap {
    display: flex;
}

@media screen and (max-width: 767px) {
    .p-workStyle__mediaRevBodyFooterWrap {
        display: block;
        width: 100%;
    }
}

.p-workStyle__mediaRevBodyFooter {
    margin-top: 60px;
}

@media screen and (max-width: 767px) {
    .p-workStyle__mediaRevBodyFooter {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        padding: 0 20px;
        margin-top: 20px;
    }
}

.p-workStyle__mediaRevBodyFooterText {
    font-size: 1.125rem;
}

@media screen and (max-width: 767px) {
    .p-workStyle__mediaRevBodyFooterText {
        font-size: 0.8125rem;
    }
}

.p-workStyle__mediaRevBodyFooter .--large {
    font-size: 1.875rem;
    font-weight: 600;
    font-family: "Barlow", sans-serif;
}

@media screen and (max-width: 767px) {
    .p-workStyle__mediaRevBodyFooter .--large {
        font-size: 1.25rem;
    }
}

.p-workStyle__mediaRevBodyFooterBtn {
    color: #398abe;
    font-size: 1.5rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s;
    margin-top: 50px;
}

@media screen and (max-width: 767px) {
    .p-workStyle__mediaRevBodyFooterBtn {
        font-size: 1rem;
        margin-top: 0;
    }
}

.p-workStyle__mediaRevBodyFooterBtn:hover {
    opacity: 0.6;
}

.p-workStyle__mediaRevBodyFooterBtn:after {
    content: "";
    background: url(../img/ico_arrow_03.svg) no-repeat center center/contain;
    width: 24px;
    height: 24px;
    display: inline-block;
}

@media screen and (max-width: 767px) {
    .p-workStyle__mediaRevBodyFooterBtn:after {
        width: 18px;
        height: 18px;
    }
}

.p-jobDescription {
    background: #59A8D7;
    padding: 80px 0;
}

@media screen and (max-width: 767px) {
    .p-jobDescription {
        padding: 40px 0;
    }
}

.p-jobDescription__head {
    text-align: center;
    color: #fff;
}

.p-jobDescription__media {
    display: flex;
    margin-top: 60px;
}

@media screen and (max-width: 767px) {
    .p-jobDescription__media {
        flex-direction: column-reverse;
        margin-left: calc(50% - 50vw);
    }
}

.p-jobDescription__mediaBody {
    color: #fff;
    text-align: right;
    width: 56.25%;
    padding-right: 120px;
    position: relative;
}

@media screen and (max-width: 767px) {
    .p-jobDescription__mediaBody {
        width: 100%;
        padding-right: 34px;
        margin-top: -14px;
    }
}

.p-jobDescription__mediaBody.--circle::before {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #f1cc00;
    display: inline-block;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    font-weight: 600;
    font-family: "Barlow", sans-serif;
    color: #398abe;
    top: 0;
    right: 50px;
}

@media screen and (max-width: 767px) {
    .p-jobDescription__mediaBody.--circle::before {
        width: 25px;
        height: 25px;
        font-size: 1.25rem;
        right: 0;
    }
}

.p-jobDescription__mediaBody.--01::before {
    content: "1";
}

.p-jobDescription__mediaBody.--02::before {
    content: "2";
}

.p-jobDescription__mediaBody.--03::before {
    content: "3";
}

.p-jobDescription__mediaBody.--bar::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 92%;
    background: #fff;
    display: inline-block;
    right: 74px;
    top: 64px;
}

@media screen and (max-width: 767px) {
    .p-jobDescription__mediaBody.--bar::after {
        right: 12px;
        top: 40px;
        height: 260%;
    }
}

.p-jobDescription__mediaTtl {
    font-size: 3rem;
    font-weight: 600;
    font-family: "Barlow", sans-serif;
}

@media screen and (max-width: 767px) {
    .p-jobDescription__mediaTtl {
        font-size: 1.6875rem;
    }
}

.p-jobDescription__mediaText {
    font-size: 1.25rem;
    line-height: 2;
    margin-top: 20px;
}

@media screen and (max-width: 767px) {
    .p-jobDescription__mediaText {
        font-size: 0.875rem;
    }
}

.p-jobDescription__mediaImgWrap {
    width: 43.75%;
}

@media screen and (max-width: 767px) {
    .p-jobDescription__mediaImgWrap {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .p-jobDescription__mediaImg {
        width: 84%;
    }
}

.p-recruitCta {
    background: #f67d7d;
    padding: 90px 0 20px;
}

@media screen and (max-width: 767px) {
    .p-recruitCta {
        padding: 40px 0;
    }
}

.p-recruitCta__lead {
    text-align: center;
}

.p-recruitCta__leadImg {
    width: 80%;
}

.p-recruitCta__btnWrap {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

@media screen and (max-width: 767px) {
    .p-recruitCta__btnWrap {
        margin-top: 40px;
    }
}

.p-recruitCta__btn {
    font-size: 1.5rem;
    font-weight: 500;
    background: #fff;
    color: #F67D7D;
    width: 300px;
    height: 60px;
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: opacity 0.3s;
}

@media screen and (max-width: 767px) {
    .p-recruitCta__btn {
        font-size: 0.9375rem;
        width: 200px;
        height: 45px;
    }
}

.p-recruitCta__btn:hover {
    opacity: 0.6;
}

.p-recruitCta__btn::after {
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    background: url(../img/ico_arrow_01.svg) no-repeat center center/contain;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
    .p-recruitCta__btn::after {
        width: 15px;
        height: 15px;
        right: 12px;
    }
}

.p-recruitCta__text {
    margin: -80px auto 0;
    width: 95%;
    pointer-events: none;
}

@media screen and (max-width: 1179px) {
    .p-recruitCta__text {
        margin-top: -40px;
    }
}

@media screen and (max-width: 767px) {
    .p-recruitCta__text {
        margin-top: 40px;
    }
}

.p-message {
    padding: 78px 0;
}

@media screen and (max-width: 767px) {
    .p-message {
        padding: 36px 0 60px;
    }
}

.p-message__head {
    color: #398abe;
}

.p-message__media {
    display: flex;
    margin-top: 36px;
}

@media screen and (max-width: 767px) {
    .p-message__media {
        display: block;
        margin-top: 24px;
    }
}

.p-message__mediaImgWrap {
    width: 50%;
}

@media screen and (max-width: 767px) {
    .p-message__mediaImgWrap {
        width: 100%;
    }
}

.p-message__mediaBody {
    width: 50%;
    padding-left: 56px;
}

@media screen and (max-width: 767px) {
    .p-message__mediaBody {
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
    }
}

.p-message__mediaBodyLead {
    font-size: 1.75rem;
    line-height: 1.3157894737;
    font-weight: 600;
}

.p-message__mediaBodyLead::before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.3157894737) * 0.5em);
    content: "";
}

.p-message__mediaBodyLead::after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.3157894737) * 0.5em);
    content: "";
}

@media screen and (max-width: 767px) {
    .p-message__mediaBodyLead {
        font-size: 1.125rem;
    }
}

.p-message__mediaBodyLead .--caution {
    font-size: 2.375rem;
    font-family: 'bananaslipplus';
}

@media screen and (max-width: 767px) {
    .p-message__mediaBodyLead .--caution {
        font-size: 2.0rem;
    }
}

.p-message__mediaBodyText {
    font-size: 1.125rem;
    line-height: 2;
    margin-top: 36px;
}

@media screen and (max-width: 767px) {
    .p-message__mediaBodyText {
        font-size: 0.875rem;
        margin-top: 20px;
    }
}

.p-jobInformation {
    background: #59A8D7;
    padding: 80px 0 100px;
}

@media screen and (max-width: 767px) {
    .p-jobInformation {
        padding: 36px 0 56px;
    }
}

.p-jobInformation__head {
    color: #fff;
    text-align: center;
}

.p-jobInformation__list {
    margin-top: 46px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 40px;
}

@media screen and (max-width: 767px) {
    .p-jobInformation__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 10px;
    }
}

.p-infoCard__imgWrap {
    position: relative;
}

.p-infoCard__img {
    aspect-ratio: 346/260;
    object-fit: cover;
    height: 100%;
}

.p-infoCard__caption {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    padding: 0.8em 1em;
}

@media screen and (max-width: 767px) {
    .p-infoCard__caption {
        font-size: 0.625rem;
    }
}

.p-infoCard__caption.--red {
    background: #F67D7D;
}

.p-infoCard__caption.--green {
    background: #8ac43f;
}

.p-infoCard__caption.--blue {
    background: #1b2e6c;
}

.p-infoCard__ttl {
    background: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.6em;
    line-height: 1.5;
}

@media screen and (max-width: 767px) {
    .p-infoCard__ttl {
        font-size: 0.8125rem;
    }
}

.p-footer {
    background: #1b2e6c;
    color: #fff;
    padding: 26px;
}

.p-footer__box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px 0;
}

@media screen and (max-width: 767px) {
    .p-footer__box {
        display: block;
    }
}

.p-footer__logo {
    width: 280px;
}

@media screen and (max-width: 767px) {
    .p-footer__logo {
        width: 190px;
        margin: auto;
    }
}

.p-footer__nav {
    display: flex;
    gap: 60px;
}

@media screen and (max-width: 767px) {
    .p-footer__nav {
        display: none;
    }
}

.p-footer__navLink {
    font-weight: 500;
    transition: opacity 0.3s;
}

.p-footer__navLink:hover {
    opacity: 0.6;
}

.p-footer__btnWrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 26px;
}

@media screen and (max-width: 767px) {
    .p-footer__btnWrap {
        justify-content: center;
    }
}

.p-footer__btn {
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: opacity 0.3s;
}

.p-footer__btn:hover {
    opacity: 0.6;
}

.p-footer__btn::before {
    content: "";
    background: url(../img/ico_external_01.svg) no-repeat center center/contain;
    width: 19px;
    height: 17px;
    display: inline-block;
}

.p-footer__copy {
    font-size: 0.875rem;
    text-align: center;
    margin-top: 46px;
}

@media screen and (max-width: 767px) {
    .p-footer__copy {
        margin-top: 24px;
        font-size: 0.75rem;
    }
}

.p-fv {
    position: relative;
}

.p-fv__img {
    height: 680px;
    object-fit: cover;
}

@media screen and (max-width: 767px) {
    .p-fv__img {
        height: 500px;
    }
}

.p-fv__box {
    position: absolute;
    min-width: 420px;
    bottom: 0;
    right: 0;
}

@media screen and (max-width: 767px) {
    .p-fv__box {
        min-width: auto;
    }
}

.p-fv__boxTtl {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: "Barlow", sans-serif;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.p-fv__boxBody {
    background: #fff;
    margin-top: 64px;
    position: relative;
    padding: 50px 60px 40px 30px;
}

@media screen and (max-width: 767px) {
    .p-fv__boxBody {
        padding: 20px 40px 10px 10px;
        margin-top: 40px;
    }
}

.p-fv__boxBodyLabel {
    color: #fff;
    font-size: 1.125rem;
    letter-spacing: 0.06em;
    font-weight: 500;
    background: #BF272D;
    display: inline-block;
    border-radius: 50px;
    padding: 0.8em 2.5em;
}

@media screen and (max-width: 767px) {
    .p-fv__boxBodyLabel {
        font-size: 0.875rem;
    }
}

.p-fv__boxBodyTtl {
    font-size: 2.125rem;
    font-weight: 600;
    margin-top: 20px;
}

@media screen and (max-width: 767px) {
    .p-fv__boxBodyTtl {
        font-size: 1.125rem;
    }
}

.p-fv__boxNumber {
    /* background: #bf272d; */
    display: inline-block;
    color: #fff;
    font-size: 1.625rem;
    padding: 5px 18px;
    position: absolute;
    top: -24px;
    left: 0;
}

@media screen and (max-width: 1179px) {
    .p-fv__boxNumber {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 767px) {
    .p-fv__boxNumber {
        font-size: 1.125rem;
        padding: 5px;
    }
}

.p-fv__boxNumber .--edge {
    font-family: "Barlow", sans-serif;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    text-stroke: 1px #fff;
    font-size: 2rem;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .p-fv__boxNumber .--edge {
        font-size: 1.375rem;
    }
}

.p-fv__boxNumber .--primary {
    font-family: 'bananaslipplus';
    font-size: 2.0rem;
}

.p-fv__boxLead {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.5;
}

@media screen and (max-width: 1179px) {
    .p-fv__boxLead {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 767px) {
    .p-fv__boxLead {
        font-size: 1.125rem;
    }
}

.p-fv__boxLead .--danger {
    /* color: #bf272d; */
    font-size: 1.6rem;
}

@media screen and (max-width: 1179px) {
    .p-fv__boxLead .--danger {
        font-size: 1.875rem;
    }
}

@media screen and (max-width: 767px) {
    .p-fv__boxLead .--danger {
        font-size: 1.75rem;
    }
}

.p-fv__boxFooter {
    margin-top: 40px;
}

@media screen and (max-width: 767px) {
    .p-fv__boxFooter {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-top: 20px;
    }
}

.p-fv__boxFooterText {
    font-size: 1.125rem;
}

@media screen and (max-width: 767px) {
    .p-fv__boxFooterText {
        font-size: 0.8125rem;
    }
}

.p-fv__boxFooter .--large {
    font-size: 1.875rem;
    font-weight: 600;
    font-family: "Barlow", sans-serif;
}

@media screen and (max-width: 767px) {
    .p-fv__boxFooter .--large {
        font-size: 1.25rem;
    }
}

.p-breadCrumb {
    font-size: 0.8125rem;
    margin-top: 18px;
}

@media screen and (max-width: 767px) {
    .p-breadCrumb {
        margin-top: 10px;
    }
}

.p-breadCrumb a {
    color: #1B2E6C;
}

.p-breadCrumb .current-item {
    color: #333333;
}

.p-interviewMediaRev {
    margin-top: 60px;
}

.p-interviewMediaRev__inner {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 767px) {
    .p-interviewMediaRev__inner {
        flex-direction: column;
    }
}

.p-interviewMediaRev__body {
    width: 46.4285714286%;
    padding-right: 58px;
}

@media screen and (max-width: 767px) {
    .p-interviewMediaRev__body {
        width: 100%;
        padding-right: 0;
    }
}

.p-interviewMediaRev__ttl {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.6428571429;
}

@media screen and (max-width: 767px) {
    .p-interviewMediaRev__ttl {
        font-size: 1.125rem;
    }
}

.p-interviewMediaRev__text {
    font-size: 1.125rem;
    line-height: 2;
    margin-top: 30px;
}

@media screen and (max-width: 767px) {
    .p-interviewMediaRev__text {
        font-size: 0.875rem;
        margin-top: 10px;
    }
}

.p-interviewMediaRev__imgWrap {
    width: 46.4285714286%;
}

@media screen and (max-width: 767px) {
    .p-interviewMediaRev__imgWrap {
        width: 100%;
    }
}

.p-interviewMedia {
    margin-top: 60px;
}

.p-interviewMedia__inner {
    display: flex;
}

@media screen and (max-width: 767px) {
    .p-interviewMedia__inner {
        flex-direction: column-reverse;
    }
}

.p-interviewMedia__body {
    width: 50%;
    padding-right: 58px;
}

@media screen and (max-width: 767px) {
    .p-interviewMedia__body {
        width: 100%;
        padding-right: 0;
    }
}

.p-interviewMedia__ttl {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.6428571429;
}

@media screen and (max-width: 767px) {
    .p-interviewMedia__ttl {
        font-size: 1.125rem;
    }
}

.p-interviewMedia__text {
    font-size: 1.125rem;
    line-height: 2;
    margin-top: 30px;
}

@media screen and (max-width: 767px) {
    .p-interviewMedia__text {
        font-size: 0.875rem;
        margin-top: 10px;
    }
}

.p-interviewMedia__imgWrap {
    margin-right: calc(50% - 50vw);
    width: 62.5%;
}

@media screen and (max-width: 767px) {
    .p-interviewMedia__imgWrap {
        width: 100%;
    }
}

.p-workFlow {
    /* background: #bf272d; */
    margin-top: 150px;
    padding: 0 0 96px;
    position: relative;
}

@media screen and (max-width: 767px) {
    .p-workFlow {
        padding: 0 0 60px;
    }
}

.p-workFlow__inner {
    max-width: 1400px;
    margin: auto;
    position: relative;
}

.p-workFlow__headWrap {
    position: relative;
    top: -80px;
}

@media screen and (max-width: 767px) {
    .p-workFlow__headWrap {
        top: -30px;
    }
}

.p-workFlow__head {
    color: #398abe;
    background: #fff;
    display: inline-block;
    padding: 20px 40px 20px 140px;
}

@media screen and (max-width: 767px) {
    .p-workFlow__head {
        padding: 20px;
    }
}

.p-workFlow__arrow {
    position: absolute;
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 26px 19px 0 19px;
    border-color: #fff transparent transparent transparent;
    top: calc(100% - 4px);
    left: 180px;
}

@media screen and (max-width: 767px) {
    .p-workFlow__arrow {
        top: calc(100% - 10px);
        left: 30px;
    }
}

.p-workFlow__media {
    display: flex;
}

@media screen and (max-width: 767px) {
    .p-workFlow__media {
        display: block;
    }
}

.p-workFlow__mediaImgWrap {
    width: 230px;
}

@media screen and (max-width: 767px) {
    .p-workFlow__mediaImgWrap {
        width: 80px;
    }
}

.p-workFlow__mediaBody {
    width: calc(100% - 230px);
}

@media screen and (max-width: 767px) {
    .p-workFlow__mediaBody {
        width: 100%;
    }
}

.p-flowList__list {
    padding-left: 160px;
}

@media screen and (max-width: 767px) {
    .p-flowList__list {
        padding-left: 140px;
    }
}

.p-flowList__item {
    background: #fff;
    border-radius: 10px;
    padding: 14px 20px;
    position: relative;
}

.p-flowList__item+.p-flowList__item {
    margin-top: 26px;
}

.p-flowList__item::before {
    content: attr(data-time);
    position: absolute;
    top: 24px;
    left: -136px;
    color: #fff;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
    .p-flowList__item::before {
        left: -150px;
    }
}

.p-flowList__item::after {
    content: "";
    position: absolute;
    top: 26px;
    left: -52px;
    background: #fff;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: inline-block;
}

@media screen and (max-width: 767px) {
    .p-flowList__item::after {
        left: -72px;
        top: 28px;
        width: 14px;
        height: 14px;
    }
}

.p-flowList__itemInner::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12.5px 21px 12.5px 0;
    border-color: transparent #fff transparent transparent;
    top: 22px;
    right: 100%;
}

.p-flowList__itemInner.--downBar::after,
.p-flowList__itemInner.--upBar::after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 2px;
    height: 135%;
    background: #fff;
    left: -44px;
}

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

    .p-flowList__itemInner.--downBar::after,
    .p-flowList__itemInner.--upBar::after {
        left: -66px;
    }
}

.p-flowList__itemInner.--downBar::after {
    top: 0;
}

.p-flowList__itemInner.--upBar::after {
    bottom: calc(100% - 26px);
}

.p-flowList__ttl {
    color: #1b2e6c;
    font-size: 1.375rem;
    font-weight: 600;
}

@media screen and (max-width: 767px) {
    .p-flowList__ttl {
        font-size: 1rem;
    }
}

.p-flowList__text {
    font-size: 1.125rem;
    line-height: 2;
}

@media screen and (max-width: 767px) {
    .p-flowList__text {
        font-size: 0.75rem;
    }
}

.p-nextInterview {
    padding: 80px 0 90px;
}

@media screen and (max-width: 767px) {
    .p-nextInterview {
        padding: 40px 0 50px;
    }
}

.p-nextInterview__ttl {
    font-size: 2.875rem;
    font-weight: 700;
    font-family: "Barlow", sans-serif;
    color: #398abe;
}

@media screen and (max-width: 767px) {
    .p-nextInterview__ttl {
        font-size: 1.75rem;
    }
}

.p-nextInterview__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 26px;
}

@media screen and (max-width: 767px) {
    .p-nextInterview__list {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}

.p-nextInterview__item {
    position: relative;
}

.p-nextInterview__img {
    aspect-ratio: 530/340;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-nextInterview__body {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

@media screen and (max-width: 767px) {
    .p-nextInterview__body {
        bottom: 10px;
        left: 10px;
    }
}

.p-nextInterview__year {
    background: #fff;
    /* font-size: 1.375rem; */
    font-size: 0.875rem;
    padding: 0.2em;
    display: inline-block;
}

@media screen and (max-width: 767px) {
    .p-nextInterview__year {
        font-size: 1rem;
    }
}

.p-nextInterview__name {
    background: #fff;
    /* font-size: 2.375rem; */
    font-size: 1.475rem;
    letter-spacing: 0.06em;
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    padding: 0.2em;
    display: inline-block;
}

@media screen and (max-width: 767px) {
    .p-nextInterview__name {
        font-size: 1.125rem;
    }
}

.p-detailDescription {
    margin-top: 80px;
    padding-bottom: 140px;
}

@media screen and (max-width: 767px) {
    .p-detailDescription {
        padding-bottom: 70px;
    }
}

.p-detailDescription__head {
    color: #398abe;
}

.p-detailDescription__head .p-sectionHead__ttl {
    font-size: 4.0625rem;
}

@media screen and (max-width: 767px) {
    .p-detailDescription__head .p-sectionHead__ttl {
        font-size: 2rem;
    }
}

.p-detailDescription__body {
    font-size: 1.125rem;
    line-height: 2;
    margin-top: 40px;
}

@media screen and (max-width: 767px) {
    .p-detailDescription__body {
        font-size: 0.875rem;
        margin-top: 20px;
    }
}

.p-statue {
    background: #f67d7d;
    padding-bottom: 76px;
}

.p-statue__ttl {
    font-size: 2.375rem;
    font-weight: 700;
    color: #398abe;
    letter-spacing: 0.06em;
    background: #fff;
    display: inline-block;
    position: relative;
    padding: 0.8em 1.5em;
    top: -50px;
}

@media screen and (max-width: 767px) {
    .p-statue__ttl {
        font-size: 1.125rem;
        top: -25px;
    }
}

.p-statue__ttl::before {
    position: absolute;
    background: #fff;
    bottom: 0;
    content: "";
    top: 0;
    right: 100%;
    width: 100vw;
}

.p-statue__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

@media screen and (max-width: 767px) {
    .p-statue__list {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}

.p-interviewNav {
    padding: 80px 0 90px;
}

@media screen and (max-width: 767px) {
    .p-interviewNav {
        padding: 40px 0 50px;
    }
}

.p-interviewNav__ttl {
    font-size: 4.375rem;
    font-weight: 700;
    font-family: "Barlow", sans-serif;
    color: #398abe;
}

@media screen and (max-width: 767px) {
    .p-interviewNav__ttl {
        font-size: 1.75rem;
    }
}

.p-interviewNav__lead {
    font-size: 1.125rem;
    font-weight: 500;
    color: #398abe;
    margin-top: 10px;
}

.p-interviewNav__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    margin-top: 26px;
}

@media screen and (max-width: 767px) {
    .p-interviewNav__list {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}

.p-interviewNav__item {
    position: relative;
}

.p-interviewNav__body {
    position: absolute;
    bottom: 14px;
    left: 14px;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

@media screen and (max-width: 767px) {
    .p-interviewNav__body {
        bottom: 10px;
        left: 10px;
    }
}

.p-interviewNav__year {
    background: #fff;
    font-size: 1.0625rem;
    padding: 0.2em;
    display: inline-block;
}

@media screen and (max-width: 767px) {
    .p-interviewNav__year {
        font-size: 1rem;
    }
}

.p-interviewNav__name {
    background: #fff;
    font-size: 1.875rem;
    letter-spacing: 0.06em;
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    padding: 0.1em;
    display: inline-block;
}

@media screen and (max-width: 767px) {
    .p-interviewNav__name {
        font-size: 1.125rem;
    }
}

.p-jobRequirements {
    background: #59A8D7;
    padding: 70px 0;
}

.p-jobRequirements__head {
    color: #fff;
}

.p-jobRequirements__head .p-sectionHead__ttl {
    font-size: 4.0625rem;
}

@media screen and (max-width: 767px) {
    .p-jobRequirements__head .p-sectionHead__ttl {
        font-size: 1.75rem;
    }
}

.p-jobRequirements__box {
    background: #fff;
    border-radius: 20px;
    padding: 48px 70px;
    margin-top: 40px;
}

@media screen and (max-width: 767px) {
    .p-jobRequirements__box {
        padding: 20px;
        border-radius: 10px;
    }
}

.p-jobRequirements__list {
    border-top: 1px solid #bfbfbf;
}

.p-jobRequirements__item {
    border-bottom: 1px solid #bfbfbf;
    padding: 24px 0;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .p-jobRequirements__item {
        display: block;
        padding: 14px 0;
    }
}

.p-jobRequirements__dt {
    width: 240px;
}

@media screen and (max-width: 767px) {
    .p-jobRequirements__dt {
        width: 100%;
    }
}

.p-jobRequirements__dd {
    width: calc(100% - 240px);
    line-height: 1.875;
}

@media screen and (max-width: 767px) {
    .p-jobRequirements__dd {
        width: 100%;
        font-size: 0.875rem;
        margin-top: 10px;
    }
}

.p-jobRequirements__ddMapWrap {
    margin-top: 10px;
}

.p-jobRequirements__ddMapWrap iframe {
    aspect-ratio: 740/260;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 767px) {
    .p-jobRequirements__ddMapWrap iframe {
        aspect-ratio: 1/1;
    }
}

.p-jobRequirements__btnWrap {
    display: flex;
    justify-content: center;
    margin-top: 70px;
}

.p-jobRequirements__btn {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: "Barlow", sans-serif;
    color: #fff;
    background: #1B2E6C;
    width: 270px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s;
    position: relative;
}

.p-jobRequirements__btn::after {
    position: absolute;
    content: "";
    width: 28px;
    height: 20px;
    display: inline-block;
    background: url(../img/ico_arrow_02.svg) no-repeat center center/contain;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.p-jobRequirements__btn:hover {
    opacity: 0.6;
}

.p-jobRequirements__lead {
    margin-top: 40px;
}

.p-companyInfo {
    padding: 70px 0 80px;
}

@media screen and (max-width: 767px) {
    .p-companyInfo {
        padding: 30px 0 40px;
    }
}

.p-companyInfo__head {
    color: #398ABE;
}

.p-companyInfo__head .p-sectionHead__ttl {
    font-size: 4.0625rem;
}

@media screen and (max-width: 767px) {
    .p-companyInfo__head .p-sectionHead__ttl {
        font-size: 1.75rem;
    }
}

.p-companyInfo__list {
    border-top: 1px solid #BFBFBF;
    margin-top: 36px;
}

.p-companyInfo__item {
    border-bottom: 1px solid #BFBFBF;
    display: flex;
    align-items: center;
    background: #F6F6F6;
}

@media screen and (max-width: 767px) {
    .p-companyInfo__item {
        display: block;
    }
}

.p-companyInfo__dt {
    width: 260px;
    padding-left: 20px;
}

@media screen and (max-width: 767px) {
    .p-companyInfo__dt {
        width: 100%;
        padding: 10px;
    }
}

.p-companyInfo__dd {
    width: calc(100% - 260px);
    background: #Fff;
    padding: 20px;
    line-height: 1.875;
}

@media screen and (max-width: 767px) {
    .p-companyInfo__dd {
        width: 100%;
        padding: 10px;
        font-size: 0.875rem;
    }
}

.p-companyInfo__ddMapWrap {
    margin-top: 10px;
}

.p-companyInfo__ddMapWrap iframe {
    aspect-ratio: 740/260;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 767px) {
    .p-companyInfo__ddMapWrap iframe {
        aspect-ratio: 1/1;
    }
}

.p-entryFv {
    background: #59A8D7;
    color: #fff;
    text-align: center;
    overflow: hidden;
    padding-bottom: 70px;
}

.p-entryFv__inner {
    width: 940px;
}

.p-entryFv__ttl {
    font-size: 4.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-top: 140px;
}

@media screen and (max-width: 767px) {
    .p-entryFv__ttl {
        font-size: 3rem;
        margin-top: 80px;
    }
}

.p-entryFv__ttlJa {
    font-size: 1.125rem;
    font-weight: 500;
    margin-top: 10px;
}

@media screen and (max-width: 767px) {
    .p-entryFv__ttlJa {
        font-size: 0.875rem;
    }
}

.p-entryFv__lead {
    font-size: 1.75rem;
    font-weight: 600;
    margin-top: 60px;
}

@media screen and (max-width: 767px) {
    .p-entryFv__lead {
        font-size: 1.25rem;
    }
}

.p-entryFv__text {
    font-size: 1.125rem;
    line-height: 2;
    margin-top: 10px;
}

@media screen and (max-width: 767px) {
    .p-entryFv__text {
        font-size: 0.875rem;
    }
}

.p-entryFv__flow {
    background: #e4f0f4;
    border-radius: 20px;
    padding: 0 44px 38px;
    margin-top: 70px;
}

.p-entryFv__flowTtl {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #398abe;
    background: #fff;
    display: inline-block;
    padding: 0.3em 1.5em;
    position: relative;
    top: -20px;
}

.p-entryFv__flowList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 90px;
}

@media screen and (max-width: 767px) {
    .p-entryFv__flowList {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }
}

.p-entryFv__flowItem {
    position: relative;
}

.p-entryFv__flowItem.--arrow::after {
    position: absolute;
    content: "";
    width: 55px;
    height: 36px;
    background: url(../img/ico_arrow_04.svg) no-repeat center center/contain;
    top: 50%;
    transform: translateY(-50%);
    left: calc(100% + 18px);
}

@media screen and (max-width: 767px) {
    .p-entryFv__flowItem.--arrow::after {
        display: none;
    }
}

.p-entryFv__flowItemTtl {
    color: #1b2e6c;
    font-size: 1.25rem;
    font-weight: 600;
}

.p-entryFv__flowItemImg {
    width: 90px;
    margin-top: 10px;
}

.p-entryFv__flowItemText {
    text-align: left;
    color: #000;
    line-height: 1.6;
    font-size: 0.9375rem;
    margin-top: 14px;
}

.p-form {
    padding: 40px 0 100px;
}

.p-form__inner {
    width: 940px;
}

.p-form__item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #acacac;
    padding: 24px 0;
}

.p-form__item .form-h {
    display: flex;
    width: 255px;
}

.p-form__item .require {
    color: #fff;
    text-align: center;
    font-size: 12px;
    border-radius: 3px;
    background-color: #C74741;
    padding: 2px 3px;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

@media screen and (max-width: 767px) {
    .p-form__item {
        display: block;
        padding: 14px 0;
    }
}

.p-form__dt {
    width: 250px;
    font-size: 1.125rem;
    font-weight: 400;
    margin-top: 10px;
}

@media screen and (max-width: 767px) {
    .p-form__dt {
        width: 100%;
    }
}

.p-form__dt.--require::before {
    content: "必須";
    color: #fff;
    background: #bf272d;
    border-radius: 5px;
    padding: 0.3em 0.7em;
    font-size: 0.75rem;
    margin-right: 10px;
}

.p-form__dd {
    width: calc(100% - 250px);
    padding-right: 24px;
}

@media screen and (max-width: 767px) {
    .p-form__dd {
        width: 100%;
        padding-right: 0;
    }
}

.p-form__selectWrap {
    position: relative;
    display: inline-block;
}

@media screen and (max-width: 767px) {
    .p-form__selectWrap {
        width: 100%;
        margin-top: 10px;
    }
}

.p-form__selectWrap::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    width: 16px;
    height: 10px;
    background: url(../img/ico_downArrow_01.svg) no-repeat center center/contain;
}

.p-form__select {
    border: 1px solid #808080;
    border-radius: 5px;
    padding: 1em;
    width: 310px;
    background: #ececec;
}

@media screen and (max-width: 767px) {
    .p-form__select {
        width: 100%;
    }
}

.p-form__input {
    border: 1px solid #808080;
    border-radius: 5px;
    width: auto;
    padding: 1em;
    margin-top: 10px;
}

@media screen and (max-width: 767px) {
    .p-form__input {
        width: 100%;
    }
}

.p-form__input::placeholder {
    color: #acacac;
}

.p-form__textarea {
    resize: none;
    height: 190px;
}

.p-form__privacy {
    background: #ebebeb;
    border-radius: 10px;
    text-align: center;
    padding: 30px 10px;
    margin-top: 50px;
}

.p-form__privacyTtl {
    font-size: 1.25rem;
    font-weight: 600;
}

.mwform-checkbox-field input,
.mwform-radio-field input {
    margin-right: 0px !important;
}

@media screen and (max-width: 767px) {
    .p-form__privacyTtl {
        font-size: 1rem;
    }
}

.p-form__privacyText {
    line-height: 2;
    margin-top: 20px;
}

@media screen and (max-width: 767px) {
    .p-form__privacyText {
        font-size: 0.875rem;
    }
}

.p-form__checkboxWrap {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

@media screen and (max-width: 767px) {
    .p-form__checkboxWrap span {
        font-size: 0.875rem;
    }
}

.p-form__btnWrap {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.p-form__btn {
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #fff;
    background: #1B2E6C;
    width: 280px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 50px;
    transition: opacity 0.3s;
}

.p-form__btn:hover {
    opacity: 0.6;
}

.p-form__btn::after {
    position: absolute;
    content: "";
    width: 25px;
    height: 17px;
    background: url(../img/ico_arrow_02.svg) no-repeat center center/contain;
    margin-left: 10px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.p-form .mw_wp_form_confirm .p-form__selectWrap::after {
    content: "";
    display: none;
}

.p-thanks {
    background: #e4f0f4;
    border-radius: 20px;
    padding: 36px 44px 38px;
    margin-top: 70px;
    color: #333333;
}

.p-thanks__text {
    font-size: 1.125rem;
    line-height: 2;
}

@media screen and (max-width: 767px) {
    .p-thanks__text {
        font-size: 0.875rem;
    }
}

.p-thanks__caution {
    border-bottom: 1px solid #b1b1b1;
}

.p-thanks__cautionTtl {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.p-thanks__cautionTtl:before,
.p-thanks__cautionTtl:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #b1b1b1;
}

.p-thanks__cautionTtl:before {
    margin-right: 2rem;
}

.p-thanks__cautionTtl:after {
    margin-left: 2rem;
}

.p-thanks__cautionText {
    font-size: 1.125rem;
    line-height: 1.7777777778;
    padding: 20px 30px;
}

@media screen and (max-width: 767px) {
    .p-thanks__cautionText {
        font-size: 0.875rem;
    }
}

@media screen and (min-width: 1180px) {
    .u-sp-only {
        display: none;
    }
}

@media screen and (max-width: 1179px) {
    .u-sp-only {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .u-sp-only {
        display: block;
    }
}

@media screen and (min-width: 1180px) {
    .u-tab-only {
        display: none;
    }
}

@media screen and (max-width: 1179px) {
    .u-tab-only {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .u-tab-only {
        display: none;
    }
}

@media screen and (max-width: 1179px) {
    .u-pc-only {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .u-pc-only {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .u-sp-none {
        display: none;
    }
}

@media screen and (max-width: 1179px) {
    .u-tab-none {
        display: none;
    }
}

@media screen and (min-width: 1180px) {
    .u-pc-none {
        display: none;
    }
}

@media screen and (max-width: 1179px) {
    .u-tab-flex {
        display: flex;
    }
}

@media screen and (max-width: 767px) {
    .u-sp-flex {
        display: flex;
    }
}

.u-linkPosition {
    display: block;
    position: relative;
    top: -50px;
}

@media screen and (max-width: 767px) {
    .page-template-page-interview02 .p-fv img {
        margin-bottom: 100px;
    }
}

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


/* 20250825
***************************************************************/
.p-workEnvironment {
    background: #e2e764;
    padding: 100px 0 160px;
}

.p-workEnvironment .p-sectionHead__ttl {
    color: #fff;
}

.p-workEnvironment .p-sectionHead__text {
    color: #398abe;
}

.p-workEnvironment__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 20px;
    margin-top: 60px;
}

.p-workEnvironment__item {
    width: 265px;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    padding: 30px 0 35px;
}

.workEnvironment__item--img {
    width: 100px;
    height: 80px;
    object-fit: contain
}

.workEnvironment__item--text {
    font-size: 18px;
    min-height: 50px;
    line-height: 1.6;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

li:nth-of-type(n + 5) .workEnvironment__item--text {
    min-height: 86px
}

@media screen and (max-width: 680px) {
    .p-workEnvironment {
        padding: 40px 0;
    }

    .p-workEnvironment__list {
        gap: 15px;
        margin-top: 40px;
    }

    .p-workEnvironment__item {
        width: 45%;
        padding: 20px 5px 15px;
    }

    .workEnvironment__item--img {
        width: 60px;
        height: 40px;
    }

    .workEnvironment__item--text {
        font-size: 12px;
        min-height: 57px;
        margin-top: 10px;
    }

    li:nth-of-type(n + 5) .workEnvironment__item--text {
        min-height: 57px;
    }
}

/* 2025 11/09 */
.p-movie{
  padding: 85px 0;
  text-align: center;
}
.p-movie__inner{
  position: relative;
}
.p-movie__title-wrap{
  position: relative;
  display: inline-block;
  margin-bottom: 60px;
}
.p-movie h2{
  font-family: "Barlow", sans-serif;
  font-size: 82px;
  color: #398abe;
  font-weight: bold;
}

.p-movie p{
  font-weight: bold;
  font-size: 24px;
}
.p-movie a{
  transition: opacity 0.3s;  
}
.p-movie a:hover{
  opacity: .6;
}

@media screen and (max-width: 767px) {
  .p-movie h2{
    font-size: 2.5rem;
  }
  .p-movie p{
    font-size: 0.8125rem;
  }
}
.p-movie__infoImg{
  width: 258px;
  position: absolute;
  display: block;
  top:-46px;
  left: -290px;
}
.p-movie__list{
  display: flex;
  gap:44px;
  padding-right: 10px;
}

.p-movie__listItem{
  width: calc(33.33% - 29.4px);
  margin-bottom: 60px;
  
}
@media screen and (max-width: 767px) {
  .p-movie__list{
    display: block;
  }
  .p-movie__listItem{
    width: 100%;
    margin-bottom: 30px;
  }
}


.p-movie__interviewRight img,
.p-movie__listItem img{
  border-radius: 10px;
  box-shadow: 10px 10px 0 rgba(88, 169, 215, 0.7);
}

.p-movie__interview-box{
  background-color: #e2e764;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  padding: 40px 75px;
  position: relative;
  text-align: left;
}

.p-movie__interview-box h3{
  font-family: "Barlow", sans-serif;
  position: absolute;
  font-size: 106.66px;
  font-weight: bold;
  left: 2px;
  bottom: 0;
  line-height: 1em;
  width: max-content;
  vertical-align:bottom;
  transform: translateY(0.1em);  
  color: white;
  opacity: .5;
}

.p-movie__interviewRight,
.p-movie__interviewLeft{
  width: 50%;
  position: relative;
  z-index: 1;
}

.p-movie__interviewTxt{
  text-align: left;
  line-height: 1.533em;
  font-weight: bold;
/*  line-height: 1em;*/
  
}
.p-movie__interviewImg{
  width: 222px;
  margin-bottom: 18px;
}
.p-movie__interviewTxt .line{
  background-color: white;
  display: inline-block;
  padding: 8px 8px;
  vertical-align: middle;
  font-size: 30px;
}
@media screen and (max-width: 900px) {
  .p-movie__title-wrap{
    display: block;
  }
  
  .p-movie__infoImg{
    width: 30%;
    left: 0;
  }

}


@media screen and (max-width: 767px) {
  .p-movie__interview-box{
    display: block;
    padding: 20px 20px;
  }
  .p-movie__interviewRight,
  .p-movie__interviewLeft{
    width: 100%;
  }
  .p-movie__interviewTxt .line{
    font-size: 5vw;
  }
  .p-movie__interviewRight img{
    margin-top: 30px;
    margin-bottom: 60px;
  }

  .p-movie__title-wrap{
    display: block;
  }
  .p-movie__infoImg{
    width: 30%;
    top:-50px;
    left: 0;
  }
  .p-movie__interview-box h3{
    font-size: 10vw;
  }
}

