@charset "utf-8";

/* 共通の設定
------------------------------*/
* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
}

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

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.inner{
    max-width: 1220px;
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
}
.sp{
    display: none;
}
[id]{
    scroll-margin-top: 100px;
}
@media only screen and (max-width: 768px) {
    [id]{
        scroll-margin-top: 16vw;
    }
    .inner{
        max-width: none;
        padding: 0 5.33333333333334vw;
    }
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
}


/* fade */
.fadeup{
    opacity: 0;
    transform: translateY(20px);
    transition-duration: 1s;
}
.fadeup.on {
  opacity: 1;
  transform: translateY(0);
}

/* header
------------------------------*/
header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    max-height: 100px;
    border: none;
    background-color: #fff;
    z-index: 100;
    box-shadow: 0 2px 8px #0000001a;
}
#header{
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
}
#header .left-ctt{
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 25px;
    padding-left: 40px;
}
#header .left-ctt .logo a img{
    display: block;
    max-width: 260px;
    width: 100%;
    height: auto;
}
#header .left-ctt .note{
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.54;
    color: #000000;
}
#header .right-ctt{
    display: flex;
    justify-content: right;
    align-items: center;
    height: 100%;
    flex: 1;
}
#header .right-ctt .nav-area{
    position: relative;
    display: block;
    margin-right: 50px;
}
#header .right-ctt .nav-area::before{
    content: "";
    width: 1px;
    height: 100px;
    background-color: #EFEFEF;
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
}
#header .right-ctt .nav-area .top-nav{
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 20px;
    margin: 0 0 20px;
}
#header .right-ctt .nav-area .top-nav li a{
    display: block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: underline;
    transition: all .3s;
    color: #333;
}
#header .right-ctt .nav-area .under-nav{
    display: flex;
    align-items: center;
    gap: 30px;
}
#header .right-ctt .nav-area .under-nav li a{
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #000;
    text-decoration: none;
    transition: all .3s;
}
#header .right-ctt .nav-area .under-nav li a::before{
    content: "";
    width: 100%;
    height: 5px;
    background-color: #EC572E;
    position: absolute;
    bottom: -18px;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all .3s;
}
#header .right-ctt .nav-area .under-nav li a:hover{
    color: #EC572E;
}
#header .right-ctt .nav-area .under-nav li a:hover::before{
    opacity: 1;
}
#header .right-ctt .tell-ctt .tel a{
    transition: all .3s;
}
#header .right-ctt .tell-ctt .tel a:hover{
    opacity: 0.7;
}
#header .right-ctt .tell-ctt .tel a img{
    display: block;
    max-width: 240px;
    width: 100%;
    margin: 0 0 7px;
    transition: all .3s;
}
#header .right-ctt .tell-ctt .small-btn{
    display: flex;
    align-items: stretch;
    gap: 10px;
    margin-right: 25px;
}
#header .right-ctt .tell-ctt .small-btn .link-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 120px;
    height: 30px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0;
    color: #fff;
    text-decoration: none;
    transition: all .3s;
}
#header .right-ctt .tell-ctt .small-btn .link-btn:hover{
    opacity: 0.7;
}
#header .right-ctt .tell-ctt .small-btn .delivery{
    background-color: #D00413;
}
#header .right-ctt .tell-ctt .small-btn .delivery::before{
    content: "";
    width: 18px;
    height: 15px;
    background-image: url(../img/header/cardboard.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#header .right-ctt .tell-ctt .small-btn .line{
    background-color: #00A425;
}
#header .right-ctt .tell-ctt .small-btn .line::before{
    content: "";
    width: 16px;
    height: 16px;
    background-image: url(../img/header/line.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#header .right-ctt .sns-area{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 16px;
    width: 120px;
    max-height: 100px;
    height: 100%;
    background-color: #F1F1F1;
}
#header .right-ctt .sns-area p{
    font-size: 12px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.04em;
    margin: 0;
    color: #333333;
}
#header .right-ctt .sns-area .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
#header .right-ctt .sns-area .icon img{
    display: block;
    max-width: 35px;
    width: 100%;
    height: auto;
}
#header #menu {
    display: none;
}
header #navmn{
    display: none;
}

@media only screen and (max-width: 1600px) {
    #header .left-ctt{
        gap: 10px;
        padding-left: 20px;
    }
    #header .left-ctt .logo a img{
        max-width: 200px;
    }
    #header .left-ctt .note{
        font-size: 12px;
    }
    #header .right-ctt .nav-area{
        margin-right: 40px;
    }
    #header .right-ctt .nav-area::before{
        right: -20px;
    }
    #header .right-ctt .nav-area .top-nav{
        gap: 15px;
        margin: 0 0 15px;
    }
    #header .right-ctt .nav-area .top-nav li a{
        font-size: 12px;
    }
    #header .right-ctt .nav-area .under-nav{
        gap: 20px;
    }
    #header .right-ctt .nav-area .under-nav li a{
        font-size: 15px;
    }
    #header .right-ctt .nav-area .under-nav li a::before{
        height: 3px;
        bottom: -20px;
    }
}
@media only screen and (max-width: 1440px) {
    #header .left-ctt .note{
        display: none;
    }
}
@media only screen and (max-width: 768px) {
    header{
        max-height: 16vw;
    }
    #header{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 100%;
        max-height: 16vw;
        padding: 2.666666666666667vw 0 2.66666666666667vw 3.2vw;
        overflow: hidden;
    }
    #header .left-ctt{
        flex-shrink: 0;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding-left: 0;
    }
    #header .left-ctt .logo a img{
        display: block;
        max-width: 42.66666666666667vw;
        width: 100%;
    }
    #header .left-ctt .note{
        display: none;
    }
    #header .right-ctt{
        display: none;
    }
    #header #menu {
        display: block;
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        width: 16vw;
        height: 16vw;
        padding: 4.26666666666667vw 4vw;
        cursor: pointer;
        background-color: #000;
    }
    #header .menu .menu_nav{
        margin: 0 auto;
        width: 8vw;
        height: 2.66666666666667vw;
        position: relative;
        margin-bottom: 2.133333333333333333336vw;
    }
    #header .menu .menu_nav span {
        width: 100%;
        height: 2px;
        background-color: #fff;
        position: absolute;
        transition: .3s;
    }
    #header .menu .menu_nav span:nth-child(1) {
        top: 0;
    }
    #header .menu .menu_nav span:nth-child(2) {
        bottom: 0;
    }
    #header .menu.is-active .menu_nav span:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(30deg);
    }
    #header .menu.is-active .menu_nav span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%) rotate(-30deg);
    }
    #header .menu p{
        font-size: 2.6666666666666666666667vw;
        font-weight: 600;
        letter-spacing: 0.015em;
        text-align: center;
        color: #fff;
    }
    header #navmn{
        display: block;
        top: 16vw;
        overflow: hidden;
        background: none;
    }
    header #navmn .navmn-box{
        height: calc(100vh - 16vw);
        padding: 10.6666666666666666668vw 0;
        color: #fff;
        background: #000000 !important;
    }
    header #navmn .navmn-box .inner{
        overflow-y: scroll;
        height: calc(100vh - 16vw);
        max-height: 100%;
        padding: 0 6.666666666667vw;
    }
    header #navmn .navmn-box .drawer-nav{
        height: auto;
        padding: 0;
        margin: 0 0 13.333333333333335vw;
    }
    header #navmn .navmn-box .drawer-nav>ul{
        height: auto;
        padding: 5.066666666666666vw 0 5.600000000000005vw;
        border-bottom: 1px solid #3B3B3B;
    }
    header #navmn .navmn-box .drawer-nav>ul:first-of-type{
        padding: 0 0 5.600000000000005vw;
    }
    header #navmn .navmn-box .drawer-nav>ul .tl{
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 4.533333333333333vw;
        font-weight: 500;
        letter-spacing: 0.06em;
        line-height: 1.47;
        margin: 0;
        text-decoration: none;
    }
    header #navmn .navmn-box .drawer-nav>ul .tl a{
        padding: 0;
        background: none;
        border: none;
    }   
    header #navmn .navmn-box .drawer-nav>ul .tl .plus{
        position: relative;
        content: "";
        width: 2.66666667vw;
        height: 2.66666667vw;
    }
    header #navmn .navmn-box .drawer-nav>ul .tl .plus::before,
    header #navmn .navmn-box .drawer-nav>ul .tl .plus::after{
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        margin: auto;
        background: #fff;
        transition: 0.3s;
    }
    header #navmn .navmn-box .drawer-nav>ul .tl .plus::before{
        transform: rotate(90deg);
    }
    header #navmn .navmn-box .drawer-nav>ul.is-open .tl .plus::before{
        transform: rotate(0deg);
    }
    header #navmn .navmn-box .drawer-nav .accordion-body {
        padding: 0;
        padding-left: 5.33333333333334vw;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    header #navmn .navmn-box .drawer-nav .accordion-body li a{
        display: block;
        font-size: 14px;
        letter-spacing: 0.01em;
        text-align: left;
        padding: 0;
        margin: 0 0 4vw;
        border: none;
        color: #fff;
        background: none;
    }
    header #navmn .navmn-box .drawer-nav .accordion-body li:first-of-type a{
        margin: 5.33333333333333334vw 0 4vw;
    }
    header #navmn .navmn-box .drawer-nav .accordion-body li:last-of-type a{
        margin: 0;
    }
    header #navmn .navmn-box .tell{
        display: block;
        text-align: center;
        max-width: none;
        width: 100%;
        padding: 5.3333333334vw 0;
        margin: 0 0 6.4vw;
        color: #08080B;
        background-color: #fff;
        box-shadow: 0 4px 0 #C9C9C9;
        border-radius: 5px;
    }
    header #navmn .navmn-box .tell .note{
        font-size: 4.266666666666666667vw;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0;
        margin: 0 0 3.2vw;
    }
    header #navmn .navmn-box .tell .number{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2.133333333333333336vw;
        font-size: 12vw;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 600;
        line-height: 0.93;
        letter-spacing: 0.01em;
        margin: 0 0 2.66666666666667vw;
        color: #08080B;
    }
    header #navmn .navmn-box .tell .number::before{
        content: "";
        width: 10.6666666666666668vw;
        height: 7.11111111111111111vw;
        background-image: url(../img/top/cta_tel.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    header #navmn .navmn-box .tell span{
        display: inline-block;
        font-size: 3.2vw;
        font-family: "Albert Sans", sans-serif;
        font-weight: 500;
        text-align: center;
        letter-spacing: 0;
    }
    header #navmn .navmn-box .link-area{
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        margin: 0 0 12vw;
    }
    header #navmn .navmn-box .link-area a{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1.3333333333335vw;
        max-width: 41.333333333333333336vw;
        width: 100%;
        height: 16vw;
        font-size: 4.5333333333333vw;
        font-weight: bold;
        letter-spacing: 0;
        color: #fff;
        border-radius: 5px;
        margin: 0;
    }
    header #navmn .navmn-box .link-area .delivery{
        background-color: #D00413;
    }
    header #navmn .navmn-box .link-area .delivery::before{
        content: "";
        width: 6.4vw;
        height: 5.33333333333334vw;
        background-image: url(../img/top/cta_box.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    header #navmn .navmn-box .link-area .line{
        background-color: #00A425;
    }
    header #navmn .navmn-box .link-area .line::before{
        content: "";
        width: 5.6000000000000005vw;
        height: 5.33333333333334vw;
        background-image: url(../img/top/cta_line.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    header #navmn .navmn-box .sns-area{
        display: block;
        margin: 0 auto;
    }
    header #navmn .navmn-box .sns-area p{
        display: block;
        font-size: 4vw;
        font-family: "Inter", sans-serif;
        font-weight: 600;
        text-align: center;
        letter-spacing: 0.04em;
        color: #fff;
        margin: 0 0 4vw;
    }
    header #navmn .navmn-box .sns-area .icon{
        display: flex;
        justify-content: center;
        align-items: stretch;
        gap: 3.4633333333333333vw;
        margin: 0;
    }
    header #navmn .navmn-box .sns-area .icon a img{
        display: block;
        max-width: 11.200000000000001vw;
        width: 100%;
        margin: 0;
    }

}



/* footer
------------------------------*/
#footer{
    color: #fff;
}
#footer .footer_menu {
    padding: 82px 0;
    background-color: #191919;
}
#footer .footer_menu .footer-inner{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
#footer .footer_menu .footer-inner ul{
    display: block;
    list-style: none;
}
#footer .footer_menu .footer-inner ul li{
    padding: 0;
    margin: 0;
}
#footer .footer_menu .footer-inner ul .tl{
    position: relative;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 0 0 20px;
    margin: 0 0 35px;
    color: #fff;
}
#footer .footer_menu .footer-inner ul .tl::before{
    content: "";
    width: 30px;
    height: 1px;
    background-color: #EC572E;
    position: absolute;
    bottom: 0;
    left: 0;
}
#footer .footer_menu .footer-inner ul li a{
    position: relative;
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    line-height: 2.31;
    margin: 0;
    color: #fff;
    transition: all .3s;
}
#footer .footer_menu .footer-inner ul li a::before{
    content: "";
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    bottom: 3px;
    left: 0;
    transition: all .3s;
    opacity: 0;
}
#footer .footer_menu .footer-inner ul li a:hover{
    text-decoration: none;
}
#footer .footer_menu .footer-inner ul li a:hover::before{
    opacity: 1;
}
#footer #footer_nav{
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0;
    padding: 8px 0 6px;
    color: #fff;
    background: #000000;
}
#footer #footer_nav a{
    transition: all .3s;
}
#footer #footer_nav a:hover{
    opacity: 0.7;
}
#footer .last-info{
    padding: 30px 0;
    background-color: #fff;
}
#footer .last-info .info-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#footer .last-info .txt{
    display: flex;
    gap: 85px;
}
#footer .last-info .txt p{
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.43;
    margin: 0;
    color: #000;
}
#footer .last-info .logo a img{
    display: block;
    max-width: 260px;
    width: 100%;
}
@media only screen and (max-width: 768px) {
    #footer{
        padding: 0 0 30px;
    }
    #footer .footer-menu{
        margin: 0 0 5.3333333333333334vw;
    }
    #footer .footer-menu>ul{
        padding: 5.066666666666666vw 0 5.600000000000005vw;
        border-bottom: 1px solid #3B3B3B;
    }
    #footer .footer-menu>ul .tl{
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 4.533333333333333vw;
        font-weight: 500;
        letter-spacing: 0.06em;
        line-height: 1.47;
        padding: 0 5.3333333333334vw;
        margin: 0;
    }
    #footer .footer-menu>ul .tl .plus{
        position: relative;
        content: "";
        width: 2.4vw;
        height: 2.4vw;
    }
    #footer .footer-menu>ul .tl .plus::before,
    #footer .footer-menu>ul .tl .plus::after{
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        margin: auto;
        background: #fff;
        transition: 0.3s;
    }
    #footer .footer-menu>ul .tl .plus::before{
        transform: rotate(90deg);
    }
    #footer .footer-menu>ul.is-open .tl .plus::before{
        transform: rotate(0deg);
    }
    #footer .footer-menu .accordion-body {
        padding-left: 8vw;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    #footer .footer-menu .accordion-body li a{
        display: block;
        font-size: 3.73333333333333334vw;
        letter-spacing: 0.01em;
        text-align: left;
        margin: 0 0 2.666666666666666667vw;
        color: #fff;
    }
    #footer .footer-menu .accordion-body li:first-of-type a{
        margin: 5.33333333333334vw 0 2.66666666666666667vw;
    }
    #footer .footer-menu .accordion-body li:last-of-type a{
        margin: 0;
    }
    #footer #footer_nav{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6.66666666666666667vw;
        padding: 0;
        margin: 0 0 10.66666666666666668vw;
        background: #1a1a1a;
    }
    #footer #footer_nav a,
    #footer #footer_nav p{
        position: relative;
        display: block;
        font-size: 3.2vw;
        font-weight: 400;
        letter-spacing: 0.01em;
        color: #fff;
        margin: 0;
    }
    #footer #footer_nav a::before{
        content: "";
        width: 1px;
        height: 3.73333333333333334vw;
        background-color: #fff;
        position: absolute;
        top: 52%;
        right: -3.2vw;
        transform: translateY(-50%);
    }
    #footer .last-info{
        padding: 0;
        background: none;
    }
    #footer .last-info .logo a img{
        max-width: 53.33333333334vw;
        width: 100%;
        margin: 0 auto 5.3333333333333333334vw;
        display: block;
    }
    #footer .last-info .txt{
        display: block;
    }
    #footer .last-info .txt p{
        font-size: 3.4666666666666663vw;
        font-weight: 500;
        line-height: 1.57;
        letter-spacing: 0.06em;
        text-align: center;
        margin: 0;
        color: #fff;
    }
    #footer .last-info .txt p .name{
        display: block;
        font-size: 4.266666666666667vw;
        font-weight: 500;
        text-align: center;
        margin: 0;
        color: #fff;
    }
}


#floating{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #EBEBEB;
    z-index: 10;
}
#floating .pc{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
}
#floating .sp{
    display: none;
}
#floating .note{
    position: relative;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-align: center;
    line-height: 1.35;
    margin: 0;
    color: #08080B;
}
#floating .note::before{
    content: "";
    width: 1px;
    height: 80px;
    background-color: #5A5A5A;
    position: absolute;
    top: 50%;
    right: -23px;
    transform: translateY(-50%);
}
#floating .note span{
    font-size: 15px;
    line-height: 1.8;
}
#floating .link-area{
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
#floating .link-area .tel img{
    display: block;
    max-width: 260px;
    width: 100%;
    margin-right: 30px;
}
#floating .link-area .btn{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: -5px;
    text-decoration: none;
    border-radius: 5px;
    transition: all .3s;
}
#floating .link-area .btn p{
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1.32;
    color: #fff;
    margin: 0;
}
#floating .link-area .btn span{
    font-size: 17px;
    line-height: 1.71;
}
#floating .link-area .delivery{
    padding: 21px 17px 19px;
    margin-right: 20px;
    background: linear-gradient(
        to bottom,
        #D00413 0%,
        #D00413 50%,
        #C00614 51%,
        #C00614 100%
    );
    box-shadow: 0 6px 0 #A4000D;
}
#floating .link-area .delivery::before{
    content: "";
    width: 40px;
    height: 34px;
    background-image: url(../img/footer/floating_box.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#floating .link-area .delivery:hover{
    opacity: 1;
    box-shadow: 0 1px 0 #A4000D;
    transform: translateY(5px);
}
#floating .link-area .line{
    padding: 21px 30px 19px;
    background: linear-gradient(
        to bottom,
        #05B52C 0%,
        #05B52C 50%,
        #00A425 51%,
        #00A425 100%
    );
    box-shadow: 0 6px 0 #00871E;
}
#floating .link-area .line::before{
    content: "";
    width: 36px;
    height: 34px;
    background-image: url(../img/footer/floating_line.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#floating .link-area .line:hover{
    opacity: 1;
    box-shadow: 0 1px 0 #00871E;
    transform: translateY(5px);
}
@media only screen and (max-width: 768px) {
    #floating{
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 0;
        width: 100%;
        z-index: 50;
        display: block;
        background: transparent;
    }
    #floating .pc{
        display: none;
    }
    #floating .sp{
        display: block;
    }
    #floating .page-top{
        display: block;
        max-width: 10.666666666666668vw;
        margin-left: auto;
        position: relative;
        z-index: 50;
    }
    #floating .page-top a{
        position: relative;
        z-index: 50;
        display: block;
        max-width: 10.666666666666668vw;
        width: 100%;
        height: auto;
        margin-left: auto;
    }
    #floating .page-top a img{
        position: relative;
        z-index: 50;
        display: block;
        width: 100%;
        height: auto;
    }
    #floating .link-area{
        padding: 2.6666666666667vw 3.2vw;
        background-color: #EFEFEF;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: stretch;
    }
    #floating .link-area .btn{
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        gap: 2.133333333333333vw;
        width: 29.86666666666667vw;
        height: 13.33333333333335vw;
        text-decoration: none;
        font-size: 4.2666666666667vw;
        font-weight: 600;
        letter-spacing: 0.01em;
        line-height: 1.32;
        margin: 0;
        color: #fff;
        transition: all .3s;
        box-shadow: none;
    }
    #floating .link-area .btn::after{
        position: absolute;
        top: 0.8vw;
        left: 0.8vw;
        content: "";
        width: 6.933333333333333vw;
        height: 5.6000000000000005vw;
        background-image: url(../img/common/floating_btn_deco.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    #floating .link-area .tell{
        background: linear-gradient(to bottom, #3F3F3F 0%, #3F3F3F 50%, #121212 51%, #121212 100%);
    }
    #floating .link-area .tell::before{
        content: "";
        width: 4.8vw;
        height: 4.8vw;
        background-image: url(../img/common/floating_tell.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    #floating .link-area .delivery{
        background: linear-gradient(to bottom, #D9000E 0%, #D9000E 50%, #B70011 51%, #B70011 100%);
    }
    #floating .link-area .delivery::before{
        content: "";
        width: 5.6000000000000005vw;
        height: 4.8vw;
        background-image: url(../img/common/floating_box.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    #floating .link-area .delivery:hover{
        opacity: 0.7;
    }
    #floating .link-area .line{
        color: #fff;
        background: #00A425;
    }
    #floating .link-area .line::before{
        content: "";
        width: 5.60000000000000005vw;
        height: 5.3333333333333333334vw;
        background-image: url(../img/common/floating_line.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    #floating .link-area .line:hover{
        opacity: 0.7;
    }
}


/* cta */
#cta{
    padding: 80px 0 95px;
    background-image: url(../img/top/cta_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#cta .txt_area{
    display: block;
    text-align: center;
    margin: 0 auto 45px;
    color: #fff;
}
#cta .txt_area h2{
    font-size: 55px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    margin: 0 auto 40px;
}
#cta .txt_area .note{
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.56;
    margin: 0;
}
#cta .link_area{
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 840px;
    width: 100%;
    margin: 0 auto;
}
#cta .link_area a{
    text-decoration: none;
}
#cta .link_area .delivery{
    display: block;
    text-align: center;
    max-width: 840px;
    width: 100%;
    padding: 25px 0 35px;
    margin: 0 auto;
    border-radius: 5px;
    box-shadow: 0 6px 0 #A4000D;
    color: #fff;
    background-color: #C00614;
}
#cta .link_area .delivery .note{
    display: inline-block;
    font-size: 21px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.02em;
    color: #fff;
    padding: 0 3px 8px;
    margin: 0 0 26px;
    border-bottom: 2px solid #fff;
}
#cta .link_area .delivery .name-ttl{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
#cta .link_area .delivery .name-ttl::before{
    content: "";
    width: 72px;
    height: 60px;
    background-image: url(../img/top/cta_box.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#cta .link_area .delivery .name-ttl p{
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    margin: 0;
    color: #fff;
}
#cta .link_area .delivery .name-ttl p span{
    font-size: 32px;
    line-height: 1.5;
}
#cta .link_area .tell{
    display: block;
    text-align: center;
    max-width: 410px;
    width: 100%;
    padding: 25px 0;
    color: #08080B;
    background-color: #fff;
    box-shadow: 0 5px 0 #C9C9C9;
    border-radius: 5px;
}
#cta .link_area .tell .note{
    font-size: 21px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0;
    margin: 0 0 20px;
}
#cta .link_area .tell .number{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 55px;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 600;
    line-height: 0.93;
    letter-spacing: 0.01em;
    margin: 0 0 10px;
    color: #08080B;
}
#cta .link_area .tell .number::before{
    content: "";
    width: 48px;
    height: 31px;
    background-image: url(../img/top/cta_tel.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#cta .link_area .tell span{
    display: inline-block;
    font-size: 16px;
    font-family: "Albert Sans", sans-serif;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0;
}
#cta .link_area .line{
    display: block;
    text-align: center;
    max-width: 410px;
    width: 100%;
    padding: 25px 0;
    color: #fff;
    background-color: #05B52C;
    box-shadow: 0 5px 0 #0D902A;
    border-radius: 5px;
}
#cta .link_area .line .note{
    display: inline-block;
    font-size: 21px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0;
    padding: 0 0 4px;
    margin: 0 0 30px;
    border-bottom: 2px solid #fff;
}
#cta .link_area .line .line-txt{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 45px;
    font-weight: 800;
    letter-spacing: 0;
    color: #fff;
    margin: 0;
}
#cta .link_area .line .line-txt::before{
    content: "";
    width: 44px;
    height: 42px;
    background-image: url(../img/top/cta_line.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
@media only screen and (max-width: 768px) {
    #cta{
        padding: 12vw 0 13.33333333333335vw;
        background-image: url(../img/top/cta_bg.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    #cta .txt_area{
        display: block;
        text-align: center;
        margin: 0 auto 12vw;
        color: #fff;
    }
    #cta .txt_area h2{
        font-size: 6.666666666666667vw;
        font-weight: 800;
        letter-spacing: 0;
        text-align: center;
        line-height: 1.32;
        margin: 0 auto 5.33333333333334vw;
    }
    #cta .txt_area .note{
        font-size: 3.7333333333333333334vw;
        font-weight: 500;
        letter-spacing: 0;
        text-align: center;
        line-height: 1.43;
        margin: 0;
    }
    #cta .link_area{
        display: flex;
        justify-content: center;
        align-items: stretch;
        flex-wrap: wrap;
        gap: 4vw 2.4vw;
        max-width: none;
        width: 100%;
        padding: 0 5.33333333334vw;
        margin: 0 auto;
    }
    #cta .link_area a{
        text-decoration: none;
    }
    #cta .link_area .delivery{
        display: block;
        text-align: center;
        max-width: none;
        width: 100%;
        padding: 4vw 5.333333333333334vw 2.66666666666666667vw;
        margin: 0 auto;
        border-radius: 5px;
        box-shadow: 0 5px 0 #A4000D;
        color: #fff;
        background-color: #C00614;
    }
    #cta .link_area .delivery .note{
        display: inline-block;
        font-size: 3.2vw;
        font-weight: bold;
        letter-spacing: 0.02em;
        line-height: 1.33;
        text-align: left;
        color: #fff;
        padding: 0;
        margin: 0 0 2.666666666666667vw;
        border: none;
    }
    #cta .link_area .delivery .name-ttl{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2.666666666667vw;
    }
    #cta .link_area .delivery .name-ttl::before{
        content: "";
        width: 13.866666666666665vw;
        height: 11.666667vw;
        background-image: url(../img/top/cta_box.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        flex-shrink: 0;
    }
    #cta .link_area .delivery .name-ttl p{
        font-size: 5.866666666666vw;
        font-weight: 800;
        line-height: 1;
        letter-spacing: 0;
        margin: 0;
        color: #fff;
    }
    #cta .link_area .delivery .name-ttl p span{
        font-size: 4.666666666666667vw;
        line-height: 1.37;
    }
    #cta .link_area .tell{
        display: block;
        text-align: center;
        max-width: 42.66666666666667vw;
        width: 100%;
        padding: 3.7333333333333334vw 0 3.2vw;
        color: #08080B;
        background-color: #fff;
        border-radius: 5px;
        box-shadow: none;
    }
    #cta .link_area .tell .note{
        font-size: 2.66666666666667vw;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0;
        margin: 0 0 1.66666666666666667vw;
    }
    #cta .link_area .tell .number{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.8vw;
        font-size: 6.4vw;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 600;
        line-height: 0.93;
        letter-spacing: 0.01em;
        margin: 0;
        color: #08080B;
    }
    #cta .link_area .tell .number::before{
        content: "";
        width: 5.333333333333333333334vw;
        height: 3.5999999999999996vw;
        background-image: url(../img/top/cta_tel.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    #cta .link_area .tell span{
        display: none;
    }
    #cta .link_area .line{
        display: block;
        text-align: center;
        max-width: 42.66666666666667vw;
        width: 100%;
        padding: 3.7333333333333334vw 0 3.2vw;
        color: #fff;
        background-color: #05B52C;
        border-radius: 5px;
        box-shadow: none;
    }
    #cta .link_area .line .note{
        font-size: 2.66666666666667vw;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0;
        padding: 0;
        margin: 0 0 1.333333333335vw;
        border: none;
    }
    #cta .link_area .line .line-txt{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1.333333333333335vw;
        font-size: 4.8vw;
        font-weight: 800;
        letter-spacing: 0;
        color: #fff;
        margin: 0;
    }
    #cta .link_area .line .line-txt::before{
        content: "";
        width: 4.533333333333333333vw;
        height: 4.2666666666666667vw;
        background-image: url(../img/top/cta_line.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
}


#content-outline{
    margin: 100px 0 0;
}
@media only screen and (max-width: 768px) {
    #content-outline{
        margin: 15.73333333333333vw 0 0;
    }
}


/* top
------------------------------*/
#top {
    font-family: "Noto Sans JP", sans-serif;
}
#top *{
    box-sizing: border-box;
}
#top .mv{
    position: relative;
    background-image: url(../img/top/mv_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0 50px;
    overflow: hidden;
}
#top .mv::before{
    content: "";
    width: 670px;
    height: 520px;
    background-image: url(../img/top/mv_info_iconbg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}
#top .mv .mv_inner{
    position: relative;
    z-index: 2;
    display: block;
    max-width: 1270px;
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
}
#top .mv .mv_inner h1 img{
    display: block;
    max-width: 1250px;
    width: 100%;
    text-align: center;
    margin: 0 auto 30px;
}
#top .mv .mv_inner h1 img.sp{
    display: none;
}
#top .mv .mv_inner .note{
    font-size: 33px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0;
    line-height: 1.45;
    margin: 0 0 36px;
    color: #fff;
}
#top .mv .mv_inner .info{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0 auto 40px;
}
#top .mv .mv_inner .info .item{
    position: relative;
    display: block;
    max-width: 270px;
    width: 100%;
    padding: 25px 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    background-image: url(../img/top/mv_info_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#top .mv .mv_inner .info .item::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
}
#top .mv .mv_inner .info .item::after {
    content: "";
    position: absolute;
    right: -1px;
    bottom: -1px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
#top .mv .mv_inner .info .item .span{
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.01em;
    line-height: 1.45;
    margin: 0 0 8px;
    color: #fff;
}
#top .mv .mv_inner .info .item .label-ttl{
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0;
    line-height: 1.48;
    color: #fff;
    margin: 0;
}
#top .mv .mv_inner .scroll{
    position: relative;
    display: block;
    margin: 0 auto;
}
#top .mv .mv_inner .scroll p{
    position: relative;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.1em;
    margin: 0 auto;
    color: #fff;
}
#top .mv .mv_inner .scroll .scroll-line{
    position: relative;
    display: block;
    width: 1px;
    height: 40px;
    margin: 15px auto 0;
    overflow: hidden;
}
#top .mv .mv_inner .scroll .scroll-line::before{
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #fff;
    animation: scrollLine 3s infinite;
}
@keyframes scrollLine {
    0% {
        top: -40px;
    }
    100% {
        top: 80px;
    }
}
@media only screen and (max-width: 768px) {
    #top{
        font-family: "Noto Sans JP", sans-serif;
        margin: 15.73333333333333vw 0 0;
    }
    #top *{
        box-sizing: border-box;
    }
    #top .mv{
        position: relative;
        background-image: url(../img/top/mv_bg.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 6.666666666667vw 0 57.333333333333336vw;
        overflow: hidden;
    }
    #top .mv::before{
        content: "";
        width: 37.06666666666666vw;
        height: 59.46666666666667vw;
        background-image: url(../img/top/mv_top_icon01.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        left: 5.3333333333333334vw;
        bottom: 1.666666666666667vw;
        z-index: 1;
    }
    #top .mv::after{
        content: "";
        width: 69.33333333333334vw;
        height: 53.8666666666666vw;
        background-image: url(../img/top/mv_top_icon02.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 2;
    }
    #top .mv .mv_inner{
        max-width: none;
        width: 100%;
        padding: 0 5.333333333333334vw;
        margin: 0 auto;
    }
    #top .mv .mv_inner h1 img{
        display: block;
        max-width: 74.66666667vw;
        width: 100%;
        margin: 0 auto 2.13333333333333vw;
    }
    #top .mv .mv_inner h1 img.pc{
        display: none;
    }
    #top .mv .mv_inner h1 img.sp{
        display: block;
    }
    #top .mv .mv_inner .note{
        display: block;
        font-size: 3.4666666666666663vw;
        font-weight: 800;
        text-align: center;
        letter-spacing: 0;
        padding: 0;
        margin: 0 auto 4vw;
        color: #fff;
    }
    #top .mv .mv_inner .info{
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        margin: 0;
    }
    #top .mv .mv_inner .info .item{
        position: relative;
        display: block;
        max-width: 28.799999999999997vw;
        width: 100%;
        padding: 2.66666666666667vw 0 2.133333333333336vw;
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #fff;
        background-image: url(../img/top/mv_info_bg.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    #top .mv .mv_inner .info .item::before {
        content: "";
        position: absolute;
        top: -1px;
        left: -1px;
        width: 1.33333333333333333335vw;
        height: 1.33333333333333333335vw;
        border-top: 0.15vw solid #fff;
        border-left: 0.15vw solid #fff;
    }
    #top .mv .mv_inner .info .item::after {
        content: "";
        position: absolute;
        right: -1px;
        bottom: -1px;
        width: 1.33333333333333333335vw;
        height: 1.33333333333333333335vw;
        border-right: 0.15vw solid #fff;
        border-bottom: 0.15vw solid #fff;
    }
    #top .mv .mv_inner .info .item .span{
        font-size: 2.133333333333336vw;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0.01em;
        line-height: 1.45;
        margin: 0 0 0.8vw;
        color: #fff;
    }
    #top .mv .mv_inner .info .item .label-ttl{
        font-size: 4.26666666667vw;
        font-weight: 800;
        text-align: center;
        letter-spacing: 0;
        line-height: 1.56;
        color: #fff;
        margin: 0;
    }
    #top .mv .mv_inner .scroll{
        display: none;
    }
}


#top .information{
    position: relative;
    padding: 80px 0 115px;
    background-color: #191919;
}
#top .information::before{
    content: "";
    width: 942px;
    height: 566px;
    background-image: url(../img/top/info-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}
#top .information .inner{
    position: relative;
    z-index: 3;
    max-width: 1020px;
    width: 100%;
}
#top .information .bnr-area{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 0 65px;
}
#top .information .bnr-area .big-bnr{
    display: block;
    width: 100%;
}
#top .information .bnr-area .small-bnr{
    position: relative;
    display: block;
    max-width: 320px;
    width: 100%;
    height: 160px;
}
#top .information .bnr-area a img{
    width: 100%;
}
#top .information .bnr-area .small-bnr img{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
#top .information .link_area{
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 840px;
    width: 100%;
    margin: 0 auto 60px;
}
#top .information .link_area a{
    text-decoration: none;
}
#top .information .link_area .delivery{
    display: block;
    text-align: center;
    max-width: 840px;
    width: 100%;
    padding: 25px 0 35px;
    margin: 0 auto;
    border-radius: 5px;
    box-shadow: 0 6px 0 #A4000D;
    color: #fff;
    background-color: #C00614;
}
#top .information .link_area .delivery .note{
    display: inline-block;
    font-size: 21px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.02em;
    color: #fff;
    padding: 0 3px 8px;
    margin: 0 0 26px;
    border-bottom: 2px solid #fff;
}
#top .information .link_area .delivery .name-ttl{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
#top .information .link_area .delivery .name-ttl::before{
    content: "";
    width: 72px;
    height: 60px;
    background-image: url(../img/top/cta_box.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#top .information .link_area .delivery .name-ttl p{
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    margin: 0;
    color: #fff;
}
#top .information .link_area .delivery .name-ttl p span{
    font-size: 32px;
    line-height: 1.5;
}
#top .information .link_area .tell{
    display: block;
    text-align: center;
    max-width: 410px;
    width: 100%;
    padding: 25px 0;
    color: #08080B;
    background-color: #fff;
    box-shadow: 0 5px 0 #C9C9C9;
    border-radius: 5px;
}
#top .information .link_area .tell .note{
    font-size: 21px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0;
    margin: 0 0 20px;
}
#top .information .link_area .tell .number{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 55px;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 600;
    line-height: 0.93;
    letter-spacing: 0.01em;
    margin: 0 0 5px;
    color: #08080B;
}
#top .information .link_area .tell .number::before{
    content: "";
    width: 48px;
    height: 31px;
    background-image: url(../img/top/cta_tel.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#top .information .link_area .tell span{
    display: inline-block;
    font-size: 16px;
    font-family: "Albert Sans", sans-serif;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0;
}
#top .information .link_area .line{
    display: block;
    text-align: center;
    max-width: 410px;
    width: 100%;
    padding: 25px 0;
    color: #fff;
    background-color: #05B52C;
    box-shadow: 0 5px 0 #0D902A;
    border-radius: 5px;
}
#top .information .link_area .line .note{
    display: inline-block;
    font-size: 21px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0;
    padding: 0 0 4px;
    margin: 0 0 25px;
    border-bottom: 2px solid #fff;
}
#top .information .link_area .line .line-txt{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 45px;
    font-weight: 800;
    letter-spacing: 0;
    color: #fff;
    margin: 0;
}
#top .information .link_area .line .line-txt::before{
    content: "";
    width: 44px;
    height: 42px;
    background-image: url(../img/top/cta_line.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#top .information .youtube p{
    position: relative;
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.05em;
    color: #fff;
    margin: 0 0 -25px;
    z-index: 2;
}
#top .information .youtube .youtube-facade{
    position: relative;
    padding: 55px 80px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: #000000;
}
#top .information .youtube .youtube-facade img{
    display: block;
    width: 100%;
}
#top .information .youtube .youtube-facade iframe{
    display: block;
    width: 100%;
    height: 450px;
}
#top .information .youtube .youtube-facade .corner{
    position: absolute;
    width: 16px;
    height: 16px;
    overflow: hidden;
}
#top .information .youtube .youtube-facade .corner-top-left{
    top: 0;
    left: 0;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
}
#top .information .youtube .youtube-facade .corner-top-right{
    top: 0;
    right: 0;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}
#top .information .youtube .youtube-facade .corner-bottom-left{
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
}
#top .information .youtube .youtube-facade .corner-bottom-right{
    bottom: 0;
    right: 0;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
}
#top .information .youtube .youtube-facade .youtube-facade__play{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: block;
    max-width: 95px;
    width: 100%;
    cursor: pointer;
    transition: all .3s;
}
#top .information .youtube .youtube-facade .youtube-facade__play:hover{
    opacity: 0.9;
}
#top .information .text-slider {
    position: absolute;
    bottom: 32px;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
    width: 100%;
}
#top .information .text-slider .slide-track {
    display: inline-block;
    animation: slide 70s linear infinite;
}
#top .information .text-slider .slide-track span {
    display: inline-block;
    font-size: 100px;
    font-weight: 600;
    letter-spacing: 0;
    color: #fff;
}
@keyframes slide {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 768px) {
    #top .information {
        position: relative;
        padding: 10.66666666666668vw 0 16vw;
        background-color: #191919;
    }
    #top .information::before{
        content: "";
        width: 300px;
        height: 180px;
        background-image: url(../img/top/info-bg.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 2;
    }
    #top .information .inner{
        position: relative;
        z-index: 3;
    }
    #top .information .bnr-area{
        display: block;
        margin: 0 auto 40px;
    }
    #top .information .bnr-area .big-bnr{
        display: block;
        width: 100%;
        margin: 0 auto 10px;
    }
    #top .information .bnr-area .small-bnr{
        display: block;
        width: 100%;
    }
    #top .information .bnr-area .small-bnr img{
        display: block;
        max-width: 42.66666666666667vw;
        width: 100%;
        margin: 0 auto;
        border: 1px solid #eee;
    }
    #top .information .bnr-area .campaign-banner .slick-dots li{
        margin: 0;
    }
    #top .information .bnr-area .campaign-banner .slick-dots li button:before{
        font-size: 8px;
        color: #fff;
    }
    #top .information .link_area{
        display: flex;
        justify-content: center;
        align-items: stretch;
        flex-wrap: wrap;
        gap: 4vw 2.4vw;
        max-width: none;
        width: 100%;
        margin: 0 auto 8vw;
    }
    #top .information .link_area a{
        text-decoration: none;
    }
    #top .information .link_area .delivery{
        display: block;
        text-align: center;
        max-width: none;
        width: 100%;
        padding: 4vw 5.333333333333334vw 2.6666666666667vw;
        margin: 0 auto;
        border-radius: 5px;
        box-shadow: 0 5px 0 #A4000D;
        color: #fff;
        background-color: #C00614;
    }
    #top .information .link_area .delivery .note{
        display: inline-block;
        font-size: 3.2vw;
        font-weight: bold;
        letter-spacing: 0.02em;
        text-align: left;
        line-height: 1.33;
        color: #fff;
        padding: 0;
        margin: 0 0 2.666666666666667vw;
        border: none;
    }
    #top .information .link_area .delivery .name-ttl{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2.666666666667vw;
    }
    #top .information .link_area .delivery .name-ttl::before{
        content: "";
        width: 13.866666666666665vw;
        height: 11.666667vw;
        background-image: url(../img/top/cta_box.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        flex-shrink: 0;
    }
    #top .information .link_area .delivery .name-ttl p{
        font-size: 5.866666666666vw;
        font-weight: 800;
        line-height: 1;
        letter-spacing: 0;
        margin: 0;
        color: #fff;
    }
    #top .information .link_area .delivery .name-ttl p span{
        font-size: 4.666666666666667vw;
        line-height: 1.37;
    }
    #top .information .link_area .tell{
        display: block;
        text-align: center;
        max-width: 42.66666666666667vw;
        width: 100%;
        padding: 3.7333333333333334vw 0 3.2vw;
        color: #08080B;
        background-color: #fff;
        border-radius: 5px;
        box-shadow: none;
    }
    #top .information .link_area .tell .note{
        font-size: 2.66666666666667vw;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0;
        margin: 0 0 1.66666666666666667vw;
    }
    #top .information .link_area .tell .number{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.8vw;
        font-size: 6.4vw;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 600;
        line-height: 0.93;
        letter-spacing: 0.01em;
        margin: 0;
        color: #08080B;
    }
    #top .information .link_area .tell .number::before{
        content: "";
        width: 5.333333333333333333334vw;
        height: 3.5999999999999996vw;
        background-image: url(../img/top/cta_tel.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    #top .information .link_area .tell span{
        display: none;
    }
    #top .information .link_area .line{
        display: block;
        text-align: center;
        max-width: 42.66666666666667vw;
        width: 100%;
        padding: 3.7333333333333334vw 0 3.2vw;
        color: #fff;
        background-color: #05B52C;
        border-radius: 5px;
        box-shadow: none;
    }
    #top .information .link_area .line .note{
        font-size: 2.66666666666667vw;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0;
        padding: 0;
        margin: 0 0 1.333333333335vw;
        border: none;
    }
    #top .information .link_area .line .line-txt{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1.333333333333335vw;
        font-size: 4.8vw;
        font-weight: 800;
        letter-spacing: 0;
        color: #fff;
        margin: 0;
    }
    #top .information .link_area .line .line-txt::before{
        content: "";
        width: 4.533333333333333333vw;
        height: 4.2666666666666667vw;
        background-image: url(../img/top/cta_line.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    #top .information .youtube p{
        position: relative;
        font-size: 20px;
        font-weight: 800;
        text-align: center;
        letter-spacing: 0.05em;
        color: #fff;
        margin: 0 0 -15px;
        z-index: 2;
    }
    #top .information .youtube .youtube-facade{
        position: relative;
        padding: 30px 20px 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background-color: #000000;
    }
    #top .information .youtube .youtube-facade img{
        display: block;
        width: 100%;
    }
    #top .information .youtube .youtube-facade iframe{
        display: block;
        width: 100%;
        height: 250px;
    }
    #top .information .youtube .youtube-facade .corner{
        position: absolute;
        width: 10px;
        height: 10px;
        overflow: hidden;
    }
    #top .information .youtube .youtube-facade .corner-top-left{
        top: 0;
        left: 0;
        border-top: 1px solid #fff;
        border-left: 1px solid #fff;
    }
    #top .information .youtube .youtube-facade .corner-top-right{
        top: 0;
        right: 0;
        border-top: 1px solid #fff;
        border-right: 1px solid #fff;
    }
    #top .information .youtube .youtube-facade .corner-bottom-left{
        bottom: 0;
        left: 0;
        border-bottom: 1px solid #fff;
        border-left: 1px solid #fff;
    }
    #top .information .youtube .youtube-facade .corner-bottom-right{
        bottom: 0;
        right: 0;
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff;
    }
    #top .information .youtube .youtube-facade .youtube-facade__play{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        display: block;
        max-width: 50px;
        width: 100%;
        cursor: pointer;
        transition: all .3s;
    }
    #top .information .youtube .youtube-facade .youtube-facade__play:hover{
        opacity: 0.9;
    }
}


#top .pickup{
    padding: 90px 0 115px;
    background-color: #EFEFEF;
}
#top .pickup .ttl_area{
    text-align: center;
    margin: 0 auto 40px;
}
#top .pickup .ttl_area .label{
    position: relative;
    display: block;
    font-size: 23px;
    font-family: "Manrope", sans-serif;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.87;
    color: #000000;
    max-width: 230px;
    width: 100%;
    margin: 0 auto 10px;
}
#top .pickup .ttl_area .label .corner{
    position: absolute;
    width: 12px;
    height: 12px;
    overflow: hidden;
}
#top .pickup .ttl_area .label .corner-topleft{
    top: 0;
    left: 0;
    border-top: 2px solid #EC572E;
    border-left: 2px solid #EC572E;
}
#top .pickup .ttl_area .label .corner-bottomright{
    bottom: 0;
    right: 0;
    border-bottom: 2px solid #EC572E;
    border-right: 2px solid #EC572E;
}
#top .pickup .ttl_area h2{
    font-size: 65px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0;
    line-height: 1.54;
    color: #000000;
    margin: 0 0 30px;
}
#top .pickup .ttl_area h2 span{
    color: #EC572E;
}
#top .pickup .ttl_area .note{
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0;
    margin: 0 auto 50px;
    color: #08080B;
}
#top .pickup .ttl_area .note span{
    color: #EC572E;
}
#top .pickup .ttl_area .span{
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    margin: 0;
    color: #08080B;
}
#top .pickup .ctt{
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 0 60px;
}
#top .pickup .ctt .item{
    display: block;
    padding: 15px 15px 18px;
    max-width: 285px;
    width: 100%;
    color: #000000;
    background-color: #fff;
    border: 1px solid #000000;
}
#top .pickup .ctt .item:nth-of-type(1){
    transition-delay: 0.05s;
}
#top .pickup .ctt .item:nth-of-type(2){
    transition-delay: 0.20s;
}
#top .pickup .ctt .item:nth-of-type(3){
    transition-delay: 0.35s;
}
#top .pickup .ctt .item:nth-of-type(4){
    transition-delay: 0.50s;
}
#top .pickup .ctt .item .img{
    position: relative;
    width: 253px;
    height: 205px;
    overflow: hidden;
    margin: 0 auto 20px;
}
#top .pickup .ctt .item .img img{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: block;
    width: 100%;
    height: auto;
}
#top .pickup .ctt .item .label{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 13px;
}
#top .pickup .ctt .item .label .maker{
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    color: #000000;
    margin: 0;
}
#top .pickup .ctt .item .label .state{
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.42;
    padding: 3px 11px 4px;
    margin: 0;
    color: #000;
    border: 1px solid #000;
}
#top .pickup .ctt .item .ttl{
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.54;
    margin: 0 0 25px;
    color: #000000;
}
#top .pickup .ctt .item .price-area{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 15px;
    margin: 0 0 15px;
    color: #EC572E;
}
#top .pickup .ctt .item .price-area::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-image: repeating-linear-gradient(to right, #111111 0px, #111111 1px, transparent 1px, transparent 5px);
}
#top .pickup .ctt .item .price-area .span{
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    margin: 0;
}
#top .pickup .ctt .item .price-area .price{
    font-size: 28px;
    font-family: "Heebo", sans-serif;
    font-weight: bold;
    letter-spacing: 0;
    margin: 0;
}
#top .pickup .ctt .item .note{
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0;
    margin: 0;
    color: #191919;
}
#top .pickup .rest-note{
    display: block;
    text-align: center;
    margin: 0 auto;
}
#top .pickup .rest-note p{
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0;
    line-height: 1.4;
    margin: 0 auto 45px;
    color: #08080B;
}
#top .pickup .rest-note .btn a{
    position: relative;
    display: block;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0;
    text-decoration: none;
    max-width: 500px;
    width: 100%;
    padding: 21px 0 24px;
    margin: 0 auto;
    color: #fff;
    background-color: #EC572E;
    border-radius: 100vw;
    transition: all .3s;
}
#top .pickup .rest-note .btn a:hover{
    opacity: 0.7;
}
#top .pickup .rest-note .btn a::before{
    content: "";
    width: 25px;
    height: 25px;
    background-image: url(../img/top/btn_arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
#top .pickup .add-rest{
    padding-top: 80px;
    margin-top: 80px;
    border-top: 2px solid #000000;
}
#top .pickup .add-rest .add-ttl{
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0;
    line-height: 1.34;
    margin: 0 0 40px;
    color: #000000;
}
#top .pickup .add-rest .add-ttl span{
    color: #EC572E;
}
#top .pickup .add-rest .note{
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.01em;
    line-height: 1.6;
    margin: 0 0 50px;
    color: #000000;
}
@media only screen and (max-width: 768px) {
    #top .pickup{
        padding: 16vw 0;
        background-color: #EFEFEF;
    }
    #top .pickup .ttl_area{
        text-align: center;
        margin: 0 auto 8vw;
    }
    #top .pickup .ttl_area .label{
        position: relative;
        display: block;
        font-size: 3.73333333333333334vw;
        font-family: "Manrope", sans-serif;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0.01em;
        line-height: 1.87;
        color: #000000;
        max-width: 37.333334vw;
        width: 100%;
        margin: 0 auto 10px;
    }
    #top .pickup .ttl_area .label .corner{
        position: absolute;
        width: 2.133333333333336vw;
        height: 2.133333333333336vw;
        overflow: hidden;
    }
    #top .pickup .ttl_area .label .corner-topleft{
        top: 0;
        left: 0;
        border-top: 1px solid #EC572E;
        border-left: 1px solid #EC572E;
    }
    #top .pickup .ttl_area .label .corner-bottomright{
        bottom: 0;
        right: 0;
        border-bottom: 1px solid #EC572E;
        border-right: 1px solid #EC572E;
    }
    #top .pickup .ttl_area h2{
        font-size: 6.9333333333333333vw;
        font-weight: 800;
        text-align: center;
        letter-spacing: 0;
        line-height: 1.54;
        color: #000000;
        margin: 0 0 5.3333333333333333334vw;
    }
    #top .pickup .ttl_area h2 span{
        color: #EC572E;
    }
    #top .pickup .ttl_area .note{
        font-size: 4.26666666666667vw;
        font-weight: 600;
        text-align: center;
        letter-spacing: 0;
        line-height: 1.47;
        margin: 0 auto 8vw;
        color: #08080B;
    }
    #top .pickup .ttl_area .note span{
        color: #EC572E;
    }
    #top .pickup .ttl_area .span{
        font-size: 3.2vw;
        font-weight: 500;
        text-align: center;
        margin: 0;
        color: #08080B;
    }
    #top .pickup .ctt{
        display: flex;
        align-items: stretch;
        flex-wrap: wrap;
        gap: 2.666666666666666667vw;
        margin: 0 0 10.66666666666668vw;
    }
    #top .pickup .ctt .item{
        display: block;
        padding: 2.6666666666666667vw 2.6666666666666667vw 4vw;
        max-width: 42.666666666666666667vw;
        width: 100%;
        color: #000000;
        background-color: #fff;
        border: 1px solid #000000;
    }
    #top .pickup .ctt .item .img{
        width: 36.8vw;
        height: 29.333333333333332vw;
        margin: 0 auto 4vw;
    }
    #top .pickup .ctt .item .label{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 0 2.66666666666666666667vw;
    }
    #top .pickup .ctt .item .label .maker{
        font-size: 3.2vw;
        font-weight: 500;
        letter-spacing: 0;
        color: #000000;
        margin: 0;
    }
    #top .pickup .ctt .item .label .state{
        display: inline-block;
        font-size: 2.93333333333333333333vw;
        font-weight: 600;
        letter-spacing: 0;
        line-height: 1.42;
        padding: 0.53333333333333333vw 2.66666666666667vw 0.6666666666666667vw;
        margin: 0;
        color: #000;
        border: 1px solid #000;
    }
    #top .pickup .ctt .item .ttl{
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 4.266666666666666667vw;
        font-weight: 600;
        letter-spacing: 0;
        line-height: 1.54;
        margin: 0 0 5.33333333333333333334vw;
        color: #000000;
    }
    #top .pickup .ctt .item .price-area{
        position: relative;
        display: block;
        padding: 0 0 3.2vw;
        margin: 0 0 3.2vw;
        color: #EC572E;
    }
    #top .pickup .ctt .item .price-area::before{
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        background-image: repeating-linear-gradient(to right, #111111 0px, #111111 1px, transparent 1px, transparent 5px);
    }
    #top .pickup .ctt .item .price-area .span{
        font-size: 4vw;
        font-weight: 600;
        letter-spacing: 0;
        margin: 0;
    }
    #top .pickup .ctt .item .price-area .price{
        font-size: 6.4vw;
        font-family: "Heebo", sans-serif;
        font-weight: bold;
        letter-spacing: 0;
        margin: 0;
    }
    #top .pickup .ctt .item .note{
        font-size: 3.2vw;
        font-weight: 500;
        text-align: center;
        letter-spacing: 0;
        margin: 0;
        color: #191919;
    }
    #top .pickup .rest-note{
        display: block;
        text-align: center;
        margin: 0 auto;
    }
    #top .pickup .rest-note p{
        font-size: 4.26666667vw;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0;
        line-height: 1.4;
        margin: 0 auto 8vw;
        color: #08080B;
    }
    #top .pickup .rest-note .btn a{
        position: relative;
        display: block;
        font-size: 4.2666666666666666667vw;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0;
        text-decoration: none;
        max-width: 80vw;
        width: 100%;
        padding: 4vw 0 4.8vw;
        margin: 0 auto;
        color: #fff;
        background-color: #EC572E;
        border-radius: 100vw;
        transition: all .3s;
    }
    #top .pickup .rest-note .btn a:hover{
        opacity: 0.7;
    }
    #top .pickup .rest-note .btn a::before{
        content: "";
        width: 5.33333333333334vw;
        height: 5.33333333333334vw;
        background-image: url(../img/top/btn_arrow.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        top: 50%;
        right: 4vw;
        transform: translateY(-50%);
    }
    #top .pickup .add-rest{
        padding-top: 10.6666666666666668vw !important;
        margin-top: 10.6666666666666668vw !important;
        border-top: 1px solid #000000;
    }
    #top .pickup .add-rest .add-ttl{
        font-size: 4.8vw;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0;
        line-height: 1.34;
        margin: 0 0 5.333333333333334vw;
        color: #000000;
    }
    #top .pickup .add-rest .add-ttl span{
        color: #EC572E;
    }
    #top .pickup .add-rest .note{
        font-size: 3.2vw;
        font-weight: 500;
        text-align: center;
        letter-spacing: 0.01em;
        line-height: 1.6;
        margin: 0 0 8vw;
        color: #000000;
    }
}


#top .kind{
    text-align: center;
    padding: 0 0 65px;
    color: #fff;
    background-color: #191919;
}
#top .kind .fukidashi{
    display: inline-block;
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0;
    line-height: 1.63;
    padding: 5px 24px 25px;
    margin: -35px auto 30px;
    color: #000000;
    background-image: url(../img/top/fukidashi_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#top .kind .sub-ttl{
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0;
    line-height: 1.66;
    margin: 0 auto 30px;
    color: #fff;
}
#top .kind .ctt{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 14px;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto 35px;
}
#top .kind .ctt .item{
    display: block;
    max-width: 208px;
    width: 100%;
    margin: 0;
}
#top .kind .ctt .item img{
    display: block;
    width: 100%;
    height: auto;
}
#top .kind .note{
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0;
    color: #fff;
}
@media only screen and (max-width: 768px) {
    #top .kind{
        text-align: center;
        padding: 0 0 16vw;
        color: #fff;
        background-color: #191919;
    }
    #top .kind .fukidashi{
        position: relative;
        display: inline-block;
        font-size: 4vw;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0;
        line-height: 1.63;
        padding: 1.3333333333335vw 2.666666666666667vw;
        margin: -35px auto 30px;
        color: #000000;
        background: none;
        background-color: #FFCE00;
        border: 2px solid #000000;
        z-index: 3;
    }
    #top .kind .fukidashi::before{
        content: "";
        position: absolute;
        left: 50%;
        bottom: -3.2vw;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 2.66666666666667vw solid transparent;
        border-right: 2.66666666666667vw solid transparent;
        border-top: 4vw solid #ffcc00;
        z-index: 2;
    }
    #top .kind .fukidashi::after{
        content: "";
        position: absolute;
        left: 50%;
        bottom: -4.266666666666666667vw;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 2.9333333333333333vw solid transparent;
        border-right: 2.9333333333333333vw solid transparent;
        border-top: 4.26666666666667vw solid #000;
        z-index: 1;
    }
    #top .kind .sub-ttl{
        font-size: 4.8vw;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0;
        line-height: 1.66;
        margin: 0 -1.3333333335vw 8vw;
        color: #fff;
    }
    #top .kind .ctt{
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        flex-wrap: wrap;
        gap: 2.666666666666666667vw;
        max-width: 88vw;
        width: 100%;
        margin: 0 auto 8vw;
    }
    #top .kind .ctt .item{
        display: block;
        max-width: 42.26666666666666667vw;
        width: 100%;
        margin: 0;
    }
    #top .kind .ctt .item img{
        display: block;
        width: 100%;
    }
    #top .kind .note{
        font-size: 4vw;
        font-weight: 500;
        text-align: center;
        letter-spacing: 0.01em;
        line-height: 1.46;
        color: #fff;
        margin: 0;
    }  
}


#top .reazon{
    padding: 100px 0;
    background-color: #EFEFEF;
}
#top .reazon .inner{
    max-width: none;
}
#top .reazon .ttl_area{
    text-align: center;
    margin: 0 auto 40px;
}
#top .reazon .ttl_area .label{
    position: relative;
    display: block;
    font-size: 23px;
    font-family: "Manrope", sans-serif;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.87;
    color: #000000;
    max-width: 230px;
    width: 100%;
    margin: 0 auto 10px;
}
#top .reazon .ttl_area .label .corner{
    position: absolute;
    width: 12px;
    height: 12px;
    overflow: hidden;
}
#top .reazon .ttl_area .label .corner-topleft{
    top: 0;
    left: 0;
    border-top: 2px solid #EC572E;
    border-left: 2px solid #EC572E;
}
#top .reazon .ttl_area .label .corner-bottomright{
    bottom: 0;
    right: 0;
    border-bottom: 2px solid #EC572E;
    border-right: 2px solid #EC572E;
}
#top .reazon .ttl_area h2{
    font-size: 65px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0;
    line-height: 1.54;
    color: #000000;
    margin: 0 0 45px;
}
#top .reazon .ttl_area h2 span{
    color: #EC572E;
}
#top .reazon .ttl_area .add-ttl{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 0 auto;
}
#top .reazon .ttl_area .add-ttl .label{
    max-width: none;
    width: auto;
    font-size: 42px;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    padding: 3px 14px 6px;
    margin: 0;
    color: #000000;
    background-color: #fff;
    border: 3px solid #000000;
}
#top .reazon .ttl_area .add-ttl p{
    font-size: 55px;
    font-weight: 800;
    letter-spacing: 0;
    margin: 0;
    color: #000000;
}
#top .reazon .ttl_area .add-ttl p span{
    color: #EC572E;
}
#top .reazon .ctt{
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    margin: 0 auto;
}
#top .reazon .ctt .item{
    display: block;
    max-width: 380px;
    width: 100%;
    padding: 20px 20px 40px;
    color: #000000;
    background-color: #fff;
    border: 1px solid #000000;
}
#top .reazon .ctt .item img{
    display: block;
    width: 100%;
    margin: 0 0 30px;
}
#top .reazon .ctt .item .ttl{
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0;
    line-height: 1.4;
    padding: 0 0 23px;
    margin: 0 -6px 23px;
    border-bottom: 1px solid #EBEBEB;
    color: #000000;
}
#top .reazon .ctt .item .ttl span{
    color: #EC572E;
}
#top .reazon .ctt .item .note{
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.44;
    margin: 0;
    color: #000000;
}
@media only screen and (max-width: 768px) {
    #top .reazon{
        padding: 13.33333333333335vw 0 16vw;
        background-color: #EFEFEF;
    }
    #top .reazon .inner{
        max-width: none;
    }
    #top .reazon .ttl_area{
        text-align: center;
        margin: 0 auto 8vw;
    }
    #top .reazon .ttl_area .label{
        position: relative;
        display: block;
        font-size: 3.73333333333333334vw;
        font-family: "Manrope", sans-serif;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0.01em;
        line-height: 1.87;
        color: #000000;
        max-width: 37.333334vw;
        width: 100%;
        margin: 0 auto 2.66666666666667vw;
    }
    #top .reazon .ttl_area .label .corner{
        position: absolute;
        width: 2.133333333333336vw;
        height: 2.133333333333336vw;
        overflow: hidden;
    }
    #top .reazon .ttl_area .label .corner-topleft{
        top: 0;
        left: 0;
        border-top: 1px solid #EC572E;
        border-left: 1px solid #EC572E;
    }
    #top .reazon .ttl_area .label .corner-bottomright{
        bottom: 0;
        right: 0;
        border-bottom: 1px solid #EC572E;
        border-right: 1px solid #EC572E;
    }
    #top .reazon .ttl_area h2{
        font-size: 6.66666666666667vw;
        font-weight: 800;
        text-align: center;
        letter-spacing: 0;
        line-height: 1.54;
        color: #000000;
        margin: 0 0 5.3333333333333333334vw;
    }
    #top .reazon .ttl_area h2 span{
        color: #EC572E;
    }
    #top .reazon .ttl_area .add-ttl{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2.66666666666667vw;
        margin: 0 auto;
    }
    #top .reazon .ttl_area .add-ttl .label{
        flex-shrink: 0;
        max-width: none;
        width: auto;
        font-size: 5.333333333333333334vw;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 600;
        letter-spacing: 0;
        line-height: 1;
        padding: 1.066666666666667vw 2.33333333333333336vw;
        margin: 0;
        color: #000000;
        background-color: #fff;
        border: 2px solid #000000;
    }
    #top .reazon .ttl_area .add-ttl p{
        font-size: 5.3333333333333334vw;
        font-weight: 800;
        letter-spacing: 0;
        line-height: 1.27;
        margin: 0;
        color: #000000;
    }
    #top .reazon .ttl_area .add-ttl p span{
        color: #EC572E;
    }
    #top .reazon .ctt{
        display: block;
        margin: 0 auto;
    }
    #top .reazon .ctt .item{
        display: block;
        max-width: 85.33333333333334vw;
        width: 100%;
        padding: 4vw 4vw 5.333333333334vw;
        margin: 0 auto 5.3333333333334vw;
        color: #000000;
        background-color: #fff;
        border: 1px solid #000000;
    }
    #top .reazon .ctt .item:last-of-type{
        margin: 0 auto;
    }
    #top .reazon .ctt .item img{
        display: block;
        width: 100%;
        margin: 0 0 5.333333333333334vw;
    }
    #top .reazon .ctt .item .ttl{
        font-size: 5.333333333333334vw;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0;
        line-height: 1.4;
        padding: 0 0 3.2vw;  
        margin: 0 0 3.2vw;
        border-bottom: 1px solid #EBEBEB;
        color: #000000;
    }
    #top .reazon .ctt .item .ttl span{
        color: #EC572E;
    }
    #top .reazon .ctt .item .note{
        font-size: 3.7333333333333334vw;
        font-weight: 400;
        letter-spacing: 0.02em;
        line-height: 1.44;
        margin: 0;
        color: #000000;
    }
}


#top .assessment{
    text-align: center;
    padding: 85px 0 95px;
    color: #fff;
    background-color: #191919;
}
#top .assessment .label{
    display: inline-block;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.03em;
    padding: 0 0 10px;
    margin: 0 0 35px;
    border-bottom: 1px solid #fff;
}
#top .assessment .add-ttl{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 0 auto 45px;
}
#top .assessment .add-ttl .label{
    max-width: none;
    width: auto;
    font-size: 42px;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    padding: 3px 14px 6px;
    margin: 0;
    background-color: #191919;
    border: 3px solid #fff;
}
#top .assessment .add-ttl h2{
    font-size: 55px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.27;
    padding: 0 0 10px;
    margin: 0;
}
#top .assessment .add-ttl h2 span{
    color: #EC572E;
}
#top .assessment .ctt{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 -5px 30px;
}
#top .assessment .ctt .ass-p{
    display: block;
    max-width: 395px;
    width: 100%;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.03em;
    padding: 28px 0 27px;
    margin: 0;
    color: #Fff;
    background-color: #EC572E;
    clip-path: polygon(
        18px 0,
        calc(100% - 18px) 0,
        100% 18px,
        100% calc(100% - 18px),
        calc(100% - 18px) 100%,
        18px 100%,
        0 calc(100% - 18px),
        0 18px
    );
}
#top .assessment .note{
    font-size: 43px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0;
    margin: 0 0 28px;
    color: #fff;
}
#top .assessment .note span{
    color: #EC572E;
}
#top .assessment .flex-ctt{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 55px;
    margin: 0;
}
#top .assessment .flex-ctt img{
    display: block;
    max-width: 330px;
    width: 100%;
    flex-shrink: 0;
}
#top .assessment .flex-ctt p{
    position: relative;
    font-size: 23px;
    font-weight: 600;
    letter-spacing: 0;
    text-align: center;
    color: #fff;
    background-color: #414141;
    padding: 38px 0;
    flex: 1;
}
#top .assessment .flex-ctt p::before{
    content: "";
    position: absolute;
    top: 50%;
    left: -29px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 30px solid #414141;
}
@media only screen and (max-width: 768px) {
    #top .assessment{
        text-align: center;
        padding: 13.333333333333335vw 0 16vw;
        color: #fff;
        background-color: #191919;
    }
    #top .assessment .label{
        display: inline-block;
        font-size: 4vw;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0.03em;
        padding: 0 0 1.66666666666667vw;
        margin: 0 0 5.3333333333333333334vw;
        border-bottom: 1px solid #fff;
    }
    #top .assessment .add-ttl{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2.66666666666666667vw;
        margin: 0 auto 8vw;
    }
    #top .assessment .add-ttl .label{
        flex-shrink: 0;
        max-width: none;
        width: auto;
        font-size: 5.333333333333333334vw;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 600;
        letter-spacing: 0;
        line-height: 1;
        padding: 1.066666666666667vw 2.33333333333333336vw;
        margin: 0;
        background-color: #191919;
        border: 2px solid #fff;
    }
    #top .assessment .add-ttl h2{
        font-size: 5.866666666666666vw;
        font-weight: 800;
        letter-spacing: 0;
        text-align: left;
        line-height: 1.27;
        margin: 0;
        padding: 0;
    }
    #top .assessment .add-ttl h2 span{
        color: #EC572E;
    }
    #top .assessment .ctt{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 2.666666666666667vw;
        margin: 0 0 8vw;
    }
    #top .assessment .ctt .ass-p{
        display: block;
        max-width: 42.666666666666666667vw;
        width: 100%;
        font-size: 4.2666666666666667vw;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0.03em;
        padding: 4vw 0 3.73333333333333334vw;
        margin: 0;
        color: #Fff;
        background-color: #EC572E;
        clip-path: polygon(
            10px 0,
            calc(100% - 10px) 0,
            100% 10px,
            100% calc(100% - 10px),
            calc(100% - 10px) 100%,
            10px 100%,
            0 calc(100% - 10px),
            0 10px
        );
    }
    #top .assessment .note{
        font-size: 5.3333333333333334vw;
        font-weight: 800;
        text-align: center;
        letter-spacing: 0;
        margin: 0 0 5.3333333333333334vw;
        color: #fff;
    }
    #top .assessment .note span{
        color: #EC572E;
    }
    #top .assessment .flex-ctt{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 4vw;
        margin: 0;
    }
    #top .assessment .flex-ctt img{
        display: block;
        max-width: 25.333333333333336vw;
        width: 100%;
        flex-shrink: 0;
    }
    #top .assessment .flex-ctt p{
        flex: 1;
        position: relative;
        font-size: 3.2vw;
        font-weight: 600;
        letter-spacing: 0;
        text-align: left;
        color: #fff;
        background-color: #414141;
        padding: 3.2vw 2.66666666666667vw;
        margin: 0;
        z-index: 2;
    }
    #top .assessment .flex-ctt p::before{
        content: "";
        position: absolute;
        z-index: 1;
        top: 50%;
        left: -12px;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-right: 20px solid #414141;
    }
}


#top .comparison{
    padding: 105px 0 120px;
    background-color: #EFEFEF;
}
#top .comparison .ttl_area{
    text-align: center;
    margin: 0 auto 40px;
}
#top .comparison .ttl_area .label{
    position: relative;
    display: block;
    font-size: 23px;
    font-family: "Manrope", sans-serif;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.87;
    color: #000000;
    max-width: 230px;
    width: 100%;
    margin: 0 auto 30px;
}
#top .comparison .ttl_area .label .corner{
    position: absolute;
    width: 12px;
    height: 12px;
    overflow: hidden;
}
#top .comparison .ttl_area .label .corner-topleft{
    top: 0;
    left: 0;
    border-top: 2px solid #EC572E;
    border-left: 2px solid #EC572E;
}
#top .comparison .ttl_area .label .corner-bottomright{
    bottom: 0;
    right: 0;
    border-bottom: 2px solid #EC572E;
    border-right: 2px solid #EC572E;
}
#top .comparison .ttl_area .add-ttl{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 0 auto;
}
#top .comparison .ttl_area .add-ttl .label{
    max-width: none;
    width: auto;
    font-size: 42px;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    padding: 3px 14px 6px;
    margin: 0;
    color: #000000;
    background-color: #fff;
    border: 3px solid #000000;
}
#top .comparison .ttl_area .add-ttl h2{
    font-size: 55px;
    font-weight: 800;
    letter-spacing: 0;
    padding: 0 0 10px;
    margin: 0;
    color: #000000;
}
#top .comparison .ttl_area .add-ttl h2 span{
    color: #EC572E;
}
#top .comparison .fukidashi{
    position: relative;
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0;
    line-height: 1.43;
    max-width: 780px;
    width: 100%;
    padding: 12px 30px 16px;
    margin: 0 auto 55px;
    color: #fff;
    background-color: #C00614;
}
#top .comparison .fukidashi::before{
    content: "";
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 19px solid #C00614;
}
#top .comparison .ctt{
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 auto 60px;
}
#top .comparison .ctt .item{
    display: block;
    max-width: 590px;
    width: 100%;
}
#top .comparison .ctt .item .ttl{
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.44;
    padding: 20px;
    margin: 0;
    color: #fff;
    background-color: #000000;
    border: 1px solid #464646;
}
#top .comparison .ctt .item .item-flex{
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px 20px 22px;
    color: #fff;
    background-color: #191919;
    border: 1px solid #000000;
    border-top: none;
}
#top .comparison .ctt .item .item-flex img{
    display: block;
    max-width: 220px;
    width: 100%;
    flex-shrink: 0;
}
#top .comparison .ctt .item .item-flex .txt{
    flex: 1;
}
#top .comparison .ctt .item .item-flex .txt dl{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 12px;
}
#top .comparison .ctt .item .item-flex .txt dl dt{
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
}
#top .comparison .ctt .item .item-flex .txt dl dd{
    font-size: 23px;
    font-family: "Heebo", sans-serif;
    font-weight: 600;
    letter-spacing: 0;
    margin: 0;
}
#top .comparison .ctt .item .item-flex .txt dl.last-dl {
    margin: 20px 0 0;
}
#top .comparison .ctt .item .item-flex .txt dl.last-dl dt{
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0;
    color: #EC572E;
}
#top .comparison .ctt .item .item-flex .txt dl.last-dl dt::before{
    content: "";
    width: 22px;
    height: 20px;
    background-image: url(../img/top/dl-icon.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#top .comparison .ctt .item .item-flex .txt dl.last-dl dd{
    font-size: 30px;
    font-family: "Heebo", sans-serif;
    font-weight: 700;
    letter-spacing: 0;
    color: #EC572E;
}
#top .comparison .btn a{
    position: relative;
    display: block;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0;
    text-decoration: none;
    max-width: 500px;
    width: 100%;
    padding: 21px 0 24px;
    margin: 0 auto 65px;
    color: #fff;
    background-color: #EC572E;
    border-radius: 100vw;
    transition: all .3s;
}
#top .comparison .btn a:hover{
    opacity: 0.7;
}
#top .comparison .btn a::before{
    content: "";
    width: 25px;
    height: 25px;
    background-image: url(../img/top/btn_arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
#top .comparison .bottom-note{
    padding: 30px 50px 40px;
    background-color: #fff;
    border: 1px solid #000000;
}
#top .comparison .bottom-note .sub-ttl{
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0;
    padding: 0 0 24px;
    margin: 0 0 30px;
    color: #000000;
    border-bottom: 1px solid #000000;
}
#top .comparison .bottom-note .sub-ttl span{
    color: #EC572E;
}
#top .comparison .bottom-note .note{
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.6;
    margin: 0;
    color: #000000;
}
#top .comparison .bottom-note .note span{
    font-weight: 600;
    color: #EC572E;
}
@media only screen and (max-width: 768px) {
    #top .comparison{
        padding: 13.33333333333335vw 0 16vw;
        background-color: #EFEFEF;
    }
    #top .comparison .ttl_area{
        text-align: center;
        margin: 0 auto 8vw;
    }
    #top .comparison .ttl_area .label{
        position: relative;
        display: block;
        font-size: 3.73333333333333334vw;
        font-family: "Manrope", sans-serif;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0.01em;
        line-height: 1.87;
        color: #000000;
        max-width: 37.333334vw;
        width: 100%;
        margin: 0 auto 2.666666666666667vw;
    }
    #top .comparison .ttl_area .label .corner{
        position: absolute;
        width: 2.133333333333336vw;
        height: 2.133333333333336vw;
        overflow: hidden;
    }
    #top .comparison .ttl_area .label .corner-topleft{
        top: 0;
        left: 0;
        border-top: 1px solid #EC572E;
        border-left: 1px solid #EC572E;
    }
    #top .comparison .ttl_area .label .corner-bottomright{
        bottom: 0;
        right: 0;
        border-bottom: 1px solid #EC572E;
        border-right: 1px solid #EC572E;
    }
    #top .comparison .ttl_area .add-ttl{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2.66666666666667vw;
        margin: 0 auto;
    }
    #top .comparison .ttl_area .add-ttl .label{
        flex-shrink: 0;
        max-width: none;
        width: auto;
        font-size: 5.333333333333333334vw;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 600;
        letter-spacing: 0;
        line-height: 1;
        padding: 1.066666666666667vw 2.33333333333333336vw;
        margin: 0;
        color: #000000;
        background-color: #fff;
        border: 2px solid #000000;
    }
    #top .comparison .ttl_area .add-ttl h2{
        font-size: 5.3333333333333334vw;
        font-weight: 800;
        letter-spacing: 0;
        text-align: left;
        line-height: 1.27;
        margin: 0;
        color: #000000;
    }
    #top .comparison .ttl_area .add-ttl h2 span{
        color: #EC572E;
    }
    #top .comparison .fukidashi{
        position: relative;
        font-size: 5.866666666666666vw;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0;
        line-height: 1.43;
        max-width: 80vw;
        width: 100%;
        padding: 2.6666666666667vw 6.666666666666667vw 3.2vw;
        margin: 0 auto 10.666666666666666668vw;
        color: #fff;
        background-color: #C00614;
    }
    #top .comparison .fukidashi::before{
        content: "";
        position: absolute;
        bottom: -3.733333333333333334vw;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 2.66666666666667vw solid transparent;
        border-right: 2.66666666666667vw solid transparent;
        border-top: 4vw solid #C00614;
    }
    #top .comparison .ctt{
        display: block;
        margin: 0 auto 10.66666666666668vw;
    }
    #top .comparison .ctt .item{
        display: block;
        max-width: none;
        width: 100%;
        margin: 0 0 5.33333333334vw;
    }
    #top .comparison .ctt .item:last-of-type{
        margin: 0;
    }
    #top .comparison .ctt .item .ttl{
        font-size: 4.53333333333333vw;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 1.44;
        padding: 2.6666666666666667vw;
        margin: 0;
        color: #fff;
        background-color: #000000;
        border: 1px solid #464646;
    }
    #top .comparison .ctt .item .item-flex{
        display: block;
        padding: 4vw;
        color: #fff;
        background-color: #191919;
        border: 1px solid #000000;
        border-top: none;
    }
    #top .comparison .ctt .item .item-flex img{
        display: block;
        max-width: none;
        width: 100%;
        margin: 0 0 8vw;
    }
    #top .comparison .ctt .item .item-flex .txt dl{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 0 3.2vw;
    }
    #top .comparison .ctt .item .item-flex .txt dl dt{
        font-size: 3.733333333333333334vw;
        font-weight: 500;
        letter-spacing: 0;
    }
    #top .comparison .ctt .item .item-flex .txt dl dd{
        font-size: 5.3333333333333333334vw;
        font-family: "Heebo", sans-serif;
        font-weight: 600;
        letter-spacing: 0;
        margin: 0;
    }
    #top .comparison .ctt .item .item-flex .txt dl.last-dl {
        margin: 5.333333333333334vw 0 0;
    }
    #top .comparison .ctt .item .item-flex .txt dl.last-dl dt{
        display: flex;
        align-items: center;
        gap: 1.333333333333335vw;
        font-size: 4vw;
        font-weight: 800;
        letter-spacing: 0;
        color: #EC572E;
    }
    #top .comparison .ctt .item .item-flex .txt dl.last-dl dt::before{
        content: "";
        width: 4.8vw;
        height: 4.26666666666666667vw;
        background-image: url(../img/top/dl-icon.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    #top .comparison .ctt .item .item-flex .txt dl.last-dl dd{
        font-size: 6.66666666666666667vw;
        font-family: "Heebo", sans-serif;
        font-weight: 700;
        letter-spacing: 0;
        color: #EC572E;
    }
    #top .comparison .btn a{
        position: relative;
        display: block;
        font-size: 4.8vw;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0;
        text-decoration: none;
        max-width: 80vw;
        width: 100%;
        padding: 4vw 0 4.8vw;
        margin: 0 auto 10.66666666668vw;
        color: #fff;
        background-color: #EC572E;
        border-radius: 100vw;
        transition: all .3s;
    }
    #top .comparison .btn a:hover{
        opacity: 0.7;
    }
    #top .comparison .btn a::before{
        content: "";
        width: 5.333333333333334vw;
        height: 5.333333333333334vw;
        background-image: url(../img/top/btn_arrow.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        top: 50%;
        right: 2.666666666666666667vw;
        transform: translateY(-50%);
    }
    #top .comparison .bottom-note{
        padding: 4vw;
        background-color: #fff;
        border: 1px solid #000000;
    }
    #top .comparison .bottom-note .sub-ttl{
        font-size: 4.8vw;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0;
        padding: 0 0 4vw;
        margin: 0 0 5.33333333333334vw;
        color: #000000;
        border-bottom: 1px solid #000000;
    }
    #top .comparison .bottom-note .sub-ttl span{
        color: #EC572E;
    }
    #top .comparison .bottom-note .note{
        font-size: 4.2666666666666667vw;
        font-weight: 400;
        letter-spacing: 0.02em;
        line-height: 1.6;
        margin: 0;
        color: #000000;
    }
    #top .comparison .bottom-note .note span{
        font-weight: 600;
        color: #EC572E;
    }
}


#top .professional{
    padding: 100px 0 140px;
    background-color: #E7E7E7;
}
#top .professional .ttl_area{
    text-align: center;
    margin: 0 auto 70px;
}
#top .professional .ttl_area .label{
    position: relative;
    display: block;
    font-size: 23px;
    font-family: "Manrope", sans-serif;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.87;
    color: #000000;
    max-width: 230px;
    width: 100%;
    margin: 0 auto 20px;
}
#top .professional .ttl_area .label .corner{
    position: absolute;
    width: 12px;
    height: 12px;
    overflow: hidden;
}
#top .professional .ttl_area .label .corner-topleft{
    top: 0;
    left: 0;
    border-top: 2px solid #EC572E;
    border-left: 2px solid #EC572E;
}
#top .professional .ttl_area .label .corner-bottomright{
    bottom: 0;
    right: 0;
    border-bottom: 2px solid #EC572E;
    border-right: 2px solid #EC572E;
}
#top .professional .ttl_area .add-ttl{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 0 auto 50px;
}
#top .professional .ttl_area .add-ttl .label{
    max-width: none;
    width: auto;
    font-size: 42px;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    padding: 3px 14px 6px;
    margin: 0;
    color: #000000;
    background-color: #fff;
    border: 3px solid #000000;
}
#top .professional .ttl_area .add-ttl h2{
    font-size: 55px;
    font-weight: 800;
    letter-spacing: 0;
    padding: 0 0 10px;
    margin: 0;
    color: #000000;
}
#top .professional .ttl_area .add-ttl h2 span{
    color: #EC572E;
}
#top .professional .ttl_area .note{
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0;
    margin: 0;
    color: #08080B;
}
#top .professional .ttl_area .note span{
    color: #EC572E;
}
#top .professional .ttl_area .span{
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    margin: 0;
    color: #08080B;
}
#top .professional .ctt{
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    background-color: #fff;
    border: 1px solid #000000;
}
#top .professional .ctt img{
    display: block;
    max-width: 460px;
    width: 100%;
    flex-shrink: 0;
}
#top .professional .ctt .txt{
    flex: 1;
}
#top .professional .ctt .txt h3{
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.43;
    margin: 0 0 35px;
    color: #000000;
}
#top .professional .ctt .txt h3 span{
    color: #EC572E;
}
#top .professional .ctt .txt p{
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.44;
    margin: 0;
    color: #000000;
}
@media only screen and (max-width: 768px) {
    #top .professional{
        padding: 13.33333333333335vw 0 16vw;
        background-color: #E7E7E7;
    }
    #top .professional .ttl_area{
        text-align: center;
        margin: 0 auto 8vw;
    }
    #top .professional .ttl_area .label{
        position: relative;
        display: block;
        font-size: 3.73333333333333334vw;
        font-family: "Manrope", sans-serif;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0.01em;
        line-height: 1.87;
        color: #000000;
        max-width: 37.333334vw;
        width: 100%;
        margin: 0 auto 2.66666666666667vw;
    }
    #top .professional .ttl_area .label .corner{
        position: absolute;
        width: 2.133333333333336vw;
        height: 2.133333333333336vw;
        overflow: hidden;
    }
    #top .professional .ttl_area .label .corner-topleft{
        top: 0;
        left: 0;
        border-top: 1px solid #EC572E;
        border-left: 1px solid #EC572E;
    }
    #top .professional .ttl_area .label .corner-bottomright{
        bottom: 0;
        right: 0;
        border-bottom: 1px solid #EC572E;
        border-right: 1px solid #EC572E;
    }
    #top .professional .ttl_area .add-ttl{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2.66666666666667vw;
        margin: 0 auto 8vw;
    }
    #top .professional .ttl_area .add-ttl .label{
        flex-shrink: 0;
        max-width: none;
        width: auto;
        font-size: 5.333333333333333334vw;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 600;
        letter-spacing: 0;
        line-height: 1;
        padding: 1.066666666666667vw 2.33333333333333336vw;
        margin: 0;
        color: #000000;
        background-color: #fff;
        border: 2px solid #000000;
    }
    #top .professional .ttl_area .add-ttl h2{
        font-size: 5.866666666666666vw;
        font-weight: 800;
        letter-spacing: 0;
        text-align: left;
        line-height: 1.27;
        margin: 0;
        color: #000000;
    }
    #top .professional .ttl_area .add-ttl h2 span{
        color: #EC572E;
    }
    #top .professional .ttl_area .note{
        font-size: 4.8vw;
        font-weight: 600;
        text-align: center;
        letter-spacing: 0;
        margin: 0 -1.333333333333335vw;
        color: #08080B;
    }
    #top .professional .ttl_area .note span{
        color: #EC572E;
    }
    #top .professional .ctt{
        display: block;
        padding: 4vw 4vw 5.33333333333334vw;
        background-color: #fff;
        border: 1px solid #000000;
    }
    #top .professional .ctt img{
        display: block;
        max-width: none;
        width: 100%;
        margin: 0 0 5.333333333333334vw;
    }
    #top .professional .ctt .txt{
        display: block;
        width: 100%;
    }
    #top .professional .ctt .txt h3{
        font-size: 5.333333333333334vw;
        font-weight: 700;
        letter-spacing: 0;
        line-height: 1.43;
        margin: 0 0 5.333333333333333334vw;
        color: #000000;
    }
    #top .professional .ctt .txt h3 span{
        color: #EC572E;
    }
    #top .professional .ctt .txt p{
        font-size: 4vw;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 1.44;
        margin: 0;
        color: #000000;
    }
}


#top .condition{
    padding: 100px 0 120px;
    background-color: #191919;
}
#top .condition .ttl_area{
    text-align: center;
    margin: 0 auto 50px;
}
#top .condition .ttl_area .label{
    position: relative;
    display: block;
    font-size: 23px;
    font-family: "Manrope", sans-serif;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.87;
    color: #fff;
    max-width: 230px;
    width: 100%;
    margin: 0 auto 20px;
}
#top .condition .ttl_area .label .corner{
    position: absolute;
    width: 12px;
    height: 12px;
    overflow: hidden;
}
#top .condition .ttl_area .label .corner-topleft{
    top: 0;
    left: 0;
    border-top: 2px solid #EC572E;
    border-left: 2px solid #EC572E;
}
#top .condition .ttl_area .label .corner-bottomright{
    bottom: 0;
    right: 0;
    border-bottom: 2px solid #EC572E;
    border-right: 2px solid #EC572E;
}
#top .condition .ttl_area .add-ttl{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 0 auto 50px;
}
#top .condition .ttl_area .add-ttl .label{
    max-width: none;
    width: auto;
    font-size: 42px;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    padding: 3px 14px 6px;
    margin: 0;
    color: #fff;
    border: 3px solid #fff;
}
#top .condition .ttl_area .add-ttl h2{
    font-size: 55px;
    font-weight: 800;
    letter-spacing: 0;
    padding: 0 0 10px;
    margin: 0;
    color: #fff;
}
#top .condition .ttl_area .add-ttl h2 span{
    color: #EC572E;
}
#top .condition .ttl_area .note{
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0;
    margin: 0;
    color: #fff;
}
#top .condition .fukidashi{
    position: relative;
    font-size: 33px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0;
    max-width: 500px;
    width: 100%;
    padding: 14px 15px 17px;
    margin: 0 auto 55px;
    color: #191919;
    background-color: #FFCE00;
}
#top .condition .fukidashi::before{
    content: "";
    position: absolute;
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 19px solid #ffcc00;
}
#top .condition .ctt{
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    margin: 0 0 60px;
}
#top .condition .ctt .item{
    position: relative;
    padding: 20px 20px 40px;
    max-width: 380px;
    width: 100%;
    color: #fff;
    background-color: #121212;
    border: 1px solid #FFFFFF33;
}
#top .condition .ctt .item .corner{
    position: absolute;
    width: 10px;
    height: 10px;
    overflow: hidden;
}
#top .condition .ctt .item .corner-topleft{
    top: 0;
    left: 0;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
}
#top .condition .ctt .item .corner-bottomright{
    bottom: 0;
    right: 0;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
}
#top .condition .ctt .item img{
    display: block;
    width: 100%;
    margin: 0 0 30px;
}
#top .condition .ctt .item p{
    display: block;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.03em;
    line-height: 1.5;
    margin: 0;
    color: #fff;
}
#top .condition .txt{
    margin: 0 auto 60px;
}
#top .condition .txt p{
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0;
    color: #fff;
    margin: 0 0 30px;
}
#top .condition .txt p span{
    color: #EC572E;
}
#top .condition .txt>span{
    display: block;
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0;
    color: #fff;
}
#top .condition .btn a{
    position: relative;
    display: block;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0;
    text-decoration: none;
    max-width: 500px;
    width: 100%;
    padding: 21px 0 24px;
    margin: 0 auto;
    color: #fff;
    background-color: #EC572E;
    border-radius: 100vw;
    transition: all .3s;
}
#top .condition .btn a:hover{
    opacity: 0.7;
}
#top .condition .btn a::before{
    content: "";
    width: 25px;
    height: 25px;
    background-image: url(../img/top/btn_arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
    #top .condition{
        padding: 13.33333333333335vw 0 16vw;
        background-color: #191919;
    }
    #top .condition .ttl_area{
        text-align: center;
        margin: 0 auto 8vw;
    }
    #top .condition .ttl_area .label{
        position: relative;
        display: block;
        font-size: 3.73333333333333334vw;
        font-family: "Manrope", sans-serif;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0.01em;
        line-height: 1.87;
        color: #fff;
        max-width: 37.333334vw;
        width: 100%;
        margin: 0 auto 2.66666666666667vw;
    }
    #top .condition .ttl_area .label .corner{
        position: absolute;
        width: 2.133333333333336vw;
        height: 2.133333333333336vw;
        overflow: hidden;
    }
    #top .condition .ttl_area .label .corner-topleft{
        top: 0;
        left: 0;
        border-top: 1px solid #EC572E;
        border-left: 1px solid #EC572E;
    }
    #top .condition .ttl_area .label .corner-bottomright{
        bottom: 0;
        right: 0;
        border-bottom: 1px solid #EC572E;
        border-right: 1px solid #EC572E;
    }
    #top .condition .ttl_area .add-ttl{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2.66666666666667vw;
        margin: 0 auto 8vw;
    }
    #top .condition .ttl_area .add-ttl .label{
        flex-shrink: 0;
        max-width: none;
        width: auto;
        font-size: 5.333333333333333334vw;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 600;
        letter-spacing: 0;
        line-height: 1;
        padding: 1.066666666666667vw 2.33333333333333336vw;
        margin: 0;
        color: #fff;
        border: 2px solid #fff;
    }
    #top .condition .ttl_area .add-ttl h2{
        font-size: 5.866666666666666vw;
        font-weight: 800;
        letter-spacing: 0;
        text-align: left;
        line-height: 1.27;
        margin: 0;
        color: #fff;
    }
    #top .condition .ttl_area .add-ttl h2 span{
        color: #EC572E;
    }
    #top .condition .ttl_area .note{
        font-size: 4.2666666666667vw;
        font-weight: 600;
        text-align: center;
        letter-spacing: 0;
        margin: 0;
        color: #fff;
    }
    #top .condition .fukidashi{
        position: relative;
        font-size: 5.333333333333333334vw;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0;
        max-width: none;
        width: 100%;
        padding: 2.666666667vw;
        margin: 0 auto 10.666668vw;
        color: #191919;
        background-color: #FFCE00;
    }
    #top .condition .fukidashi::before{
        content: "";
        position: absolute;
        left: 50%;
        bottom: -3.7333333333333334vw;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 2.666666666666667vw solid transparent;
        border-right: 2.666666666666667vw solid transparent;
        border-top: 4vw solid #ffcc00;
    }
    #top .condition .ctt{
        display: block;
        margin: 0 0 10.6666666666666666668vw;
    }
    #top .condition .ctt .item{
        position: relative;
        padding: 4vw 4vw 5.33333333333333334vw;
        margin: 0 auto 6.6666666666667vw;
        max-width: 85.333333333333333333334vw;
        width: 100%;
        color: #fff;
        background-color: #121212;
        border: 1px solid #FFFFFF33;
    }
    #top .condition .ctt .item:last-of-type{
        margin: 0 auto;
    }
    #top .condition .ctt .item .corner{
        position: absolute;
        width: 2.133333333333336vw;
        height: 2.133333333333336vw;
        overflow: hidden;
    }
    #top .condition .ctt .item .corner-topleft{
        top: 0;
        left: 0;
        border-top: 1px solid #fff;
        border-left: 1px solid #fff;
    }
    #top .condition .ctt .item .corner-bottomright{
        bottom: 0;
        right: 0;
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff;
    }
    #top .condition .ctt .item img{
        display: block;
        width: 100%;
        margin: 0 0 5.3333333333333334vw;
    }
    #top .condition .ctt .item p{
        display: block;
        font-size: 4.8vw;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0.03em;
        line-height: 1.5;
        margin: 0;
        color: #fff;
    }
    #top .condition .txt{
        margin: 0 auto 10.66666666666666668vw;
    }
    #top .condition .txt p{
        font-size: 6.4vw;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0;
        color: #fff;
        margin: 0 0 5.33333333333334vw;
    }
    #top .condition .txt p span{
        color: #EC572E;
    }
    #top .condition .txt>span{
        display: block;
        font-size: 4.266666666666667vw;
        font-weight: 600;
        text-align: center;
        letter-spacing: 0;
        color: #fff;
    }
    #top .condition .btn a{
        position: relative;
        display: block;
        font-size: 4.8vw;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0;
        text-decoration: none;
        max-width: 80vw;
        width: 100%;
        padding: 4vw 0 4.8vw;
        margin: 0 auto;
        color: #fff;
        background-color: #EC572E;
        border-radius: 100vw;
        transition: all .3s;
    }
    #top .condition .btn a:hover{
        opacity: 0.7;
    }
    #top .condition .btn a::before{
        content: "";
        width: 5.33333333333333334vw;
        height: 5.33333333333333334vw;
        background-image: url(../img/top/btn_arrow.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        top: 50%;
        right: 2.6666666666666667vw;
        transform: translateY(-50%);
    }
}


#top .maker .ttl_area{
    padding: 120px 0 125px;
    background-image: url(../img/top/maker_ttl-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#top .maker .ttl_area .label{
    position: relative;
    display: block;
    font-size: 23px;
    font-family: "Manrope", sans-serif;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.87;
    color: #fff;
    max-width: 230px;
    width: 100%;
    margin: 0 auto 12px;
}
#top .maker .ttl_area .label .corner{
    position: absolute;
    width: 12px;
    height: 12px;
    overflow: hidden;
}
#top .maker .ttl_area .label .corner-topleft{
    top: 0;
    left: 0;
    border-top: 2px solid #EC572E;
    border-left: 2px solid #EC572E;
}
#top .maker .ttl_area .label .corner-bottomright{
    bottom: 0;
    right: 0;
    border-bottom: 2px solid #EC572E;
    border-right: 2px solid #EC572E;
}
#top .maker .ttl_area h2{
    font-size: 65px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0;
    color: #fff;
    margin: 0 0 45px;
}
#top .maker .ttl_area .note{
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0;
    margin: 0;
    color: #fff;
}
#top .maker .ctt{
    padding: 80px 0 105px;
    background-color: #EFEFEF;
}
#top .maker .ctt .maker-list{
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 auto 125px;
}
#top .maker .ctt .maker-list .item{
    display: block;
    max-width: 285px;
    width: 100%;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #000000;
    box-shadow: 0 5px 0 #0000001A;
}
#top .maker .ctt .maker-list .item img{
    display: block;
    width: 100%;
    margin: 0;
}
#top .maker .ctt .maker-list .item p{
    position: relative;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0;
    padding: 10px 0 0;
    margin: 16px 0 0;
    color: #000;
}
#top .maker .ctt .maker-list .item p::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-image: repeating-linear-gradient(to right, #111111 0px, #111111 1px, transparent 1px, transparent 5px);
}
#top .maker .any-maker{
    display: block;
    text-align: center;
    width: 100%;
    padding: 0 0 55px;
    background-color: #fff;
    border: 1px solid #000000;
}
#top .maker .any-maker .fukidashi{
    position: relative;
    display: inline-block;
    font-size: 33px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0;
    padding: 15px 45px 16px;
    margin: -38px 0 55px;
    color: #Fff;
    background-color: #000000;
}
#top .maker .any-maker .fukidashi::before{
    content: "";
    position: absolute;
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 19px solid #000000;
}
#top .maker .any-maker img{
    display: block;
    max-width: 875px;
    width: 100%;
    margin: 0 auto;
}
@media only screen and (max-width: 768px) {
    #top .maker .ttl_area{
        padding: 9.33333333333334vw 0;
        background-image: url(../img/top/maker_ttl-bg.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    #top .maker .ttl_area .label{
        position: relative;
        display: block;
        font-size: 3.73333333333333334vw;
        font-family: "Manrope", sans-serif;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0.01em;
        line-height: 1.87;
        color: #fff;
        max-width: 37.333334vw;
        width: 100%;
        margin: 0 auto 2.666666666666667vw;
    }
    #top .maker .ttl_area .label .corner{
        position: absolute;
        width: 2.133333333333336vw;
        height: 2.133333333333336vw;
        overflow: hidden;
    }
    #top .maker .ttl_area .label .corner-topleft{
        top: 0;
        left: 0;
        border-top: 1px solid #EC572E;
        border-left: 1px solid #EC572E;
    }
    #top .maker .ttl_area .label .corner-bottomright{
        bottom: 0;
        right: 0;
        border-bottom: 1px solid #EC572E;
        border-right: 1px solid #EC572E;
    }
    #top .maker .ttl_area h2{
        font-size: 8vw;
        font-weight: 800;
        text-align: center;
        letter-spacing: 0;
        color: #fff;
        margin: 0 0 8vw;
    }
    #top .maker .ttl_area .note{
        font-size: 4.266666666666666667vw;
        font-weight: 600;
        text-align: center;
        letter-spacing: 0;
        line-height: 1.46;
        margin: 0;
        color: #fff;
    }
    #top .maker .ctt{
        padding: 10.666666666666668vw 0 16vw;
        background-color: #EFEFEF;
    }
    #top .maker .ctt .maker-list{
        display: flex;
        align-items: stretch;
        flex-wrap: wrap;
        gap: 2.66666666666667vw;
        margin: 0 auto 16vw;
    }
    #top .maker .ctt .maker-list .item{
        display: block;
        max-width: 42.66666666666667vw;
        width: 100%;
        padding: 4vw;
        background-color: #fff;
        border: 1px solid #000000;
        box-shadow: 0 4px 0 #0000001A;
    }
    #top .maker .ctt .maker-list .item img{
        display: block;
        width: 100%;
        margin: 0;
    }
    #top .maker .ctt .maker-list .item p{
        position: relative;
        font-size: 4vw;
        font-weight: 600;
        text-align: center;
        letter-spacing: 0;
        padding: 2.66666666666666667vw 0 0;
        margin: 3.2vw 0 0;
        color: #000;
    }
    #top .maker .ctt .maker-list .item p::before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-image: repeating-linear-gradient(to right, #111111 0px, #111111 1px, transparent 1px, transparent 5px);
    }
    #top .maker .any-maker{
        display: block;
        text-align: center;
        width: 100%;
        padding: 0 0 10.666666666668vw;
        background-color: #fff;
        border: 1px solid #000000;
    }
    #top .maker .any-maker .fukidashi{
        position: relative;
        display: inline-block;
        font-size: 5.8666666666666666vw;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0;
        max-width: 80vw;
        padding: 2.6666666666667vw 6.666667vw;
        margin: -9.33333333333333334vw auto 8vw;
        color: #Fff;
        background-color: #000000;
    }
    #top .maker .any-maker .fukidashi::before{
        content: "";
        position: absolute;
        left: 50%;
        bottom: -4vw;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 2.6666666666666667vw solid transparent;
        border-right: 2.6666666666666667vw solid transparent;
        border-top: 4vw solid #000000;
    }
    #top .maker .any-maker img{
        display: block;
        max-width: 80vw;
        width: 100%;
        margin: 0 auto;
    } 
}


#top .item-list .ttl_area{
    padding: 120px 0 125px;
    background-image: url(../img/top/item-list_ttl-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#top .item-list .ttl_area .label{
    position: relative;
    display: block;
    font-size: 23px;
    font-family: "Manrope", sans-serif;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.87;
    color: #fff;
    max-width: 230px;
    width: 100%;
    margin: 0 auto 12px;
}
#top .item-list .ttl_area .label .corner{
    position: absolute;
    width: 12px;
    height: 12px;
    overflow: hidden;
}
#top .item-list .ttl_area .label .corner-topleft{
    top: 0;
    left: 0;
    border-top: 2px solid #EC572E;
    border-left: 2px solid #EC572E;
}
#top .item-list .ttl_area .label .corner-bottomright{
    bottom: 0;
    right: 0;
    border-bottom: 2px solid #EC572E;
    border-right: 2px solid #EC572E;
}
#top .item-list .ttl_area h2{
    font-size: 65px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0;
    color: #fff;
    margin: 0 0 45px;
}
#top .item-list .ttl_area .note{
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0;
    margin: 0;
    color: #fff;
}
#top .item-list .ctt{
    padding: 80px 0 125px;
    background-color: #EFEFEF;
}
#top .item-list .ctt .item-flex{
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 900px;
    width: 100%;
    margin: 0 auto 60px;
}
#top .item-list .ctt .item-flex .item{
    display: block;
    max-width: 285px;
    width: 100%;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #000000;
    box-shadow: 0 5px 0 #0000001A;
}
#top .item-list .ctt .item-flex .item img{
    display: block;
    max-width: 245px;
    width: 100%;
}
#top .item-list .ctt .item-flex .item p{
    position: relative;
    display: block;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0;
    margin: 20px 0 0;
    padding: 15px 0 0;
    color: #000;
}
#top .item-list .ctt .item-flex .item p::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-image: repeating-linear-gradient(to right, #111111 0px, #111111 1px, transparent 1px, transparent 5px);
}
#top .item-list .ctt .txt{
    padding: 30px 0 0;
    border-top: 2px solid #000000;
}
#top .item-list .ctt .txt .sub-ttl{
    font-size: 38px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0;
    line-height: 1.45;
    margin: 0 0 45px;
    color: #000000;
}
#top .item-list .ctt .txt .sub-ttl span{
    color: #EC572E;
}
#top .item-list .ctt .txt .note{
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.02em;
    line-height: 1.63;
    margin: 0 0 80px;
    color: #000000;
}
#top .item-list .ctt .btn a{
    position: relative;
    display: block;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0;
    text-decoration: none;
    max-width: 550px;
    width: 100%;
    padding: 21px 0 24px;
    margin: 0 auto;
    color: #fff;
    background-color: #EC572E;
    border-radius: 100vw;
    transition: all .3s;
}
#top .item-list .ctt .btn a:hover{
    opacity: 0.7;
}
#top .item-list .ctt .btn a::before{
    content: "";
    width: 25px;
    height: 25px;
    background-image: url(../img/top/btn_arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
    #top .item-list .ttl_area{
        padding: 9.33333333333334vw 0;
        background-image: url(../img/top/item-list_ttl-bg.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    #top .item-list .ttl_area .label{
        position: relative;
        display: block;
        font-size: 3.73333333333333334vw;
        font-family: "Manrope", sans-serif;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0.01em;
        line-height: 1.87;
        color: #fff;
        max-width: 37.333334vw;
        width: 100%;
        margin: 0 auto 2.666666666666667vw;
    }
    #top .item-list .ttl_area .label .corner{
        position: absolute;
        width: 2.133333333333336vw;
        height: 2.133333333333336vw;
        overflow: hidden;
    }
    #top .item-list .ttl_area .label .corner-topleft{
        top: 0;
        left: 0;
        border-top: 1px solid #EC572E;
        border-left: 1px solid #EC572E;
    }
    #top .item-list .ttl_area .label .corner-bottomright{
        bottom: 0;
        right: 0;
        border-bottom: 1px solid #EC572E;
        border-right: 1px solid #EC572E;
    }
    #top .item-list .ttl_area h2{
        font-size: 8vw;
        font-weight: 800;
        text-align: center;
        letter-spacing: 0;
        color: #fff;
        margin: 0 0 8vw;
    }
    #top .item-list .ttl_area .note{
        font-size: 4.266666666666666667vw;
        font-weight: 600;
        text-align: center;
        letter-spacing: 0;
        line-height: 1.46;
        margin: 0;
        color: #fff;
    }
    #top .item-list .ctt{
        padding: 13.33333333335vw 0 16vw;
        background-color: #EFEFEF;
    }
    #top .item-list .ctt .item-flex{
        display: flex;
        align-items: stretch;
        flex-wrap: wrap;
        gap: 2.66666666666667vw;
        max-width: none;
        width: 100%;
        margin: 0 auto 8vw;
    }
    #top .item-list .ctt .item-flex .item{
        display: block;
        max-width: 42.666666666666667vw;
        width: 100%;
        padding: 4vw;
        background-color: #fff;
        border: 1px solid #000000;
        box-shadow: 0 4px 0 #0000001A;
    }
    #top .item-list .ctt .item-flex .item img{
        display: block;
        max-width: none;
        width: 100%;
    }
    #top .item-list .ctt .item-flex .item p{
        position: relative;
        display: block;
        font-size: 4vw;
        font-weight: 600;
        text-align: center;
        letter-spacing: 0;
        margin: 4vw 0 0;
        padding: 3.2vw 0 0;
        color: #000;
    }
    #top .item-list .ctt .item-flex .item p::before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-image: repeating-linear-gradient(to right, #111111 0px, #111111 1px, transparent 1px, transparent 5px);
    }
    #top .item-list .ctt .txt{
        padding: 5.33333333333334vw 0 0;
        border-top: 1px solid #000000;
    }
    #top .item-list .ctt .txt .sub-ttl{
        font-size: 5.8666666666666666vw;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0;
        line-height: 1.45;
        margin: 0 0 8vw;
        color: #000000;
    }
    #top .item-list .ctt .txt .sub-ttl span{
        color: #EC572E;
    }
    #top .item-list .ctt .txt .note{
        font-size: 4vw;
        font-weight: 400;
        text-align: center;
        letter-spacing: 0.02em;
        line-height: 1.63;
        margin: 0 0 10.66666666668vw;
        color: #000000;
    }
    #top .item-list .ctt .btn a{
        position: relative;
        display: block;
        font-size: 4.266666666666667vw;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0;
        text-decoration: none;
        max-width: none;
        width: 100%;
        padding: 4vw 2.6666666666667vw 4.8vw 0;
        margin: 0 auto;
        color: #fff;
        background-color: #EC572E;
        border-radius: 100vw;
        transition: all .3s;
    }
    #top .item-list .ctt .btn a:hover{
        opacity: 0.7;
    }
    #top .item-list .ctt .btn a::before{
        content: "";
        width: 4vw;
        height: 4vw;
        background-image: url(../img/top/btn_arrow.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        top: 50%;
        right: 2.66666666666666667vw;
        transform: translateY(-50%);
    }
}


#top .new-arrival{
    padding: 100px 0 110px;
    background-color: #191919;
}
#top .new-arrival .ttl_area{
    text-align: center;
    margin: 0 0 80px;
}
#top .new-arrival .ttl_area .label{
    position: relative;
    display: block;
    font-size: 23px;
    font-family: "Manrope", sans-serif;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.87;
    color: #fff;
    max-width: 230px;
    width: 100%;
    margin: 0 auto 12px;
}
#top .new-arrival .ttl_area .label .corner{
    position: absolute;
    width: 12px;
    height: 12px;
    overflow: hidden;
}
#top .new-arrival .ttl_area .label .corner-topleft{
    top: 0;
    left: 0;
    border-top: 2px solid #EC572E;
    border-left: 2px solid #EC572E;
}
#top .new-arrival .ttl_area .label .corner-bottomright{
    bottom: 0;
    right: 0;
    border-bottom: 2px solid #EC572E;
    border-right: 2px solid #EC572E;
}
#top .new-arrival .ttl_area h2{
    font-size: 65px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0;
    color: #fff;
    margin: 0 0 45px;
}
#top .new-arrival .ttl_area .note{
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0;
    margin: 0;
    color: #fff;
}
#top .new-arrival .ctt{
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 0 95px;
}
#top .new-arrival .ctt .item{
    display: flex;
    gap: 30px;
    max-width: 590px;
    width: 100%;
    padding: 20px;
    background-color: #EFEFEF;
    box-shadow: 0 5px 0 #00000040;
}
/* #top .new-arrival .ctt .item:nth-of-type(1),#top .new-arrival .ctt .item:nth-of-type(2){
    transition-delay: 0s;
}
#top .new-arrival .ctt .item:nth-of-type(3),#top .new-arrival .ctt .item:nth-of-type(4){
    transition-delay: 0.07s;
}
#top .new-arrival .ctt .item:nth-of-type(5),#top .new-arrival .ctt .item:nth-of-type(6){
    transition-delay: 0.14s;
}
#top .new-arrival .ctt .item:nth-of-type(7),#top .new-arrival .ctt .item:nth-of-type(8){
    transition-delay: 0.21s;
} */
#top .new-arrival .ctt .item .img{
    position: relative;
    width: 220px;
    height: 180px;
    flex-shrink: 0;
    overflow: hidden;
}
#top .new-arrival .ctt .item .img img{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
}
#top .new-arrival .ctt .item .txt{
    padding: 10px 0 0;
    flex: 1;
}
#top .new-arrival .ctt .item .txt .date{
    display: block;
    font-size: 13px;
    font-family: "Heebo", sans-serif;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.46;
    margin: 0 0 10px;
    color: #000000;
}
#top .new-arrival .ctt .item .txt .ttl{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 52px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.44;
    margin: 0 0 18px;
    color: #000000;
}
#top .new-arrival .ctt .item .txt .price-area{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#top .new-arrival .ctt .item .txt .price-area .p-ttl{
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.47;
    margin: 0;
    color: #EC572E;
}
#top .new-arrival .ctt .item .txt .price-area .price{
    font-size: 30px;
    font-family: "Heebo", sans-serif;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1.47;
    margin: 0;
    color: #EC572E;
}
#top .new-arrival .btn a{
    position: relative;
    display: block;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0;
    text-decoration: none;
    max-width: 500px;
    width: 100%;
    padding: 21px 0 24px;
    margin: 0 auto;
    color: #fff;
    background-color: #EC572E;
    border-radius: 100vw;
    transition: all .3s;
}
#top .new-arrival .btn a:hover{
    opacity: 0.7;
}
#top .new-arrival .btn a::before{
    content: "";
    width: 25px;
    height: 25px;
    background-image: url(../img/top/btn_arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
    #top .new-arrival{
        padding: 13.33333333333335vw 0 16vw;
        background-color: #191919;
    }
    #top .new-arrival .ttl_area{
        text-align: center;
        margin: 0 0 8vw;
    }
    #top .new-arrival .ttl_area .label{
        position: relative;
        display: block;
        font-size: 3.73333333333333334vw;
        font-family: "Manrope", sans-serif;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0.01em;
        line-height: 1.87;
        color: #fff;
        max-width: 37.333334vw;
        width: 100%;
        margin: 0 auto 2.66666666666667vw;
    }
    #top .new-arrival .ttl_area .label .corner{
        position: absolute;
        width: 2.133333333333336vw;
        height: 2.133333333333336vw;
        overflow: hidden;
    }
    #top .new-arrival .ttl_area .label .corner-topleft{
        top: 0;
        left: 0;
        border-top: 1px solid #EC572E;
        border-left: 1px solid #EC572E;
    }
    #top .new-arrival .ttl_area .label .corner-bottomright{
        bottom: 0;
        right: 0;
        border-bottom: 1px solid #EC572E;
        border-right: 1px solid #EC572E;
    }
    #top .new-arrival .ttl_area h2{
        font-size: 6.66666666666667vw;
        font-weight: 800;
        text-align: center;
        letter-spacing: 0;
        color: #fff;
        margin: 0 0 5.3333333333333333334vw;
    }
    #top .new-arrival .ttl_area .note{
        font-size: 4.2666666666666667vw;
        font-weight: 600;
        text-align: center;
        letter-spacing: 0;
        margin: 0;
        color: #fff;
    }
    #top .new-arrival .ctt{
        display: flex;
        align-items: stretch;
        flex-wrap: wrap;
        gap: 2.6666666666666667vw;
        margin: 0 0 10.6666666666666668vw;
    }
    #top .new-arrival .ctt .item{
        display: flex;
        gap: 2.66666666666667vw;
        max-width: none;
        width: 100%;
        padding: 2.666666666666667vw;
        background-color: #EFEFEF;
        box-shadow: 0 4px 0 #00000040;
    }
    #top .new-arrival .ctt .item .img{
        position: relative;
        width: 34.66666666666666666663vw;
        height: 34.66666666666666666663vw;
        flex-shrink: 0;
        overflow: hidden;
    }
    #top .new-arrival .ctt .item .img img{
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
    }
    #top .new-arrival .ctt .item .txt{
        padding: 1.333333333333333335vw 0 0;
        flex: 1;
    }
    #top .new-arrival .ctt .item .txt .date{
        display: block;
        font-size: 3.2vw;
        font-family: "Heebo", sans-serif;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 1.46;
        margin: 0 0 2.6666666666667vw;
        color: #000000;
    }
    #top .new-arrival .ctt .item .txt .ttl{
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
        min-height: 12vw;
        font-size: 4vw;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 1.44;
        margin: 0 0 2.66666666666667vw;
        color: #000000;
    }
    #top .new-arrival .ctt .item .txt .price-area{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    #top .new-arrival .ctt .item .txt .price-area .p-ttl{
        font-size: 3.73333333333334vw;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 1.47;
        margin: 0;
        color: #EC572E;
    }
    #top .new-arrival .ctt .item .txt .price-area .price{
        font-size: 7.11111111111111136vw;
        font-family: "Heebo", sans-serif;
        font-weight: bold;
        letter-spacing: 0;
        line-height: 1.47;
        margin: 0;
        color: #EC572E;
    }
    #top .new-arrival .btn a{
        position: relative;
        display: block;
        font-size: 4.2666666666666666667vw;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0;
        text-decoration: none;
        max-width: 80vw;
        width: 100%;
        padding: 4vw 0 4.8vw;
        margin: 0 auto;
        color: #fff;
        background-color: #EC572E;
        border-radius: 100vw;
        transition: all .3s;
    }
    #top .new-arrival .btn a:hover{
        opacity: 0.7;
    }
    #top .new-arrival .btn a::before{
        content: "";
        width: 5.33333333333334vw;
        height: 5.33333333333334vw;
        background-image: url(../img/top/btn_arrow.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        top: 50%;
        right: 2.6666666666666666667vw;
        transform: translateY(-50%);
    }
}


#top .sell{
    padding: 100px 0;
    background-color: #EFEFEF;
}
#top .sell .ttl_area{
    text-align: center;
    margin: 0 0 55px;
}
#top .sell .ttl_area .label{
    position: relative;
    display: block;
    font-size: 23px;
    font-family: "Manrope", sans-serif;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.87;
    color: #000000;
    max-width: 230px;
    width: 100%;
    margin: 0 auto 12px;
}
#top .sell .ttl_area .label .corner{
    position: absolute;
    width: 12px;
    height: 12px;
    overflow: hidden;
}
#top .sell .ttl_area .label .corner-topleft{
    top: 0;
    left: 0;
    border-top: 2px solid #EC572E;
    border-left: 2px solid #EC572E;
}
#top .sell .ttl_area .label .corner-bottomright{
    bottom: 0;
    right: 0;
    border-bottom: 2px solid #EC572E;
    border-right: 2px solid #EC572E;
}
#top .sell .ttl_area h2{
    font-size: 65px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0;
    color: #000000;
    margin: 0 0 45px;
}
#top .sell .ttl_area .note{
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0;
    margin: 0;
    color: #000000;
}
#top .sell .ttl_area .note span{
    color: #EC572E;
}
#top .sell .ctt{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin: 0 0 65px;
}
#top .sell .ctt .item{
    position: relative;
    display: block;
    max-width: 285px;
    width: 100%;
    background-color: #fff;
    border: 1px solid #000000;
}
#top .sell .ctt .item::before{
    content: "";
    width: 24px;
    height: 39px;
    background-image: url(../img/top/item_arrow.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    right: -24px;
    transform: translateY(-50%);
}
#top .sell .ctt .item:last-of-type::before{
    display: none;
}
#top .sell .ctt .item .step{
    font-size: 20px;
    font-family: "Heebo", sans-serif;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.05em;
    color: #fff;
    background-color: #000;
    padding: 13px 0 8px;
    margin: 0;
}
#top .sell .ctt .item .in{
    padding: 22px 20px 15px;
    color: #000000;
    background-color: #fff;
}
#top .sell .ctt .item .in .sub-ttl{
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0;
    margin: 0 0 27px;
    color: #000;
}
#top .sell .ctt .item .in .icon{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 40px;
}
#top .sell .ctt .item .in .icon img{
    display: block;
    max-width: 120px;
    max-height: 100%;
}
#top .sell .ctt .item:first-of-type .in .icon img{
    width: 105px;
    height: auto;
}
#top .sell .ctt .item:nth-of-type(2) .in .icon img{
    width: 72px;
    height: auto;
}
#top .sell .ctt .item:nth-of-type(3) .in .icon img{
    width: 118px;
    height: auto;
}
#top .sell .ctt .item:last-of-type .in .icon img{
    width: 80px;
    height: auto;
}
#top .sell .ctt .item .in .supplement{
    font-size: 19px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0;
    margin: 0 0 18px;
    color: #000;
}
#top .sell .ctt .item .in .supplement span{
    color: #EC572E;
}
#top .sell .ctt .item .in .note{
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.6;
    color: #000000;
    margin: 0;
}
#top .sell .ctt .item .in .note a{
    color: #0057CD;
    text-decoration: underline;
}
#top .sell .btn a{
    position: relative;
    display: block;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0;
    text-decoration: none;
    max-width: 500px;
    width: 100%;
    padding: 21px 0 24px;
    margin: 0 auto;
    color: #fff;
    background-color: #EC572E;
    border-radius: 100vw;
    transition: all .3s;
}
#top .sell .btn a:hover{
    opacity: 0.7;
}
#top .sell .btn a::before{
    content: "";
    width: 25px;
    height: 25px;
    background-image: url(../img/top/btn_arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
    #top .sell{
        padding: 13.3333333333335vw 0 16vw;
        background-color: #EFEFEF;
    }
    #top .sell .ttl_area{
        text-align: center;
        margin: 0 0 8vw;
    }
    #top .sell .ttl_area .label{
        position: relative;
        display: block;
        font-size: 3.73333333333333334vw;
        font-family: "Manrope", sans-serif;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0.01em;
        line-height: 1.87;
        color: #000000;
        max-width: 37.333334vw;
        width: 100%;
        margin: 0 auto 2.66666666666667vw;
    }
    #top .sell .ttl_area .label .corner{
        position: absolute;
        width: 2.133333333333336vw;
        height: 2.133333333333336vw;
        overflow: hidden;
    }
    #top .sell .ttl_area .label .corner-topleft{
        top: 0;
        left: 0;
        border-top: 1px solid #EC572E;
        border-left: 1px solid #EC572E;
    }
    #top .sell .ttl_area .label .corner-bottomright{
        bottom: 0;
        right: 0;
        border-bottom: 1px solid #EC572E;
        border-right: 1px solid #EC572E;
    }
    #top .sell .ttl_area h2{
        font-size: 6.66666666666667vw;
        font-weight: 800;
        text-align: center;
        letter-spacing: 0;
        color: #000000;
        margin: 0 0 5.3333333333333333334vw;
    }
    #top .sell .ttl_area .note{
        font-size: 4.8vw;
        font-weight: 600;
        text-align: center;
        letter-spacing: 0;
        margin: 0;
        color: #000000;
    }
    #top .sell .ttl_area .note span{
        color: #EC572E;
    }
    #top .sell .ctt{
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10.66666666666668vw;
        margin: 0 0 10.66666666666668vw;
    }
    #top .sell .ctt .item{
        position: relative;
        display: block;
        max-width: 80vw;
        width: 100%;
        margin: 0 auto;
        background-color: #fff;
        border: 1px solid #000000;
    }
    #top .sell .ctt .item::before{
        content: "";
        width: 6.4vw;
        height: 10.33333333333335vw;
        background-image: url(../img/top/item_arrow.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        bottom: -10.66666666666668vw;
        right: 50%;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
    }
    #top .sell .ctt .item:last-of-type::before{
        display: none;
    }
    #top .sell .ctt .item .step{
        font-size: 4.8vw;
        font-family: "Heebo", sans-serif;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0.05em;
        color: #fff;
        background-color: #000;
        padding: 2.666666666667vw 0 2.1333333336vw;
        margin: 0;
    }
    #top .sell .ctt .item .in{
        padding: 4vw 4vw 5.3333333333334vw;
        color: #000000;
        background-color: #fff;
    }
    #top .sell .ctt .item .in .sub-ttl{
        font-size: 6.66666666666667vw;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0;
        margin: 0 0 5.333333333333334vw;
        color: #000;
    }
    #top .sell .ctt .item .in .icon{
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 21.333333333333336vw;
        height: 21.333333333333336vw;
        margin: 0 auto 5.33333333333334vw;
    }
    #top .sell .ctt .item .in .icon img{
        display: block;
        max-width: 32vw;
        max-height: 100%;
    }
    #top .sell .ctt .item:first-of-type .in .icon img{
        width: 28.000000000000004vw;
        height: auto;
    }
    #top .sell .ctt .item:nth-of-type(2) .in .icon img{
        width: 19.2vw;
        height: auto;
    }
    #top .sell .ctt .item:nth-of-type(3) .in .icon img{
        width: 31.466666666666665vw;
        height: auto;
    }
    #top .sell .ctt .item:last-of-type .in .icon img{
        width: 21.333333333333336vw;
        height: auto;
    }
    #top .sell .ctt .item .in .supplement{
        font-size: 4.8vw;
        font-weight: 600;
        text-align: center;
        letter-spacing: 0;
        margin: 0 0 4vw;
        color: #000;
    }
    #top .sell .ctt .item .in .supplement span{
        color: #EC572E;
    }
    #top .sell .ctt .item .in .note{
        font-size: 3.7333333333333334vw;
        font-weight: 400;
        letter-spacing: 0.02em;
        line-height: 1.43;
        color: #000000;
        margin: 0;
    }
    #top .sell .ctt .item .in .note a{
        color: #0057CD;
        text-decoration: underline;
    }
    #top .sell .btn a{
        position: relative;
        display: block;
        font-size: 4.8vw;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0;
        text-decoration: none;
        max-width: 80vw;
        width: 100%;
        padding: 4vw 0 4.8vw;
        margin: 0 auto;
        color: #fff;
        background-color: #EC572E;
        border-radius: 100vw;
        transition: all .3s;
    }
    #top .sell .btn a:hover{
        opacity: 0.7;
    }
    #top .sell .btn a::before{
        content: "";
        width: 5.3333333333333334vw;
        height: 5.3333333333333334vw;
        background-image: url(../img/top/btn_arrow.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        top: 50%;
        right: 2.6666666666666667vw;
        transform: translateY(-50%);
    }
}


#top .voice{
    padding: 100px 0;
    background-color: #191919;
}
#top .voice .ttl_area{
    text-align: center;
    margin: 0 0 60px;
}
#top .voice .ttl_area .label{
    position: relative;
    display: block;
    font-size: 23px;
    font-family: "Manrope", sans-serif;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.87;
    color: #fff;
    max-width: 230px;
    width: 100%;
    margin: 0 auto 12px;
}
#top .voice .ttl_area .label .corner{
    position: absolute;
    width: 12px;
    height: 12px;
    overflow: hidden;
}
#top .voice .ttl_area .label .corner-topleft{
    top: 0;
    left: 0;
    border-top: 2px solid #EC572E;
    border-left: 2px solid #EC572E;
}
#top .voice .ttl_area .label .corner-bottomright{
    bottom: 0;
    right: 0;
    border-bottom: 2px solid #EC572E;
    border-right: 2px solid #EC572E;
}
#top .voice .ttl_area h2{
    font-size: 65px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0;
    color: #fff;
    margin: 0 0 45px;
}
#top .voice .ttl_area .note{
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0;
    margin: 0;
    color: #fff;
}
#top .voice .ctt{
    display: block;
    margin: 0 auto 60px;
}
#top .voice .ctt .item{
    display: flex;
    align-items: stretch;
    width: 100%;
    height: 335px;
    margin: 0 0 20px;
}
#top .voice .ctt .item:last-of-type{
    margin: 0;
}
#top .voice .ctt .item .info{
    padding: 30px;
    max-width: 600px;
    width: 50%;
    flex: 1;
    background-color: #fff;
}
#top .voice .ctt .item .info .detail{
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 0 30px;
    margin: 0 0 30px;
    border-bottom: 1px solid #000000;
}
#top .voice .ctt .item .info .detail img{
    display: block;
    max-width: 120px;
    width: 100%;
}
#top .voice .ctt .item .info .detail .name p{
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0;
    margin: 0 0 12px;
    color: #000;
}
#top .voice .ctt .item .info .detail span{
    display: block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    margin: 0;
    color: #000;
}
#top .voice .ctt .item .info .evaluation{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 75px;
    margin: 0;
}
#top .voice .ctt .item .info .evaluation p{
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    margin: 0;
    color: #000000;
}
#top .voice .ctt .item .info .evaluation p>span{
    color: #EF9608;
}
#top .voice .ctt .item .info .evaluation p>span>span{
    color: #B8B8B8;
} 
#top .voice .ctt .item .txt{
    padding: 30px 25px 0;
    max-width: 600px;
    width: 50%;
    flex: 1;
    background-color: #EFEFEF;
}
#top .voice .ctt .item .txt .strong{
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.45;
    margin: 0 0 25px;
    color: #000000;
}
#top .voice .ctt .item .txt .note{
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.87;
    margin: 0;
    color: #000000;
}
#top .voice .btn a{
    position: relative;
    display: block;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0;
    text-decoration: none;
    max-width: 500px;
    width: 100%;
    padding: 21px 0 24px;
    margin: 0 auto;
    color: #fff;
    background-color: #EC572E;
    border-radius: 100vw;
    transition: all .3s;
}
#top .voice .btn a:hover{
    opacity: 0.7;
}
#top .voice .btn a::before{
    content: "";
    width: 25px;
    height: 25px;
    background-image: url(../img/top/btn_arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
    #top .voice{
        padding: 13.3333333333335vw 0 16vw;
        background-color: #191919;
    }
    #top .voice .ttl_area{
        text-align: center;
        margin: 0 0 8vw;
    }
    #top .voice .ttl_area .label{
        position: relative;
        display: block;
        font-size: 3.73333333333333334vw;
        font-family: "Manrope", sans-serif;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0.01em;
        line-height: 1.87;
        color: #fff;
        max-width: 37.333334vw;
        width: 100%;
        margin: 0 auto 2.66666666666667vw;
    }
    #top .voice .ttl_area .label .corner{
        position: absolute;
        width: 2.133333333333336vw;
        height: 2.133333333333336vw;
        overflow: hidden;
    }
    #top .voice .ttl_area .label .corner-topleft{
        top: 0;
        left: 0;
        border-top: 1px solid #EC572E;
        border-left: 1px solid #EC572E;
    }
    #top .voice .ttl_area .label .corner-bottomright{
        bottom: 0;
        right: 0;
        border-bottom: 1px solid #EC572E;
        border-right: 1px solid #EC572E;
    }
    #top .voice .ttl_area h2{
        font-size: 6.66666666666667vw;
        font-weight: 800;
        text-align: center;
        letter-spacing: 0;
        color: #fff;
        margin: 0 0 5.33333333333334vw;
    }
    #top .voice .ttl_area .note{
        font-size: 4.2666666666667vw;
        font-weight: 600;
        text-align: center;
        letter-spacing: 0;
        margin: 0;
        color: #fff;
    }
    #top .voice .ctt{
        display: block;
        margin: 0 auto 10.666666666666668vw;
    }
    #top .voice .ctt .item{
        display: block;
        width: 100%;    
        height: auto;
        margin: 0 0 5.33333333333333334vw;
    }
    #top .voice .ctt .item:last-of-type{
        margin: 0;
    }
    #top .voice .ctt .item .info{
        display: block;
        max-width: none;
        width: 100%;
        padding: 4vw;
        background-color: #fff;
    }
    #top .voice .ctt .item .info .detail{
        display: flex;
        align-items: center;
        gap: 2.666666666666667vw;
        padding: 0 0 4vw;
        margin: 0 0 4vw;
        border-bottom: 1px solid #000000;
    }
    #top .voice .ctt .item .info .detail img{
        display: block;
        max-width: 26.6666666666666667vw;
        width: 100%;
    }
    #top .voice .ctt .item .info .detail .name p{
        font-size: 5.3333333333333334vw;
        font-weight: 600;
        letter-spacing: 0;
        margin: 0 0 2.666666666666667vw;
        color: #000;
    }
    #top .voice .ctt .item .info .detail span{
        display: block;
        font-size: 4vw;
        font-weight: 600;
        letter-spacing: 0;
        margin: 0;
        color: #000;
    }
    #top .voice .ctt .item .info .evaluation{
        display: flex;
        flex-direction: column;
        gap: 2.6666666666666666667vw;
        padding-left: 1.3333333333335vw;
        margin: 0;
    }
    #top .voice .ctt .item .info .evaluation p{
        font-size: 4vw;
        font-weight: 600;
        letter-spacing: 0;
        margin: 0;
        color: #000000;
    }
    #top .voice .ctt .item .info .evaluation p>span{
        color: #EF9608;
    }
    #top .voice .ctt .item .info .evaluation p>span>span{
        color: #B8B8B8;
    } 
    #top .voice .ctt .item .txt{
        padding: 5.333333333334vw;
        max-width: none;
        width: 100%;
        background-color: #EFEFEF;
    }
    #top .voice .ctt .item .txt .strong{
        font-size: 5.33333333333334vw;
        font-weight: 600;
        letter-spacing: 0;
        line-height: 1.45;
        margin: 0 0 5.3333333333334vw;
        color: #000000;
    }
    #top .voice .ctt .item .txt .note{
        font-size: 3.733333333333334vw;
        font-weight: 400;
        letter-spacing: 0.03em;
        line-height: 1.87;
        margin: 0;
        color: #000000;
    }
    #top .voice .btn a{
        position: relative;
        display: block;
        font-size: 4.8vw;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0;
        text-decoration: none;
        max-width: 80vw;
        width: 100%;
        padding: 4vw 0 4.8vw;
        margin: 0 auto;
        color: #fff;
        background-color: #EC572E;
        border-radius: 100vw;
        transition: all .3s;
    }
    #top .voice .btn a:hover{
        opacity: 0.7;
    }
    #top .voice .btn a::before{
        content: "";
        width: 5.33333333333334vw;
        height: 5.33333333333334vw;
        background-image: url(../img/top/btn_arrow.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        top: 50%;
        right: 2.666666666666667vw;
        transform: translateY(-50%);
    }
}


#top .faq{
    padding: 90px 0 100px;
    background-color: #EFEFEF;
}
#top .faq .ttl_area{
    text-align: center;
    margin: 0 0 50px;
}
#top .faq .ttl_area .label{
    position: relative;
    display: block;
    font-size: 23px;
    font-family: "Manrope", sans-serif;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.87;
    color: #000000;
    max-width: 230px;
    width: 100%;
    margin: 0 auto 12px;
}
#top .faq .ttl_area .label .corner{
    position: absolute;
    width: 12px;
    height: 12px;
    overflow: hidden;
}
#top .faq .ttl_area .label .corner-topleft{
    top: 0;
    left: 0;
    border-top: 2px solid #EC572E;
    border-left: 2px solid #EC572E;
}
#top .faq .ttl_area .label .corner-bottomright{
    bottom: 0;
    right: 0;
    border-bottom: 2px solid #EC572E;
    border-right: 2px solid #EC572E;
}
#top .faq .ttl_area h2{
    font-size: 65px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0;
    color: #000000;
    margin: 0 0 45px;
}
#top .faq .ttl_area .note{
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0;
    margin: 0;
    color: #000000;
}
#top .faq .ctt{
    display: block;
    width: 100%;
    margin: 0 auto 70px;
}
#top .faq .ctt .item{
    display: block;
    background-color: #fff;
    border: 1px solid #D9D9D9;
    padding: 25px 50px;
    margin: 0 0 20px;
}
#top .faq .ctt .item:last-of-type{
    margin: 0;
}
#top .faq .ctt .item .question{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 0 25px;
    margin: 0 0 25px;
    border-bottom: 1px solid #D9D9D9;
}
#top .faq .ctt .item .question span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 23px;
    font-family: "Manrope", sans-serif;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background-color: #EC572E;
    padding-bottom: 2px;
    flex-shrink: 0;
}
#top .faq .ctt .item .question p{
    flex: 1;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0;
    margin: 0;
    color: #000;
}
#top .faq .ctt .item .answer{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 0;
}
#top .faq .ctt .item .answer span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 23px;
    font-family: "Manrope", sans-serif;
    font-weight: bold;
    text-align: center;
    color: #000;
    background-color: #fff;
    padding-bottom: 2px;
    flex-shrink: 0;
    border: 1px solid #000000;
}
#top .faq .ctt .item .answer p{
    flex: 1;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.38;
    padding-top: 10px;
    margin: 0;
    color: #000;
}
#top .faq .btn a{
    position: relative;
    display: block;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0;
    text-decoration: none;
    max-width: 500px;
    width: 100%;
    padding: 21px 0 24px;
    margin: 0 auto;
    color: #fff;
    background-color: #EC572E;
    border-radius: 100vw;
    transition: all .3s;
}
#top .faq .btn a:hover{
    opacity: 0.7;
}
#top .faq .btn a::before{
    content: "";
    width: 25px;
    height: 25px;
    background-image: url(../img/top/btn_arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
    #top .faq{
        padding: 13.3333333333335vw 0 16vw;
        background-color: #EFEFEF;
    }
    #top .faq .ttl_area{
        text-align: center;
        margin: 0 0 8vw;
    }
    #top .faq .ttl_area .label{
        position: relative;
        display: block;
        font-size: 3.73333333333333334vw;
        font-family: "Manrope", sans-serif;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0.01em;
        line-height: 1.87;
        color: #000000;
        max-width: 37.333334vw;
        width: 100%;
        margin: 0 auto 2.66666666666667vw;
    }
    #top .faq .ttl_area .label .corner{
        position: absolute;
        width: 2.133333333333336vw;
        height: 2.133333333333336vw;
        overflow: hidden;
    }
    #top .faq .ttl_area .label .corner-topleft{
        top: 0;
        left: 0;
        border-top: 1px solid #EC572E;
        border-left: 1px solid #EC572E;
    }
    #top .faq .ttl_area .label .corner-bottomright{
        bottom: 0;
        right: 0;
        border-bottom: 1px solid #EC572E;
        border-right: 1px solid #EC572E;
    }
    #top .faq .ttl_area h2{
        font-size: 6.66666666666667vw;
        font-weight: 800;
        text-align: center;
        letter-spacing: 0;
        color: #000000;
        margin: 0 0 5.3333333333333333334vw;
    }
    #top .faq .ttl_area .note{
        font-size: 4.2666666666667vw;
        font-weight: 600;
        text-align: center;
        letter-spacing: 0;
        line-height: 1.47;
        margin: 0;
        color: #000000;
    }
    #top .faq .ctt{
        display: block;
        width: 100%;
        margin: 0 auto 10.66666666666668vw;
    }
    #top .faq .ctt .item{
        display: block;
        background-color: #fff;
        border: 1px solid #D9D9D9;
        padding: 4vw;
        margin: 0 0 5.33333333333334vw;
    }
    #top .faq .ctt .item:last-of-type{
        margin: 0;
    }
    #top .faq .ctt .item .question{
        display: flex;
        gap: 2.6666666666666667vw;
        padding: 0 0 4vw;
        margin: 0 0 4vw;
        border-bottom: 1px solid #D9D9D9;
    }
    #top .faq .ctt .item .question span{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 8vw;
        height: 8vw;
        border-radius: 50%;
        font-size: 5.33333333333333334vw;
        font-family: "Manrope", sans-serif;
        font-weight: bold;
        text-align: center;
        color: #fff;
        background-color: #EC572E;
        padding-bottom: 2px;
        flex-shrink: 0;
    }
    #top .faq .ctt .item .question p{
        flex: 1;
        font-size: 4.8vw;
        font-weight: 600;
        letter-spacing: 0;
        line-height: 1.34;
        margin: 0;
        color: #000;
    }
    #top .faq .ctt .item .answer{
        display: flex;
        align-items: flex-start;
        gap: 2.66666666666666667vw;
        margin: 0;
    }
    #top .faq .ctt .item .answer span{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 8vw;
        height: 8vw;
        border-radius: 50%;
        font-size: 5.33333333333333334vw;
        font-family: "Manrope", sans-serif;
        font-weight: bold;
        text-align: center;
        color: #000;
        background-color: #fff;
        padding-bottom: 2px;
        flex-shrink: 0;
        border: 1px solid #000000;
    }
    #top .faq .ctt .item .answer p{
        flex: 1;
        font-size: 4.26666666666666667vw;
        font-weight: 400;
        letter-spacing: 0.02em;
        line-height: 1.38;
        padding-top: 0;
        margin: 0;
        color: #000;
    }
    #top .faq .btn a{
        position: relative;
        display: block;
        font-size: 4.266666666666667vw;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0;
        text-decoration: none;
        max-width: 80vw;
        width: 100%;
        padding: 4vw 0 4.8vw;
        margin: 0 auto;
        color: #fff;
        background-color: #EC572E;
        border-radius: 100vw;
        transition: all .3s;
    }
    #top .faq .btn a:hover{
        opacity: 0.7;
    }
    #top .faq .btn a::before{
        content: "";
        width: 5.33333333333333334vw;
        height: 5.33333333333333334vw;
        background-image: url(../img/top/btn_arrow.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        top: 50%;
        right: 2.66666666666666667vw;
        transform: translateY(-50%);
    }
}


#top .tips{
    padding: 90px 0 100px;
    background-color: #fff;
}
#top .tips .ttl_area{
    text-align: center;
    margin: 0 0 70px;
}
#top .tips .ttl_area .label{
    position: relative;
    display: block;
    font-size: 23px;
    font-family: "Manrope", sans-serif;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.87;
    color: #000000;
    max-width: 230px;
    width: 100%;
    margin: 0 auto 12px;
}
#top .tips .ttl_area .label .corner{
    position: absolute;
    width: 12px;
    height: 12px;
    overflow: hidden;
}
#top .tips .ttl_area .label .corner-topleft{
    top: 0;
    left: 0;
    border-top: 2px solid #000;
    border-left: 2px solid #000;
}
#top .tips .ttl_area .label .corner-bottomright{
    bottom: 0;
    right: 0;
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
}
#top .tips .ttl_area h2{
    font-size: 65px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0;
    color: #000000;
    margin: 0 0 45px;
}
#top .tips .ttl_area .note{
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0;
    margin: 0;
    color: #000000;
}
#top .tips .ctt{
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    width: 100%;
    margin: 0 0 70px;
}
#top .tips .ctt .item{
    display: block;
    max-width: 285px;
    width: 100%;
}
#top .tips .ctt .item .img{
    position: relative;
    width: 285px;
    height: 160px;
    overflow: hidden;
    margin: 0 0 30px;
}
#top .tips .ctt .item .is-demo{
    border: 1px solid #efefef;
}
#top .tips .ctt .item img{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: block;
    width: 100%;
    height: auto;
}
#top .tips .ctt .item .txt .cat{
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    padding: 1px 13px 3px;
    margin: 0 0 20px;
    color: #000;
    border: 1px solid #000000;
}
#top .tips .ctt .item .txt .ttl{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.47;
    margin: 0 0 25px;
    color: #000;
}
#top .tips .ctt .item .txt .date{
    font-size: 15px;
    font-family: "Heebo", sans-serif;
    font-weight: 500;
    letter-spacing: 0;
    color: #000;
    margin: 0;
}
#top .tips .btn a{
    position: relative;
    display: block;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0;
    text-decoration: none;
    max-width: 500px;
    width: 100%;
    padding: 21px 0 24px;
    margin: 0 auto;
    color: #fff;
    background-color: #EC572E;
    border-radius: 100vw;
    transition: all .3s;
}
#top .tips .btn a:hover{
    opacity: 0.7;
}
#top .tips .btn a::before{
    content: "";
    width: 25px;
    height: 25px;
    background-image: url(../img/top/btn_arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
    #top .tips{
        padding: 13.33333333333335vw 0 16vw;
        background-color: #fff;
    }
    #top .tips .ttl_area{
        text-align: center;
        margin: 0 0 8vw;
    }
    #top .tips .ttl_area .label{
        position: relative;
        display: block;
        font-size: 3.73333333333333334vw;
        font-family: "Manrope", sans-serif;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0.05em;
        line-height: 1.87;
        color: #000000;
        max-width: 37.333334vw;
        width: 100%;
        margin: 0 auto 2.66666666666667vw;
    }
    #top .tips .ttl_area .label .corner{
        position: absolute;
        width: 2.133333333333336vw;
        height: 2.133333333333336vw;
        overflow: hidden;
    }
    #top .tips .ttl_area .label .corner-topleft{
        top: 0;
        left: 0;
        border-top: 1px solid #000;
        border-left: 1px solid #000;
    }
    #top .tips .ttl_area .label .corner-bottomright{
        bottom: 0;
        right: 0;
        border-bottom: 1px solid #000;
        border-right: 1px solid #000;
    }
    #top .tips .ttl_area h2{
        font-size: 6.66666666666667vw;
        font-weight: 800;
        text-align: center;
        letter-spacing: 0;
        color: #000000;
        margin: 0 0 5.3333333333333333334vw;
    }
    #top .tips .ttl_area .note{
        font-size: 4.266666666666667vw;
        font-weight: 600;
        text-align: center;
        letter-spacing: 0;
        margin: 0;
        color: #000000;
    }
    #top .tips .ctt{
        display: flex;
        justify-content: center;
        align-items: stretch;
        flex-wrap: wrap;
        gap: 2.666666666666667vw;
        width: 100%;
        margin: 0 0 10.666666666666668vw;
    }
    #top .tips .ctt .item{
        display: block;
        max-width: 42.6666666666666666667vw;
        width: 100%;
    }
    #top .tips .ctt .item .img{
        position: relative;
        width: 42.6666666666666666667vw;
        height: 22.666666666666664vw;
        overflow: hidden;
        margin: 0 0 5.3333333333333334vw;
    }
    #top .tips .ctt .item .is-demo{
        border: 1px solid #efefef;
    }
    #top .tips .ctt .item img{
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        display: block;
        width: 100%;
        height: auto;
    }
    #top .tips .ctt .item .txt .cat{
        display: inline-block;
        font-size: 3.4666666666666663vw;
        font-weight: 500;
        letter-spacing: 0;
        padding: 0.266666666666667vw 2.66666666666666667vw 0.8vw;
        margin: 0 0 4vw;
        color: #000;
        border: 1px solid #000000;
    }
    #top .tips .ctt .item .txt .ttl{
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 4vw;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 1.47;
        margin: 0 0 5.33333333333334vw;
        color: #000;
    }
    #top .tips .ctt .item .txt .date{
        font-size: 3.73333333333333334vw;
        font-family: "Heebo", sans-serif;
        font-weight: 500;
        letter-spacing: 0;
        color: #000;
        margin: 0;
    }
    #top .tips .btn a{
        position: relative;
        display: block;
        font-size: 4.8vw;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0;
        text-decoration: none;
        max-width: 80vw;
        width: 100%;
        padding: 4vw 0 4.8vw;
        margin: 0 auto;
        color: #fff;
        background-color: #EC572E;
        border-radius: 100vw;
        transition: all .3s;
    }
    #top .tips .btn a:hover{
        opacity: 0.7;
    }
    #top .tips .btn a::before{
        content: "";
        width: 5.33333333333333334vw;
        height: 5.33333333333333334vw;
        background-image: url(../img/top/btn_arrow.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        top: 50%;
        right: 2.6666666666666667vw;
        transform: translateY(-50%);
    }
}


/* page
------------------------------*/
#page .mv{
    padding: 120px 0;
    color: #fff;
    background-image: url(../img/page/page-mv_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#page .mv .label{
    position: relative;
    display: block;
    font-size: 23px;
    font-family: "Manrope", sans-serif;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.87;
    max-width: 230px;
    width: 100%;
    margin: 0 auto 12px;
}
#page .mv h1{
    font-size: 65px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0;
    margin: 0 auto 20px;
}
#page .mv p{
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0;
    line-height: 1.47;
    margin: 0;
}
@media only screen and (max-width: 768px) {
    #page .mv{
        padding: 9.33333333333333334vw 0;
        color: #fff;
        background-image: url(../img/page/page-mv_bg.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    #page .mv .label{
        position: relative;
        display: block;
        font-size: 3.73333333333333334vw;
        font-family: "Manrope", sans-serif;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0.01em;
        line-height: 1.87;
        color: #fff;
        max-width: 37.333334vw;
        width: 100%;
        margin: 0 auto 2.66666666666667vw;
    }
    #page .mv .label .corner{
        position: absolute;
        width: 2.133333333333336vw;
        height: 2.133333333333336vw;
        overflow: hidden;
    }
    #page .mv .label .corner-topleft{
        top: 0;
        left: 0;
        border-top: 1px solid #EC572E;
        border-left: 1px solid #EC572E;
    }
    #page .mv .label .corner-bottomright{
        bottom: 0;
        right: 0;
        border-bottom: 1px solid #EC572E;
        border-right: 1px solid #EC572E;
    }
    #page .mv h1{
        font-size: 8vw;
        font-weight: 800;
        text-align: center;
        letter-spacing: 0;
        margin: 0 0 5.3333333333333333334vw;
    }
    #page .mv p{
        font-size: 4vw;
        font-weight: 600;
        text-align: center;
        letter-spacing: 0;
        line-height: 1.47;
        margin: 0;
    }
}


/* 買取の流れ flow */
.flow{
    background-color: #EFEFEF;
}
.flow .page-link{
    padding-top: 120px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
}
.flow .page-link .link{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 540px;
    width: 100%;
    padding: 32px 0;
    margin: 0;
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0;
    color: #fff;
    background-color: #000000;
}
.flow .page-link .link::before{
    position: absolute;
    top: 50%;
    right: 45px;
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    border-right: 2px solid #Fff;
    border-bottom: 2px solid #Fff;
    transform: translateY(-50%) rotate(45deg);
    transition: all .3s;
    margin: 0;
}
@media only screen and (max-width: 768px) {
    .flow .page-link{
        padding-top: 12vw;
        display: flex;
        justify-content: center;
        align-items: stretch;
        gap: 2.6666666666667vw;
    }
    .flow .page-link .link{
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 42.66666666666667vw;
        width: 100%;
        padding: 4vw 0;
        margin: 0;
        font-size: 4vw;
        font-weight: 600;
        text-align: center;
        letter-spacing: 0;
        color: #fff;
        background-color: #000000;
    }
    .flow .page-link .link::before{
        position: absolute;
        top: 50%;
        right: 2.66666666666666667vw;
        content: "";
        display: inline-block;
        width: 1.33333333335vw;
        height: 1.33333333333335vw;
        border-right: 2px solid #Fff;
        border-bottom: 2px solid #Fff;
        transform: translateY(-50%) rotate(45deg);
        transition: all .3s;
        margin: 0;
    }
}

.flow .common-flow{
    padding: 120px 0 145px;
}
.flow .common-flow .ttl_area{
    margin: 0 0 60px;
}
.flow .common-flow .ttl_area h2{
    font-size: 65px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0;
    line-height: 1.66;
    margin: 0 0 20px;
    color: #000000;
}
.flow .common-flow .ttl_area h2 span{
    color: #EC572E;
}
.flow .common-flow .ttl_area p{
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.02em;
    line-height: 1.56;
    margin: 0;
}
.flow .common-flow .step-item{
    position: relative;
    padding: 50px;
    margin: 0 0 90px;
    background-color: #fff;
}
.flow .common-flow .step-item:last-of-type{
    margin: 0;
}
.flow .common-flow .step-item::before{
    content: "";
    position: absolute;
    bottom: -100px;
    left: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 35px 40px;
    border-color: #F86D16 transparent transparent transparent;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.flow .common-flow .step-item:last-of-type::before{
    display: none;
}
.flow .common-flow .step-item .ctt-flex{
    display: flex;
    gap: 54px;
}
.flow .common-flow .step-item .ctt-flex .img{
    flex-shrink: 0;
}
.flow .common-flow .step-item .ctt-flex .img img{
    display: block;
    max-width: 400px;
    width: 100%;
}
.flow .common-flow .step-item .ctt-flex .txt{
    flex: 1;
}
.flow .common-flow .step-item .ctt-flex .txt .item-ttl{
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0 0 5px;
}
.flow .common-flow .step-item .ctt-flex .txt .item-ttl .step_number{
    font-size: 25px;
    font-family: "Heebo", sans-serif;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin: 0;
    color: #EC572E;
}
.flow .common-flow .step-item .ctt-flex .txt .item-ttl .step_number span{
    font-size: 40px;
}
.flow .common-flow .step-item .ctt-flex .txt .item-ttl h3{
    display: block;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 0;
    padding-bottom: 6px;
    color: #000000;
}
.flow .common-flow .step-item .ctt-flex .txt .note{
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.65;
    color: #000000;
    margin: 0;
}
.flow .common-flow .step-item .ctt-flex .txt .link-area{
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 40px 0 0;
}
.flow .common-flow .step-item .ctt-flex .txt .link-area .tell{
    display: block;
    max-width: 260px;
    width: 100%;
}
.flow .common-flow .step-item .ctt-flex .txt .link-area .tell img{
    display: block;
    max-width: 260px;
    width: 100%;
    margin: 0 0 8px;   
}
.flow .common-flow .step-item .ctt-flex .txt .link-area .tell span{
    display: block;
    font-size: 14px;
    font-family: "Albert Sans", sans-serif;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0;
    color: #08080B;
}
.flow .common-flow .step-item .ctt-flex .txt .link-area .form{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 350px;
    width: 100%;
    padding: 21px 0 19px;
    gap: 10px;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1.32;
    margin: 0;
    color: #fff;
    background: linear-gradient(
        to bottom,
        #D00413 0%,
        #D00413 50%,
        #C00614 51%,
        #C00614 100%
    );
    box-shadow: 0 6px 0 #A4000D;
    transition: all .3s;
}
.flow .common-flow .step-item .ctt-flex .txt .link-area .form::before{
    content: "";
    width: 40px;
    height: 34px;
    background-image: url(../img/page/form-icon.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.flow .common-flow .step-item .ctt-flex .txt .link-area .form:hover{
    opacity: 1;
    box-shadow: 0 1px 0 #A4000D;
    transform: translateY(5px);
}
.flow .common-flow .step-item .ctt-flex .txt .b-info{
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.67;
    padding: 20px 20px 25px;
    margin: 30px 0 0;
    color: #fff;
    background-color: #121212;
    border-radius: 5px;
}
.flow .common-flow .step-item .supplement-note{
    padding: 45px;
    margin: 50px 0 0;
    background-color: #F8F8F8;
}
.flow .common-flow .step-item .supplement-note .flex{
    display: flex;
    gap: 45px;
}
.flow .common-flow .step-item .supplement-note .flex .txt{
    flex: 1;
}
.flow .common-flow .step-item .supplement-note .flex .img{
    flex-shrink: 0;
}
.flow .common-flow .step-item .supplement-note .flex .img img{
    display: block;
    max-width: 300px;
    width: 100%;
}
.flow .common-flow .step-item .supplement-note .sec:first-of-type{
    padding: 0 0 50px;
    margin: 0 0 40px;
    border-bottom: 1px solid #000000;
}
.flow .common-flow .step-item .supplement-note .sec:last-of-type{
    padding: 0;
    margin: 0;
    border: none;
}
.flow .common-flow .step-item .supplement-note .sec .bold{
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0;
    margin: 0 0 28px;
    color: #000;
}
.flow .common-flow .step-item .supplement-note .sec .note{
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.63;
    margin: 0;
    color: #000000;
}
.flow .common-flow .step-item .supplement-note .sec .note span{
    font-weight: 600;
}
.flow .common-flow .step-item .supplement-note .sec .note a{
    color: #0057CD;
    text-decoration: underline;
}
.flow .common-flow .step-item .supplement-note .sec .info{
    max-width: 650px;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.63;
    padding: 25px 20px;
    margin: 15px 0 28px;
    background-color: #fff;
    border: 1px solid #000000;
    border-radius: 5px;
}
.flow .common-flow .step-item .supplement-note .flex .info{
    margin: 30px 0 0;
}
.flow .common-flow .step-item .supplement-note .sec .info span{
    padding-left: 30px;
}
.flow .common-flow .step-item .supplement-note .sec .list-info{
    max-width: 650px;
    width: 100%;
    padding: 20px;
    margin: 20px 0 0;
    background-color: #fff;
    border: 1px solid #000000;
    border-radius: 5px;
}
.flow .common-flow .step-item .supplement-note .sec .list-info .sub-ttl{
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.47;
    margin: 0 0 24px;
}
.flow .common-flow .step-item .supplement-note .sec .list-info .list-p{
    display: flex;
    gap: 65px;
}
.flow .common-flow .step-item .supplement-note .sec .list-info .list-p p{
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.47;
    margin: 0;
}
@media only screen and (max-width: 768px) {
    .flow .common-flow{
        padding: 16vw 0;
    }
    .flow .common-flow .ttl_area{
        margin: 0 0 10.666666666668vw;
    }
    .flow .common-flow .ttl_area h2{
        font-size: 9.3333333333333334vw;
        font-weight: 800;
        text-align: center;
        letter-spacing: 0;
        line-height: 1.47;
        margin: 0 0 5.3333333333333333334vw;
        color: #000000;
    }
    .flow .common-flow .ttl_area h2 span{
        color: #EC572E;
    }
    .flow .common-flow .ttl_area p{
        font-size: 4.2666666666667vw;
        font-weight: 600;
        text-align: center;
        letter-spacing: 0;
        line-height: 1.47;
        margin: 0;
    }
    .flow .common-flow .step-item{
        position: relative;
        padding: 5.3333333333vw;
        margin: 0 0 16vw;
        background-color: #fff;
    }
    .flow .common-flow .step-item:last-of-type{
        margin: 0;
    }
    .flow .common-flow .step-item::before{
        content: "";
        position: absolute;
        bottom: -18.6666666666668vw;
        left: 50%;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 6.6666666666667vw 8vw;
        border-color: #F86D16 transparent transparent transparent;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .flow .common-flow .step-item:last-of-type::before{
        display: none;
    }
    .flow .common-flow .step-item .ctt-flex{
        display: flex;
        flex-wrap: wrap;
        gap: 5.3333333333334vw;
    }
    .flow .common-flow .step-item .ctt-flex .img{
        display: block;
        width: 100%;
        flex-shrink: 0;
    }
    .flow .common-flow .step-item .ctt-flex .img img{
        display: block;
        max-width: none;
        width: 100%;
    }
    .flow .common-flow .step-item .ctt-flex .txt{
        flex: 1;
    }
    .flow .common-flow .step-item .ctt-flex .txt .item-ttl{
        display: flex;
        flex-wrap: wrap;
        gap: 1.3333333333335vw;
        margin: 0 0 4vw;
    }
    .flow .common-flow .step-item .ctt-flex .txt .item-ttl .step_number{
        font-size: 4.26666666666666667vw;
        font-family: "Heebo", sans-serif;
        font-weight: bold;
        letter-spacing: 0.05em;
        margin: 0;
        color: #EC572E;
    }
    .flow .common-flow .step-item .ctt-flex .txt .item-ttl .step_number span{
        font-size: 6.4vw;
    }
    .flow .common-flow .step-item .ctt-flex .txt .item-ttl h3{
        display: block;
        font-size: 5.33333333333333334vw;
        font-weight: bold;
        letter-spacing: 0;
        padding-bottom: 0;
        color: #000000;
    }
    .flow .common-flow .step-item .ctt-flex .txt .note{
        font-size: 3.4666666666666667vw;
        font-weight: 500;
        letter-spacing: 0.02em;
        line-height: 1.65;
        color: #000000;
        margin: 0;
    }
    .flow .common-flow .step-item .ctt-flex .txt .link-area{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 5.33333333333334vw;
        margin: 8vw 0 0;
    }
    .flow .common-flow .step-item .ctt-flex .txt .link-area .tell{
        display: block;
        max-width: 69.33333333333334vw;
        width: 100%;
    }
    .flow .common-flow .step-item .ctt-flex .txt .link-area .tell img{
        display: block;
        max-width: 69.33333333333334vw;
        width: 100%;
        margin: 0 0 2.66666666666667vw;
    }
    .flow .common-flow .step-item .ctt-flex .txt .link-area .tell span{
        display: block;
        font-size: 3.7333333333333334vw;
        font-family: "Albert Sans", sans-serif;
        font-weight: 500;
        text-align: center;
        letter-spacing: 0;
        color: #08080B;
    }
    .flow .common-flow .step-item .ctt-flex .txt .link-area .form{
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: none;
        width: 100%;
        padding: 4vw 0 3.733333333333334vw;
        gap: 2.66666666666667vw;
        font-size: 4.8vw;
        font-weight: bold;
        letter-spacing: 0;
        line-height: 1.32;
        margin: 0;
        color: #fff;
        background: linear-gradient(
            to bottom,
            #D00413 0%,
            #D00413 50%,
            #C00614 51%,
            #C00614 100%
        );
        box-shadow: 0 5px 0 #A4000D;
        transition: all .3s;
    }
    .flow .common-flow .step-item .ctt-flex .txt .link-area .form::before{
        content: "";
        width: 8vw;
        height: 6.4vw;
        background-image: url(../img/page/form-icon.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .flow .common-flow .step-item .ctt-flex .txt .link-area .form:hover{
        opacity: 1;
        box-shadow: 0 1px 0 #A4000D;
        transform: translateY(4px);
    }
    .flow .common-flow .step-item .ctt-flex .txt .b-info{
        font-size: 3.733333333333334vw;
        font-weight: 500;
        letter-spacing: 0.02em;
        line-height: 1.47;
        padding: 4vw 4vw 4.8vw;
        margin: 6.66666666666667vw 0 0;
        color: #fff;
        background-color: #121212;
        border-radius: 5px;
    }
    .flow .common-flow .step-item .supplement-note{
        padding: 4vw;
        margin: 8vw 0 0;
        background-color: #F8F8F8;
    }
    .flow .common-flow .step-item .supplement-note .flex{
        display: flex;
        flex-direction: column-reverse;
        gap: 8vw;
    }
    .flow .common-flow .step-item .supplement-note .flex .txt{
        flex: 1;
    }
    .flow .common-flow .step-item .supplement-note .flex .img{
        flex-shrink: 0;
    }
    .flow .common-flow .step-item .supplement-note .flex .img img{
        display: block;
        max-width: none;
        width: 100%;
    }
    .flow .common-flow .step-item .supplement-note .sec:first-of-type{
        padding: 0 0 8vw;
        margin: 0 0 8vw;
        border-bottom: 1px solid #000000;
    }
    .flow .common-flow .step-item .supplement-note .sec:last-of-type{
        padding: 0;
        margin: 0;
        border: none;
    }
    .flow .common-flow .step-item .supplement-note .sec .bold{
        font-size: 5.33333333333334vw;
        font-weight: 600;
        letter-spacing: 0;
        margin: 0 0 4vw;
        color: #000;
    }
    .flow .common-flow .step-item .supplement-note .sec .note{
        font-size: 3.7333333333333334vw;
        font-weight: 400;
        letter-spacing: 0.02em;
        line-height: 1.63;
        margin: 0;
        color: #000000;
    }
    .flow .common-flow .step-item .supplement-note .sec .note span{
        font-weight: 600;
    }
    .flow .common-flow .step-item .supplement-note .sec .note a{
        color: #0057CD;
        text-decoration: underline;
    }
    .flow .common-flow .step-item .supplement-note .sec .info{
        max-width: none;
        width: 100%;
        font-size: 3.7333333333333333334vw;
        font-weight: 500;
        letter-spacing: 0.02em;
        line-height: 1.63;
        padding: 5.33333333333334vw 4vw;
        margin: 5.33333334vw 0 8vw;
        background-color: #fff;
        border: 1px solid #000000;
        border-radius: 5px;
    }
    .flow .common-flow .step-item .supplement-note .flex .info{
        margin: 5.3333333333334vw 0 0;
    }
    .flow .common-flow .step-item .supplement-note .sec .info span{
        padding-left: 1.33333333335vw;
    }
    .flow .common-flow .step-item .supplement-note .sec .list-info{
        max-width: none;
        width: 100%;
        padding: 4vw;
        margin: 5.333333333333334vw 0 0;
        background-color: #fff;
        border: 1px solid #000000;
        border-radius: 5px;
    }
    .flow .common-flow .step-item .supplement-note .sec .list-info .sub-ttl{
        font-size: 4.2666666666666667vw;
        font-weight: 600;
        letter-spacing: 0.02em;
        line-height: 1.47;
        margin: 0 0 5.333333333333334vw;
    }
    .flow .common-flow .step-item .supplement-note .sec .list-info .list-p{
        display: flex;
        flex-wrap: wrap;
        gap: 0 5.3333333333334vw;
    }
    .flow .common-flow .step-item .supplement-note .sec .list-info .list-p p{
        font-size: 3.7333333333333334vw;
        font-weight: 400;
        letter-spacing: 0.02em;
        line-height: 1.47;
        margin: 0;
    }
}


.qa .faq{
    padding: 120px 0 150px;
    background-color: #EFEFEF;
}
.qa .faq .ctt .item{
    display: block;
    background-color: #fff;
    border: 1px solid #D9D9D9;
    padding: 25px 50px;
    margin: 0 0 20px;
}
.qa .faq .ctt .item:last-of-type{
    margin: 0;
}
.qa .faq .ctt .item .question{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 0 25px;
    margin: 0 0 25px;
    border-bottom: 1px solid #D9D9D9;
}
.qa .faq .ctt .item .question span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 23px;
    font-family: "Manrope", sans-serif;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background-color: #EC572E;
    padding-bottom: 2px;
    flex-shrink: 0;
}
.qa .faq .ctt .item .question p{
    flex: 1;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0;
    margin: 0;
    color: #000;
}
.qa .faq .ctt .item .answer{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 0;
}
.qa .faq .ctt .item .answer span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 23px;
    font-family: "Manrope", sans-serif;
    font-weight: bold;
    text-align: center;
    color: #000;
    background-color: #fff;
    padding-bottom: 2px;
    flex-shrink: 0;
    border: 1px solid #000000;
}
.qa .faq .ctt .item .answer p{
    flex: 1;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.38;
    padding-top: 10px;
    margin: 0;
    color: #000;
}
@media only screen and (max-width: 768px) {
    .qa .faq{
        padding: 10.66666666668vw 0 16vw;
        background-color: #EFEFEF;
    }
    .qa .faq .ctt .item{
        display: block;
        background-color: #fff;
        border: 1px solid #D9D9D9;
        padding: 4vw;
        margin: 0 0 5.33333333333334vw;
    }
    .qa .faq .ctt .item:last-of-type{
        margin: 0;
    }
    .qa .faq .ctt .item .question{
        display: flex;
        gap: 2.6666666666666667vw;
        padding: 0 0 4vw;
        margin: 0 0 4vw;
        border-bottom: 1px solid #D9D9D9;
    }
    .qa .faq .ctt .item .question span{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 8vw;
        height: 8vw;
        border-radius: 50%;
        font-size: 5.33333333333333334vw;
        font-family: "Manrope", sans-serif;
        font-weight: bold;
        text-align: center;
        color: #fff;
        background-color: #EC572E;
        padding-bottom: 2px;
        flex-shrink: 0;
    }
    .qa .faq .ctt .item .question p{
        flex: 1;
        font-size: 4.8vw;
        font-weight: 600;
        letter-spacing: 0;
        line-height: 1.34;
        margin: 0;
        color: #000;
    }
    .qa .faq .ctt .item .answer{
        display: flex;
        align-items: flex-start;
        gap: 2.66666666666666667vw;
        margin: 0;
    }
    .qa .faq .ctt .item .answer span{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 8vw;
        height: 8vw;
        border-radius: 50%;
        font-size: 5.33333333333333334vw;
        font-family: "Manrope", sans-serif;
        font-weight: bold;
        text-align: center;
        color: #000;
        background-color: #fff;
        padding-bottom: 2px;
        flex-shrink: 0;
        border: 1px solid #000000;
    }
    .qa .faq .ctt .item .answer p{
        flex: 1;
        font-size: 4.26666666666666667vw;
        font-weight: 400;
        letter-spacing: 0.02em;
        line-height: 1.38;
        padding-top: 0;
        margin: 0;
        color: #000;
    }
}

/* 買取実績　一覧 */
#archive-results .mv{
    padding: 120px 0 115px;
    background-image: url(../img/column/mv_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    text-align: center;
}
#archive-results .mv p{
    display: inline-block;
    font-size: 17px;
    font-family: "Barlow", sans-serif;
    font-weight: bold;
    letter-spacing: 0.05em;
    padding: 0 0 6px;
    margin: 0 0 10px;
    border-bottom: 2px solid #fff;
}
#archive-results .mv h1{
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.08em;
}
#archive-results .ctt{
    padding: 30px 0 100px;
}
#archive-results .ctt .breadcrumbs{
    margin: 0 0 70px;
}
#archive-results .ctt .breadcrumbs span a,
#archive-results .ctt .breadcrumbs span span{
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #201B17;
}
#archive-results .ctt .breadcrumbs span a{
    transition: all .3s;
    margin-right: 12px;
}
#archive-results .ctt .breadcrumbs span span{
    margin-left: 12px;
}
#archive-results .ctt .breadcrumbs span a:hover{
    color: #B13C00;
}
#archive-results .ctt .article-area{
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 0 60px;
}
#archive-results .ctt .article-area .item{
    display: flex;
    gap: 30px;
    max-width: 590px;
    width: 100%;
    padding: 20px;
    background-color: #EFEFEF;
    box-shadow: 0 5px 0 #00000040;
    transition: all .3s;
}
#archive-results .ctt .article-area .item .img{
    position: relative;
    width: 220px;
    height: 180px;
    flex-shrink: 0;
    overflow: hidden;
}
#archive-results .ctt .article-area .item .img img{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    transition: all .3s;
}
#archive-results .ctt .article-area .item:hover .img img{
    opacity: 1;
    transform: scale(1.1);
}
#archive-results .ctt .article-area .item:hover .txt .ttl{
    text-decoration: underline;
}
#archive-results .ctt .article-area .item .txt{
    padding: 10px 0 0;
    flex: 1;
}
#archive-results .ctt .article-area .item .txt .date{
    display: block;
    font-size: 13px;
    font-family: "Heebo", sans-serif;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.46;
    margin: 0 0 10px;
    color: #000000;
}
#archive-results .ctt .article-area .item .txt .ttl{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 52px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.44;
    margin: 0 0 18px;
    color: #000000;
}
#archive-results .ctt .article-area .item .txt .price-area{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#archive-results .ctt .article-area .item .txt .price-area .p-ttl{
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.47;
    margin: 0;
    color: #EC572E;
}
#archive-results .ctt .article-area .item .txt .price-area .price{
    font-size: 30px;
    font-family: "Heebo", sans-serif;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1.47;
    margin: 0;
    color: #EC572E;
}
#archive-results .ctt .pagination{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
#archive-results .ctt .pagination .page-numbers{
    font-size: 18px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #121212;
    transition: all .3s;
}
#archive-results .ctt .pagination .page-numbers.next,
#archive-results .ctt .pagination .page-numbers.prev{
    font-size: 16px;
    font-family: "Noto Sans JP", sans-serif;
}
#archive-results .ctt .pagination .page-numbers.current{
    opacity: 1;
}
#archive-results .ctt .pagination a.page-numbers{
    opacity: 0.2;
}
#archive-results .ctt .pagination a.page-numbers:hover{
    opacity: 1;
}
@media only screen and (max-width: 768px) {
    #archive-results .mv{
        padding: 10% 0 8%;
        background-image: url(../img/column/mv_bg.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        color: #fff;
        text-align: center;
    }
    #archive-results .mv p{
        display: inline-block;
        font-size: 3.2vw;
        font-family: "Barlow", sans-serif;
        font-weight: bold;
        letter-spacing: 0.05em;
        padding: 0 0 1.066666666667vw;
        margin: 0 0 2.1333333333333333333333vw;
        border-bottom: 1px solid #fff;
    }
    #archive-results .mv h1{
        font-size: 6.6666666666666666667vw;
        font-weight: bold;
        text-align: center;
        letter-spacing: 0.08em;
    }
    #archive-results .ctt{
        padding: 8vw 0 16vw;
    }
    #archive-results .ctt .breadcrumbs{
        margin: 0 0 6.66666666666667vw;
    }
    #archive-results .ctt .breadcrumbs span a,
    #archive-results .ctt .breadcrumbs span span{
        font-size: 2.6666666666666667vw;
    }
    #archive-results .ctt .breadcrumbs span a{
        margin-right: 2.6666666666667vw;
    }
    #archive-results .ctt .breadcrumbs span span{
        margin-left: 2.6666666666667vw;
    }
    #archive-results .ctt .article-area{
        display: flex;
        align-items: stretch;
        flex-wrap: wrap;
        gap: 2.6666666666666667vw;
        margin: 0 0 10.6666666666666668vw;
    }
    #archive-results .ctt .article-area .item{
        display: flex;
        gap: 2.66666666666667vw;
        max-width: none;
        width: 100%;
        padding: 2.666666666666667vw;
        background-color: #EFEFEF;
        box-shadow: 0 4px 0 #00000040;
    }
    #archive-results .ctt .article-area .item .img{
        position: relative;
        width: 34.66666666666666666663vw;
        height: 34.66666666666666666663vw;
        flex-shrink: 0;
        overflow: hidden;
    }
    #archive-results .ctt .article-area .item .img img{
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
    }
    #archive-results .ctt .article-area .item .txt{
        padding: 1.333333333333333335vw 0 0;
        flex: 1;
    }
    #archive-results .ctt .article-area .item .txt .date{
        display: block;
        font-size: 3.2vw;
        font-family: "Heebo", sans-serif;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 1.46;
        margin: 0 0 2.6666666666667vw;
        color: #000000;
    }
    #archive-results .ctt .article-area .item .txt .ttl{
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
        min-height: 12vw;
        font-size: 4vw;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 1.44;
        margin: 0 0 2.66666666666667vw;
        color: #000000;
    }
    #archive-results .ctt .article-area .item .txt .price-area{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    #archive-results .ctt .article-area .item .txt .price-area .p-ttl{
        font-size: 3.73333333333334vw;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 1.47;
        margin: 0;
        color: #EC572E;
    }
    #archive-results .ctt .article-area .item .txt .price-area .price{
        font-size: 7.11111111111111136vw;
        font-family: "Heebo", sans-serif;
        font-weight: bold;
        letter-spacing: 0;
        line-height: 1.47;
        margin: 0;
        color: #EC572E;
    }
    #archive-results .ctt .pagination{
        flex-wrap: wrap;
        gap: 4.8vw;
    }
    #archive-results .ctt .pagination .page-numbers{
        font-size: 4.2666666666666666667vw;
    }
    #archive-results .ctt .pagination .page-numbers.next,
    #archive-results .ctt .pagination .page-numbers.prev{
        font-size: 4vw;
    }
}