@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;
}

/*///////////////////// font-face 読み込み例 ///////////////////////////*/

html{
    scroll-behavior: smooth;
}

#topkodawari{
    margin-top: -80px;
    padding-top: 80px;
}

.org-header svg{
    fill: none;
}

.org-header {
    position: sticky;
    top: 0;
    left: 0;
    background-color: #ffffff;
    z-index: 9;
}

.org-header * {
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

.org-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 21px 15px 21px 20px;
}

.org-header__logo-link {
    display: block;
    text-decoration: none;
}

.org-header__logo-link:hover{
    opacity: 1;
}

.org-header__logo {
    margin: 0;
    line-height: 0;
}

.org-header__logo-img {
    display: block;
    width: 200px;
    height: 35px;
    object-fit: contain;
}

.org-header__nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.org-header__menu {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.org-header__menu-link {
    display: inline-block;
    color: #263238;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
    text-decoration: none;
}

.org-header__menu-link:hover {
    color: #074322;
}

.org-header__menu-item--dropdown {
    position: relative;
}

.org-header__menu-link--dropdown {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.org-header__menu-item--dropdown.is-open .org-header__chevron svg {
    transform: rotate(180deg);
}

.org-header__chevron {
    display: inline-flex;
    flex-shrink: 0;
    line-height: 0;
}

.org-header__chevron svg {
    display: block;
    transition: transform 0.2s ease;
}

/* 物件検索ドロップダウン Figma 12139:1179 */
.org-header__dropdown.org-menu__inner {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 200;
    box-sizing: border-box;
    min-width: 180px;
    margin-top: 8px;
    padding: 10px 17px 10px 15px;
    border: 1px solid #f2f2f2;
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.org-header__dropdown-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.org-header__dropdown-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 0;
    color: #263238;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
    text-decoration: none;
}

.org-header__dropdown-link:hover {
    text-decoration: underline;
}

.org-header__dropdown-bar {
    flex-shrink: 0;
    width: 4px;
    height: 1px;
    background-color: #263238;
}

.org-header__dropdown-link--accent {
    color: #074322;
}

.org-header__dropdown-bar--accent {
    background-color: #074322;
}

.org-header__utilities {
    display: flex;
    align-items: center;
    gap: 20px;
}

.org-header__utility {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    color: #263238;
}

.org-header__utility:hover{
    opacity: 1;
}

.org-header__utility--favorite {
    width: 55px;
}

.org-header__utility--history {
    width: 44px;
}

.org-header__utility-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 22px;
}

.org-header__utility-icon img {
    display: block;
}

.org-header__utility-label {
    display: block;
    width: 100%;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.1em;
    text-align: center;
}

.org-header__utility:hover .org-header__utility-label {
    color: #074322;
}
