.concept {
    color: #3c2f2f;
    text-align: center;
    padding: 3rem 1rem;
    animation: fadeInUp 1s ease forwards;
}

.concept h2 {
    font-size: 22px;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.concept p {
    font-size: 16px;
    line-height: 2;
    opacity: 0.8;
    font-family: "Noto Sans JP", system-ui, sans-serif;
}

@media (max-width: 900px) {
    .concept p {
        text-align: justify;
    }
}

.movie-collection {
    padding: 7rem 2rem;
    text-align: center;
    color: #2e1e1a;
}

.movie-collection h2 {
    font-size: 22px;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    justify-items: center;
}

.movie-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    width: 100%;
    max-width: 360px;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
}

.movie-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.movie-info {
    padding: 1.4rem 1.6rem 2rem;
}

.movie-tags {
    margin-bottom: 0.8rem;
}

.tag {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    margin-right: 0.4rem;
    letter-spacing: 0.05em;
    color: #fff;
}

.tag.new {
    background: #b89a67;
}

.tag.popular {
    background: #4a4a4a;
}

.tag.collab {
    background: #687b52;
}

.movie-info h3 {
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    margin-bottom: 0.6rem;
}

.price {
    font-size: 1rem;
    font-weight: 600;
    color: #2b1d1a;
    margin-bottom: 1rem;
}

.price span {
    font-size: 0.85rem;
    color: #7d6a5a;
    margin-left: 0.3rem;
}

.btn-detail {
    font-size: 0.9rem;
    color: #6b4c3a;
    font-weight: 500;
    border-bottom: 1px solid #b89a67;
    padding-bottom: 0.1rem;
    transition: color 0.3s, border-color 0.3s;
}

.btn-detail:hover {
    color: #b89a67;
    border-color: #d4b07c;
}

@media (max-width: 768px) {
    .movie-collection {
        padding: 5rem 1.5rem;
    }
    .movie-card {
        max-width: 100%;
    }
    .movie-info {
        padding: 1.2rem 1.2rem 1.8rem;
    }
}

.movie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* PCでは3列 */
    gap: 2.5rem;
    justify-items: center;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .movie-grid {
        grid-template-columns: repeat(2, 1fr);
        /* タブレットでは2列 */
    }
}

@media (max-width: 768px) {
    .movie-grid {
        grid-template-columns: 1fr;
        /* スマホは1列 */
        gap: 2rem;
    }
}

.features {
    background: #fffaf8;
    padding: 5rem 2rem;
    text-align: center;
    color: #2e1e1a;
}

.features h2 {
    font-size: 22px;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-item {
    background: #fff;
    border-radius: 12px;
    padding: 2.4rem 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.feature-item h3 {
    font-size: 1.15rem;
    color: #3d2c24;
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
}

.feature-item p {
    font-size: 0.95rem;
    color: #66584f;
    line-height: 1.7;
    letter-spacing: 0.03em;
    font-family: "Noto Sans JP", system-ui, sans-serif;
    text-align: justify;
}

@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.flow-section {
    background: #fffaf8;
    padding: 5rem 2rem;
    color: #2f2723;
    text-align: center;
}

.flow-section h2 {
    font-size: 22px;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.flow-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    padding-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flow-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.flow-img img {
    width: 100%;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    display: block;
}

.flow-tag {
    display: inline-block;
    margin-top: 1.5rem;
    background: #e3c9aa;
    color: #4a372c;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.8rem;
    border-radius: 9999px;
}

.flow-item h3 {
    margin-top: 1rem;
    font-size: 1.15rem;
    color: #3d2c24;
}

.flow-item p {
    font-size: 0.95rem;
    color: #66584f;
    line-height: 1.7;
    margin-top: 0.5rem;
    padding: 0 1.5rem;
    font-family: "Noto Sans JP", system-ui, sans-serif;
    text-align: justify;
}

.feature-item p,
.flow-item p {
    font-size: 15px;
}

@media (max-width: 900px) {
    .flow-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .feature-item p,
    .flow-item p {
        text-align: justify;
    }
}

.pricing-section {
    background: #fdfaf8;
    color: #333;
    padding: 6rem 1.5rem;
}

.pricing-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 22px;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.section-desc {
    font-size: 1rem;
    color: #666;
    margin-bottom: 3rem;
    font-family: "Noto Sans JP", system-ui, sans-serif;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.price-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    transition: transform 0.3s ease;
}

.price-item:hover {
    transform: translateY(-5px);
}

.price-item h3 {
    font-size: 1.1rem;
    color: #4a403b;
    margin-bottom: 0.6rem;
    letter-spacing: 0.05em;
}

.price {
    font-size: 1.8rem;
    font-weight: 600;
    color: #b88656;
    margin-bottom: 0.4rem;
}

.price span {
    font-size: 0.8rem;
    color: #777;
}

.note {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    text-align: justify;
    font-family: "Noto Sans JP", system-ui, sans-serif;
}

.price-note {
    margin-top: 3rem;
    font-size: 0.85rem;
    color: #777;
    line-height: 1.8;
    font-family: "Noto Sans JP", system-ui, sans-serif;
}

.faq-memorio-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 1.5rem;
    font-family: "Noto Sans JP", sans-serif;
}

.faq-memorio-title {
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    color: #333;
}

.faq-memorio-item {
    background: #f6f6f6;
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-memorio-question {
    width: 100%;
    text-align: left;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: #222;
    transition: background 0.3s;
}

.faq-memorio-question:hover {
    background: #f0f0f0;
}

.faq-memorio-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    font-size: 0.9rem;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}

.faq-memorio-icon.answer {
    background: #ff6f91;
    margin-right: 8px;
}

.faq-memorio-answer {
    display: none;
    padding: 1rem 1.8rem 1.5rem;
    background: #fff;
    border-top: 1px solid #e4e4e4;
    line-height: 1.8;
    color: #333;
}

.faq-memorio-item.open .faq-memorio-answer {
    display: flex;
    align-items: flex-start;
}

.faq-memorio-toggle {
    font-size: 1.3rem;
    margin-left: auto;
    color: #555;
    transition: transform 0.3s;
}

.faq-memorio-item.open .faq-memorio-toggle {
    transform: rotate(180deg);
}

/* =======================================
   MEMORIO お問い合わせフォームデザイン
   ======================================= */

.contact-memorio-section {
    background: #fffaf7;
    padding: 6rem 2rem;
    text-align: center;
    color: #2e1e1a;
    font-family: "Noto Sans JP", sans-serif;
}

.contact-memorio-title {
    font-size: 22px;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.contact-memorio-lead {
    color: #66584f;
    font-size: 0.95rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* ---------- Form ---------- */

.contact-memorio-form {
    background: #fff;
    max-width: 640px;
    margin: 0 auto;
    padding: 2.8rem 2.2rem;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.contact-memorio-group {
    margin-bottom: 1.6rem;
}

.contact-memorio-group label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #3d2c24;
}

.contact-memorio-group label span {
    color: #e46c6c;
    margin-left: 4px;
}

.contact-memorio-group input,
.contact-memorio-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #faf8f7;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-memorio-group input:focus,
.contact-memorio-group textarea:focus {
    border-color: #b89a67;
    box-shadow: 0 0 0 3px rgba(184, 154, 103, 0.15);
    outline: none;
}

/* ---------- ボタン ---------- */

.contact-memorio-btn {
    display: inline-block;
    background: linear-gradient(90deg, #b89a67, #9e8251);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.08em;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 9999px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.contact-memorio-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ---------- エラーメッセージ ---------- */

.contact-memorio-error {
    background: #fff2f2;
    border: 1px solid #ffb3b3;
    color: #c33;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: left;
    font-size: 0.9rem;
}

.contact-memorio-error ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ---------- 補足テキスト ---------- */

.contact-memorio-note {
    font-size: 0.85rem;
    color: #777;
    margin-top: 1rem;
    text-align: center;
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
    .contact-memorio-form {
        padding: 2rem 1.2rem;
    }
}

/* ================================
   お問い合わせ完了ページ
   ================================ */

#contact-thanks {
    text-align: center;
    background: #fffaf7;
    padding: 6rem 2rem;
}

.contact-memorio-thanks-icon {
    margin: 2.5rem auto 2.5rem;
    width: 140px;
    height: 140px;
}

.contact-memorio-thanks-icon img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.08));
    animation: fadeUp 1.2s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-memorio-btn {
    margin-top: 1rem;
    display: inline-block;
    background: linear-gradient(90deg, #b89a67, #9e8251);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.08em;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 9999px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.contact-memorio-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-memorio-thanks-icon {
        width: 100px;
        height: 100px;
    }
}

.movie-detail-section {
    background: #fffaf7;
    padding: 2rem 6px;
    color: #3d2c24;
}

.movie-detail-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.movie-title {
    font-size: 22px;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.movie-video {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.movie-video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* ← 16:9（9 ÷ 16 = 0.5625） */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.movie-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.movie-description {
    margin-top: 2rem;
    font-size: 1rem;
    line-height: 1.9;
    text-align: left;
}

.movie-photo-count {
    margin-top: 1.5rem;
    font-weight: bold;
    color: #7b5e43;
}

.movie-points {
    margin-top: 4rem;
}

.point-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.point-item {
    background: #fff;
    border-radius: 10px;
    padding: 1.8rem 1.2rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.point-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.point-item p {
    font-size: 0.95rem;
    color: #4a3c34;
}

.movie-info {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
}

.movie-cta {
    margin-top: 4rem;
}

.movie-btn {
    background: linear-gradient(90deg, #b89a67, #9e8251);
    color: #fff;
    border-radius: 9999px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.movie-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.movie-spec-section {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    padding: 3rem 2rem;
    color: #3d2c24;
    max-width: 800px;
    margin: 4rem auto;
    font-family: "Noto Sans JP", sans-serif;
    text-align: justify;
}

.movie-spec-lead {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #4b3a31;
}

.movie-spec-item {
    border-top: 1px solid #e8e1db;
    padding: 1.5rem 0;
}

.movie-spec-item:first-of-type {
    border-top: none;
}

.movie-spec-icon {
    font-size: 1.4rem;
    color: #b89a67;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0.3rem;
}

.movie-spec-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #3d2c24;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.movie-spec-item p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #4a403b;
}

.movie-spec-item ul {
    margin: 0.5rem 0 0.5rem 1.2rem;
    padding: 0;
}

.movie-spec-item ul li {
    list-style: none;
    font-size: 0.9rem;
    line-height: 1.8;
    color: #4a403b;
}

.movie-spec-sub {
    font-weight: 600;
    color: #7b5e43;
    margin-top: 0.5rem;
}

.movie-spec-item small {
    display: block;
    font-size: 0.8rem;
    color: #777;
    margin-top: 0.4rem;
}

@media (max-width: 768px) {
    .movie-spec-section {
        padding: 2rem 1.2rem;
    }
    .movie-spec-item h3 {
        font-size: 0.95rem;
    }
}

.movie-cta-fixed {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: calc(100% - 2rem);
    max-width: 400px;
    text-align: center;
}

.movie-cta-fixed .movie-btn {
    display: inline-block;
    background: linear-gradient(90deg, #b89a67, #9e8251);
    color: #fff;
    border-radius: 9999px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.05em;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.movie-cta-fixed .movie-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* スマホ最適化 */

@media (max-width: 768px) {
    .movie-cta-fixed {
        bottom: 1rem;
        width: calc(100% - 1.5rem);
    }
    .movie-cta-fixed .movie-btn {
        width: 100%;
        padding: 1rem 0;
        font-size: 1rem;
    }
}
