@charset "utf-8";

/* -------------------------------------------- 
	KV
-------------------------------------------- */

/* kv animation setting start */

.kv__copy {
    overflow: hidden;
    opacity: 0;
}

.header.--top,
.kv__logo,
.kv__news,
.scroll-down {
    opacity: 0;
    /* transform: translateY(10px); */
}

.kv__spotlight, .kv__bottomlight{
    opacity: 0;
}

/* kv animation setting end */

.kv {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    /* background: red; */
    position: relative;
    overflow: hidden;
}

/* 背景ぼかし */
.kv:before {
    content: "";
    width: 100%;
    height: 100%;
    background: url('../img/top/bg-light.png') no-repeat;
    background-size: auto 100vh;
    display: block;
    z-index: -2;
}

/* スポットライト */
.kv__spotlight {
    width: 140%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.kv-spotlight__image {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0 auto;
    background: url('../img/top/spot-sp.png') no-repeat;
    background-size: cover;
    background-position: center top;
}

/*　　スマホで横長の時　　*/
@media (max-width: 499px) and (orientation: landscape),
(max-width: 499px) and (min-aspect-ratio: 499/685) {
    .kv-spotlight__image {
        background: url('../img/top/spot-pc.png') no-repeat;
        background-size: cover;
        background-position: center top;
    }
}

@media (min-width:500px) {

    .kv__spotlight{
        width: 100%;
    }

    .kv-spotlight__image {
        background: url('../img/top/spot-pc.png') no-repeat;
        background-size: cover;
        background-position: center top;
    }
}


.kv__bottomlight {
    width: 130%;
    max-width: 700px;
    height: auto;
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

@media (min-width:980px) {
    .kv__bottomlight {
        bottom: 0;
    }
}



/* コピー */
.kv__copy-wrap,
.kv__logo-wrap {
    width: 75%;
    max-width: 550px;
    height: calc(100% - var(--header-height) - 100px);
    margin: 0 auto;
    position: absolute;
    top: var(--header-height);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* ロゴ */
.kv__logo-wrap {
    width: 60%;
    max-width: 500px;
}

.kv__logo {
    width: 100%;
    height: auto;
}


/* ニュース */
.kv__news-wrap {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
}

.kv__news {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 5px;
    /* Note: currently only Safari supports backdrop-filter */
    backdrop-filter: blur(16px);
    --webkit-backdrop-filter: blur(16px);
    background-color: rgba(255, 255, 255, 0.06);
    padding: 0 22px;
    width: 90vw;
    max-width: 400px;
    height: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.kv-news__link {
    color: var(--bg-text-color-2);
}


.kv-news__date {
    font-family: "eurostile-extended", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.1em;
    font-size: 14px;
}

.kv-news__title {
    white-space: nowrap;
    font-size: 15px;
    overflow: hidden;
}

/* NEWS-ticker */
.ticker {
    overflow: hidden;
}

.ticker__wrap {
    display: flex;
    gap: 30px;
    align-items: center;
    white-space: nowrap;
}

.ticker-inner {
    display: inline-flex;
}

.ticker-item {
    display: inline-block;
}

.ticker-item.is-second {
    margin-left: 30px;
}

@media (min-width:980px) {
    .kv__news-wrap {
        left: auto;
        right: var(--page-padding-width);
        transform: none;
        bottom: var(--page-padding-width);
    }
}

/* scroll down */
.scroll-down {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    width: 100px;
    height: 50px;
    justify-content: center;
    align-items: center;
}

.scroll-down__arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 10px;
    opacity: 0;
}

.scroll-down__arrow:first-child {
    animation: arrow-move08 2s ease-in-out infinite;
}

.scroll-down__arrow:nth-child(2) {
    animation: arrow-move08 2s 1s ease-in-out infinite;
}

.scroll-down__arrow:before,
.scroll-down__arrow:after {
    position: absolute;
    content: '';
    top: 0;
    width: 24px;
    height: 1.5px;
    background: #fff;
}

.scroll-down__arrow:before {
    left: 3px;
    transform: rotate(30deg);
}

.scroll-down__arrow:after {
    right: 3px;
    transform: rotate(-30deg);
}

@keyframes arrow-move08 {
    0% {
        opacity: 0;
        top: 30%;
    }

    70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


/* -------------------------------------------- 
	TOP > SERVICE
-------------------------------------------- */
.top-service__card-list {
    display: grid;
    margin-top: 30px;
    gap: 16px;
}

.top-service__card-item {
    border-radius: 10px;
    background: transparent;
    border: 1px solid rgba(120, 148, 255, 0.35);
    /* Note: currently only Safari supports backdrop-filter */
    backdrop-filter: blur(19.074199676513672px);
    --webkit-backdrop-filter: blur(19.074199676513672px);
    /* (plus shape's fill blended on top as a separate layer with 59.66% opacity) */
}

.top-service__card-link {
    color: var(--bg-text-color-2);
    padding: 20px;
    display: block;
}

.top-service__card-item-title-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.top-service__card-icon {
    width: 55px;
    height: auto;
}

.top-service__card-title {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 22px;
    margin-left: 20px;
    letter-spacing: 0.02em;
    line-height: 1.3;
    color: var(--bg-text-color);
}

.top-service__card-text {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--bg-text-color-2);
}

@media (min-width:680px) {

    .top-service__card-item {

        border-radius: 25px;
    }

    .top-service__card-list {
        gap: 20px;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .top-service__card-link {
        padding: 30px 15px;
    }

    .top-service__card-item-title-wrapper {
        display: block;
        text-align: center;

    }


    .top-service__card-icon-wrap {
        width: 42%;
        height: auto;
        aspect-ratio: 1 / 1;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .top-service__card-icon {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;

    }

    .top-service__card-title {
        margin: 30px 0 10px;
    }
}

@media (min-width:980px) {
    .top-service__card-item {
        border-radius: 25px;
    }

    .top-service__card-link {
        padding: 40px 25px;
    }

    .top-service__card-list {
        gap: 30px;
    }
}

.top-service__circle {
    padding-top: 0;
}

.top-service__circle-img {
    display: block;
    width: 100%;
    max-width: 470px;
    margin: 40px auto;
    padding-top: 0;
}

@media (min-width:768px) {
    .top-service__circle-img {
        max-width: 1000px;
    }
}

/* -------------------------------------------- 
	TOP > NEWS
-------------------------------------------- */


.news__viewmore {
	display: flex;
	justify-content: flex-end;
}

.news__viewmore-link {
	display: inline-flex;
	align-items: center;
	font-family: "eurostile-extended", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: var(--bg-text-color-2);
	letter-spacing: 0.05em;
	padding: 15px 0;

}

.news__viewmore-link:after {
	content: "";
	display: inline-block;
	width: 43px;
	height: 14px;
	background: url('../img/arrow-viewmore.svg') no-repeat;
	background-size: contain;
	background-position: center right;
	margin-left: 10px;
}

/* -------------------------------------------- 
	TOP > COMPANY
-------------------------------------------- */
.top-company {
	background: url('../img/news/top-news-bg.png') no-repeat;
	background-size: 155% 100%;
	background-position: center top;
}