@charset "UTF-8";

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* * {
	outline: 1px solid #DD4A36;
} */

/*=====================*/
/*	color
/*=====================*/
:root {
	--black: #000000;
    --text: #333333;
    --red: #DD4A36;
    --blue: #00559E;
    --yellow: #F9C100;
    --beige: #FFE0C3;
    --gray: #F5F5F5;
    --white: #ffffff;
    --parallax-gray: #CCCCCC;
}

/*=====================*/
/*	main font
/*=====================*/
div,
p,
a,
span {
    font-family: "Noto Sans JP", sans-serif; /* Noto Sans CJK JP */
	font-weight: 400;
    color: var(--black);
}
h2 {
    font-family: Arial, sans-serif; /* Helvetica Neue */
    color: var(--black);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1.1px;
}
.subtitle {
    font-family: Arial, sans-serif; /* Helvetica Neue */
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.8px;
    margin-top: 4px;
}
a {
    text-decoration: none;
    cursor: pointer;
}

/*=====================*/
#contents-area {
    background-image: url(/img/background_texture.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center top;
    width: 100%;
}
#contents {
    margin-top: 32px;
}
@keyframes huwahuwa {
	0% {
		transform: translate(0, 0px);
	}
	100% {
		transform: translate(0, 20px);
	}
}

/*=====================*/
/*	common
/*=====================*/
.header-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--text);
    border: 1px solid var(--black);
    max-width: 1216px;
    width: calc(1216 / 1280 * 100vw);
    margin: 0 auto;
    padding: 17px 0;
    position: relative;
    overflow: hidden;
    z-index: 4;
}
.background-circle-left {
    content: '';
	position: absolute;
	left: calc(-19 / 1280 * 100vw);
	top: calc(-453 / 1280 * 100vw);
    aspect-ratio: 1 / 1;
	width: calc(950 / 1280 * 100vw);
    max-width: 1180px;
	border-radius: 50%;
    border: 1px solid var(--black);
    background-color: var(--white);
    z-index: 0;
}
.left-02 {
    top: calc(-533 / 1280 * 100vw);
}
.background-circle-right {
    content: '';
	position: absolute;
	right: calc(-19 / 1280 * 100vw);
	top: calc(-653 / 1280 * 100vw);
    aspect-ratio: 1 / 1;
	width: calc(950 / 1280 * 100vw);
    max-width: 1180px;
	border-radius: 50%;
    border: 1px solid var(--black);
    background-color: var(--white);
    z-index: 0;
}
.title,
.subtitle {
    z-index: 1;
}

/*=====================*/
/*	hamburger Menu
/*=====================*/
.header {
    width: 100%;
    height: 100%;
    z-index: 3;
}
.header-background-sp {
    display: none;
}
.header-hum {
    position: fixed;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 24px;
    z-index: 4;
    top: 50%;
    left: 20px;
    cursor: pointer;
}
.hum-bar {
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s ease;
}
.nav-hum {
    position: fixed;
    top: 47%;
    left: 83px;
    background-color: var(--red);
    width: 121px;
    padding: 32px 24px 16px 24px;
    border-radius: 10px;
    z-index: 4;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}
.nav-hum::after {
    content: "";
    position: absolute;
    top: 20px;
    left: -10px;
    margin-left: -14px;
    border: 17px solid transparent;
    border-right: 17px solid var(--red);
    z-index: 3;
}
.nav-hum.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.nav-text {
    display: block;
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    text-decoration: none;
    transition: all 0.5s;
}
.nav-text:hover {
    color: var(--white);
    opacity: 0.7;
}
.nav-overlay,
.nav-sns-area,
.nav-close {
    display: none;
}

.header-hum.active .hum-bar:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
}

.header-hum.active .hum-bar:nth-child(2) {
    opacity: 0;
}

.header-hum.active .hum-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
}


/*=====================*/
/*	firstView
/*=====================*/
#top {
    position: absolute;
    top: -32px;
    width: 100%;
    height: 32px;
}
#firstView {
    width: 100%;
    height: calc(100svh - 32px);
}
.fv-window {
    margin: 32px 32px 32px 64px;
    width: auto;
    height: calc(100svh - 64px);
    border: 1px solid var(--black);
    position: relative;
}
.logo-area {
    position: absolute;
    top: calc(50% - 48px);
    left: 72px;
}
.update-area {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    right: 0;
    gap: 24px;
    padding: 40px 40px 0 0;
}
.update-contents {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}
.update-content {
    display: flex;
    align-items: center;
    gap: 8px;
}
.update-text {
    font-family: Arial, sans-serif; /* Helvetica Neue */
    font-size: 12px;
    letter-spacing: 0.6px;
}
.sns-area {
    background-color: var(--white);
    border: 1px solid var(--black);
    border-right: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: absolute;
    top: calc(50% - 78px);
    right: -1px;
    padding: 30px 12px;
}

/*=====================*/
/*	parallax
/*=====================*/
#object {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    position: absolute;
    top: 200px;
    transform: translate(-50%, 0);
    left: 50%;
    width: 100%;
    height: calc(80svh - 32px);
}
.object-sp,
.object-over-sp {
    display: none;
}
.object-pc {
    height: calc(80svh - 32px);
}
#parallax {
    position: relative;
    width: 100%;
}
.rellax {
    position: absolute;
    will-change: transform;
}
#parallax > .rellax {
    top: 100%;
}
.object-rectangle {
    border: 1.5px solid var(--black);
}
.object-circle {
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 1.5px solid var(--black);
}
.parallax-blue {
    background-color: var(--blue);
}
.parallax-red {
    background-color: var(--red);
}
.parallax-gray {
    background-color: var(--parallax-gray);
}
.parallax-yellow {
    background-color: var(--yellow);
}
.object-over {
    z-index: 4;
}
.parallax-over {
    display: flex;
    justify-content: center;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1600px;
    z-index: 5;
}
.about-over {
    width: 100%;
}
.window-top {
    background-color: var(--white);
    width: 100%;
    height: 32px;
    position: absolute;
    top: calc(0svh - 33px);
    z-index: 3;
}
.window-right {
    background-color: var(--white);
    width: 32px;
    height: 100svh;
    position: absolute;
    top: -32px;
    right: calc(0svh - 33px);
    z-index: 3;
    border-bottom: 1px solid var(--black);
}
.window-left {
    background-color: var(--white);
    width: 64px;
    height: 100svh;
    position: absolute;
    top: -32px;
    left: calc(0svh - 65px);
    z-index: 3;
    border-bottom: 1px solid var(--black);
}
.window-bottom {
    background-color: var(--white);
    width: 100vw;
    height: 32px;
    position: absolute;
    bottom: -33px;
    left: calc(0svh - 65px);
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
    z-index: 3;
}
.company-area {
    background-color: var(--white);
    border-top: 1px solid var(--black);
    border-left: 1px solid var(--black);
    width: 330px;
    height: 75px;
    position: absolute;
    bottom: -1px;
    right: -1px;
    z-index: 4;
}
.copyright {
    text-align: right;
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0.8px;
    padding: 20px 32px;
}

/*=====================*/
/*	about
/*=====================*/
#about {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.title_pc {
    font-family: Arial, sans-serif; /* Helvetica Neue */
    color: var(--black);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1.1px;
}
.subtitle-about {
    font-size: 12px;
    letter-spacing: 0.6px;
}
.about-area {
    width: fit-content;
    margin: 132px 0 227px;
    position: relative;
    overflow: hidden;
}
.about-background {
    background-image: url(/img/background_texture.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    width: 100vw;
    height: 100%;
    left: calc(-50vw + 50%); 
}
.about {
    width: fit-content;
    height: 222px;
    padding: 32px;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: 1px;
}
.about_pc {
    display: block;
}
.about_sp {
    display: none;
}
.point {
    color: var(--white);
    font-weight: 700;
    padding: 0 4px;
    margin: 0 4px;
}
.red {
    background-color: var(--red);
}
.yellow {
    background-color: var(--yellow);
}
.blue {
    background-color: var(--blue);
}

/*=====================*/
/*	pickup
/*=====================*/
#pickup {
    margin-top: 32px;
    overflow-x: hidden;
}
.pickup-column {
    width: calc(1216 / 1280 * 100vw);
    margin: 32px 0 66px;
    margin-left: calc((100vw - 1216px) / 2);
}
.pickup-list {
    display: flex;
    flex-direction: column;
}
.pickup {
    background-color: var(--white);
    width: 648px;
    height: 648px;
    border: 1px solid var(--black);
    margin: 0 16px;
    position: relative; 
}
.pickup:first-child {
    margin: 0 16px 0 0;
}
.pickup-head {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 648px;
    height: 88px;
    border-top: 1px solid var(--black);
    transform: rotate(90deg);
    transform-origin: 0 88px; 
    position: absolute;
    top: -88px;
    z-index: 1;
}
.pickup-tags {
    display: flex;
    height: 40px;
    gap: 16px;
    padding: 0 24px 0 0;
    border-right: 1px solid var(--black);
}
.pickup-tag {
    background-color: var(--gray);
    padding: 8px 24px;
    border-radius: 100px;
    width: fit-content;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
	font-weight: 400;
    letter-spacing: 1.12px;
    color: var(--black);
    transition: all 0.5s;
}
.pickup-tag:hover {
    background-color: var(--black);
    color: var(--white);
}
.pickup-media {
    width: auto;
    height: 26px;
    margin-left: 24px;
}
.yakuyomi {
    aspect-ratio: 263 / 125;
}
.hoikurashi {
    aspect-ratio: 400 / 100;
}
.kaigonomirailabo {
    aspect-ratio: 148 / 25;
}
.CANVAS {
    aspect-ratio: 808 / 126;
}
.serapist {
    aspect-ratio: 310 / 48;
}
.pickup-category {
    border-left: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 52px;
    padding: 0 32px;
    gap: 8px;
    position: absolute;
    top: 0;
    right: 0px;
}
.category-01 {
    background-color: var(--yellow);
}
.category-02 {
    background-color: var(--red);
}
.category-03 {
    background-color: var(--blue);
}
.pickup-icon {
    width: 24px;
    height: 24px;
}
.pickup-categoryname {
    color: var(--white);
    font-weight: 500;
    letter-spacing: 1.12px;
}
.pickup-area {
    padding: 0 0 0 120px;
    position: relative;
    z-index: 0;
}
.pickup-link {
    display: block;
    width: 100%;
    height: 100%;
    transition: all 0.5s;
}
.pickup-link:hover {
    color: var(--white);
    opacity: 0.7;
}
.pickup-content {
    padding-top: 84px;
    margin-right: 32px;
}
.pickup-thumbnail {
    width: 496px;
    height: 293px;
    border: 1px solid var(--black);
    overflow: hidden;
}
.thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pickup-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 24px;
    gap: 16px;
}
.pickup-num {
    font-size: 12px;
    letter-spacing: 0.48px;
}
.pickup-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 1.44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pickup-description {
    color: var(--text);
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1.12px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*=====================*/
/*	feature
/*=====================*/
.feature-column {
    display: flex;
    align-items: flex-start;
    max-width: 1216px;
    width: calc(1216 / 1280 * 100vw);
    margin: 32px auto 97px;
    gap: 32px;
}
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.feature {
    position: relative;
}
.feature-link {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    max-width: 560px;
    width: calc(560 / 1280 * 100vw);
}
.feature-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid var(--black);
    overflow: hidden;
    transition: all 0.5s;
}
.icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.feature-title {
    width: calc(100% - 132px);
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 1.44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.5s;
}
.feature-tags {
    display: flex;
    flex-wrap: wrap;
    margin: -48px 0 0 132px;
}
.feature-tag {
    background-color: var(--white);
    border-radius: 100px;
    padding: 8px 24px;
    margin: 8px 16px 0 0;
    font-size: 14px;
    letter-spacing: 1.12px;
    transition: all 0.5s;
}
.feature-tag:hover {
    background-color: var(--text);
    color: var(--white);
}
.featurespecial {
    position: relative;
}
.feature-special-link {
    display: block;
    transition: all 0.5s;
}
.feature-special-link:hover {
    color: var(--white);
    opacity: 0.7;
}
.feature-link:hover .feature-icon {
    color: var(--white);
    opacity: 0.7;
}
.feature-link:hover .feature-title {
    color: var(--text);
    opacity: 0.7;
}
.feature-special {
    background: url(/img/feature_special.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid var(--black);
    aspect-ratio: 684 / 430;
    max-width: 624px;
    padding: 32px 32px 0;
    overflow: hidden;
    position: relative;
}
.feature-special::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
.feature-special > a, div, span, h3 {
    position: relative;
    z-index: 2;
}
.special-tag {
    background-color: var(--red);
    width: fit-content;
    font-family: Arial, sans-serif;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    line-height: 15px;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}
.feature-special-title {
    background-color: var(--red);
    width: fit-content;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.96px;
    padding-bottom: 4px;
    margin: 16px 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.feature-special-tags {
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    top: 152px;
    left: 32px;
}
.feature-special-tag {
    background-color: var(--white);
    border-radius: 100px;
    padding: 8px 24px;
    font-size: 14px;
    letter-spacing: 1.12px;
    margin: 8px 16px 0 0;
    transition: all 0.5s;
}
.feature-special-tag:hover {
    background-color: var(--text);
    color: var(--white);
}

/*=====================*/
/*	scroll
/*=====================*/
.scroll {
    width: 19px;
    height: 141px;
    position: fixed;
    bottom: 5svh;
    left: 122px;
    animation-name: huwahuwa;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-duration: 1.5s;
    transition: opacity 0.5s ease;
}

.scroll.hidden {
    opacity: 0;
    pointer-events: none;
}

/*=====================*/
/*	to top
/*=====================*/
#totop {
    display: flex;
    justify-content: center;
    width: 100%;
}
.top-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--text);
    border-radius: 50%;
    border: 1px solid var(--black);
    width: 127px;
    height: 127px;
    margin-bottom: 64px;
    transition: all 0.5s;
}
.top-button:hover {
    opacity: 0.8;
}

/*=====================*/
/*	mynavi logo
/*=====================*/
#logoarea {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 92px;
    border-top: 1px solid var(--black);
}

/*=====================*/
/*	slider
/*=====================*/
.dots-wrap {
    display: flex;
    justify-content: center;
    margin-top: 32px;
    max-width: 1216px;
    width: calc(1216 / 1280 * 100vw);
    margin-right: calc((100vw - 1216px) / 2);
}
.dots-wrap li {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #DCDCDC;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.5s;
}
.dots-wrap li:hover,
.dots-wrap li.slick-active {
    background-color: var(--red);
}
.dots-wrap li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
    }

/*=====================*/
/*	769px-1280px
/*=====================*/
@media (max-width: 1280px) {
    .pickup-column {
        margin-left: calc((100vw - calc(1216 / 1280 * 100vw)) / 2);;
    }
    .feature-column {
        flex-direction: column;
    }
    .feature-list {
        order: 2;
        width: 100%;
    }
    .feature-link {
        max-width: 100%;
        width: 100%;
    }
    .featurespecial {
        order: 1;
        width: 100%;
    }
    .feature-special {
        aspect-ratio: auto;
        max-width: 100%;
        height: 418px;
    }
}

/*=====================*/
/*	-769px（sp）
/*=====================*/
@media (max-width: 768px) {
    h2 {
        font-size: 16px;
        letter-spacing: 0.8px;
    }
    .subtitle {
        font-size: 10px;
        letter-spacing: 0.5px;
        margin-top: 0;
    }
    #contents-area {
        background-image: url(/img/background_texture_sp.png);
        background-size: auto;
        background-repeat: repeat-y;
    }
    .header-area {
        width: calc(343 / 375 * 100vw);
        padding: 8px 0;
    }
    .background-circle-left {
        left: calc(-116 / 375 * 100vw);
        top: calc(-240 / 375 * 100vw);
        width: calc(412 / 375 * 100vw);
    }
    .background-circle-right {
        right: calc(-116 / 375 * 100vw);
        top: calc(-300 / 375 * 100vw);
        width: calc(412 / 375 * 100vw);
    }
    .header-background-sp {
        display: block;
        position: absolute;
        background-color: var(--white);
        border-left: 1px solid var(--black);
        border-bottom: 1px solid var(--black);
        width: 40px;
        height: 32px;
        top: 0;
        left: auto;
        right: 16px;
        z-index: 3;
    }   
    .header-hum {
        align-items: flex-end;
        top: 16px;
        left: auto;
        right: 16px;
        z-index: 5;
    }
    .nav-overlay.active {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.6);
        width: 100vw;
        height: 100svh;
        z-index: 3;
    }
    .nav-hum {
        top: 0;
        left: auto;
        right: 0;
        width: 180px;
        height: 100%;
        padding: 64px 24px 0 24px;
        border-radius: 0;
    }
    .nav-hum::after {
        display: none;
    }
    .header-hum.active .hum-bar:nth-child(1) {
        background: var(--white);
    }
    .header-hum.active .hum-bar:nth-child(3) {
        background: var(--white);
    }
    .nav-list {
    margin-bottom: 32px;
    }
    .nav-sns-area {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 24px 0;
        gap: 16px;
        width: 100%;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    #top {
        top: -16px;
        height: 16px;
    }
    #firstView {
        height: calc(100svh - 16px);
    }
    .fv-window {
        margin: 16px 16px 58px;
        width: auto;
        height: calc(100svh - 74px);
    }
    .logo-area {
        top: 36px;
        left:calc(50% - 60px);
    }
    .update-area {
        display: none;
    }
    .sns-area {
        display: none;
        /* gap: 12px;
        right: -1px;
        padding: 16px 0 16px 10px; */
    }
    #object {
        height: 1365px;
    }
    .object-pc,
    .object-over-pc {
        display: none;
    }
    .object-sp,
    .object-over-sp {
        display: block;
    }
    .object-sp {
        height: calc(80svh - 16px);
    }
    .parallax-object,
    .parallax-shape {
        transform: scale(0.7);
        transform-origin: top left;
    }
    .parallax-over {
        height: 1365px;
    }
    .window-top {
        height: 16px;
        top: calc(0svh - 17px);
    }
    .window-right {
        width: 16px;
        right: calc(0svh - 17px);
        border: none;
    }
    .window-left {
        width: 16px;
        left: calc(0svh - 17px);
        border: none;
    }
    .window-bottom {
        width: 100vw;
        height: 58px;
        left: calc(0svh - 17px);
        bottom: -59px;
    }
    .company-area {
        background-color: transparent;
        border: none;
        width: fit-content;
        height: fit-content;
        position: absolute;
        bottom: -40px;
        right: 16px;
        z-index: 4;
    }
    .copyright {
        font-size: 8px;
        line-height: 12px;
        letter-spacing: 0.62px;
        padding: 0;
    }
    .subtitle-about {
        font-size: 10px;
        letter-spacing: 0.5px;
    }
    .about-area {
        margin: 90px 0 157px;
    }
    .about-background {
        background-image: url(/img/background_texture_about.png);
    }
    .about {
        width: 345px;
        height: 273px;
        padding: 24px 0;
        font-size: 16px;
        line-height: 28px;
        letter-spacing: 0.8px;
    }
    .title_pc {
        display: none;
    }
    .about_pc {
        display: none;
    }
    .about_sp {
        display: block;
    }
    .pickup-column {
        width: calc(100% - 30px);
        margin: 16px 0 66px;
        margin-left: calc((100vw - calc(343 / 375 * 100vw)) / 2)
    }
    .pickup {
        width: calc(343 / 375 * 100vw);
        height: fit-content;
        position: relative;
    }
    .pickup-head {
        width: calc(343 / 375 * 100vw);
        height: 60px;
        border-top: 1px solid var(--black);
        transform: none;
        position: absolute;
        top: auto;
        bottom: 0;
    }
    .pickup-tags {
        height: fit-content;
        gap: 8px;
        padding: 0 8px 0 0;
        border-right: 1px solid var(--black);
    }
    .pickup-tag {
        padding: 8px 16px;
        font-size: 10px;
        letter-spacing: 0.8px;
    }
    .pickup-media {
        height: 19px;
        margin-left: 16px;
    }
    .pickup-category {
        height: 38px;
        padding: 4px 19px;
    }
    .pickup-icon {
        width: 22px;
        height: 22px;
    }
    .pickup-categoryname {
        letter-spacing: 0.96px;
    }
    .pickup-area {
        padding: 0;
    }
    .pickup-content {
        padding-top: 0;
        margin: 0;
    }
    .pickup-thumbnail { 
        aspect-ratio: 343 / 203;
        width: 100%;
        border: none;
        border-bottom: 1px solid var(--black);
        overflow: hidden;
    }
    .pickup-text {
        margin: 24px 8px 88px;
        gap: 16px;
    }
    .pickup-title {
        height: 56px;
    }
    .pickup-description {
        -webkit-line-clamp: 5;
        height: 115px;
    }
    .feature-column {
        width: 100%;
        gap: 24px;
        margin: 32px auto 300px;
    }
    .feature-list {
        width: 100%;
        height: 80px;
        gap: 24px;
    }
    .feature {
        margin: 0 16px;
    }
    .feature-link {
        gap: 16px;
        /* width: 100%; */
    }
    .feature-icon {
        width: 64px;
        height: 64px;
    }
    .feature-title {
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 0.96px;
        text-wrap: wrap;
        width: calc(100% - 80px);
    }
    .feature-tags {
        margin: -24px 0 0 80px;
    }
    .feature-tag {
        padding: 8px 16px;
        margin: 8px 8px 0 0;
        font-size: 10px;
        letter-spacing: 0.8px;
    }
    .feature-special {
        aspect-ratio: auto;
        height: 252px;
        padding: 32px 16px 0;
    }
    .special-tag {
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 0.6px;
        margin-top: 50px;
    }
    .feature-special-title {
        font-size: 18px;
        line-height: normal;
        letter-spacing: 0.72px;
    }
    .feature-special-tags {
        top: 139px;
        left: 16px;
    }
    .feature-special-tag {
        padding: 8px 16px;
        font-size: 10px;
        letter-spacing: 0.8px;
        margin: 8px 8px 0 0;
    }
    .scroll {
        top: 60svh;
        left: 32px;
    }
    .top-button {
        width: 96px;
        height: 96px;
        margin-bottom: 40px;
    }
    #logoarea {
        height: 52px;
    }
    #logoarea img{
        aspect-ratio: 153 / 44;
        width: 120px;
        height: auto;
    }
}
