@charset "utf-8";

html {
    scroll-behavior: smooth;
}

body {
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

header {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
}

.breadcrumbs {
    display: flex;
    margin: 1% 5% 1%;
}

.breadcrumbs a:hover {
    opacity: .6;
}

/* ページトップ */
#page_top {
    z-index: 999999;
    width: 50px;
    height: 50px;
    position: fixed;
    right: 3%;
    bottom: -1%;
    background: #04268C;
    border: 2px solid #fff;
    border-radius: 50%;
}

#page_top a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
}

#page_top a::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f106';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -5px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}

/*スクロールダウン全体の場所*/
.scrolldown {
    /*描画位置※位置は適宜調整してください*/
    position: absolute;
    left: 50%;
    bottom: 10px;
    /*全体の高さ*/
    height: 50px;
}

/*Scrollテキストの描写*/
.scrolldown span {
    position: absolute;
    left: 5px;
    top: -2px;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    writing-mode: vertical-rl;
}

/* 線の描写 */
.scrolldown::after {
    content: "";
    /*描画位置*/
    position: absolute;
    top: 0;
    /*線の形状*/
    width: 1px;
    height: 30px;
    background: #eee;
    /*線の動き1.4秒かけて動く。永遠にループ*/
    animation: pathmove 1.4s ease-in-out infinite;
    opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
    0% {
        height: 0;
        top: 0;
        opacity: 0;
    }

    30% {
        height: 30px;
        opacity: 1;
    }

    100% {
        height: 0;
        top: 50px;
        opacity: 0;
    }
}


.bgextend {
    animation-name: bgextendAnimeBase;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    position: relative;
    overflow: hidden;
    /*　はみ出た色要素を隠す　*/
    opacity: 0;
}

@keyframes bgextendAnimeBase {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*中の要素*/
.bgappear {
    animation-name: bgextendAnimeSecond;
    animation-duration: 2s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

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

    100% {
        opacity: 1;
    }
}

/*左から*/
.bgLRextend::before {
    animation-name: bgLRextendAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #474747;
    /*伸びる背景色の設定*/
}

@keyframes bgLRextendAnime {
    0% {
        transform-origin: left;
        transform: scaleX(0);
    }

    50% {
        transform-origin: left;
        transform: scaleX(1);
    }

    50.001% {
        transform-origin: right;
    }

    100% {
        transform-origin: right;
        transform: scaleX(0);
    }
}

#news .bgLRextend::before {
    animation-name: bgLRextendAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #474747;
    top: 0%;
    left: 0%;
}


/* アクティブな画像の枠線を変更 */
.sub-img li.current img {
    border: 2px solid red;
    transition: border .5s;
}

/* レイアウトのためのスタイル */
.container {
    width: 80%;
    margin: 0 auto;
}

.main-img img {
    height: auto;
    width: 100%;
}

.sub-img {
    display: flex;
    flex-wrap: wrap;
    margin: 5% auto;
}

.sub-img li {
    margin-right: 2%;
    width: 18%;
}

.sub-img li img {
    border: 2px solid transparent;
    transition: border .5s;
}

.sub-img li:last-child {
    margin-right: 0;
}

.sub-img img {
    cursor: pointer;
    width: 100%;
}


/* テキストアニメ */

.glowAnime span {
    opacity: 0;
}

/*アニメーションで透過を0から1に変化させtext-shadowをつける*/
.glowAnime.glow span {
    animation: glow_anime_on 1s ease-out forwards;
}

@keyframes glow_anime_on {
    0% {
        opacity: 0;
        text-shadow: 0 0 0 #fff, 0 0 0 #fff;
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 10px #fff, 0 0 15px #fff;
    }

    100% {
        opacity: 1;
        text-shadow: 0 0 0 #fff, 0 0 0 #fff;
    }
}



/* フェード */
.box {
    opacity: 0;
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: .8s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

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

/* フェード */

.slide-in {
    overflow: hidden;
    display: inline-block;
}

.slide-in_inner {
    display: inline-block;

}

/* 上下のアニメーション*/
.downAnime {
    opacity: 0;
    /* 事前に透過0 にして消しておく*/
}

.slideAnimeDownUp {
    animation-name: slideTextY100;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes slideTextY100 {
    from {
        transform: translateY(100%);
        /* 要素を上の枠外に移動*/
        opacity: 0;
    }

    to {
        transform: translateY(0);
        /* 要素を元の位置に移動*/
        opacity: 1;
    }
}

.slideAnimeUpDown {
    animation-name: slideTextY-100;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes slideTextY-100 {
    from {
        transform: translateY(-100%);
        /* 要素を下の枠外に移動*/
        opacity: 0;
    }

    to {
        transform: translateY(0);
        /* 要素を元の位置に移動*/
        opacity: 1;
    }
}

/* ヘッダー */
#logos {
    margin: 15px 0px 14px 15px;
}

#logos a {
    display: inline-block;
}

#logos img {
    width: 100%;
}

#gnavi ul {
    display: flex;
    justify-content: center;
    padding: 1.2% 0;
    border-top: 1px solid;
    border-bottom: 1px solid #dcdcdc;
}

#gnavi ul li a {
    display: block;
    padding: 0 40px;
    border-left: 1px solid;
    font-weight: 500;
}

#gnavi ul li:last-child {
    border-right: 1px solid;
}

#gnavi ul li a:hover {
    opacity: .6;
    transition: .7s;
}

/* ヘッダー */
/* メインコンテンツ */
main {
    margin: 0 auto;
    margin-top: 6%;
    text-align: center;
}

#mv {
    position: relative;
    height: 85vh;
}

#mv::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 85vh;
    background: url(../img/top-mv.jpg) no-repeat center top / 100% auto;
    background-size: cover;
    margin-top: 6%;
}

#mv p {

    font-weight: bold;
    position: absolute;
    top: 65%;
    right: 0%;
    width: 58%;
    font-size: 4em;
    color: #fff;
}

#about {
    width: 100%;
    position: relative;
    height: 1000px;
    background: #fff;
    padding-top: 10%;
}

#about .abtxt {
    text-align: left;
    position: absolute;
    bottom: 16%;
    right: 32%;
    line-height: 2.6;
    font-size: 17px;
    background: #fff;
    writing-mode: vertical-rl;
}

#about .abtxtsp {
    text-align: left;
    position: absolute;
    bottom: 16%;
    right: 32%;
    line-height: 2.6;
    font-size: 17px;
    background: #fff;
}

#sales {
    text-align: left;
    padding: 5% 0;
    background: #f8f8f8;
}

#purchase {
    text-align: left;
    padding-top: 5%;
    padding-bottom: 13%;
    background: #fff;
}

.slick-arrow {
    display: none !important;
}

.SlideWrap ul {
    width: 100%;
}

.SlideWrap ul li {
    margin: 0 15px;
}

.SlideWrap ul li a {
    display: block;
}

.SlideWrap ul li a:hover {
    opacity: .6;
    transition: .7s;
}

.SlideWrap ul li p {
    text-align: left;
}

.SlideWrap ul li img {
    width: 100%;
}

.hbtxt {
    text-align: left;
    padding-top: 4%;
    line-height: 1.6;
}

.hbtxt p {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.pd {
    padding: 15px 0px 20px 0px !important;
}

#sales h2 span,
#purchase h2 span {
    color: #f84515;
    font-size: 15px;
    font-weight: bold;
    font-style: italic;
}

#sales h2,
#purchase h2 {
    font-size: 32px;
    margin-left: 13%;
    margin-bottom: 3%;
    line-height: 50px;
    font-weight: bold;
    color: #333333;
    width: 28%;
    border-bottom: 2px solid #333;
    margin-bottom: 5%;
}

.moreBtn {
    text-align: center;
}

#news {
    position: relative;
    width: 100%;
    height: 795px;
    padding-bottom: 10%;
    background: #f1f1f1;
}

.swiper-slide {
    li {
        background: #e3e3e3;
        width: 100%;
        height: 450px;

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }
}
.slider-thumbnail{
    li {
        background: #e3e3e3;
        width: 95%;
        height: 100px;

        img {
            object-fit: cover;
            width: 100%;
            height: 100%;
        }
    }
}
.nsbg {
    top: -9%;
    left: 12%;
    width: 34%;
    height: 973px;
    background: url(../img/news02.png) no-repeat center top / 100% auto;
}

.newsList {
    position: absolute;
    top: 23%;
    right: 16%;
    width: 26%;
    padding: 4% 3% 1% 24%;
    border: 1px solid #000;
    text-align: left;
    line-height: 1.7;
}

.newsList li {
    margin: 4% 0;
}

.newsList a {
    display: inline-block;
    border-bottom: 1px solid #f1f1f1;
    font-size: 18px;
}

.newsList a:hover {
    border-bottom: 1px solid;
}

.moreBtn p {
    position: relative;
    width: 18%;
    margin-left: auto;
    margin-right: 10%;
    margin-top: 5%;
    background: #fff;
    font-weight: bold;
}

.moreBtn a {
    display: block;
    padding: 16px 0px;
    color: #04268C;
    border: 1px solid #04268C;
    font-weight: 400;
    font-size: 18px;
}

.moreBtn p::before {
    position: absolute;
    right: 60px;
    top: calc(50% - 5px);
    transform: rotate(-45deg);
    width: 7px;
    height: 7px;
    border-bottom: 2px solid #04268C;
    border-right: 2px solid #04268C;
    content: "";
}

.moreBtn a:hover {
    background: #04268C;
    color: #fff;
    transition: .7s;
}

.moreBtn p:hover::before {
    position: absolute;
    right: 60px;
    top: calc(50% - 5px);
    transform: rotate(-45deg);
    width: 7px;
    height: 7px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    content: "";
    transition: .7s;
}

.abmore p {
    position: absolute;
    bottom: 9%;
    right: 9%;
    background: #fff;
    font-weight: bold;
    width: 20%;

}

.abmore a {
    display: block;
    color: #04268C;
    border: 1px solid #04268C;
    padding: 6% 0;
}

.abmore p::before {
    position: absolute;
    right: 10%;
    top: calc(50% - 5px);
    transform: rotate(-45deg);
    width: 7px;
    height: 7px;
    border-bottom: 2px solid #04268C;
    border-right: 2px solid #04268C;
    content: "";
}

.abmore a:hover {
    background: #04268C;
    color: #fff;
    transition: .7s;
}

.abmore p:hover::before {
    position: absolute;
    right: 10%;
    top: calc(50% - 5px);
    transform: rotate(-45deg);
    width: 7px;
    height: 7px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    content: "";
}

.slick-arrow:before {
    content: "" !important;
}

h3 {
    font-size: 18px;
    font-weight: bold;
}

#news h2 {
    width: 37%;
    font-size: 32px;
    font-weight: bold;
    padding-top: 5%;
    color: #333;
    margin-bottom: 5%;
    padding-bottom: 10px;
}

#news li:last-child {
    margin-top: 3%;
    margin-bottom: 8%;
}

#news li a:hover {
    opacity: .6;
    transition: .7s;
}

/* CTA */
#cta {
    /* margin-bottom: 4%; */
    height: 270px;
    background: linear-gradient(95deg, rgba(2, 0, 36, 1) 0%, rgba(0, 144, 255, 1) 0%, rgba(0, 0, 108, 1) 100%);
}

#cta h2 {
    color: #fff;
    font-size: 23px;
    font-weight: bold;
    padding: 2.5% 0;
}

.ctaBtn {
    display: flex;
    justify-content: center;
    width: 50%;
    margin: 0 auto;
}

.telarea,
.mailarea {
    width: 100%;
    margin: 0 4%;
}

.telbtn,
.mailbtn {
    position: relative;
}

.telbtn a {
    display: block;
    background: #fff;
    border-radius: 50px;
    margin: 0 2%;
    padding: 7px 0;
    line-height: 24px;
    font-weight: bold;
    font-size: 18px;
}

.subtxt {
    margin-top: 3%;
    color: #fff;
    font-size: 16px;
    line-height: 1.3;
}

.mailbtn a {
    display: block;
    background: #158BE3;
    border: 2px solid #fff;
    border-radius: 50px;
    margin: 0 2%;
    line-height: 58px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    padding: 1px 0;
}

.telbtn a:hover {
    background: #158BE3;
    border: 2px solid #fff;
    color: #fff;
    line-height: 25px;
    padding: 4px 0;
}

.mailbtn a:hover {
    background: #fff;
    border: 2px solid #158BE3;
    color: #000;
    border: initial;
    line-height: 62px;
}

.telbtn::before {
    content: '';
    position: absolute;
    top: 9px;
    left: 39%;
    width: 4%;
    height: 16px;
    background: url(../img/tel_bl.png) no-repeat center top / 100% auto;
}

.mailbtn::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 35%;
    width: 5%;
    height: 17px;
    background: url(../img/mail_wh.png) no-repeat center top / 100% auto;
}

.telbtn:hover::before {
    background: url(../img/tel_wh.png) no-repeat center top / 100% auto;
}

.mailbtn:hover::before {
    background: url(../img/mail_bl.png) no-repeat center top / 100% auto;
}

.nf {
    margin: 3% 0;
    font-size: 20px;
    font-weight: bold;
}

.nf p {
    margin-bottom: 2%;
}

/* CTA */


/* メインコンテンツ */


/* フッター */
footer {
    background: #f2f2f2;
}

.footerwrap {
    display: flex;
    padding-top: 6%;
    padding-bottom: 1%;
    justify-content: start;
}

#ftLogo {
    margin-left: 10%;
    display: flex;
}

#ftLogo img {
    width: 90%;
}

#ftNavi {
    display: flex;
}
@media screen and (min-width: 1080px) {
    .ftLogosp #ftLogo {
        display: none;
    }
}

#ftNavi li {
    margin: 20px 25px;
}

#ftNavi li:hover {
    opacity: .6;
}

.cprt {
    font-size: 11px;
    text-align: center;
    padding: 1% 0;
}

/* フッター */

/* ページネーション */
.pagination {
    margin: 30px 0;
}

.nav-links ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.nav-links li>* {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    height: 45px;
}

.nav-links li>*:not(.dots) {
    width: 45px;
    border-radius: 50%;
    color: #00036F;
    background: #efefef;
    transition: color 0.3s ease, background 0.3s ease;
}

.nav-links li>.current,
.nav-links li>a:hover {
    color: #ffffff;
    background: #00036F;
}


/* ページネーション */
.btn-area {
    width: 950px;
    margin: 64px auto 142px;
    display: flex;
    justify-content: center;
}

.to-btn {
    position: relative;
    width: 258px;
    padding: 15px 0;
    font-size: 20px;
    border: 1px solid #333;
    border-radius: 30px;
}

.to-btn:nth-child(1) {
    margin-right: 100px;
}


.acv-back {
    text-align: left;
    width: 50%;
    margin: 0 auto;
    margin-top: 2%;
}

.acv-back a {
    color: blue;
    text-decoration: underline;
}

.tnks {
    width: 50%;
    margin: 10% auto;
}

.tnks h2 {
    font-size: 25px;
    margin-bottom: 5%;
}











/* メディアクエリ */
@media screen and (min-width: 800px) {
    .sp {
        display: none;
    }
}

@media screen and (max-width: 1536px) {
    #about .abtxt {
        bottom: 25%;
    }

    .abmore p {
        bottom: 16%;
    }

    .ctaBtn {
        width: 64%;
    }

    #ftLogo {
        margin-left: 4%;
    }

    #ftNavi {
        display: flex;
    }

    #ftNavi li {
        margin: 20px 20px;
    }

    #cta {
        height: 235px;
    }

    #cta h2::before {
        left: 487px;
        width: calc(2% - 3px);
    }

    .telbtn::before {
        top: 10px;
        left: 37%;
        width: 16px;
    }

    .mailbtn::before {
        top: 23px;
        left: 33%;
        width: 20px;
    }

    .nsbg {
        width: 35%;
        height: 702px;
    }

    #ftNavi {
        display: flex;
        width: 51%;
    }

    #ftNavi li {
        margin: 20px 15px;
    }

}

@media screen and (min-width:800px) and (max-width:1200px) {

    /*　画面サイズが1200pxから800pxまではここを読み込む　*/
    #logos img {
        width: 16%;
    }

    #about {
        height: 106vh;
    }

    #about .abtxt {
        bottom: 15%;
    }

    #about .abtxtsp {
        bottom: 15%;
    }

    .abmore p {
        width: 25%;
    }

    .moreBtn p {
        width: 25%;
    }

    .moreBtn p::before {
        right: 37px;
    }

    .nsbg {
        top: -9%;
        left: 5%;
        width: 45%;
        height: 97vh;
    }

    .newsList {
        right: 5%;
        width: 35%;
    }



    .ctaBtn {
        width: 65%;
    }

    .telarea,
    .mailarea {
        margin: 0 1%;
    }

    .telbtn::before {
        top: 12px;
    }

    .mailbtn::before {
        top: 23px;
    }

    .mailbtn::before {
        top: 21px;
        left: 33%;
        width: 21px;
    }

}

@media screen and (max-width: 799px) {
    .scrolldown span {
        font-size: 10px;
        font-weight: 100;
    }

    .container {
        width: 100%;
    }

    .pc {
        display: none;
    }

    /*　ハンバーガーボタン　*/
    .hamburger {
        display: block;
        position: fixed;
        z-index: 3;
        right: 13px;
        top: 12px;
        width: 42px;
        height: 42px;
        cursor: pointer;
        text-align: center;
    }

    .hamburger span {
        display: block;
        position: absolute;
        width: 30px;
        height: 2px;
        left: 6px;
        background: #111;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }

    .hamburger span:nth-child(1) {
        top: 10px;
    }

    .hamburger span:nth-child(2) {
        top: 20px;
    }

    .hamburger span:nth-child(3) {
        top: 30px;
    }

    /* ナビ開いてる時のボタン */
    .hamburger.active {
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        -webkit-transition-delay: 0.6s;
        -o-transition-delay: 0.6s;
        transition-delay: 0.6s;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        width: 0px;
    }

    .hamburger.active span:nth-child(1),
    .hamburger.active span:nth-child(3) {
        -webkit-transition-delay: 0.3s;
        -o-transition-delay: 0.3s;
        transition-delay: 0.3s;
    }

    .hamburger.active span:nth-child(1) {
        -webkit-transform: translateY(4px);
        -ms-transform: translateY(4px);
        -o-transform: translateY(4px);
        transform: translateY(4px);
    }

    .hamburger.active span:nth-child(3) {
        -webkit-transform: translateY(-16px) rotate(90deg);
        -ms-transform: translateY(-16px) rotate(90deg);
        -o-transform: translateY(-16px) rotate(90deg);
        transform: translateY(-16px) rotate(90deg);
    }


    nav.globalMenuSp {
        position: fixed;
        z-index: 2;
        top: 0;
        left: 0;
        color: #000;
        /* background: linear-gradient(38deg, rgba(0, 0, 108, 1) 20%, rgba(0, 143, 254, 1) 100%); */
        background: #fff;
        text-align: center;
        transform: translateX(100%);
        transition: all .9s;
        width: 100%;

        /* 追加 */
        height: 100%;
        /* メニューの高さを画面の高さに合わせる */
        overflow-y: auto;
        /* メニューが画面の高さを超える場合にスクロール可能にする */
    }

    nav.globalMenuSp ul {
        background: linear-gradient(38deg, rgba(0, 0, 108, 1) 20%, rgba(0, 143, 254, 1) 100%);
        margin: 0% auto;
        padding: 10% 0px;
        width: 100%;
    }

    nav.globalMenuSp ul li {
        text-align: left;
        margin: 0 auto;
        list-style-type: none;
        padding: 0;
        width: 90%;
        border-bottom: 1px solid #fff;
    }

    nav.globalMenuSp ul li:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    nav.globalMenuSp ul li:hover {
        opacity: .6;
    }

    nav.globalMenuSp ul li a {
        display: block;
        color: #fff;
        padding: 7% 0;
        text-decoration: none;
    }

    .globalMenuSp li a {
        position: relative;
    }

    .globalMenuSp li a::after {
        position: absolute;
        top: 30px;
        right: 0px;
        content: '';
        display: inline-block;
        width: 50px;
        height: 50px;
        background: url(../img/farrow_wh.png) no-repeat;
        background-size: contain;
        vertical-align: middle;
    }

    /* このクラスを、jQueryで付与・削除する */
    nav.globalMenuSp.active {
        transform: translateX(0%);
    }
}

@media screen and (max-width: 430px) {

    /* 画面幅が430px以下（スマートフォン専用スタイル） */
    header {
        border-bottom: 1px solid #f1f1f1;
    }

    #mv::before {
        background: url(../img/sp_mv.jpg) no-repeat center top / 100% auto;
    }


    #logos {
        margin: 20px 0px 25px 15px;
    }

    #logos img {
        width: 75%;
    }

    #mv {
        position: relative;
        height: 85vh;
    }

    #mv p {
        font-weight: 600;
        position: absolute;
        top: 31%;
        right: 0%;
        width: 100%;
        font-size: 65px;
        color: #fff;
    }

    #about {
        height: 90vh;
        padding: 25% 0;
    }

    #about .abtxt {
        right: 46%;
        background: initial;
        bottom: 22%;
    }

    #about .abtxtsp {
        left: 0;
        right: 0;
        background: initial;
        bottom: 28%;
    }

    .bg {
        background: #fff;
        padding: 5px 0 5px 20px;
    }

    .abmore p {
        bottom: 10%;
        right: 10%;
        width: 80%;
    }

    #sales h2,
    #purchase h2 {
        width: 80%;
    }

    #sales h2,
    #purchase h2 {
        margin-left: 5%;
        margin-bottom: 20%;
    }

    .moreBtn p {
        bottom: 10%;
        width: 80%;
    }

    .moreBtn a {
        display: block;
        color: #04268C;
        border: 1px solid #04268C;
        padding: 6% 0;
    }

    #sales,
    #purchase {
        padding-top: 15%;
    }

    .moreBtn {
        margin: 20% 0;
    }

    #news {
        height: 122vh;
    }

    .nsbg {
        top: -43px;
        left: 0px;
        width: 84%;
        height: 65vh;
    }

    .newsList {
        top: 5%;
        right: 5%;
        width: 78%;
        padding: 98% 5% 3% 5%;
    }

    #news h2 {
        width: 45%;
    }

    #cta {
        height: 53vh;
    }

    #cta h2 {
        padding: 10% 0;
    }

    .ctaBtn {
        display: block;
        width: 90%;
    }

    .telarea,
    .mailarea {
        margin: 0;
    }

    .mailarea {
        margin-top: 11%;
    }

    .footerwrap {
        padding: 0;
        display: block;

    }

    #ftNavi {
        display: block;
        padding: 15% 0;
        width: 100%;
    }

    footer {
        text-align: left;
    }

    #ftNavi li {
        position: relative;
        margin: 3% 0;
        padding: 5% 5%;
        border-bottom: 1px solid #333;
    }



    #ftNavi li a::after {
        position: absolute;
        top: 10px;
        right: 25px;
        content: '';
        display: inline-block;
        width: 50px;
        height: 50px;
        background: url(../img/farrow.png) no-repeat;
        background-size: contain;
        vertical-align: middle;
    }

    #ftNavi li a {
        display: block;
    }

    .ftLogosp {
        text-align: center;
    }

    .cprt {
        padding-top: 10%;
        padding-bottom: 3%;
        font-size: 11px;
    }

    .navlogo {
        padding-top: 11%;
        padding-bottom: 7%;
        background: #fff;
    }

    .mchildli {
        padding: 0 !important;
        background: initial !important;
        width: 89% !important;
    }

    .mchildli li {
        margin-left: 10% !important;
    }

    .fmchildli {
        padding: 0 !important;
        background: initial !important;
    }

    .fmchildli li {
        margin-left: 10% !important;
    }

    .telbtn::before {
        top: 10px;
        left: 38%;
        width: 15px;
        height: 17px;
    }

    .mailbtn::before {
        top: 23px;
        left: 33%;
        width: 21px;
    }

    #cta h2 {
        font-size: 20px;
    }

    #cta h2::before {
        left: 7%;
        width: calc(6% - 1px);
    }

    .acv-back {
        width: 94%;
        margin-top: 6%;
    }

    .btn-area {
        width: 90%;
        margin: 10% auto 25%;
    }

    .to-btn {
        position: relative;
        width: 190px;
        padding: 3% 0;
    }

    .to-btn:nth-child(1) {
        margin-right: 3%;
    }
}

@media screen and (max-width: 375px) {
    #about {
        height: 103vh;
        padding: 25% 0;
    }

    #cta {
        height: 68vh;
    }

    #news {
        height: 150vh;
    }

    .nsbg {
        height: 76vh;
    }

    #about .abtxtsp {
        left: 0;
        right: 0;
        background: initial;
        bottom: 28%;
    }

    #news {
        height: 142vh;
    }

}