@charset "UTF-8";
/*====================

  common

====================*/
html {
    font-size: 62.5%;
}

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

body {
    font-family: "Zen Maru Gothic",
                sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 0.7px;
    color: #333333;
    background-color: #fff;
}


/* ↓position:absolute対策 */
.header {
    position: relative;
    z-index: 100;
}
.main {
    position: relative;
    z-index: 0;
}
/* ↑position:absolute対策 */


.btn {
    display: block;
    border-radius: 30px;
    background: #122A88;
    border: 1px solid #122A88;
    padding: 15px 50px;
    color: #fff;
    text-align: center;
    font-size: 1.6rem;
    font-family: Lato;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.6px;
    transition: 0.4s;
}

.btn__viewmore {
    background: #FFF;
    color: #122A88;
}

.btn:hover {
    opacity: 0.5;
}

.pcBr,
.pcImg {
    display: none;
}

.page__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.page__title {
    font-family: Caveat;
    font-size: 4.0rem;
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: 8px;
}

.page__subtitle {
    font-size: 1.6rem;
    line-height: 1.0;
    letter-spacing: 3.2px;
}

.fadeIn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s, transform .8s;
}

.fadeIn.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/*----------------- 
  common pc START  
-----------------*/

@media screen and (min-width: 769px) {
    body {
        font-size: 1.6rem;
        line-height: 2.2;
        letter-spacing: 0.8px;
    }

    .btn {
        border-radius: 50px;
        border: 2px solid #122A88;
        padding: 16px 35px;
        font-size: 2.0rem;
        font-family: Lato;
        letter-spacing: 4.0px;
        transition: 0.4s;
    }

    .pcBr,
    .pcImg {
        display: block;
    }

    .spBr,
    .spImg {
        display: none;
    }

    .page__header {
        gap: 15px;
    }

    .page__title {
        font-family: Caveat;
        font-size: 7.2rem;
        font-weight: 700;
        line-height: 1.0;
        letter-spacing: 14.4px;
    }

    .page__subtitle {
        font-size: 2.4rem;
        letter-spacing: 4.8px;
    }
}
/*----------------- 
  common pc END 
-----------------*/


/*====================

  header

====================*/

.header {
    padding: 10px 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background-color: #FFF;
}

.header__topic {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.header__txt {
    font-size: 1.2rem;
    line-height: 1.0;
    letter-spacing: 1.2px;
}

.header__logo {
    width: 80px;
}

.menu__btn {
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
    z-index: 1001;
}

.menu__btn span {
    width: 30px;
    height: 2px;
    border-radius: 1px;
    left: 0;
    background: #122A88;
    position: absolute;
}

.menu__btn,
.menu__btn span {
    transition: all .4s;
    box-sizing: border-box;
}

.menu__btn span:nth-child(1) {
    top: 0;
}

.menu__btn span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu__btn span:nth-child(3) {
    bottom: 0;
}

.nav.active .menu__btn span {
    background: #fff;
}

.nav.active .menu__btn span:nth-child(1) {
    transform: translateY(11.5px) rotate(45deg);
}

.nav.active .menu__btn span:nth-child(2) {
    opacity: 0;
}

.nav.active .menu__btn span:nth-child(3) {
    transform: translateY(-11.5px) rotate(-45deg);
}

/* nav初期表示 */
.nav__menu {
    padding: 87px 4%;
    width: 100%;
    height: 100vh;
    background-color: #122A88;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    transform: translateX(100%);
    transition: 0.4s;
}

.nav__item {
    text-align: center;
    color: #FFF;
    font-family: Lato;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: 4.8px;
    margin-top: 80px;
    transition: 0.4s;
}

.nav__item:hover {
    opacity: 0.5;
}

.nav__item::first-letter {
    color: #F8ED00;
}

.nav__item:first-of-type {
    margin-top: 50px;
}
/* nav初期表示 */

.nav__menu.active {
    transform: translateX(0%);
}

/*----------------- 
  header pc START  
-----------------*/

@media screen and (min-width: 769px) {
    .header {
        padding: 10px 7.6%;
    }

    .header__txt {
        font-size: 1.4rem;
        letter-spacing: 1.4px;
    }

    .header__logo {
        width: 90px;
    }

    .nav__menu {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translate(0);
    }

    .nav__list {
        display: flex;
        margin-top: 0;
        gap: 50px;
    }

    .nav__item {
        color: #333333;
        font-size: 1.6rem;
        font-weight: 400;
        letter-spacing: 1.6px;
        margin-top: 0;
    }

    .nav__item::first-letter {
        color: #333333;
    }

    .nav__item:first-of-type {
        margin-top: 0px;
    }

    .menu__btn {
        display: none;
    }
}
/*----------------- 
  header pc END 
-----------------*/

/*====================

  footer

====================*/

.footer__group {
    background-color: #F8ED00;
    padding: 60px 4% 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.footer__topic {
    display: flex;
    justify-content: center;
}

.footer__logo {
    width: 100px;
    transition: 0.4s;
}

.footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.menu__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-family: Lato;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.0;
}

.menu__item {
    transition: 0.4s;
}

.menu__item:hover,
.instagram:hover {
    opacity: 0.5;
}

.instagram {
    width: 18px;
    transition: 0.4s;
}

.copy {
    font-family: Lato;
    font-size: 1.0rem;
    font-weight: 400;
    line-height: 1.0;
}

.toTop {
    bottom: 0px;
    position: fixed;
    right: 0%;
}

.toTopImg {
    width: 45px;
}

/*----------------- 
  footer pc START  
-----------------*/

@media screen and (min-width: 769px) {
    .footer__group {
        padding: 80px 7.6% 100px;
        gap: 80px;
    }

    .footer__logo {
        width: 180px;
    }

    .menu__list {
        flex-direction: row;
        justify-content: center;
        gap: 50px;
        font-size: 1.6rem;
        letter-spacing: 0.48px;
    }

    .instagram {
        width: 25px;
    }

    .toTopImg {
        width: 60px;
    }    
}
/*----------------- 
  footer pc END  
-----------------*/