#main{
    max-width: 1000px;
    margin: 0 auto;
}
.instaicon{
    text-align: center;
}
#main h2{
    font-family: 'Grand Hotel', cursive;
    margin-top: 0;
    text-align: center;
}
#main a{
    text-decoration: none;
}
.photo_flex img{
    width: 100%;
}
.photo_flex{
    display: none;
}
@media(min-width:768px){
.photo_flex{
    display: flex;
    align-items: center;
    justify-content: center;
}
    .review_insta{
        display: none;
    }
}
.name{
    text-align: right;
}
.blog_link{
    display: block;
    font-size: .8em;
    color: #555;
    border: 1px solid #aaa;
    text-align: center;
    width: 16rem;
    line-height: 2em;
    margin: 0em 0 2em auto;
}
.cp_box *, .cp_box *:before, .cp_box *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.cp_box {
    position: relative;
    margin-top: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.cp_box label {
    position: absolute;
    z-index: 1;
    bottom: 0;
    width: 100%;
    height: 140px; /* グラデーションの高さ */
    cursor: pointer;
    text-align: center;
    /* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    margin-bottom: 0;
    border-radius: 30px;
}
.cp_box input:checked + label {
    background: inherit; /* 開いた時にグラデーションを消す */
}
.cp_box label:after {
    line-height: 2.5rem;
    position: absolute;
    z-index: 2;
    bottom: 20px;
    left: 50%;
    width: 16rem;
/*    font-family: "Font Awesome 5 Free";*/
/*    content: '\f13a'' 続きをよむ';*/
    content: '続きをよむ';
/*    font-weight: 400;*/
    transform: translate(-50%, 0);
    letter-spacing: 0.05em;
    color: #ffffff;
    border-radius: 20px;
    background-color: rgba(27, 37, 56, 1);
}
.cp_box input {
    display: none;
}
.cp_box .cp_container {
    overflow: hidden;
    height: 250px; /* 開く前に見えている部分の高さ */
    transition: all 0.5s;
    border: 1px solid #ccc;
    padding: 1em;
    border-radius: 30px;
    color: #555;
}
.cp_box input:checked + label {
    /* display: none ; 閉じるボタンを消す場合解放 */
}
.cp_box input:checked + label:after {
/*
    font-family: "Font Awesome 5 Free";
    content: '\f139'' 閉じる';
*/
    content: '閉じる';
/*    font-weight: 400;*/
}
.cp_box input:checked ~ .cp_container {
    height: auto;
    padding-bottom: 80px; /* 閉じるボタンのbottomからの位置 */
    transition: all 0.5s;
}