@charset "utf-8";
/* CSS Document */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
			width: auto;
            height: 100%;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }

        .title {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .content {
            margin-bottom: 20px;
        }

        textarea {
            width: 100%;
            overflow: visible; /* スクロールバーを表示 */
            resize: none; /* ユーザーによるリサイズを無効化 */
            height: 100%; /* 初期の高さは自動 */
            border: none;
			font-size: 12px;			
        }

        .image-section {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 10px;
        }

        .image-section img {
            max-width: calc(40% - 10px);
            height: auto;
            margin-bottom: 10px;
			margin:auto;
        }

        .link-section .link {
            display: inline-block;
            margin-right: 10px;
            color: blue;
            text-decoration: none;
        }

        a:link {          
			text-decoration: none;
        }

        a:hover {          
			text-decoration: underline;
			color:#777373;
        }

        .navigation {
            margin-top: 20px;
			display:inline-flex;
			width: 100%;
			height: 50px;
            justify-content: center;
            align-items: center;
        }

        .navigation a {
            margin-right: 0px;
        }

        .footer {
            margin-top: 20px;
            text-align: center;
			font-size: 12px;
        }

        /* レスポンシブデザイン */
        @media screen and (max-width: 480px) {
            .container {
                padding: 10px;
            }

            .image-section img {
                max-width: 100%;
                margin-right: 0;
            }
			.navigation {
            margin-top: 20px;
			display:inline-flex;
            justify-content: center;
            align-items: center;
        }
        }
.recommendation-list {
    width: calc(90% + 20px);
    overflow-x: scroll;
    white-space: nowrap;
}

.recommendation-item {
    display: inline-block;
    width: 100px;
    margin-right: 10px;
}

.recommendation-item .thumbnail {
    width: 80px;
    height: 80px;
    overflow: hidden;
    position: relative;
}

.recommendation-item .thumbnail img {
    width: auto;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.recommendation-item .caption {
    font-size: 10px;
    margin-top: 5px;
    text-align: center;
    white-space: normal;
    max-height: 2.6em;
    line-height: 1.3em;
    overflow: hidden;
}

        .back-to-top {
            display: none;
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background-color: #333;
            color: #fff;
            text-align: center;
            line-height: 40px;
            border-radius: 50%;
            cursor: pointer;
        }

        .back-to-top.show {
            display: block;
            animation: fadeIn 0.3s;
        }
  #printButton {
    padding: 10px;
	margin-right: 1px;
    background-color: #676967;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  #editButton {
    padding: 10px;
    background-color: #676967;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
.printout{
	display: none;
}