/* --------------------------------------------
    variablues
--------------------------------------------  */
:root {
    --colorBlack: #333;
    --colorLightGray: #eee;
    --colorLightYellow: #fff7d6;
    --colorYellow: #ffe785;
    --fontSize16: clamp(.875rem, .795rem + .34vw, 1rem);
    --fontSize18: clamp(1rem, .92rem + .34vw, 1.125rem);
    --fontSize20: clamp(1rem, .859rem + .6vw, 1.25rem);
    --fontSize24: clamp(1.125rem, .914rem + .9vw, 1.5rem);
    --fontSize32: clamp(1.5rem, 1.179rem + 1.37vw, 2rem);
    --fontSize40: clamp(1.5rem, .936rem + 2.41vw, 2.5rem);
}
/* --------------------------------------------
    content
--------------------------------------------  */
body {
    color: var(--colorBlack);
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

.main {
    overflow: hidden;
}

.container {
    margin: 0 auto;
    max-width: 1040px;
    width: 100%;
}

.is-sp {
    display: none;
}

@media screen and (min-width:768px) and ( max-width:1040px) {
    .container {
        padding: 0 20px;
        width: auto;
    }
}

@media screen and (max-width: 767px) {
    .container {
        padding: 0 20px;
        width: auto;
    }

    .is-sp {
        display: block;
    }
}

/* --------------------------------------------
    Text
--------------------------------------------  */
.commonHeading {
    font-size: var(--fontSize32);
    letter-spacing: 4px;
}

.commonHeading.is-center {
    text-align: center;
}

.commonHeading span {
    color: #004ea1;
}

.commonSubHeading {
    font-size: var(--fontSize24);
    letter-spacing: .125em;
    line-height: 1.5;
    margin-top: 40px;
}

.commonSubHeading.is-center {
    text-align: center;
}

.commonSubHeading span {
    color: #004ea1;
}

.commonLead {
    color: #004ea1;
    font-size: 12px;
    font-weight: 400;
    margin-top: 8px;
}

.commonLead.is-center {
    text-align: center;
}

.commonText {
    font-size: var(--fontSize16);
    line-height: 1.7;
}

/* --------------------------------------------
    scrollFlow
--------------------------------------------  */
.scrollFlow {
    background: #004ea1;
    border-radius: 10px;
    display: none;
    margin-top: calc(8px * 3);
    padding: calc(8px * 2) 0 calc(8px * 2.5);
}

.scrollFlow__word {
    color: #fff;
    font-size: 14px;
    margin-bottom: calc(8px * 2);
    text-align: center;
}

.scrollFlow__arrow {
    justify-content: center;
    margin: 0 15%;
    outline: none;
    position: relative;
    text-decoration: none;
    width: 70%;
}

.scrollFlow__arrow::before {
    background: #fff;
    bottom: 0;
    content: "";
    height: 2px;
    position: absolute;
    width: 70%;
}

.scrollFlow__arrow::after {
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    bottom: -5px;
    content: "";
    height: 10px;
    position: absolute;
    transform: rotate(45deg);
    width: 10px;
}

.scrollFlow__arrow::before {
    animation: arrowlong01 2s ease infinite;
}
.scrollFlow__arrow::after {
    animation: arrowlong02 2s ease infinite;
}

@keyframes arrowlong01 {
    0% {
        opacity: 0;
        width: 0;
    }
    20% {
        opacity: 1;
        width: 0;
    }
    80% {
        opacity: 1;
        width: 105%;
    }
    100% {
        opacity: 0;
        width: 105%;
    }
}

@keyframes arrowlong02 {
    0% {
        left: 0;
        opacity: 0;
    }
    20% {
        left: 0;
        opacity: 1;
    }
    80% {
        left: 100%;
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

@media screen and (max-width: 767px) {
    .scrollFlow {
        display: block;
    }
}

/* --------------------------------------------
    buttonDocument
--------------------------------------------  */
.buttonDocument {
    background: #eb6202;
    border: 6px solid #ffcf62;
    border-radius: 16px;
    display: inline-block;
    margin: 0 auto;
    max-width: 600px;
    padding: calc(8px * 3) calc(8px * 2);
    position: relative;
    transition: .2s;
    width: 100%;
}

.buttonDocument__head {
    background: #fff;
    border: 3px solid #eb6202;
    border-radius: 8px;
    color: #333;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    left: 0;
    margin: auto;
    max-width: 240px;
    padding: 4px 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: -15%;
    width: 100%;
}

.buttonDocument__head span {
    color: #eb6202;
}

.buttonDocument__unit {
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
}

.buttonDocument__unit--card {
    left: 7%;
    position: absolute;
}

.buttonDocument__unitBody--word {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 2px;
}

.buttonDocument__unitBody--lead {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    margin-top: calc(8px * 1);
}

.buttonDocument__unit--woman {
    position: absolute;
    right: 3%;
}

.buttonDocument:hover {
    background: #fff;
    border: 6px solid #eb6202;
}

.buttonDocument:hover .buttonDocument__head {
    background: #eb6202;
    color: #fff;
}

.buttonDocument:hover .buttonDocument__head span {
    color: #fff;
}

.buttonDocument:hover .buttonDocument__unitBody--word,
.buttonDocument:hover .buttonDocument__unitBody--lead {
    color: #eb6202;
}

@media screen and (max-width: 767px) {
    .buttonDocument {
        background: #eb6202;
        border: 3px solid #ffcf62;
        border-radius: 16px;
        display: inline-block;
        margin: 0 auto;
        max-width: 100%;
        padding: calc(8px * 2) calc(8px * 1) calc(8px * 2);
        position: relative;
        transition: .4s;
        width: 80%;
    }

    .buttonDocument__head {
        border: 3px solid #eb6202;
        border-radius: 8px;
        font-size: 13px;
        max-width: 180px;
        padding: 6px 0 4px;
        top: -25%;
    }

    .buttonDocument__unit--card {
        display: none;
    }

    .buttonDocument__unitBody--word {
        font-size: 18px;
    }

    .buttonDocument__unitBody--lead {
        font-size: 13px;
    }

    .buttonDocument__unit--woman {
        display: none;
    }

    .buttonDocument:hover {
        border: 3px solid #eb6202;
    }
}

/* --------------------------------------------
    header
--------------------------------------------  */
.header {
    background: #fff;
    height: 80px;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

.header__inner {
    align-items: center;
    display: flex;
    height: 80px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1040px;
    width: 100%;
}

.header__logo img {
    height: 48px;
    width: auto;
}

.headerNav {
    column-gap: 32px;
    display: flex;
}

.headerNav__list {
    align-items: center;
    column-gap: 32px;
    display: flex;
    font-size: 12px;
}

.headerNav__list li a {
    color: #333;
}

.buttonRequest {
    background: #eb6202;
    border-radius: 4px;
    color: #fff;
    display: inline-block;
    font-size: var(--fontSize16);
    font-weight: 500;
    padding: 8px 24px;
}

.headerNav__toggle {
    display: none;
}

.headerMenu {
    background: #fff;
    display: none;
    opacity: 0;
    position: fixed;
    top: 60px;
    transform: translateX(50px);
    transition: .2s;
    width: 100%;
    z-index: 1000;
}

@media screen and (min-width:768px) and ( max-width:1040px) {
    .header__inner {
        padding: 0 16px;
        width: auto;
    }

    .headerNav {
        column-gap: 10px;
    }

    .headerNav__list {
        align-items: center;
        column-gap: 10px;
        display: flex;
        font-size: 12px;
    }
}

@media screen and (max-width: 767px) {
    .header {
        height: 60px;
    }

    .header__inner {
        height: 60px;
        padding-left: 10px;
        width: auto;
    }

    .header__logo img {
        height: 32px;
    }

    .headerNav {
        align-items: center;
        column-gap: 16px;
    }

    .headerNav__list {
        display: none;
    }

    .headerNav__toggle {
        cursor: pointer;
        display: block;
        height: 60px;
        position: relative;
        width: 60px;
    }

    .headerNav__toggle span {
        background: #004ea1;
        height: 2px;
        left: 0;
        margin: auto;
        position: absolute;
        right: 0;
        top: 50%;
        transition: .2s;
        width: 28px;
    }

    .headerNav__toggle span:nth-of-type(1) {
        top: 36%;
    }

    .headerNav__toggle span:nth-of-type(2) {
        top: 50%;
    }

    .headerNav__toggle span:nth-of-type(3) {
        top: 64%;
    }

    .is-open.headerNav__toggle span:nth-of-type(1) {
        top: 50%;
        transform: rotate(45deg);
    }

    .is-open.headerNav__toggle span:nth-of-type(2) {
        background: transparent;
    }

    .is-open.headerNav__toggle span:nth-of-type(3) {
        top: 50%;
        transform: rotate(-45deg);
    }

    .is-open.headerMenu {
        align-items: center;
        display: flex;
        height: calc(100vh - 60px);
        justify-content: center;
        opacity: 1;
        transform: translateX(0);
    }

    .headerMenu__list li {
        font-size: var(--fontSize18);
        font-weight: bold;
        text-align: center;
    }

    .headerMenu__list li:nth-child(n+2) {
        margin-top: 32px;
    }

    .headerMenu__list li a {
        color: #333;
    }

    .headerMenu__request {
        margin-top: 32px;
    }

    .headerMenu__request .buttonRequest {
        padding: 16px 0;
        text-align: center;
        width: 100%;
    }
}

/* --------------------------------------------
    footer
--------------------------------------------  */
.footerConversion {
    background: url("../images/bg_footer_cv.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 64px 0;
}

.footerConversion__button {
    display: flex;
    justify-content: center;
}

.footerConversion__button img {
    max-width: 640px;
    width: 100%;
}

.footerBelow {
    padding-top: 16px;
}

.footerBelow__box {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.footerBelow__box--logo img {
    height: 45px;
    width: auto;
}

.footerBelow__boxPrivacy {
    column-gap: 48px;
    display: flex;
}

.footerBelow__boxPrivacy--logo img {
    height: 65px;
    width: auto;
}

.footerBelow__notes {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    padding-bottom: 16px;
}

.footerBelow__notes--copyright {
    font-size: 10px;
}

.footerBelow__notes__nav {
    column-gap: 40px;
    display: flex;
    font-size: 10px;
}

.footerBelow__notes__nav li a {
    color: #333;
}

@media screen and (max-width: 767px) {
    .footerConversion {
        padding: 32px 0;
    }

    .footerConversion__button {
        display: flex;
        justify-content: center;
    }

    .footerBelow {
        padding-top: 32px;
    }

    .footerBelow__box {
        display: grid;
        grid-template-columns: 100%;
    }

    .footerBelow__box--logo {
        text-align: center;
    }

    .footerBelow__box--logo img {
        height: 40px;
    }

    .footerBelow__boxPrivacy {
        column-gap: 16px;
        justify-content: center;
        margin-top: 32px;
    }

    .footerBelow__boxPrivacy--logo img {
        height: 40px;
    }

    .footerBelow__notes {
        display: grid;
        grid-template-columns: 100%;
        margin-top: 32px;
        padding-bottom: 32px;
    }

    .footerBelow__notes--copyright {
        font-size: 10px;
        margin-top: 32px;
        order: 2;
        text-align: center;
    }

    .footerBelow__notes__nav {
        flex-wrap: wrap;
        row-gap: 24px;
    }

    .footerBelow__notes__nav li {
        text-align: center;
        width: 100%;
    }
}
