html,body{
    margin:0;
    padding: 0;
    background-color: #FDF6F7; /*背景色*/
}

/*---------------------------------
 グローバルセレクタ
---------------------------------*/
body{
    padding-top: 80px; /*ヘッダーの高さ分余白（次の要素がヘッダーに埋まる為）*/
}

a{
    color: #FFFFFF;
}

h2{
    color: #FF797E;
    font-family: 'Shippori Mincho';
    font-size: 26px;
    margin-top: 80px;
}

h3{
    color: #FF797E;
    font-size: 20px;
    font-family: 'Shippori Mincho';
    border-bottom: solid 1px #FF797E;
    margin-top: 80px;
    padding-bottom:5px
}

/*---------------------------------
  ぐっとーくヘッダー部分
---------------------------------*/
.gutalk_header{
    position: fixed;    /*ヘッダー部分を固定*/
    background: #fff;
    top: 0;             /*一番上に表示*/
    height: 80px;       /*ヘッダーの高さ*/
    width: 100%;
    z-index: 1000;      /*最前面に表示*/
    padding: 5px;
}
.gutalk_header h1{
    font-size: 11px;
    font-family: 'Noto Sans JP', sans-serif;
    color: #707070;
}
.header_logo{
    width: 185px;
    height: 40px;
}
.header_yoyakubtn{
    display: none; /*タブレット＆PC用のボタン 非表示*/
}

/*-----------------------------------------------------
    コンテンツ部分
------------------------------------------------------*/
.wrap{
    max-width: 480px;   /*テキスト幅の指定*/
    margin: 0 auto;
    padding: 10px;
    overflow-x: hidden;
    animation: fadeIn 2s ease 0s 1 normal;  /*フェードイン*/
    -webkit-animation: fadeIn 2s ease 0s 1 normal;  /*フェードイン*/
}

/*フェードイン*/
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

/*フェードイン*/
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

.main_title{
    text-align: center;
}
.main_title2{
    margin-top: 120px;
    margin-bottom: 40px;
    border-bottom: solid 2px #FF797E;
    padding-bottom:5px

}
.title_logo{
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center;
}
.privacy_policy_text{
    font-family: 'Noto Sans jp';
    font-size: 16px;
    color: #707070;
    line-height: 2;
}
.privacy_policy_text ol{
    font-weight: bold;
    color: #ff797e;
}
.privacy_policy_text ol li{
    margin: 20px 0;
}
.privacy_policy_text ul li,
.privacy_policy_text ul,
.privacy_policy_text p{
    margin: 0;
    color: #707070;
    font-weight: normal;
    list-style-type: disc;
}
p.margin_p{
    margin-top: -20px;
}
.rights_text{
    text-align: right;
}
ul.none li{
    list-style: none;
    padding: 0;
}
ul.kana{
    margin-left: -30px;
}
ul.kana li{
    margin-left: 60px;
}
.footer_logo{
    margin-top: 100px;
    margin-bottom: 100px;
    text-align: center;
}

/*-----------------------------------------------------
    フッター部分
------------------------------------------------------*/
footer{
    width: 100%;
    background: transparent linear-gradient(309deg, #FD9487 0%, #FFEDEB 100%) 0% 0% no-repeat padding-box;
}
.company{
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    padding: 50px 0 50px 0;
    text-align: center;
    line-height: 3;
    color: #FFFFFF;
    font-family: "Noto Sans Javanese";
}
.company p{
    margin-bottom: 50px;
}
.company ul{
    list-style: none;
    padding: 0;
}
.company a:visited{
    color: inherit;
}
.copyright{
    background: #FF797E;
    color: #FFFFFF;
    font-size: 12px;
    text-align: center;
    padding: 5px;
}
.reservation_btn{
    position: fixed;
    right: -20px;
    bottom: 10px;
    z-index: 999;
}
.reservation_btn img{
    width: 50%;
}
.reservation_btn:hover{
    opacity: 0.85 ;
}
/*---------------------------------
  404ページ
----------------------------------*/
.wrap_404 {
    text-align: center;
    margin-bottom: 120px;
}
.wrap_404 .privacy_policy_text{
        margin-bottom: 80px;
}
.wrap_404 a{
    background-color: #FD9487;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
}
/*-----------------------------------------------------
  画面サイズ600px以上の共通CSS
------------------------------------------------------*/
@media screen and (min-width:600px){
    .wrap{
        padding: 0; /*600px以上はwrapのpadding初期化*/
    }

    /*---------------------------------
     ヘッダ―共通
    ---------------------------------*/
    .header_text{
        position: relative; /*header_yoyakubtnの親要素とする*/
    }
    .header_yoyakubtn{
        display: block; /*ヘッダー内予約ボタン非表示 → 表示に切り替え*/
        position: absolute; /*header_textの子要素*/
        right: 20px;
        bottom: 0;
    }
    .header_logo{
        width: 185px;
        height: 40px;
    }
    .header_yoyakubtn img{
        width: 260px;
        height: 60px;
    }

    /*---------------------------------
     トップ画像
    ---------------------------------*/
    .mainview_img_sp{
        display: none !important; /*スマホ用のトップ画像非表示*/
    }
    .mainview_img_tb{
        display: block !important; /*タブレット～PC用のトップ画像表示*/
    }

    .reserve{
        display: none; /*トップ画像下の予約ボタン非表示*/
    }
    .absolute_text h3{
        font-size: 18px;
    }
    .absolute_text p{
        font-size: 16px;
    }

    /*---------------------------------
     footer内予約ボタン位置指定して表示
    ---------------------------------*/
    .company{
        position: relative; /*親要素*/
    }
    .reservation_btn{
        position: absolute; /*親要素を基準に配置*/
        bottom: 0;
    }
}

/*-----------------------------------------------------
  画面サイズ781px以上の場合
------------------------------------------------------*/
@media screen and (min-width:781px){
    .header_text{
        max-width: 980px;
        margin: 0 auto;
    }
    .wrap{
        max-width: 950px;
        padding: 20px;
    }
}
/*-----------------------------------------------------
  利用規約
------------------------------------------------------*/
.terms_text p{
    padding-bottom: 40px;
}
.terms_text ul{
    margin-left: -20px;
    margin-bottom:40px;
}
.terms_text ul li{
    margin-left: 40px;
}