@charset "utf-8";

/* 全体の設定 */
.content{
    font-family: "Noto Sans JP", sans-serif;
    overflow: hidden;
    color: #1A2C44;
    background-color: #F4F6F9;
}
.flex{
    display: flex;
    align-items: center;
}
.smf_br{
    display: none;
}
.inner{
    max-width: 1260px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}
.sp{
    display: none;
}

@media only screen and (max-width: 1024px) {
    .smf_br{
        display: block;
    }
    .inner{
        max-width: none;
        padding: 0 6.666666667vw;
    }
}
@media only screen and (max-width: 768px) {
    .pc{
        display: none !important;
    }
    .sp{
        display: block !important;
    }
}

/* font */
.manro{
    font-family: "Manrope", sans-serif;
}
.heebo{
    font-family: "Heebo", sans-serif;
}
.outfit{
    font-family: "Outfit", sans-serif;
}
.albert{
    font-family: "Albert Sans", sans-serif;
}

/* faide */
.fade {
  position: relative;
  overflow: hidden;
  z-index: 100;
}
/* .fade:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgb(1, 122, 170);
  transition: 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}
.fade.show:after {
  height: 0;
} */
.fade img {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.2s cubic-bezier(0.65, 0, 0.35, 1);
}
.fade.show img {
  opacity: 1;
  transform: translateY(0);
}

/* ふわふわアニメーション */
.yureru {
  animation: yureru 3s ease-in-out infinite alternate-reverse;
}
@keyframes yureru {
  0% {
    transform: translateY(-5%);
  }
  100% {
    transform: translateY(5%);
  }
}

/* bcn */
#bcn{
    padding: 28px 0 0;
}
#bcn .inner{
    max-width: 1300px;
}
#bcn .breadcrumbs{
    display: flex;
    align-items: center;
    gap: 40px;
}
#bcn .breadcrumbs .item{
    position: relative;
}
#bcn .breadcrumbs .item::after{
    content: "";
    width: 10px;
    height: 1px;
    background-color: #222222;
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
}
#bcn .breadcrumbs .item:last-of-type::after{
    display: none;
}
#bcn .breadcrumbs .item a,
#bcn .breadcrumbs .item p{
    font-size: 12px;
    letter-spacing: 0.06em;
    color: #222222;
}
#bcn .breadcrumbs .item a{
    padding: 0 2px;
    text-decoration: underline;
}
@media only screen and (max-width: 768px) {
    #bcn{
        padding: 15px 0 0;
        margin: 0 -2.66666666667vw;
    }
    #bcn .breadcrumbs{
        flex-wrap: wrap;
        gap: 10px 20px;
    }
    #bcn .breadcrumbs .item::after{
        width: 5px;
        right: -3.2vw;
    }
    #bcn .breadcrumbs .item a,
    #bcn .breadcrumbs .item p{
        font-size: 2.666666666666667vw;
        display: block;
    }
}


/* header
------------------------------*/
#header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 150;
    transition: all .3s;
}
#header.scrolled {
    background-color: #fff;
    transition: all .3s;
}
#header .header_ctt{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 37px 30px 30px 50px;
}
#header .header_ctt .logo .blue{
    display: none;
}
#header.scrolled .header_ctt .logo .white{
    display: none;
}
#header.scrolled .header_ctt .logo .blue{
    display: block;
}
#header .header_ctt .right_ctt{
    display: flex;
    align-items: center;
}
#header .header_ctt .right_ctt .header-list{
    display: flex;
    align-items: center;
    gap: 30px;
    margin-right: 55px;
}
#header .header_ctt .right_ctt .header-list>li a{
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.5;
    color: #FFFFFF;
    transition: all .3s;
}
#header .header_ctt .right_ctt .header-list>li a::before{
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #FFFFFF;
    opacity: 0;
    transition: all .3s;
}
#header .header_ctt .right_ctt .header-list>li a:hover,
#header .header_ctt .right_ctt .header-list>li a:hover::before{
    opacity: 1;
}
#header.scrolled .header_ctt .right_ctt .header-list>li a{
    color: #1A2C44;
}
#header.scrolled .header_ctt .right_ctt .header-list>li a::before{
    background-color: #679ED5;
}   
#header.scrolled .header_ctt .right_ctt .header-list>li a:hover{
    color: #679ED5;
}
#header .header_ctt .right_ctt .header-list .parent{
    position: relative;
}
#header .header_ctt .right_ctt .header-list .parent::before{
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #FFFFFF;
    opacity: 0;
    transition: all .3s;
}
#header .header_ctt .right_ctt .header-list .parent:hover::before{
    opacity: 1;
}
#header .header_ctt .right_ctt .header-list .parent a::before{
    display: none;
}
#header.scrolled .header_ctt .right_ctt .header-list .parent::before{
    background-color: #679ED5;
}   
#header.scrolled .header_ctt .right_ctt .header-list .parent:hover{
    color: #679ED5;
}
#header .header_ctt .right_ctt .header-list .parent .submenu{
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    min-width: 170px;
    max-width: 420px;
    width: max-content;
    background-color: #fff;
    padding: 36px 25px 32px;
    border: 1px solid #18549F;  
    border-radius: 10px;
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(5px);
    transform: translateX(-50%) translateY(5px);
    pointer-events: none;
    transition: all .3s;
}
#header.scrolled .header_ctt .right_ctt .header-list .parent .submenu{
    top: calc(100% + 65px);
}
#header .header_ctt .right_ctt .header-list .grid-4 .submenu{
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(4, auto);
    gap: 18px 30px;
    padding: 42px 64px 43px 30px;
}
#header .header_ctt .right_ctt .header-list .grid-4 .submenu li{
    margin: 0;
}
#header .header_ctt .right_ctt .header-list .parent:hover .submenu{
    opacity: 1;        
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
    z-index: 30;
}
#header .header_ctt .right_ctt .header-list li .submenu::before{
    content: "";
    width: 80px;
    height: 120px;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    z-index: -1;
}
#header.scrolled .header_ctt .right_ctt .header-list li .submenu::before{
    height: 140px;
    top: -80px;
    width: 100px;
}
#header .header_ctt .right_ctt .header-list .grid-4 .submenu::before{
    width: 110px;
}
#header .header_ctt .right_ctt .header-list li .submenu li{
    margin: 0 0 18px;
}
#header .header_ctt .right_ctt .header-list li .submenu li:last-child{
    margin: 0;
}
#header .header_ctt .right_ctt .header-list li .submenu li a{
    position: relative;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #1A2C44;
    transition: all .3s;
}
#header .header_ctt .right_ctt .header-list li .submenu li a::before{
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
    content: "";
    width: 8px;
    height: 8px;
    background-color: #0052B7;
    border-radius: 50%;
}
#header .header_ctt .right_ctt .header-list li .submenu li a:hover{
    color: #0052B7;
    opacity: 1;
    transform: translateX(10px);
}
#header .header_ctt .right_ctt .header-list li .submenu li a:hover::before{
    display: block;
}
#header .header_ctt .right_ctt .header-list .parent .arrow::before {
    content: '';
    position: absolute;
    top: calc(100% + 9px);
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid white;
    z-index: 32;
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(5px);
    transform: translateX(-50%) translateY(5px);
    pointer-events: none;
    transition: all .2s;
}
#header .header_ctt .right_ctt .header-list .parent .arrow::after {
    content: '';
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-bottom: 13px solid #005287;
    z-index: 31;
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(5px);
    transform: translateX(-50%) translateY(5px);
    pointer-events: none;
    transition: all .2s;
}
#header .header_ctt .right_ctt .header-list .parent:hover .arrow::before,
#header .header_ctt .right_ctt .header-list .parent:hover .arrow::after{
    opacity: 1;        
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}
#header.scrolled .header_ctt .right_ctt .header-list .parent .arrow::before {
    top: calc(100% + 54px);
}
#header.scrolled .header_ctt .right_ctt .header-list .parent .arrow::after {
    top: calc(100% + 53px);
}
#header .header_ctt .right_ctt .audit_area{
    position: relative;
    display: flex;
    align-items: stretch;
    margin-right: 70px;
}
#header .header_ctt .right_ctt .audit_area a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.4;
    width: 150px;
    height: 50px;
    border: 1px solid #111111;
}
#header .header_ctt .right_ctt .audit_area .line{
    border-radius: 100vw 0 0 100vw;
    color: #fff;
    background-color: #4EB968;
    border-right: none;
}
#header .header_ctt .right_ctt .audit_area .line::before{
    content: "";
    width: 25px;
    height: 24px;
    background-image: url(../img/common/line_icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#header .header_ctt .right_ctt .audit_area .online{
    border-radius: 0 100vw 100vw 0;
    color: #1A2C44;
    background-color: #FBCF2E;
}
#header .header_ctt .right_ctt .menu{
    position: relative;
    display: block;
    flex-shrink: 0;
    width: 50px;
    height: 45px;
    cursor: pointer;
    transition: all .3s;
    z-index: 100;
}
#header .header_ctt .right_ctt .menu::before{
    content: "";
    width: 2px;
    height: 60px;
    border-left: 2px dotted #fff;
    position: absolute;
    top: -12px;
    left: -30px;
    cursor: text;
}
#header.scrolled .header_ctt .right_ctt .menu::before{
    border-left: 2px dotted #1A2C44;
}
#header .header_ctt .right_ctt .menu.is-active::before{
    border: none;
}
#header .header_ctt .right_ctt .menu .line{
    position: relative;
    display: block;
    height: 14px;
    width: 100%;
    margin: 0 0 10px;
}
#header .header_ctt .right_ctt .menu .line span{
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
}
#header.scrolled .header_ctt .right_ctt .menu .line span{
    background-color: #1A2C44;
    transition: all .3s;
}
#header.scrolled .header_ctt .right_ctt .menu.is-active .line span{
    background-color: #fff;
}
#header .header_ctt .right_ctt .menu .line span:first-of-type{
    top: 0;
    left: 0;
    right: 0;
    transition: all .3s;
}
#header .header_ctt .right_ctt .menu .line span:last-of-type{
    bottom: 0;
    left: 0;
    right: 0;
    transition: all .3s;
}
#header .header_ctt .right_ctt .menu.is-active .line span:first-of-type{
    top: 50%;
    transform: translateY(-50%) rotate(30deg);
    transition: all .3s;
}
#header .header_ctt .right_ctt .menu.is-active .line span:last-of-type{
    top: 50%;
    transform: translateY(-50%) rotate(-30deg);
    transition: all .3s;
}
#header .header_ctt .right_ctt .menu p{
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.07em;
    line-height: 1.34;
    color: #fff;
}
#header.scrolled .header_ctt .right_ctt .menu p{
    color: #1A2C44;
}
#header.scrolled .header_ctt .right_ctt .menu.is-active p{
    color: #fff;
}
#header .navmn{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, z-index 0s linear 0.3s;
    visibility: hidden;
    z-index: -1;
    pointer-events: none;
}
#header .navmn.is-open{
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, z-index 0s;
    z-index: 99;
    pointer-events: auto;
}
#header .navmn .navmn_box{
    display: block;
    width: 100vw;
    height: 100vh;
    background-image: url(../img/top/top_mv.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#header .navmn .navmn_box .nav_ctt{
    padding: 21.5vh 0 0;
    display: flex;
    justify-content: space-between;
    color: #fff;
}
#header .navmn .navmn_box .nav_ctt .left_ctt .logo a img{
    display: block;
    margin: 0 0 50px;
}
#header .navmn .navmn_box .nav_ctt .left_ctt .sns_area{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin: 0 0 55px;
}
#header .navmn .navmn_box .nav_ctt .left_ctt .address{
    margin: 0 0 60px;
}
#header .navmn .navmn_box .nav_ctt .left_ctt .address .ttl{
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 20px;
}
#header .navmn .navmn_box .nav_ctt .left_ctt .address .ttl span{
    font-family: "Noto Sans JP", sans-serif;
}
#header .navmn .navmn_box .nav_ctt .left_ctt .address .note{
    font-size: 14px;
    line-height: 1.57;
    letter-spacing: 0.06em;
}
#header .navmn .navmn_box .nav_ctt .left_ctt .address .note-margin{
    margin: 30px 0 20px;
}
#header .navmn .navmn_box .nav_ctt .left_ctt .link_area{
    display: flex;
    align-items: center;
    gap: 42px;
}
#header .navmn .navmn_box .nav_ctt .left_ctt .link_area a{
    position: relative;
    display: block;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-decoration: underline;
}
#header .navmn .navmn_box .nav_ctt .left_ctt .link_area a:first-of-type::before{
    content: "";
    width: 1px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    right: -20px;
}
#header .navmn .navmn_box .nav_ctt .right_ctt{
    max-width: 630px;
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 92px 0;
}
#header .navmn .navmn_box .nav_ctt .right_ctt .item{
    width: calc(100% / 3);
}
#header .navmn .navmn_box .nav_ctt .right_ctt .item .ttl{
    position: relative;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding-bottom: 17px;
    margin-bottom: 30px;
}
#header .navmn .navmn_box .nav_ctt .right_ctt .item .ttl::before{
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    width: 20px;
    height: 1px;
    background-color: #2AA491;
}
#header .navmn .navmn_box .nav_ctt .right_ctt .item .list li a{
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 2.14;
}
#header .navmn .navmn_box .nav_ctt .right_ctt .item .list li a::before{
    content: "-";
}
#header .navmn .navmn_box .nav_ctt .right_ctt .item .not-deco li a::before{
    display: none;
}
@media only screen and (max-width: 1750px) {
    #header .navmn .navmn_box{ 
        overflow-y: scroll;
    }
}
@media only screen and (max-width: 1600px) {
    #header .header_ctt{
        padding: 37px 30px 30px 40px;
    }
    #header .header_ctt .right_ctt .header-list{
        gap: 20px;
        margin-right: 30px;
    }
    #header .header_ctt .right_ctt .header-list>li a{
        font-size: 15px;
    }
    #header .header_ctt .right_ctt .audit_area{
        margin-right: 40px;
    }
    #header .header_ctt .right_ctt .audit_area a{
        font-size: 14px;
        width: 140px;
        height: 45px;
    }
    #header .header_ctt .right_ctt .menu::before{
        height: 60px;
        top: -8px;
        left: -25px;
    }
}
@media only screen and (max-width: 768px) {
    #header .header_ctt{
        height: 16vw;
        padding: 0 4vw 0 5.33333333333334vw;
    }
    #header .header_ctt .logo{
        position: relative;
        z-index: 100;
    }
    #header.scrolled .header_ctt .logo.is-open .white{
        display: block !important;
    }
    #header.scrolled .header_ctt .logo.is-open .blue{
        display: none;
    }
    #header .header_ctt .logo img{
        display: block;
        max-width: 34.66666666666667vw;
        width: 100%;
    }
    #header .header_ctt .right_ctt .header-list,
    #header .header_ctt .right_ctt .audit_area{
        display: none;
    }
    #header .header_ctt .right_ctt .menu{
        width: 9.066666666666666vw;
        height: 8vw;
    }
    #header .header_ctt .right_ctt .menu::before{
        display: none;
    }
    #header .header_ctt .right_ctt .menu .line{
        height: 3.2vw;
        margin: 0 0 1.6vw;
    }
    #header .header_ctt .right_ctt .menu .line span{
        height: 2px;
    }
    #header .header_ctt .right_ctt .menu p{
        font-size: 2.6666666667vw;
    }
    #header .navmn{
        bottom: 0;
        overflow: hidden;
    }
    #header .navmn .navmn_box{
        height: 100vh;
        background-image: url(../img/common/sp_blue-bg.jpg);
        padding: 16vw 0 6.6666666666667vw;
    }
    #header .navmn .navmn_box .inner{
        overflow-y: scroll;
        height: 100vh;
        max-height: 100%;
        padding: 0 6.666666666667vw;
    }
    #header .navmn .navmn_box .nav_ctt{
        padding: 5.333333333333334vw 0 0;
        gap: 13.333333333333334vw;
        flex-direction: column-reverse;
    }
    #header .navmn .navmn_box .nav_ctt .left_ctt .info_area{
        margin: 0 0 11.200000000000000000001vw;
    }
    #header .navmn .navmn_box .nav_ctt .left_ctt .info_area .cta{
        width: 100%;
        background-color: #fff;
        border-radius: 5px;
        padding: 5.33333333334vw 5.8888888888886vw 6.6666666666667vw;
        margin: 0 0 2.66666666666667vw;
    }
    #header .navmn .navmn_box .nav_ctt .left_ctt .info_area .cta .txt{
        margin: 0 0 4.2666666666667vw;
        text-align: center;
    }
    #header .navmn .navmn_box .nav_ctt .left_ctt .info_area .cta .txt .note{
        font-size: 4.2666666666667vw;
        font-weight: bold;
        letter-spacing: 0.08em;
        line-height: 1.25;
        color: #222222;
    }
    #header .navmn .navmn_box .nav_ctt .left_ctt .info_area .cta .txt .note span{
        color: #0052B7;
    }
    #header .navmn .navmn_box .nav_ctt .left_ctt .info_area .cta .txt .tell{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.066666666666667vw;
        font-size: 8vw;
        font-weight: bold;
        letter-spacing: 0;
        color: #222222;
        margin: 0 auto 1.3333333333335vw;
    }
    #header .navmn .navmn_box .nav_ctt .left_ctt .info_area .cta .txt .tell::before{
        content: "";
        width: 6.6666666666666667vw;
        height: 6.66666666666666667vw;
        background-image: url(../img/top/top-cta_tell-icon.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    #header .navmn .navmn_box .nav_ctt .left_ctt .info_area .cta .txt .time{
        font-size: 12x;
        font-weight: 500;
        letter-spacing: 0.08em;
        color: #222222;
        margin-top: -1.6vw;
    }
    #header .navmn .navmn_box .nav_ctt .left_ctt .info_area .cta .fl-btn a{
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 74.66666666666667vw;
        width: 100%;
        height: 16vw;
        font-size: 4.8vw;
        font-weight: 600;
        text-align: center;
        letter-spacing: 0.06em;
        line-height: 1.61;
        border: 1px solid #222222;
        border-radius: 5px;
    }
    #header .navmn .navmn_box .nav_ctt .left_ctt .info_area .cta .fl-btn .online{
        gap: 2.6666666666667vw;
        margin: 0 0 1.3333333333335vw;
        color: #222222;
        background-color: #FBCF2E;
    }
    #header .navmn .navmn_box .nav_ctt .left_ctt .info_area .cta .fl-btn .online::before{
        content: "";
        width: 7.466666666666668vw;
        height: 6.4vw;
        background-image: url(../img/top/top-cta_online-icon.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    #header .navmn .navmn_box .nav_ctt .left_ctt .info_area .cta .fl-btn .line{
        gap: 4vw;
        color: #fff;
        background-color: #2AA43E;
    }
    #header .navmn .navmn_box .nav_ctt .left_ctt .info_area .cta .fl-btn .line::before{
        content: "";
        width: 9.066666666666666vw;
        height: 8.533333333333333vw;
        background-image: url(../img/top/top-cta_line-icon.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    #header .navmn .navmn_box .nav_ctt .left_ctt .info_area .page_link{
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        gap: 2.6666666666667vw;
    }
    #header .navmn .navmn_box .nav_ctt .left_ctt .info_area .page_link a{
        padding: 4.266666666666667vw 0 2.6666666666667vw;
        width: calc(100% / 3);
        border-radius: 5px;
        box-shadow: 5px 5px 0 rgba(0, 0, 0,0.1);
        background-color: #fff;
    }
    #header .navmn .navmn_box .nav_ctt .left_ctt .info_area .page_link a .icon{
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 9.6vw;
        margin: 0 auto 1.066666666666666667vw;
    }
    #header .navmn .navmn_box .nav_ctt .left_ctt .info_area .page_link .store .icon img{
        max-width: 10.4vw;
    }
    #header .navmn .navmn_box .nav_ctt .left_ctt .info_area .page_link .delivery .icon img{
        max-width: 11.466666666666667vw;
    }
    #header .navmn .navmn_box .nav_ctt .left_ctt .info_area .page_link .visit .icon img{
        max-width: 9.6vw;
    }
    #header .navmn .navmn_box .nav_ctt .left_ctt .info_area .page_link a .txt{
        font-size: 13px;
        font-weight: 600;
        text-align: center;
        letter-spacing: 0.1em;
        color: #0052B7;
    }
    #header .navmn .navmn_box .nav_ctt .left_ctt .address .note-margin,
    #header .navmn .navmn_box .nav_ctt .left_ctt .link_area{
        display: none;
    }
    #header .navmn .navmn_box .nav_ctt .left_ctt .logo a img{
        max-width: 64vw;
        margin: 0 auto 7.466666666666668vw;
    }
    #header .navmn .navmn_box .nav_ctt .left_ctt .sns_area{
        justify-content: center;
        gap: 2.66666666666667vw;
        margin: 0 0 9.6vw;
    }
    #header .navmn .navmn_box .nav_ctt .left_ctt .address{
        margin: 0;
    }
    #header .navmn .navmn_box .nav_ctt .left_ctt .address .ttl{
        font-size: 4.8vw;
        text-align: center;
        margin: 0 0 4vw;
    }
    #header .navmn .navmn_box .nav_ctt .left_ctt .address .note{
        font-size: 3.466666666666663vw;
        text-align: center;
        margin-bottom: 6.66666666666667vw;
    }
    #header .navmn .navmn_box .nav_ctt .right_ctt{
        max-width: none;
        flex-wrap: wrap;
        flex-direction: column;
        gap: 0;
    }
    #header .navmn .navmn_box .nav_ctt .right_ctt .item{
        width: 100%;
        padding: 5.066666666666666vw 0 5.600000000000005vw;
        border-bottom: 1px solid #306FBC;
    }
    #header .navmn .navmn_box .nav_ctt .right_ctt .item .ttl{
        position: relative;
        font-size: 4.533333333333333vw;
        padding: 0;
        margin: 0;
    }
    #header .navmn .navmn_box .nav_ctt .right_ctt .item .ttl::before{
        display: none;
    }
    #header .navmn .navmn_box .nav_ctt .right_ctt .item .ttl .plus{
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        content: "";
        width: 2.4vw;
        height: 2.4vw;
    }
    #header .navmn .navmn_box .nav_ctt .right_ctt .item .ttl .plus:before,
    #header .navmn .navmn_box .nav_ctt .right_ctt .item .ttl .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 .nav_ctt .right_ctt .item .ttl .plus:before{
        transform: rotate(90deg);
    }
    #header .navmn .navmn_box .nav_ctt .right_ctt .item.sp-acc .ttl .plus:after{
        transform: rotate(0);
    }
    #header .navmn .navmn_box .nav_ctt .right_ctt .item .ttl.active .plus:before{
        transform: rotate(0);
    }
    #header .navmn .navmn_box .nav_ctt .right_ctt .item .list{
        display: none;
        padding: 8vw 0 5.33333334vw 8vw;
    }
    #header .navmn .navmn_box .nav_ctt .right_ctt .item .list li a{
        font-size: 3.73333333333334vw;
        line-height: 3;
    }
}


/* footer
------------------------------*/
.contact-cta{
    background-color: #0052B7;
    color: #fff;
}
.contact-cta .ctt_flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 300px;
}
.contact-cta .ctt_flex .child{
    flex: 1;
}
.contact-cta .ctt_flex .ttl_area .ttl{
    font-size: 50px;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.2;
    margin: 0 0 22px;
}
.contact-cta .ctt_flex .ttl_area .note{
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.73;
}
.contact-cta .ctt_flex .tell_area{
    position: relative;
}
.contact-cta .ctt_flex .tell_area::before,
.contact-cta .ctt_flex .tell_area::after{
    content: "";
    width: 1px;
    height: 240px;
    background-color: #4272AD;
    position: absolute;
    top: -46px;
    transform: translateX(-50%);
}
.contact-cta .ctt_flex .tell_area::before{
    left: 0;
}
.contact-cta .ctt_flex .tell_area::after{
    right: 0;
}
.contact-cta .ctt_flex .tell_area .top_txt{
    margin: 0 auto 20px;
}
.contact-cta .ctt_flex .tell_area .top_txt p{
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.06em;
    margin: 0 auto 9px;
}
.contact-cta .ctt_flex .tell_area .top_txt span{
    display: block;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.04em;
}
.contact-cta .ctt_flex .tell_area .ttl{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 41px;
    font-weight: 600;
    letter-spacing: 0;
}
.contact-cta .ctt_flex .tell_area .ttl::before{
    content: "";
    width: 23px;
    height: 23px;
    background-image: url(../img/common/tell_icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: rotate(12deg);
}
.contact-cta .ctt_flex .tell_area .small{
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-align: center;
}
.contact-cta .ctt_flex .mail_area .top_txt{
    margin: 0 auto 26px;
}
.contact-cta .ctt_flex .mail_area .top_txt p{
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.06em;
    margin: 0 auto 9px;
}
.contact-cta .ctt_flex .mail_area .top_txt span{
    display: block;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.04em;
}
.contact-cta .ctt_flex .mail_area .btn a{
    padding: 17px 0 19px;
    max-width: 270px;
}
@media only screen and (max-width: 768px) {
    .contact-cta{
        padding: 13.3333333334vw 0 16vw;
    }
    .contact-cta .ctt_flex{
        flex-wrap: wrap;
        flex-direction: column;
        height: auto;
    }
    .contact-cta .ctt_flex .child{
        width: 100%;
    }
    .contact-cta .ctt_flex .ttl_area {
        margin: 0 0 12.8vw;
    }
    .contact-cta .ctt_flex .ttl_area .ttl{
        font-size: 10.666666666668vw;
        text-align: center;
        margin: 0 0 6.66666666667vw;
    }
    .contact-cta .ctt_flex .ttl_area .note{
        font-size: 4vw;
        text-align: center;
        line-height: 1.73;
        margin: 0 -5px;
    }
    .contact-cta .ctt_flex .tell_area{
        padding: 8vw 0;
        margin: 0 0 8vw;
        border-top: 1px solid #4272AD;
        border-bottom: 1px solid #4272AD;
    }
    .contact-cta .ctt_flex .tell_area::before,
    .contact-cta .ctt_flex .tell_area::after{
        display: none;
    }
    .contact-cta .ctt_flex .tell_area .top_txt{
        margin: 0 auto 6.4vw;
    }
    .contact-cta .ctt_flex .tell_area .top_txt p{
        font-size: 4.8vw;
        margin: 0 auto 3.2vw;
    }
    .contact-cta .ctt_flex .tell_area .top_txt span{
        font-size: 3.466666666663vw;
    }
    .contact-cta .ctt_flex .tell_area .ttl{
        gap: 1.33333333333335vw;
        font-size: 9.6vw;
    }
    .contact-cta .ctt_flex .tell_area .ttl::before{
        width: 5.33333333334vw;
        height: 5.33333333334vw;
    }
    .contact-cta .ctt_flex .tell_area .small{
        font-size: 3.2vw;
        margin: -1.06666666666667vw auto 0;
    }
    .contact-cta .ctt_flex .mail_area .top_txt{
        margin: 0 auto 5.33333334vw;
    }
    .contact-cta .ctt_flex .mail_area .top_txt p{
        font-size: 4.8vw;
        margin: 0 auto 3.2vw;
    }
    .contact-cta .ctt_flex .mail_area .top_txt span{
        font-size: 3.466666666663vw;
    }
    .contact-cta .ctt_flex .mail_area .btn a{
        padding: 3.733333333334vw 0 4vw;
        max-width: 80vw;
        width: 100%;
    }
}

#footer{
    position: relative;
    padding: 115px 0 125px;
    background-color: #191919;
    color: #fff;
}
#footer .footer_ctt{
    display: flex;
    justify-content: space-between;
}
#footer .footer_ctt .left_ctt .logo a img{
    display: block;
    margin: 0 0 50px;
}
#footer .footer_ctt .left_ctt .sns_area{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin: 0 0 55px;
}
#footer .footer_ctt .left_ctt .address{
    margin: 0 0 60px;
}
#footer .footer_ctt .left_ctt .address .ttl{
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 20px;
}
#footer .footer_ctt .left_ctt .address .ttl span{
    font-family: "Noto Sans JP", sans-serif;
}
#footer .footer_ctt .left_ctt .address .note{
    font-size: 14px;
    line-height: 1.57;
    letter-spacing: 0.06em;
}
#footer .footer_ctt .left_ctt .address .note-margin{
    margin: 30px 0 20px;
}
#footer .footer_ctt .left_ctt small{
    font-size: 12px;
    letter-spacing: 0;
    margin-left: 15px;
}
#footer .footer_ctt .left_ctt .link_area{
    display: flex;
    align-items: center;
    gap: 42px;
}
#footer .footer_ctt .left_ctt .link_area a{
    position: relative;
    display: block;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-decoration: underline;
}
#footer .footer_ctt .left_ctt .link_area a:first-of-type::before{
    content: "";
    width: 1px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    right: -20px;
}
#footer .footer_ctt .right_ctt{
    max-width: 630px;
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 92px 0;
}
#footer .footer_ctt .right_ctt .item{
    width: calc(100% / 3);
}
#footer .footer_ctt .right_ctt .item .ttl{
    position: relative;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding-bottom: 17px;
    margin-bottom: 30px;
}
#footer .footer_ctt .right_ctt .item .ttl::before{
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    width: 20px;
    height: 1px;
    background-color: #2AA491;
}
#footer .footer_ctt .right_ctt .item .list li a{
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 2.14;
}
#footer .footer_ctt .right_ctt .item .list li a::before{
    content: "-";
}
#footer .footer_ctt .right_ctt .item .not-deco li a::before{
    display: none;
}
@media only screen and (max-width: 768px) {
    #footer{
        position: relative;
        padding: 10.66666666666668vw 0 0;
        margin-bottom: 60px;
        overflow: hidden;
    }
    #footer::before{
        content: "";
        width: 100%;
        height: 1px;
        background-color: #3B3B3B;
        position: absolute;
        bottom: 14.399999999999999vw;
        left: 0;
        z-index: 10;
    }
    #footer .footer_ctt{
        gap: 16vw;
        flex-direction: column-reverse;
    }
    #footer .footer_ctt .left_ctt .info_area{
        margin: 0 0 11.200000000000000000001vw;
    }
    #footer .footer_ctt .left_ctt .info_area .cta{
        width: 100%;
        background-color: #fff;
        border-radius: 5px;
        padding: 5.33333333334vw 5.8888888888886vw 6.6666666666667vw;
        margin: 0 0 2.66666666666667vw;
    }
    #footer .footer_ctt .left_ctt .info_area .cta .txt{
        margin: 0 0 4.2666666666667vw;
        text-align: center;
    }
    #footer .footer_ctt .left_ctt .info_area .cta .txt .note{
        font-size: 4.2666666666667vw;
        font-weight: bold;
        letter-spacing: 0.08em;
        line-height: 1.25;
        color: #222222;
    }
    #footer .footer_ctt .left_ctt .info_area .cta .txt .note span{
        color: #0052B7;
    }
    #footer .footer_ctt .left_ctt .info_area .cta .txt .tell{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.066666666666667vw;
        font-size: 9.3333333333333334vw;
        font-weight: bold;
        letter-spacing: 0;
        color: #222222;
    }
    #footer .footer_ctt .left_ctt .info_area .cta .txt .tell::before{
        content: "";
        width: 6.6666666666666667vw;
        height: 6.66666666666666667vw;
        background-image: url(../img/top/top-cta_tell-icon.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    #footer .footer_ctt .left_ctt .info_area .cta .txt .time{
        font-size: 12x;
        font-weight: 500;
        letter-spacing: 0.08em;
        color: #222222;
        margin-top: -1.6vw;
    }
    #footer .footer_ctt .left_ctt .info_area .cta .fl-btn a{
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 74.66666666666667vw;
        width: 100%;
        height: 16vw;
        font-size: 4.8vw;
        font-weight: 600;
        text-align: center;
        letter-spacing: 0.06em;
        line-height: 1.61;
        border: 1px solid #222222;
        border-radius: 5px;
    }
    #footer .footer_ctt .left_ctt .info_area .cta .fl-btn .online{
        gap: 2.6666666666667vw;
        margin: 0 0 1.3333333333335vw;
        color: #222222;
        background-color: #FBCF2E;
    }
    #footer .footer_ctt .left_ctt .info_area .cta .fl-btn .online::before{
        content: "";
        width: 7.466666666666668vw;
        height: 6.4vw;
        background-image: url(../img/top/top-cta_online-icon.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    #footer .footer_ctt .left_ctt .info_area .cta .fl-btn .line{
        gap: 4vw;
        color: #fff;
        background-color: #2AA43E;
    }
    #footer .footer_ctt .left_ctt .info_area .cta .fl-btn .line::before{
        content: "";
        width: 9.066666666666666vw;
        height: 8.533333333333333vw;
        background-image: url(../img/top/top-cta_line-icon.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    #footer .footer_ctt .left_ctt .info_area .page_link{
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        gap: 2.6666666666667vw;
    }
    #footer .footer_ctt .left_ctt .info_area .page_link a{
        padding: 4.266666666666667vw 0 2.6666666666667vw;
        width: calc(100% / 3);
        border-radius: 5px;
        box-shadow: 5px 5px 0 rgba(0, 0, 0,0.1);
        background-color: #fff;
    }
    #footer .footer_ctt .left_ctt .info_area .page_link a .icon{
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 9.6vw;
        margin: 0 auto 1.066666666666666667vw;
    }
    #footer .footer_ctt .left_ctt .info_area .page_link .store .icon img{
        max-width: 10.4vw;
    }
    #footer .footer_ctt .left_ctt .info_area .page_link .delivery .icon img{
        max-width: 11.466666666666667vw;
    }
    #footer .footer_ctt .left_ctt .info_area .page_link .visit .icon img{
        max-width: 9.6vw;
    }
    #footer .footer_ctt .left_ctt .info_area .page_link a .txt{
        font-size: 13px;
        font-weight: 600;
        text-align: center;
        letter-spacing: 0.1em;
        color: #0052B7;
    }
    #footer .footer_ctt .left_ctt .logo a img{
        max-width: 64vw;
        margin: 0 auto 7.466666666666668vw;
    }
    #footer .footer_ctt .left_ctt .sns_area{
        justify-content: center;
        gap: 2.66666666666667vw;
        margin: 0 0 9.6vw;
    }
    #footer .footer_ctt .left_ctt .address{
        margin: 0;
    }
    #footer .footer_ctt .left_ctt .address .ttl{
        font-size: 4.8vw;
        text-align: center;
        margin: 0 0 4vw;
    }
    #footer .footer_ctt .left_ctt .address .note{
        font-size: 3.466666666666663vw;
        text-align: center;
        margin-bottom: 6.66666666666667vw;
    }
    #footer .footer_ctt .left_ctt .address .note-margin{
        margin: 5.33333333334vw 0 9.33333333333334vw;
    }
    #footer .footer_ctt .left_ctt small{
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        font-size: 3.2vw;
        text-align: center;
        height: 14.399999999999999vw;
    }
    #footer .footer_ctt .left_ctt .link_area{
        justify-content: center;
        align-items: center;
        gap: 10.66666666666668vw;
        margin: 0 0 10.666666666668vw;
    }
    #footer .footer_ctt .left_ctt .link_area a{
        font-size: 3.733333333334vw;
    }
    #footer .footer_ctt .left_ctt .link_area a:first-of-type::before{
        right: -5.33333333334vw;
    }
    #footer .footer_ctt .right_ctt{
        max-width: none;
        flex-wrap: wrap;
        flex-direction: column;
        gap: 0;
    }
    #footer .footer_ctt .right_ctt .item{
        width: 100%;
        padding: 5.066666666666666vw 0 5.600000000000005vw;
        border-bottom: 1px solid #3B3B3B;
    }
    #footer .footer_ctt .right_ctt .item .ttl{
        position: relative;
        font-size: 4.533333333333333vw;
        padding: 0;
        margin: 0;
    }
    #footer .footer_ctt .right_ctt .item .ttl::before{
        display: none;
    }
    #footer .footer_ctt .right_ctt .item .ttl .plus{
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        content: "";
        width: 2.4vw;
        height: 2.4vw;
    }
    #footer .footer_ctt .right_ctt .item .ttl .plus:before,
    #footer .footer_ctt .right_ctt .item .ttl .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_ctt .right_ctt .item .ttl .plus:before{
        transform: rotate(90deg);
    }
    #footer .footer_ctt .right_ctt .item.sp-acc .ttl .plus:after{
        transform: rotate(0);
    }
    #footer .footer_ctt .right_ctt .item .ttl.active .plus:before{
        transform: rotate(0);
    }
    #footer .footer_ctt .right_ctt .item .list{
        display: none;
        padding: 8vw 0 5.33333334vw 8vw;
    }
    #footer .footer_ctt .right_ctt .item .list li a{
        font-size: 3.73333333333334vw;
        line-height: 3;
    }
}

.floating{
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: -285px;
    display: flex;
    align-items: stretch;
    border: 1px solid #1A5BAC;
    z-index: 101;
    border-radius: 10px 0 0 10px;
    transition: all .3s;
}
.floating.open{
    right: 0;
}
.floating .open{
    max-width: 60px;
    width: 100%;
    cursor: pointer;
}
.floating .open .txt{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 18px 18px 18px 16px;
    border-radius: 10px 0 0 0;
    background-color: #FFFFFF;
}
.floating .open .txt p{
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.14;
    writing-mode: vertical-rl;
    color: #1A5BAC;
}
.floating .open .arrow_link{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #1A5BAC;
    border-radius: 0 0 0 9px;
    border-left: 1px solid #1A5BAC;
    border-bottom: 1px solid #1A5BAC;
}
.floating .close_ctt{
    padding: 20px;
    background-color: #fff;
}
.floating .close_ctt .txt{
    margin: 0 auto 25px;
}
.floating .close_ctt .txt .tell{
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 33px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
}
.floating .close_ctt .txt .tell::before{
    content: "";
    width: 23px;
    height: 23px;
    background-image: url(../img/top/top-cta_tell-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all .3s;
}
.floating .close_ctt .txt .tell:hover{
    opacity: 1;
}
.floating .close_ctt .txt .tell:hover::before{
    opacity: 0.7;
}
.floating .close_ctt .txt .time{
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.08em;
}
.floating .close_ctt .fl-btn a{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 56px;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.04em;
    border-radius: 5px;
}
.floating .close_ctt .fl-btn .info{
    color: #fff;
    background-color: #1A5BAC;
    margin: 0 0 6px;
}
.floating .close_ctt .fl-btn .online{
    color: #2A2F4E;
    background-color: #FBCF2E;
    margin: 0 0 6px;
}
.floating .close_ctt .fl-btn .line{
    color: #fff;
    background-color: #2AA43E;
}
.floating .close_ctt .fl-btn .line::before{
    content: "";
    width: 34px;
    height: 33px;
    background-image: url(../img/top/top-cta_line-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.floating.sp{
    display: none;
}
@media only screen and (max-width: 768px) {
    .floating{
        position: fixed;
        top: auto;
        bottom: 0;
        right: 0;
        transform: none;
        border: none;
        width: 100%;
        opacity: 0;
        transition: all .3s;
    }
    .floating.scrolled{
        opacity: 1;
    }
    .floating .page-top{
        padding: 0 20px;
    }
    .floating .page-top a{
        max-width: 9.6vw;
        display: block;
        margin-left: auto;
        margin-bottom: 8vw;
    }
    .floating .btn_area{
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        flex: 1;
    }
    .floating .btn_area .fl-btn{
        flex: 1;
        width: calc(100%/3);
    }
    .floating .btn_area .fl-btn a{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        border: 1px solid #111111;
        border-right: none;
        height: 16vw;
        font-size: 3.73333334vw;
        font-weight: 500;
        text-align: center;
        letter-spacing: 0.04em;
    }
    .floating .btn_area .fl-btn .tell{
        background-color: #fff;
        color: #1A1A1A;
    }
    .floating .btn_area .fl-btn .tell::before{
        display: block;
        content: "";
        width: 4.8vw;
        height: 4.8vw;
        background-image: url(../img/top/top-cta_tell-icon.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        margin: 0 auto 1.066666666667vw;
    }
    .floating .btn_area .fl-btn .line{
        background-color: #4EB968;
        color: #FFF;
    }
    .floating .btn_area .fl-btn .line::before{
        display: block;
        content: "";
        width: 5.6000000000000005vw;
        height: 5.33333333333333334vw;
        background-image: url(../img/top/top-cta_line-icon.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        margin: 0 auto 0.8vw;
    }
    .floating .btn_area .fl-btn .online{
        color: #111;
        background-color: #FBCF2E;
        border-right: 1px solid #111;
    }
    .floating .btn_area .fl-btn .online::before{
        display: block;
        content: "";
        width: 5.866666666666666vw;
        height: 5.066666666666666vw;
        background-image: url(../img/top/top-cta_online-icon.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        margin: 0 auto 0.8vw;
    }
}

#page-top{
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 90;
}
#page-top a{
    transition: all .3s;
}
#page-top img{
    display: block;
    max-width: 60px;
    width: 100%;
}


/* 共通パーツ */
.btn a{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-align: center;
    color: #0052B7;
    background-color: #fff;
    border-radius: 100vw;
    margin: 0 auto;
    width: 100%;
    transition: all .3s;
}
.btn a:hover{
    color: #FFFFFF;
    background-color: #111111;
    border: none;
    opacity: 1;
}
.btn a .arrow{
    content: "";
    width: 10px;
    height: 8px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    transition: all .3s;
}
.btn a .arrow-normal{
    right: 20px;
    background-image: url(../img/common/contact_arrow.svg);
    opacity: 1;
}
.btn a .arrow-hover{
    right: 20px;
    background-image: url(../img/common/contact_arrow_hover.svg);
    opacity: 0;
    transform: translate(-10px, -50%);
}
.btn a:hover .arrow-normal {
    opacity: 0;
    transform: translate(10px, -50%);
}
.btn a:hover .arrow-hover {
    opacity: 1;
    transform: translate(0, -50%);
}
@media only screen and (max-width: 768px) {
    .btn a{
        font-size: 4vw;
    }
    .btn a .arrow{
        width: 2.666666666667vw;
        height: 2.133333333333333vw;
        right: 4vw;
    }
    .btn a .arrow-normal{
        right: 4vw;
    }
    .btn a .arrow-hover{
        right: 4vw;
    }
}


/* top
------------------------------*/
/* mv */
.top .mv{
    position: relative;
    background-image: url(../img/top/top_mv.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.top .mv .mv_inner{
    padding: 135px 0 18.89vh 2.7777777777777777vw;
    display: flex;
    justify-content: space-between;
    gap: 3.333333333333335vw;
}
.top .mv .left_ctt{
    position: relative;
}
.top .mv .left_ctt .mv_left_slide{
    position: relative;
    border-radius: 10px;
    width: 100%;
    max-width: 27.77777777777778vw;
    margin: 0 0 65px;
}
.top .mv .left_ctt .left_slide{
    max-width: 27.77777777777778vw;
    width: 100%;
    height: 28.888888888888886vw;
    overflow: hidden;
    border-radius: 10px;
}
.top .mv .left_ctt .left_slide .left_slide-img,
.top .mv .right_ctt .right_slide .right_slide-img{
    width: 100%;
    height: 100%;
    display: block;
}
.top .mv .left_ctt .left_slide .left_slide-img .vegas-slide{
    border: 1px solid #111111;
    border-radius: 10px;
}
.top .mv .right_ctt .right_slide .right_slide-img .vegas-slide{
    border: 1px solid #111111;
    border-radius: 10px 0 10px 0;
}
.top .mv .left_ctt .mv_left_slide .rotate{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -3.3333333333333335vw;
    right: -3.3333333333333335vw;
    z-index: 101;
    width: 6.555555555555556vw;
    height: 6.555555555555556vw;
    background-image: url(../img/top/mv_scroll-down.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    animation: rotateLoop 20s linear infinite;
    transform-origin: center center;
}
.top .mv .left_ctt .mv_left_slide .rotate .inner-en{
    content: "";
    width: 3.888888888888889vw;
    height: 3.888888888888889vw;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(10px) brightness(1.15);
    -webkit-backdrop-filter: blur(10px) brightness(1.15);
}
@keyframes rotateLoop {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.top .mv .right_ctt{
    max-width: 64.44444444444444vw;
    width: 100%;
}
.top .mv .right_ctt .mv_right_slide{
    position: relative;
    width: 100%;
}
.top .mv .right_ctt .mv_right_slide .right_slide{
    display: block;
    width: 100%;
    height: 41.11111111111111vw;
    border-radius: 10px 0 10px 0;
}
.top .mv .right_ctt .mv_right_slide .sake{
    position: absolute;
    bottom: -5.22222222222222222vw;
    left: -10.555555555555555vw;
    z-index: 100;
    max-width: 23.77777777777778vw;
}
.top .mv .right_ctt .mv_right_slide .sake img{
    display: block;
    width: 100%;
}
.top .mv .text-slider {
    position: absolute;
    bottom: 32px;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: 101;
    white-space: nowrap;
    width: 100%;
}
.top .mv .text-slider .slide-track {
    display: inline-block;
    animation: slide 70s linear infinite;
}
.top .mv .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 .mv{
        background-image: url(../img/top/top_mv_sp.jpg);
    }
    .top .mv .mv_inner{
        padding: 20vw 0 34.66666666666667vw 5.33333333334vw;
        display: block;
    }
    .top .mv .left_ctt .mv_left_slide{
        max-width: 50.66666666666667vw;
        margin: 0 0 6.66666666667vw;
    }
    .top .mv .left_ctt .left_slide{
        max-width: 50.66666666666667vw;
        height: 50.66666666666667vw;
        border-radius: 10px;
    }
    .top .mv .left_ctt .mv_left_slide .rotate{
        bottom: -8.533333333333333vw;
        right: -8.533333333333333vw;
        width: 17.333333333333336vw;
        height: 17.333333333333336vw;
    }
    .top .mv .left_ctt .mv_left_slide .rotate .inner-en{
        width: 10.4vw;
        height: 10.4vw;
    }
    .top .mv .right_ctt{
        max-width: none;
    }
    .top .mv .right_ctt .mv_right_slide .right_slide{
        height: 74.66666666666667vw;
    }
    .top .mv .right_ctt .mv_right_slide .sake{
        bottom: auto;
        left: auto;
        top: -53.333333333333336vw;
        right: 0;
        max-width: 48.8vw;
    }
    .top .mv .right_ctt .txt{
        position: absolute;
        left: 0;
        bottom: -8vw;
        max-width: 80.80000000000001vw;
        z-index: 102;
    }
    .top .mv .text-slider {
        bottom: 6.4vw;
    }
    .top .mv .text-slider .slide-track span {
        font-size: 13.333333333334vw;
    }
}


/* pickup */
.top .pickup{
    position: relative;
    padding: 35px 0 100px;
}
.top .pickup .bg{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    content: "";
    width: 100%;
    height: 7.777777777777778vw;
    background-image: url(../img/top/piukup_bg.svg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}
.top .pickup .inner{
    position: relative;
    z-index: 2;
}
.top .pickup .pickup_post_area{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(2, 75, 165, 0.1);
    padding: 0 35px 0 48px;
    margin: 0 auto 50px;
}
.top .pickup .pickup_post_area .post{
    display: flex;
    align-items: center;
    gap: 56px;
}
.top .pickup .pickup_post_area .post .in-ttl{
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.5;
    color: #0052B7;
}
.top .pickup .pickup_post_area .post .item{
    display: flex;
    align-items: center;
    gap: 40px;
}
.top .pickup .pickup_post_area .post .item .date{
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #2A2F4E;
}
.top .pickup .pickup_post_area .post .item .category{
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 80px;
    height: 30px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    margin-left: 15px;
    color: #Fff;
    background-color: #0052B7;
    border-radius: 100vw;
}
.top .pickup .pickup_post_area .post .item .ttl{
    font-size: 15px;
    letter-spacing: 0.06em;
    max-width: 410px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.top .pickup .pickup_post_area .btn{
    flex: 1;
}
.top .pickup .pickup_post_area .btn a{
    max-width: 170px;
    padding: 12px 0 13px;
    margin: 0 0 0 auto;
    border: 1px solid #2A2F4E;
    color: #2A2F4E;
}
.top .pickup .pickup_post_area .btn a .arrow-normal{
    background-image: url(../img/top/contact-arrow-gray.svg);
}
.top .pickup .pickup_post_area .btn a:hover{
    color: #fff;
}
.top .pickup .page_link_area{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 13px;
}
.top .pickup .page_link_area .item{
    flex: 1;
    max-width: 300px;
    width: 100%;
    max-height: 200px;
    height: 100%;
    padding: 26px 0 41px;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(24, 84, 159, 0.1);
}
.top .pickup .page_link_area .item .icon{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 71px;
    margin: 0 auto 31px;
}
.top .pickup .page_link_area .item .icon img{
    display: block;
    margin: 0 auto;
}
.top .pickup .page_link_area .item .ttl{
    font-size: 23px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.08em;
}
@media only screen and (max-width: 768px) {
    .top .pickup{
        padding: 0 0 14.933333333333335vw;
    }
    .top .pickup .pickup_post_area{
        display: block;
        height: auto;
        padding: 8vw 4vw;
        margin: 0 auto 8vw;
    }
    .top .pickup .pickup_post_area .sp_ttl{
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0 0 5.333333333334vw;
    }
    .top .pickup .pickup_post_area .sp_ttl .in-ttl{
        font-size: 5.8666666666666vw;
        letter-spacing: 0.04em;
        color: #0052B7;
    }
    .top .pickup .pickup_post_area .sp_ttl .btn a{
        max-width: 32vw;
        font-size: 3.2vw;
        font-weight: bold;
        padding: 1.6vw 0;
    }
    .top .pickup .pickup_post_area .sp_ttl .btn a .arrow{
        width: 2.00533333333333vw;
        height: 1.5706666666666667vw;
        right: 3.2vw;
    }
    .top .pickup .pickup_post_area .post{
        display: block;
    }
    .top .pickup .pickup_post_area .post .item{
        flex-wrap: wrap;
        gap: 4vw 5.3333333333334vw;
    }
    .top .pickup .pickup_post_area .post .item .date{
        font-size: 2.93333333333333vw;
    }
    .top .pickup .pickup_post_area .post .item .category{
        width: 17.066666666666666vw;
        height: 5.866666666666666vw;
        font-size: 2.6666666666667vw;
        margin-left: 0;
    }
    .top .pickup .pickup_post_area .post .item .ttl{
        width: 100%;
        font-size: 3.2lvw;
        max-width: none;
        overflow: auto;
        white-space: wrap;
    }
    .top .pickup .page_link_area{
        flex-wrap: wrap;
        justify-content: center;
        gap: 2.666666666667vw;
    }
    .top .pickup .page_link_area .item{
        flex: auto;
        max-width: 41.333333333333336vw;
        max-height: 32vw;
        padding: 6.133333333333333vw 0 4.53333333333333vw;
    }
    .top .pickup .page_link_area .item .icon{
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 12.533333333333333vw;
        margin: 0 auto 3.2vw;
    }
    .top .pickup .page_link_area .beg img{
        width: 12vw;
    }
    .top .pickup .page_link_area .aud img{
        width: 12.533333333333333vw;
    }
    .top .pickup .page_link_area .achiv img{
        width: 11.066666666666666vw;
    }
    .top .pickup .page_link_area .mar-pr img{
        width: 10.216vw;
    }
    .top .pickup .page_link_area .item .ttl{
        font-size: 3.733333333334vw;
    }

}


/* market-price */
.top .market-price{
    position: relative;
    padding: 0 0 134px;
    overflow: hidden;
}
.top .market-price .bg{
    position: absolute;
    top: 50px;
    left: 0;
    z-index: 1;
}
.top .market-price .inner{
    position: relative;
    z-index: 2;
    max-width: 1020px;
    padding: 0 10px;
    margin: 0 auto;
}
.top .market-price .ttl_area{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto 46px;
}
.top .market-price .ttl_area .ttl{
    display: flex;
    align-items: center;
    gap: 8px;
}
.top .market-price .ttl_area .ttl p{
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #1A2C44;
}
.top .market-price .ttl_area .up-date{
    font-size: 15px;
    letter-spacing: 0.06em;
    padding-top: 10px;
}
.top .market-price .latest_post .latest_post_ttl{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px 10px 0 0;
    background-color: #2A2F4E;
    color: #fff;
}
.top .market-price .latest_post .latest_post_ttl p{
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-align: center;
}
.top .market-price .latest_post .latest_post_ttl p:first-of-type{
    width: 710px;
    padding: 23px 0 18px;
    border-right: 1px solid #EAEDF4;
}
.top .market-price .latest_post .latest_post_ttl p:last-of-type{
    width: 290px;
    padding: 23px 0 18px;
}
.top .market-price .latest_post .latest_post_ctt{
    background-color: #FFFFFF;
    border-radius: 0 0 10px 10px;
    margin: 0 0 30px;
}
.top .market-price .latest_post .latest_post_ctt .item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #EAEDF4;
}
.top .market-price .latest_post .latest_post_ctt .item:last-of-type{
    border: none;
}
.top .market-price .latest_post .latest_post_ctt .item .left_item{
    display: flex;
    align-items: center;
    gap: 30px;
    width: 710px;
    padding: 10px 30px;
    border-right: 1px solid #EAEDF4;
}
.top .market-price .latest_post .latest_post_ctt .item .thumanil{
    display: block;
    max-width: 100px;
    width: 100%;
    max-height: 100px;
    height: 100%;
    flex-shrink: 0;
}
.top .market-price .latest_post .latest_post_ctt .item .thumanil img{
    display: block;
    width: 100%;
    height: auto;
    max-height: 100px;
    margin: 0 auto;
    object-fit: contain;
}
.top .market-price .latest_post .latest_post_ctt .item .ttl{
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.44;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
}
.top .market-price .latest_post .latest_post_ctt .item .price{
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 3px;
    padding-right: 30px;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 0;
    color: #B98718;
    flex-shrink: 0;
    width: 290px;
}
.top .market-price .latest_post .latest_post_ctt .item .price span{
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.06em;
    font-family: "Noto Sans JP", sans-serif;
}
.top .market-price .latest_post .note{
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.03em;
    color: #2A2F4E;
    margin: 0 auto 46px;
}
.top .market-price .latest_post .btn a{
    font-size: 15px;
    font-weight: bold;
    padding: 23px 0;
    max-width: 400px;
    border: 2px solid #2A2F4E;
    color: #2A2F4E;
}
.top .market-price .latest_post .btn a .arrow{
    width: 13px;
    height: 10px;
}
.top .market-price .latest_post .btn a .arrow-normal{
    background-image: url(../img/top/contact-arrow-gray.svg);
}
.top .market-price .latest_post .btn a:hover{
    color: #fff;
}
.top .market-price .text-slider {
    position: absolute;
    bottom: 57px;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
    width: 100%;
}
.top .market-price .text-slider .slide-track {
    display: inline-block;
    animation: slide 80s linear infinite;
}
.top .market-price .text-slider .slide-track span {
    display: inline-block;
    font-size: 200px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #fff;
}
@media only screen and (max-width: 768px) {
    .top .market-price{
        padding: 8vw 0 37.333333333333336vw;
    }
    .top .market-price .bg{
        top: 0;
        max-width: 66.13333333333333vw;
    }
    .top .market-price .inner{
        padding: 0 6.6666666666667vw;
        max-width: none;
    }
    .top .market-price .ttl_area{
        display: block;
        padding-right: 0;
        margin: 0 auto 8.8vw;
    }
    .top .market-price .ttl_area .ttl{
        gap: 2.6666666666667vw;
        margin: 0 0 4vw;
    }
    .top .market-price .ttl_area .ttl .icon img{
        display: block;
        max-width: 7.28vw;
    }
    .top .market-price .ttl_area .ttl p{
        font-size: 8vw;
    }
    .top .market-price .ttl_area .up-date{
        font-size: 3.2vw;
        text-align: center;
        padding-top: 0;
    }
    .top .market-price .latest_post .latest_post_ttl p{
        font-size: 3.733333333333334vw;
    }
    .top .market-price .latest_post .latest_post_ttl p:first-of-type{
        width: 56.00000000000001vw;
        padding: 4.8vw 0 4.266666666666667vw;
    }
    .top .market-price .latest_post .latest_post_ttl p:last-of-type{
        width: 30.666666666666664vw;
        padding: 4.8vw 0 4.266666666666667vw;
    }
    .top .market-price .latest_post .latest_post_ctt{
        margin: 0 0 5.333333333334vw;
    }
    .top .market-price .latest_post .latest_post_ctt .item .left_item{
        gap: 3.7333333333334vw;
        padding: 2.666666666666667vw;
        width: 56.00000000000001vw;
    }
    .top .market-price .latest_post .latest_post_ctt .item .thumanil{
        max-width: 13.33333333335vw;
        max-height: 13.33333333335vw;
    }
    .top .market-price .latest_post .latest_post_ctt .item .thumanil img{
        max-height: 13.33333333335vw;
    }
    .top .market-price .latest_post .latest_post_ctt .item .ttl{
        font-size: 3.2vw;
        line-height: 1.42;
        white-space: wrap;
    }
    .top .market-price .latest_post .latest_post_ctt .item .price{
        font-size: 4.8vw;
        width: 30.666666666666664vw;
        padding-right: 2.6666666666667vw;
    }
    .top .market-price .latest_post .latest_post_ctt .item .price span{
        font-size: 3.2vw;
    }
    .top .market-price .latest_post .note{
        font-size: 3.2vw;
        margin: 0 auto 10.66666666666668vw;
    }
    .top .pickup .pickup_post_area .btn a .arrow{
        width: 13px;
        height: 10px;
    }
    .top .market-price .latest_post .btn a{
        font-size: 4vw;
        padding: 3.7333333333334vw 0;
        max-width: 80vw;
    }
    .top .market-price .text-slider {
        bottom: 4.8vw;
    }
    .top .market-price .text-slider .slide-track span {
        font-size: 32vw;
    }
}


/* performance */
.top .performance{
    position: relative;
    padding: 130px 0 105px;
    background-image: url(../img/top/top_mv.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.top .performance .bg{
    position: absolute;
    top: 0;
    right: 155px;
    content: "";
    width: 395px;
    height: 421px;
    z-index: 1;
    background-image: url(../img/top/mv_alcohol-kind.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.top .performance .hukidasi{
    position: absolute;
    top: -46px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 670px;
    width: 100%;
    margin: 0 auto;
    z-index: 5;
}
.top .performance .hukidasi p{
    position: relative;
    display: block;
    font-size: 35px;
    font-weight: bold;
    letter-spacing: 0.02em;
    padding: 8px 25px 10px;
    color: #2A2F4E;
    background-color: #FBCF2E;
    border-radius: 10px;
}
.top .performance .hukidasi p::before{
    content: "";
    width: 46px;
    height: 26px;
    background-image: url(../img/top/hukidasi_arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
}
.top .performance .hukidasi p span{
    font-size: 70px;
    font-weight: bold;
    letter-spacing: -0.01em;
    line-height: 1.21;
    color: #0052B7;
}
.top .performance .ttl_area{
    position: relative;
    z-index: 2;
    margin: 0 auto 56px;
    color: #fff;
}
.top .performance .ttl_area p{
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.05em;
    margin: 0 auto 10px;
}
.top .performance .ttl_area h2{
    font-size: 70px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.04em;
}
.top .performance .list_ctt{
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 30px;
    margin: 0 0 60px;
}
.top .performance .list_ctt.slick-initialized {
    display: block;
}
.top .performance .list_ctt .slick-list{
    overflow: unset;
}
.top .performance .list_ctt .item{
    position: relative;
    max-width: 340px;
    width: 100%;
    padding: 20px 20px 25px;
    border-radius: 10px;
    background-color: #FFFFFF;
    transition: all .3s;
}
.top .performance .list_ctt .item:hover{
    opacity: 1;
    transform: translate(-5px, -5px);
}
.top .performance .list_ctt .item .shop-cat{
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 7px 15px 9px;
    color: #Fff;
    background-color: #222222;
    border-radius: 0 10px 0 10px;
}
.top .performance .list_ctt .item .thumanil{
    margin: 0 auto 30px;
}
.top .performance .list_ctt .item .thumanil img{
    display: block;
    margin: 0 auto;
    width: auto;
    height: 100%;
    max-height: 300px;
}
.top .performance .list_ctt .item .ttl{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.47;
    letter-spacing: 0.06em;
    margin: 0 0 25px;
    min-height: 39px;
}
.top .performance .list_ctt .item .price_area{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    margin-bottom: 16px;
}
.top .performance .list_ctt .item .price_area::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-image: repeating-linear-gradient(
        to right,
        #000 0px,
        #000 1px,
        transparent 1px,
        transparent 5px
    );
}
.top .performance .list_ctt .item .price_area .label{
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    padding: 2px 8px 3px 7px;
    border: 1px solid #2A2F4E;
    background-color: #FFFFFF;
}
.top .performance .list_ctt .item .price_area .price{
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0;
}
.top .performance .list_ctt .item .price_area .price span{
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding-left: 7px;
}
.top .performance .list_ctt .item .cat span{
    font-size: 13px;
    letter-spacing: 0.06em;
    color: #0052B7;
    text-decoration: underline;
}
.top .performance .btn a{
    padding: 24px 0 25px;
    max-width: 400px;
    color: #2A2F4E;
}
.top .performance .btn a .arrow{
    width: 13px;
    height: 10px;
}
.top .performance .btn a .arrow-normal{
    background-image: url(../img/top/contact-arrow-gray.svg);
}
.top .performance .btn a:hover{
    color: #fff;
    background-color: #2A2F4E;
    border: none;
    opacity: 1;
}
@media only screen and (max-width: 1600px) {
    .top .performance .slick-slide{
        margin: 0 10px;
    }
}
@media only screen and (max-width: 768px) {
    .top .performance{
        padding: 18.133333333333333vw 0 24vw;
    }
    .top .performance .bg{
        display: none;
    }
    .top .performance .hukidasi{
        top: -5.706666666666666vw;
        max-width: 88vw;
    }
    .top .performance .hukidasi .sp img{
        display: block;
        margin: 0 auto;
        width: 100%;
    }
    .top .performance .ttl_area{
        margin: 0 auto 8vw;
    }
    .top .performance .ttl_area p{
        font-size: 4.26666667vw;
        margin: 0 auto 1.333333333335vw;
    }
    .top .performance .list_ctt{
        margin: 0 0 10.666666666668vw;
    }
    .top .performance .ttl_area h2{
        font-size: 9.33333333333333334vw;
    }
    .top .performance .list_ctt .item{
        max-width: 70.66666666666667vw;
        padding: 2.4vw 2.66666666666667vw 6.666666666667vw;
        border-radius: 5px;
    }
    .top .performance .list_ctt .item .shop-cat{
        font-size: 2.93333333333333vw;
        padding: 1.33333333335vw 2.666666666667vw;
        border-radius: 0 5px 0 5px;
    }
    .top .performance .list_ctt .item .thumanil{
        margin: 0 auto 5.333333333333334vw;
    }
    .top .performance .list_ctt .item .thumanil img{
        max-height: 62.66666666666667vw;
    }
    .top .performance .list_ctt .item .ttl{
        font-size: 3.4666666666663vw;
        margin: 0 0 5.3333333333334vw;
        min-height: 10.66666666666668vw;
    }
    .top .performance .list_ctt .item .price_area{
        padding-bottom: 4vw;
        margin-bottom: 4vw;
    }
    .top .performance .list_ctt .item .price_area .label{
        font-size: 3.2vw;
        padding: 0.266666666666vw 2.133333333333vw 0.53333333333vw 2.4vw;
    }
    .top .performance .list_ctt .item .price_area .price{
        font-size: 5.86666666666vw;
    }
    .top .performance .list_ctt .item .price_area .price span{
        font-size: 3.4666666666663vw;
        padding-left: 0.8vw;
    }
    .top .performance .list_ctt .item .cat span{
        font-size: 3.2vw;
    }
    .top .performance .btn a{
        padding: 4vw 0;
        max-width: 80vw;
    }
}


/* liquor-type */
.liquor-type{
    position: relative;
    padding: 110px 0 124px;
}
.liquor-type .bg{
    position: absolute;
    bottom: 0;
    right: 0;
}
.liquor-type .ttl_area{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 0 0 64px;
}
.liquor-type .ttl_area .ttl{
    color: #0052B7;
}
.liquor-type .ttl_area .ttl p{
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: 0 0 7px;
}
.liquor-type .ttl_area .ttl h2{
    font-size: 70px;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.43;
}
.liquor-type .ttl_area .note{
    max-width: 560px;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.76;
    color: #222222;
    padding-bottom: 5px;
}
.liquor-type .cat-list{
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
}
.liquor-type .cat-list .item{
    position: relative;
    max-width: 295px;
    width: 100%;
    padding: 20px 0 33px;
    border-radius: 10px;
    box-shadow: 6px 6px 0 rgba(42, 47, 78, 0.1);
    background-color: #fff;
    transition: all .3s;
}
.liquor-type .cat-list .item .slug{
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #0052B7;
    writing-mode: vertical-rl;
    transition: all .3s;
}
.liquor-type .cat-list .item .img{
    max-width: 190px;
    width: 100%;
    margin: 0 auto 7px;
}
.liquor-type .cat-list .item .img img{
    display: block;
    width: 100%;
}
.liquor-type .cat-list .item .ttl{
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.06em;
    transition: all .3s;
}
.liquor-type .cat-list .item:hover{
    opacity: 1;
    background-color: #0052B7;
    transform: translate(6px, 6px);
    box-shadow: none;
}
.liquor-type .cat-list .item:hover .slug{
    color: #fff;
}
.liquor-type .cat-list .item:hover .ttl{
    color: #fff;
}
@media only screen and (max-width: 768px) {
    .liquor-type{
        padding: 18.13333333333333vw 0 20.8vw;
    }
    .liquor-type .bg{
        max-width: 16vw;
        bottom: -1px;
    }
    .liquor-type .ttl_area{
        display: block;
        margin: 0 0 10.666666666668vw;
    }
    .liquor-type .ttl_area .ttl{
        margin: 0 0 5.86666666vw;
        text-align: center;
    }
    .liquor-type .ttl_area .ttl p{
        font-size: 4.266666666666667vw;
        margin: 0 0 1.33333333333335vw;
    }
    .liquor-type .ttl_area .ttl h2{
        font-size: 10.666666666668vw;
        margin: 0 -1.333333335vw;
    }
    .liquor-type .ttl_area .note{
        max-width: none;
        font-size: 3.73333333333334vw;
        padding-bottom: 0;
    }
    .liquor-type .cat-list{
        gap: 2.666666666666667vw;
    }
    .liquor-type .cat-list .item{
        max-width: 41.333333333333336vw;
        padding: 3.2vw 0;
        border-radius: 5px;
    }
    .liquor-type .cat-list .item .slug{
        top: 2.6666666666667vw;
        left: 3.4666666666666663vw;
        font-size: 2.13333333333vw;
    }
    .liquor-type .cat-list .item .img{
        max-width: 28.799999999999997vw;
        margin: 0 auto 0.8vw;
    }
    .liquor-type .cat-list .item .ttl{
        font-size: 3.2vw;
    }
}


/* brand */
.brand{
    position: relative;
    border-radius: 120px 0 0 0;
    padding: 104px 0 122px;
    background-color: #1A2C44;
}
.brand .bg{
    position: absolute;
    top: 56px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    font-size: 200px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.04em;
    color: #243957;
}
.brand .inner{
    position: relative;
    z-index: 2;
}
.brand .ttl_area{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    margin: 0 0 62px;
}
.brand .ttl_area h2{
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 50px;
    line-height: 1.22;
    font-weight: 600;
    letter-spacing: 0.03em;
}
.brand .ttl_area h2::before{
    content: "";
    width: 50px;
    height: 66px;
    background-image: url(../img/top/brand_ttl-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.brand .ttl_area .serif{
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.06em;
    padding: 9px 26px 12px;
    border: 2px solid #FFFFFF;
    border-radius: 20px 20px 20px 0;
}
.brand .brand_list {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.brand .brand_list .item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px 15px 15px;
    gap: 35px;
    max-width: 610px;
    width: 100%;
    border-radius: 10px;
    background-color: #fff;
}
.brand .brand_list .item .img{
    max-width: 140px;
}
.brand .brand_list .item .img img{
    display: block;
    width: 100%;
}
.brand .brand_list .item .txt{
    flex: 1;
}
.brand .brand_list .item .txt .ttl{
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin: 0 0 32px;
}
.brand .brand_list .item .txt .price_area{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand .brand_list .item .txt .price_area .label{
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    padding: 3px 10px 5px 8px;
    border: 1px solid #2B2B2B;
}
.brand .brand_list .item .txt .price_area .price{
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.09;
    color: #B98718;
}
.brand .brand_list .item .txt .price_area .price span{
    font-size: 18px;
    letter-spacing: 0.06em;
    padding-left: 5px;
}
@media only screen and (max-width: 768px) {
    .brand{
        border-radius: 16vw 0 0 0;
        padding: 10.666666666666668vw 0 21.333333333333334vw;
    }
    .brand .bg{
        top: 19.2vw;
        font-size: 18.133333333333333vw;
    }
    .brand .ttl_area{
        display: flex;
        justify-content: center;
        flex-direction: column-reverse;
        gap: 9.333333333334vw;
        margin: 0 0 8vw;
    }
    .brand .ttl_area h2{
        gap: 3.2vw;
        font-size: 8vw;
    }
    .brand .ttl_area h2::before{
        width: 8vw;
        height: 10.666666666666668vw;
    }
    .brand .ttl_area .serif{
        font-size: 3.2vw;
        padding: 1.0666666667vw 3.73333333333334vw 2.1333333333333vw;
        border: 1px solid #FFFFFF;
        border-radius: 10px 10px 10px 0;
    }
    .brand .brand_list {
        gap: 2.666666666667vw;
    }
    .brand .brand_list .item{
        padding: 2.6666666666667vw;
        gap: 2.6666666666667vw;
        max-width: none;
        width: 100%;
        border-radius: 5px;
    }
    .brand .brand_list .item .img{
        max-width: 21.866666666666667vw;
    }
    .brand .brand_list .item .txt .ttl{
        font-size: 3.4666666666663vw;
        margin: 0 0 3.2vw;
    }
    .brand .brand_list .item .txt .price_area .label{
        font-size: 2.666666666666667vw;
        padding: 0.266666666666vw 2.133333333333333vw 0.533333333333333vw 1.866666666666667vw;
    }
    .brand .brand_list .item .txt .price_area .price{
        font-size: 5.8666666666666666vw;
    }
    .brand .brand_list .item .txt .price_area .price span{
        font-size: 3.46666666666666663vw;
        padding-left: 0.8vw;
    }
}


/* feature */
.feature{
    padding: 105px 0 110px;
    background-image: url(../img/top/feature_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 563px auto;
}
.feature .ttl_area{
    margin: 0 auto 60px;
}
.feature .ttl_area .in_txt{
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-align: center;
    color: #0052B7;
    margin: 0 auto 9px;
}
.feature .ttl_area h2{
    font-size: 70px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.04em;
    line-height: 1.43;
    color: #0052B7;
    margin: 0 auto 40px;
}
.feature .ttl_area .note{
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.05em;
}
.feature .feature_list .swiper-wrapper{
    max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
}
.feature .feature_list .item{
    max-width: 940px;
    width: 100%;
    display: flex;
    flex-shrink: 0;
    justify-content: space-between;
    gap: 50px;
    flex-shrink: 0; 
    padding: 20px 40px 20px 20px;
    border-radius: 10px;
    background-color: #FFFFFF;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
}
.feature .feature_list .item .img img{
    display: block;
    border-radius: 5px;
}
.feature .feature_list .item .txt{
    padding-top: 30px;
    flex: 1;
}
.feature .feature_list .item .txt .label{
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0 0 20px;
    color: #0052B7;
}
.feature .feature_list .item .txt .label .en{
    font-size: 15px;
    letter-spacing: 0.06em;
    font-weight: 600;
}
.feature .feature_list .item .txt .label .number{
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.33;
}
.feature .feature_list .item .txt .ttl{
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 0.06em;
    color: #0052B7;
    margin: 0 0 30px;
}
.feature .feature_list .item .txt .note{
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.75;
}
@media only screen and (max-width: 768px) {
    .feature{
        padding: 20vw 0 26.666666666666668vw;
        background-position: center 6.6666666667vw;
        background-size: 80vw auto;
    }
    .feature .ttl_area{
        margin: 0 auto 12.8vw;
        padding: 0 6.6666666666667vw;
    }
    .feature .ttl_area .in_txt{
        font-size: 4.266666666666vw;
        margin: 0 auto 1.3333333333335vw;
    }
    .feature .ttl_area h2{
        font-size: 10.66666666666668vw;
        margin: 0 auto 4.26666666666666667vw;
    }
    .feature .ttl_area .note{
        font-size: 3.7333333333334vw;
    }
    .feature .feature_list .swiper-wrapper{
        max-width: none;
        padding: 0 6.6666666667vw;
    }
    .feature .feature_list .item{
        flex-direction: column;
        align-items: stretch;
        max-width: 72vw;
        height: 112.00000000000001vw;
        gap: 4.8vw;
        flex-shrink: 0; 
        padding: 4vw 3.46666666666663vw 8vw;
    }
    .feature .feature_list .item .txt{
        padding-top: 0;
    }
    .feature .feature_list .item .txt .label{
        gap: 3.7333333333334vw;
        margin: 0 0 3.4666666666666663vw;
    }
    .feature .feature_list .item .txt .label .en{
        font-size: 3.2vw;
    }
    .feature .feature_list .item .txt .label .number{
        font-size: 5.333333333334vw;
    }
    .feature .feature_list .item .txt .ttl{
        font-size: 5.33333333333334vw;
        margin: 0 0 5.33333333333333334vw;
    }
    .feature .feature_list .item .txt .note{
        font-size: 3.466666666666666663vw;
    }
}


/* service */
.service{
    padding: 100px 0 285px;
    background-image: url(../img/top/top_mv.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.service .ttl_area{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 56px;
    color: #fff;
}
.service .ttl_area .ttl p{
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: 0 0 8px;
}
.service .ttl_area .ttl h2{
    font-size: 70px;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.43;
}
.service .ttl_area .note{
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.76;
}
.service .link_area{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 35px;
}
.service .link_area .item{
    display: block;
    padding: 40px 0 0;
    max-width: 390px;
    width: 100%;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.1);
    transition: all .5s;
}
.service .link_area .item .txt_area{
    margin: 0 auto 36px;
    color: #0052B7;
}
.service .link_area .item .txt_area .ttl{
    font-size: 43px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.11em;
    line-height: 1.16;
    margin: 0 auto 8px;
}
.service .link_area .item .txt_area .slug{
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.06em;
}
.service .link_area .item .icon{
    display: block;
    min-height: 90px;
    margin: 0 auto 42px;
}
.service .link_area .item .icon img{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.service .link_area .item .note{
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.06em;
    line-height: 1.56;
    margin: 0 auto 34px;
}
.service .link_area .item .link_txt{
    position: relative;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.06em;
    padding: 20px 0 25px;
    color: #0052B7;
    background-color: #EAEDF4;
    text-decoration: underline;
    border-radius: 0 0 9px 9px;
    transition: all .3s;
}
.service .link_area .item .link_txt::before{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    height: 1px;
    background-image: repeating-linear-gradient(to right, #1A5BAC 0px, #1A5BAC 1px, transparent 1px, transparent 5px);
}
.service .link_area .item:hover{
    opacity: 1;
    transform: translate(9px, 9px);
    box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1); 
}
.service .link_area .item:hover .link_txt{
    background-color: #0052B7;
    color: #Fff;
}
@media only screen and (max-width: 768px) {
    .service{
        padding: 16vw 0 26.666666666666668vw;
    }
    .service .ttl_area{
        display: block;
        text-align: center;
        margin: 0 0 8vw;
    }
    .service .ttl_area .ttl p{
        font-size: 4.2666666666667vw;
        margin: 0 0 1.33333333335vw;
    }
    .service .ttl_area .ttl h2{
        font-size: 10.666666666668vw;
        margin: 0 0 5.8666666666666vw;
    }
    .service .ttl_area .note{
        font-size: 3.73333333334vw;
        font-weight: 500;
        letter-spacing: 0.06em;
        line-height: 1.79;
    }
    .service .link_area{
        flex-wrap:wrap;
        gap: 2.666666666667vw;
    }
    .service .link_area .item{
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0;
        padding-left: 6.4vw;
        max-width: none;
        width: 100%;
        height: 32vw;
        overflow: hidden;
        border-radius: 5px;
        box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.1);
    }
    .service .link_area .item:hover{
        transform: none;
    }
    .service .link_area .item .icon{
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 14.6666666666666vw;
        min-height: auto;
        margin: 0 6.933333333333333vw 0 0;
        flex-shrink: 0;
    }
    .service .link_area .item .icon img{
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }
    .service .link_area .item .txt_area{
        display: block;
        flex: 1;
        margin: 0;
    }
    .service .link_area .item .txt_area .ttl{
        font-size: 6.66666666667vw;
        text-align: left;
        letter-spacing: 0.1em;
        margin: 0 auto 2.13333333333vw;
        color: #0052B7;
    }
    .service .link_area .item .note{
        font-size: 3.2vw;
        line-height: 1.67;
        text-align: left;
        margin: 0;
        color: #2A2F4E;
    }
    .service .link_area .item .link_txt.sp{
        flex-shrink: 0;
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 10.6666666668vw;
        height: 100%;
        border-radius: 0 4px 4px 0;
        background-color: #EAEDF4;
    }
    .service .link_area .item .link_txt.sp img{
        width: 100%;
        max-width: 3.2vw;
    }
    .service .link_area .item .link_txt.sp .white{
        display: none;
    }
    .service .link_area .item .link_txt:before{
        display: none;
    }
    .service .link_area .item:hover .link_txt{
        background-color: #0052B7;
    }
    .service .link_area .item:hover .link_txt .white{
        display: block;
    }
    .service .link_area .item:hover .link_txt .blue{
        display: none;
    }
}



/* top-cta */
.top-cta{
    position: relative;
    background-color: #1A2C44;
    padding: 50px 0 130px;
    margin: -185px 0 0;
    border-radius: 120px 0 0;
}
.top-cta .bg{
    position: absolute;
    top: -120px;
    right: 0;
    z-index: 1;
}
.top-cta .inner{
    position: relative;
    z-index: 2;
}
.top-cta .txt{
    position: relative;
    text-align: center;
    margin: 0 auto;
    z-index: 1;
}
.top-cta .txt p{
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.25;
    padding: 8px 16px 9px;
    margin: 0 0 20px;
    color: #1A1A1A;
    background-color: #fff;
    border-radius: 100vw;
}
.top-cta .txt h2{
    font-size: 47px;
    font-weight: bold;
    text-align: center;
    color: #fff;
}
.top-cta .info_list{
    position: absolute;
    bottom: -225px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px 0 50px;
    max-width: 1200px;
    width: 100%;
    height: 200px;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(115, 118, 97, 0.15);
}
.top-cta .info_list .item .txt{
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #222222;
}
.top-cta .info_list .tel-info {
    padding-right: 35px;
}
.top-cta .info_list .tel-info .txt span{
    color: #0052B7;
}
.top-cta .info_list .tel-info .ttl{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 54px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #222222;
}
.top-cta .info_list .tel-info .ttl::before{
    content: "";
    width: 39px;
    height: 39px;
    background-image: url(../img/top/top-cta_tell-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: rotate(9deg);
}
.top-cta .info_list .tel-info .small{
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.08em;
    color: #222222;
}
.top-cta .info_list .online-info{
    max-width: 360px;
    width: 100%;
    flex-shrink: 0;
    padding: 0 29px;
    border-right: 1px dashed #032A38;
    border-left: 1px dashed #032A38;
}
.top-cta .info_list .online-info .txt,
.top-cta .info_list .line-info .txt{
    margin: 0 0 17px;
}
.top-cta .info_list .audit_btn a{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0.08em;
    width: 100%;
    max-width: 300px;
    height: 76px;
    border: 1px solid #222222;
    border-radius: 10px;
}
.top-cta .info_list .online-btn a{
    gap: 14px;
    color: #222222;
    background-color: #FBCF2E;
}
.top-cta .info_list .online-btn a::before{
    content: "";
    width: 37px;
    height: 32px;
    background-image: url(../img/top/top-cta_online-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.top-cta .info_list .line-info{
    max-width: 330px;
    width: 100%;
    flex-shrink: 0;
    padding-left: 30px;
}
.top-cta .info_list .line-btn a{
    gap: 21px;
    color: #fff;
    background-color: #2AA43E;
}
.top-cta .info_list .line-btn a::before{
    content: "";
    width: 37px;
    height: 35px;
    background-image: url(../img/top/top-cta_line-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
@media only screen and (max-width: 768px) {
    .top-cta{
        padding: 13.866666666666665vw 0 40vw;
        margin: -14.3999999999999vw 0 0;
        border-radius: 16vw 0 0;
    }
    .top-cta .bg{
        top: -16vw;
        max-width: 16vw;
    }
    .top-cta .txt{
        margin: 0 auto 5.33333333334vw;
    }
    .top-cta .txt p{
        font-size: 3.73333333333334vw;
        padding: 2.1333333333333333vw 3.46666666666663vw;
        margin: 0 0 3.2vw;
    }
    .top-cta .txt h2{
        font-size: 8vw;
        line-height: 1.33;
    }
    .top-cta .info_list{
        display: block;
        bottom: -77.333333333333vw;
        padding: 5.3333333333334vw 5.33333333333333334vw 6.666666666666667vw;
        max-width: none;
        width: 86.66666666666667vw;
        height: auto;
        box-shadow: none;
    }
    .top-cta .info_list .item .txt{
        font-size: 3.7333333333334vw;
        letter-spacing: 0.08em;
        margin: 0;
    }
    .top-cta .info_list .tel-info {
        padding-right: 0;
        margin: 0 0 4vw;
    }
    .top-cta .info_list .tel-info .txt span{
        color: #0052B7;
    }
    .top-cta .info_list .tel-info .ttl{
        gap: 1.0666666666667vw;
        font-size: 8.533333333333333333vw;
        letter-spacing: 0;
        margin: -0.533333333vw auto 1.3333333333335vw;
    }
    .top-cta .info_list .tel-info .ttl::before{
        width: 6.6666666666667vw;
        height: 6.6666666666667vw;
        transform: none;
    }
    .top-cta .info_list .tel-info .small{
        font-size: 3.2vw;
        margin: -1.6vw 0 0;
    }
    .top-cta .info_list .online-info{
        max-width: none;
        width: 100%;
        flex-shrink: 0;
        padding: 0;
        margin: 0 0 1.3333333333335vw;
        border: none;
    }
    .top-cta .info_list .audit_btn a{
        font-size: 4.8vw;
        max-width: 100%;
        height: 16vw;
        border-radius: 5px;
    }
    .top-cta .info_list .online-btn a{
        gap: 3.2vw;
    }
    .top-cta .info_list .online-btn a::before{
        width: 8vw;
        height: 6.9333333333333vw;
    }
    .top-cta .info_list .line-info{
        max-width: none;
        width: 100%;
        flex-shrink: 0;
        padding-left: 0;
    }
    .top-cta .info_list .line-btn a{
        gap: 4vw;
        color: #fff;
        background-color: #2AA43E;
    }
    .top-cta .info_list .line-btn a::before{
        width: 9.066666666666666vw;
        height: 8.53333333333333vw;
    }
}


/* area-map */
.area-map{
    position: relative;
    padding: 200px 0 68px;
}
.area-map .inner{
    position: relative;
    z-index: 2;;
}
.area-map .ttl_area {
    margin: 0 auto 25px;
}
.area-map .ttl_area .in_txt{
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-align: center;
    color: #0052B7;
    margin: 0 auto 9px;
}
.area-map .ttl_area h2{
    font-size: 70px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.04em;
    line-height: 1.43;
    color: #0052B7;
    margin: 0 auto 30px;
}
.area-map .ttl_area .note{
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.05em;
}
.area-map .prefectures_area{
    position: relative;
    max-width: 1010px;
    margin: 0 auto;
    padding: 40px 0;
    background-image: url(../img/top/prefectures_bg.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.area-map .prefectures_area .pos_txt{
    position: absolute;
    top: 132px;
    left: 34px;
    font-size: 35px;
    font-weight: bold;
    letter-spacing: 0;
    color: #1A1A1A;
}
.area-map .prefectures_area .pos_txt span{
    color: #0052B7;
}
.area-map .prefectures_area .area_list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    flex: 1;
    align-items: stretch;
}
.area-map .prefectures_area .area_list .area_block{
    padding: 23px 0 28px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
}
.area-map .prefectures_area .area_list .not-block{
    opacity: 0;
}
.area-map .prefectures_area .area_list .area_block .area_title{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #0052B7;
    padding: 0 20px;
    margin: 0 0 20px;
}
.area-map .prefectures_area .area_list .area_block .area_title::before{
    content: "";
    width: 15px;
    height: 20px;
    background-image: url(../img/top/prefectures_map-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.area-map .prefectures_area .area_list .area_block ul{
    display: grid;
    grid-auto-flow: column;
    gap: 0 15px;
    max-width: 150px;
    margin-left: 35px;
}
.area-map .prefectures_area .area_list .area_block .grid-5{
    grid-template-rows: repeat(5, auto);
}
.area-map .prefectures_area .area_list .area_block .grid-4{
    grid-template-rows: repeat(4, auto);
}
.area-map .prefectures_area .area_list .area_block .grid-3{
    grid-template-rows: repeat(3, auto);
}
.area-map .prefectures_area .area_list .area_block .grid-2{
    grid-template-rows: repeat(2, auto);
}
.area-map .prefectures_area .area_list .area_block ul li a{
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.86;
    color: #000000;
}
.area-map .prefectures_area .area_list .area_block ul li a::before{
    content: "・";
}
.area-map .text-slider {
    position: absolute;
    bottom: 44px;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
    width: 100%;
}
.area-map .text-slider .slide-track {
    display: inline-block;
    animation: slide 80s linear infinite;
}
.area-map .text-slider .slide-track span {
    display: inline-block;
    font-size: 200px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #fff;
}
@media only screen and (max-width: 768px) {
    .area-map{
        margin-top: 36vw;
        padding: 16.8vw 0 39.46666666666667vw;
        background-image: url(../img/top/prefectures_bg.svg);
        background-position: center 9.333333333333334vw;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .area-map .inner{
        z-index: 10;
    }
    .area-map .ttl_area {
        margin: 0 auto 14.66666666666666vw;
    }
    .area-map .ttl_area .in_txt{
        font-size: 4.266666666667vw;
        margin: 0 auto 1.3333333333333335vw;
    }
    .area-map .ttl_area h2{
        font-size: 10.66666666666668vw;
        margin: 0 auto 8vw;
    }
    .area-map .ttl_area .note{
        font-size: 3.733333333334vw;
        text-align: center;
        margin: 0 auto 4vw;
    }
    .area-map .ttl_area .pos_txt{
        font-size: 6.4vw;
        font-weight: bold;
        text-align: center;
    }
    .area-map .ttl_area .pos_txt span{
        color: #0052B7;
    }
    .area-map .prefectures_area{
        max-width: none;
        margin: 0;
        padding: 0;
        background: none;
    }
    .area-map .prefectures_area .area_list{
        display: flex;
        flex-direction: column;
        gap: 2.66666666667vw;
    }
    .area-map .prefectures_area .area_list .area_block{
        padding: 5.866666666666666vw 5.3333333333333334vw 5.333333333333334vw;
    }
    .area-map .prefectures_area .area_list .not-block{
        display: none !important;
    }
    .area-map .prefectures_area .area_list .sp-1{
        order: 1;
    }
    .area-map .prefectures_area .area_list .sp-2{
        order: 2;
    }
    .area-map .prefectures_area .area_list .sp-3{
        order: 3;
    }
    .area-map .prefectures_area .area_list .sp-4{
        order: 4;
    }
    .area-map .prefectures_area .area_list .sp-5{
        order: 5;
    }
    .area-map .prefectures_area .area_list .sp-6{
        order: 6;
    }
    .area-map .prefectures_area .area_list .sp-7{
        order: 7;
    }
    .area-map .prefectures_area .area_list .area_block .area_title{
        gap: 2.666666666666667vw;
        font-size: 4.53333333333333vw;
        padding: 0;
        margin: 0 0 4.8vw;
    }
    .area-map .prefectures_area .area_list .area_block .area_title::before{
        width: 4vw;
        height: 5.3333333334vw;
    }
    .area-map .prefectures_area .area_list .area_block ul{
        display: flex;
        align-items: stretch;
        flex-wrap: wrap;
        gap: 1.6vw;
        max-width: none;
        width: 100%;
        margin-left: 0;
    }
    .area-map .prefectures_area .area_list .area_block ul li a{
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        font-size: 3.466666666663vw;
        width: 24vw;
        height: 10.666666666666668vw;
        color: #fff;
        background-color: #0052B7;
    }
    .area-map .prefectures_area .area_list .area_block ul li a::before{
        display: none;
    }
    .area-map .text-slider {
        bottom: 4vw;
    }
    .area-map .text-slider .slide-track span {
        font-size: 32vw;
    }
}

/* shop-list */
.shop-list {
    position: relative;
    padding: 100px 0 130px;
    border-radius: 120px 0 0;
    background-color: #EAEDF4;
    background-image: url(../img/top/shop-list_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 563px auto;
}
.shop-list::before{
    position: absolute;
    top: -120px;
    right: 0;
    content: "";
    width: 120px;
    height: 120px;
    background-image: url(../img/top/shop-list_pattem.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.shop-list .inner{
    position: relative;
    z-index: 2;;
}
.shop-list .ttl_area {
    margin: 0 auto 80px;
}
.shop-list .ttl_area .in_txt{
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-align: center;
    color: #0052B7;
    margin: 0 auto 9px;
}
.shop-list .ttl_area h2{
    font-size: 70px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.04em;
    line-height: 1.43;
    color: #0052B7;
    margin: 0 auto 30px;
}
.shop-list .ttl_area .note{
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.05em;
}
.shop-list .ctt{
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 60px;
}
.shop-list .ctt .item{
    position: relative;
    color: #fff;
    background-color: #0052B7;
    border-radius: 10px;
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.05);
    transition: all .5s;
}
.shop-list .ctt .item .txt{
    padding: 20px 20px 0;
}
.shop-list .ctt .item .txt .kind{
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.06em;
    padding: 7px 15px 9px;
    color: #fff;
    background-color: #222222;
    border-radius: 0 10px 0 10px;
} 
.shop-list .ctt .item .txt .img img{
    display: block;
    border-radius: 10px;
    margin: 0 auto 37px;
}
.shop-list .ctt .item .txt .ttl{
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.1em;
    margin: 0 0 15px;
}
.shop-list .ctt .item .txt .address{
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.06em;
    line-height: 1.71;
    margin: 0 0 10px;
}
.shop-list .ctt .item .txt .info_area{
    margin: 0 0 25px;
}
.shop-list .ctt .item .txt .info_area .tell{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 41px;
    font-weight: 600;
}
.shop-list .ctt .item .txt .info_area .tell::before{
    content: "";
    width: 23px;
    height: 23px;
    transform: rotate(12deg);
    background-image: url(../img/common/tell_icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 5px;
}
.shop-list .ctt .item .txt .info_area .open{
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.08em;
}
.shop-list .ctt .item .link_txt{
    font-size: 14px;
    letter-spacing: 0;
    text-align: center;
    line-height: 1.36;
    text-decoration: underline;
    padding: 25px 0 26px;
    background-color: #222222;
    border-radius: 0 0 10px 10px;
    transition: all .3s;
}
.shop-list .ctt .item:hover{
    opacity: 1;
    transform: translate(9px, 9px);
    box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.05); 
}
.shop-list .ctt .item:hover .link_txt{
    background-color: #137DE8;
}
@media only screen and (max-width: 768px) {
    .shop-list {
        padding: 17.333333333333336vw 0 21.333333333333336vw;
        border-radius: 16vw 0 0;
        background-position: center 26vw;
        background-repeat: no-repeat;
        background-size: 80vw auto;
    }
    .shop-list::before{
        top: -16vw;
        width: 16vw;
        height: 16vw;
    }
    .shop-list .ttl_area {
        margin: 0 auto 8vw;
    }
    .shop-list .ttl_area .in_txt{
        font-size: 4.266666666667vw;
        margin: 0 auto 1.333333333335vw;
    }
    .shop-list .ttl_area h2{
        font-size: 10.66666666668vw;
        margin: 0 auto 6.4vw;
    }
    .shop-list .ttl_area .note{
        font-size: 3.7333333333334vw;
    }
    .shop-list .ctt{
        flex-wrap: wrap;
        gap: 5.333333333334vw;
    }
    .shop-list .ctt .item{
        width: 100%;
        box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.05); 
    }
    .shop-list .ctt .item .txt{
        padding: 2.66666666667vw 2.66666666666667vw 0;
    }
    .shop-list .ctt .item .txt .kind{
        font-size: 2.93333333333333vw;
        padding: 1.33333333333335vw 2.66666666666667vw;
    } 
    .shop-list .ctt .item .txt .img img{
        border-radius: 5px;
        margin: 0 auto 6.6666666666667vw;
    }
    .shop-list .ctt .item .txt .ttl{
        font-size: 4.8vw;
        margin: 0 0 3.466666666666663vw;
    }
    .shop-list .ctt .item .txt .address{
        font-size: 2.93333333333333vw;
        margin: 0 0 5.33333333333333334vw;
    }
    .shop-list .ctt .item .txt .info_area{
        margin: 0 0 3.46666666666663vw;
    }
    .shop-list .ctt .item .txt .info_area .tell{
        justify-content: center;
        gap: 1.0666666666666667vw;
        font-size: 7.199999999999999999vw;
    }
    .shop-list .ctt .item .txt .info_area .tell::before{
        width: 4vw;
        height: 4vw;
        margin-top: 5px;
    }
    .shop-list .ctt .item .txt .info_area .open{
        font-size: 2.66666666666667vw;
    }
    .shop-list .ctt .item .link_txt{
        font-size: 2.933333333333333vw;
        padding: 3.46666666666663vw 0 3.2vw;
    }
    .shop-list .ctt .item:hover{
        opacity: 1;
        transform: none;
        box-shadow: none; 
    }
}


/* news */
.news {
    position: relative;
    padding: 100px 0 130px;
}
.news::before{
    content: "";
    width: 120px;
    height: 120px;
    background-image: url(../img/top/news_pattem.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: -120px;
    right: 0;;
}
.news .ctt_flex{
    display: flex;
    justify-content: space-between;
    gap: 105px;
}
.news .txt {
    flex-shrink: 0;
}
.news .txt .ttl_area{
    margin: 0 0 40px;
    color: #0052B7;
}
.news .txt .ttl_area p{
    font-size: 24px;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0.05em;
    margin: 0 0 9px;
}
.news .txt .ttl_area h2{
    font-size: 70px;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.43;
}
.news .txt .note{
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.75;
    margin: 0 0 54px;
}
.news .txt .btn a{
    max-width: 250px;
    padding: 20px 0;
    margin: 0;
    border: 2px solid #0052B7;
}
.news .txt .btn a:hover{
    border: 2px solid #111;
}
.news .ctt{
    flex: 1;
    flex-shrink: 0;
    overflow: hidden;
}
.news .ctt .item{
    position: relative;
    display: flex;
    align-items: center;
    height: 90px;
    padding: 0 65px 0 20px;
    background-color: #F4F6F9;
    transition: all.3s;
}
.news .ctt .item::before{
    content: "";
    width: 20px;
    height: 20px;
    background-image: url(../img/top/news_link-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.news .ctt .item::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-image: repeating-linear-gradient(to right, #111111 0px, #111111 2px, transparent 2px, transparent 6px);
}
.news .ctt .item .date{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-right: 55px;
    flex-shrink: 0;
}
.news .ctt .item .category{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 30px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0;
    color: #fff;
    background-color: #0052B7;
    border-radius: 100vw;
    margin-right: 40px;
    flex-shrink: 0;
}
.news .ctt .item .ttl{
    display: block;
    width: 100%;
    font-size: 15px;
    letter-spacing: 0.06em;
    line-height: 1.4;
	white-space: nowrap;
    text-decoration: underline;
    overflow: hidden;
    text-overflow: ellipsis; 
}
.news .ctt .item:hover{
    background-color: #fff;
    opacity: 1;
}
@media only screen and (max-width: 768px) {
    .news {
        padding: 16vw 0;
    }
    .news::before{
        width: 16vw;
        height: 16vw;
        top: -16vw;
    }
    .news .ctt_flex{
        flex-wrap: wrap;
        flex-direction: column;
        gap: 10.66666666666666668vw;
    }
    .news .txt{
        text-align: center;
    }
    .news .txt .ttl_area{
        margin: 0 0 6.666667vw;
    }
    .news .txt .ttl_area p{
        font-size: 4.26666666666667vw;
        margin: 0 0 1.333333333333335vw;
    }
    .news .txt .ttl_area h2{
        font-size: 10.666666666666666668vw;
    }
    .news .txt .note{
        font-size: 3.733333333334vw;
        text-align: center;
        margin: 0;
    }
    .news .ctt{
        overflow: hidden;
        width: 100%;
    }
    .news .ctt .item{
        flex-wrap: wrap;
        gap: 2.66666666666667vw;
        padding: 5.3333333334vw 2.666666666666667vw;
        max-height: 28.000000000000004vw;
        height: auto;
        width: 100%;
        background-color: #FFFFFF;
    }
    .news .ctt .item::before{
        width: 5.3333333333334vw;
        height: 5.3333333333334vw;
        right: 2.666666666666667vw;
    }
    .news .ctt .item::after{
        background-image: repeating-linear-gradient(to right, #111111 0px, #111111 1px, transparent 1px, transparent 4px);
    }
    .news .ctt .item .date{
        font-size: 2.9333333333333vw;
        margin: 0;
    }
    .news .ctt .item .category{
        width: 17.06666666666666vw;
        height: 5.86666666666vw;
        font-size: 2.6666666666667vw;
        margin-right: 0;
    }
    .news .ctt .item .ttl{
        width: 90%;
        font-size: 3.2vw;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: wrap;
        text-decoration: none;
    }
    .news .btn a{
        max-width: 80vw;
        padding: 3.73333333333334vw;
        border: 1px solid #0052B7;
    }
}


/* column */
.column{
    padding: 95px 0 90px;
    background-image: url(../img/top/column_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.column .ttl_area{
    text-align: center;
    margin: 0 0 56px;
    color: #fff;
}
.column .ttl_area p{
    font-size: 24px;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0.05em;
}
.column .ttl_area h2{
    font-size: 70px;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.43;
}
.column .btn a .arrow{
    width: 13px;
    height: 10px;
}
.column .btn a{
    padding: 24px 0 25px;
    max-width: 400px;
}
.column .list_ctt{
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    margin: 0 0 65px;
}
.column .list_ctt.slick-initialized {
  display: block;
}
.column .list_ctt .item{
    position: relative;
    max-width: 300px;
    width: 100%;
    padding: 15px 15px 24px;
    border-radius: 10px;
    border: 1px solid #222222;
    background-color: #FFFFFF;
    transition: all .3s;
}
.column .list_ctt .item .cat{
    position: absolute;
    top: -1px;
    right: -1px;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 7px 15px 9px;
    color: #Fff;
    background-color: #222222;
    border-radius: 0 10px 0 10px;
}
.column .list_ctt .item .thumanil img{
    display: block;
    margin: 0 auto 30px;
}
.column .list_ctt .item .date{
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #222222;
    margin: 0 0 15px;
}
.column .list_ctt .item .ttl{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.57;
    letter-spacing: 0.06em;
    margin: 0 0 20px;
    min-height: 42px;
}
.column .list_ctt .item .tag{
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: #2272C3;
    text-decoration: underline;
    padding-top: 16px;
}
.column .list_ctt .item .tag::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background-image: repeating-linear-gradient(to right, #000 0px, #000 2px, transparent 2px, transparent 7px);
}
.column .list_ctt .item .tag .tag_item{
    font-size: 13px;
    letter-spacing: 0.06em;
}
.column .list_ctt .item:hover{
    opacity: 1;
    transform: translate(-5px, -5px);
}
.column .list_ctt .not-txt{
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.06em;
    color: #fff;
}
@media only screen and (max-width: 1600px) {
    .column .slick-slide{
        margin: 0 10px;
    }
}
@media only screen and (max-width: 768px) {
    .column{
        padding: 16vw 0 17.333333333333336vw;
    }
    .column .ttl_area{
        margin: 0 0 12.8vw;
    }
    .column .ttl_area p{
        font-size: 4.266666666667vw;
        margin: 0 0 1.33333333333335vw;
    }
    .column .ttl_area h2{
        font-size: 10.6666666666666666668vw;
        margin: 0 0 5.86666666666666vw;
    }
    .column .ttl_area .note{
        font-size: 3.733333334vw;
        font-weight: 500;
        text-align: center;
        letter-spacing: 0.06em;
        line-height: 1.79;
    }
    .column .btn a{
        padding: 4vw 0;
        max-width: 80vw;
    }
    .column .list_ctt{
        gap: 5.333333333334vw;
        margin: 0 0 10.6666666666666668vw;
    }
    .column .list_ctt.slick-initialized {
        display: block;
    }
    .column .list_ctt .slick-slide {
        margin: 0 10px;
    }
    .column .list_ctt .item{
        max-width: 70.93333333333334vw;
        padding: 4vw 4vw 4.5333333333vw;
        border-radius: 5px;
    }
    .column .list_ctt .item .cat{
        font-size: 2.93333333333vw;
        padding: 1.33333333335vw 2.666666666667vw;
        border-radius: 0 5px 0 5px;
    }
    .column .list_ctt .item .thumanil img{
        margin: 0 auto 4vw;
        height: auto;
    }
    .column .list_ctt .item .date{
        font-size: 3.2vw;
        margin: 0 0 2.93333333333333vw;
    }
    .column .list_ctt .item .ttl{
        font-size: 3.2vw;
        margin: 0 0 5.33333333334vw;
        min-height: 10.133333333333333vw;
    }
    .column .list_ctt .item .tag{
        gap: 2.1333333333333333vw;
        padding-top: 2.66666666666667vw;
    }
    .column .list_ctt .item .tag::after {
        background-image: repeating-linear-gradient(
        to right,
        #000 0px, 
        #000 2px, 
        transparent 2px, 
        transparent 7px  
        );
    }
    .column .list_ctt .item .tag .tag_item{
        font-size: 3.4666666666663vw;
    }
}


/* faq */
.faq{
    display: block;
    position: relative;
    overflow: hidden;
    padding: 142px 0 95px;
}
.faq .bg{
    position: absolute;
    top: 100px;
    left: 0;
    z-index: 1;
}
.faq .inner{
    position: relative;
    max-width: 920px;
    z-index: 3;
}
.faq .ttl_area{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 44px;
}
.faq .ttl_area .ttl{
    display: flex;
    align-items: center;
    gap: 10px;
}
.faq .ttl_area .ttl p{
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #0052B7;
}
.faq .ttl_area .note{
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.75;
}
.faq .ctt{
    margin: 0 0 60px;
}
.faq .ctt .item{
    margin: 0 0 10px;
}
.faq .ctt .item:last-of-type{
    margin: 0;
}
.faq .ctt .item .question{
    position: relative;
    cursor: pointer;
}
.faq .ctt .item .ans-ctt{
    display: none;
}
.faq .ctt .item .question,
.faq .ctt .item .answer{
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 20px 90px 20px 20px;
    background-color: #FFFFFF;
    border-radius: 5px;
}
.faq .ctt .item .question.active{
    border-radius: 5px 5px 0 0;
}
.faq .ctt .item .answer{
    align-items: flex-start;
    border-radius: 0 0 5px 5px;
}
.faq .ctt .item .question span,
.faq .ctt .item .answer span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    padding-bottom: 2px;
    flex-shrink: 0;
}
.faq .ctt .item .question span{
    background-color: #1A5BAC;
}
.faq .ctt .item .answer span{
    border: 1px solid #1A2C44;
    color: #1A2C44;
}
.faq .ctt .item .question .txt,
.faq .ctt .item .answer .txt{
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.67;
}
.faq .ctt .item .question .txt{
    color: #0052B7;
}
.faq .ctt .item .answer .txt{
    font-size: 16px;
    padding-top: 5px;
}
.faq .ctt .item .question .plus{
    position: absolute;
    top: 0;
    right: 42px;
    bottom: 0;
    width: 16px;
    height: 16px;
    margin: auto;
}
.faq .ctt .item .question .plus:before,
.faq .ctt .item .question .plus:after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    margin: auto;
    background: #0052B7;
    transition: 0.3s;
}
.faq .ctt .item .question .plus:after{
    transform: rotate(90deg);
}
.faq .ctt .item .question.active .plus:after{
    transform: rotate(0);
}
.faq .btn a .arrow{
    width: 13px;
    height: 10px;
}
.faq .btn a{
    max-width: 400px;
    padding: 20px 0;
    border: 2px solid #0052B7;
}
.faq .btn a:hover{
    border: 2px solid #111;
}
.faq .text-slider {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: 2;
    white-space: nowrap;
    width: 100%;
}
.faq .text-slider .slide-track {
    display: inline-block;
    animation: slide 80s linear infinite;
}
.faq .text-slider .slide-track span {
    display: inline-block;
    font-size: 200px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #fff;
}
@media only screen and (max-width: 768px) {
    .faq{
        padding: 26.1333333333333vw 0 34.13333333333333vw;
    }
    .faq .bg{
        top: 16.5333333333333vw;
        max-width: 66.133333333333vw;
    }
    .faq .inner{
        max-width: none;
    }
    .faq .ttl_area{
        flex-direction: column;
        justify-content: center;
        gap: 8vw;
        margin: 0 0 9.06666666666666vw;
    }
    .faq .ttl_area .ttl{
        gap: 2.66666666666667vw;
    }
    .faq .ttl_area .ttl .icon{
        max-width: 7.28vw;
    }
    .faq .ttl_area .ttl p{
        font-size: 8vw;
    }
    .faq .ttl_area .note{
        text-align: center;
        font-size: 3.466666666666663vw;
    }
    .faq .ctt{
        margin: 0 0 13.333333333334vw;
    }
    .faq .ctt .item{
        margin: 0 0 2.6666666666667vw;
    }
    .faq .ctt .item .question,
    .faq .ctt .item .answer{
        gap: 4vw;
        padding: 4vw 10.66666666666668vw 4vw 2.6666666667vw;
    }
    .faq .ctt .item .question span,
    .faq .ctt .item .answer span{
        width: 8vw;
        height: 8vw;
        font-size: 3.7333333333334vw;
        padding-bottom: 2px;
    }
    .faq .ctt .item .question .txt,
    .faq .ctt .item .answer .txt{
        font-size: 3.4666666666663vw;
        line-height: 1.54;
    }
    .faq .ctt .item .answer .txt{
        font-size: 3.2vw;
        padding-top: 1.333333335vw;
    }
    .faq .ctt .item .question .plus{
        right: 4vw;
        width: 2.4vw;
        height: 2.4vw;
    }
    .faq .ctt .item .question .plus:before,
    .faq .ctt .item .question .plus:after{
        height: 1px;
    }
    .faq .btn a{
        max-width: 80vw;
        padding: 3.733333333334vw 0;
        border: 1px solid #0052B7;
    }
    .faq .text-slider {
        top: auto;
        bottom: -22.400000000000002vw;
    }
    .faq .text-slider .slide-track span {
        font-size: 32vw;
    }
}


/* 下層ページ用 */
.sub-footer_cta .top-cta{
    margin: 0;
}
.sub-footer_cta .service{
    padding: 250px 0 137px;
    background-image: url(../img/common/sub-cta_bg.jpg);
}
@media only screen and (max-width: 768px) {
    .sub-footer_cta .service{
        padding: 16vw 0 14.666666666666666vw;
    }
    .sub-footer_cta .top-cta{
        padding: 13.33333333334vw 0 16vw;
    }
    .sub-footer_cta .top-cta .info_list{
        position: relative;
        bottom: auto;
    }
}


/* サイドバー */
.sidebar{
    max-width: 340px;
    width: 100%;
}
.sidebar .search_area{
    display: block;
    margin: 0 0 60px;
}
.sidebar .search_area #searchform{
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
    height: 55px;
    border: 1px solid #1A2C44;
    border-radius: 100vw;
    background-color: #fff;
}
.sidebar .search_area #searchform input{
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    border: none;
}
.sidebar .search_area #searchform input:focus-visible{
    text-decoration: none;
    outline: none;
}
.sidebar .search_area #searchform input::placeholder{
    color: #A9A9A9;
}
.sidebar .search_area #searchform .search_icon{
    flex-shrink: 0;
    border: none;
    background-color: #fff;
    cursor: pointer;
    transition: all .3s;
}
.sidebar .search_area #searchform .search_icon:hover{
    opacity: 0.7;
}
.sidebar .search_area #searchform .search_icon img{
    display: block;
    width: 20px;
}
@media only screen and (max-width: 768px) {
    .sidebar{
        max-width: none;
    }
    .sidebar .search_area{
        display: block;
        margin: 0 0 13.333333333333333334vw;
    }
    .sidebar .search_area #searchform{
        gap: 1.33333333333333335vw;
        padding: 0 5.3333333333333334vw;
        height: 13.333333333333333333334vw;
    }
    .sidebar .search_area #searchform .search_icon img{
        width: 4.8vw;
    }
}

.sidebar .popular_area{
    display: block;
    width: 100%;
    margin: 0 0 70px;
}
.sidebar .popular_area .ttl_area{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 35px;
}
.sidebar .popular_area .ttl_area p{
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.06em;
}
.sidebar .popular_area .ttl_area span{
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
}
.sidebar .popular_area .post_ctt{
    padding: 30px 20px;
    border-radius: 5px;
    background-color: #FFFFFF;
}
.sidebar .popular_area .post_ctt .item{
    position: relative;
    display: flex;
    gap: 14px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    transition: all .3s;
}
.sidebar .popular_area .post_ctt .item::before{
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background-image: repeating-linear-gradient(
        to right,
        #1A2C44 0px,
        #1A2C44 1px,
        transparent 1px,
        transparent 3px
    );
}
.sidebar .popular_area .post_ctt .item:last-of-type{
    padding-bottom: 0;
    margin-bottom: 0;
}
.sidebar .popular_area .post_ctt .item:last-of-type::before{
    display: none;
}
.sidebar .popular_area .post_ctt .item .img{
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 5px;
}
.sidebar .popular_area .post_ctt .item .img img{
    display: block;
    width: 100%;
    max-width: 112px;
    height: auto;
    transition: all .3s;
    border-radius: 5px;
}
.sidebar .popular_area .post_ctt .item .txt{
    flex: 1;
}
.sidebar .popular_area .post_ctt .item .txt .date{
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin: 0 0 10px;
}
.sidebar .popular_area .post_ctt .item .txt .ttl{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.54;
}
.sidebar .popular_area .post_ctt .item:hover{
    opacity: 1;
}
.sidebar .popular_area .post_ctt .item:hover .img img{
    transform: scale(1.1);
}
@media only screen and (max-width: 768px) {
    .sidebar .popular_area{
        margin: 0 0 16vw;
    }
    .sidebar .popular_area .ttl_area{
        margin: 0 0 8vw;
    }
    .sidebar .popular_area .ttl_area p{
        font-size: 6.4vw;
    }
    .sidebar .popular_area .ttl_area span{
        font-size: 3.733333333333334vw;
    }
    .sidebar .popular_area .post_ctt{
        padding: 8vw 5.333333333333334vw;
    }
    .sidebar .popular_area .post_ctt .item{
        gap: 4vw;
        padding-bottom: 5.33333333333333334vw;
        margin-bottom: 5.33333333333333334vw;
    }
    .sidebar .popular_area .post_ctt .item .img img{
        max-width: 26.666666666666668vw;
    }
    .sidebar .popular_area .post_ctt .item .txt .date{
        font-size: 2.66666666666666666667vw;
        margin: 0 0 2.66666666666666666666667vw;
    }
    .sidebar .popular_area .post_ctt .item .txt .ttl{
        font-size: 3.466666666666666666663vw;
    }
}

.sidebar .cat_area{
    display: block;
    width: 100%;
    margin: 0;
}
.sidebar .cat_area .ttl_area{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 35px;
}
.sidebar .cat_area .ttl_area p{
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.06em;
}
.sidebar .cat_area .ttl_area span{
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
}
.sidebar .cat_area .cat_ctt{
    padding: 30px 20px;
    border-radius: 5px;
    background-color: #fff;
}
.sidebar .cat_area .cat_ctt .item{
    display: block;
    width: 100%;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding-left: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    transition: all .3s;
}
.sidebar .cat_area .cat_ctt .item:last-of-type{
    margin: 0;
}
.sidebar .cat_area .cat_ctt .parrent{
    padding-left: 0;
}
.sidebar .cat_area .cat_ctt .item::before{
    content: "";
    width: 13px;
    height: 10px;
    background-image: url(../img/top/contact-arrow-gray.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 15%;
    right: 0;
}
.sidebar .cat_area .cat_ctt .item::after{
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background-image: repeating-linear-gradient(
        to right,
        #DED6C5 0px,
        #DED6C5 1px,
        transparent 1px,
        transparent 2px
    );
}
.sidebar .cat_area .cat_ctt .item:hover{
    opacity: 1;
    color: #0052B7;
}
@media only screen and (max-width: 768px) {
    .sidebar .cat_area .ttl_area{
        margin: 0 0 8vw;
    }
    .sidebar .cat_area .ttl_area p{
        font-size: 6.4vw;
    }
    .sidebar .cat_area .ttl_area span{
        font-size: 3.733333333333333334vw;
    }
    .sidebar .cat_area .cat_ctt{
        padding: 8vw 5.3333333333333333334vw;
    }
    .sidebar .cat_area .cat_ctt .item{
        font-size: 4.266666666666666667vw;
        padding-left: 5.333333333333333334vw;
        padding-bottom: 5.333333333333333334vw;
        margin-bottom: 5.333333333333333334vw;
    }
    .sidebar .cat_area .cat_ctt .item::before{
        width: 3.4666666666666666663vw;
        height: 2.66666666666666666667vw;
    }
}
