.opening_logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 80%;
    z-index: 9999999;
    animation: opening_logo_animation 0.5s 2.5s forwards;
}

@keyframes opening_logo_animation {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        display: none;
    }
}

.opening_logo_jp {
    display: flex;
    align-items: center;
    /*  縦位置の調整 */
    font-size: 12px;
    margin-top: 10px;
    gap: 10px;
    margin-left: 0%;
    color: #262626;
    opacity: .7;
}

.opening_logo_jp::after {
    content: '';
    flex-grow: 1;
     /* 余白を分け与える  */
    height: 1.5px;
    background: #262626;
    opacity: .7;

}

@media screen and (min-width: 768px) {
    .opening_logo {
        width: 600px;
    }
}

.slide_first {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main);
    z-index: 99999;
    animation: slide 0.5s 3.5s forwards;
}

.slide_second {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(38 38 38 / .1);
    z-index: 999999;
    animation: slide 0.5s 3s forwards;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

.section__title .jp {
    margin-bottom: 0;
}

.section__title.info .en {
    font-size: calc(56 / var(--root-font-size) * 1rem);
}

.section__title .en::after {
    bottom: 0;
}

.work .morebtn,
.about .morebtn {
    margin: 55px auto 0;
}

.work .morebtn.is-brown .morebtn__text {
    color: #fff;
}

.info .morebtn {
    margin: 20px auto 0;;
    
}

.product .morebtn {
    margin: 20px auto 0;
}

@media screen and (min-width: 768px) {
    .section__title.info .en {
        font-size: calc(100 / var(--root-font-size) * 1rem);
    }

    .work .morebtn,
    .about .morebtn {
        margin: 80px auto 0;
    }

    .info .morebtn {
        /*margin: 30px auto 40px;*/
    }

    .product .morebtn {
        margin: 10px auto 0;
    }
}

/*—————————————————————————————————
main-visual
—————————————————————————————————*/
.main-visual {
    position: relative;
/*    height: 100vh;*/
	height: calc(-6.75rem + 8.12px*100);
}

.main-visual__swiper {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
}

@keyframes zoomUp {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.12);
    }
}

.swiper-slide-active .main-visual__image,
.swiper-slide-duplicate-active .main-visual__image,
.swiper-slide-prev .main-visual__image {
    animation: zoomUp 7s linear 0s normal both;
}

.main-visual__image {
    width: 100%;
    height: 100%;
    position: relative;
}

.main-visual__image-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination-main-visual {
    position: absolute;
    padding-right: 2%;
    bottom: 3vh;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.swiper-pagination-main-visual .swiper-pagination-current,
.swiper-pagination-main-visual .swiper-pagination-total {
    font-family: ZenKakuGothic;
    font-size: 15px;
    color: #fff;
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-pagination-main-visual .swiper_bar {
    width: 70px;
    height: 1px;
    margin: 0 8px;
    background-color: #fff;
    opacity: .75;
    position: relative;
}

.swiper-pagination-main-visual .swiper_bar span {
    position: absolute;
    opacity: .75;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: #E60013;
    transform: scaleX(0);
    transform-origin: left center;
    transition-timing-function: linear;
}

.swiper-pagination-main-visual.is-active .swiper_bar span {
    transform: scaleX(1);
    transition: transform 3.85s linear;
}


.main-visual__wrap {
    position: absolute;
    bottom: 0;
}

.main-visual__wrap__catch {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
}

.main-visual__wrap__catch_text {
    font-family: Antro_Vectra;
    font-size: calc(36 / var(--root-font-size) * 1rem);
}

.main-visual__wrap__catch_text span:first-of-type {
    padding-left: 40px;
}

.main-visual__wrap__catch_text span:nth-of-type(2) {
    padding-left: 120px;
}

.main-visual__video {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}

.main-visual__video .video_sp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    min-width: 100%;
    min-height: 100%;
}

.main-visual__video .video_pc {
    display: none;
}



@media screen and (min-width: 768px) {
    .swiper-pagination-main-visual {
        bottom: 10%;
		padding-right: 5%;
    }

    .main-visual__inner,
    .main-visual__video {
        height: 100vh;
    }
	.main-visual {
		height: 100vh;
	}
    .main-visual__wrap {
        bottom: -14%;
    }

    .main-visual__wrap__catch_text {
        text-align: center;
    }

    .main-visual__wrap__catch_text span:first-of-type,
    .main-visual__wrap__catch_text span:nth-of-type(2) {
        padding-left: 0;
    }
}

@media screen and (min-width: 1030px) {
    .main-visual__video .video_sp {
        display: none;
    }

    .main-visual__video .video_pc {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        width: 100%;
        min-height: 100%;
    }
	.swiper-pagination-main-visual {
        bottom: 5%;
	}
}

/*—————————————————————————————————
event
—————————————————————————————————*/
.event {
    position: relative;
    overflow: hidden;
}
.event-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .1;
    background-image: url('../images/work/support_03.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}
.event__inner, .event__wrap {
    position: relative;
    z-index: 0;
}
.event__inner {
    padding: 80px 0;
    margin: 0 auto;
}
.event__wrap {
    position: relative;
}
.section__title.event {
    position: relative;
    width: 82.93333vw;
    max-width: 1280px;
    margin: auto;
    padding: 0 clamp(1.5rem, 0.333rem + 5.83vw, 5rem);
    line-height: 1;
    z-index: 2;
}
.section__title.event .jp:after {
    display: none;
}
.section__title.event .en::after {
    width: 80%;
}
.event__swiper {
    position: relative;
    width: 82.93333vw;
    max-width: 1280px;
    padding: clamp(1.5rem, 0.333rem + 5.83vw, 5rem) 0;
    transform: translateY(-15%);
    background-color: #fff;
    overflow: hidden;
    box-shadow: 5px 5px 10px rgba(137, 137, 137, 0.73);
    z-index: 1;
}
.event__list__item {
    width: 100%;
    display: flex;
    /*gap: clamp(1.5rem, 0.75rem + 3.75vw, 3.75rem);*/
    gap: 1em 5%;
    align-items: center;
    padding: 80px clamp(1.5rem, 0.333rem + 5.83vw, 5rem) 0 clamp(1.5rem, 0.333rem + 5.83vw, 5rem);
    overflow: hidden;
}
.event__list__item__cont.photo {
    flex: 0 0 calc(45% - 30px);
}
.event__list__item__cont.photo .image {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: top;
}
.event__list__item__cont.detail {
    flex: 0 0 calc(55% - 30px);
}
.event__list__item__cont .title {
    font-weight: 600;
    font-size: clamp(16px, 0.833rem + 0.83vw, 24px);
    line-height: 1.2em;
}
.event__list__item__cont .text {
    margin-top: 24px;
}
.event__list__item__action {
    display: flex;
    align-items: baseline;
    gap: 160px;
    margin-top: 40px;
}
.event__action--btn {
    display: block;
}
.event__action--btn.morebtn {
    margin-top: 0;
}
.event__action--btn.dl-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    padding: 12px 0;
    border-radius: 40px;
    background-color: rgba(166, 114, 69, .9);
    font-size: .875rem;
    color: #fff;
}
.event__action--btn.dl-btn:hover {
    opacity: .8;
}
.event__action--btn.dl-btn .icon {
    width: .875rem;
}
.event__action--btn.dl-btn .text {
    margin: 0 0 0 .5rem;
}
.event__slider {
    position: absolute;
    top: 50%;
    right: -1%;
    transform: translateY(-50%);
    z-index: 1;
    transition: 0.5s ease-in-out;
}
.event__slider .text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: clamp(2.5rem, 1.25rem + 6.25vw, 6.25rem);
    letter-spacing: 0.03em;
    font-family: "baskerville-urw", serif;
    font-weight: 800;
    font-style: normal;
    white-space: nowrap;
    color: #bbb8b5;
    line-height: 1em;
}
.event__slider .text {
    animation: verticalScroll 20s linear infinite;
}
@keyframes verticalScroll {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}
.swiper-button__cont {
    position: absolute;
    top: clamp(1.5rem, 0.333rem + 5.83vw, 5rem);
    right: clamp(1.5rem, 0.333rem + 5.83vw, 5rem);
    gap: 16px;
    display: flex;
    align-items: center;
    z-index: 3;
    transform: translateZ(0);
}
.swiper_event_next_btn,
.swiper_event_prev_btn {
    background-image: url(../images/common/icon/arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: clamp(3rem, 2.75rem + 1.25vw, 3.75rem);
    height: clamp(3rem, 2.75rem + 1.25vw, 3.75rem);
    color: transparent;
    cursor: pointer;
}
.swiper_event_next_btn {
    transform: rotate(0deg);
}
.swiper_event_prev_btn {
    transform: rotate(180deg);
}
@media (max-width: 990px) {
    .event__list {
        margin-top: 40px;
    }
    .event__list__item {
        flex-direction: column;   
    }
    .event__list__item__cont {
        width: 100%;
    }
    .event__swiper {
        transform: translateY(-5%);
    }
    .event__list__item__cont .text {
        margin-top: 8px;
    }
    .event__action--btn.dl-btn {
        width: 180px;
        font-size: .75rem;
    }
}
@media (max-width: 768px) {
    .event__list__item__action {
        flex-direction: column;
        gap: 24px;
        margin-top: 20px;
    }
    .event__list__item {
        padding-top: 40px;
    }
    .event__slider {
        right: -3%;
        width: 12vw;
    }
}
@media (max-width: 599px) {
    .event__inner {
        padding: 60px 0 40px;
    }
    .section__title.event { 
        top: 10px;
    }
    .event__swiper {
        width: 90%;
        padding-top: 1em;
    }
    .event__list__item__cont .date {
        font-size: 12px;
    }
    .event__list__item__cont .text {
        font-size: 14px;
        line-height: 1.5em;
    }
    .swiper-button__cont {
        gap: 8px;
        margin-top: 8px;
    }
}

/*—————————————————————————————————
about
—————————————————————————————————*/
.about {
    position: relative;
/*   background: var(--sub);*/
	background: var(--main);
    padding-bottom: 150px;
}

.about__inner {
    max-width: 950px;
    width: 82.93333vw;
    margin: 0 auto;
    padding: 90px 0 80px;
    overflow: hidden;
    border-bottom: 2px solid #262626;
}

.about__wrap {
    margin-top: 60px;
}
.about__wrap__item_catch {
    display: flex;
    flex-direction: column;
    font-family: "fot-rodin-pron", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: calc(14 / var(--root-font-size) * 1rem);
}

.about__wrap__item_catch span {
   width: fit-content;
    padding: 0 4px;
    background: var(--sub-color);
    color: #fff;
    font-weight: 600;
}

.about__wrap__item_catch span:nth-of-type(n+2) {
    margin-top: 3px;
    /*	余白*/
}

.about__wrap__item_text {
/*color: #fff;*/
    font-size: calc(14 / var(--root-font-size) * 1rem);
    line-height: 2.3em;
    text-align: justify;
    margin-top: 60px;
    letter-spacing: 0.03rem;
}

.about__wrap__item_text .spacer {
	opacity: .9;
    display: block;
    margin-top: 16px;
}

.about__wrap__item_text .text-lg {
    font-size: calc(20 / var(--root-font-size) * 1rem);
    font-family: "fot-rodin-pron", sans-serif;
    font-weight: 600;
    font-style: normal;
    margin: 30px 0;
}

@media screen and (min-width: 768px) {
    .about {
        padding-bottom: 220px;
    }
	.about__wrap {
    margin-top: 80px;
	}
    .about__inner {
        /*padding-top: 145px;*/
    }

    .about__inner .section__title .jp {
        margin-bottom: 0;
        font-size: calc(17 / var(--root-font-size) * 1rem);
    }

    .about__wrap {
        display: flex;
        justify-content: space-between;
		gap: 20px;
    }

    /*
    .about__wrap__item:nth-of-type(2) {
        margin-top: 180px;
    }
*/

    .about__wrap__item_catch {
        display: flex;
        flex-direction: row-reverse;
        gap: 10px;
    }

    .about__wrap__item_catch span:nth-of-type(n+2) {
        margin-top: 0;
    }

    .about__wrap__item_catch span {
        writing-mode: vertical-rl;
        padding: 16px 0;
        height: fit-content;
        letter-spacing: .5em;
        font-size: calc(22 / var(--root-font-size) * 1rem);
    }

    .about__wrap__item_text {
        line-height: 2.4em;
        font-size: calc(17 / var(--root-font-size) * 1rem);
        margin-top: -10px;
    }

    .about__wrap__item_text .text-lg {
        line-height: 2em;
        font-size: calc(32 / var(--root-font-size) * 1rem);
    }

    .about__wrap__item_text .spacer:first-child {
        margin-top: -11px;
    }
}

/*—————————————————————————————————
work
—————————————————————————————————*/
.work {
    position: relative;
    color: #fff;
}

.work-heading {
	color: #2d2f31;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(0, -65%);
    margin-right: 10%;
}

.work-heading::after {
    background-color: #fff;
}

/* .work__bg {
	width: 100%;
    position: absolute;
    z-index: -1;
}

.work__bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(38, 38, 38, .4);
    z-index: 1;
}

.work__bg_image {
    width: fit-content;
} */

.work__bg {
    width: 100%;
    position: absolute;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.work__bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(38, 38, 38, .4);
    z-index: 1;
}

.work__bg_image {
    width: fit-content;
	-webkit-overflow-scrolling: touch;
    height: 100vh;
}

.work__bg .pc {
    display: none;
}

.work__bg .sp {
    display: block;
}

.work__inner {
    padding: 120px 0 80px;
}

.work__wrap__item_content {
    text-align: justify;
}

.work-heading .en::after {
    transform: translate(0, 0);
}

.work-heading .en::after {
		background: #2d2f31;
}

.work-heading .jp::after {
    display: none;
}

.work__wrap__item {
    width: 82.93333vw;
    margin: 0 auto;
}

.work__wrap__item .morebtn {
    margin: 40px 0 40px auto;
}

.work__wrap__item_content .heading {
    font-size: calc(20 / var(--root-font-size) * 1rem);
    font-family: "fot-rodin-pron", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.work__wrap__item_content .text {
    margin-top: 20px;
    font-size: calc(14 / var(--root-font-size) * 1rem);
}


@media screen and (min-width: 768px) {
    .work__bg.pc {
        display: block;
    }

    .work__bg.sp {
        display: none;
    }

    .work__bg_image {
        width: 100vw;
    }


    .work__inner {
        border: none;
        padding: 115px 0 50px;
    }

    .work-heading {
        line-height: .5em;
    }

    .work__wrap {
        margin-top: -40px;
        padding: 40px 0;
    }

    .work__wrap__list {
        display: flex;
        align-items: center;
        margin: 0 auto;
        max-width: 1100px;
    }

    .work__wrap__item {
        width: 50%;
        margin: 0 0 0 auto;
    }

    .work__wrap__item_content .text {
        margin-top: 30px;
        line-height: 2em;
        font-size: calc(15 / var(--root-font-size) * 1rem);
    }

    .work__wrap__item_content .heading {
        font-size: calc(24 / var(--root-font-size) * 1rem);
    }

    .work .morebtn {
        margin: 80px 0 40px auto;
    }
}

/*—————————————————————————————————
info
—————————————————————————————————*/
.info {
    background: var(--sub);
}

.info__inner {
    padding: 80px 24px 90px;
}


.section__title.info {
    text-align: center;
    color: #fff;
    line-height: .5em;
}

.section__title.info .jp::after,
.section__title.info .en::after {
    display: none;
}

.info__wrap {
    position: relative;
    margin-top: 20px;
}

.info__wrap::before,
.info__wrap::after {
    display: none;
}

.info__wrap__list {
    width: 100%;
    margin: 0 auto;
    padding: 25px 0 30px;
    background-color: #fdfdfd;
}

.info__wrap__list__item {
    width: 80%;
    margin: 0 auto;
}

.info__wrap__list__item:last-of-type {}

.info__wrap__list__item .link {
    border-bottom: 1px dashed #707070;
    padding: 16px 0 24px;
}

.info__wrap__list__item:nth-child(n+2) .link {
    padding: 20px 0;
}

.info__wrap__list__item .heading {
    position: relative;
}

.info__wrap__list__item .heading::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 10px;
    height: 10px;
    background: var(--sub-color);
    box-shadow: 6px 6px 6px 0 rgba(0, 0, 0, .15);
}

.info__wrap__list__item .heading:not(:first-child) {
    margin-top: 32px;
}

.info__wrap__list__item .category {
    margin-left: 8px;
    padding: 3px 10px;
	display: inline;
    border: 1px solid #ccc;
    letter-spacing: 0;
    font-size: min(calc(.16327vw + .64923rem), .8125rem);
}

.info__wrap__list__item .text {
    width: 95%;
    display: block;
    padding: 4px 0 0 24px;
    font-size: min(calc(.57143vw + .80357rem), 1.375rem);
    line-height: 1.6;
    font-family: "fot-rodin-pron", sans-serif;
}

.info__wrap__list__item .text_new {
    display: inline-block;
    width: 2.5em;
    vertical-align: middle;
}

.info__wrap__list__item .heading {
	width: fit-content;
    display: inline;
    margin: 0 auto;
    padding-left: 24px;
    line-height: 1.6;
    font-size: min(calc(.16327vw + .64923rem), .8125rem);
}

.info__link {
    display: block;
    margin: 40px auto 0;
}

@media screen and (min-width: 768px) {
    .info__inner {
        padding-bottom: 128px;
        padding-top: 115px;
    }

    .section__title.info .en {
        font-size: calc(90 / var(--root-font-size) * 1rem);
    }

    .info__wrap {
        margin-top: 60px;
    }

    .info__wrap__content {
        width: 90%;
    }

    .info__wrap__list {
        width: 100vw;
        padding: 95px 0 90px;
    }

    .info__wrap__list__item {
        max-width: 1200px;
        padding: 8px 0 40px;
    }

    .info__wrap__list__item:last-of-type {
        padding: 0;
    }

    .info__wrap__list__item .link {
        width: 90%;
        max-width: 1200px;
        padding-bottom: 30px;
    }

    .info__wrap__list__item .content {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .info__wrap__list__item:nth-child(n+2) .link {
        padding: 0px 0 30px 0;
    }

    .info__wrap__list__item .heading {
        width: auto;
        padding-left: 40px;
        font-size: calc(14 / var(--root-font-size) * 1rem);
    }

    .info__wrap__list__item .heading::before {
        width: 15px;
        height: 15px;
    }

    .info__wrap__list__item .category {
        padding: 0px 24px;
    }

    .info__wrap__list__item .text {
        margin-left: 60px;
        font-size: calc(18 / var(--root-font-size) * 1rem);

    }

    .info__wrap__list__item .category {
        margin-left: 20px;
        font-size: calc(14 / var(--root-font-size) * 1rem);
    }

    .info__wrap__list__item .text {
        width: fit-content;
        display: inline-block;
        padding: 0;
        flex: 1;
    }

    .info__link {
        margin: 80px auto 0;
    }
}

/*—————————————————————————————————
product
—————————————————————————————————*/
.product__inner {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 150px 0 42px;
}

.section__title.product {
    margin-top: -80px;
    margin-left: 5%;
    text-align: left;
    line-height: .5em;
}

.section__title.product .jp::after {
    display: none;
}

.section__title.product .en::after {
    left: 50%;
}

.product__wrap {
    position: relative;
    max-width: 1100px;
    margin: auto;
}

.product__wrap__list {
    display: flex;
    margin-top: 20px;
}

.section__title.product .en::after {
    left: 0;
    transform: translate(0, 0);
}

.product__wrap:last-of-type {}

.product__wrap__list__item {
    padding: 0 12px;
}

.product__wrap__list__item .detail {
    padding: 10% 2%;
    height: 230px;
    border-bottom: 1.5px solid;
    /*    background: #F7F4F2;*/
}
.product__wrap__list__item .heading {
	height: 55px;
    line-height: 1.5;
}
.product__wrap__list__item .text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    font-size: calc(14 / var(--root-font-size) * 1rem);
    line-height: 1.7;
}

.slide-arrow {
    position: absolute;
    width: 50px;
    height: 50px;
    top: -21%;
    cursor: pointer;
}

.prev-arrow {
    right: 77px;
}

.next-arrow {
    right: 20px;
    transform: rotate(180deg);
}

@media screen and (min-width: 768px) {
    .product__inner {
        padding-top: 80px;
        padding-bottom: 45px;
    }

    .section__title.product {
        margin-top: 35px;
        text-align: left;
        margin-left: 0;
    }

    .product__wrap {
        position: relative;
    }

    .slide-arrow {
        top: -42%;
        width: 60px;
        height: 60px;
    }

    .next-arrow {
        right: 0px;
    }

    .prev-arrow {
        right: 75px;
    }
	.product__wrap__list__item .detail {
    height: 210px;
	}
}

/*—————————————————————————————————
topics
—————————————————————————————————*/
.topics__inner {
    width: 100%;
    max-width: 1480px;
    margin: 40px auto 0;
}

.section__title.topics {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: inherit;
    color: #fff;
}

.section__title.topics .jp {
    margin-bottom: -5px;
}

.section__title.topics .jp::after {
    display: none;
}

.section__title.topics .en {
    padding-bottom: 22px;
}

.section__title.topics .en::after {
    left: 50%;
    background: #fff;
    height: 2px;
    margin-top: 80px;
}

.topics__bg {
    position: relative;
    width: 100%;
    z-index: -1;
}

.topics__bg::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    min-height: 500px;
    background: rgba(38, 38, 38, .6);
    z-index: 10;
}

.topics__bg_image {
    width: 100%;
    min-height: 500px;
}

.topics__wrap__list__item {
    cursor: pointer;
    overflow: hidden;
    width: 100%;
    z-index: 0;
}

.topics__bg_image {
    transition: transform .6s ease;
}

.topics__wrap__list__item:hover .topics__bg_image {
    transform: scale(1.1);
}

.topics__wrap__list__item:hover .topics__bg_image {
    transform: scale(1.1);
}

.topics__wrap__list__item .content {
    position: relative;
}

.topics__wrap__list__item .content__box {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.topics__wrap__list__item .content .text {
    margin-top: 30px;
    text-align: center;
    color: #fff;
    font-size: calc(14 / var(--root-font-size) * 1rem);
    line-height: 1.8;
}

.topics__link {
    display: flex;
    justify-content: flex-start;
    /*    justify-content: center;*/
}

.topics .morebtn {
    /*
    display: inline-block;
    margin-top: 64px;
*/
    display: inline-block;
    margin-top: 30px;
    margin-left: calc(30% - 20px);
}

.topics__wrap__list__item:hover .morebtn.is-clear::before {
    animation: link-arrow 0.3s ease forwards 0.3s;
    background: center / 20px no-repeat url(../images/common/icon/readmore-arrow-black.svg);
}

.topics__wrap__list__item:hover .morebtn.is-clear::after {
    transform: scale(1);
    transform-origin: 50% 100%;
}



@media screen and (min-width: 768px) {
    .section__title.topics {
        align-items: baseline;
    }

    .section__title.topics .jp::after {
        left: 0;
    }

    .section__title.topics .en::after {
        left: 0;
        transform: translate(0, 0);
    }

    .section__title.topics .en {
        padding-bottom: 8px;
    }

    .topics__wrap {
        width: 95%;
    }

    .topics__wrap__list__item .content .text {
        margin-top: 40px;
        font-size: calc(15 / var(--root-font-size) * 1rem);
    }

    .topics__bg::after,
    .topics__bg_image {
        height: 40vh;
    }

    .topics__wrap__list:last-of-type .topics__bg_image {
        object-position: center;
    }

    .topics__wrap__list:first-child .content__box {
        width: auto;
        left: 100%;
        padding-right: 768px;
    }

    .topics__wrap__list:nth-of-type(2) .content__box {
        width: 80%;
    }

    .topics__wrap__list__item .content .text {
        text-align: left;
        line-height: 1.8;
    }

    .topics .morebtn {
        margin-top: 40px;
        margin-left: 0;
    }
}

/*desktop*/
@media screen and (min-width: 1600px) {
    .info__wrap__list {
        width: 100%;
    }

    .info__inner {
        max-width: 1480px;
    }

    .product__inner {
        max-width: 1480px;
    }

    .product__wrap {
        max-width: 1480px;
    }

    .topics__wrap {
        width: 100%;
    }

}