body.fixed {
    overflow: hidden;
}

.cap_end {
    text-align: left;
    padding: 40px 0;
    font-size: 10px !important;
    line-height: 1.5;
    font-family: "fot-tsukuaoldmin-pr6n", serif !important;
    font-style: normal !important;
    font-weight: 300;
}


/* header */

header {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    letter-spacing: 0.2em;
    color: #231815;
    z-index: 1000;
}

.header_inner {
    /* max-width: 808px; */
    padding: 0px 0px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: none;
    position: relative;
    z-index: 1000;
    background: #fff;
}

.header_logo {
    max-width: 230px;
    width: 100%;
    /* background: #00275e; */
    height: 100%;
    /* position: relative;
    z-index: 1000; */
}

.header_logo a {
    height: 100%;
    display: flex;
    align-items: center;
    /* padding: 10px 30px 10px 10px; */
    padding: 0px 0px 0px 10px;
}

.header_right {
    display: flex;
    align-items: center;
    height: 100%;
}

.header_outmap {
    display: flex;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.8);
    height: 100%;
    align-items: center;
    /* padding: 0 20px; */
}

.header_outmap li {
    /* margin-right: 20px; */
    height: 100%;
}

.header_outmap li a {
    padding: 0 20px;
    display: flex;
    align-items: center;
    height: 100%;
}

.entry {
    font-size: 12px;
    color: #fff;
    background: radial-gradient( #d5cdac, #bbb394);
    height: 100%;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    /* margin-right: 30px; */
    transition: 0.3s;
}

.entry:hover {
    transition: 0.3s;
    /* background: #112b38; */
    opacity: 0.7;
}

.entry a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
}

.entry.limited {
    background: radial-gradient(#bba593, #927c6a);
}

.btn-menu_bg {
    background: rgba(255, 255, 255, 0.8);
    height: 100%;
    padding: 0 20px;
}

#btn-menu p {
    /* font-size: 10px; */
    position: absolute;
    bottom: -1.2em;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
}

#btn-menu {
    position: relative;
    height: 18px;
    width: 36px;
    z-index: 996;
    margin: 20px 0 0;
    cursor: pointer;
}

#btn-menu span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #0b1b4b;
    border-radius: 40px;
    transition: transform .3s;
    border-radius: 40px;
}

#btn-menu span:nth-of-type(1) {
    top: 0px;
}

.header-white #btn-menu span {
    background: #000;
}

#btn-menu span:nth-of-type(2) {
    top: 8px;
}

#btn-menu span:nth-of-type(3) {
    top: 16px;
}

#btn-menu.is-open span:nth-of-type(1) {
    top: 8px;
    transform: rotate(45deg);
}

#btn-menu.is-open span:nth-of-type(2) {
    opacity: 0;
}

#btn-menu.is-open span:nth-of-type(3) {
    top: 8px;
    transform: rotate(-45deg);
}

.menu {
    height: 100%;
    max-height: 450px;
    width: 100%;
    max-width: 300px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 995;
    pointer-events: none;
    visibility: hidden;
}

.menu.is-visible {
    pointer-events: auto;
    visibility: visible;
}

.menu-scroller {
    position: relative;
    width: 100%;
    height: 100%;
}

.menu-wrap {
    height: 100%;
    width: 100%;
    position: relative;
    background: #fff;
    color: #fff;
    overflow: auto;
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    transition: .7s ease;
}

.menu.is-visible .menu-wrap {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.menu-body {
    height: 100%;
    position: relative;
    width: 100%;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    transition: .7s ease;
}

.menu.is-visible .menu-body {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.menu-inner {
    width: 100%;
    /* max-width: 740px; */
    margin: 0 auto;
    padding: 90px 20px 30px;
    overflow: hidden;
}

.menu_list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    color: #231815;
    transition: .7s ease;
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    transition-delay: 0.3s;
}

.menu_list .menu_item:last-of-type{
    margin-bottom: 0;
}

.menu.is-visible .menu_list {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition-delay: 0.3s;
}

.menu_list>div:first-of-type {
    /* margin-right: 50px; */
}

.menu_list {
    font-size: 18px;
    color: #231815;
    letter-spacing: 0.05em;
    font-weight: 500;
    /* margin-bottom: 60px; */
}

.menu_list a span {
    font-size: 14px;
    color: #231815;
    letter-spacing: 0.05em;
}

.menu_outmap {
    display: flex;
    color: #231815;
    max-width: 280px;
    justify-content: space-between;
    margin: 0 auto;
    transition: .7s ease;
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    transition-delay: 0.4s;
}

.menu.is-visible .menu_outmap {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition-delay: 0.4s;
}

.menu_item {
    /* margin-bottom: 20px; */
    margin-bottom: 15px;
    position: relative;
}

.menu_item a {
    position: relative;
    transition: 0.3s;
    display: inline-block;
}

.menu_item a:hover {
    opacity: 0.5;
    transition: 0.3s
}

.menu_item.new a:after {
    position: absolute;
    content: "NEW";
    transform: translate(100%, -50%);
    right: -5px;
    top: 50%;
    text-align: center;
    padding: 2px 4px;
    background: #e50211;
    font-size: 10px;
    color: #fff;
}

.menu_item.soon {
    opacity: 0.5;
    color: #858585;
}

.menu_item.soon a {
    pointer-events: none;
}

.menu_outmap a {
    display: flex;
}

.menu_out_icon {
    height: 20px;
    width: auto;
    margin-right: 10px;
}

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

.menu_entry {
    background: linear-gradient(to right, #9d9265, #c9be8e, #9d9265);
    max-width: 360px;
    margin: 40px auto 0px;
    font-size: 20px;
    height: 50px;
    border-radius: 100px;
    transition: 0.3s;
    transition: .7s ease;
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    transition-delay: 0.4s;
}

.menu.is-visible .menu_entry {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition-delay: 0.4s;
}

.menu_entry:hover {
    /* background: #112b38; */
    opacity: 0.6;
    transition: 0.3s;
}

.menu_entry a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
}

.menu_entry.menu_limited {
    background: linear-gradient(to right, #8b7665, #b19c8b, #8b7665);
    margin: 30px auto 0px;
}

.menu_logo {
    max-width: 200px;
    margin: 60px auto 0;
    transition: .7s ease;
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    transition-delay: 0.5s;
}

.menu.is-visible .menu_logo {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition-delay: 0.5s;
}

.header_h {
    content: "";
    display: block;
    width: 100%;
    height: 60px;
}

.menu-body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btm_menu {
    display: none;
}

.btm_menu .menu_entry {
    border-radius: 0;
}

.btn_head_gala{
    display: block !important;
    background: #0e68bb;
    color: #fff;
    padding: 10px 0 7px;
    letter-spacing: 0;
    text-align: center;
}
.btn_head_gala > span{
    letter-spacing: 0 !important;
    color: #fff !important;
}
.icn_gaibu > img{
    width: 10px;
    display: inline-block;
    margin-left: 3px;
    position: relative;
    bottom: 1px;
}

@media (max-width: 1279px) {
    #btn-menu {
        /* right: 15px; */
    }
}


/* @media (min-height: 750px) and (min-width: 768px){
    .menu-body {
        display: flex;
        justify-content: center;
        align-items: center;
    }
} */

@media (max-width: 800px) {
    .header_outmap li a {
        padding: 0 10px;
    }
}

@media (max-width: 650px) {

    .menu{
        max-width: 220px;
        max-height: 450px;
    }
    .menu-body {
        display: unset;
        justify-content: unset;
        align-items: unset;
    }
    #btn-menu {
        /* top: 12px; */
    }
    .menu-inner {
        /* padding: 80px 0 10px; */
    }
    .menu_list {
        font-size: 18px;
        margin-bottom: 40px;
    }
    .menu_list a span {
        font-size: 12px;
    }
    .menu_outmap {
        font-size: 14px;
    }
    .menu_out_icon {
        height: 18px;
    }
    .menu_entry {
        max-width: 400px;
        font-size: 14px;
        height: 40px;
    }
    .menu_logo {
        max-width: 180px;
        margin: 50px auto 0;
    }
    .menu_list {
        transition-delay: 0.5s;
    }
    .menu.is-visible .menu_list {
        transition-delay: 0.5s;
    }
    .menu_outmap {
        transition-delay: 0.6s;
    }
    .menu.is-visible .menu_outmap {
        transition-delay: 0.6s;
    }
    .menu_entry {
        transition-delay: 0.6s;
    }
    .menu.is-visible .menu_entry {
        transition-delay: 0.6s;
    }
    .menu_logo {
        transition-delay: 0.7s;
    }
    .menu.is-visible .menu_logo {
        transition-delay: 0.7s;
    }
}

@media (max-width: 760px) {
    .menu_list {
        display: block;
    }
    .header_outmap {
        display: none;
    }
    .entry {
        display: none;
    }
    #btn-menu p {
        bottom: -1em;
        width: 80%;
    }
    .menu_list>div:first-of-type {
        margin-right: unset;
        margin: 0 auto;
    }
    .menu_list>div {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        /* display: flex; */
        /* flex-direction: column; */
    }
    .menu_item.empty {
        display: none;
    }
    .menu_item {
        /* display:inline-block; */
        /* width: auto; */
        margin-bottom: 20px;
    }
    .menu_item:after {
        /* transform:translateX(0%); */
    }
    .btm_menu {
        display: flex;
        position: fixed;
        bottom: 0;
        margin: 0 auto;
        width: 100%;
        height: 50px;
    }
    .btm_menu .btn_box {
        width: 50%;
        padding-bottom: 0;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }
    .btn_box.en {
        background: radial-gradient( #d5cdac, #bbb394);
    }
    .btn_box.res {
        background: radial-gradient(#bba593, #927c6a);
    }
    .btm_menu .btn_box a {
        border-radius: 0;
        max-width: unset;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #000;
    }
    .btm_menu .btn_box a:hover {
        opacity: 0.6;
        transition: 0.3s;
    }
}


/* footer */

.l-footer {
    width: 100%;
    background-color: #f0f4f7;
    color: #333;
    /* font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif; */
    font-family: 'Lato', 'Noto Sans JP', '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-size: 14px;
    box-sizing: border-box;
    padding: 50px 0 20px;
    line-height: 1.6;
}

.l-footer * {
    box-sizing: border-box;
}

.l-footer a {
    text-decoration: none;
    color: #333;
    transition: opacity 0.3s;
}

.l-footer a:hover {
    opacity: 0.7;
}

.l-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.l-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.u-mt-20 {
    margin-top: 30px;
}

.u-sp-only {
    display: none;
}



.l-footer__top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
    gap: 30px;
}

.l-footer__col {
    flex: 1;
    min-width: 200px;
}

.l-footer__col--banner {
    flex: 1.2;
    max-width: 310px;
    margin: 0 auto;
}

.l-footer__title {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 15px;
    margin-top: 0;
}

.l-footer__list li {
    margin-bottom: 10px;
    font-size: 13px;
    color: #555;
}



.is-external {
    display: inline-flex;
    align-items: center;
}

.is-external::after {
    content: "";
    display: inline-block;
    width: 11px;
    height: 11px;
    margin-left: 5px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    top: -1px;
    /* 微調整 */
}

.l-footer__banner-text {
    font-size: 12px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.l-footer__banner img {
    width: 100%;
    height: auto;
    display: block;
}



.l-footer__middle {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid #dce4e9;
    padding-bottom: 40px;
    margin-bottom: 30px;
}

.l-footer__contact-label {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 10px;
}

.l-footer__phone-wrap {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 15px;
}


.l-footer__tel {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    letter-spacing: 0.02em;
    font-family: Arial, sans-serif;
    display: inline-flex;
    align-items: center;
}



.l-footer__tel::before {
    content: "";
    background: url(../img/common/icn_tel.svg) no-repeat;
    color: #fff;
    width: 35px;
    height: 20px;
    font-weight: bold;
    font-style: italic;
    padding: 4px 6px;
    margin-right: 5px;
    border-radius: 3px;
    line-height: 1;
    vertical-align: middle;
}

.l-footer__hours {
    font-size: 12px;
    color: #666;
}

.l-footer__logo img {
    max-width: 260px;
    height: auto;
    margin-bottom: 5px;
}



.l-footer__bottom {
    text-align: center;
}

.l-footer__bottom-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.l-footer__bottom-nav li {
    position: relative;
    padding: 0 15px;
}



.l-footer__bottom-nav li:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
    font-size: 12px;
    line-height: 1;
}

.l-footer__bottom-nav a {
    font-size: 13px;
    color: #555;
    display: block;
}

.l-footer__copyright {
    font-size: 11px;
    color: #666;
    /* font-style: italic; */
    /* font-family: Arial, sans-serif; */
    margin: 40px 0 20px;
    font-weight: 100;
    letter-spacing: 0.05em;
}



@media screen and (max-width: 650px) {
    .l-footer {
        padding: 40px 0;
    }
    .u-sp-only {
        display: block;
    }

    .l-footer__top {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }
    .l-footer__title {
        font-size: 13px;
        margin-bottom: 15px;
    }
    .l-footer__list--2col-sp {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 15px;
        row-gap: 12px;
    }
    .l-footer__list li {
        margin-bottom: 0;
    }
    .l-footer__list a {
        display: block;
        font-size: 13px;
        position: relative;
        padding-left: 15px;
        line-height: 1.4;
    }
    .l-footer__list a::before {
        content: "";
        position: absolute;
        left: 0;
        top: 7px;
        width: 5px;
        height: 5px;
        border-top: 1px solid #333;
        border-right: 1px solid #333;
        transform: rotate(45deg);
    }
    .l-footer__banner-text {
        text-align: left;
    }
    .l-footer__middle {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding-bottom: 30px;
        margin-bottom: 20px;
    }
    .l-footer__contact-label {
        font-size: 13px;
        margin-bottom: 5px;
    }
    .l-footer__phone-wrap {
        flex-direction: column;
        gap: 5px;
    }
    .l-footer__tel {
        font-size: 26px;
    }
    .l-footer__logo {
        width: 100%;
        margin-top: 10px;
    }
    .l-footer__logo img {
        max-width: 180px;
    }
    .l-footer__bottom {
        text-align: left;
    }
    .l-footer__bottom-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 20px;
        justify-content: start;
    }
    .l-footer__bottom-nav li {
        padding: 0;
        border: none;
    }
    .l-footer__bottom-nav li:not(:last-child)::after {
        display: none;
    }
    .l-footer__bottom-nav a {
        position: relative;
        padding-left: 15px;
        display: flex;
        align-items: center;
    }
    .l-footer__bottom-nav a::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        margin-top: -3px;
        width: 5px;
        height: 5px;
        border-top: 1px solid #555;
        border-right: 1px solid #555;
        transform: rotate(45deg);
    }
    .l-footer__copyright {
        font-size: 10px;
        text-align: center;
    }
}



.coda_foot{
    background: #f1f6f9;
    padding: 40px 0;
}
.coda_foot_nav{
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    letter-spacing: 0.05em;
    font-weight: bold;
}
.coda_foot_nav li{
    /* width: 30%; */
}
.coda_foot_logo{
    margin: 40px auto;
    max-width: 370px;
}
.coda_foot_copy{
    margin-top: 30px;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-align: center;
    line-height: 1.5;
}

footer a{
    transition-duration: 0.6s;
}
footer a:hover{
    opacity: 0.6;
}

@media (max-width: 800px) {

}

@media (max-width: 650px) {

    .coda_foot_nav{
        flex-direction: column;
        text-align: center;
        font-size: 13px;
    }

    .coda_foot_logo{
        width: 80%;
    }

}