@charset "UTF-8";

.l-footer {
    padding: 0;
    background-color: #fff;
    border-top: 1px solid #d2d2d2;
}

.org-footer * {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    box-sizing: border-box;
}

.org-footer__search{
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 1140px;
    margin: 0 auto;
    padding: 118px 0 120px;
}

.org-footer__search-row{
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.org-footer__search-ttl{
    flex-shrink: 0;
    width: 117px;
    margin: 0;
    padding-top: 11px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.7px;
    white-space: nowrap;
}

.org-footer__search-list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    width: 993px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.org-footer__tag{
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 12px 16px;
    background: #e6ecf4;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.7px;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.5s ease;
}

.org-footer__tag::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #003e92;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: center center;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.org-footer__tag:hover{
    color: #fff;
    opacity: 1;
}

.org-footer__tag:hover::before{
    opacity: 1;
    transform: scaleY(1);
}

.org-footer__content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    padding: 77px 0 14px;
    background: #f8f8f8;
}

.org-footer__body{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 1140px;
}

.org-footer__company{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: fit-content;
}

.org-footer__logo{
    display: block;
    line-height: 0;
    width: 142px;
    margin: 0 0 44px;
}

.org-footer__logo:hover{
    opacity: 1;
}

.org-footer__logo img{
    width: 100%;
    height: 100%;
    display: block;
}

.org-footer__address{
    margin: 0 0 30px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.7px;
}

.org-footer__btn{
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 210px;
    padding: 17px 16px;
    background: #003e92;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    color: #fff;
    text-decoration: none;
    transition: color 0.5s ease;
}

.org-footer__btn::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: center center;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.org-footer__btn:hover{
    color: #003e92;
    opacity: 1;
}

.org-footer__btn:hover::before{
    opacity: 1;
    transform: scaleY(1);
}

.org-footer__btn-txt{
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.8px;
    text-align: center;
    transition: color 0.5s ease;
}

.org-footer__btn-icon{
    position: absolute;
    top: 50%;
    right: 16px;
    z-index: 1;
    display: block;
    width: 14px;
    height: 6px;
    transform: translateY(-50%);
}

.org-footer__btn-icon rect{
    fill: #fff;
    transition: fill 0.5s ease;
}

.org-footer__btn-icon path{
    fill: none;
    stroke: #fff;
    transition: stroke 0.5s ease;
}

.org-footer__btn:hover .org-footer__btn-txt{
    color: #003e92;
}

.org-footer__btn:hover .org-footer__btn-icon rect{
    fill: #003e92;
}

.org-footer__btn:hover .org-footer__btn-icon path{
    stroke: #003e92;
}

.org-footer__nav{
    display: flex;
    align-items: flex-start;
    gap: 70px;
}

.org-footer__nav-list{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.org-footer__nav-link{
    position: relative;
    display: inline-block;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.7px;
    text-decoration: none;
    white-space: nowrap;
}

.org-footer__nav-link::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: center center;
    transition: transform 0.3s ease;
}

.org-footer__nav-link:hover{
    opacity: 1;
}

.org-footer__nav-link:hover::after{
    transform: scaleX(1);
}

.org-footer__copyright{
    width: 100%;
    margin: 0;
    padding-top: 12px;
    border-top: 1px solid #d2d2d2;
    color: #333;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.6px;
    text-align: center;
}

/* ============================
フロート
============================ */
.float__box{
    position: fixed;
    top: 40.2%;
    right: 0;
    z-index: 2;
    transform: translateY(-50%);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.float__box.is-hidden{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.float__list{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.float__list-item{
    margin: 0;
    padding: 0;
    width: auto;
}

.float__list-item--line{
    position: relative;
}

.float__item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-sizing: border-box;
    width: 80px;
    height: 80px;
    margin: 0;
    padding: 5px 0 8px;
    border: none;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    appearance: none;
    opacity: 1;
    transition: width 0.3s ease, opacity 0.3s ease;
}

.float__item:hover{
    width: 100px;
    opacity: 1;
}

/* ポップアップ上にマウスがあってもLINEボタンを伸ばしたままにする */
.float__list-item--line:hover .float__item--line,
.float__list-item--line:focus-within .float__item--line,
.float__list-item--line:has(.float__line-popup:not([hidden])) .float__item--line{
    width: 100px;
}

.float__item--line{
    background: #06c755;
}

.float__item--mail{
    background: #dc000c;
}

.float__item--reserve{
    background: #003e92;
}

.float__icon{
    display: block;
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    color: #fff;
    fill: none;
}

.float__txt{
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.7px;
    text-align: center;
    white-space: nowrap;
}

.float__txt--line{
    font-size: 16px;
    letter-spacing: 0.8px;
}

.float__line-popup{
    position: absolute;
    top: 0;
    right: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    box-sizing: border-box;
    width: 355px;
    padding: 30px;
    border: 1px solid #06c755;
    background: #fff;
}

.float__line-popup[hidden]{
    display: none;
}

.float__line-popup-ttl{
    box-sizing: border-box;
    width: 295px;
    margin: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #d2d2d2;
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.8px;
    text-align: center;
}

.float__line-popup-list{
    display: flex;
    flex-direction: column;
    gap: 9px;
    width: 295px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.float__line-popup-btn{
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
    box-sizing: border-box;
    width: 295px;
    height: 55px;
    padding: 17px 16px;
    border: 1px solid #06c755;
    background: #06c755;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    color: #fff;
    text-decoration: none;
    transition: color 0.5s ease, background-color 0.5s ease;
}

.float__line-popup-btn::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #fff;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: center center;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.float__line-popup-btn:hover{
    color: #06c755;
    background-color: #fff;
    border-color: #06c755;
    opacity: 1;
}

.float__line-popup-btn:hover::before{
    opacity: 1;
    transform: scaleY(1);
}

.float__line-popup-btn-txt{
    position: relative;
    z-index: 1;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.9px;
    text-align: center;
    white-space: nowrap;
    transition: color 0.5s ease;
}

.float__line-popup-arrow{
    position: absolute;
    top: 50%;
    right: 16px;
    z-index: 1;
    width: 14px;
    height: 6px;
    color: inherit;
    fill: currentColor;
    transform: translateY(-50%);
    transition: color 0.5s ease;
}

/* ============================
ページ上部に戻る
============================ */
/* アイコン内の白抜き部分もトランジションさせるためカスタムプロパティを型付け */
@property --pagetop-icon-fg{
    syntax: "<color>";
    inherits: true;
    initial-value: #fff;
}

.float__pagetop{
    --pagetop-icon-fg: #fff;
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 3;
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    color: #0098ba;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        color 0.5s ease,
        --pagetop-icon-fg 0.5s ease;
    cursor: pointer;
}

.float__pagetop.is-visible{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.float__pagetop:hover{
    --pagetop-icon-fg: #0098ba;
    color: #fff;
    opacity: 1;
}

.float__pagetop-icon{
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
    color: inherit;
}
