/***********************
リセットCSS
***********************/
*,*::before,*::after {box-sizing: border-box;}ul,ol {padding: 0;}body,h1,h2,h3,h4,p,ul,ol,figure,blockquote,dl,dd {margin: 0;}html {scroll-behavior: smooth;}body {min-height: 100vh;text-rendering: optimizeLegibility;line-height: 2.1;}ul,ol {list-style: none;}a:not([class]) {text-decoration-skip-ink: auto;}img {max-width: 100%;display: block;width: 100%;height: auto;}article > * + * {margin-top: 1em;}input,button,textarea,select {font: inherit;}img:not([alt]) {filter: blur(10px);}a {text-decoration: none;color: inherit;transition: opacity 0.3s;}.text-block{display: inline-block;}

.visually-hidden {
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0;
    padding: 0;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    margin: -1px;
}

/***********************
font
***********************/
.mincho{
    font-family: "Shippori Mincho", serif;
    font-style: normal;
}
/*mincho-w:600,700*/

.serif {
    font-family: "Noto Serif", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings:
    "wdth" 100;
}

/***********************
共通スタイル
***********************/
:root{
    --dark-red: #990000;
    --text-red: #9a0000;
    --link-red: #901d22;
    /* --red: #9a0007 */
    --header-fv-blue: #23386e;
    --navy: #0a1e4b;
}

a{
    transition: 0.3s;
}

a:hover,a:focus{
    opacity: 0.7; 
    transition: 0.3s;
}

/* <uniquifier>: Use a unique and descriptive class name
<weight>: Use a value from 100 to 900*/
body {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 2.11; /*--38/18--*/
    /* font-feature-settings: "palt"; */
    /*自動文字つめ*/
}

.inner{
    margin-inline: auto;
    padding-left: 25px;
    padding-right: 25px;
}

.inner--wide{
    max-width: 1250px;
}

.inner--medium{
    max-width: 1150px;
}

.inner--narrow{
    max-width: 1050px;
}

/*----- リンクボタン -----*/
.link-btn{
    display: inline-block;
    background-color: var(--dark-red);
    border: 1px solid var(--dark-red);
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.14em;
    line-height: 1.3;
    text-align: center;
    padding: 1.15em 1.2em 1.2em;
    width: 700px;
    max-width: 100%;
    position: relative;
    border-radius: 100px;
}

.link-btn:hover,.link-btn:focus{
    background-color: #fff;
    color: var(--dark-red);
    opacity: 1;
}

.link-btn::before{
    content: "";
    background-image: url(../images/common/arw-wh.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: inline-block;
    position: absolute;
    width: 1.8em;
    height: 0.6em;
    z-index: 1;
    top: 47%;
    transform: translateY(-50%);
    right: 25px;
}
.link-btn:hover::before{
    background-image: url(../images/common/arw-red.png);
    transition: 0.3s;
}

/*
.link-btn::before,.link-btn::after{
    content: "";
    display: inline-block;
    background-color: #fff;
    position: absolute;
    height: 2px;
    z-index: 1;
}*/

.link-btn--link-red{
    background-color: var(--link-red);
}

.link-btn--link-blue{
    background-color: #fff;
    border: 1px solid var(--navy);
    color: var(--navy);
}

.link-btn--link-blue:hover,.link-btn--link-blue:focus{
    background-color: var(--navy);
    border: 1px solid #fff;
    color: #fff;
}
/*
.link-btn::before{
    width: 1.8em;
    right: 1.6em;
    top: 50%;
    transform: translateY(-50%);
}

.link-btn::after {
    width: 0.75em;
    right: 1.5em;
    top: 43%;
    transform: rotate(45deg) translateY(-50%);
}
*/
/*
.link-btn--link-blue::before{
    right: 10.1em;
}

.link-btn--link-blue::after{
    right: 10em;
}
*/
/*
.link-btn--link-red::before{
    right: 3.8em;
}

.link-btn--link-red::after{
    right: 3.7em;
}

.link-btn--link-blue::before,.link-btn--link-blue::after{
    background-color: var(--navy);
    transition: 0.3s;
}

.link-btn--link-blue:hover::before,.link-btn--link-blue:hover::after{
    background-color: #fff;
    transition: 0.3s;
}*/
.link-btn--link-blue::before{
    background-image: url(../images/common/arw-blue.png);
    transition: 0.3s;
}
.link-btn--link-blue:hover:before{
    background-image: url(../images/common/arw-wh.png);
    transition: 0.3s;
}

.content-link{
    display: inline-block;
    background-color: #fff;
    border: 1px solid var(--text-red);
    color: var(--text-red);
    font-weight: 500;
    text-align: center;
    max-width: 320px;
    width: 100%;
    margin-left: auto;
    padding-top: 0.1em;
    position: relative;
}

.content-link:hover,.content-link:focus{
    background-color: var(--text-red);
    color: #fff;
    opacity: 1;
}

/* .content-link{
    padding: 0.1em;
} */

.content-link::before {
    content: '';
    width: 8px;
    height: 8px;
    border-top: solid 1px var(--text-red);
    border-right: solid 1px var(--text-red);
    position: absolute;
    right: 32px;
    top: 47%;
    transform: rotate(45deg) translateY(-50%);
    transition: 0.3.s;
}

.content-link:hover::before,.content-link:focus::before {
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    transition: 0.3.s;
}

.content-link--narrow::before {
    right: 15px;
}

/* @media screen and (max-width: 1194px){

} */

@media screen and (max-width: 1023px){
    .link-btn {
        font-size: max(16px,1.92vw);
    }

    .content-link {
        font-size: 14px;
    }
}

@media screen and (max-width: 767px){
    .inner{
        padding-left: 5vw;
        padding-right: 5vw;
    }
    .link-btn::after {
        /* right: 1.4em; */
        top: 42%;
    }

    .link-btn::before {
        width: 1.5em;
        height: 0.5em;
        right: 15px;
    }
}

@media screen and (max-width: 599px){
    .link-btn::before {
        width: 22px;
        height: 0.46em;
        right: 12px;
    }

    .link-btn::after {
        right: 22px;
        top: 43%;
    }

    .link-btn {
        /*padding: 1.15em 3em 1.2em 1.2em;
        padding: 1.15em 3em 1.2em 1em;*/
        padding: 1.15em 2em 1.2em 2em;
    }    
}

@media screen and (max-width: 499px){
    .content-link {
        padding: 0.1em !important;
    }
}

/***********************
header
***********************/
.header{
    background-color: #fff;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 45px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.header-content{
    display: flex;
    justify-content: space-between;
}

.header-logo-top{
    width: 282px;
    height: auto;
}

.header-logo-bottom{
    display: flex;
    align-items: center;
    margin-top: -12px;
}

.header-logo-bottom img{
    width: 300px;
    height: auto;
}

.header-logo-bottom span {
    display: inline-block;
    background-color: var(--dark-red);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    /* padding: 0.36em 0.7em; */
    margin-left: 0.6em;
    letter-spacing: 0.03em;
    height: 22px;
    line-height: 23px;
    width: 78px;
    text-align: center;
}

.header__nav{
    font-weight: bold;
    letter-spacing: 0.03em;
}

/* .header__nav-top{
    font-size: 14px;
} */

.header__nav-top-items{
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.header__nav-items{
    display: flex;
    margin-top: 5px;
}

.header__nav-top-item a{
    display: block;
    border: 1px solid var(--header-fv-blue);
    border-radius: 12px;
    font-size: 14px;
    width: 100px;
    height: 24px;
    padding-right: 0.8em;
    position: relative;
    line-height: 22px;
    text-align: right;
}

.header__nav-top-item:first-of-type a{
    color: var(--header-fv-blue);
    background-color: #fff;
}

.header__nav-top-item:last-of-type a{
    background-color: var(--header-fv-blue);
    color: #fff
}

.header__nav-top-item a::before{
    content: "";
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.header__nav-top-item:first-of-type a::before{
    background-image: url(../images/common/icon-pin.svg);
    width: 14px;
    height: 14px;
}

.header__nav-top-item:last-of-type a::before{
    background-image: url(../images/common/icon-lang.svg);
    width: 18px;
    height: 18px;
    left: 11px;
}

.header__nav-item{
    position: relative;
}

.header__nav-item a{
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0.03em;
    line-height: 1;
    padding: 0.63em 0;
    margin-left: 2em;
}

.header__subnav-items a{
    margin-left: 0;
    padding: 1em;
}

.header__nav-item-has-children{
    padding-right: 1.2em;
    position: relative;
}

.header__nav-item-has-children::after {
    content: "";
    width: 9px;
    height: 9px;
    border-top: 3px solid #828282;
    border-right: 3px solid #828282;
    right: 30px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    position: absolute;
    right: 5px;
    top: 0.75em;
}

.header__subnav-items{
    position: absolute;
    background: var(--header-fv-blue);
    color: #fff;
    top: 2.5em;
    left: -1em;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
    z-index: 1;
}

.header__nav-item-has-children:hover ul,
.header__subnav-items.focused{
    opacity: 1;
    visibility: visible;
}

.header__nav-item-has-children li a:hover,
.header__nav-item-has-children li a:focus{
    background-color: #5c72ac;
    opacity: 1;
}

.header__subnav-item{
    white-space: nowrap;
}

.drawer-button{
    display: none;
}

.header__nav-item.sp-item{
    display: none;
}


@media (min-width: 768px) and (max-width: 1499px) {
    .header-content {
        align-items: center;
    }

    .header__nav-item a {
        font-size: 14px;
    }

    .header-logo-top {
        width: max(220px, 18.8vw);
    }

    .header-logo-bottom img {
        width: max(250px, 20vw);
        height: auto;
    }

    .header-logo-bottom span {
        font-size: max(11px, 0.9333vw);
        width: max(60px, 5.3vw);
        height: max(18px, 1.5vw);
        line-height: max(19px, 1.6vw);
    }
}

@media (min-width: 1024px) and (max-width: 1194px) {
    .header {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 20px;
    }

    .header__nav-item a {
        font-size: 13px;
    }

    .header__nav-top-item a {
        font-size: 13px;
        width: 95px;
    }
}

@media screen and (max-width: 1023px){
    .header {
        padding-left: 15px;
        padding-right: 0;
        padding-top: 0;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10;
    }

    .header-content {
        /* height: min(14.16vw, 85px); */
        height: clamp(64px, 14.16vw, 85px);
        align-items: center;
    }

    .header-logo{
        padding-top: 2vw;
    }

    .header__subnav-items{
        opacity: 1;
        visibility: visible;
        position: static;
    }

    /*ハンバーガーメニュー*/

    .drawer-button{
        display: block;
    }

    html.is-fixed{
        overflow: hidden;
    }

        /*以下デザインに合わせて変更*/

    .header__nav{
        visibility: hidden;
        opacity: 0;
        background-color: var(--header-fv-blue);
        padding: 0;
        position: fixed;
        z-index: -1;
        width: 100vw;
        /* height: 100vh; */
        /* height: calc(100vh + 30px); */
        height: 0;
        /* top: min(14.16vw, 85px); */
        top: clamp(64px, 14.16vw, 85px);
        left: 50%;
        transform: translateX(-50%);
        transition: 0.5s;
        z-index: -3;
        display: none;
        /*top:-100%;*/
    }

    .header__nav.open{
        visibility: visible;
        opacity: 1;
        height: 100vh;
        display: block;
        /*top:85px;*/
    }

    .header__nav-wrap{
        display: block;
        padding: 13vw 19vw 100px;
        text-align: center;
        transition: opacity 0.5s;
        height: 100%;
    }

    .header__nav-items {
        display: block;
        /* text-align: center; */
        text-align: left;
        padding-bottom: 50px;
    }

    .header__nav.open .header__nav-wrap {
        right: 0;
        overflow-y: auto;

    }

    .header__nav-item{
        font-size: 18px;
        margin-left: 0;
        padding: 0;
    }

    .header__nav-item a {
        color: #fff;
        font-size: 18px;
        padding: 1.5em 1em;
        width: 100%;
        margin-left: 0;
    }

    .header__nav-item{
        border-bottom: 1px solid rgba(255,255,255,0.3);
    }

    .header__nav-item-has-children a:not(.header__subnav-items a){
        border-bottom: none;
    }

    .header__nav-top-items {
        justify-content: flex-end;
        gap: 16px;
        padding-right: 1em;
    }

    .header__subnav-item {
        white-space: normal;
        padding-left: 2em;
    }

    .header__subnav-item a{
        border-top: 1px solid rgba(255,255,255,0.3);
    }

    .header__subnav-items a{
        font-size: 16px;
        /* padding-left: 5em; */
    }
    
    .header__nav-item-has-children::after{
        content: none;
    }

    .header__nav-top-item:last-of-type a {
        border-color: #fff;
    }

    /*ドロワーボタン*/
    .drawer-button {
        display: inline-block;
        background-color: transparent;
        border: none;
        text-decoration: none;
        width: auto;
        /* margin: 0; */
        margin-left: 15px;
        /* padding: 25px; */
        padding: min(4.16vw,25px);
        box-shadow: 0 0 2rem transparent;
        appearance: none;
        outline: none;
        transition: all .3s ease-in-out;
        cursor: pointer;
        /* position: absolute; */
        position: fixed;
        /* width: 60px; */
        width: min(10vw, 60px);
        /* height: 60px; */
        height: min(10vw, 60px);
        top: 19px;
        top: min(3.16vw, 14px);
        right: 15px;
        z-index: 999;
    }
    
    .drawer-button__line {
        background-color: #000;
        /* border-radius: 2px; */
        position: absolute;
        right: 0;
        left: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        width: 50px;
        height: 2px;
        transition: inherit;
    }
    
    .drawer-button__line::before,
    .drawer-button__line::after {
        border-radius: 2px;
        content: '';
        display: block;
        position: absolute;
        background-color: #000;
        width: 100%;
        /* width: 27px; */
        height: 100%;
        /* height: 1px; */
        transition: inherit;
    }
    
    .drawer-button__line::before {
        top: -15px;
    }
    
    .drawer-button__line::after {
        top: 15px;
    }
    
    .drawer-button[aria-expanded="true"] .drawer-button__line {
        background-color: transparent;
        width: 50px;
    }
    
    .drawer-button[aria-expanded="true"] .drawer-button__line::before,
    .drawer-button[aria-expanded="true"] .drawer-button__line::after {
        top: 0;
        background-color: #000;
    }
    
    .drawer-button[aria-expanded="true"] .drawer-button__line::before {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        transform-origin: center;
    }
    
    .drawer-button[aria-expanded="true"] .drawer-button__line::after {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        transform-origin: center;
    }


    /* .header__logo {
        font-size: 30px;
    } */

    .header-logo-top {
        width: min(53.33vw, 280px);
    }

    .header-logo-bottom {
        margin-top: -7px;
    }

    .header-logo-bottom img {
        /* width: min(57.5vw, 345px); */
        width: min(53.33vw, 280px);
        /* height: min(3.666vw, 22px); */
    }

    .header-logo-bottom span {
        /* font-size: min(2.66vw, 16px); */
        font-size: min(2.66vw, 12px);
    }

    .header__nav-item.pc-item{
        display: none;
    }
    .header__nav-item.sp-item{
        display: block;
    }
        
}

@media screen and (max-width: 767px){
    .header-logo-bottom span {
        height: max(16px, 2.6vw);
        line-height: max(17px, 2.6vw);
        width: max(50px, 8.5vw);
        font-size: max(10px, 1.5626vw);
        margin-left: 7px;
    }
}

@media screen and (max-width: 599px){
    .header {
        padding-left: 20px;
    }
    /* .drawer-button {
        margin-left: min(7vw, 45px);
        padding: 25px;
        width: 50px;
        height: 50px;
    } */

    .header__nav-item--mail a {
        width: 50px;
        height: 50px;
    }

    .drawer-button__line {
        width: 36px;
    }

    .drawer-button__line::before,
    .drawer-button__line::after {
        /* width: 24px; */
    }

    .drawer-button[aria-expanded="true"] .drawer-button__line {
        width: 36px;
    }

    .drawer-button__line::before {
        top: -12px;
    }

    .drawer-button__line::after {
        top: 12px;
    }

    .header-logo::before {
        height: 2.5em;
    }

    .header::before {
        width: calc(100% + 15px);
        height: calc(100% + 15px);
    }

    .header__nav-wrap {
        padding: 13vw 10vw 100px;
    }

    .header__nav-item a {
        font-size: 16px;
    }

    .header__subnav-items a {
        font-size: 15px;
    }
}

@media screen and (max-width: 499px){
    .drawer-button {
        top: 2.8vw;
    }
}

@media screen and (max-width: 450px){
    .drawer-button {
        top: 12px;
    }
}

/*******************
footer
*******************/
.footer{
    background-color: #141516;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 185px 0 40px;
} 

.footer__inner{
    max-width: 1250px;
}

.footer__content{
    display: flex;
    justify-content: space-between;
}

.footer__logo{
    width: 50%;
}

.footer__logo-top img{
    width: 308px;
}

.footer__logo-bottom{
    display: flex;
    margin-top: 8px;
}

.footer__logo-bottom img{
    width: 357px;
    height: 23px;
}

.footer__logo-bottom span{
    background-color: var(--dark-red);
    width: 93px;
    height: 27px;
    line-height: 26px;
    text-align: center;
    text-indent: -0.1em;
    margin-left: 8px;
}

.footer__content-nav{
    width: 55%;
    margin-top: -5px;
    position: relative;
    left: 50px;
}

.footer-nav__items{
    display: flex;
    flex-wrap: wrap;
    gap: 40px 40px;
    margin-top: -8px;
}

.footer-nav__item a{
    display: inline-block;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding-left: 1em;
    position: relative;
}

.footer-nav__item a::before{
    content: '';
    width: 8px;
    height: 8px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: rotate(45deg) translateY(-50%);
}

.footer__copy{
    font-size: 12px;
    text-align: center;
    line-height: 1;
    margin-top: 175px;
}

@media screen and (max-width: 1350px){
    .footer {
        padding: 13.7vw 0 40px;
    }

    .footer__logo-top img {
        /* width: 22.8vw; */
        /* width: max(250px, 22.8vw); */
        width: max(190px, 22.8vw);
    }

    .footer__logo-bottom img {
        /* width: 26.4vw; */
        /* width: max(270px, 26.4vw);
        height: max(20px, 1.7vw); */
        width: max(216px, 26.4vw);
        height: max(15px, 1.7vw);
    }

    .footer__logo-bottom span {
        width: max(60px, 6.88vw);
        height: max(18px, 2vw);
        line-height: max(18px, 1.9259vw);
        margin-left: max(6px,0.6vw);
        font-size: max(11px, 1.333vw);
    }

    .footer__content-nav {
        left: 0;
        width: 48%;
    }

    .footer-nav__item a {
        font-size: 17px;
    }

    .footer__copy {
        margin-top: 12.9vw;
    }
}

/* @media (min-width: 768px) and (max-width: 1249px) {

} */

@media screen and (max-width: 899px){
    .footer__content {
        display: block;
    }

    .footer__content-nav {
        width: 100%;
        margin-top: 50px;
    }

    .footer-nav__items {
        gap: 15px 40px;
        margin-top: 0;
    }

    .footer__logo {
        width: 100%;
    }

    .footer-nav__item a {
        font-size: 16px;
    }
}

@media screen and (max-width: 599px){
    .footer {
        padding: 60px 0 40px;
    }
}

@media screen and (max-width: 399px){
    .footer-nav__items {
        flex-direction: column;
    }
}

/*******************
cv
*******************/
.cv{
    background-image: url(../images/common/cv-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 85px 0 100px;
}

.webp .cv{
    background-image: url(../images/common/cv-bg.jpg.webp);
}

.cv__content{
    /*background-image: url(../images/common/cv-content-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right top;*/
    background-color: #fff;
    margin-top: 12px;
    padding: 45px 0;
}
.cv__content-flex{
    max-width: 1000px;
    width: 96%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.cv__content-title{
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.cv__content-tel{
    /*color: var(--text-red);*/
    font-size: 70px;
    font-weight: bold;
    line-height: 1;
    white-space: nowrap;
    padding-left: 1.1em;
    /*margin-top: 0.2em;*/
    position: relative;
    display: block;
    pointer-events: none;
}

.cv__content-tel::before{
    content: "";
    display: inline-block;
    background-image: url(../images/common/icon-tel.png);
    background-size: contain;
    background-repeat: no-repeat;
    /* width: 37px;
    height: 48px; */
    width: 1em;
    height: 1em;
    position: absolute;
    left: 0;
    top: 52%;
    transform: translateY(-50%);
}

.cv__content-mail{
    /*margin-top: 24px;*/
    margin-left: 3px;
    max-width: 420px;
    flex-basis: 42%;
}

.cv__content-mail a{
    display: block;
    /*background-color: var(--navy);*/
    background-color: #901d22;
    width: 100%;
    height: 80px;
    line-height: 80px;
    border-radius: 100px;
    text-align: center;
}

.cv__content-mail a span{
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    padding-left: 2em;
    position: relative;
}

.cv__content-mail a span::before {
    content: "";
    display: inline-block;
    background-image: url(../images/common/icon-mail.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 1.1em;
    height: 1.1em;
    position: absolute;
    top: 64%;
    transform: translateY(-50%);
    left: 0.3em;
}

.cv__content-img{
    display: none;
}
/*
@media screen and (max-width: 1149px){
    .cv {
        padding-top: max(40px, 7.39vw);
        padding-bottom: max(40px, 7.39vw);
    }
}

@media (min-width: 768px) and (max-width: 1149px) {
    .cv__content {
        margin-top: 1.04vw;
        padding: 3.913vw 5.652vw;
    }

    .cv__content-title {
        font-size: max(18px, 2.087vw);
    }

    .cv__content-tel {
        font-size: max(50px, 6.086vw);
    }

    .cv__content-mail {
        margin-top: 2.087vw;
    }

    .cv__content-mail a {
        width: 45vw;
        height: max(45px, 5.217vw);
        line-height: max(45px, 5.217vw);
    }

    .cv__content-mail a span {
        font-size: max(16px, 1.739vw);
    }
}
*/
@media screen and (max-width: 1099px){
    .cv__content-tel{
        font-size: 64px;
        margin-top: 0.05em;
    }
}
@media screen and (max-width: 1023px){
    .cv__content-tel {
        font-size: 6.5vw;
        margin-top: 0.9vw;
    }
    .cv__content-mail a span {
        font-size: 2.5vw;
    }
    .cv__content-tel::before{
        top: 0.5vw;
        transform: translateY(0);
    }
}
@media screen and (max-width: 767px){
    .cv{
        padding: 65px 0 70px;
    }
    .cv__content {
        background-image: none;
        text-align: center;
        padding: 5vw 7vw;
    }

    .cv__content-img {
        display: block;
    }

    .cv__content-title {
        font-size: max(18px, 3.125vw);
    }

    .cv__content-tel {
        font-size: max(36px, 9.1vw);
        width: fit-content;
        margin-inline: auto;
        pointer-events: all;
    }

    .cv__content-mail a {
        width: 100%;
    }
    .cv__content-flex{
        display: block;
        width: 100%;
        text-align: center;
    }
    .cv__content-mail{
        max-width: none;
        margin: 20px 0 0;
    }
    .cv__content-mail a span{
        font-size: 24px;
    }
}

@media screen and (max-width: 599px){
    .cv{
        padding: 50px 0 60px;
    }
    .cv__content-mail a {
        height: 50px;
        line-height: 50px;
    }

    .cv__content-mail a span {
        font-size: 18px;
    }

    /*.cv__content-tel::before {
        width: 0.55em;
        height: 0.75em;
        top: 60%;
    }*/
}

@media screen and (max-width: 499px){
    .cv__content-mail a span {
        font-size: 16px;
    }
}
