@charset "utf-8";
/*ベース_______________________________________*/
body {
    position: relative;
    font-family: "Noto Sans JP", serif;
    font-style: normal;
    color: #555;
    letter-spacing: .05em;
    line-height: 1.7;
    background-color: #fff;
}
img {
    width: 100%;
    max-width: 100%;
    height: auto;
}
body.menu_open {
    position: fixed;
    width: 100%;
    height: 100dvh;
    height: 100svh;
    height: 100vh;
}
.u__GothicA1 {
    font-family: 'Advent Pro', sans-serif;
 }
/*ヘッダー_______________________________________*/
.block_header {
    width: 100%;
    z-index: 99999;
    top: 0;
    left: 0;
    position: absolute;
    background-color: rgba(255, 255, 255, 0);
    transition: background-color .3s;
}
@media screen and (max-width: 767px) {
    .block_header {
        position: fixed;
    }
    .block_header.on {
        background-color: rgba(255, 255, 255, .8);
    }
}
.block_header .header_inner {
    width: 1650px;
    max-width: calc(100% - 48px);
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .3s;
}
.block_header .header_inner .btn_box {
    display: flex;
    gap: 0, 16px;
}
.block_header .header_inner .btn_box a {
    transition: .3s;
}
.block_header .header_inner .btn_box a:hover {
    opacity: .8;
}
.block_header .header_inner .h_logo {
    width: 39.57%;
}
@media screen and (max-width: 1199px) {
    .block_header .header_inner .h_logo {
        width: 40.99%;
    }
}
@media screen and (max-width: 767px) {
    .block_header .header_inner .h_logo {
        width: 80%;
    }
}
@media screen and (max-width:340px) {
    .block_header .header_inner .h_logo {
        width: clamp(240px, calc(322 / 768 * 100vw), 392px);
    }
}
.menu_open .block_header {
    pointer-events: none;
    background-color: rgba(255, 255, 255, 0);
}
.menu_open .block_header .h_logo {
    visibility: hidden
}
.menu_open .block_header .btn_menu {
    pointer-events: auto;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, .6));
}
/*メニュー_______________________________________*/
.g_nav {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: rgba(255 255 255 / .7);
    padding: 8px 0;
    color: #502808;
    font-family: "Shippori Mincho", serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
}
.g_nav .nav_list {
    width: 1280px;
    max-width: calc(100% - 48px);
    margin: 0 auto;
    display: flex;
    flex-flow: wrap;
    justify-content: space-evenly;
    align-items: center;
    color: #502808;
}
.g_nav .nav_list a {
    text-align: center;
    transition: .3s;
    padding: 24px 0;
    width: 136px;
    max-width: 10.625%;
}
.g_nav .nav_list > a {
    position: relative;
}
.g_nav .nav_list > a::after {
    content: "";
    display: block;
    position: absolute;
    background-color: #E0CDA8;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    z-index: -1;
    opacity: 0;
    transition: .3s;
}
.g_nav .nav_list > a:hover::after {
    opacity: 1;
}
.g_nav .nav_list > a.is_page::after {
    opacity: 1;
}
.g_nav .nav_list .home img {
    width: 1.176em;
}
.g_nav .nav_list .insta img {
    width: 1.882em;
}
@media screen and (max-width: 1199px) {
    .g_nav {
        font-size: calc(17/ 1200 * 100vw);
    }
}
@media screen and (max-width: 767px) {
    .g_nav {
        display: none;
    }
}
.menu_open .sp_nav {
    transform: translateX(0);
    opacity: 1;
}
.sp_nav {
    transform: translateX(100%);
    display: none;
    background-color: rgba(255, 255, 255, .8);
    position: fixed;
    top: 0;
    left: 0;
    padding: 110px 8px 16px;
    width: 100%;
    z-index: 9999;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    opacity: 0;
    transition: .3s ease opacity;
    overflow: scroll;
}
.sp_nav nav {
    padding: 20px 16px;
    background-color: #fff;
    border: 1px solid #502808;
    border-radius: 16px;
    display: flex;
    flex-flow: wrap;
    gap: 8px;
}
.sp_nav nav > a {
    background: /*linear-gradient(180deg, rgba(105, 165, 150, 0.00) 0%, rgba(105, 165, 150, 0.20) 100%),*/ #FFF;
    width: 100%;
    padding: 20px 1%;
    border: 1px solid #502808;;
    border-radius: 5px;
    font-size: 14px;
    color:#502808;;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    letter-spacing: -.08em;
    transition: .3s;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
@media screen and (max-width: 375px) {
    .sp_nav nav > a {
        font-size: 12px;
    }
}
.sp_nav nav > a:hover, .sp_nav nav > a:active {
    border-radius: 20px 5px 20px 0;
    background: linear-gradient(180deg, rgba(105, 165, 150, 0.00) 0%, rgba(105, 165, 150, 0.40) 100%), #FFF;
}
/*.sp_nav nav > a img {
    margin-bottom: 15px;
    width: 32px;
}*/
.sp_nav nav > a.home img {
    width: 36px;
}
.sp_nav nav > a.access img {
    width: 37px;
}
.sp_nav nav > a.guidance img {
    width: 36px;
}
.sp_nav nav > a.newspaper img {
    width: 160px;
    margin-bottom: 0;
}
.sp_nav nav > a.two {
    width: calc((100% - 32px) / 5);
}
@media screen and (max-width: 767px) {
    .sp_nav nav > a.two {
        width: calc(50% - 4px);
    }
}
.sp_nav nav > a.three {
    width: calc((100% - 32px) / 5);
}
@media screen and (max-width: 767px) {
    .sp_nav nav > a.three {
        width: calc((100% - 16px) / 3);
    }
}
.sp_nav nav > a.four {
    width: calc((100% - 16px) / 3);
}
@media screen and (max-width: 767px) {
    .sp_nav nav > a.four {
        width: 100%;
    }
}
.sp_nav nav > a.sns {
    width: calc(50% - 4px);
}
@media screen and (max-width: 767px) {
    .sp_nav nav > a.sns {
        width: 100%;
    }
}
.sp_nav .box_link {
    width: 100%;
    display: flex;
    gap: 8px;
}
.sp_nav .box_link .top__hdr-btn {
    width: calc(50% - 4px);
    min-height: 72px;
}
.sp_nav .box_link .top__hdr-btn:hover .top__hdr-tel {
    background: #fff;
    color: #7EAD61;
}
.sp_nav .box_link .top__hdr-btn:hover .top__hdr-tel .top__hdr-small {
    color: #7EAD61;
}
.sp_nav .box_link .top__hdr-btn:hover .top__hdr-tel .top__hdr-large > img {
    filter: invert(40%) sepia(34%) saturate(437%) hue-rotate(53deg) brightness(102%) contrast(100%);
}
.sp_nav .box_link .top__hdr-btn:hover .top__hdr-web {
    background: #fff;
    color: #EFB545;
}
.sp_nav .box_link .top__hdr-btn:hover .top__hdr-web .top__hdr-small {
    color: #EFB545;
}
.sp_nav .box_link .top__hdr-btn:hover .top__hdr-web .top__hdr-large > img {
    filter: invert(9%) sepia(91%) saturate(5585%) hue-rotate(316deg) brightness(92%) contrast(104%);
}
.sp_nav .box_link .top__hdr-tel, .top__hdr-web {
    padding: 14px 4px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    gap: 10px;
    transition: .3s;
}
.sp_nav .box_link .top__hdr-tel {
    background: #fff;
    color: rgba(80, 40, 8, 1);
    border: 2px solid rgba(80, 40, 8, 1);
}
.sp_nav .box_link .top__hdr-web {
    background-color: rgba(80, 40, 8, 1);
    color: #fff;
    border: 2px solid rgba(80, 40, 8, 1);
}
.sp_nav .box_link .top__hdr-small {
    line-height: 1;
    /*width: 160px;*/
    font-size: 12px;
    padding-bottom: 2px;
    letter-spacing: 0.06em;
    height: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: fit-content;
}
.sp_nav .box_link .top__hdr-small.adjust01 {
    color: #502808;
}
.sp_nav .box_link .top__hdr-large {
    /*width: 100%;*/
    display: flex;
    height: 24px;
    width: 200px;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.sp_nav .box_link .top__hdr-tel .top__hdr-large > span {
    font-size: 20px;
    letter-spacing: 0.02em;
    line-height: 1;
}
.sp_nav .box_link .top__hdr-tel .top__hdr-large > img {
    width: 14px;
    margin-right: 5px;
}
@media screen and (max-width: 374px) {
    .sp_nav .box_link .top__hdr-tel .top__hdr-large > img {
        display: none;
    }
}
.sp_nav .box_link .top__hdr-web .top__hdr-large > span {
    font-size: 18px;
    line-height: 1;
    padding-bottom: 3px;
    letter-spacing: 0.05em;
    font-weight: 500;
}
.sp_nav .box_link .top__hdr-web .top__hdr-large > span em {
    font-size: 18px;
    vertical-align: -0.02em;
}
.sp_nav .box_link .top__hdr-web .top__hdr-large > img {
    width: 27px;
    margin-right: 2px;
}
@media screen and (max-width: 374px) {
    .sp_nav .box_link .top__hdr-web .top__hdr-large > img {
        display: none;
    }
}
@media screen and (max-width: 1199px) {
    .sp_nav {
        display: block;
    }
}
@media screen and (max-width: 767px) {
    .sp_nav {
        padding: 70px 8px 16px;
    }
}
/*ヘッダー ハンバーガーメニュー ボタン*/
.btn_menu {
    display: none;
    position: relative;
    cursor: pointer;
    width: 40px;
    height: 33px;
}
@media screen and (max-width: 767px) {
    .btn_menu {
        display: flex;
    }
}
.btn_menu span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0;
    height: 3px;
    border-radius: 2px;
    background: rgba(48, 32, 16, .98);
    width: 100%;
}
.btn_menu span:nth-of-type(1) {
    top: 0;
}
.btn_menu span:nth-of-type(2) {
    top: 15.0px;
}
.btn_menu span:nth-of-type(3) {
    top: 30px;
}
.btn_menu.open span:nth-of-type(1) {
    top: 10.5px;
    left: 0px;
    transform: translateY(6px) rotate(-45deg);
}
.btn_menu.open span:nth-of-type(2) {
    opacity: 0; /*真ん中の線は透過*/
}
.btn_menu.open span:nth-of-type(3) {
    top: 22.5px;
    left: 0px;
    transform: translateY(-6px) rotate(45deg);
}
/*フッター_______________________________________*/
.block_footer {
    overflow: hidden;
    background-image: url("../img/common/bi_footer.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding-top: 93px;
}
.block_footer .sec_ttl01 .dec02 {
    color: #502808;
    text-align: right;
}
.block_footer .footer_inner {
    position: relative;
    z-index: 1;
    width: 1280px;
    max-width: calc(100% - 48px);
    margin: 0 auto;
    color: #fff;
    margin-bottom: -100px;
}
.block_footer .sec_ttl01 {
    position: absolute;
    z-index: 1;
    top: -38px;
    right: 0;
    text-align: left;
}
.block_footer .sec_ttl01 .dec01::after {
    left: -5%;
    width: 100vw;
}
.block_footer .wrapper_cont {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    margin-bottom: 100px;
}
.block_footer .wrapper_cont .box_data {
    width: 50%
}
.block_footer .wrapper_cont .box_data .logo {
    width: 100%;
    margin-bottom: 60px;
}
.block_footer .wrapper_cont .box_data .icon {
    display: flex;
    justify-content: space-between;
    max-width: 600px;
    margin-bottom: 64px;
}
.block_footer .wrapper_cont .box_data .icon li {
    width: 24%;
    min-height: 120px;
    background-color: rgba(255, 255, 255, .7);
    color: #444;
    text-align: center;
    font-family: "Noto Serif JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
    display: flex;
    justify-content: center;
    flex-flow: column;
    align-items: center;
    gap: 8px 0;
}
.block_footer .wrapper_cont .box_data .icon li .dec01_1 {
    font-size: .81em;
}
.block_footer .wrapper_cont .box_data .icon li img {
    width: 58px;
}
.block_footer .wrapper_cont .box_img {
    width: 47.42%;
}
.block_footer .wrapper_cont .time {}
.block_footer .wrapper_cont .time dt, .block_footer .wrapper_cont .add dt {
    display: flex;
    justify-content: space-between;
    color: #4D4540;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: .08em;
    padding-bottom: 8px;
    margin-bottom: 24px;
    border-bottom: 1px solid #E0CDA8;
    color: #333;
}
.block_footer .wrapper_cont .tel dt .dec01, .block_footer .wrapper_cont .time dt .dec01, .block_footer .wrapper_cont .add dt .dec01 {
    position: relative;
    z-index: 0;
    padding-left: 33px;
}
.block_footer .wrapper_cont .tel dt .dec01::after, .block_footer .wrapper_cont .time dt .dec01::after, .block_footer .wrapper_cont .add dt .dec01::after {
    content: "";
    position: absolute;
    z-index: 0;
    display: inline-block;
    background-image: url("../img/common/icon_time.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 23px;
    aspect-ratio: 1;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.block_footer .wrapper_cont .add dt .dec01::after {
    background-image: url("../img/common/icon_map-pin.svg");
    width: 18px;
    aspect-ratio: 18/25;
}
.block_footer .wrapper_cont .tel dt .dec01::after {
    background-image: url("../img/common/icon_tel.svg");
    width: 18px;
    aspect-ratio: 18/24;
}
.block_footer .wrapper_cont .time dt .dec02 {
    color: #fff;
    font-size: 15px;
    line-height: 1;
}
.block_footer .wrapper_cont .time dt .dec03 {
    display: none;
    width: 114px;
    text-align: center;
    background-color: #502808;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    padding: 5px 0;
    color: #fff;
}
.block_footer .wrapper_cont .time dd {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    gap: 8px 4.68%;
    color: #fff;
    letter-spacing: .08em;
    padding-left: 2.65%;
}
.block_footer .wrapper_cont .time dd + dd {
    margin-top: 8px;
}
.block_footer .wrapper_cont .time dd .dec01 {
    width: 88px;
    background-color: #fff;
    color: #502808;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    padding: 1px 0;
    text-align: center;
}
.block_footer .wrapper_cont .time dd .dec02 {
    font-family: "M PLUS Rounded 1c", serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
}
.block_footer .wrapper_cont .time dd .dec03 {
    width: 114px;
    text-align: center;
    background-color: #502808;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    padding: 5px 0;
}
.block_footer .wrapper_cont .add {
    margin-top: 40px;
}
.block_footer .wrapper_cont .tel {
    margin-top: 26px;
}
.block_footer .wrapper_cont .tel dt .dec01 {
    font-size: 28px;
    font-family: "Advent Pro", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: normal;
    font-variation-settings:
        "wdth"100;
    line-height: 1;
    letter-spacing: .08em;
}
.block_footer .box_map {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 344px;
}
.block_footer small {
    background: rgba(48, 32, 16, .98);
    position: relative;
    z-index: 0;
    display: flex;
    flex-flow: column;
    width: 100%;
    height: 328px;
    color: #fff;
    text-align: center;
    font-family: "Corinthia", serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
}
.block_footer small .dec01 {
    position: relative;
    z-index: 0;
    display: block;
    margin-top: auto;
    padding: 56px 3% 47px;
}
.block_footer small .dec01::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    background-color: #fff;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
}
@media screen and (max-width:1210px) {
    .block_footer .wrapper_cont .time dd .dec02 {
        order: 999;
        width: 100%;
        padding-left: 4em;
    }
}
@media screen and (max-width:1023px) {
    .block_footer {
        padding-top: 60px;
        background-image: url("../img/common/bi_footer_tb.jpg");
    }
    .block_footer .footer_inner {
        margin-bottom: -90px;
    }
    .block_footer .wrapper_cont .box_data .logo {
        margin-bottom: 32px;
    }
    .block_footer .wrapper_cont .box_data .icon {
        max-width: 93.8%;
        margin: 32px auto 48px;
    }
    .block_footer .wrapper_cont {
        flex-flow: column;
        width: calc(100% - 48px);
        margin: 0 auto;
    }
    .block_footer .sec_ttl01 {
        position: static;
        width: fit-content;
        margin-left: auto;
        order: 1;
        top: 0;
        margin-right: 24px;
        margin-bottom: 23px;
    }
    .block_footer .wrapper_cont {
        width: calc(100% - 12px);
    }
    .block_footer .sec_ttl01 {
        margin-right: 6px;
        margin-bottom: 8px;
    }
    .block_footer .wrapper_cont .box_data {
        display: contents;
    }
    .block_footer .wrapper_cont .box_data .wrapper_data {
        order: 3;
        width: 100%;
        margin-bottom: 45px;
    }
    .block_footer .wrapper_cont .box_img {
        width: 100%;
        order: 2;
    }
    .block_footer .wrapper_cont .time dt, .block_footer .wrapper_cont .add dt {
        color: #fff;
    }
    .block_footer .wrapper_cont .time dt .dec01::after {
        background-image: url("../img/common/icon_time_w.svg");
    }
    .block_footer .wrapper_cont .add dt .dec01::after {
        background-image: url("../img/common/icon_map-pin02_w.svg");
        width: 18px;
        aspect-ratio: 18/25;
    }
    .block_footer .wrapper_cont .time dd .dec02 {
        order: 0;
        width: auto;
        padding-left: 0;
    }
}
@media screen and (max-width: 767px) {
    .block_footer {
        padding-top: 30px;
        background-image: url("../img/common/bi_footer_sp.jpg");
    }
    .block_footer .footer_inner {
        margin-bottom: -128px;
    }
    .block_footer .wrapper_cont .box_data .logo {
        margin-bottom: 38px;
    }
    .block_footer .wrapper_cont .box_data .icon {
        max-width: 86.0%;
        margin: 28px auto 30px;
        flex-flow: wrap;
        gap: 10px 0;
    }
    .block_footer .wrapper_cont .box_data .icon li {
        width: 48.64%;
    }
    .block_footer .wrapper_cont .time dt .dec02 {
        display: none;
    }
    .block_footer .wrapper_cont .time dt .dec03 {
        display: block;
    }
    .block_footer .wrapper_cont .time dd {}
    .block_footer .wrapper_cont .time dd .dec01 {
        width: 72px;
        font-size: 13px;
    }
    .block_footer .wrapper_cont .time dd .dec02 {
        color: #333;
        font-size: 15px;
    }
    .block_footer .wrapper_cont .time dd .dec03 {
        display: none;
    }
    .block_footer .wrapper_cont .add dd {
        color: #333;
    }
    .block_footer .wrapper_cont .add dd .dec01 {
        display: block;
        padding-left: 3.5em;
    }
    .block_footer .wrapper_cont .tel {
        color: #333;
    }
    .block_footer .wrapper_cont .tel dt .dec01::after {
        filter: invert(90%);
    }
    .block_footer .box_map {
        height: 256px;
    }
    .block_footer small {
        font-size: 18px;
        height: 256px;
    }
    .block_footer small .dec01 {
        padding: 30px 3% 40px;
    }
    .block_footer .wrapper_cont .tel dt .dec01, .block_footer .wrapper_cont .time dt .dec01, .block_footer .wrapper_cont .add dt .dec01 {
        color: #333;
    }
    .block_footer .wrapper_cont .time dt .dec01::after {
        background-image: url("../img/common/icon_time.svg");
    }
    .block_footer .wrapper_cont .add dt .dec01::after {
        background-image: url("../img/common/icon_map-pin.svg");
        width: 18px;
        aspect-ratio: 18/25;
    }
}
@media screen and (max-width:600px) {
    .block_footer .wrapper_cont .box_data .wrapper_data dl {
        position: relative;
        z-index: 0;
    }
    .block_footer .wrapper_cont .box_data .wrapper_data dl::after {
        content: "";
        display: block;
        position: absolute;
        z-index: -1;
        background-color: rgba(255, 255, 255, .8);
        top: -9px;
        left: -10px;
        width: calc(100% + 20px);
        height: calc(100% + 18px);
    }
}
/*TOP戻る*/
.to_top {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 99;
}
.to_top .inner {
    overflow: hidden;
    width: 1160px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}
.btn_to_top {
    transform: translateY(100%);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    color: #fff;
    background-color: #ff0000;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    pointer-events: none;
    cursor: pointer;
    transition: .3s;
}
.btn_to_top:hover {
    background-color: #fd4747;
}
.on .btn_to_top {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
@media screen and (max-width:1023px) {
    .btn_to_top {
        width: 67px;
        height: 67px;
        font-size: 11px;
        top: 100vh
    }
}
.top__hdr-web .top__hdr-large > span {
    font-size: 18px;
    line-height: 1;
    padding-bottom: 3px;
    letter-spacing: 0.05em;
    font-weight: 500;
}
@media screen and (max-width: 375px) {
    .top__hdr-web .top__hdr-large > span {
        font-size: calc(18px / 375 *100vw);
    }
}
.top__hdr-web .top__hdr-large > span em {
    font-size: 18px;
    vertical-align: -0.02em;
}
.top__hdr-web .top__hdr-large > img {
    width: 27px;
    margin-right: 8px;
}
@media screen and (max-width: 375px) {
    .top__hdr-web .top__hdr-large > img {
        width: calc(27px / 375 *100vw);
        margin-right: 4px;
    }
}

/*フローティングバナー_______________________________________*/
.float_link {
    transform: translateY(120%);
    display: none;
    position: sticky;
    z-index: 2;
    left: 0;
    bottom: 0;
    transition: .3s;
}

.float_link a {
  width: 50%;
	aspect-ratio: 195 / 64;
  transition: .3s;
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: flex-end;
}
.float_link a.tel {
 background-color: rgba(255,255,255,.78);
}
.float_link a.web {
 background-color: rgba(80, 40, 8, 0.78);
}

.float_link a.on {
	aspect-ratio: 195 / 75;
}

.float_link a.on {
 border-radius: 12px 12px 0 0;
}
.float_link a:first-of-type.on {
 border-radius: 0 12px 0 0;
}
.float_link a:last-of-type.on {
  border-radius: 12px 0 0 0;
}





.float_link a img{
  width:78.46%;
}










.float_link.open {
    transform: translateY(0);
}
@media screen and (max-width: 767px) {
    .float_link {
        display: flex;
    }
}










/*セクション_______________________________________*/
/*コンテンツ　共用*/
/*パーツ_______________________________________*/
.en {
    font-family: "Corinthia", serif;
    font-weight: 400;
    font-style: normal;
}
.en02 {
    font-family: "Clicker Script", serif;
    font-weight: 400;
    font-style: normal;
}
.en03 {
    font-family: "Advent Pro", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth"100;
}
.jp {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
}
.jp02 {
    font-family: "M PLUS Rounded 1c", serif;
    font-weight: 400;
    font-style: normal;
}
.text_b01 {
    display: inline-block;
}
.bg__dotted {
    background-color: #ffffff;
    background-image: radial-gradient(#f8f8f8 2px, transparent 2px), radial-gradient(#f8f8f8 2px, transparent 2px);
    background-position: 0 0, 8px 8px;
    background-size: 16px 16px;
}
.text01 {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 2;
    letter-spacing: .08em;
}
.text01 + .text01 {
    margin-top: 1em;
}
@media screen and (max-width: 1199px) {
    .text01 {
        font-size: 15px;
    }
}
.sec_ttl01 {
    font-family: "Corinthia", serif;
    font-weight: 400;
    font-style: normal;
    color: #E0CDA8;
    font-size: 114px;
    line-height: 1;
    letter-spacing: 0;
    display: flex;
    flex-flow: column;
    text-align: right;
}
.sec_ttl01 .dec01 {
    position: relative;
    z-index: 0;
    display: flex;
    align-items: baseline;
}
.sec_ttl01 .dec01 img {
    width: 144px;
    margin-left: 28px;
}
.sec_ttl01 .dec01::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    background-color: #E0CDA8;
    bottom: .2em;
    right: 0;
    width: 100vw;
    height: 1px;
}
.sec_ttl01 .dec02 {
    display: block;
    font-size: .23em;
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.0;
    letter-spacing: .08em;
    margin-top: -.5em;
}
@media screen and (max-width: 1199px) {
    .sec_ttl01 {
        font-size: 88px;
    }
    .sec_ttl01 .dec02 {
        font-size: .27em;
    }
}
@media screen and (max-width: 767px) {
    .sec_ttl01 {
        font-size: 64px;
    }
    .sec_ttl01 .dec02 {
        font-size: .28em;
    }
}
.sec_ttl01_2 {
    color: #502808;
    text-align: center;
    font-family: "Shippori Mincho", serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .08em;
}
.sec_ttl01_2 .dec01 {
    display: block;
    margin-bottom: 16px;
    color: #E0CDA8;
    text-align: center;
    font-family: "Corinthia", serif;
    font-size: .833em;
    font-style: normal;
    font-weight: 400;
    line-height: .72;
}
@media screen and (max-width: 767px) {
    .sec_ttl01_2 {
        font-size: 40px;
    }
    .sec_ttl01_2 .dec01 {
        font-size: .8em;
        letter-spacing: .02em;
    }
}
.sec_ttl01_3 {
    color: #502808;
    text-align: center;
    font-family: "Shippori Mincho", serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.44;
    letter-spacing: .08em;
}
.sec_ttl01_3 .dec01 {
    display: block;
    margin-bottom: 3px;
    color: #E0CDA8;
    font-size: .666em;
}
@media screen and (max-width: 767px) {
    .sec_ttl01_3 {
        font-size: 28px;
    }
    .sec_ttl01_3 .dec01 {
        font-size: .714em;
    }
}
.sec_ttl02 {
    color: #502808;
    font-family: "Shippori Mincho", serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.04em;
}
.sec_ttl02 .dec01 {
    font-size: 1.4em;
}
.sec_ttl02 .dec01_1 {
    font-size: .85em;
}
.sec_ttl02 .dec02 {
    font-size: 1.8em;
}
.sec_ttl02 .dec02_1 {
    font-size: .80em;
}
.sec_ttl02 .dec02_2 {
    font-size: .66em;
}
.sec_ttl02 .dec04 {
    font-size: 2.0em;
    letter-spacing: -.14em;
}
.sec_ttl02 .dec03 {
    font-size: .7em;
}
@media screen and (max-width: 767px) {
    .sec_ttl02 {
        font-size: 24px;
    }
}
@media screen and (max-width:375px) {
    .sec_ttl02 {
        font-size: calc(24 / 375 * 100vw);
    }
}
.sec_ttl02_2 {}
.sec_ttl03 {
    display: block;
    color: #502808;
    text-align: right;
    font-family: "Shippori Mincho", serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.44;
    letter-spacing: .04em;
}
@media screen and (max-width: 767px) {
    .sec_ttl03 {
        font-size: 24px;
    }
}
@media screen and (max-width:375px) {
    .sec_ttl03 {
        font-size: calc(24 / 375 * 100vw);
    }
}
.sec_ttl03_2 {
    display: block;
    color: #fff;
    font-family: "Shippori Mincho";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}
.sec_ttl03_2 .dec01 {
    font-size: 1.428em;
}
.sec_ttl03_2 .dec02 {
    letter-spacing: 1.24em;
}
@media screen and (max-width: 767px) {
    .sec_ttl03_2 {
        font-size: 20px;
    }
    .sec_ttl03_2 .dec01 {
        font-size: 1.4em;
    }
}
@media screen and (max-width:375px) {
    .sec_ttl03_2 {
        font-size: calc(20 / 375 * 100vw);
    }
}
@media screen and (max-width: 1140px) {
    .box_link {
        width: 530px;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }
}
@media screen and (max-width: 767px) {
    .box_link {
        padding: 0;
    }
}
.box_link .btn01 {
    width: 48.4%;
}
.box_link .btn01.w_all {
    width: 100%;
}
@media screen and (max-width: 767px) {
    .box_link .btn01.adjust_layout03 {
        width: 100%;
    }
}
.tb {
    display: none;
}
@media screen and (max-width: 1199px) {
    .tb {
        display: inline;
    }
    .not_tb {
        display: none;
    }
}
.sp {
    display: none !important;
}
@media screen and (max-width: 767px) {
    .not_sp {
        display: none !important;
    }
    .sp {
        display: inline !important;
    }
}
/*アニメーション*/
.fadein01 {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(5px);
    transition: .7s;
}
.fadein01.go {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}


