@charset "utf-8";
/* =============
top
============== */
.top {
    padding: 140px var(--content-padding) 0;
}

.top__item.active h2 {
    animation: fadeup 1.1s ease forwards;
}

.top__item.active .type {
    animation: fadeup 1.1s ease 0.1s forwards;
}

.top__item.active .date {
    animation: fadeup 1.1s ease 0.2s forwards;
}

@keyframes fadeup {
    0% {
      opacity: 0;
      transform: translateY(12px);
    }
  
    100% {
      opacity: 1;
      transform: translateY(0);
    }
}

h2 {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.2;
    opacity: 0;
}

.br__pc {
    display: none;
}

.type, 
.date {
    color: var(--primary-gray);
    font-size: 1.2rem;
    font-family: Inter;
    line-height: 1.5;
    opacity: 0;
}

.type {
    margin-top: 12px;
}


.eyecatch {
    margin-top: 30px;
}

/* top pc */ 
@media screen and (min-width: 1024px) {
    .top {
        padding: 0 0 0 var(--content-padding);
        background: linear-gradient(180deg, var(--primary-background) 0%, var(--primary-background) 100%, var(--primary-backGray) 100%, var(--primary-backGray) 100%);
    }

    .top__content {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }


    .top__item {
        margin-bottom: 30px;
    }

    h2 {
        font-size: 3.4rem;
    }

    .br__pc {
        display: block;
    }

    .type, 
    .date {
        font-size: 1.4rem;
    }

    .type {
        margin-top: 14px;
    }   

    .date {
        margin-top: 6px;
    }

    .eyecatch {
        width: 65.6%;
        margin-top: 0;
    }
}

/* top pc */ 
@media screen and (min-width: 1280px) {
    .top {
        padding: 0 0 0 var(--content-padding);
        background: linear-gradient(180deg, var(--primary-background) 0%, var(--primary-background) 88%, var(--primary-backGray) 88%, var(--primary-backGray) 100%);
    }

    .top__item {
        margin-bottom: 200px;
    }

    h2 {
        font-size: 4.2rem;
    }

    .date {
        margin-top: 6px;
    }

    .eyecatch {
        width: 60.6%;
        margin-top: 0;
    }
}


/* top pc */ 
@media screen and (min-width: 1536px) {
    .top {
        padding: 0 0 0 8.3%;
    }

    .top__item {
        margin-bottom: 250px;
    }

    .br__pc {
        display: none;
    }

    .eyecatch {
        width: 56%;
    }

}

/* =============
outline
============== */
.outline {
    background-color: var(--primary-backGray);
    margin-top: 20px;
    padding: 80px var(--content-padding);
}

h3 {
    position: relative;
    font-size: 3.8rem;
    font-family: Inter;
    font-weight: 300;
    line-height: 1;
    padding-left: 12px;
}

h3::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--primary-black);
}

.ot__item {
    position: relative;
    width: 82%;
    margin: 40px 0 0 auto;
}

.ot__item::before {
    position: absolute;
    content: "";
    top: 14px;
    left: -60px;
    width: 40px;
    height: 1px;
    background-color: var(--primary-black);
}

.ot__txt {
    font-size: 1.4rem;
}

.ot__btn {
    margin-top: 38px;
    text-align: right;
}

.ot__link {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.ot__btnTxt {
    font-size: 1.4rem;
    font-family: Inter;
    font-weight: 300;
}

.ot__icon {
    display: inline-block;
    position: relative;
    width: 30px;
    height: 30px;
    border: 1px solid var(--primary-btnGray);
    border-radius: 50px;
    margin-left: 12px;
}

.ot__icon::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    background-color: var(--primary-black);
    border-radius: 50px;
}

.ot__icon::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0,0);
    background-image: url(../img/arrow__bl.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    opacity: 0;
    transition: 0.4s;
}

.ot__btn:hover .ot__btnTxt {
    transition: 0.4s;
    opacity: 0.9;
}

.ot__btn:hover .ot__icon::after {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1,1);
    transition: 0.4s;
}

/* outline pad */
@media screen and (min-width: 1024px) {
    .outline {
        margin-top: 0;
        padding: 110px var(--content-padding) 140px;
    }

    .ot__content {
        max-width: 980px;
        margin: 0 auto;
    }

    h3 {
        font-size: 5rem;
        padding-left: 20px;
    }

    h3::before {
        width: 8px;
        height: 8px;
    }

    .ot__item {
        width: 66.3%;
        margin: 46px 0 0 auto;
    }

    .ot__item::before {
        top: 16px;
        left: -118px;
        width: 80px;
    }

    .ot__txt {
        font-size: 1.8rem;
    }

    .ot__btn {
        margin-top: 40px;
    }

    .ot__btnTxt {
        font-size: 1.6rem;
    }

    .ot__icon {
        width: 45px;
        height: 45px;
        margin-left: 20px;
    }

    .ot__icon::before {
        width: 6px;
        height: 6px;
    }

    .ot__icon::after {
        width: 45px;
        height: 45px;
    }

}

/* outline pc */
@media screen and (min-width: 1280px) {
    .outline {
        padding: 40px var(--content-padding) 120px;
    }

    .ot__item {
        margin: 60px 0 0 auto;
    }

}

/* =============
mock
============== */
.mock {
    padding: 80px 2.6% 0;
}

/* mock pc */
@media screen and (min-width: 768px) {
    .mock {
        padding: 120px 5.3% 0; 
    }
}

/* mock pc */
@media screen and (min-width: 1280px) {
    .mock {
        padding: 120px 8.3% 0; 
    }
}

/* =============
detail
============== */
.detail {
    padding: 80px var(--content-padding) 0;
}

.de__list {
    margin-top: 40px;
}

.de__item {
    padding: 34px 0;
    border-bottom: 1px solid var(--primary-gray);
}

.de__item:first-of-type {
    padding: 0 0 34px 0;
}

.de__name {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: normal;
}

.de__txt {
    font-size: 1.4rem;
    margin-top: 14px;
}

/* detail pc */ 
@media screen and (min-width: 1024px) {
    .detail {
        padding: 120px var(--content-padding) 0;
    }

    .de__content {
        max-width: 980px;
        margin: 0 auto;
    }

    .de__list {
        margin-top: 80px;
    }

    .de__item {
        display: flex;
        align-items: flex-start;
        padding: 42px 0;
    }

    .de__item:first-of-type {
        padding: 0 0 42px 0;
    }

    .de__name {
        font-size: 1.8rem;
        flex-basis: 90px;
        flex-shrink: 0;
    }

    .de__txt {
        font-size: 1.6rem;
        margin: 0 0 0 130px;
    }
}

/* =============
full__img
============== */
.full__img {
    background-color: var(--primary-backGray);
    margin-top: 100px;
    padding: 100px var(--content-padding) 160px;
}

.scroll {
    position: relative;
}

.scroll__img {
    position: absolute;
    width: 12%;
    top: -3.6vh;
    right: -3px;
    animation: rotation 24s linear infinite;
}

.scroll__img--sp {
    width: 16.4%;
    top: -3.9vh;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.pc__item {
    padding-bottom: 60px;
    border-bottom: 1px solid var(--primary-gray);
}

.img__pc {
    position: relative;
    z-index: 1;
    aspect-ratio: 1440 / 840;
    overflow-y: scroll;
}

.sp__item {
    margin-top: 60px;
    padding: 0 4.4%;
}

.img__sp, 
.img__menu {
    position: relative;
    z-index: 1;
    aspect-ratio:  375 / 667;
    overflow-y: scroll;
}

.img__menu {
    margin-top: 60px;
}

/* full__img pad */
@media screen and (min-width: 768px) {
    .full__img {
        margin-top: 180px;
        padding: 180px 5.3% 300px; 
    }

    .full__content {
        max-width: 980px;
        margin: 0 auto;
    }

    .scroll__img {
        top: -6vh;
        right: -47px;
        width: 10.2%;
    }


    .pc__item {
        padding-bottom: 100px;
    }

    .sp__item{
        margin-top: 100px;
        padding: 0;
    }

    .sp__content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 880px;
        margin: 0 auto;
    }

    .img__inner {
        width: 44.3%;
    }

    .img__menu {
        margin-top: 0;
    }

    .scroll__img--sp {
        top: -5.1vh;
        right: -37px;
        width: 25.5%;
    }
}

/* full__img pc */
@media screen and (min-width: 1280px) {
    .img__pc {
        position: relative;
        z-index: 1;
        aspect-ratio: 1440 / 832;
        overflow-y: scroll;
    }

    .web2Img__pc {
        aspect-ratio: 1440 / 827;
    }

    .img__sp, 
    .img__menu {
        position: relative;
        z-index: 1;
        aspect-ratio:  375 / 640;
        overflow-y: scroll;
    }

    .pc__item {
        padding-bottom: 100px;
    }

    .sp__item{
        margin-top: 100px;
        padding: 0;
    }

    .sp__content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 880px;
        margin: 0 auto;
    }

    .img__inner {
        width: 44.3%;
    }

    .img__menu {
        margin-top: 0;
    }

    .scroll__img--sp {
        top: -5.1vh;
        right: -37px;
        width: 25.5%;
    }
}

@media screen and (min-width: 1536px) {
    .sp__content {
        max-width: 980px;
    }

    .img__sp, 
    .img__menu {
        aspect-ratio:  375 / 644;
    }

    .img__spWeb {
        aspect-ratio:  375 / 643;
    }


}

/* =============
p__link
============== */
.link__content {
    position: relative;
    display: block;
    width: 100%;
    height: 180px;
    background-color: rgba(75, 75, 75, 0.40);
    overflow: hidden;
}

.link__back {
    background-color: rgba(175, 175, 175, 0.40);
}

.link__content::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../img/eyecatch__web1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 35%;
    z-index: -1;
}

.web2__img::before {
    background-image: url(../img/eyecatch__web2.jpg);
}

.web3__img::before {
    background-image: url(../img/eyecatch__web3.jpg);
}

.web4__img::before {
    background-image: url(../img/eyecatch__web4.jpg);
}

.banner1__img::before {
    background-image: url(../img/eyecatch__banner1.jpg);
    background-position: 50% 55%;
}

.link__back::before {
    background-image: url(../img/eyecatch__etc.jpg);
    background-position: 50% 14%;
}

.link__item {
    position: absolute;
    bottom: 16px;
    right: 5.3%;
    display: flex;
    align-items: center;
}

.back__item {
    left: 5.3%;
}

.link__txt {
    color: var(--primary-white);
    font-size: 2.2rem;
    font-family: Inter;
    font-weight: 400;
    line-height: normal;
    margin-right: 14px;
}

.back__txt {
    margin-right: 0;
    margin-left: 14px;
}

.link__icon {
    position: relative;
    display: inline-block;
    width: 38px;
    height: 38px;
    border: 1px solid var(--primary-white);
    border-radius: 50px;
}

.link__icon::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background-color: var(--primary-white);
    border-radius: 50px;
}

.link__icon::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0,0);
    background-image: url(../img/arrow__wh.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    opacity: 0;
    transition: 0.4s;
}

.back__icon::after {
    background-image: url(../img/arrow__back.png);
}

.link__content:hover .link__txt {
    transition: 0.4s;
    opacity: 0.9;
}

.link__content:hover .link__icon::after {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1,1);
    transition: 0.4s;
}

/* p__link pc */
@media screen and (min-width: 768px) {
    .p__link {
        display: flex;
        align-items: center;
        flex-direction: row-reverse;
    }

    .link__content {
        height: 350px;
        background-color: rgb(75, 75, 75);
        transition: all 0.5s;
    }

    .link__content:hover {
        background-color: rgba(75, 75, 75, 0.3);
    }

    .link__back {
        background-color: rgb(175, 175, 175);
    }

    .link__back:hover {
        background-color: rgba(175, 175, 175, 0.3);
    }

    .link__item {
        right: 11.1%;
        bottom: 34px;
    }

    .back__item {
        left: 11.1%;
    }

    .link__txt {
        font-size: 3rem;
        margin-right: 20px;
    }

    .back__txt {
        margin-right: 0;
        margin-left: 20px;
    }

    .link__icon {
        width: 50px;
        height: 50px;
    }

    .link__icon::before {
        width: 8px;
        height: 8px;
    }

    .link__icon::after {
        width: 50px;
        height: 50px;
    }


}