@charset "UTF-8";

/*///////////////////// font-face ///////////////////////////*/
@font-face {
    font-family: "Noto Sans JP";
    src: url(/fonts/NotoSansJP-Regular.woff2) format("woff2");
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "Noto Sans JP";
    src: url(/fonts/NotoSansJP-Medium.woff2) format("woff2");
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: "Noto Sans JP";
    src: url(/fonts/NotoSansJP-Bold.woff2) format("woff2");
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: "Zen Kaku Gothic New";
    src: url(/fonts/ZenKakuGothicNew-Bold.woff2) format("woff2");
    font-weight: 700;
    font-display: swap;
}
/*///////////////////// font-face ///////////////////////////*/

.org-header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 80px;
    background-color: #ffffff;
    box-sizing: border-box;
}
.org-header * {
    font-family: "Noto Sans JP", sans-serif;
}
.org-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 80px;
    padding: 0 20px 0 30px;
}

/* ロゴ */
.org-header__brand {
    margin: 0;
    font-size: 0;
}
.org-header__logo {
    display: block;
    line-height: 0;
}
.org-header__logo:hover {
    opacity: 1;
}
.org-header__logo-img {
    display: block;
    width: 487px;
    height: 64px;
}

/* グローバルナビ */
.org-header__gnavi {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}
.org-header__gnavi-main {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
}
.org-header__appeal {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}
.org-header__appeal::before,
.org-header__appeal::after {
    content: "";
    flex-shrink: 0;
    width: 16px;
    height: 32px;
    background-repeat: no-repeat;
    background-size: 16px 32px;
}
.org-header__appeal::before {
    background-image: url("/images/top/icon_header-ttl--left.webp");
}
.org-header__appeal::after {
    background-image: url("/images/top/icon_header-ttl--right.webp");
}
.org-header__appeal-text {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    font-weight: 700;
    white-space: nowrap;
}
.org-header__appeal-item {
    font-size: 16px;
    line-height: 1;
    color: #2b346e;
}
.org-header__appeal-item--accent {
    font-size: 20px;
    color: #e5340e;
}
.org-header__appeal-item--num {
    font-size: 22px;
    color: #e5340e;
}
.org-header__nav {
    width: 100%;
}
.org-header__nav-list {
    display: flex;
    align-items: center;
    gap: 23px;
    padding-right: 4px;
    justify-content: flex-end;
}
.org-header__nav-link {
    position: relative;
    display: inline-block;
    font-weight: 700;
    font-size: 16px;
    line-height: normal;
    color: #33313d;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
}
.org-header__nav-link:hover {
    opacity: 1;
}
.org-header__nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -2px;
    left: 0;
    height: 2px;
    background-color: #33313d;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
}
.org-header__nav-link:hover::after {
    transform: scaleX(1);
}

/* お問い合わせ */
.org-header__contact {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 178px;
}
.org-header__contact-label {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 0;
    padding: 4px 5px 5px;
    background-color: #fff704;
    font-weight: 700;
    white-space: nowrap;
    width: fit-content;
    position: absolute;
    left: 0;
    right: 0;
    top: -2px;
    margin: auto;
}
.org-header__contact-label::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-top: 6px solid #fff704;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}
.org-header__contact-label--num {
    font-size: 18px;
    line-height: 1;
    color: #dd1616;
}
.org-header__contact-label--unit {
    font-size: 14px;
    line-height: 1;
    color: #dd1616;
}
.org-header__contact-label--text {
    font-size: 14px;
    line-height: 1;
    color: #2b346e;
}
.org-header__contact-btn {
    margin-top: 23px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 178px;
    height: 36px;
    border-radius: 99999px;
    background-image: linear-gradient(101deg, #ff9b28 4.55%, #d80000 135.32%);
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.org-header__contact-btn:hover {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    filter: brightness(1.08);
}
.org-header__contact-icon {
    display: block;
    width: 19px;
    height: 14px;
}
.org-header__contact-btn-text {
    font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
}

/* サイドフロート */
.org-float {
    position: fixed;
    top: 129px;
    right: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 60px;
}
.org-float * {
    font-family: "Noto Sans JP", sans-serif;
    box-sizing: border-box;
}
[class^="org-float__btn--"] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px;
    padding: 3px 0 20px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    transform-origin: right center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
[class^="org-float__btn--"]:hover {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
    filter: brightness(1.08);
}
.org-float__btn--mail {
    gap: 14px;
    background-image: linear-gradient(110deg, #ff9b28 25.18%, #d80000 90.96%);
}
.org-float__btn--satei {
    gap: 18px;
    height: 255px;
    background-image: linear-gradient(176deg, #35b7ef 0.37%, #1344e6 99.12%);
}
[class^="org-float__badge--"] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    padding: 2px;
    background-color: #fff102;
    font-weight: 700;
    line-height: 1.12;
    text-align: center;
}
.org-float__badge--satei {
    height: 51px;
    padding: 4px 2px;
}
[class^="org-float__badge--"]::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 4px solid #fff102;
    border-right: 3px solid transparent;
    border-left: 3px solid transparent;
    transform: translateX(-50%);
}
.org-float__badge-line {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    white-space: nowrap;
}
.org-float__badge-num {
    font-size: 14px;
    color: #e5340e;
}
.org-float__badge-unit {
    font-size: 12px;
    color: #e5340e;
}
.org-float__badge-sub {
    font-size: 12px;
    color: #2b346e;
}
.org-float__main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
[class^="org-float__icon--"] {
    display: block;
    width: 21px;
    height: 16px;
}
.org-float__icon--satei {
    height: 24px;
}
.org-float__text {
    width: 12px;
    font-weight: 700;
    font-size: 18px;
    line-height: 0.76;
    color: #ffffff;
    text-align: center;
    writing-mode: vertical-rl;
    letter-spacing: 0.06em;
}

