/* --------------------------------------------
    variablues
--------------------------------------------  */
:root {
    --colorBlack       : #333333;
    --colorLightGray   : #EEEEEE;
    --colorYellow      : #FFE785;
    --colorLightYellow : #FFF7D6; 
    --colorOrange      : #EB6202; 
    --colorBlue        : #004EA1;

    --fontSize16     : clamp(0.875rem, 0.795rem + 0.34vw, 1rem);
    --fontSize18     : clamp(1rem, 0.92rem + 0.34vw, 1.125rem);
    --fontSize20     : clamp(1rem, 0.859rem + 0.6vw, 1.25rem);
    --fontSize24     : clamp(1.125rem, 0.914rem + 0.9vw, 1.5rem);
    --fontSize28     : clamp(1.25rem, 0.97rem + 1.2vw, 1.75rem);
    --fontSize32     : clamp(1.375rem, 1.023rem + 1.5vw, 2rem);
    --fontSize36     : clamp(1.5rem, 0.8rem + 2vw, 2.25rem);
    --fontSize40     : clamp(1.25rem, 0.545rem + 3.01vw, 2.5rem);
    --fontSize42     : clamp(1.75rem, 0.6rem + 3.5vw, 2.75rem);
    --fontSize40b    : clamp(2rem, 0.545rem + 3.01vw, 2rem);

}
/* --------------------------------------------
    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-pc {
        display: none;
    }
    .is-sp {
        display: block;
    }
}

/* --------------------------------------------
    Text
--------------------------------------------  */
.commonHeading {
    font-size: var(--fontSize24);
    letter-spacing: 2px;
}

.commonHeading.is-center {
    text-align: center;
}

.commonHeading span {
    color: #004EA1;
    font-size: 32px;
    font-weight: bold;
}

.commonLead {
    color: #004EA1;
    font-size: 12px;
    font-weight: 400;
    margin-top: 8px;
}

.commonLead.is-center {
    text-align: center;
}

.commonWord {
    font-size: var(--fontSize24);
    letter-spacing: 2px;
    margin-top: 8px;
}

.commonWord span {
    color: var(--colorBlue);
    font-size: var(--fontSize32);
}

.commonWord.is-center {
    text-align: center;
}

.commonText {
    font-size: var(--fontSize16);
    line-height: 1.7;
}

@media screen and (max-width: 767px) {
    .commonHeading {
        letter-spacing: 1px;
    }
}

/* --------------------------------------------
    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;
    outline: none;
    margin: 0 15%;
    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-top: 2px solid #fff;
    border-right: 2px solid #fff;
    bottom: -5px;
    content: "";
    height: 10px;
    position: absolute;
    width: 10px;
    transform: rotate(45deg);
}

.scrollFlow__arrow::before {
    animation: arrowlong01 2s ease infinite;
}
.scrollFlow__arrow::after {
    animation: arrowlong02 2s ease infinite;
}

@keyframes arrowlong01{
    0%{width:0;opacity:0}
    20%{width:0;opacity:1}
    80%{width:105%;opacity:1}
    100%{width:105%;opacity:0}
}

@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;
    }
}

/* --------------------------------------------
    buttonDownload
--------------------------------------------  */
.buttonDownload {
    display: flex;
    justify-content: center;
}

.buttonDownload a {
    align-items: center;
    background: var(--colorOrange);
    border: 5px solid #fff;
    border-radius: 60px;
    display: flex;
    height: 90px;
    justify-content: center;
    padding: 0 105px 0 50px;
    position: relative;
    transition: .3s;
}

.buttonDownload a::before {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: "";
    height: 10px;
    margin-top: -5px;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: rotate(45deg);
    width: 10px;
}

.buttonDownload a:hover {
    background: #fff;
}

.buttonDownload__box {
    align-items: center;
    column-gap: 16px;
    display: flex;
}

.buttonDownload__box--img img {
    height: 55px;
    width: auto;
}

.buttonDownload__boxMain--title {
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1;
    text-align: center;
    margin-top: 2px;
}

.buttonDownload__boxMain--word {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1;
    margin-top: 6px;
    text-align: center;
}

.buttonDownload__head {
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: -20px;
    text-align: center;
    width: 100%;
    transition: .3s;
}

.buttonDownload__head--title {
    background: #fff;
    border: 4px solid var(--colorOrange);
    border-radius: 40px;
    box-shadow: -7px 3px 6px 0px rgba(0, 0, 0, 0.16);
    color: var(--colorBlack);
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    padding: 6px 32px;
    transition: .3s;
}

.buttonDownload__head--title span {
    color: var(--colorOrange);
}

.buttonDownload a:hover {
    background: #fff;
    border: 5px solid var(--colorOrange);
}

.buttonDownload a:hover .buttonDownload__head--title {
    background: var(--colorOrange);
    color: #fff;
}

.buttonDownload a:hover .buttonDownload__head--title span {
    color: #fff;
}

.buttonDownload a:hover .buttonDownload__boxMain--title {
    color: var(--colorOrange);
}

.buttonDownload a:hover .buttonDownload__boxMain--word {
    color: var(--colorOrange);
}

.buttonDownload a:hover::before {
    border-top: 2px solid var(--colorOrange);
    border-right:  2px solid var(--colorOrange);
}

@media screen and (max-width: 767px) {
    .buttonDownload a {
        border: 3px solid #fff;
        height: 60px;
        padding: 3px 0 0;
        width: 100%;
    }
    
    .buttonDownload a::before {
        height: 8px;
        margin-top: -4px;
        right: 20px;
        width: 8px;
    }
    
    .buttonDownload a:hover {
        background: #fff;
    }
    
    .buttonDownload__box {
        column-gap: 0;
    }
    
    .buttonDownload__box--img img {
        display: none;
    }
    
    .buttonDownload__head--title {
        border: 2px solid var(--colorOrange);
        box-shadow: -4px 2px 3px 0px rgba(0, 0, 0, 0.16);
        font-size: 13px;
        padding: 6px 24px;
    }

    .buttonDownload__boxMain--title {
        font-size: 13px;
    }
    
    .buttonDownload__boxMain--word {
        font-size: 16px;
    }

    .buttonDownload__boxMain {
        text-align: center;
    }
    
    .buttonDownload a:hover {
        border: 3px solid var(--colorOrange);
    }
}

/* --------------------------------------------
    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: #333333;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    left: 0;
    margin: auto;
    max-width: 240px;
    padding: 4px 0;
    position: absolute;
    right: 0;
    top: -15%;
    text-align: center;
    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;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.header__inner {
    align-items: center;
    display: flex;
    height: 80px;
    margin: 0 auto;
    max-width: 1040px;
    justify-content: space-between;
    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: #333333;
}

.buttonRequest {
    background: var(--colorBlue);
    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;
    transform: translateX(50px);
    top: 60px;
    transition: .2s;
    width: 100%;
    z-index: 1000;
}

@media screen and (min-width:768px) and ( max-width:1040px) {
    .header__inner {
        padding: 0 16px;
        width: auto;
    }

    .header__logo img {
        height: 32px;
        width: auto;
    }

    .headerNav {
        column-gap: 10px;
    }

    .headerNav__list {
        align-items: center;
        column-gap: 10px;
        display: flex;
        font-size: 11px;
    }

    .buttonRequest {
        background: var(--colorBlue);
        border-radius: 4px;
        color: #fff;
        display: inline-block;
        font-size: 14px;
        font-weight: 500;
        padding: 8px 12px;
    }
}

@media screen and (max-width: 767px) {
    .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: 32px 0 ;
}

.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;
    margin-top: 16px;
    justify-content: space-between;
    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: 24px 0 ;
    }
    
    .footerConversion__button {
        text-align: 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;
        margin-top: 32px;
        padding-bottom: 32px;
        grid-template-columns: 100%;
    }
    
    .footerBelow__notes--copyright {
        order: 2;
        font-size: 10px;
        margin-top: 32px;
        text-align: center;
    }
    
    .footerBelow__notes__nav {
        flex-wrap: wrap;
        row-gap: 24px;
    }

    .footerBelow__notes__nav li {
        text-align: center;
        width: 100%;
    }
}