@charset "UTF-8";
/* ===================
common
====================== */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: Zen Kaku Gothic Antique, sans-serif;
    font-style: normal;
    line-height: 1.5;
    color: #333333;
    background-color: #ffffff;
}

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

.wrapper {
    animation: fadein 1s forwards;
}

@keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.section__topic--sub {
    font-size: 1.5rem;
    font-weight: 500;
    color: #BD3843;
}

.section__topic {
    font-family: Zen Tokyo Zoo;
    font-size: 11vw;
    color: #BD3843;
}

/* common tablet */
@media screen and (min-width: 600px) {
     .section__topic {
        font-size: 6.5rem;
    }
}/* tablet 600px */


/* ===================
header
====================== */
.header__common {
    width: 100%;
    padding: 19px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    z-index: 1000;
}

.logo {
    width: 230px;
    height: auto;
}

.open__btn {
    position: fixed;
    top: 29px;
    right: 19px;
    display: block;
    width: 28px;
    height: 14px;
    z-index: 1000;
}

.close__btn {
    position: fixed;
    top: 24px;
    right: 21px;
    display: block;
    width: 24px;
    height: 24px;
    z-index: 1000;
}

.pc-nav {
    display: none;
}

.sp-nav {
    height: 100vh;
    background-color: #ffffff;
    padding: 140px 16vw;
}

.sp-nav__item {
    color: #D25F69;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.brand__item {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.sp-nav__item--recruit {
    margin-bottom: 50px;
}

.sp-nav__item--contact {
    display: block;
    width: 180px;
    height: 40px;
    background-color: #D25F69;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    text-align: center;
    line-height: 2.4;
    transition: 0.4s;
}

.sp-nav__item::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #A8A8A8;
    margin-top: 15px;
}

.brand__item::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 1px;
    margin: 0 5px 4px 0;
    margin-right: 5px;
    border-top: solid 2px #cdcdcd;
    
}

.brand__item--1 {
    margin: 11px 0 8px;
}

.brand__item--2::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #A8A8A8;
    margin-top: 20px;
}

.sp-nav__item:last-of-type::after {
    content: none;
}

.sp-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s linear;
    z-index: 100;
}

.active {
    pointer-events: auto;
    opacity: 1;
    z-index: 2000;
}


/* nav pc */
@media screen and (min-width: 1024px) {
    .header__common {
        padding: 30px 50px;
    }

    .open__btn {
        display: none;
    }

    .pc-nav {
        display: block;
    }

    .pc-nav__list {
        display: flex;
        align-items: center;
    }

    .pc-nav__item {
        margin-left: 31px;
        font-size: 1.6rem;
        font-weight: 500;
        transition: 0.4s;
    }

    .pc-nav__item:nth-child(4) {
        position: relative;
    }

    .sub-nav {
        position: absolute;
        top: 24px;
        left: -105px;
        background-color: #ffffff;
        padding: 27px 35px;
        width: 316px;
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        color: #333333;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: 0.4s;
    }

    .sub:hover .sub-nav,.sub {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .sub-nav__topic::after {
        content: "";
        display: block;
        width: 100%;
        height: 2px;
        background-color: #D25F69;
        margin-top: 7px;
    }

    .sub-nav__item1 {
        margin-top: 12px;
    }

    .sub-nav__item {
        transition: 0.4s;
        margin-bottom: 5px;
    }

    .sub-nav__item:hover {
        color: #D25F69;
    }

    .pc-nav__item:not(:last-child):hover {
        color: #D25F69;
    }

    .pc-nav__item:last-of-type {
        display: block;
        width: 180px;
        height: 40px;
        background-color: #D25F69;
        border-radius: 30px;
        color: #ffffff;
        font-weight: 500;
        text-align: center;
        line-height: 2.5;
        transition: 0.4s;
    }

    .pc-nav__item:last-of-type:hover {
        background-color: rgba(221, 73, 86, 0.6);
    }

    .pc-nav__item a {
        display: block;
    }
}/* pc 1024px */

@media screen and (min-width: 1440px) {
    .pc-nav__item {
        margin-left: 44px;
    }
}/* pc 1440px */


/* ===================
main visual
====================== */
.sp-img {
    margin-top: 71.68px;
    width: 100%;
}

/* mv pc */
@media screen and (min-width: 1024px) {
    .pc-img {
        margin-top: 100px;
        width: 100%;
     }
}/* pc 1024px */


/* ===================
fadeIn
====================== */
.fadeIn {
    transform: translate(0, 50px);
    opacity: 0;
    transition: 0.8s;
}

.fadeIn.animated {
    transform: translate(0, 0);
    opacity: 1;
}


/* ===================
fadeIn　txt
====================== */
.fadeInText span {
    display: inline-block;
    transform: translateY(50px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.fadeInText.animated span {
    transform: translateY(0);
    opacity: 1;
}


/* ===================
fadeIn　mvText
====================== */
.mvText span{
  display:inline-block;
  transform:translateY(30px);
  opacity:0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.mvText.animated span{
  transform:translateY(0);
  opacity:1;
}


/* ===================
footer
====================== */

.map {
    width: 100%;
    height: 320px;
}

.footer__ {
    padding: 80px 7.4% 19px;
    background-color: #ffffff;
}

.footer__logo {
    width: 230px;
    height: auto;
}

.footer__detail {
    margin-top: 16px;
}

.detail {
    font-size: 1.5rem;
}

.detail:nth-child(3) {
    font-weight: 600;
    color: #D25F69;
    font-size: 2.5rem;
}

.footer-nav {
    margin-top: 33px;
}

.footer-nav__item {
    font-size: 1.6rem;
    padding-top: 25px;
    font-weight: 500;
}

.footer-brand__item--1 {
    margin: 7px 0 6px;
    color: #656565;
}

.footer-brand__item--2 {
    margin-bottom: 6px;
    color: #656565;
}

.copy {
    text-align: right;
    margin-top: 122px;
}

/* footer tablet */
@media screen and (min-width: 840px) {
    .footer-nav__list {
        display: flex;
        gap: 0 3vw;
    }
}/* tablet 840px */

/* footer pc */
@media screen and (min-width: 1130px) {
    

    .footer__ {
        display: flex;
        justify-content: space-between;
        padding: 80px 4.4% 19px;
    }

    .footer-nav {
        margin-top: 0px;
    }
  
    .footer-nav__item {
        padding-top: 0px;
    }

    .footer-nav__list {
        display: flex;
        gap: 0 3vw;
    }

    .footer__logo {
        width: 200px;
        height: auto;
    }

    .footer-nav__item {
        font-size: 1.5rem;
        transition: 0.4s;
    }

    .footer-nav__item--:hover {
        color: #D25F69;
    }
}/* pc 1130px */

@media screen and (min-width: 1440px) {
    .footer__ {
        padding: 80px 8% 19px;
    }
}/* pc 1440px */