/* ================================================================
section
================================================================= */
section {
    width: 100%;
}
section:nth-child(3) {
    margin-top: 50px;
}
section:nth-child(3)::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 260px;
    background: linear-gradient(120deg, rgba(221, 94, 137, 1), rgba(247, 187, 151, 1));
    z-index: -1;
}
section:nth-child(5) {
    width: 100%;
    margin-top: 50px;
    background: linear-gradient(120deg, rgba(221, 94, 137, 1), rgba(247, 187, 151, 1));
    z-index: -1;
}


/* ================================================================
mainVisual
================================================================= */
.mvArea {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}
.mvImage img {
    max-width: 100%;
}
.mvMessage {
    margin: 0 0 0 50px;
    max-width: 500px;
}
.mvMessage .mainMessage {
    font-size: 3.2rem;
    font-weight: bold;
    background: linear-gradient(120deg, rgba(221, 94, 137, 1), rgba(247, 187, 151, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.mvMessage .subMessage {
    font-size: 1.6rem;
    font-weight: 500;
    margin: 20px 0 30px 0;
}
.mvMessage .primaryBtn {
    margin: 0;
}


/* ================================================================
popular article
================================================================= */
.popularArticle-container {
  width: 100%;
  margin: 30px 0 0 0;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.popularArticle-content {
    width: 320px;
    height: auto;
    text-align: left;
    z-index: 1;
    position: relative;
    transition: color 0.2s;
    border-radius: 10px;
    background-color: #fff;
    margin: 0 10px 20px 10px;
    border-radius: 10px;
    box-shadow: 2px 6px 30px -10px #dedede;
    border-radius: 10px;
}
.popularArticle-content a:hover {
    opacity: 100;
}
.popularArticle-content:first-child {
    margin: 0 10px 20px 0;
}
.popularArticle-content figure, .popularArticle-content figure img {
    width: 100%;
    position: relative;
    border-radius: 10px 10px 0 0;
    aspect-ratio: 16 / 9; /* アスペクト比を固定（例：16:9） */
    object-fit: cover; /* 画像の収まり方を指定 */
    object-position: center; /* 画像の中心を基準に切り抜く */
}
.popularArticle-content h3.heading3 {
    padding: 15px 10px;
}
.pa-content a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent: -999px;
    z-index: 2;
}



@media screen and (max-width: 767px) {
/* ================================================================
SP - section
================================================================= */
section:first-child {
    min-height: 468px;
}
section:nth-child(3) {
    margin: 50px 0 20ox 0;
}
/* ================================================================
SP - mainVisual
================================================================= */
.mvArea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}
.mvImage {
    width: 80%;
    text-align: center;
}
.mvMessage{
    margin: 20px 0 0 0;
}
.mvMessage .mainMessage {
    font-size: 3rem;
    line-height: 1.4;
}
.mvMessage .primaryBtn {
    margin: 0 auto;
}

/* ================================================================
SP - popular article
================================================================= */
.popularArticle-container {
    overflow-x: scroll;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
}
.popularArticle-content {
    min-width: 220px;
}


}