@charset "utf-8";

/*タイトルエリア*/
.title {
    height: 310px;
    background-image: url(../../images/header_img/rs-yuri.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    flex-direction: column; /*  積み重なるように配置する */
    justify-content: center;     /* アイテムを中央に寄せる */
    align-items: center;    /* アイテムを中央付近にまとめる */
    color: #ffffff;
    text-shadow: 1px 1px 10px #cb30cb;
}

.title h1 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 32px;
    font-weight: bold;
    
}

/*h1の下の文(使用なし)*/
.title p {
    font-size: 17px;
    margin-top: 14px;
    max-width: 1200px;
    margin: 60px auto;
}

/*テキストエリアの余白を揃える*/
.feature-text {
    right: 100px;
    /*width: 930px;*/
    max-width: 90%;
    padding: 30px 60px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    
}

/*h2のスタイル設定*/
.feature-text h2 {
    font-size: 22px;
    font-weight: bold;

}

/*h2下線*/
.feature-text h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: #000000;
    margin-top: 20px;

}

/*h2下の文*/
.feature-text p {
    font-size: 15px;
    line-height: 28px;
    margin-top: 25px;
    
}

/*フッター*/
.footer {
    margin-top: 20px;
}

/*リンクボタン位置*/
.link-button-area {
    margin-top: 40px;
  }
  
  /*リンクボタン色*/
  .link-button {
    background-color: #ff77ff;
    display: inline-block;
    min-width: 250px;
    line-height: 48px;
    border-radius: 24px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    text-align: center;
    
  }

  /*リンクボタン色*/

.link-button:hover {
    background-color: #dd69dd;
  }

  .feature {
    display: block;
    width: 500px;
    margin-top: 45px;
}

    /*左右の余白リセット*/
.feature-text {
    margin-right: 0;
}

    /*同上*/
.reverse .feature-text {
    margin-left: 0;
}

    /*画像サイズ変更*/
.feature img {
    width: 100%;
    height: auto;
    margin-top: 25px;
}

  /*モバイル設定CSS*/
@media (max-width: 800px) {

    .feature {
        display: block;
        width: 500px;
        margin-top: 45px;
    }

        /*左右の余白リセット*/
    .feature-text {
        margin-right: 0;
        right: 100px;
        /*width: 930px;*/
        max-width: 90%;
        padding: 50px 30px;
        margin-top: 55px;
        margin-left: auto;
        margin-right: auto;
    }

        /*同上*/
    .reverse .feature-text {
        margin-left: 0;
    }

        /*画像サイズ変更*/
    .feature img {
        width: 100%;
        height: auto;
        margin-top: 25px;
    }

}