@charset "UTF-8";
/* 共通部分
------------------------------- */
html {
    font-size: 62.5%;/*---エンドユーザーの指定を使う---*/
    scroll-behavior: smooth;/*HTML全体にスムーススクロールを適用した*/
}

body{
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
    line-height: 1.7;
    color: #432;
    margin-top: 60px;/*ヘッダーのぶんだけボディを下げます*/
    background-image: url(../images/kabegami-01.png);/*k壁紙・cssからみた画像の場所になるので注意*/
    background-repeat: repeat;
        max-width: 1120px;/*サイトの最大幅*/
}
a {/*---リンク下線の表示OFF---*/
    text-decoration: none;
}
img {
    max-width: 100%;/*---画像基本100％---*/
}
.yuji-boku-regular {/*グーグルフォント朴雄二*/
        font-family: "Yuji Boku", serif;
        font-weight: 400;
        font-style: normal;
      }


/*---レイアウト---*/
.wrapper {
    max-width: 1120px;/*サイトの最大幅*/
    margin: auto;/*要素をセンター合わせに*/
    padding: 0 1.5rem;/*上下ゼロ、左右を15px相当*/
    overflow:hidden;/*はみ出ているものを無視する*/

}

.align-center {/*この名前で囲んだ部分はセンター配置できるので使おう*/
    text-align: center;
}


/*固定ヘッダーここまで*/

.page-title {/*ページのタイトルの色と大きさ行ぞろえ*/
    /*メンテ用・background-color: aqua; */   
    color: #601e25;
    font-size: 2.5rem;
       border-style: solid;/*下線のスタイルは実線*/
       border-width: 4px 0px 4px 0px;/*下線つけた*/
       border-color: #92b809;   
        margin-top:30px;
        width: fit-content;/*ボーダーラインとテキストの幅をそろえる*/
        font-weight:bold;/*文字を太くした*/
 }     
      .menu a:hover {/*Menuをさわると色が変わる*/
            color: rgb(248, 8, 188);
      }

/*ここからＳＮＳ*/


.sns-eye-catch{
    margin-top: 50px;
    width: 80%;
}
 
.sns-alea {
    margin-bottom: 20px;
    width: 80%;/*SNS・エリアの横幅*/
     text-align :center;
     font-size:1.8rem;
     padding-top:1.0rem;
     height: 550px;
     background-color: #c9fcb7;
     background-image: url(../images/photo-x.png);
     background-size: 400px;
     background-position: center;
        border-top-left-radius: 40px;/*角を丸くする*/
        border-top-right-radius: 40px;
        border-bottom-right-radius: 40px;
        border-bottom-left-radius: 40px;
        border: dashed 3px #ffffff;/*縁かざり点線*/
        box-shadow: 0px 0px 0px 10px #c9fcb7;/*縁のさらに外側*/
 }

.coment-p{
    font-size:1.5rem;
        margin-bottom: 170px;

}


.page-footer {/*フッター
     background-color: rgb(48, 2, 215);*/
     color: rgb(255, 0, 0);
     text-align: center;
     margin-top: 40px;
     padding-bottom: 10px;
     font-size:1.5rem;
     opacity: .5;
         position: fixed; /* ← fixedで固定する */
    bottom:  0; /* 下部から配置の基準位置を決める */
    left: 0; /* 左から配置の基準位置を決める */
    width: 100%; 
}



/* ------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------
デスクトップ版
--------------------------------------------------------------------------------------------------------------- */
@media (min-width: 800px) {
     /* 見出し */
    body {
        margin-top: 50px; /* ヘッダーの高さ分の余白をいれ、後ろの要素が隠れないようにする */
   }
 

  .page-title {/*ページのタイトルの色と大きさ行ぞろえ*/
    font-size: 3rem;/*大きくした*/
      border-width: 6px 0px 6px 0px;/*下線太らせた*/
        margin-top:50px;
 }        
 

} /*←メディアアクリの閉じ*/