@charset "utf-8";
/* =====================
article__header
===================== */
.article__header{
    margin-top: 40px;
    position: relative;
    background-color:var(--primary-pink);
    color: var(--primary-white);
    padding: 40px;
}
/* stamp 帯　ここから */
.article__header::before,
.article__header::after{
    content: "";
    width: 100%;
    height: 30px;/* 直径 */
    background-image: radial-gradient(circle, #FFFDF6 10px, transparent 10px);
    background-size: 32px 30px;/* 左：距離　右：直径 */
    display: block;
    position: absolute;
}
.article__header::before{
    top: -15px;/* 半径 */
    left: 0;
}
.article__header::after{
    bottom: -15px;/* 半径 */
    left: 0;
}
/* stamp 帯　ここまで */
.article__header__container{
    max-width: 1200px;
    margin: 0 auto;
    padding:60px
}
.sub-title{
    font-size: 1.6rem;
}
.title{
    font-size: 3.0rem;
    font-weight: 700;
}
.title__discription{
    width:590px;
    display: block;
    margin: 0 auto;
    margin-top: 20px;
    position: relative;
}
.title__discription::after{
    position: absolute;
    bottom:0px;
    right:-200px;
    display: block;
    content: "";
    width: 228px;
    height: 200px;
    background-image: url(../image/top_about.png);
    background-size: contain;
    background-repeat: no-repeat;
    overflow: hidden;
    object-fit: contain;
}
@media screen and (max-width: 960px) {
    .article__header__container{
        max-width: 1200px;
        margin: 0 auto;
        padding:40px
    }
    .sub-title{
        font-size: 1.4rem;
    }
    .title{
        font-size: 2.0rem;
        font-weight: 700;
    }
    .title__discription{
        width:590px;
        display: block;
        margin: 0 auto;
        margin-top: 20px;
    }
    .title__discription::after{
        width:171px;
        height:150px;  
        right:-80px
        }

}
@media screen and (max-width: 767px) {
    .article__header__container{
        max-width: 350px;
        display: block;
        margin: 0 auto;
        padding: 20px;
    }
    .article__header{
        padding: 20px;
    }
    /* 帯SP */
    .article__header::before,
    .article__header::after{
        content: "";
        width: 100%;
        height: 26px;/* 直径 */
        background-image: radial-gradient(circle, #FFFDF6 10px, transparent 10px);
        background-size: 32px 26px;/* 左：距離　右：直径 */
        display: block;
        position: absolute;
    }
    .article__header::before{
        top: -13px;/* 半径 */
    }
    .article__header::after{
        bottom: -13px;/* 半径 */
    }
    /* 帯SP */
    .title__discription{
        margin-top: 150px;
        max-width: 300px;
    }
    .title__discription::after{
        display: none;
    }
    .title{
        position: relative;
    }
    .title::after{
    position: absolute;
    top:0px;
    left:150px;
    display: block;
    content: "";
    width: 171px;
    height: 150px;
    background-image: url(../image/top_about.png);
    background-size: contain;
    background-repeat: no-repeat;
    overflow: hidden;
    object-fit: contain;
}
}
/* =====================
main
===================== */
.section--p{
    max-width: 85.7%;
    margin: 0 auto;
}
.title{
    position: relative;
}
.topic__section--p{
    margin-top: 80px;
}
.topic__section--p::after{
    background-image: url(../image/P_img.png);
    width: 110px;
    height: 110px;
    content:"";
    display: block;
    background-size: contain;
    position: absolute;
    bottom: 0;
    right: -60px;
}
.section--p__name{
    font-size: 3.0rem;
    font-weight: 700;
    color: var(--primary-pink);
    position: relative;
    margin-top: 40px;
    /* letter-spacing: 0.1rem; */
}
.section--p__name__txt{
    margin-left: -12px;
}
.section--p__name__font{
    font-family: "Holtwood One SC", serif;
    font-size: 5.0rem;
    line-height: 1.0em;
}
.section--p__subname{
    color: var(--primary-pink);
    font-weight: 700;
    font-size: 2.0rem;
}
.section--p__point{
    font-weight: 700;
    font-size: 2.0rem;
    margin-top: 40px;
}
.section--p__description span{
    font-weight: 700;
}
.section--p__description{
    margin-top: 40px;
}
.section--p__description.policy{
    max-width: 550px;
    padding-top: 40px;
}
.section--p__policy__container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.policy__img img{
    max-width: 550px;
    object-fit: contain;
}
@media screen and (max-width: 960px) {
    .section--p{
        max-width: 700px;
    }
    .section--p__name,.topic__section--p{
        font-size: 2.0rem;
    }
    .topic__section--p::after{
        width: 80px;
        height: 80px;
        right: -50px;
    }
    .section--p__subname{
        font-size: 1.4rem;
        margin-top: -20px;
    }
    .section--p__point{
        font-size: 1.6rem;       
    }
    .section--p__policy__container{
        flex-flow: column;
    }
}
@media screen and (max-width: 767px) {
    .section--p{
        max-width: 350px;
    }
    .policy__img img{
        max-width: 350px;
        object-fit: contain;
    }
}
/* =====================
person
===================== */
.person__name{
    font-size: 3.0rem;
    font-weight: 700;
    position: relative;
}
/* .person__name::after{
    background-image: url(../image/beetle.png);
    width: 120px;
    height: 120px;
    content:"";
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 3px;
    right: -3px;
} */
.personAbout{
    margin-top: 40px;
    max-width: 486px;
}
.person__description{
    max-width: 60%;
}
.person__container{
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
.person__img img{
    max-width: 334px;
    margin-top: -300px;
}
.person__link__container{
    margin-top:40px;
}
.person__link__name{
    margin-top: 20px;
}
.person__link__name::before{
    display:inline-block; 
    vertical-align: middle;
    content:'';
    width:1em;
    height: 1em;
    background:var(--primary-pink);
    border-radius: 50%;
    margin-right: 8px;
}
.person__link__url{
    text-decoration: underline;
    font-size: 1.2rem;
}
.person__link__url::after{
    width: 20px;
    height: 20px;
    content:url(../image/arrow_black.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.person__link__container{
    display: flex;
}
.person__link__box{
    margin-right: 40px;
}
.section--p__description.place{
    margin-top: 0;
    flex-basis: 60%;
}
.place__img{
    flex-basis: 40%;
    padding-left: 5%;
}
.place__contanar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}
@media screen and (max-width: 960px) {
    .person__img img{
        max-width: 250px;
        padding-left: 20px;
        margin-top: 0px;
    }
    .person__link__container{
        margin-top: 40px;
        margin-bottom: 0px;
        flex-direction: column;
    }
}

@media screen and (max-width: 767px) {
    .person__container{
        flex-direction: column-reverse;
        flex-wrap: wrap-reverse;
    }
    .place__contanar{
        flex-direction: column;
    }
    .person__img{
        margin: 0 auto;
        margin-top: 20px;
    }
    .person__img img{
        padding-left: 0;
    }
    .person__description{
        margin-top: 40px;
        max-width: 350px;
    }
    .place__img{
        margin: 0 auto;
        margin-top: 20px;
        padding-left: 0;
    }
}

