@charset "utf-8";

/* common */
:root {
    --primary-black: #111111;
    --primary-white: #fff;
    --primary-gray: #555555;
    --primary-yellow: #FFCE6C;
    --primary-blown: #A67608;
    --contentPadding: 0 5.3%;
    --contentPaddingPC: 0 8.3%;
}

html {
    font-size: 62.5%;
}

body {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1.4rem;
    color: var(--primary-white);
    line-height: 1.7;
    background-color: var(--primary-black);
}


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


/* pc common 769px */
@media screen and (min-width: 769px) {
  body {
    font-size: 1.8rem;
  }
}


/*=====================
 ページトップに戻るCSS
 ======================= */
/*リンクの形状*/
#page-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-black);
    border: 1px solid white;
    border-radius: 90px;
    width: 60px;
    height: 60px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s;
}

#page-top a:hover {
    background: var(--primary-gray);
}

/*リンクを右下に固定*/
#page-top {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 2;
    /*はじめは非表示*/
    opacity: 0;
    transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove {
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*　下に下がる動き　*/

#page-top.DownMove {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 1;
        transform: translateY(100px);
    }
}


/* =================
フェイドインのCSS htmlは2つ目に見せたい要素、メインにかけている
===================== */
.fadeUpTrigger {
    opacity: 0;
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* ====================
btn角まる
====================== */


.btn {
  position: relative;
  /* display: inline-flex; */
  display: flex;
  align-items: center;

     padding: 12px 40px 12px 30px; /* 右は矢印分 */
  border-radius: 999px;

  background-color: var(--primary-white);
  color: var(--primary-black);
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.4s, color 0.4s, border-color 0.4s, transform 0.4s;
   border: 1px solid transparent;
  
   
}

/* ＞ を線で作る */
.btn::after {
  content: "";
  position: absolute;
  right: 18px;

  width: 8px;
  height: 8px;

  border-top: 2px solid var(--primary-black);
  border-right: 2px solid var(--primary-black);
  transform: rotate(45deg);
  
}

.btn:hover {
    background-color: var(--primary-black);
    color: var(--primary-white);
    border: 1px solid var(--primary-white);
   
}

.btn:hover::after {
     border-top-color: var(--primary-white);
  border-right-color: var(--primary-white);
}






/* common topic */
.topic {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0px;
}

.topic__title {
    color: var(--primary-white);
    text-align: center;
    font-family: "Poiret One";
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
}

.topic__subTitle {
    color: var(--primary-white);
    font-family: "Poiret One";
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
}


/* pc common 769px*/
@media screen and (min-width: 769px) {
.topic {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}

.topic__title {
    color: var(--primary-white);
    text-align: center;
    font-family: "Poiret One";
    font-size: 6.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
}

.topic__subTitle {
    color: var(--primary-white);
    font-family: "Poiret One";
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
}
}










/* =========================
header
============================ */
.header {
    padding: 0 5.3%;
    background-color: var(--primary-black);
    height: 70px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    /* スクロールしたときの透過を自然にみせるため */
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

/* スクロール後 、JSで制御済み*/
.header.is-scrolled {
    background-color: rgba(0, 0, 0, 0.7);
    /* 透過 */
    backdrop-filter: blur(6px);
    /* iOS/モダンブラウザ向け */
}

.header img {
    width: 46px;
    height: auto;
}

.header__topic {
    color: var(--primary-white);
    color: #FFF;
    font-family: Inter;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.header__logo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}



/* pc common 769px*/
@media screen and (min-width: 769px) {

    .header img {
        width: 69px;
        height: auto;
    }

    .header__topic {
        font-size: 3.6rem;
    }

    .header {
        height: 100px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 50;
        /* スクロールしたときの透過を自然にみせるため */
        transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
    }

}

/* =================
ここからmain
==================== */

.main {
    margin-top: 70px;
}

/* pc common */
@media screen and (min-width: 769px) {
    .main {
        margin-top: 100px;
    }
}


/* ==============
footer
================= */
.footer {
    margin-top: 50px;
    padding: 30px 20px;
    background-color: var(--primary-black);
      background-image: url("../img/footer.jpg");
  background-repeat: no-repeat;     /* 繰り返さない */
  background-position: center;      /* 中央寄せ */
  background-size: cover;            /* 要素いっぱいに表示 */
}

.footer__logo {
    display: flex;
}


.footer__logo img {
    width: 46px;
    height: 45px;
    margin-right: 10px;
}

.footer__logo h1 {
    color: var(--primary-white);
    font-family: Inter;
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 1.44px;
}

.footer__name {
    color: var(--primary-white);
    font-family: Inter;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    margin-top: 20px;
}

.footer__detail {
    margin-top: 20px;
}

.footer__detail p {
    color: var(--primary-white);
    font-size: 1.4rem;
    font-style: normal;
}

.footer__detail img {
    width: 15px;
    height: auto;
}

.footer__detail__item {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.footer__banner img {
    width: 300px;
    height: auto;
    margin-top: 30px;
    align-items: center;
}

.footer__banner--instagram img {
    margin-top: 20px;
}

.footer__banner {
    display: flex;
    align-items: center;
    flex-direction: column;

}

.footer__privacy,
.footer__terms {
    color: var(--primary-white);
    font-size: 1.4rem;
    text-align: center;
}

.footer__privacy {
    margin-top: 20px;

}

.copy {
    color: var(--primary-white);
    text-align: center;
    font-size: 1.4rem;
    margin-top: 20px;
}



/* pc footer 769px*/
@media screen and (min-width: 769px) {
    .footer {
        margin-top: 50px;
        padding: 50px 8.3%;
    }

    .footer__logo {
        display: flex;
    }


    .footer__logo img {
        width: 69px;
        height: 67px;
        margin-right: 20px;
    }

    .footer__logo h1 {
        font-size: 3.6rem;
    }

    .footer__name {
        font-size: 2.4rem;
        margin-top: 40px;
    }

    .footer__detail {
        margin-top: 25px;
    }

    .footer__detail p {
        font-size: 1.6rem;
    }

    .footer__detail img {
        width: 17px;
        height: auto;
    }

    .footer__detail__item {
        margin-top: 10px;
        display: flex;
        flex-direction: row;
        gap: 10px;
        align-items: center;
    }

    .footer__banner img {
        width: 300px;
        height: auto;
        margin-top: 30px;
        align-items: center;
    }

    .footer__banner--instagram img {
        margin-top: 20px;
    }

    .footer__banner {
        display: flex;
        align-items: center;
        flex-direction: column;

    }

    .footer__privacy,
    .footer__terms {
        color: var(--primary-white);
        font-size: 1.4rem;
        text-align: center;
    }

    .footer__privacy {
        margin-top: 20px;

    }

    .copy {
        color: var(--primary-white);
        text-align: center;
        font-size: 1.4rem;
        margin-top: 20px;
    }


}