/* Reset and Base Styles */
:root {
    font-size: 16px;
    --color_main: #70ae49;
    --color_bright_green: #0CAB00;
    --page-top-padding: 5.5rem;
}

@media(max-width:1435px) {
    :root {
        font-size: 1.15vw;
    }
}

@media(max-width:1000px) {
    :root {
        font-size: 4.2vw;
        --page-top-padding: 3.55rem;
    }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    line-height: 1.6;
    color: #252525;
    background-color: #ffffff;
}

img {
    max-width:100%;
    vertical-align: top;
    height: auto;
}

/* device width switch */
@media(min-width:1001px) {
    .sp {
        display: none !important;
    }
}
@media(max-width:1000px) {
    .pc {
        display: none !important;
    }
}


/* Buttons */


.btn {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 1.8em;
    padding: 1.4em 2em;
    border: none;
    border-radius: 4.198rem;
    font-family: 'Raleway', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 0.939rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.018rem;
    line-height: 1;
    justify-content: space-between;
    transition:filter 0.3s linear;
    
}
.btn.center {
    margin-inline:auto;
}

.btn-primary {
    /*background: linear-gradient(135deg, #38cb21 0%, #0a9404 100%);*/
    background:var(--color_main);
    color: white;
}

.btn-black {
    background-color: #000000;
    color: white;
    transition: opacity 0.3s ease;
}

.btn-white {
    background-color: white;
    color: #000000;
}

.btn-icon {
    width: 1.003rem;
    height: 1.128rem;
}

.btn-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.btn-arrow {
    width: 0.939em;
    aspect-ratio: 939 / 564;
    transform: rotate(90deg);
}

.btn-back {
    background-color: #e6e6ea;
    color: #5c5c5c;
    gap: 22px;
    padding: 14px 22px;
    border-radius: 67px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.btn-back .btn-arrow {
    width: 13px;
    height: 13px;
    transform: rotate(90deg) scaleY(-1);
}

.btn-outline-green {
    background: #fff;
    color: var(--color_main);
    border: 1px solid var(--color_main);
}

.btn-orange {
    background: #D5851E;
    color: white;
}

.hover-bright {
    transition: filter 0.3s linear;
}
.hover-bright:hover,
.btn:hover {
    filter: brightness(1.1);
}

.hover-bright-b {
    transition: filter 0.3s linear;
}
.hover-bright-b:hover {
    filter: brightness(1.3);
}

.btn .btn-arrow {
    transition:transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.btn:hover .btn-arrow {
    transform:translateX(0.3em) rotate(90deg);
}

.btn.btn-black:hover {
    filter: none;
    opacity:0.7;
}

@media(max-width:1000px) {
    .btn {
        min-width: 0;
        
    }
    
}

/* User Menu Styles */
.user-menu {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.5rem;
}

.user-menu .btn-orange {
    position: relative;
    z-index: 1;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    width:100%;
    position: absolute;
    top:50%;
}

.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
}

.dropdown-content {
    background: white;
    box-shadow: 1px 2px 4px 0px rgba(0, 0, 0, 0.1);
    padding-top:1.3rem;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap:1em;
    padding: 0.8rem 1.625rem;
    text-decoration: none;
    color: #252525;
    
    font-size: 0.75rem;
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
}

.dropdown-item svg {
    width: 0.5rem;
    height: 0.625rem;
    color: #252525;
}

@media (max-width: 1000px) {
    .user-menu > .btn-orange {
        display: none;
    }
    .user-menu > .user-dropdown {
        visibility: visible;
        opacity: 1;
        position: static;
        margin-top:1.5rem;
    }
    .user-menu > .user-dropdown > .dropdown-content {
        padding:0;
        box-shadow: none;
        display:flex;
        flex-direction: column;
        gap:0.5rem;
    }
    .user-menu > .user-dropdown > .dropdown-content > .dropdown-item {
        padding:0;
        color:#727272;
        font-size:0.8125rem;
        font-weight: 700;
    }
}




.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5rem;
}
.container.min {
    max-width:calc(1152px + 10rem);
}



.section { padding: 5.012rem 0; background:#ffffff;}


@media(max-width:1000px) {
    .section {
        padding-top:2rem;
        padding-bottom:2rem;
    }
    .container {
        padding-left:1.25rem;
        padding-right:1.25rem;
    }
    .container .container {
        padding-left:0;
        padding-right:0;
    }
}

.section:not(.is-bg) + .section:not(.is-bg) {
    padding-top:0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.7rem 0;
    transition: box-shadow 400ms ease, background-color 400ms ease;
}

.header.is-scrolled {
    background-color:#ffffff;
    box-shadow: 0 0.125rem 0.626rem rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5.012rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3rem;
}

.header-container .header-cta {
    margin-left:auto;
    display: flex;
    align-items:center;
    gap:1.5rem;
}

.logo-img {
    aspect-ratio: 7.518 / 3.947;
    width: 7.518rem;
}

.nav-wrap {
    display:flex;
    flex:1;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    font-weight: 700;
    font-size: 0.8125rem;
    color: #252525;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #38cb21;
}

.header-cta .btn {
    font-size:0.8125rem;
    min-width:13em;
    justify-content: center;
    padding:1em 0 0.9em;
}

@media (max-width: 1000px) {
    .header {
        padding-top:0.5rem;
        padding-bottom:0.5rem;
        background:#ffffff;
    }
    .header-container {
        padding-left:1.25rem;
        padding-right:1.25rem;
    }
    .logo-img {
        width: 3.8rem;
    }
    
    .header-container .header-cta {
        margin:0;
        gap:0;
    }
    .header-container .header-cta .legal-link {
        display:block;
        font-size:0.8125rem;
        color:#727272;
        text-decoration: none;
        font-weight: 700;
        margin-top:1.5em;
    }
    .header-container .header-cta .legal-link + .legal-link {
        margin-top:0.5em;
    }
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    width: 2.5rem;
    aspect-ratio: 1 / 1;
    background: url('../images/sp-menu.svg') no-repeat center;
    background-size: cover;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger-menu.is-active {
    background-image: url('../images/sp-menu-close.svg');
}

/* Mobile Navigation */
@media (max-width: 1000px) {
    .hamburger-menu {
        display: block;
        margin-left: auto;
    }
    
    .nav-wrap {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        background: #ffffff;
        overflow: hidden;
        transition: height 0.5s ease;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        pointer-events: none;
        /*! padding:2rem; */
    }
    
    .nav-wrap > * {
        width:100%;
    }
    
    .nav-wrap.is-active {
        height: calc(100dvh - 3rem);
        pointer-events: auto;
        padding-top:2rem;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0rem;
        padding:0 2rem;
        margin-bottom: 0rem;
        align-items: flex-start;
    }
    
    .nav-list li {
        width:100%;
    }
    
    .nav-link {
        font-size: 1rem;
        width:100%;
        display:block;
        border-bottom:1px solid #DEDEDE;
        padding-bottom:0.5rem;
        margin-top:0.5rem;
    }
    
    .header-cta {
        flex-direction: column;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 0rem;
        margin-left: 0;
        padding:0 2rem;
    }
    
    .header-cta .btn {
        margin-top:2rem;
        width:auto;
    }
    
    
}
/* Footer Styles */
.footer {
    position: relative;
    background-color: #000000;
    color: white;
}

.pagetop-button {
    width:4.375rem;
    padding: 0;
    background:none;
    border:none;
    -webkit-appearance: none;
    position: absolute;
    top:0;
    right:5rem;
    z-index: 1000;
    /*! transform:translateY(-50%); */
    opacity:0;
    pointer-events: none;
    transition: opacity 0.3s linear;
    transform:translateY(-50%);
}

.pagetop-button.float {
    position: fixed;
    top:auto;
    bottom:100px;
    transform:none;
}

.pagetop-button.on {
    opacity:1;
    pointer-events: auto;
}

@media(max-width:1000px) {
    .pagetop-button {
        width:3.5rem;
        right:1.25rem;
    }
}

/* Related Links Section */
.footer-links {
    background-color: #000000;
    padding: 5rem 0;
}
.footer-links .container {
    /* max-width:1152px; */
}

.footer-links-header {
    margin-bottom: 4rem;
}


.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.125rem;
}

.footer-link-item {
    position: relative;
    aspect-ratio: 216 / 121;
    width: 13.5rem;
    transition: opacity 0.3s ease;
    overflow: hidden;
}

.footer-link-item:hover {
    opacity: 0.8;
}

.footer-link-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Main Footer Section with Drone Background */
.footer-main {
    position: relative;
    padding: 4.699rem 0;
    background-image: url('../images/footer-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-main .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /*! margin-bottom: 2rem; */
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
}

.footer-logo-img {
    width: 16rem;
    aspect-ratio: 261 / 137;
    vertical-align: top;
}

.footer-login-btn {
    font-size: 0.875rem;
    width:fit-content;
    justify-content: center;
    padding:1em 1em;
    min-width: 0;
}

/* Footer内のuser-menuを横並びに */
.footer .user-menu {
    flex-direction: row;
    gap: 0.5rem;
}

.footer .footer-user-link {
    display: flex;
    align-items: center;
    gap: 1em;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.25rem;
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    transition: background-color 0.3s ease;
}

.footer .footer-user-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer .footer-user-link svg {
    color: white;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 25rem;
    gap:4rem 0;
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
}

.footer-nav-list {
    list-style: none;
}

.footer-nav-list li {
    margin-bottom: 1.375rem;
}

.footer-nav-link {
    font-size: 0.875rem;
    color: white;
    text-decoration: none;
    letter-spacing: 0.023rem;
    transition: color 0.3s ease;
}

.footer-nav-link:hover {
    color: var(--color_main);
}

.footer-legal {
    display: flex;
    gap: 2.375rem;
    font-size: 0.75rem;
    color: white;
    width: 100%;
}

.footer-legal-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: var(--color_main);
}

.footer-bottom {
    padding: 3.5rem 0 2rem;
    background:#ffffff;
    position: relative;
    z-index: 1;
}
.footer-bottom .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color:#000;
    gap:2em;
}
.footer-bottom .container .copy {
    margin:0;
    align-self: flex-end;
}
.footer-bottom .container .slogan {
    width:24rem;
    margin-left:auto;
}

/* Mobile Styles */
@media(max-width:1000px) {
    .footer-main {
        background-image:url(../images/footer-bg-sp.webp);

    }
    .footer-links {
        padding: 2rem 0;
    }
    
    .footer-links-header {
        margin-bottom: 2rem;
    }
    
    .footer-links-header .section-title {
        font-size: 2rem;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .footer-link-item {
        width: 100%;
    }
    
    .footer-main {
        padding: 3rem 0 3rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 3.5rem;
    }
    
    .footer-logo-section {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width:100%;
        gap: 1rem;
    }
    
    .footer-logo {
        flex:1;
    }
    .footer-logo a {
        display:block;
        width:75.5%;
    }
    
    .footer .footer-user-link {
        font-size:0.8rem;
    }
    
    .footer-nav-link {
        font-size: 1rem;
    }
    
    .footer-legal {
        justify-content: space-between;
        gap:0;
        font-size: 0.875rem;
    }
    
    .footer-bottom {
        padding:1.25rem;
    }
    .footer-bottom .container {
        padding:0;
        flex-wrap: wrap;
        gap:0
    }
    .footer-bottom .container .copy {
        order:1;
        font-size:0.875rem;
        padding-top:0.5rem;
        margin-top:0.5rem;
        border-top:1px solid #000;
    }
    .footer-bottom .tokyu-logo {
        width:10rem;
    }
    .footer-bottom .container .slogan {
        width:9rem;
        /*! align-self: baseline; */
        padding-top: 1rem;
    }
    
    .footer-nav {
        width:100%;
        gap: 1.5rem 0;
    }
}


.nav-link:hover,
.footer-nav-link:hover {
    color: var(--color_main);
}

/* News list */
@media(min-width:1001px) {
    .news-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

.news-grid + .btn {
    margin-top:4rem;
}

.news-card {
    overflow: hidden;
    transition: transform 0.3s ease;
}

.news-image {
    width: 100%;
    aspect-ratio: 276 / 155;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding-top:1rem;
}

.news-date {
    font-size: 1rem;
    color: #252525;
    display: block;
    margin-bottom: 0.5em;
}

.news-title {
    font-weight: 700;
    font-size: 1.003rem;
    line-height: 1.45;
    color: #252525;
}

/* Article list */

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 1.316rem;
}

/* サイドバーSwiper無効時の縦並び制御 */
@media (min-width: 1001px) {
    .sidebar-section .articles-grid.swiper-wrapper {
        display: grid !important;
        flex-direction: unset !important;
    }
    
    .sidebar-section .articles-grid.swiper-wrapper .swiper-slide {
        width: auto !important;
        height: auto !important;
    }
    
    .sidebar-section .articles-grid.type-sidebar.swiper-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2.506rem !important;
    }
}

@media(max-width:1000px) {
    .sp-swiper {
        overflow: hidden;
    }
    .articles-grid.swiper-wrapper {
        gap: 0;
    }
}

.articles-grid + .btn {
    margin-top:4rem;
}

.article-card {
    overflow: hidden;
    transition: transform 0.3s ease;
}

.article-card a {
    color: inherit;
    text-decoration: none;
}

.article-image {
    width: 100%;
    aspect-ratio: 416 / 234;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    margin-top:0.439rem;
}

.article-date {
    font-family: 'Raleway', sans-serif;
    font-size: 0.939rem;
    color: #000000;
    display: block;
    margin-top:0.439rem;
    margin-bottom: 0.439rem;
    display:flex;
    align-items: center;
    gap:1em;
}

.article-title {
    font-weight: 700;
    font-size: 1.128rem;
    line-height: 1.45;
}

.article-lead {
    font-size: 0.875rem;
    color:#666;
    margin-top:0.5em;
}

.article-tags {
    margin-top:0.8rem;
}

.article-tags {
    display: flex;
    gap: 0.501rem;
    flex-wrap: wrap;
}

.tag {
    background-color: #252525;
    color: white;
    padding:0.4em 1em 0.55em;
    border-radius: 100px;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1;
}

.tag.new {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size:0.625rem;
    background:var(--color_main);
    padding-top:0.6em;
    padding-bottom:0.5em;
}

@media(max-width:1000px) {
    .articles-grid:not(.swiper-wrapper) {
        grid-template-columns: repeat(1, 1fr) !important;
        gap:3rem!important;
    }
    .tag {
        font-size:0.875rem;
    }
}

/* Hover Effects */

.hover {
    opacity:1;
    transition: opacity 0.3s linear;
}
.hover:hover {
    opacity:0.8;
}

.news-card:hover,
.article-card:hover {
    transform: none;
    box-shadow: none;
}
.news-image img,
.article-image img {
    transition: transform 0.4s ease;
    will-change: transform;
}
.news-card:hover .news-image img { transform: scale(1.05); }
.article-card:hover .article-image img { transform: scale(1.05); }

/* Swiper */
.swiper {
    position: relative;
}
.swiper-nav { 
    display: flex; 
    gap: 0.752rem; 
    justify-content: space-between; 
    position: absolute;
    top:50%;
    left:0;
    width:100%;
}
.swiper-nav .btn-nav {
    background:rgba(0, 0, 0, 0.3);
    z-index: 1;
}
.swiper-nav .btn-nav.swiper-button-disabled {
    opacity:0;
}

.btn-nav {
    width: 3rem; height: 3rem; border-radius: 999px; border: none; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: opacity .2s ease; background: #000; color:#fff;
  }
.btn-nav:hover { opacity: .85; }

/* Registration Section */
.registration-wrap {
    background:#000;
}
.registration-wrap .container {
    padding:5rem 0;
    background: linear-gradient(135deg, #38cb21 0%, #0a9404 100%);
    color: white;
    position: relative;
}
.registration-wrap .container::before {
    content:"";
    width:100%;
    height: 100%;
    position: absolute;
    bottom:0;
    left:0;
    background:url(../images/benefit-bg.webp) center bottom no-repeat !important;
    background-size:100% auto !important;
    mix-blend-mode: multiply;
}

.registration-wrap .container > * {
    position: relative;
    z-index: 1;
}

.registration-content {
    text-align: center;
}

.registration-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 5.514rem;
    line-height: 1;
    color: white;
    margin-bottom: 2.506rem;
}

.registration-subtitle {
    
    font-weight: 700;
    font-size: 2.506rem;
    line-height: 1.65;
    color: white;
    margin-bottom: 4.511rem;
}

.registration-description {
    
    font-weight: 700;
    font-size: 1.254rem;
    line-height: 1.8;
    color: white;
    max-width: 72.243rem;
    margin: 0 auto;
}

@media(max-width:1000px) {
    .registration-wrap .container {
        padding:2.5rem 1.25rem 10rem;
    }
    .registration-wrap .container::before {
        background-size:200% !important;
    }
    .registration-title {
        font-size:2rem;
        margin-bottom:0.5rem;
    }
    .registration-subtitle {
        font-size:1.125rem;
        margin-bottom:2rem;
    }
    .registration-description {
        text-align: left;
    }
}

/* Benefits Section */
.benefits-header {
    text-align: center;
    margin-bottom: 5.012rem;
}

.benefits-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 11.529rem;
    line-height: 1;
    
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.09) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    mix-blend-mode: soft-light;
    
    margin-top:0.5em;
    opacity:0.6;
}

.benefits-subtitle {
    margin-top:-2em;
    font-weight: 700;
    font-size: 2.005rem;
    line-height: 1.65;
    color: white;
}

.benefits-grid {
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap:4rem;
    padding:0 3rem;
    max-width:1040px;
    margin-inline: auto;
    margin-bottom:5rem;
}

.benefit-card {
    text-align: left;
    height: 100%;
}

.benefit-number {
    margin-bottom:0.3rem;
}
.benefit-number img {
    width:auto;
    height:3.3rem;
}

.benefit-title {
    font-weight: 700;
    font-size: 2.005rem;
    line-height: 1.35;
    color: white;
    margin-bottom: 0.8em;
}

.benefit-description {
    
    font-weight: 700;
    font-size: 1.128rem;
    line-height: 1.8;
    color: white;
}

.benefits-cta {
    text-align: center;
}

@media(max-width:1000px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap:2rem;
        padding:0;
    }
    .benefits-title {
        font-size:5.5rem;
    }
    .benefits-subtitle {
        font-size:1.125rem;
    }
    .benefit-number {
        text-align: center;
    }
    .benefit-number img {
        height:1.4rem;
    }
    .benefit-title {
        font-size:1.5rem;
        text-align: center;
    }
    .benefit-description {
        font-size:0.9375rem;
        text-align: center;
    }
}


/*========================
アニメーション

・css easing
easeOutQuart
cubic-bezier(0.165, 0.84, 0.44, 1);

easeInOutQuart
cubic-bezier(0.77, 0, 0.175, 1);
========================*/

/*スライドイン 左から右*/
.slide-right {
	-webkit-transform:translateX(-30px);
	transform:translateX(-30px);
	opacity:0;
	transition:
		transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),
		opacity 0.5s linear;
	}
.slide-right.on {
	transform:translateX(0px);
	opacity:1;
	}

/*スライドイン 右から左*/
.slide-left {
	transform:translateX(30px);
	opacity:0;
	transition:
		transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),
		opacity 0.5s linear;
	}
.slide-left.on {
	transform:translateX(0px);
	opacity:1;
	}
	
/*スライドイン 上から下*/
.slide-down {
	transform:translateY(-30px);
	opacity:0;
	transition:
		transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),
		opacity 0.5s linear;
	z-index:1;
	}
.slide-down.on {
	transform:translateY(0px);
	opacity:1;
	}
	
/*スライドイン 下から上*/
.slide-up {
	transform:translateY(30px);
	opacity:0;
	transition:
		transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),
		opacity 0.5s linear;
	z-index:1;
	}
.slide-up.on {
	transform:translateY(0px);
	opacity:1;
	}

/*フェードイン*/
.fade-in {opacity:0;transition:opacity 1s linear;}
.fade-in.on {opacity:1;}

/* スケールアップ */
.scale-up {opacity:0;transform:scale(0.8);transition:opacity 0.7s linear,transform 1s cubic-bezier(0.76, 0, 0.24, 1);}
.scale-up.on {opacity:1;transform:scale(1);}