.sanchoku_header {
    margin-block: 20px;
    width: 100%;
    height: 100%;
}
.sanchoku_header_inner {
    display: flex;
    flex-flow: row wrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
    gap: 32px;
}
.sanchoku_header_logo {
    width: 150px;
}
.sanchoku_header_logo img {
    width: 100%;
    height: auto;
}
.sanchoku_header_nav {
    display: flex;
    flex-flow: row wrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
}
.sanchoku_header_nav_item {
    height: 100%;
    position: relative;
}
.sanchoku_header_nav_item a {
    color: #a58958;
    font-weight: 700;
    display: flex;
    flex-flow: row wrap;
    height: 100%;
    min-height: 40px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-block: 2px solid transparent;
    transition: .5s;
}
.sanchoku_header_nav_item > a {
    padding-inline: 72px;
		border-color: #E2DCD3;
}
.sanchoku_header_nav a:hover {
    color: #523F30;
    border-bottom-color: #523F30;
}
.sanchoku_header_nav_item:hover > a {
    color: #523F30;
    border-top-color: #523F30;
}
.sanchoku_header_nav_item:has(.sanchoku_header_nav_l2 a:hover) > a {
    border-bottom-color: transparent;
}
.sanchoku_header_nav_l2 {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    pointer-events: none;
		background: #fffe;
		width: 100%;
    transition: .5s;
}
[data-browse-mode="P"] .sanchoku_header_nav_item:hover .sanchoku_header_nav_l2 {
    opacity: 1;
    pointer-events: all;
		z-index: 999;
}
.sanchoku_area:hover > a {
    color: #523F30;
    border-bottom-color: #523F30;
}
.sanchoku_header_nav_l3 {
    position: absolute;
    top: 0;
    left: 100%;
    opacity: 0;
    pointer-events: none;
		background: #fffe;
    transition: .5s;
		width: 100%;
}
[data-browse-mode="P"] .sanchoku_area:hover .sanchoku_header_nav_l3 {
    opacity: 1;
    pointer-events: all;
		z-index: 999;
}
.sanchoku_mv {
    text-align: center;
}
.sanchoku_mv a {
    display: inline-block;
    width: min(100%, 1200px);
}


[data-browse-mode="S"] .sanchoku_header {
    margin-block: 10px;
}
[data-browse-mode="S"] .sanchoku_header_inner {
    justify-content: space-between;
    gap: 0;
}
[data-browse-mode="S"] .sanchoku_header_logo {
    width: 100px;
}
[data-browse-mode="S"] .sanchoku_header_nav {
    width: 100%;
    gap: 0;
    border-block: 1.5px solid #523F30;
}
[data-browse-mode="S"] .sanchoku_header_nav_item {
    width: 25%;
}
[data-browse-mode="S"] .sanchoku_header_nav_item > a {
    padding-inline: 0;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
		border-color: transparent;
}