@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital@0;1&display=swap');

:root {
    --main-color: #B24025;
    /*メインカラー*/
    --sub-color: #E8C5BD;
    /*薄いピンク*/
    --bg-main-color: #EDE8E4;
    /*薄いベージュ*/
    --bg-sub-color: #C6C0B3;
    /*グレーがかった薄いベージュ*/
    --text-lh: 2.4;
    --heading-ls: 4px;
}

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

body {
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    font-size: 1.4rem;
    font-weight: 400;
    color: #484848;
    background-color: #fff;
}

/*
 common
******************************************************************************
*/

/** align **/
.align-l {
    text-align: left !important;
}

.align-c {
    text-align: center !important;
}

.align-r {
    text-align: right !important;
}

.align-lc {
    text-align: left !important;
}

.align-cl {
    text-align: center !important;
}

/** tel **/
a[href^="tel:"] {
    cursor: pointer;
}

/** reset **/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    color: #000;
    line-height: 1.8;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

ul,
ol {
    list-style: none;
}

dt {
    font-weight: normal;
}

a,
a:hover {
    color: #333;
    text-decoration: none;
}


/** text **/
p {
    line-height: var(--text-lh);
}

.txt-sans-serif {
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}

.txt-en-01 {
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 1px;
}

.txt-white {
    color: #fff !important;
}

.txt-s {
    font-size: 12px;
}

/* ::selection */
::selection {
    background: #ccc;
    color: #000;
}

/** margin **/
.mgnB0 {
    margin-bottom: 0 !important;
}

.mgnB5 {
    margin-bottom: 5px !important;
}

.mgnB10 {
    margin-bottom: 10px !important;
}

.mgnB15 {
    margin-bottom: 15px !important;
}

.mgnB20 {
    margin-bottom: 20px !important;
}

.mgnB30 {
    margin-bottom: 30px !important;
}

.mgnB40 {
    margin-bottom: 40px !important;
}

.mgnB50 {
    margin-bottom: 50px !important;
}

.mgnB60 {
    margin-bottom: 60px !important;
}

.mgnB70 {
    margin-bottom: 70px !important;
}

.mgnB80 {
    margin-bottom: 80px !important;
}

.mgnT0 {
    margin-top: 0 !important;
}

.mgnT5 {
    margin-top: 5px !important;
}

.mgnT10 {
    margin-top: 10px !important;
}

.mgnT20 {
    margin-top: 20px !important;
}

.mgnT30 {
    margin-top: 30px !important;
}

.mgnT40 {
    margin-top: 40px !important;
}

.mgnT50 {
    margin-top: 50px !important;
}

.mgnT60 {
    margin-top: 60px !important;
}

.mgnT70 {
    margin-top: 70px !important;
}

.mgnT80 {
    margin-top: 80px !important;
}


/*.pagetop{
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 80px;
}*/



@media (min-width: 960px) {

    .align-lc {
        text-align: center !important;
    }

    .align-cl {
        text-align: left !important;
    }

    a[href^="tel:"] {
        cursor: default;
    }



}

/** SP : visibility, tel **/
.visible-sp {
    display: none !important;
}

@media (max-width: 767px) {

    .hidden-sp {
        display: none !important;
    }

    .visible-sp {
        display: block !important;
    }
}


/*
  header hamburger menu
****************************************************************/
body.fixed {
    position: fixed;
    width: 100%;
}

.bar-txt {
    color: #fff;
    font-size: 10px;
    position: absolute;
    bottom: -11px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    background: #76572F;
    line-height: 2;
}

.nav-hmenu {
    position: fixed;
    top: 5px;
    right: 10px;
    z-index: 9999;
    background: none;
}

.nav-hmenu .burger-btn {
    display: block;
    width: 54px;
    height: 44px;
    position: relative;
    z-index: 3;
    border: none;
    top: 5px;
}

.nav-hmenu .bar {
    width: 30px;
    height: 1px;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
}

.nav-hmenu.nav-hmenu-sub .bar {
    width: 30px;
    height: 1px;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
}

.nav-hmenu .bar_top {
    top: 10px;
}

.nav-hmenu .bar_mid {
    top: 50%;
    transform: translate(-50%, -50%);
}

.nav-hmenu .bar_bottom {
    bottom: 10px;
}

.nav-hmenu .burger-btn.close .bar_top {
    transform: translate(-50%, 10px) rotate(45deg);
    transition: transform .3s;
    background-color: #343434;
}

.nav-hmenu .burger-btn.close .bar_mid {
    opacity: 0;
    transition: opacity .3s;
}

.nav-hmenu .burger-btn.close .bar_bottom {
    transform: translate(-50%, -12px) rotate(-45deg);
    transition: transform .3s;
    background-color: #343434;
}

.nav-hmenu .nav-wrapper {
    display: none;
    width: 100vw;
    /*height: 100vh;*/
    height: 500px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2;
    max-width: 100vw;
    background: #fff;
}

.nav-hmenu .header-nav {
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 2;
}

.nav-hmenu .header-nav .header-nav-inner-sp {
    display: block;
    list-style: none;
    padding: 0 20px;
}

.nav-hmenu .header-nav .nav-list {
    list-style: none;
    margin: 70px 0 0;
}

.nav-hmenu .header-nav .nav-list .nav-item a {
    padding: 22px 0;
    border-bottom: 1px solid #BDC1C7;
    color: #000;
    text-decoration: none;
    font-size: 13px;
    display: block;
    position: relative;
}

/*.nav-hmenu .header-nav .nav-list .nav-item:last-child a{
     border-bottom: none;   
}*/
.nav-hmenu .header-nav .nav-list .nav-item a::after {
    display: inline-block;
    content: "";
    background-image: url("../image/arrow_hmenu.png");
    background-size: 100%;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 22px;
    right: 15px;
}

.logo-hmenu {
    position: absolute;
    top: 9px;
    left: 9px;
    width: 77px;
}

/** sticky **/
.header-nav-sticky.uk-active .nav-hmenu .bar {
    background: #343434;
}

/** header-nav-second **/
.header-nav-second .nav-hmenu .bar {
    background-color: #343434;
}



/*
  header sticky
****************************************************************/
.header-nav-sticky {
    /* padding: 0; */
    height: 70px;
}

/** logo **/
.logo-header {
    padding: 8px 0 0 8px;
    width: 77px;
}

.logo-fv {
    margin-top: 0px;
    width: 58px;
}

.logo-fix {
    display: none;
}

.logo-sub-page {
    width: 48px;
}

/** sticky **/
.header-nav-sticky.uk-active {
    background: #fff;
}

.header-nav-sticky.uk-active .logo-fv {
    display: none;
}

.header-nav-sticky.uk-active .logo-fix {
    display: block;
}

.header-nav-sticky.uk-active ul.nav-header li a,
.header-nav-sticky.header-nav-second ul.nav-header li a {
    color: #000;
}

/*
  footer
****************************************************************/

/** contact **/
.sec-ft-contact{
    background: url("../image/bg_contact.jpg") center top no-repeat;
    background-size: cover;
    padding: 100px 0;
    color: #fff;
    position: relative;
    z-index: 2;
}

.sec-ft-contact::before {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / .5);
    top: 0;
    z-index: -1;
}

ul.nav-ft-contact{
    margin: 0 20px 50px;
}

ul.nav-ft-contact li{
    margin: 0 0 30px;
}

ul.nav-ft-contact li a{
    background-color: var(--main-color);
    color: #fff;
    border: 1px solid var(--main-color);
    padding: 23px;
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 2.8px;
    width: 100%;
    text-align: left;
    position: relative;
}

ul.nav-ft-contact li a img{
    position: absolute;
    right: 23px;
    top: 21px;
}

.icon-contact{
    width: 18px;
    height: 14.5px;
}

.icon-docu{
    width: 16.5px;
    height: 19.5px;
}

.sec-ft-contact h3{
    font-size: 1.4rem;
    text-align: center;
    margin: 0 0 10px;
    line-height: 1;
}

.txt-ft-tel a{
    font-size: 2.4rem;
    letter-spacing: var(--heading-ls);
    color: #fff;
}

.txt-ft-tel span{
    font-size: 1.2rem;
    display: block;
}



/** SPのみ **/
.footer-nav{
    padding: 50px 0 25px;
    background: #fff;
    position: relative;
    z-index: 2;
}

.ft-fixed-btn{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.ft-fixed-btn a{
    display: block;
    background: var(--main-color);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 2.8px;
    padding: 23px 0;
}

.ft-fixed-btn a .icon-contact {
    width: 16px;
    height: 13px;
    margin-right: 12px;
}

/* nav 01 */
ul.nav-ft-01{
    margin: 20px 20px 30px;
}

ul.nav-ft-01 li a{
    display: block;
    padding: 18px 10px;
    font-size: 1.4rem;
    border-bottom: 1px solid #BDC1C7;
    position: relative;
}

ul.nav-ft-01 li:first-child a{
    border-top: 1px solid #BDC1C7;
}

/*ul.nav-ft-01 li a:after{
    display: inline-block;
    content: "";
    background-image: url("../image/arrow_right.png");
    background-size: 100%;
    width: 21px;
    height: 6px;
    position: absolute;
    right: 0;
    top: 47%;
}*/

/** logo **/
.logo-ft{
    margin: 0 auto;
    width: 200px;
}

/** copyright **/
.wrap-copy{
    background: #000;
    padding: 22px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.txt-copy,
.txt-copy a{
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

@media (min-width: 960px) {

    .header-nav-sticky {
        /* padding: 10px 0 12px 5%;
        padding: 0 0 0 5%; */
        height: 103px;
    }

    .header-nav-sticky.header-nav-sticky--sub {
        height: 80px;
    }

    /** logo **/
    .logo-header {
        padding-top: 10px;
        padding-left: 20px;
        width: 217px;
    }

    .header-nav-sticky.uk-active .logo-header,
    .header-nav-sticky.header-nav-second .logo-header {
        padding-left: 20px;
        padding-top: 10px;
        width: 100px;
    }
    .logo-fv {
        width: 75px;
    }
    .logo-fix {
        display: none;
    }

    .logo-sub-page {
        width: 54px;
    }

    /** nav **/
    ul.nav-header {
        margin: 40px 70px 0 170px;
        display: flex;
    }

    ul.nav-header li {
        margin-left: 35px;
    }

    ul.nav-header li a{
        color: #fff;
    }

    /** contact button **/
    .wrap-btn-header {
        position: fixed;
        top: 0;
        right: 0;
    }

    .wrap-btn-header p {
        margin-top: 5px;
        letter-spacing: 1.3px;
        line-height: 1;
        font-size: 1.3rem;
        color: #fff;
        text-align: center;
    }

    .btn-header-reserve {
        width: 118px;
        display: block;
        background: var(--main-color);
        padding: 45px 0 40px;
        position: relative;
    }

    .btn-header-reserve:hover {
        color: #fff;
    }

    .btn-header-reserve:before {
        display: inline-block;
        content: "";
        background-image: url("../image/icon_contact.png");
        background-size: 100%;
        background-repeat: no-repeat;
        width: 18px;
        height: 14.5px;
        position: absolute;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
    }

    /* 下層ページ用 */
    ul.nav-header-sub {
        margin: 30px 70px 0 170px;
        display: flex;
    }

    ul.nav-header-sub li {
        margin-left: 35px;
    }

    /* ul.nav-header li a{
        color: #fff;
    } */

    /** contact button **/
    .wrap-btn-header-sub {
        position: fixed;
        top: 0;
        right: 0;
    }

    .wrap-btn-header-sub p {
        margin-left: 20px;
        letter-spacing: 1.3px;
        line-height: 1;
        font-size: 1.3rem;
        color: #fff;
        text-align: center;
    }

    .btn-header-reserve-sub {
        width: 210px;
        display: block;
        background: var(--main-color);
        padding: 33px 0 34px;
        position: relative;
    }

    .btn-header-reserve:hover {
        color: #fff;
    }

    .btn-header-reserve-sub:before {
        display: inline-block;
        content: "";
        background-image: url("../image/icon_contact.png");
        background-size: 100%;
        background-repeat: no-repeat;
        width: 18px;
        height: 14.5px;
        position: absolute;
        top: 33px;
        left: 48px;
    }

}

@media all and (min-width: 1025px) and (max-width: 1300px) {

    ul.nav-header {
        margin: 30px 70px 0 100px;
    }

    ul.nav-header li {
        margin-left: 16px;
    }

    /* .btn-header-reserve{
        width: 218px;
    } */

}

/** vmgと同じバナー **/
.bnrTopSlide {
    z-index: 99;
    cursor: pointer;
    position: fixed;
    background: #000;
    color: #fff;
    transition: .4s;
}

#bnrMember {
    top: 15%;
}

.bnrTopSlide.active {
    right: 0px;
    z-index: 100;
}

.c-member__button {
    position: absolute;
    top: 0;
    left: 0;
    width: 59px;
    height: 162px;
    background-color: #f9f9f8;
    color: #1e1e1e;
    transition: background-color .5s ease-out, color .5s ease-out
}

.bnrTopSlide .c-member__button {
    color: #fff;
    background-color: #000;
    font-family: 'Josefin Sans', sans-serif;
    height: 100%;
    border: none;
    outline: none;
}

.bnrTopSlide #js-reserve-button>span,
.bnrTopSlide #js-reserve-button-02>span {
    font-family: 'Josefin Sans', sans-serif;
    color: #fff;
    top: 15px;
    font-size: .8em;
}

.bnrTopSlide .c-member__button::after {
    bottom: 15px;
    border-color: #fff;
}

.bnrTopSlide h3 {
    font-family: 'Josefin Sans', sans-serif;
    color: #c72b0a;
    font-size: .8em;
}

.bnrTopSlide p {
    color: #fff;
    /*font-size: 1em;*/
    line-height: 1.3;
    margin-bottom: 0.8em;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

.bnrTopSlide a {
    font-size: .8em;
    color: #fff;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

.bnrTopSlide .bnrWrap {
    padding: 15px 15px 15px 75px;
}

.bnrTopSlide div+div {
    padding-left: 15px;
}

.c-member__button--black {
    background-color: #000;
    color: #fff
}

.c-member--open .c-member__button,
.c-member__button:hover,
[data-whatinput=keyboard] .c-member__button:focus {
    background-color: #575757;
    color: #fff
}

.c-member__button>span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    letter-spacing: .075em
}

.c-member__button::after {
    position: absolute;
    left: calc(50% - 2px);
    content: '';
    border-bottom: 1px solid currentColor;
    border-left: 1px solid currentColor;
    width: 4px;
    height: 4px;
    transition: transform .5s ease-out
}

.c-member__button[aria-expanded=false]::after {
    transform: translateX(2px) rotate(45deg)
}

.c-member__button[aria-expanded=true]::after {
    transform: translateX(-2px) rotate(-135deg)
}

@media screen and (min-width:769px) {
    .bnrTopSlide {
        right: -481px;
        width: 540px;
    }

    .bnrTopSlide .bnrWrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    #bnrCampaign {
        top: calc(162px + 15%);
    }

    .bnrWrap div:nth-child(1) {
        width: 187px;
    }

    .bnrWrap div:nth-child(2) {
        width: calc(100% - 187px);
    }

    .bnrWrap img {
        object-fit: cover;
        width: 187px;
        height: 100px;
    }
}

@media screen and (max-width:768px) {
    .bnrTopSlide {
        right: -200px;
        width: 200px;
    }

    .bnrTopSlide .bnrWrap {
        padding: 15px;
        min-height: 107px;
    }

    .bnrTopSlide .bnrWrap img {
        display: none;
    }

    .bnrTopSlide .c-member__button {
        height: 122px;
        width: 50px;
        left: -50px;
    }

    .bnrTopSlide div+div {
        /* padding-top: 15px; */
        padding-left: 0;
    }

    #bnrCampaign {
        top: calc(250px + 5%);
    }
}

/*=========================================
	Footer
==========================================*/


.footer {
    background-color:#f4f4f4;
    color:#4C4C4C;
    padding-top:40px;
    padding-bottom:20px;
  }
  
  .nav-footer li{
      float:left;
      margin-right:20px;
      font-size:14px;
  }
  
  .copyright {
    color:#B5B5B5;
    letter-spacing: 1px;
    font-size:13px;
  }
  
  /*.copyright a{
      color:#B5B5B5;
  }
  
  .copyright a:hover{
      color:#CECECE;
  }*/
  
  .logo-footer{
      float:left;
  }
  
  .logo-footer img{
      width:70px;
      margin:0 10px 0 0;
  }
  
  /* page top */
  #back-top {
    bottom: 20px;
    position: fixed;
    right: 15px;
    z-index: 9;
  }
  
  
  /* nav-top-footer */
  dl.nav-top-footer{
      font-family: 'Cormorant Garamond', serif;
      margin-bottom:10px;
  }
  
  dl.nav-top-footer dt{
      float:left;
      width:10%;
      font-weight:700;
      line-height:1;
      margin:0;
      padding-top:5px;
  }
  
  dl.nav-top-footer dd{
      display:inline-block;
      border-left:1px solid #ccc;
      line-height:1;
      padding:0 10px;
      margin:0;
  }
  
  dl.nav-top-footer dd:first-child(1){
      margin-left:10%;
  }
  
  dl.nav-top-footer dd:last-child{
      border-right:1px solid #ccc;
  }
  
  dl.nav-top-footer dt a {
      color: #064668;
  }
  
  /* vm list */
  table.vm-list{
      font-size:12px;
      font-family: 'Cormorant Garamond', serif;
      margin-bottom:0;
  }
  
  table.vm-list th{
      width:60px;
  }
  
  /* footer info */
  dl.footer-info dt{
      font-size:12px;
      margin-bottom:10px;
  }
  
  dl.footer-info dd{
      font-size:11px;
  }
  
  
  /* footer fixed btn */
  .footer-btn{
      display:table;
      table-layout:fixed;
      position:fixed;
      left:10px;
      bottom:10px;
      z-index:9999999;
  }
      
  .footer-btn div{
      display:table-cell;
      text-align:center;
      vertical-align:middle;
      width:150px;
  }
      
  .footer-btn div a{
      background:#422B2F;
      color:#fff;
      display:block;
      padding:10px 0;
  }
      
  .footer-btn div a:hover{
      text-decoration:none;
  }
      
  .footer-btn div a{
      border:1px solid #937A7F;
      border-right:none;
  }
  
  .footer-btn div:last-child{
      width:200px;
      border-right:1px solid #937A7F;
  }
  
  .footer-btn-tel{
      font-size:13px;
      font-family: 'Lato', sans-serif;
      margin-left:10px;
  }
/* @media (min-width: 1025px) { */
@media (min-width: 960px) {

    /** contact **/
    .sec-ft-contact {
        padding: 120px 0;
    }

    ul.nav-ft-contact {
        margin: 0 20px 50px;
        display: flex;
        justify-content: space-between;
    }

    ul.nav-ft-contact li {
        width: 47%;
    }

    /** nav 01 **/
    /*ul.nav-ft-01{
        margin: 80px 0;
        display: flex;
        justify-content: center;
    }
    
    ul.nav-ft-01 li a{
        display: inline-block;
        padding: 0 26px;
        font-size: 1.6rem;
        border-bottom: none;
    }
    
    ul.nav-ft-01 li a:after{
        content: "|";
        background-image: none;
        position: absolute;
        right: -20px;
        top: 0;
    }
    
    ul.nav-ft-01 li:last-child a:after{
        content: none;
    }*/


    /** PCのみ：古いページと同じ **/
    #footerArea {
        width: 100%;
        background: #e9e9e9 url("../image/footer/footer01-bg.gif") repeat;
    }

    #footerArea a:hover {
        opacity: 0.7;
        filter: alpha(opacity=70);
        -ms-filter: "alpha( opacity=70 )";
    }

    #footerArea #footer {
        width: 1022px;
        margin: 0 auto;
        /*padding: 25px 0 25px 28px;*/
        padding: 50px 0;
        position: relative;
        display: flex;
    }

    #ft_menu .ft_tit,
    #ft_value .ft_tit,
    #ft_group .ft_tit {
        margin-bottom: 15px;
        padding-bottom: 5px;
        font-weight: bold;
        border-bottom: 1px solid #ccc;
        color: #444444;
        line-height: 1.6;
        font-size: 12px;
    }

    #ft_menu .ft_menu_list {
        float: left;
        width: 175px;
        margin-right: 20px;
    }

    #ft_menu .ft_menu_list li {
        background: url("../image/footer/icon_01.gif") left no-repeat;
        padding-left: 8px;
        margin: 8px 1px;
        font-size: 11px;
    }

    #ft_menu .ft_menu_list li a {
        color: #666;
    }

    #ft_menu .ft_menu_list li a:hover {
        opacity: 1;
        text-decoration: underline;
    }


    #ft_value {
        width: 170px;
        margin-left: 10px;
    }

    #ft_value li {
        float: left;
        width: 80px;
        margin-bottom: 10px;
    }

    #ft_value li.mgnL {
        margin-left: 10px;
    }


    #ft_group {
        float: left;
        width: 200px;
        margin-left: 29px;
    }

    #ft_group li {
        margin-bottom: 5px;
    }

    #pagetop {
        /*position: relative;
        height: 121px;
        width: 28px;
        float: left;*/
        position: fixed;
        right: 0;
        bottom: 0;
        z-index: 3;
    }

    /*#pagetop_btn {
        width: 28px;
        height: 121px;
        position: fixed !important;
        position: absolute;
        z-index: 3;
        bottom: 0;
    }*/

    #footerArea #copy {
        background-color: var(--main-color);
        padding: 10px 0;
        text-align: right;
        clear: both;
    }

    #footerArea #copy p {
        width: 994px;
        color: #ffffff;
        margin: 0 auto;
        font-size: 10px;
        font-family: "Hiragino Mincho Pro", serif;
    }


}


/*
  common
****************************************************************/

/** main **/
main.main-content {
    position: relative;
    margin-top: -70px;
}

.main-content img {
    width: 100%;
}

/** heading **/
/* heading-sec */
.heading-sec {
    font-size: 2rem;
    text-align: center;
    position: relative;
    margin: 0 0 60px;
    letter-spacing: var(--heading-ls);
}

.heading-sec span {
    font-size: 1.4rem;
    display: block;
    color: #7E7E7E;
    letter-spacing: 0.7px;
}

.heading-sec::after {
    content: "";
    background-color: #7E7E7E;
    width: 22px;
    height: 1px;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.heading-sec--white {
    color: #fff;
}

.heading-sec--white::after {
    background-color: #fff;
}

/* heading-sec-sub */
.heading-sec-sub {
    font-size: 1.8rem;
    letter-spacing: var(--heading-ls);
}


/** button **/
.btn-whole {
    width: 100% !important;
}

.uk-button-default {
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
    padding: 23px;
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 2.8px;
    width: 295px;
    text-align: left;
    position: relative;
}

/* Hover + Focus */
.uk-button-default:hover,
.uk-button-default:focus,
/* OnClick + Active */
.uk-button-default:active,
.uk-button-default.uk-active {
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
}

.uk-button-default::after {
    display: inline-block;
    content: "";
    background-image: url("../image/arrow_btn.png");
    background-size: 100%;
    width: 23.5px;
    height: 7px;
    position: absolute;
    right: 23px;
    top: 45%;
    transition: all .3s;
}

.uk-button-default:hover:after {
    right: 17px;
}

.uk-button-default--white {
    color: #fff;
    border: 1px solid #fff;
}

/* Hover + Focus */
.uk-button-default--white:hover,
.uk-button-default--white:focus,
/* OnClick + Active */
.uk-button-default--white:active,
.uk-button-default--white.uk-active {
    color: #fff;
    border: 1px solid #fff;
}

.uk-button-default--white:after {
    background-image: url("../image/arrow_btn--white.png");
}

@media (min-width: 1025px) {

    .heading-sec.align-cl::after {
        left: 0;
        transform: translateX(0);
    }

    .heading-sec-sub {
        font-size: 2rem;
    }

}


/*
  TOP
****************************************************************/


/* hero
----------------------*/
.hero {
    margin: 0;
    background: url("../image/top/main_sp.jpg") top center no-repeat;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    position: relative;
    z-index: 3;
}

.hero::before {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    background-color: rgba(0, 0, 0, .3);
    z-index: 0;
}

.hero-inner {
    position: absolute;
    bottom: 30px;
    left: 25px;
}

.hero-inner h1 {
    font-size: 3.1rem;
    color: #fff;
    line-height: 1.4;
    letter-spacing: 3px;
    margin: 0 0 30px;
}

.hero-inner h1 span {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: block;
}

.hero-inner h2 {
    font-size: 1.8rem;
    color: #fff;
    line-height: 1.6;
    margin: 0 0 0 20px;
    letter-spacing: 3.6px;
}

/** スクロールダウン **/
.scrolldown {
    position: absolute;
    bottom: 0;
    left: 25px;
}

/* 丸の描写 */
.scrolldown:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    left: -4px;
    /*丸の形状*/
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #eee;
    animation:
        circlemove 1.6s ease-in-out infinite,
        cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
    0% {
        bottom: 95px;
    }

    100% {
        bottom: -5px;
    }
}

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
    0% {
        opacity: 0
    }

    50% {
        opacity: 1;
    }

    80% {
        opacity: 0.9;
    }

    100% {
        opacity: 0;
    }
}

/* 線の描写 */
.scrolldown:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2px;
    height: 100px;
    background: #fff;
}


@media (min-width: 1025px) {

    .hero {
        margin: -103px 0 0;
        background: url("../image/top/main.jpg") center top no-repeat;
        background-size: cover;
        width: 100%;
        height: 845px;
    }

    .hero-inner {
        position: absolute;
        bottom: 60px;
        left: 10%;
    }

    .hero-inner h1 {
        font-size: 4.6rem;
        margin: 0 0 60px;
    }

    .hero-inner h1 span {
        font-size: 1.7rem;
        margin-bottom: 25px;
    }

    .hero-inner h2 {
        font-size: 2.2rem;
        margin: 0 0 0 50px;
    }

    .scrolldown {
        left: 10%;
    }

    @keyframes circlemove {
        0% {
            bottom: 115px;
        }

        100% {
            bottom: -5px;
        }
    }

    .scrolldown:after {
        height: 120px;
    }

}

@media all and (min-width: 1025px) and (max-width: 1300px) {

    .hero {
        height: 550px;
    }

}


/* topics
----------------------*/
.sec-top-news .uk-container {
    padding-left: 0;
    padding-right: 0;
}

.sec-top-news p {
    line-height: 1.4;
}

.top-news-date {
    font-size: 1.3rem;
    color: #333;
}

.img-news {
    margin: 15px 0 25px;
    object-fit: cover;
    width: 100%;
    height: 200px;
}

/* slider */
.slider-news {
    margin-bottom: 60px;
}

.slider-news .slick-list {
    padding: 0 60px !important;
}

.slider-news .slick-list .slick-slide {
    margin: 0 12px;
}


@media (min-width: 1025px) {

    .sec-top-news .uk-container {
        padding-left: 40px;
        padding-right: 40px;
    }

    /* slider */
    .slider-news {
        margin-bottom: 80px;
    }

    .slider-news .slick-list .slick-slide {
        margin: 0 17px;
    }

}


/* concept
----------------------*/
.concept-cap {
    padding: 100px 0 210px;
    background: url("../image/top/concept_01.jpg") top center no-repeat;
    background-size: cover;
    color: #fff;
    position: relative;
    z-index: 0;
}

.concept-cap::before {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    background-color: rgba(0, 0, 0, .4);
    z-index: 0;
}

.concept-cap h3 {
    font-size: 2rem;
    text-align: center;
    letter-spacing: var(--heading-ls);
    position: relative;
}

.concept-outline {
    margin: -150px 0 100px;
    position: relative;
}

.img-concept {
    object-fit: cover;
    width: 100%;
    height: 300px;
    margin-bottom: 60px !important;
}

.wrap-btn-concept {
    text-align: center;
    margin-top: 60px;
}

/* slider */
.wrap-slider-concept {
    background: linear-gradient(180deg, transparent 0%, transparent 50%, var(--bg-main-color) 50%, var(--bg-main-color) 100%);
}

.slider-concept .slick-list {
    padding: 0 120px 0 0 !important;
}

.slider-concept .slick-list .slick-slide {
    margin: 0 30px 0 0;
}

@media (min-width: 1025px) {

    .concept-cap {
        padding: 150px 0 250px;
    }

    .concept-outline h3 {
        font-size: 2.8rem;
        letter-spacing: var(--heading-ls);
        margin: 0 0 160px;
    }

    .concept-outline {
        margin: -170px 0 200px;
    }

    .img-concept {
        width: 100%;
        height: auto;
        margin-bottom: 0 !important;
    }

    .wrap-btn-concept {
        text-align: left;
        margin-top: 70px;
    }

    /* slider */
    .slider-concept .slick-list {
        padding: 0 200px !important;
    }

    .slider-concept .slick-list .slick-slide {
        margin: 0 30px 0 0;
    }


}


/* banquet
----------------------*/
/* slider */
.slider-banquet div {
    position: relative;
}

.txt-slide-banq {
    position: absolute;
    right: 32px;
    bottom: 0;
    z-index: 3;
    font-size: 1.1rem;
    text-align: center;
    color: var(--sub-color);
    padding: 9.8px 10px;
    background: var(--bg-main-color);
    display: inline-block;
    width: 150px;
}

.slider-menu.slider-banquet .slick-prev {
    left: calc(100% - 72px - 160px);
}

@media (min-width: 1025px) {}


/* menu
----------------------*/
.sec-top-menu {
    padding-left: 15px;
    padding-right: 15px;
}

/* slider */
.slider-menu {
    margin-bottom: 60px !important;
}

.slider-menu img {
    object-fit: cover;
    width: 100%;
    height: 380px;
}

.slider-menu .slick-prev,
.slider-menu .slick-next {
    top: calc(100% - 18px);
    z-index: 2;
}

.slider-menu .slick-prev {
    left: calc(100% - 72px);
}

.slider-menu .slick-next {
    right: 16px;
}

.slider-menu .slick-prev:before,
.slider-menu .slick-next:before {
    padding: 12px;
    background: var(--bg-main-color);
}

@media (min-width: 1025px) {

    .sec-top-menu {
        padding-left: 0;
        padding-right: 0;
    }

    .menu-outline {
        margin-left: 8%;
    }

    /* slider */
    .slider-menu img {
        height: 500px;
    }


}


/* usecase
----------------------*/
.list-top-case img {
    object-fit: cover;
    width: 100%;
    height: 320px;
}

.list-top-case h3 {
    margin: 20px 0;
}

.list-top-case h3 a {
    font-size: 1.8rem;
    line-height: 1.4;
    text-decoration: underline;
}

.txt-tag-case {
    margin-bottom: 40px !important;
}

.txt-tag-case a,
.txt-tag-case span {
    font-size: 1.3rem;
    line-height: 1.4;
    display: inline-block;
    margin-right: 10px;
}

@media (min-width: 1025px) {

    .txt-tag-case {
        margin-bottom: 70px !important;
    }


}


/* plan
----------------------*/
.img-plan {
    position: relative;
}

.img-plan img {
    margin: 15px 0 25px;
    object-fit: cover;
    width: 100%;
    height: 270px;
}

.img-plan div {
    font-size: 1.2rem;
    color: #fff;
    background: #000;
    padding: 10px;
    position: absolute;
    left: 14px;
    bottom: 30px;
    display: inline-table;
    width: fit-content;
}

.img-plan div p {
    font-size: 1.2rem;
}

.slider-plan p {
    font-size: 1.8rem;
    line-height: 1.4;
}


/* slider */
.slider-plan {
    margin-bottom: 60px;
}

.slider-plan .slick-list {
    padding: 0 40px !important;
}

.slider-plan .slick-list .slick-slide {
    margin: 0 12px;
}


@media (min-width: 1025px) {

    .img-plan img {
        height: 380px;
    }

    /* slider */
    .slider-plan {
        margin-bottom: 80px;
    }

    .slider-plan .slick-list .slick-slide {
        margin: 0 22px;
    }


}


/* access
----------------------*/
.detail-access {
    margin: 0 0 30px;
    line-height: var(--text-lh);
}

.detail-access dt {
    font-size: 1.4rem;
    margin: 0 0 15px;
}

.detail-access dd {
    font-size: 1.3rem;
}

.gmap {
    height: 335px;
    margin: 40px 0 60px;
}

@media (min-width: 1025px) {

    .detail-access {
        display: flex;
    }

    .detail-access dt {
        font-weight: normal;
        width: 23%;
    }

    .detail-access dd {
        font-size: 1.4rem;
    }

    .gmap {
        height: 616px;
        margin: 0;
    }


}

/*
  banquet
****************************************************************/
/** hero **/
.hero-second {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 70px;
}

.heading-page {
    font-size: 2.3rem;
    color: #fff;
    margin: 0;
    letter-spacing: var(--heading-ls);
    text-align: center;
}

.heading-page span {
    font-size: 1.4rem;
    display: block;
    letter-spacing: 0.7px;
}

.hero-banquet {
    background: url("../image/banquet/hero_sp.jpg") center center no-repeat;
    background-size: cover;
    height: 300px;
}

/** outline **/
.sec-banq-outline {
    padding: 40px 0 70px;
}

.sec-banq-outline h2 {
    font-size: 2rem;
    letter-spacing: var(--heading-ls);
    margin-bottom: 30px !important;
}

/** tab **/
ul.subnav-banq {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background: #fff;
}

ul.subnav-banq li {
    width: calc(100% / 2 - 1px);
    margin-bottom: 2px;
    text-align: center;
}

ul.subnav-banq li a {
    font-size: 1.1rem;
    background: var(--sub-color);
    color: #000;
    display: block;
    padding: 20px 0;
}

ul.subnav-banq li.uk-active a {
    background: var(--main-color);
    color: #fff;
}

.heading-banq {
    margin: 100px 0 60px;
    font-size: 2.1rem;
    text-align: center;
}

.wrap-banq-img {
    background: linear-gradient(180deg, transparent 0%, transparent 50%, var(--bg-main-color) 50%, var(--bg-main-color) 100%);
}

.mgnB-banq {
    margin-bottom: 70px;
}

.wrap-banq-detail {
    padding: 60px 0 100px;
    background: var(--bg-main-color);
}

.wrap-banq-detail h4 {
    font-size: 1.8rem;
    margin-bottom: 40px !important;
    letter-spacing: var(--heading-ls);
}

.heading-banq-detail {
    font-size: 1.6rem;
    text-align: center;
    margin: 0 0 40px;
    letter-spacing: var(--heading-ls);
}

.heading-banq-detail span {
    font-size: 1.4rem;
    display: block;
    color: #7E7E7E;
    letter-spacing: 0.7px;
}

.wrap-banq-spec {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.wrap-banq-spec div {
    box-sizing: content-box;
}

.wrap-banq-spec dl {
    color: #000;
    margin: 0;
    text-align: center;
    margin-bottom: 2px;
}

.wrap-banq-spec div:nth-child(1),
.wrap-banq-spec div:nth-child(2),
.wrap-banq-spec div:nth-child(3) {
    width: calc(100% / 3 - 2px);
}

.wrap-banq-spec div:nth-child(4),
.wrap-banq-spec div:nth-child(5),
.wrap-banq-spec div:nth-child(6),
.wrap-banq-spec div:nth-child(7) {
    width: calc(100% / 4 - 2px);
}

.wrap-banq-spec dl dt {
    background: var(--sub-color);
    margin-bottom: 2px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrap-banq-spec dl dd {
    background: #fff;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul.subnav-layout {
    margin: 0 0 50px;
}

ul.subnav-layout li {
    margin: 0 0 25px;
}

ul.subnav-layout li a {
    font-size: 1.3rem;
    background: none;
    color: #000;
    border: 1px solid #000;
    display: block;
    padding: 18px 0;
    text-align: center;
}

ul.subnav-layout li.uk-active a {
    background: var(--main-color);
    color: #fff;
    border: 1px solid var(--main-color);
}


@media (min-width: 1025px) {

    .hero-banquet {
        background: url("../image/banquet/hero.jpg") center center no-repeat;
        height: 400px;
    }

    .sec-banq-outline {
        padding: 90px 0 120px;
    }

    ul.subnav-banq {
        box-sizing: content-box;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 40px;
        padding-right: 40px;
        background: none;
    }

    ul.subnav-banq li {
        width: calc(100% / 3 - 2px);
        margin-bottom: 0;
    }

    ul.subnav-banq li a {
        font-size: 1.3rem;
    }

    ul.subnav-banq li:nth-child(1) a {
        border-radius: 10px 0px 0px 10px;
    }

    ul.subnav-banq li:nth-child(3) a {
        border-radius: 0px 10px 10px 0px;
    }

    .mgnB-banq {
        margin-bottom: 170px;
    }

    .wrap-banq-detail {
        padding: 70px 0 160px;
    }

    .wrap-banq-detail h4 {
        font-size: 2rem;
    }

    .wrap-banq-spec div {
        width: calc(100% / 7 - 2px) !important;
    }

    ul.subnav-layout {
        margin: 0 0 90px;
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    ul.subnav-layout li {
        margin: 0;
        width: calc(100% / 3 - 20px);
    }

    /*ul.subnav-layout-hisui li{
        margin: 0;
        width: calc(100% / 2 - 20px);
        }*/

    ul.subnav-banq-bottom.uk-active {
        margin: 0 auto !important;
        text-align: center;
        left: 0;
        right: 0;
    }

    /*ul.subnav-banq-bottom{
            position: fixed;
            margin: 0 auto;
            text-align: center;
            left: 0;
            right: 0;
            bottom: 0;
            }*/

}


.event {
    padding: 100px 0;
    background: url("../image/top/event01.jpg") center center no-repeat;
    background-size: cover;
    color: #fff;
    position: relative;
    z-index: 0;
}

.event::before {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: rgba(0, 0, 0, .7);
    z-index: 0;
}

.event__inner {
    position: relative;
    z-index: 1;
}

.event__img img {
    aspect-ratio: 355/230;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 1025px) {
    .event {
        padding: 156px 0;
    }

    .event__img img {
        aspect-ratio: 510/388;
    }
}