@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/* ==========================================================
 * RESET
 * ========================================================== */
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,dialog,figure,footer,header,hgroup,menu,nav,section,time,mark,audio,video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

input::placeholder {
    color: #ccc;
}

/* ==========================================================
 * VARIABLES
 * ========================================================== */
:root {
    --base-color: #000000;
    --base-font: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;


    --wrap: 1400px;
    --padding: 100px;
    --anchor-padding: 160px;

    --space: calc((100vw - var(--wrap))/2);
}
#body-wrap {
    min-width: 1100px;
    overflow-x: clip;
}
#body-line{
    position: fixed;
    z-index: -99;
    width: 83.3%;
    height: 100vh;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}
#body-line span{
    width: 1px;
    height: 100%;
    background-color: #fff;
}

body {
    -webkit-text-size-adjust: 100%;
    line-height: 1.8;
    color: var(--base-color);
    font-size: 16px;
    font-weight: 500;
    font-family: var(--base-font);
    background-color: #E6E6E6;
}


.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin: 0 auto;
}

a {
    transition: .2s;
    text-decoration: none;
    color: inherit;
}

a:hover {
    opacity: .7;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

ul,
ol {
    list-style: none;
}

.padding-tb{
    padding: var(--padding) 0;
}
.padding-top{
    padding-top: var(--padding);
}
.padding-bottom{
    padding-bottom: var(--padding);
}
.flex{
    display: flex;
    flex-wrap: wrap;
}
.ps-ab{
    position: absolute;
}
.ps-re{
    position: relative;
}

/* FADE */
.fadein {
    opacity : 0;
    transform : translate(0, 50px);
    transition : all 600ms;
    filter: blur(10px);
}
.fadeinr {
    opacity : 0;
    transform : translate(50px, 0);
    transition : all 600ms;
    filter: blur(10px);
}
.fadeinb {
    opacity : 0;
    transform : translate(0, -50px);
    transition : all 600ms;
    filter: blur(10px);
}

.fadeinl {
    opacity : 0;
    transform : translate(-50px, 0);
    transition : all 600ms;
    filter: blur(10px);
}

.fadeino {
    opacity : 0;
    transition : all 600ms;
    filter: blur(10px);
}

.fadein.scrollin, .fadeinr.scrollin, .fadeinb.scrollin, .fadeinl.scrollin {
    opacity : 1;
    transform : translate(0, 0);
    filter: blur(0);
}

.fadeino.scrollin {
   opacity : 1;
   filter: blur(0);
}


/* HEADER */
#header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 20px 0;
    z-index: 999;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.header-menu{
    position: absolute;
    transform: translateX(-50%);
    bottom: 13px;
    left: 50%;
    width: max-content;
}
.header-menu::before{
    content: "";
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    width: calc(100% + 80px);
    height: calc(100% + 20px);
    background-color: #fff;
    z-index: -1;
    pointer-events: none;
    border-radius: 40px;
    box-shadow: 0 0 40px rgb(0 0 0 / 0.15);
    opacity: 0;
    transition: .2s;
}
#header.over .header-menu::before{
    opacity: 1;
}
.header-menu ul{
    display: flex;
    flex-wrap: wrap;
    gap: 0 30px;
}
.header-menu ul li,
.header-menu ul li a{
    font-size: 12px;
}
.header-menu ul li a{
    display: inline-block;
    font-weight: 900;
}
.nav-toggle{
    width: 54px;
    height: 32px;
    position: relative;
    cursor: pointer;
}
.nav-toggle span{
    width: 100%;
    height: 4px;
    background-color: var(--base-color);
    border-radius: 4px;
    position: absolute;
    left: 0;
    transition: .2s;
}
.nav-toggle span:nth-of-type(1){
    top: 0;
}
.nav-toggle span:nth-of-type(2){
    top: 14px;
}
.nav-toggle span:nth-of-type(3){
    top: 28px;
}
.open .nav-toggle span:nth-of-type(1){
    top: 14px;
    transform: rotate(45deg);
}
.open .nav-toggle span:nth-of-type(2){
    opacity: 0;
}
.open .nav-toggle span:nth-of-type(3){
    top: 14px;
    transform: rotate(-45deg);
}


/* DRAWER */
.drawer{
    position: fixed;
    inset: 0;
    z-index: 998;
    /* 表示制御はGSAP(DRAWER MENU)が担当 */
    visibility: hidden;
}
.drawer-bg{
    position: absolute;
    inset: 0;
    background-color: #0A0A0A;
}
.drawer-line{
    position: absolute;
    width: 83.3%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}
.drawer-line span{
    width: 1px;
    height: 100%;
    background-color: rgb(255 255 255 / 0.08);
}
.drawer-inner{
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.drawer-menu ul{
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.drawer-menu a{
    display: inline-grid;
    grid-template-columns: auto auto;
    justify-content: start;
    align-items: start;
    column-gap: 16px;
    line-height: 1.5;
    font-size: 26px;
    font-weight: 900;
    color: #fff;
}
@media screen and (min-width: 1199px) and (max-height: 840px) {
    .drawer-menu a{
        font-size: 22px;
    }
    .drawer-menu ul{
        gap: 12px;
    }
}
.drawer-menu a span{
    font-size: 12px;
    font-weight: bold;
    color: #77FF00;
    position: relative;
    top: -15px;
}
.drawer-menu a em{
    grid-column: 2;
    font-size: 10px;
    font-weight: bold;
    font-style: normal;
    letter-spacing: 0.12em;
    color: rgb(255 255 255 / 0.4);
    transition: color .3s;
}
.drawer-menu a:hover em{
    color: #77FF00;
}
.drawer-menu a:hover{
    opacity: 1;
    color: #77FF00;
    transform: translateX(12px);
}
.drawer-foot{
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: rgb(255 255 255 / 0.5);
}
/* 開いている間は背後のメニューを隠し、トグルを白に。ロゴは白反転して表示を維持 */
.header-menu{
    transition: opacity .3s;
}
#header.open .header-menu,
#header.menu-wait .header-menu{
    opacity: 0;
    pointer-events: none;
}
.header-logo img{
    transition: filter .3s;
}
#header.open .header-logo img,
#header.menu-wait .header-logo img{
    filter: brightness(0) invert(1);
}
.open .nav-toggle span{
    background-color: #fff;
}


/* FOOTER */
#footer{
    padding: 40px 0;
    text-align: center;
    font-weight: normal;
}
.footer-link{
    text-align: center;
    margin-bottom: 10px;
}
.footer-link a{
    font-weight: 500;
    font-size: 13px;
    text-decoration: underline;
}
.footer-link svg{
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-left: 5px;
}



/* INDEX */
.mv{
    margin-top: 160px;
    padding: 0 20px;
    position: relative;
}
.mv-title{
    text-align: center;
    /* 初回ペイントでの一瞬の表示(チラつき)防止。表示はGSAP(MV ENTRANCE)が担当 */
    opacity: 0;
}
.mv-img{
    position: absolute;
    top: -80px;
    transform: translateX(-50%);
    left: calc(50% + 110px);
    z-index: 1;
    width: max-content;
}
.mv-img img,
.top-vision__message-img img,
.top-contact__content-img img{
    animation:
        float-x 5.6s ease-in-out infinite alternate,
        float-y 4.2s ease-in-out infinite alternate,
        float-rot 7.4s ease-in-out infinite alternate;
    will-change: transform, translate, rotate;
}
.top-vision__message-img img{
    animation-delay: -1.9s, -3.1s, -4.4s;
}
.top-contact__content-img img{
    animation-delay: -3.7s, -1.2s, -6.2s;
}
@keyframes float-x{
    from{ transform: translateX(-18px); }
    to{ transform: translateX(18px); }
}
@keyframes float-y{
    from{ translate: 0 -32px; }
    to{ translate: 0 10px; }
}
@keyframes float-rot{
    from{ rotate: -2.4deg; }
    to{ rotate: 2.4deg; }
}
@media (prefers-reduced-motion: reduce){
    .mv-img img,
    .top-vision__message-img img,
    .top-contact__content-img img,
    .top-workstyle__content-nav li.current .top-workstyle__content-nav__arrow svg{
        animation: none;
    }
}
.top-message{
    padding-top: var(--anchor-padding);
    margin-top: 15px;
}
.top-message__ttl{
    margin-bottom: 65px;
}
.top-message__content{
    width: 100%;
    max-width: 600px;
    position: relative;
}
.top-message__lead{
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 30px;
}
.top-message__text{
    font-size: 18px;
    font-weight: 600;
    line-height: 2.2;
}
.top-message__text b{
    font-size: 20px;
    font-weight: 900;
}
.top-message__img{
    position: absolute;
    bottom: 0;
    right: -90px;
    mix-blend-mode: exclusion;
    z-index: 1;
}
.top-vision{
    padding-top: 212px;
}
.top-vision__content{
    position: relative;
}
.top-vision__content-bg{
    position: relative;
}
.top-vision__content-body{
    position: absolute;
    transform: translateY(-50%) scale(0.8);
    top: 50%;
    left: 0;
    z-index: 1;
    width: 100%;
    padding: 0 110px;
    opacity: 0;
    filter: blur(50px);
    transition: .5s;
}
.top-vision__content-body.scrollin{
    opacity: 1;
    filter: blur(0);
    transform: translateY(-50%) scale(1);
}
.top-vision__content-bg__label1,
.top-vision__content-bg__label2{
    position: absolute;
}
.top-vision__content-bg__label1{
    transform: translateX(100%);
    right: -10px;
    top: 110px;
}
.top-vision__content-bg__label2{
    transform: translateX(-100%);
    left: -10px;
    bottom: 110px;
}
.top-vision__message{
    margin-top: 100px;
    position: relative;
}
.top-vision__message-text{
    margin-bottom: 30px;
}
.top-vision__message-text img{
    width: 100%;
}
.top-vision__message-lead{
    position: relative;
    z-index: 2;
}
.top-vision__message-lead img{
    width: calc(100% - 30px);
}
.top-vision__message-img{
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: -150px;
    z-index: 1;
}
.top-workstyle{
    padding-top: var(--anchor-padding);
    margin-top: 200px;
    position: relative;
}
.top-workstyle__hv{
    position: absolute;
    top: 0;
}
.top-workstyle__hv.n1{
    left: 0;
}
.top-workstyle__hv.n2{
    right: 0;
}
.top-workstyle__text{
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    line-height: 2.2;
    margin-bottom: 100px;
}
.top-workstyle__content{
    overflow: hidden;
    position: relative;
}
.top-workstyle__content-nav{
    position: absolute;
    top: 0;
    left: var(--space);
    z-index: 10;
}
/* pin(ScrollTrigger)による位置の書き換えにtransitionが乗ると
   固定切替時に流れて見えるため、フェードは透明度とぼかしのみに限定 */
.top-workstyle__content-nav.fadein{
    transform: none;
    transition-property: opacity, filter;
}
.top-workstyle__content-nav li{
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    cursor: pointer;
}
.top-workstyle__content-nav li:last-child{
    margin-bottom: 0;
}
.top-workstyle__content-nav__arrow{
    position: relative;
    top: -6px;
}
.top-workstyle__content-nav li path{
    fill: #000000;
    transition: .2s;
}
.top-workstyle__content-nav li.current path{
    fill: #77FF00;
}
.top-workstyle__content-nav li.current .top-workstyle__content-nav__arrow svg{
    animation: arrow-dash 1.1s ease-in-out infinite;
}
@keyframes arrow-dash{
    0%, 100%{ transform: translateX(0); }
    50%{ transform: translateX(7px); }
}
.top-workstyle__content-nav__text{
    font-size: 10px;
    font-weight: 600;
    line-height: 1.3;
}
.top-workstyle__content-nav__text span{
    font-size: 20px;
    display: block;
    font-weight: bold;
}
.top-workstyle__content-bg{
    position: absolute;
    z-index: -2;
    width: 100%;
    top: 116px;
    left: 0;
    padding: 0 20px;
}
.top-workstyle__content-img{
    max-width: 1920px;
    width: 1920px;
    position: relative;
    transform: translateX(-50%);
    left: 50%;
}
.top-workstyle__content-textSlider-wrap{
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 0;
    width: 100vw;
    overflow: hidden;
    z-index: -1;
}
.top-workstyle__content-textSlider-item{
    width: 2390px;
}
.top-workstyle__content-body{
    position: absolute;
    z-index: 1;
    transform: translateX(-50%) scale(0.8);
    top: 300px;
    left: 50%;
    width: 100%;
    max-width: 500px;
    opacity: 0;
    filter: blur(50px);
    transition: .5s;
}
.top-workstyle__content-body.scrollin{
    opacity: 1;
    filter: blur(0);
    transform: translateX(-50%) scale(1);
}
.top-workstyle__content-body__item{
    text-align: center;
}
.top-workstyle__content-body__item-ttl{
    margin-bottom: 40px;
}
.top-workstyle__content-body__item-ttl__text,
.top-workstyle__content-body__item-ttl__en,
.top-workstyle__content-body__item-ttl__att{
    color: #77FF00;
    text-shadow: 0 0 10px #77FF00;
}
.top-workstyle__content-body__item-ttl__text{
    font-size: 24px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 2px;
}
.top-workstyle__content-body__item-ttl__en{
    font-size: 50px;
    line-height: 1;
    font-weight: bold;
}
.top-workstyle__content-body__item-lead{
    color: #fff;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 20px;
}
.top-workstyle__content-body__item-text{
    color: #fff;
    margin-bottom: 40px;
}
.top-workstyle__content-body__item-att{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    height: 140px;
    margin: 0 auto;
    background: url(img/work-style-frame.svg) no-repeat center center / contain;
}
.top-workstyle__content-body__item-att__text{
    color: #77FF00;
    position: relative;
    top: 8px;
    line-height: 1.8;
}
.top-workstyle__content-body__nav{
    width: 100vw;
    max-width: 740px;
    top: 245px;
    transform: translateX(-50%);
    left: 50%;
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}
.top-workstyle__content-body__nav-arrow{
    cursor: pointer;
}
.top-workstyle__content-nav__arrow{
    fill: #77FF00;
}
.top-culture{
    padding-top: var(--anchor-padding);
    margin-top: 55px;
    background: url(img/culture-bgText.svg) no-repeat center 45px / 100%, url(img/culture-bg.svg) no-repeat right 45px / 19.5vw;
}
.title{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
    margin-bottom: 65px;
    opacity: 1;
    filter: blur(50px);
    transform: scale(1.1);
    transition: .5s;
}
.title.scrollin{
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}
.title.block{
    flex-direction: column;
    gap: 15px;
}
.title-ja{
    font-size: 24px;
    font-weight: 900;
}
.top-culture__content{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 100px;
}
.top-culture__content:last-child{
    margin-bottom: 0;
}
.top-culture__content-number{
    width: 100%;
    max-width: 240px;
    font-size: 14px;
    font-weight: 500;
}
.top-culture__content-number span{
    width: 40px;
    text-align: center;
}
.top-culture__content-number span::after{
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 1px;
    background-color: #707070;
    margin: 0 10px;
}
.top-culture__content-box,
.top-benefit__flex-box__item-text{
    width: 100%;
    max-width: calc(100% - 240px);
    padding-left: 60px;
    border-left: 1px solid #707070;
    display: flex;
    flex-wrap: wrap;
}
.top-culture__content-box__item{
    width: 100%;
    max-width: 500px;
}
.top-culture__content-box__item-lead{
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 20px;
}
.top-culture__content-box__item-text{
    font-weight: 600;
}
.top-culture__content-box__img{
    width: 100%;
    max-width: calc(100% - 500px);
    text-align: right;
}
.top-benefit{
    padding-top: var(--anchor-padding);
    margin-top: 155px;
    background: url(img/benefit-bgText.svg) no-repeat center top / calc(100% - 110px), url(img/benefit-bg.svg) no-repeat left top / 19.5vw;
}
.top-benefit__flex-img{
    width: 100%;
    max-width: 520px;
}
.top-benefit__flex-box{
    width: 100%;
    max-width: calc(100% - 520px);
    padding-left: 80px;
}
.top-benefit__flex-box__item{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.top-benefit__flex-box__item:last-child{
    margin-bottom: 0;
}
.top-benefit__flex-box__item-text{
    display: block;
    font-weight: 600;
}
.top-infographic{
    padding-top: var(--anchor-padding);
    margin-top: 155px;
    background: url(img/infographic-bgText.svg) no-repeat center 0 / 144vw;
}
.top-infographic__grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
}
.top-recruit{
    padding-top: var(--anchor-padding);
    margin-top: 55px;
    position: relative;
}
.top-recruit__content{
    position: relative;
}
.top-recruit__content-bg{
    overflow: hidden;
}
.top-recruit__content-bg img{
    width: 1920px;
    max-width: 1920px;
    position: relative;
    transform: translateX(-50%);
    left: 50%;
}
.top-recruit__content-body{
    width: 100%;
    max-width: 900px;
    position: absolute;
    transform: translateX(-50%);
    top: 141px;
    left: 50%;
}
.recruit-tab,
.recruit-content-wrap{
    padding: 14px;
    border: 1px solid #77FF00;
    position: relative;
    border-radius: 10px;
    z-index: 0;
}
.recruit-tab::before,
.recruit-content-wrap::before{
    content: "";
    position: absolute;
    transform: translate(-50%,-50%);
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    top: 50%;
    left: 50%;
    border-radius: 6px;
    pointer-events: none;
    z-index: -1;
    border: 1px solid #77FF00;
}
.recruit-tab{
    margin-bottom: 10px;
}
.recruit-tab ul{
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 4px;
}
.recruit-tab ul li{
    background-color: #77FF00;
    border: 1px solid #77FF00;
    border-radius: 4px;
    text-align: center;
    line-height: 34px;
    font-weight: 900;
    transition: .2s;
    cursor: pointer;
}
.recruit-tab ul li.current{
    color: #77FF00;
    background-color: transparent;
}
.recruit-content{
    height: 500px;
    overflow-y: scroll;
    color: #fff;
    padding: 10px 56px;
}
.recruit-content__ttl{
    color: #77FF00;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.54;
    border-bottom: 1px solid #77FF00;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.recruit-content__text,
.recruit-content__list{
    color: #77FF00;
    font-weight: 500;
}
.recruit-content__list{
    margin-top: 25px;
    font-size: 14px;
}
.recruit-content__list span{
    display: inline-block;
    padding-left: 1.7em;
    font-size: 13px;
    margin-bottom: 6px;
}
.recruit-content__list span::before{
    content: "◇";
    margin-left: -1.3em;
    margin-right: 0.2em;
}
.recruit-content__job{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-top: 30px;
}
.recruit-content__job-box{
    border: 1px solid #77FF00;
    border-radius: 4px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
}
.recruit-content__job-box__icon{
    width: 100%;
    max-width: 60px;
}
.recruit-content__job-box__item{
    width: 100%;
    max-width: calc(100% - 60px);
    padding-left: 20px;
}
.recruit-content__job-box__item-lead{
    font-size: 18px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 10px;
}
.recruit-content__job-box__item-text{
    font-weight: 500;
}
.recruit-content__requirement{
    margin-top: 40px;
}
.recruit-content__requirement dl{
    display: flex;
    flex-wrap: wrap;
    padding: 18px 0;
    border-bottom: 1px solid rgb(255 255 255 / .4);
}
.recruit-content__requirement dl:first-child{
    padding-top: 0;
}
.recruit-content__requirement dl:last-child{
    border-bottom: none;
}
.recruit-content__requirement dl dt{
    width: 100%;
    max-width: 140px;
    font-weight: bold;
}
.recruit-content__requirement dl dd{
    width: 100%;
    max-width: calc(100% - 140px);
    padding-left: 20px;
    font-weight: 500;
}
.recruit-content__requirement dl dd small{
    font-size: 80%;
}
.recruit-content::-webkit-scrollbar {
    width: 8px;
}
.recruit-content::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 8px;
    background-clip: padding-box;
}
.recruit-content::-webkit-scrollbar-track {
    border-radius: 6px;
    width: 8px;
    border: 1px solid #fff;
}
.top-contact{
    height: 600px;
    background: url(img/contact-bg.webp) no-repeat center center / cover, #77FF00;
    margin-top: -80px;
    position: relative;
    z-index: 1;
}
.top-contact__inner{
    width: 100%;
    max-width: 1748px;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.top-contact__lead{
    mix-blend-mode: exclusion;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 0;
    z-index: 1;
}
.top-contact__content{
    position: relative;
}
.top-contact__content-img{
    position: absolute;
    z-index: 2;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
}
.top-contact__content-text{
    font-size: 18px;
    font-weight: 900;
}
.top-contact__content-text span{
    display: inline-block;
    text-align: left;
}
.top-contact__content-text,
.top-contact__content-btn{
    text-align: right;
    margin-right: 185px;
}
.top-contact__content-ttl{
    margin: 60px 0 18px;
}
.top-contact__content-btn{
    width: 100%;
    max-width: 280px;
    margin-left: auto;
}
.top-contact__content-btn a{
    display: block;
    text-align: center;
    border: 1px solid var(--base-color);
    line-height: 58px;
    background-color: var(--base-color);
    color: #fff;
    border-radius: 4px;
}
@media screen and (min-width: 992px) {
    .top-contact__content-btn a:hover{
        opacity: 1;
        background-color: transparent;
        color: var(--base-color);
    }
}