@charset "utf-8";

@media screen and (min-width: 806px) {
    body {
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-size: 16px;
    }

    @font-face {
        font-family: 'Zen Kaku Gothic New';
        src: url(myfont/ZenKakuGothicNew-Light.ttf) format('ttf'),
            url(myfont/ZenKakuGothicNew-Light.woff) format(woff);
        display: swap;
    }

    ul {
        padding-inline-start: 0px;
    }

    header,
    footer,
    nav,
    a,
    body,
    div,
    h3,
    p {
        width: auto;
        color: #000000;
        margin: 0;
        padding: 0;
    }

    /*上に上がる動き*/
    #top1.UpMove {
        animation: UpAnime 0.5s forwards;
        transform: perspective(50px);
        position: fixed;
        z-index: 99;
    }

    #top {
        width: 100%;
    }

    @keyframes UpAnime {
        from {
            opacity: 1;
            transform: translateY(0);
        }

        to {
            opacity: 0;
            transform: translateY(0);
        }
    }

    /*下に下がる動き*/
    #top1.DownMove {
        animation: DownAnime 0.5s forwards;
        position: fixed;
        z-index: 99999;
    }

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

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    #logo a {
        display: inline-block;
        width: 160px;
        height: 70px;
    }

    .logo a img {
        height: auto;
        top: 25px;
        left: 48px;
        position: absolute;
        z-index: 1;
    }

    .nav ul {
        list-style-type: none;
        display: flex;
        position: absolute;
        top: 25px;
        right: 50px;
        z-index: 2;
    }

    .nav ul li a {
        text-decoration: none;
        display: block;
        font-size: 108%;
    }

    .header_nav1 {
        margin-right: 12px;
    }

    .header_nav1 {
        margin-right: 12px;
        padding: 4px;
    }

    .header_nav2 {
        padding: 4px;
        margin-right: 13px;
    }

    li a i img {
        margin: -5px 12px 0 0;
    }

    .header_nav3 {
        line-height: 0;
        display: block;
    }

    .header_nav4 {
        border: 2px solid;
        padding: 8px 14px 8px 14px;
        margin-left: 13px;
    }

    footer {
        padding: 40px 0;
        position: relative;
        z-index: 99;
    }

    .top_title1 {
        text-align: center;
    }

    .top_title1 h3 {
        font-size: 30px;
    }

    .top_title2 {
        text-align: center;
        font-size: 23px;
        color: #000;
        margin-left: 10px;
    }

    .top_title1-1 {
        border-bottom: #000000 1px solid;
    }

    .top_title1-1 h3 {
        font-size: 30px;
    }

    .top_title2-1 {
        margin-top: 10px;
        font-size: 23px;
    }

    #logo {
        height: auto;
        top: 24px;
        position: absolute;
        z-index: 99999;
        left: 46px;
    }

    /*==ボタンのためのCSS*/
    .openbtn {
        position: absolute;
        z-index: 9999;
        cursor: pointer;
        top: 24px;
        right: 46px;
        width: 70px;
        height: 70px;
    }

    /*xに変化*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        /*アニメーションの設定*/
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background: #000000;
        width: 40px;
    }

    .openbtn span {
        left: 16px;
    }

    .openbtn span:nth-of-type(1) {
        bottom: 17px;
    }

    .openbtn span:nth-of-type(2) {
        bottom: 33px;
    }

    .openbtn span:nth-of-type(3) {
        bottom: 49px;
    }

    /*activeクラスが付与されると線が回転して×に*/
    .openbtn.active span:nth-of-type(1) {
        top: 30px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 40px;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
        /*真ん中の線は透過*/
    }

    .openbtn.active span:nth-of-type(3) {
        top: 42px;
        left: 16px;
        transform: translateY(-6px) rotate(45deg);
        width: 40px;
    }

    .openbtn.active {
        position: absolute;
        z-index: 9999;
        cursor: pointer;
        opacity: 0.7;
        top: 24px;
        right: 46px;
        width: 70px;
        height: 70px;
    }

    .circle-bg.circleactive {
        background: #000000;
        width: 100%;
        opacity: 0.7;
        height: auto;
    }

    .mainblur {
        filter: grayscale(65%);
        overflow: hidden;
    }

    /*ナビゲーションのためのCSS*/
    /*アクティブになったエリア*/
    #g-nav {
        position: fixed;
        z-index: 1;
        top: 0;
        right: -120%;
        width: 385px;
        height: 100vh;
        transition: all 0.6s;
    }

    #g-nav.panelactive #g-nav-list {
        /*クラスが付与されたら出現*/
        display: block;
        background-color: rgba(00, 00, 00, 0.3);
    }

    #g-nav.panelactive {
        right: 0;
        z-index: 1;
    }

    #g-nav li a.panelactive {
        color: #ffffff;
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav-list {
        display: none;
        /*ナビの数が増えた場合縦スクロール*/
        position: absolute;
        z-index: 999;
        width: 100%;
        height: 100vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    #g-nav.panelactive #g-nav-list {
        /*クラスが付与されたら出現*/
        display: block;
    }

    /*ナビゲーション*/
    #g-navi {
        padding: 0;
        margin: 0;
        width: 100%;
    }

    #g-nav ul {
        opacity: 0;
        position: absolute;
        z-index: 999;
        top: 160px;
        list-style-type: none;
        text-align: right;
    }

    #g-nav ul li a {
        text-decoration: none;
        font-size: 30px;
        line-height: 2.0;
        color: #ffffff;
    }

    .solid {
        height: 70px;
        padding-right: 46px;
    }

    /*背景が出現後にナビゲーションを表示*/
    #g-nav.panelactive ul {
        opacity: 1;
    }

    /*背景が出現後にナビゲーションliを表示
レイアウトによって調整・削除可*/
    #g-nav.panelactove ul li {
        animation-name: gnaviAnime;
        animation-delay: 1s;
        /*0.2秒遅らせて出現*/
        animation-delay: .2s;
        animation-fill-mode: forwards;
        opacity: 0;
    }

    @keyframes gnaviAnime {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    .circle-bg {
        position: fixed;
        z-index: 3;
        top: 80px;
        right: -120%;
        width: 35%;
        background: #000000;
        transition: all 0.6s;
    }

    /*ナビゲーションの固定*/
    nav {
        /*stickyで固定*/
        position: -webkit-sticky;
        /*Safari*/
        position: sticky;
        /*固定したい位置*/
        top: 20%;
    }

    #finish_nav ul li a {
        text-decoration: none;
    }

    img {
        width: 100%;
        height: auto;
    }

    #logo a img {
        width: 134px;
        height: 75px;
    }


    #finish_nav ul {
        display: flex;
        list-style-type: none;
        margin: 0;
        text-align: center;
        padding: 0;
        font-size: 16px;
        justify-content: center;
    }

    #finish p {
        text-align: center;
        font-size: 14px;
    }

    #finish_nav ul li ::before {
        content: "";
    }

    #finish_nav ul li {
        text-align: center;
    }

    footer {
        position: relative;
        padding: 40px 0;
        border-top: #000000 1px solid;
        position: relative;
        z-index: 99;
    }

    #finish1 {
        display: none;
    }

    .title1 {
        font-size: 18px;
        margin: 10px 0 28px 0;
    }

    .title2 {
        font-size: 14px;
        margin-top: 24px;
    }

    .btn_line a {
        position: fixed;
        right: 46px;
        bottom: 40px;
        height: 22px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin: 0 auto;
        max-width: 220px;
        padding: 10px 17px;
        color: #313131;
        border: #000000 1px solid;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s;
        z-index: 9999999;
    }

    .btn_line a:hover {
        background: rgba(00, 00, 00, 0.5);
        color: #ffffff;
        opacity: 0.7;
    }

    .btn_line a:before,
    .btn_line a:after {
        box-sizing: inherit;
        content: "";
        position: absolute;
        border: 1px solid transparent;
        width: 0;
        height: 0;
    }

    .btn_line a:before {
        top: -4px;
        left: 1px;
    }

    .btn_line a:after {
        bottom: -4px;
        right: 1px;
    }


    .btn_line a:hover:before,
    .btn_line a:hover:after {
        width: 100%;
        height: 100%;
    }

    .btn_line a:hover:before {
        border-top-color: #000000;
        border-right-color: #000000;
        transition: width 0.15s ease-out, height 0.15s ease-out 0.15s;
    }

    .btn_line a:hover:after {
        border-bottom-color: #000000;
        border-left-color: #000000;
        transition: border-color 0s ease-out 0.2s, width 0.15s ease-out 0.2s, height 0.15s ease-out 0.3s;
    }

    ::-webkit-scrollbar-thumb {
        background: #707070;
        border: 2px solid #9b9b9b;
    }

    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: #ffffff;
        border: 2px solid rgba(00, 00, 00, 0.1);
    }

    #last img,
    .solid2 img {
        width: 30px;
        height: 30px;
    }

    .solid img {
        width: 40px;
        height: 40px;
        margin-top: 40px;
    }

    .solid2 {
        margin-left: 18px;
        margin-top: 12px;
    }

    #last img {
        margin-bottom: 0px;
        position: relative;
        bottom: 2px;
        left: 16px;
    }

    .secand ::after {
        content: "|";
        margin: 8px;
    }

    #closebg {
        width: 100%;
        position: absolute;
        top: 0px;
        height: 100vh;
    }

    .td_title {
        position: relative;
        border-bottom: dotted 2px #a0a0a0;
    }

    .td_title1 {
        position: relative;
        border-bottom: dotted 2px #d0d0d0;
    }

    .sample13:after {
        position: absolute;
        display: block;
        content: " ";
        bottom: -3px;
        width: 50%;
    }

    a:hover {
        opacity: 0.7;
    }

    li img {
        width: 80px;
        height: 80px;
        overflow: hidden;
    }

    li img:hover {
        transform: scale(1.1);
        transition: all 0.5s;
    }

    .contact_title {
        padding-top: 110px;
    }

    .inner1 {
        position: relative;
        display: flex;
        align-items: baseline;
        justify-content: center;
        padding-bottom: 16px;
    }

    #border {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
    }

    .borderin {
        border-bottom: 1px #999 solid;
        animation: border_anim 1.5s linear forwards;
    }

    @keyframes border_anim {
        0% {
            width: 0%;
        }

        100% {
            width: 100%;
        }
    }

    #contact {
        width: 98%;
        margin: 0 auto;
        max-width: 1080px;
        padding: 124px 0 142px 0;
    }

    #com1 {
        text-align: center;
        padding-bottom: 10px;
        font-size: 23px;
    }
    #com2 {
        text-align: center;
        font-size: 23px;
    }
    #contactarea1 {
        padding-top: 57px;
    }

    #sub_contact {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    #contact_area3 {
        list-style-type: none;
        width: 280px;
        text-align: center;
    }
    #contact_area2 {
        list-style-type: none;
        width: 200px;
        text-align: center;
    }

    #contact_area1 {
        list-style-type: none;
        width: 260px;
        text-align: center;
    }

    #sub_contact li p {
        padding-top: 16px;
    }

    .sub_title {
        font-size: 23px;
    }

    .numeber {
        font-size: 30px;
    }

    a {
        text-decoration: none;
    }

    .numeber a {
        position: relative;
        z-index: 999;
    }
    #contact_area3 a,#contact_area1 a {
        position: relative;
    }
}

















/*@mediaルールを使ったレスポンシブなCSSの記述例*/
@media screen and (max-width: 805px) {

    /*基本レイアウトはここから↓*/
    * {
        margin: 0;
        padding: 0;
        color: #000000;
    }

    body.mainblur .btn_line a {
        position: absolute;
        top: 1000px;
    }

    .td_title {
        position: relative;
        border-bottom: dotted 2px #a0a0a0;
    }

    .td_title1 {
        position: relative;
        border-bottom: dotted 2px #d0d0d0;
    }

    #closebg {
        width: 100%;
        position: absolute;
        top: 0px;
        height: 100vh;
    }

    #logo a {
        display: inline-block;
        width: 92px;
        height: 40px;
    }

    body {
        background-color: #ffffff;
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-size: 14px;
    }

    @font-face {
        font-family: 'Zen Kaku Gothic New';
        src: url(myfont/ZenKakuGothicNew-Light.ttf) format('ttf'),
        url(myfont/ZenKakuGothicNew-Light.woff) format(woff);
        display: swap;
    }

    header,
    footer,
    nav,
    a,
    body,
    div,
    h3,
    p {
        color: #000000;
        margin: 0;
        padding: 0;
    }
    h1 {
        font-size: 1.5rem;
        text-align: center;
        text-transform: uppercase;
        padding: 20px;
        color: #fff;
    }

    h2 {
        font-size: 1.2rem;
        text-align: center;
        margin: 0 0 30px 0;
    }

    a {
        color: #333;
    }
    .inner1 {
        position: relative;
        display: flex;
        align-items: baseline;
        justify-content: center;
        padding-bottom: 16px;
    }

    #border {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
    }

    .borderin {
        border-bottom: 1px #999 solid;
        animation: border_anim 1.5s linear forwards;
    }

    @keyframes border_anim {
        0% {
            width: 0%;
        }

        100% {
            width: 100%;
        }
    }

    .btn_line a:before,
    .btn_line a:after {
        box-sizing: inherit;
        content: "";
        position: absolute;
        border: 2px solid transparent;
        width: 0;
        height: 0;
    }

    .btn_line a:before {
        top: 0;
        left: 0;
    }

    .btn_line a:after {
        bottom: 0;
        right: 0;
    }

    .btn_line a:hover:before,
    .btn_line a:hover:after {
        width: 100%;
        height: 100%;
    }

    .openbtn a {
        display: inline-block;
        width: 50px;
        height: 50px;
    }
    .solid1 {
        margin-right: 18px;
        margin-top: 14px;
    }

    .border {
        width: 90%;
        margin: 0 auto;
    }
    ul {
        list-style: none;
    }
    .fade {
        transition: all 1200ms;
        opacity: 0.1;
        visibility: hidden;
        transform: translate(0px, 50px);
    }

    .fade1 {
        transition: all 1200ms;
        opacity: 0.1;
        visibility: hidden;
        transform: translate(0px, 50px);
    }

    .fadein {
        opacity: 1;
        visibility: visible;
        transform: translate(0px, 0px);
    }

    .fadein1 {
        opacity: 0;
        visibility: visible;
        transform: translate(0px, 0px);
    }
    #logo1 img {
        width: 115px;
        height: 50px;
    }

    #logo1 {
        padding: 12px 0 8px 0;
    }
    #nav-list ul {
        display: flex;
        list-style-type: none;
        justify-content: right;
        margin: 19px 0;
        display: none;
    }

    #nav-list ul li a {
        text-decoration: none;
    }

    #top1-1 {
        width: 1080px;
        margin: 0 auto;
    }

    .solid1 {
        margin: 6px 12px 0 0;
    }

    #nav-1 {
        position: absolute;
        right: 385px;
        top: 0;
        margin: auto 0;
    }

    .fadeUpTrigger {
        opacity: 0;
    }

    #container {
        position: relative;
        height: auto;
        width: 100%;
    }

    #logo {
        height: auto;
        position: absolute;
        z-index: 1;
        padding: 30px 3%;
        z-index: 99999;
    }

    #top_img1 img {
        width: 100%;
        height: 660px;
        vertical-align: bottom;
    }

    #top_img img {
        display: none;
    }

    /*==ボタンのためのCSS*/
    .openbtn {
        position: absolute;
        z-index: 9999;
        cursor: pointer;
        top: 30px;
        right: 3%;
        width: 50px;
        height: 50px;
    }

    /*xに変化*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        /*アニメーションの設定*/
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background: #000000;
        width: 30px;
    }

    .openbtn span {
        left: 11px;
    }

    .openbtn span:nth-of-type(1) {
        bottom: 34px;
    }

    .openbtn span:nth-of-type(2) {
        bottom: 24px;
    }

    .openbtn span:nth-of-type(3) {
        bottom: 14px;
    }

    /*activeクラスが付与されると線が回転して×に*/
    .openbtn.active span:nth-of-type(1) {
        top: 19px;
        left: 11px;
        transform: translateY(6px) rotate(-45deg);
        width: 30px;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
        /*真ん中の線は透過*/
    }

    .openbtn.active span:nth-of-type(3) {
        top: 31px;
        left: 11px;
        transform: translateY(-6px) rotate(45deg);
        width: 30px;
    }

    .openbtn.active {
        position: absolute;
        z-index: 9999;
        cursor: pointer;
        opacity: 0.7;
        top: 32px;
        right: 0;
        width: 53px;
        height: 53px;
    }

    .circle-bg.circleactive {
        background: #707070;
        width: 100%;
        opacity: 0.7;
        height: auto;
    }

    .mainblur {
        filter: grayscale(65%);
        overflow: hidden;
    }

    /*ナビゲーションのためのCSS*/
    /*アクティブになったエリア*/

    #g-nav.panelactive {
        right: 0;
        z-index: 99999999;
        position: fixed;
    }

    #g-nav li a.panelactive {
        color: #ffffff;
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav-list {
        display: none;
        /*ナビの数が増えた場合縦スクロール*/
        position: absolute;
        z-index: 999;
        width: 100%;
        height: 110vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    #g-nav.panelactive #g-nav-list {
        /*クラスが付与されたら出現*/
        display: block;
    }

    /*ナビゲーション*/
    #g-navi {
        padding: 0;
        margin: 0;
        width: 100%;
    }

    #g-nav ul {
        opacity: 0;
        position: absolute;
        z-index: 999;
        top: 53px;
        list-style-type: none;
        text-align: center;
    }

    #g-nav ul li a {
        text-decoration: none;
        font-size: 23px;
        line-height: 2.0;
        color: #ffffff;
    }

    /*背景が出現後にナビゲーションを表示*/
    #g-nav.panelactive ul {
        opacity: 1;
    }

    /*背景が出現後にナビゲーションliを表示
    レイアウトによって調整・削除可*/
    #g-nav.panelactove ul li {
        animation-name: gnaviAnime;
        animation-delay: 1s;
        /*0.2秒遅らせて出現*/
        animation-delay: .2s;
        animation-fill-mode: forwards;
        opacity: 0;
    }

    @keyframes gnaviAnime {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    .circle-bg {
        position: fixed;
        z-index: 3;
        top: 32px;
        right: -120%;
        width: 35%;
        height: 80vh;
        background: #000000;
        transition: all 0.6s;
    }

    /*ナビゲーションの固定*/
    nav {
        /*stickyで固定*/
        position: -webkit-sticky;
        /*Safari*/
        position: sticky;
        /*固定したい位置*/
        top: 20%;
    }

    img {
        width: 100%;
        height: auto;
    }

    #logo a img {
        width: 115px;
        height: 50px;
    }

    #finish {
        display: none;
    }

    #finish_nav1 ul {
        display: flex;
        list-style-type: none;
        margin: 0;
        text-align: center;
        padding: 0;
        font-size: 14px;
        justify-content: center;
        line-height: 1.5;
    }

    #finish_nav1 {
        text-align: center;
        margin: 0 auto;
    }

    #finish1 p {
        text-align: center;
        font-size: 14px;
    }

    #finish_nav1 ul li ::before {
        content: "";
    }

    #finish_nav1 ul li {
        text-align: center;
    }

    footer {
        padding: 40px 0;
        border-top: #212121 1px solid;
        position: relative;
        z-index: 99;
    }


    #finish1 p {
        margin-top: 16px;
    }

    #finish_nav1 ul li a {
        text-decoration: none;
    }

    #finish1 {
        width: 90%;
        margin: 0 auto;
    }

    .title1 {
        font-size: 16px;
        margin: 10px 0 16px 0;
    }

    .title2 {
        font-size: 14px;
    }

    .news_title1 a {
        text-decoration: none;
    }

    .top_title1 {
        text-align: center;
    }

    .top_title1 h3 {
        font-size: 23px;
    }

    .top_title2 {
        text-align: center;
        font-size: 16px;
        margin-left: 10px;
    }

    .top_title1-1 {
        border-bottom: 1px #000000 solid;
    }

    .top_title1-1 h3 {
        font-size: 23px;
    }

    .top_title2-1 {
        margin-top: 10px;
        font-size: 16px;
    }
    .td_title2 {
        padding: 16px 0 14px 0;
    }

    .s_title2 {
        font-size: 14px;
        margin-bottom: 16px;
    }

    #logo a img {
        width: 72px;
        height: 40px;
    }

    #logo {
        height: auto;
        position: absolute;
        z-index: 99;
        padding: 43px 3%;
    }

    .openbtn {
        position: fixed;
        z-index: 9999;
        cursor: pointer;
        top: 30px;
        right: 3%;
        width: 50px;
        height: 50px;
    }

    #top1 {
        display: none;
    }

    /*xに変化*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        /*アニメーションの設定*/
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background: #000000;
        width: 30px;
    }

    .openbtn span {
        left: 11px;
    }

    .openbtn span:nth-of-type(1) {
        bottom: 34px;
    }

    .openbtn span:nth-of-type(2) {
        bottom: 24px;
    }

    .openbtn span:nth-of-type(3) {
        bottom: 14px;
    }

    /*activeクラスが付与されると線が回転して×に*/
    .openbtn.active span:nth-of-type(1) {
        top: 19px;
        left: 11px;
        transform: translateY(6px) rotate(-45deg);
        width: 30px;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
        /*真ん中の線は透過*/
    }

    .openbtn.active span:nth-of-type(3) {
        top: 31px;
        left: 11px;
        transform: translateY(-6px) rotate(45deg);
        width: 30px;
    }

    .openbtn.active {
        position: absolute;
        z-index: 9999;
        cursor: pointer;
        opacity: 0.7;
        top: 30px;
        right: 3%;
        width: 50px;
        height: 50px;
    }

    .circle-bg.circleactive {
        background: #707070;
        width: 100%;
        opacity: 0.7;
        height: auto;
    }

    .solid {
        padding-right: 20px;
        height: 50px;
    }

    #g-nav ul {
        opacity: 0;
        position: absolute;
        z-index: 999;
        top: 133px;
        list-style-type: none;
        text-align: right;
    }

    #g-nav {
        position: fixed;
        z-index: 1;
        top: 0;
        right: -120%;
        width: 240px;
        height: 100%;
        transition: all 0.6s;
        background-color: rgba(00, 00, 00, 0.3);
    }

    .secand ::after {
        content: "|";
        margin: 7px;
    }

    #last1 img {
        width: 20px;
        height: 20px;
        margin-left: 14px;
    }

    .solid img {
        width: 30px;
        height: 30px;
        margin-top: 30px;
    }


    li img {
        width: 100px;
        height: 100px;
    }

    .contact_title {
        padding-top: 110px;
    }

    #contact {
        width: 90%;
        margin: 0 auto;
        padding: 80px 0;
    }

    #com1 {
        text-align: center;
        padding-bottom: 10px;
    }
    #com2 {
        text-align: center;
    }
    #contactarea1 {
        padding-top: 56px;
    }
    #contact_area1 {
        padding: 28px 0 56px 0;
    }

    #contact_area2 {
        padding-bottom: 56px;
    }



    #sub_contact li {
        list-style-type: none;
        text-align: center;
    }


    .sub_title {
        font-size: 16px;
    }

    .numeber {
        font-size: 23px;
    }

    a {
        text-decoration: none;
    }

    .numeber a {
        position: relative;
        z-index: 999;
    }

    .btn_line a {
        position: fixed;
        right: 3%;
        bottom: 30px;
        height: 22px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin: 0 auto;
        max-width: 220px;
        padding: 5px 10px;
        color: #313131;
        transition: all 0.3s;
        font-weight: 600;
        border: #212121 1px solid;
        text-decoration: none;
    }

    #contact_area3 a,#contact_area1 a {
        position: relative;
    }
}