.top-navi__store {
	grid-column:span 2;
	display:flex;
	flex-direction:
	column;
	justify-content:
	flex-end;
	margin-top:15px
}

.top-navi__store-link {
	font-size:1rem;
	display:flex;
	align-items:center;
	justify-content:center;
	-webkit-column-gap:10px;
	-moz-column-gap:10px;
	column-gap:10px;
	width:100%;
	padding:20px;
	min-height:74px;
	background-color:#ebf2df;
	border-radius:6px;
	font-weight:700;
	transition:background-color .3s
}

.top-navi {
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.sale-top-navi {
 max-width: 337px;
}

.top-navi__links--upper{
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 9px;
    margin-top: 15px;
}

.top-navi__links--lower{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-top: 9px;
}

.top-navi__link.mn a {
    min-height: 75px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    column-gap: 3px;
    padding: 9px 9px;
}

.top-navi__link.mn.long {
  grid-column: span 3;
}

.top-navi__link.mn.long a{
  min-height: 52px;
  column-gap: 10px;
}

.top-navi__link.mn.long:hover .icon-auction {
    filter: brightness(0) invert(1);
}

.modal {
    display: none;
    position: relative;
    z-index: 200;
}

.modal.is-open {
    display: block;
}

.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(60, 60, 60, 0.7);
    display: grid;
    place-items: center;
}

.modal__container {
    background: #f0f0f0;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    width: 80%;
    max-width: 430px;
    font-weight: 700;
    font-size: 1rem;
}

.modal[aria-hidden=false] .modal__overlay {
    -webkit-animation: mmfadeIn 0.3s cubic-bezier(0.61, 1, 0.88, 1);
    animation: mmfadeIn 0.3s cubic-bezier(0.61, 1, 0.88, 1);
}

.modal[aria-hidden=false] .modal__container {
    -webkit-animation: mmslideIn 0.3s cubic-bezier(0.61, 1, 0.88, 1);
    animation: mmslideIn 0.3s cubic-bezier(0.61, 1, 0.88, 1);
}

.modal__close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 35px;
    height: 35px;
    z-index: 10;
    background-color: #292929;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__header{
    display: flex;
    column-gap: 12px;
    margin-bottom: 15px;
}

.modal__body .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #6eb92b;
    color: white;
    padding: 10px 20px;
    margin: 0 -30px 15px;
    width: auto;
    font-size: 1rem;
}

.modal__body .info .info-item{
    margin: 0 5px;
}

.modal__body .info .info-item .focus-letter{
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.modal__body .selection-text{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    column-gap: 7px;
}

.links-wrapper{
    padding: 0 15px 15px 15px;
    margin-left: auto;
    margin-right: auto;
}

.link-btns {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 5px;
    margin-bottom: 5px;
}

.link-btns.link-btns--col2 {
    grid-template-columns: repeat(2, 1fr);
}

.link-btns.link-btns--col3 {
    grid-template-columns: repeat(3, 1fr);
}

.link-btns__item a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: #fff;
    font-size: 1rem;
    height: 80px;
    border-radius: 6px;
    letter-spacing: .06em;
    font-weight: 700;
    background-image: url(/assets/renewal/smp/img/icon/arrow_green_right.svg);
    background-size: 6px 10px;
    background-position: right 10px center;
    background-repeat: no-repeat;
    padding-right: 18px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.link-btns.link-btns--col3 .link-btns__item a {
    flex-direction: column;
    padding-right: 0;
}

.modal__container .sell-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f28f08;
    height: 60px;
    letter-spacing: .06em;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    margin-left: 15px;
    margin-right: 15px;
    color: white;
    border-radius: 6px;
}

.modal__container .sell-btn:hover {
    background-color: #fff;
    border: 2px solid #f28f08;
    color: #f28f08;
}

.link-btns__item a:hover{
    background-color:#6eb92b
}

.link-btns__item a:hover .letter{
    color:#fff
}

.link-btns__item a:hover .fill{
    fill:#fff
}

.link-btns__item a:hover .stroke{
    stroke:#fff
}

.top-news__item {
    align-items: center;
}