@charset "utf-8";
/*
*----メインとサイド横並びPC----*/
.ly_myPage{
    /*display: flex;
    gap: 7%;*/
    margin-bottom: 100px;
}

/*
*----メインstyle----*/
.myPage-article{
    width: 100%;
}
@media(max-width: 820px){
    /*.myPost-cat-dateWrap{
        margin-bottom: 3.2em;
    }*/
    /*.myPost-eyeCatch{
        max-height: 316px;
    }*/
}

/*ここから投稿のエディターの雛形スタイル
.myPost-article-stylingArea h1{
   font-family: var(--main-font);
   font-weight: bold;
   font-size: clamp(3.2rem, 3.51390922401vw, 4.8rem);
   line-height: 1.5;
   margin-bottom: 2em;
}
.myPost-article-stylingArea  p{
    line-height: 2;
    margin-bottom: 3.125em;
    font-size: clamp(1.5rem, 1.82926829268vw, 1.6rem);
}
.myPost-article-stylingArea  img{
    max-width: 100%;
    border-radius: 30px;
    margin-bottom: clamp(25px, 3.0487804878vw,50px);
}
.myPost-article-stylingArea h2{
    font-size: clamp(2.8rem, 3.41463414634vw, 3.2rem);
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 1.428em;
}
.myPost-article-stylingArea p + h2,
.myPost-article-stylingArea p + h3,
.myPost-article-stylingArea img + h2,
.myPost-article-stylingArea img + h3,
.myPost-article-stylingArea ul + h2,
.myPost-article-stylingArea ul + h3,
.myPost-article-stylingArea ol + h2,
.myPost-article-stylingArea ol + h3{
    margin-top: clamp(50px, 7.32064421669vw, 100px);
}
.myPost-article-stylingArea a{
    text-decoration: underline;
}
.myPost-article-stylingArea strong{
    font-weight: bold;
    position: relative;
}
.myPost-article-stylingArea strong::after{
    content: '';
    display: inline-block;
    width: 100%;
    height: .5em;
    background-color: var(--primary-color);
    position: absolute;
    bottom: 9%;
    left: 0;
    z-index: -1;
}
.myPost-article-stylingArea h3{
    font-size: clamp(1.8rem, 2.19512195122vw, 2rem);
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 1.6em;
}
.myPost-article-stylingArea ul,
.myPost-article-stylingArea ol{
    font-size: clamp(1.5rem, 1.82926829268vw, 1.6rem);
    margin-bottom: 3.125em;
}
.myPost-article-stylingArea ul li,
.myPost-article-stylingArea ol li{
    display: flex;
    align-items: center;
}
.myPost-article-stylingArea ul li:not(:last-child),
.myPost-article-stylingArea ol li:not(:last-child){
    margin-bottom: 1em;
}
.myPost-article-stylingArea ul li::before{
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url(../images/common/list-style.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: .75em;
}
.myPost-article-stylingArea ol{
    counter-reset: number 0;
}
.myPost-article-stylingArea ol li::before{
    counter-increment: number 1;
    content: counter(number);
    color: #fff;
    font-size: 0.7em;
    display: grid;
    place-items: center;
    min-width: 20px;
    height: 20px;
    background-image: url(../images/common/ol-list-style.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: .75em;
}
@media(max-width: 820px){
    .myPost-article-stylingArea h1,
    .myPost-article-stylingArea h2,
    .myPost-article-stylingArea h3{
        margin-bottom: 1em;
    }
    .myPost-article-stylingArea p,
    .myPost-article-stylingArea ul,
    .myPost-article-stylingArea ol{
        margin-bottom: 1.7em;
    }
}*/