@charset "UTF-8";

/* -----
 * contents
----------------------------------------------------------------------------- */
/******フォント & カラー******/
.mainVisual,
.contentArea {
    color:  #494949;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    letter-spacing: .35em;
    line-height: 2;
    width: 100%;
    font-feature-settings: "palt";
}

@media screen and (max-width: 568px) {
    .mainVisual,
    .contentArea {
        letter-spacing: .1em;
    }
}
/****** リンク ******/
.contentArea a {
    text-decoration: none;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    opacity: 1;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.contentArea a:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: .7;
}

/******************** メインビジュアル ********************/
.mainVisual {
    margin-bottom: 80px;
}

.mainVisual_content {
    width: 980px;
    margin: 0 auto;
    display: flex;
}

.mainVisual h1 {
    width: 423px;
    margin-top: 70px;
}

.mainVisual .lead {
    font-size: 1.1rem;
    line-height: 2.4;
    font-weight: 500;
    width: 500px;
    margin: 70px 0 0 50px;
    letter-spacing: 0.2em;
}

.mainVisual .lead .notice {
    display: inline;
    font-size: 0.85rem;
    color: #d6327c;
    border-bottom: 2px dashed #d6327c;
}

.mainVisual .lead .notice strong {
    font-size: 1.5rem;
}

@media screen and (max-width: 979px) {
    .mainVisual {
        margin-bottom: 80px;
    }
    
    .mainVisual_content {
        width: 100%;
    }
    
    .mainVisual h1 {
        width: 35%;
        margin-left: 8%
    }
    
    .mainVisual .lead {
        width: 50%;
        margin: 60px 2% 0 5%;
    }
    
}

@media screen and (max-width: 568px) {

    .mainVisual {
        margin-bottom: 80px;
    }
    
    .mainVisual_content {
        display: block;
        text-align: center;
    }
    
    .mainVisual h1 {
        width: 60%;
        margin: 30px 23% 0 17%;
    }
    
    .mainVisual .lead {
        font-size: 1.0rem;
        width: 90%;
        margin: 60px 5%;
        text-align: left;
    }

    .mainVisual .lead p {
        margin: 0;
        padding: 0;
    }

    .mainVisual .lead br {
        display: none;
    }

    .mainVisual .lead p.notice {
        line-height: 2.0;
    }

}

/******************** コンテンツ ********************/
.contentArea {
    background: #FFF;
    text-align: center;
}

.contentArea article {
    background: #FFF;
    position: relative;
}

.contentArea .thumbnail img {
    width: 100%;
    vertical-align: bottom;
}


/** Animation **/
.contentArea .thumbnail a img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    opacity: 1;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.contentArea .thumbnail a:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: .7;
}

.contentArea .thumbnail {
    overflow: hidden;
    background: #FFF;
}

.contentArea .text {
    padding: 30px;
    text-align: left;
}

.contentArea .date {
    font-size: 15px;
    color: #bcbec0;
    letter-spacing: .01em;
    margin: 0;
}

.contentArea h3 {
    color: #494949;
}

.contentArea .lead {
    text-align: left;
    letter-spacing: .01em;

}

/** 最新記事 **/
.contentArea section.latest {
    width: 100%;
    background: #f2eee9;
    padding: 80px 0
}

.contentArea .latest article {
    width: 980px;
    margin: 0 auto;
    display: flex;
    position: relative;
    box-shadow: -20px 20px 0px 0 rgb(214, 205, 197);
}

.contentArea .latest article::before {
    content: '';
    position: absolute;
    display: inline-block;
    top: 0;
    right: 0;
    z-index: 1;
    border-top: 60px solid#d6327c;
    border-right: 60px solid #d6327c;
    border-bottom: 60px solid transparent;
    border-left: 60px solid transparent;
}

.contentArea .latest article::after {
    content: '';
    background-image: url(../image/img_new.png);
    background-size: 80px;
    position: absolute;
    color: #FFF;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    top: 0px;
    right: 0;
    z-index: 2;
}

.contentArea .latest .thumbnail {
    width: 512px;
    height: 384px;
}

.contentArea .latest .text {
    width: 468px;
}

.contentArea .latest .date {
    padding-top: 60px;
}

.contentArea .latest h3 {
    margin: 0 0 30px;
    font-size: 1.53rem;
}

/** バックナンバー **/
.contentArea section.backnumber {
    width: 100%;
    background: #f9f9f9;
}

.contentArea .backnumber_wrapper  {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 980px;
    margin: 0 auto;
}

.contentArea .backnumber h2 {
    margin: 0 auto 30px;
    padding-top: 70px;
}
.contentArea .backnumber article {
    width: 452px;
    margin-bottom: 80px;
    box-shadow: -20px 20px 0px 0 rgb(242, 238, 233);
}

.contentArea .backnumber .thumbnail {
    width: 452px;
    padding: 0;
    margin: 0;
}

.contentArea .backnumber h3 {
    margin: 0 0 20px 0;
    font-size: 1.18rem;
}

.contentArea .backnumber .lead {
    font-size: 0.9rem;
}


@media screen and (max-width: 979px) {
    
}

@media screen and (max-width: 568px) {

    
    .contentArea .date {
        font-size: 0.7rem;
    }
    
    .contentArea h3 {
        color: #494949;
    }
    
    .contentArea .lead {
        text-align: left;
        letter-spacing: .01em;
    
    }
    
    /** 最新記事 **/
    .contentArea section.latest {
        width: 100%;
        background: #f2eee9;
        padding: 30px 0
    }
    
    .contentArea .latest article {
        width: 90%;
        margin: 0 5%;
        display: block;
        position: relative;
        box-shadow: -10px 10px 0px 0 rgb(214, 205, 197);
    }
    
    .contentArea .latest article::before {
        border-top: 45px solid#d6327c;
        border-right: 45px solid #d6327c;
        border-bottom: 45px solid transparent;
        border-left: 45px solid transparent;
    }
    
    .contentArea .latest article::after {
        background-image: url(../image/img_new.png);
        background-size: 60px;
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
    
    .contentArea .latest .thumbnail {
        width: 100%;
        height: auto;
    }
    
    .contentArea .latest .text {
        width: 100%;
    }
    
    .contentArea .latest .date {
        padding-top: 15px;
    }
    
    .contentArea .latest h3 {
        margin: 0 0 15px;
    }
    
    /** バックナンバー **/
    .contentArea section.backnumber {
        width: 100%;
        background: #f9f9f9;
    }
    
    .contentArea .backnumber_wrapper  {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
        margin: 0 auto;
    }
    
    .contentArea .backnumber h2 {
        width: 40%;
        margin: 0 auto 30px;
        padding-top: 40px;
    }
    .contentArea .backnumber article {
        width: 90%;
        margin: 0 5% 30px;
        box-shadow: -10px 10px 0px 0 rgb(242, 238, 233);
    }
    
    .contentArea .backnumber .thumbnail {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .contentArea .backnumber h3 {
        margin: 0 0 20px 0;
        font-size: 1.18rem;
    }
    
    .contentArea .backnumber .lead {
        font-size: 0.9rem;
    }
    
}


  


/** animation **/

/** ローカルコーディング中はコメントアウト **/
.contentArea article:nth-child(odd) .box {
    opacity:  0;
    transform: translate(0, 50px);
}
.contentArea article:nth-child(even) .box {
    opacity:  0;
    transform: translate(0, 50px);
}
.contentArea article:nth-child(odd) .fadeIn{
    opacity: 1 !important;
    transition: 1.3s;
    transform: translate(0, 0);
}
.contentArea article:nth-child(even) .fadeIn{
    opacity: 1 !important;
    transition: 1.3s;
    transform: translate(0, 0);
}
/** ここまでコメントアウト　**/
/** /animation **/


footer.g-footer {
    margin-top: 0;
}
