@charset "UTF-8";

/*///////////////////// font-face 読み込み例 ///////////////////////////*/

/* Zen Kaku Gothic New 400 (Regular) */
@font-face {
    font-family: 'Zen Kaku Gothic New';
    src: url(/fonts/ZenKakuGothicNew-Regular.woff2);
    font-weight: 400;
    font-display: swap;
}

/* Zen Kaku Gothic New 500 (Medium) */
@font-face {
    font-family: 'Zen Kaku Gothic New';
    src: url(/fonts/ZenKakuGothicNew-Medium.woff2);
    font-weight: 500;
    font-display: swap;
}

/* Zen Kaku Gothic New 700 (Bold) */
@font-face {
    font-family: 'Zen Kaku Gothic New';
    src: url(/fonts/ZenKakuGothicNew-Bold.woff2);
    font-weight: 700;
    font-display: swap;
}

.org-footer *,
.float__box *{
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

/*///////////////////// font-face 読み込み例 ///////////////////////////*/

.org-footer {
    background-color: #263238;
    overflow: hidden;
    padding-block: 70px 20px;
}

.org-footer__inner {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    max-width: 1920px;
    margin: 0 auto;
    width: 1140px;
}

.org-footer__upper {
    box-sizing: border-box;
}

.org-footer__main {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    box-sizing: border-box;
    gap: 298px;
    margin-bottom: 122px;
}

.org-footer__brand {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    gap: 20px;
    width: 277px;
}

.org-footer__brand-block {
    display: flex;
    flex-direction: column;
    gap: 17px;
    align-self: stretch;
}

.org-footer__logo-area a{
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 230px;
}

.org-footer__logo-area a:hover {
    opacity: 1;
}

.org-footer__logo-area a img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    padding: 0 0px;
}

.org-footer__company {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: stretch;
    align-self: stretch;
}

.org-footer__company-name {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    text-align: left;
}

.org-footer__address {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
}

.org-footer__hours {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    text-align: left;
}

.org-footer__mark {
    width: 35px;
    display: block;
}

.org-footer__mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.org-footer__nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 60px;
}

.org-footer__col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.org-footer__col-title {
    margin: 0;
    color: #d8d8d8;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    text-align: left;
}

.org-footer__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.org-footer__link {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    text-align: left;
    text-decoration: none;
}

.org-footer__link:hover {
    text-decoration: underline;
}

.org-footer__bottom {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    box-sizing: border-box;
    padding: 10px 0;
    justify-content: space-between;
}

.org-footer__bottom::before{
    position: absolute;
    content: "";
    background-color: #8d8d8d;
    width: 1920px;
    height: 1px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.org-footer__legal {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 30px;
}

.org-footer__legal-link {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
    text-decoration: none;
}

.org-footer__legal-link:hover {
    text-decoration: underline;
}

.org-footer__copy {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
    text-align: left;
}

/* サイドフロート Figma 12012:95 */
.float__box {
    position: fixed;
    z-index: 8;
    top: 285px;
    right: 10px;
    box-sizing: border-box;
    width: 80px;
    transform: translateY(-50%);
    opacity: 1;
    transition: opacity 0.25s ease;
    overflow: visible;
}

.float__box.is-float-hidden-by-footer {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.float__list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 80px;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: visible;
}

.float__item {
    margin: 0;
    padding: 0;
    overflow: visible;
}

.float__link {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 70px;
    overflow: visible;
    border: 1px solid transparent;
    border-radius: 5px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
    text-align: center;
    text-decoration: none;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        background-image 0.2s ease;
}

.float__link:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.float__link--reserve:focus-visible,
.float__link--line:focus-visible {
    outline-color: #074322;
}

.float__link--reserve {
    padding: 5px 0 0;
    background: linear-gradient(90deg, #074322 0%, #277d3a 100%);
}

.float__link--reserve:hover {
    border-color: #074322;
    background: linear-gradient(90deg, #d8f5e0 0%, #fafede 100%);
    color: #074322;
    opacity: 1;
}

/* 来店予約アイコン枠：Figma 12080:4349 Layer 17 と同寸（ホバー filter 時のレイアウト安定用） */
.float__link--reserve .float__link-icon {
    box-sizing: border-box;
    width: 25px;
    height: 22px;
    min-width: 25px;
    min-height: 22px;
    max-height: 22px;
    transition: filter 0.2s ease;
}

.float__link--reserve .float__link-icon img {
    width: 25px;
    height: 22px;
    max-width: 25px;
    max-height: 22px;
    object-fit: contain;
    transition: filter 0.2s ease;
}

.float__link--reserve:hover .float__link-icon img {
    filter: brightness(0) saturate(100%) invert(16%) sepia(18%) saturate(2578%) hue-rotate(87deg) brightness(94%) contrast(93%);
    transition: filter 0.2s ease;
}

.float__link--line {
    gap: 0;
    padding: 0 0 1px;
    background: linear-gradient(140deg, #06ac64 0%, #06c755 100%);
}

.float__link--line:hover {
    border-color: #06c755;
    background: #ffffff;
    color: #06ac64;
    opacity: 1;
}

.float__link--line .float__link-icon {
    box-sizing: border-box;
    width: 31px;
    height: 26px;
    min-width: 31px;
    min-height: 26px;
    max-height: 26px;
}

.float__link--line .float__link-icon img {
    transition: filter 0.2s ease;
}

.float__link--line:hover .float__link-icon img {
    filter: brightness(0) saturate(100%) invert(48%) sepia(65%) saturate(620%) hue-rotate(103deg) brightness(95%) contrast(92%);
}

.float__link-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    line-height: 0;
    overflow: visible;
}

.float__link-icon img {
    display: block;
    flex-shrink: 0;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.float__link-label {
    display: block;
}
