@charset "utf-8";
/*===========
header
=============*/
.header{
    z-index: 999;
    position: fixed;
    width: 100%;
    background-image: url(../images/bg-yellow-sp.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

@media screen and (min-width:769px) {
    .header{
        background-image: url(../images/bg-yellow-pc.svg);
        border-top: none;
    }
}

/*===========
article__header
=============*/
.article__header{
    padding: 123px 8% 11px;
}

.ttl__area{
    position: relative;
}

.about__ttl{
    /*width: 75.2%;
    height: auto;
    margin: 0 0 0 auto;*/
    color: #F9B42C;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: normal;
    position: relative;
    text-align: center; 
}

.about__ttl__p{
    color:var(--primary-Black);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: normal;
    text-align: center; 
    text-shadow: 4px 4px 0px #452F29;
    position: absolute;
    inset: 0;
    z-index: -1;
    /* 追加 */
    -webkit-text-stroke: 4px var(--primary-Black);
}

.sub__ttl{
    color:var(--primary-Black);
    text-align: center;
    font-family: "IBM Plex Sans JP";
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.6; /* 162.5% */
}


@media screen and (min-width:769px) {
    .article__header{
        padding: 127px 8% 0;
    }

    .about__ttl{
        font-size: 6.4rem;
    }
    
    .about__ttl__p{
        font-size: 6.4rem;
        text-shadow: 6px 6px 0px #452F29;
        -webkit-text-stroke: 6px var(--primary-Black);
    }

    .sub__ttl{
        font-size: 2.4rem;
    }
}/*pc769px*/
/*======================================
txt
======================================-*/
.section{
    padding: 0 8% 40px;
}

.contact__txt{
    color: var(--primary-Black);
    font-family: "IBM Plex Sans JP";
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 66px;
    letter-spacing: 0.1em;
}

.txt__span{
    color: #F64E28;
    font-family: "IBM Plex Sans JP";
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

/*sns*/
.contact__sns{
    margin-top: 80px;
    display: flex;
    justify-content: center;
    gap: 0 40px;
}

.sns__item{
    width: 70px;
    height: 70px;
}

/*プライバシーポリシー*/
.policy{
    color:var(--primary-Black);
    text-align: center;
    font-family: "IBM Plex Sans JP";
    font-size: 1.8em;
    font-weight: 700;
    margin-top: 80px;
}

.policy__btn{
    display: block;
    width: 300px;
    padding: 20px;
    border-radius: 16px;
    border: 2px solid #000;
    background: #FFF;
    /* ドリルのシャドウ */
    box-shadow: 4px 4px 0px 0px #231815, 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    align-items: center;
    margin: 0 auto;
}

.policy__span{
    color: var(--primary-orange);
}

.mitake{
    width: 32%;
    margin: 35px auto 0;

    transform-origin: center bottom;
    animation: yurayura 2s linear infinite;
}

@keyframes yurayura {
    0% , 100%{
        transform: rotate(8deg);
    }
    50%{
        transform: rotate(-8deg);
    }
}

/*回転animation*/
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.rotate {
  animation: rotate 12s infinite linear;
}

/*===========================================
===========================================*/
@media screen and (min-width:769px) {
    .section{
        padding: 41px 8% 83px;
    }

    .contact__txt{
    font-size: 2.4rem;
    margin: 85px auto 0;
    max-width: 900px;
    }

    .txt__span{
        font-size: 2.4rem;
    }

/*sns*/
    .sns__area{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10%;
    }

    .contact__sns{
        margin-top: 80px;
        display: flex;
        justify-content: center;
        gap: 0 60px;
    }

    .sns__item{
        width: 80px;
        height: 80px;
    }

    /*プライバシーポリシー*/
    .policy{
        display: flex;
        flex-direction: column; /* ←これを追加 */
        align-items: center; /* 中央揃え（任意） */
        gap: 1rem; /* 間隔（任意） */
        text-align: center;
        font-size: 2.4rem;
        margin-top: 80px;
    }

    .mitake{
        width: 50%;
        margin: 0 auto 0;
    }


}/*pc769px*/

@media screen and (min-width: 769px) {
    .footer {
        border-top: none;
    }
}