/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'メイリオ', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff5f7;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffccd5' fill-opacity='0.3' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-container {
    width: 100%;
    max-width: 1980px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ヘッダー */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* ヘッダートップバー */
.header-top {
    background-color: #333;
    color: #fff;
    padding: 12px 0;
    font-size: 0.85rem;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
}

.header-contact-info {
    display: flex;
    gap: 20px;
}

.header-contact-info a {
    color: #fff;
}

.header-contact-info i {
    margin-right: 5px;
    color: #e63946;
}

.header-social {
    display: flex;
    gap: 15px;
}

.header-social a {
    color: #fff;
    transition: transform 0.3s;
}

.header-social a:hover {
    color: #e63946;
    transform: translateY(-2px);
}

/* ヘッダーメイン部分 */
.header-main {
    padding: 15px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ロゴ */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: auto;
    max-height: 60px;
    width: auto;
    display: block;
    transition: transform 0.3s;
}

.logo a:hover .logo-img {
    transform: scale(1.03);
}

.logo-placeholder {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e63946;
    background-color: #f8f8f8;
    padding: 10px 20px;
    border-radius: 5px;
    border: 2px solid #e63946;
}

/* メインナビゲーション */
.main-nav ul {
    display: flex;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-item a {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    padding: 10px 0;
    position: relative;
}

.nav-item a:hover {
    color: #e63946;
}

.nav-item.active a {
    color: #e63946;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e63946;
    transition: width 0.3s;
}

.nav-item:hover a::after,
.nav-item.active a::after {
    width: 100%;
}

/* ドロップダウンメニュー */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 10;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    padding: 8px 20px;
    display: block;
    font-weight: 500;
    white-space: nowrap;
    font-size: 0.9rem;
}

.dropdown-menu li a:hover {
    background-color: #f5f5f5;
}

/* モバイル専用応募ボタン */
.mobile-apply-btn {
    display: none;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

.menu-toggle:hover {
    color: #e63946;
}

/* メインコンテンツ */
main {
    padding: 0;
}

/* メインコンテンツの余白 */
.main-content {
    padding-top: 0;
}

/* ヒーロー画像のスタイル */
.hero {
    text-align: center;
    margin-bottom: 0;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    max-height: 650px;
    background-color: #ffeef2;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
    object-fit: cover;
    max-height: 650px;
    margin: 0;
    filter: brightness(1.05) saturate(1.1);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, rgba(255, 245, 247, 0) 0%, rgba(255, 245, 247, 0.8) 70%, rgba(255, 245, 247, 1) 100%);
    pointer-events: none;
    z-index: 2;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #e63946;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ヒーロー画像スライダー */
.hero-slider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    position: relative;
}

.hero-slide img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
    object-fit: cover;
    max-height: 650px;
    margin: 0;
    filter: brightness(1.05) saturate(1.1);
}

/* フッター */
footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0 15px;
    font-size: 0.9rem;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    flex: 0 0 auto;
    margin-right: 20px;
}

.footer-logo-img {
    height: auto;
    max-height: 40px;
    display: block;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-logo a:hover .footer-logo-img {
    opacity: 1;
}

.footer-nav {
    flex: 1 1 auto;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.footer-menu li a {
    color: #ccc;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-menu li a:hover {
    color: #e63946;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-left: 20px;
}

.footer-social a {
    color: #ccc;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    color: #e63946;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: #aaa;
}

.age-restriction {
    color: #e63946;
    font-weight: 500;
    margin-left: 10px;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {

    /* ヘッダートップバー */
    .header-top {
        display: none;
        /* モバイルでは非表示 */
    }

    /* ヘッダーメイン */
    .header-main {
        padding: 10px 0;
    }

    .header-main .container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        position: relative;
        padding: 10px 15px;
    }

    .logo {
        margin: 0;
        max-width: 80%;
        z-index: 2;
    }

    .logo-img {
        max-height: 50px;
    }

    /* モバイル専用応募ボタン */
    .mobile-apply-btn {
        display: block;
        position: absolute;
        top: 100%;
        right: 15px;
        margin-top: 10px;
        z-index: 98;
    }

    .mobile-apply-link {
        display: flex;
        align-items: center;
        gap: 6px;
        background: linear-gradient(135deg, #e63946, #f77f85);
        color: #fff;
        padding: 10px 16px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 0.9rem;
        text-decoration: none;
        box-shadow: 0 3px 10px rgba(230, 57, 70, 0.3);
        transition: all 0.3s;
        white-space: nowrap;
    }

    .mobile-apply-link:hover {
        background: linear-gradient(135deg, #d62d3a, #e63946);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
        color: #fff;
    }

    .mobile-apply-link i {
        font-size: 1rem;
    }

    /* モバイル用ヒーロー調整 */
    .hero {
        max-height: none;
        padding-bottom: 30px;
    }

    .hero-img {
        height: auto;
        max-height: none;
        object-fit: contain;
    }

    .hero::after {
        height: 60px;
    }

    /* メインコンテンツの余白調整 */
    .main-content {
        padding-top: 0;
    }

    .concept-section {
        padding: 40px 0 20px;
    }

    /* メニュートグルボタン */
    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        color: #333;
        z-index: 3;
        transition: all 0.3s;
    }

    .menu-toggle:hover {
        color: #e63946;
    }

    /* メインナビゲーション */
    .main-nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 5;
        padding: 10px 0;
        border-top: 1px solid #eee;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out;
    }

    .main-nav.active {
        display: block;
        max-height: 500px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 15px;
    }

    .nav-item {
        width: 100%;
    }

    .nav-item a {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        font-size: 1.1rem;
        display: block;
        width: 100%;
    }

    .nav-item:last-child a {
        border-bottom: none;
    }

    .nav-item a::after {
        display: none;
    }

    /* フッター */
    .footer-main {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-logo {
        margin-right: 0;
    }

    .footer-menu {
        justify-content: center;
        gap: 12px 20px;
    }

    .footer-social {
        margin-left: 0;
    }

    .works-slider-section {
        margin: 0;
        padding: 10px 0 20px;
    }
}

/* スマートフォン向けの調整 */
@media (max-width: 480px) {
    .logo-img {
        max-height: 40px;
    }

    .header-main .container {
        padding: 8px 10px;
    }

    /* モバイル専用応募ボタン（480px以下） */
    .mobile-apply-btn {
        right: 10px;
        margin-top: 8px;
    }

    .mobile-apply-link {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .main-nav.active {
        max-height: 400px;
    }

    /* スマートフォン用ヒーロー調整 */
    .hero {
        max-height: none;
        padding-bottom: 20px;
    }

    .hero-img {
        height: auto;
        max-height: none;
        object-fit: contain;
    }

    .hero::after {
        height: 40px;
    }

    .main-content {
        padding-top: 0;
    }

    .concept-section {
        padding: 30px 0 20px;
    }

    /* メニュートグルボタン */
    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        color: #333;
        z-index: 3;
        transition: all 0.3s;
    }

    .menu-toggle:hover {
        color: #e63946;
    }

    /* メインナビゲーション */
    .main-nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 5;
        padding: 10px 0;
        border-top: 1px solid #eee;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out;
    }

    .main-nav.active {
        display: block;
        max-height: 400px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 15px;
    }

    .nav-item {
        width: 100%;
    }

    .nav-item a {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        font-size: 1.1rem;
        display: block;
        width: 100%;
    }

    .nav-item:last-child a {
        border-bottom: none;
    }

    .nav-item a::after {
        display: none;
    }

    /* フッター */
    .footer-main {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-logo {
        margin-right: 0;
    }

    .footer-menu {
        justify-content: center;
        gap: 12px 20px;
    }

    .footer-social {
        margin-left: 0;
    }

    .works-slider-section {
        margin: 0;
        padding: 10px 0 20px;
    }
}

/* タブレット向けの調整 */
@media (min-width: 481px) and (max-width: 768px) {
    .logo-img {
        max-height: 45px;
    }

    .main-nav.active {
        max-height: 450px;
    }
}

/* コンセプトセクション */
.concept-section {
    padding: 40px 0 50px;
    position: relative;
    overflow: visible;
    background-color: transparent;
    z-index: 1;
    margin-top: 50px;
}

.concept-section::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: #fff5f7;
    border: 3px solid #ffb6c1;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.3);
}

.concept-section::after {
    content: '♡';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: #ff85a1;
    z-index: 3;
}

/* コンセプトタイトル */
.concept-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.concept-title-main {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff85a1;
    margin-bottom: 5px;
    transform: rotate(-2deg);
    display: inline-block;
    text-shadow: 2px 2px 0 #ffffff, -2px 2px 0 #ffffff, 2px -2px 0 #ffffff, -2px -2px 0 #ffffff;
}

.concept-title-sub {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: #9e9e9e;
    letter-spacing: 0.2em;
}

/* コンセプトバブル */
.concept-bubbles {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.concept-bubble {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
    transition: all 0.5s ease;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.concept-bubble:hover {
    transform: scale(1.05) translateY(-10px);
}

.bubble-1 {
    background: linear-gradient(135deg, #ff85a1, #ffa3b5);
    animation: float 6s ease-in-out infinite;
}

.bubble-2 {
    background: linear-gradient(135deg, #8896f2, #b9c4fe);
    animation: float 7s ease-in-out infinite 1s;
}

.bubble-3 {
    background: linear-gradient(135deg, #a5dff9, #89c7f5);
    animation: float 8s ease-in-out infinite 2s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.bubble-content {
    padding: 15px;
}

.bubble-content i {
    font-size: 2rem;
    margin-bottom: 8px;
    display: block;
}

.bubble-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.bubble-content p {
    font-size: 0.9rem;
    line-height: 1.3;
}

/* コンセプトメッセージ */
.concept-message {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 30px;
    position: relative;
    background-color: transparent;
    border-radius: 20px;
}

.concept-message:before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 6rem;
    color: rgba(255, 133, 161, 0.2);
    font-family: serif;
    line-height: 1;
}

.concept-message:after {
    content: '"';
    position: absolute;
    bottom: -55px;
    right: 20px;
    font-size: 6rem;
    color: rgba(255, 133, 161, 0.2);
    font-family: serif;
    line-height: 1;
}

.concept-message p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    position: relative;
    z-index: 2;
}

/* コンセプトカード */
.concept-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.concept-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.concept-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.08);
}

.concept-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(255, 255, 255, 0) 60%);
    z-index: -1;
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: #e63946;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.concept-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.concept-card p {
    color: #666;
    line-height: 1.6;
}

/* コンセプトCTA */
.concept-cta {
    text-align: center;
    position: relative;
    padding: 20px 0;
}

.btn-concept {
    display: inline-block;
    padding: 15px 35px;
    background-color: #ff85a1;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(255, 133, 161, 0.3);
}

.btn-concept:hover {
    background-color: #ff6b8b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 133, 161, 0.4);
}

.btn-concept i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-concept:hover i {
    transform: translateX(5px);
}

.concept-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    z-index: -1;
}

.shape-1 {
    width: 60px;
    height: 60px;
    background-color: #ffa3b5;
    top: -10px;
    left: 20%;
    animation: floatShape 8s ease-in-out infinite;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background-color: #b9c4fe;
    bottom: 20px;
    right: 25%;
    animation: floatShape 10s ease-in-out infinite 1s;
}

.shape-3 {
    width: 40px;
    height: 40px;
    background-color: #a5dff9;
    bottom: -10px;
    left: 35%;
    animation: floatShape 7s ease-in-out infinite 2s;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(-15px, 15px) rotate(90deg);
    }

    50% {
        transform: translate(0, 30px) rotate(180deg);
    }

    75% {
        transform: translate(15px, 15px) rotate(270deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .concept-title-main {
        font-size: 2rem;
    }

    .concept-section {
        padding: 40px 0 20px;
    }

    .concept-title {
        margin-bottom: 30px;
    }

    .concept-bubbles {
        gap: 15px;
        margin-bottom: 40px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .concept-bubble {
        width: 100%;
        height: 130px;
        box-sizing: border-box;
    }

    .bubble-content i {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }

    .bubble-content h3 {
        font-size: 1rem;
        margin-bottom: 3px;
    }

    .bubble-content p {
        font-size: 0.8rem;
        line-height: 1.2;
    }

    .concept-message {
        padding: 20px;
        margin-bottom: 40px;
    }

    .concept-message p {
        font-size: 1rem;
    }

    .concept-cards {
        gap: 20px;
        margin-bottom: 40px;
    }

    .concept-card {
        padding: 25px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 600px) {
    .concept-bubbles {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .concept-bubble {
        height: 120px;
    }

    .bubble-3 {
        grid-column: span 2;
        width: 70%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .concept-title-main {
        font-size: 1.8rem;
    }

    .concept-section {
        padding: 30px 0 20px;
    }

    .concept-title {
        margin-bottom: 25px;
    }

    .concept-bubbles {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-bottom: 30px;
    }

    .concept-bubble {
        width: 110px;
        height: 110px;
        font-size: 0.8rem;
    }

    .bubble-content {
        padding: 10px;
    }

    .bubble-content i {
        font-size: 1.3rem;
        margin-bottom: 4px;
    }

    .bubble-content h3 {
        font-size: 0.9rem;
        margin-bottom: 2px;
    }

    .bubble-content p {
        font-size: 0.7rem;
        line-height: 1.1;
    }

    .concept-message {
        padding: 15px;
        margin-bottom: 30px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    }

    .concept-message:before,
    .concept-message:after {
        font-size: 4rem;
    }

    .concept-message p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .concept-message p br {
        display: none;
    }

    .concept-cards {
        gap: 15px;
        margin-bottom: 30px;
    }

    .concept-card {
        padding: 20px 15px;
    }

    .card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .concept-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .concept-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .btn-concept {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* 販売サイト遷移バナー */
.sales-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 99;
    width: 220px;
    animation: fadeInRight 0.5s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }
}

.sales-link {
    display: flex;
    align-items: center;
    color: white;
    padding: 12px 15px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border-left: 5px solid transparent;
}

.cta-primary {
    background-color: #e63946;
    border-left-color: #c1121f;
    position: relative;
    animation: pulse 2s infinite;
}

.cta-primary::after {
    content: 'NEW';
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #ffb703;
    color: #333;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.cta-secondary {
    background-color: #457b9d;
    border-left-color: #1d3557;
}

.cta-tertiary {
    background-color: #2a9d8f;
    border-left-color: #264653;
}

.cta-icon {
    font-size: 1.3rem;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
}

.cta-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.cta-main {
    font-size: 1rem;
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}

.cta-sub {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
    display: block;
}

.cta-arrow {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.sales-link:hover {
    transform: translateX(-8px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

.cta-primary:hover {
    background-color: #d32d3a;
}

.cta-secondary:hover {
    background-color: #3a6a88;
}

.cta-tertiary:hover {
    background-color: #228a7d;
}

.sales-link:hover .cta-arrow {
    transform: translateX(3px);
    opacity: 1;
}

/* スマートフォン対応 */
@media (max-width: 480px) {
    .sales-banner {
        bottom: 15px;
        right: 15px;
        gap: 6px;
        width: 180px;
    }

    .cta-primary::after {
        font-size: 0.6rem;
        padding: 2px 5px;
        top: -8px;
        right: -8px;
    }

    .sales-link {
        padding: 8px 12px;
    }

    .cta-icon {
        font-size: 1.1rem;
        margin-right: 8px;
    }

    .cta-main {
        font-size: 0.9rem;
    }

    .cta-sub {
        font-size: 0.7rem;
    }
}

.badge-blink::after {
    background-color: #fb8500;
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

/* FAQセクション */
.faq-section {
    padding: 60px 0;
    background-color: transparent;
    position: relative;
    margin-top: 20px;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 30' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C300,30 600,30 1200,0 L1200,30 L0,30 Z' fill='%23ffeef2'/%3E%3C/svg%3E");
    background-size: 100% 100%;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
    position: relative;
    font-weight: 700;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #ff85a1;
    margin: 15px auto 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 133, 161, 0.1);
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(255, 133, 161, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
    font-weight: 600;
    flex: 1;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #ff85a1;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    background-color: #ffeef2;
}

.faq-answer p {
    margin: 0;
    padding-bottom: 20px;
    line-height: 1.6;
    color: #666;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-question {
    background-color: #fff5f7;
    border-bottom: 1px solid rgba(255, 133, 161, 0.1);
}

.faq-more {
    text-align: center;
    margin-top: 30px;
}

.cta-btn {
    display: inline-block;
    padding: 0.85em 5em;
    background: linear-gradient(90deg, #ff5fa2 0%, #ff4081 50%, #ff8eb3 100%);
    color: #fff !important;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.15em;
    border: none;
    box-shadow: 0 6px 24px rgba(255, 64, 129, 0.28), 0 1.5px 0 #fff3 inset;
    transition: background 0.25s, box-shadow 0.22s, transform 0.12s;
    text-align: center;
    letter-spacing: 0.08em;
    outline: none;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
}

.cta-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.08) 100%);
    opacity: 0.55;
    pointer-events: none;
    border-radius: 12px;
}

.cta-btn:hover,
.cta-btn:focus {
    background: linear-gradient(90deg, #ff4081 0%, #ff5fa2 50%, #ff8eb3 100%);
    box-shadow: 0 10px 32px rgba(255, 64, 129, 0.33), 0 2px 8px rgba(255, 255, 255, 0.10) inset;
    color: #fff !important;
    transform: translateY(-3px) scale(1.06);
    text-decoration: none !important;
}

.cta-btn:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(255, 64, 129, 0.13);
}


.btn-more {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff85a1;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 133, 161, 0.3);
}

.btn-more:hover {
    background-color: #ff6b8b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 133, 161, 0.4);
}

.btn-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-more:hover i {
    transform: translateX(5px);
}

/* 最新ニュースセクション */
.news-section {
    padding: 60px 0;
    background-color: transparent;
    position: relative;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 30' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C300,30 600,30 1200,0 L1200,30 L0,30 Z' fill='%23ffeef2'/%3E%3C/svg%3E");
    background-size: 100% 100%;
}

.news-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 30px;
    margin-bottom: 40px;
    /* 6つの記事を確実に2列×3行で配置 */
    max-width: 100%;
    grid-auto-flow: row;
    /* 2列×3行を強制 */
    grid-auto-rows: auto;
}

/* 6件以上のニュースカードがある場合は6件目以降を非表示 */
.news-container .news-card:nth-child(n+7) {
    display: none;
}

.news-card {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(255, 133, 161, 0.1);
    /* 各カードの高さを統一 */
    min-height: 400px;
    /* グリッドアイテムとしての配置を明確に */
    grid-column: auto;
    grid-row: auto;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 133, 161, 0.15);
}

.news-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ff85a1;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 3px 8px rgba(255, 133, 161, 0.3);
}

.news-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
    display: block;
}

.news-title {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 600;
    transition: color 0.3s ease;
}

.news-card:hover .news-title {
    color: #ff85a1;
}

.news-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.news-link {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    color: #ff85a1;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.news-link i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.news-link:hover {
    color: #ff6b8b;
}

.news-link:hover i {
    transform: translateX(4px);
}

.news-more {
    text-align: center;
}

.news-more .btn-more {
    display: inline-block;
    padding: 12px 30px;
    background-color: #e63946;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-more .btn-more:hover {
    background-color: #d32d3a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
}

.news-more .btn-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.news-more .btn-more:hover i {
    transform: translateX(5px);
}

/* ニュースセクション レスポンシブ対応 */
@media (max-width: 1024px) {
    .news-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 40px 0;
    }

    .news-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
        gap: 20px;
    }

    .news-image {
        height: 160px;
    }

    .news-title {
        font-size: 1.0rem;
    }

    .news-excerpt {
        font-size: 0.8rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news-content {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .news-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
        gap: 15px;
    }

    .news-image {
        height: 140px;
    }

    .news-content {
        padding: 12px;
    }

    .news-title {
        font-size: 0.9rem;
        margin-bottom: 8px;
        line-height: 1.2;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news-excerpt {
        margin-bottom: 10px;
        font-size: 0.75rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.3;
    }

    .news-date {
        font-size: 0.7rem;
        margin-bottom: 6px;
    }

    .news-link {
        font-size: 0.75rem;
    }

    .news-card {
        min-height: 280px;
    }
}

@media (max-width: 480px) {
    .news-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
        gap: 12px;
    }

    .news-image {
        height: 120px;
    }

    .news-content {
        padding: 10px;
    }

    .news-title {
        font-size: 0.85rem;
        margin-bottom: 6px;
        line-height: 1.2;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news-excerpt {
        font-size: 0.7rem;
        margin-bottom: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.3;
    }

    .news-date {
        font-size: 0.65rem;
        margin-bottom: 5px;
    }

    .news-link {
        font-size: 0.7rem;
    }

    .news-card {
        min-height: 240px;
    }

    .news-category {
        font-size: 0.65rem;
        padding: 3px 6px;
    }
}

@media (max-width: 375px) {
    .news-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
        gap: 10px;
    }

    .news-image {
        height: 100px;
    }

    .news-content {
        padding: 8px;
    }

    .news-title {
        font-size: 0.8rem;
        margin-bottom: 5px;
        line-height: 1.1;
    }

    .news-excerpt {
        font-size: 0.65rem;
        margin-bottom: 6px;
        line-height: 1.2;
    }

    .news-date {
        font-size: 0.6rem;
        margin-bottom: 4px;
    }

    .news-link {
        font-size: 0.65rem;
    }

    .news-card {
        min-height: 200px;
    }

    .news-category {
        font-size: 0.6rem;
        padding: 2px 5px;
    }
}

/* ページヘッダー */
.page-header {
    background-color: #ff85a1;
    color: #fff;
    padding: 40px 0;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 30' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C300,10 600,10 1200,30 L1200,0 L0,0 Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: 100% 100%;
}

.page-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.breadcrumb ul {
    display: flex;
    list-style: none;
}

.breadcrumb li {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb li:not(:last-child)::after {
    content: '>';
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* お問い合わせセクション */
.contact-section {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
}

.contact-intro {
    text-align: center;
    margin-bottom: 30px;
}

.contact-intro p {
    margin-bottom: 10px;
    color: #555;
}

.response-time {
    color: #888;
    font-size: 0.9rem;
}

.response-time i {
    color: #ff85a1;
    margin-right: 5px;
}

/* タブ切り替え */
.tab-container {
    margin-top: 30px;
}

.tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    justify-content: center;
}

.tab {
    padding: 12px 25px;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: #888;
    transition: all 0.3s ease;
    position: relative;
    min-width: 200px;
    text-align: center;
}

.tab:hover {
    color: #ff85a1;
}

.tab.active {
    color: #ff85a1;
    border-bottom-color: #ff85a1;
}

.tab-content {
    display: block;
}

.tab-content.hidden {
    display: none;
}

/* モデル応募情報 */
.model-info {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.model-info h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.model-info p {
    margin-bottom: 15px;
}

.model-requirements {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.model-requirements h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #ff85a1;
}

.model-requirements h4 i {
    margin-right: 8px;
}

.model-requirements ul {
    padding-left: 25px;
}

.model-requirements li {
    margin-bottom: 5px;
    list-style-type: disc;
}

/* お問い合わせフォーム */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.required {
    color: #e63946;
    font-size: 0.85rem;
    margin-left: 5px;
}

.form-note {
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    border-color: #ff85a1;
    box-shadow: 0 0 0 3px rgba(255, 133, 161, 0.2);
    outline: none;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
}

.checkbox-item input {
    margin-right: 8px;
}

.privacy-confirm {
    display: flex;
    align-items: flex-start;
}

.privacy-confirm input[type="checkbox"] {
    margin-top: 3px;
    margin-right: 10px;
}

.privacy-confirm .form-note {
    margin-top: 0;
    margin-left: 25px;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

.btn-submit {
    background-color: #ff85a1;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 133, 161, 0.3);
}

.btn-submit:hover {
    background-color: #ff6b8b;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 133, 161, 0.4);
}

.btn-submit i {
    margin-left: 8px;
}

/* 問い合わせ情報 */
.contact-info-section {
    margin-bottom: 60px;
}

.contact-info-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-info-item {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 133, 161, 0.15);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background-color: #ffeef2;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: #ff85a1;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
    background-color: #ff85a1;
    color: white;
}

.contact-info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.contact-detail {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff85a1;
    margin-bottom: 5px;
}

.contact-note {
    font-size: 0.85rem;
    color: #888;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .contact-info-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 30px 0;
        margin-bottom: 30px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .contact-section {
        padding: 25px;
        margin-bottom: 30px;
    }

    .tabs {
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .tab {
        flex: 1 1 auto;
        padding: 10px 15px;
        font-size: 0.9rem;
        text-align: center;
    }

    .contact-info-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .contact-info-item {
        padding: 20px;
    }

    .contact-info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .checkbox-group {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 25px 0;
    }

    .page-title {
        font-size: 1.6rem;
    }

    .contact-section {
        padding: 20px 15px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
        padding: 10px 12px;
    }

    .btn-submit {
        width: 100%;
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* FAQ カテゴリータイトル */
.faq-category {
    font-size: 1.5rem;
    color: #333;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff85a1;
    position: relative;
}

.faq-category:first-child {
    margin-top: 0;
}

/* FAQ お問い合わせ誘導 */
.faq-contact {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #ffeef2;
    border-radius: 15px;
}

.faq-contact p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #333;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .faq-category {
        font-size: 1.3rem;
        margin: 30px 0 15px;
    }

    .faq-contact {
        margin-top: 30px;
        padding: 20px;
    }

    .faq-contact p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .faq-category {
        font-size: 1.2rem;
        margin: 25px 0 12px;
    }

    .faq-contact {
        margin-top: 25px;
        padding: 15px;
    }
}

/* コンセプトページのスタイル */
.concept-main-section {
    padding: 30px 0;
    margin-bottom: 60px;
}

.concept-main-visual {
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.concept-main-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.concept-main-img:hover {
    transform: scale(1.02);
}

.concept-intro {
    text-align: center;
    margin-bottom: 50px;
}

.concept-main-title {
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.concept-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.concept-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* 3つの柱セクション */
.concept-pillars-section {
    padding: 50px 0;
    margin-bottom: 60px;
    background-color: #ffeef2;
    border-radius: 8px;
}

.concept-pillars-section.no-bg {
    background-color: transparent;
    border-radius: 0;
}

.concept-pillars {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.concept-pillar {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.concept-pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pillar-icon {
    width: 70px;
    height: 70px;
    background-color: #ff85a1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pillar-icon i {
    font-size: 30px;
    color: #fff;
}

.pillar-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.pillar-content {
    text-align: center;
    line-height: 1.7;
}

.pillar-content p {
    margin-bottom: 15px;
}

/* 撮影方針セクション */
.concept-policy-section {
    padding: 50px 0;
    margin-bottom: 60px;
}

.policy-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.policy-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.policy-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.policy-img:hover {
    transform: scale(1.05);
}

.policy-content {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.policy-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.policy-icon {
    width: 50px;
    height: 50px;
    background-color: #ff85a1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.policy-icon i {
    font-size: 20px;
    color: #fff;
}

.policy-text h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #333;
}

.policy-text p {
    line-height: 1.7;
    color: #666;
}

/* モデル応募CTAセクション */
.model-cta-section {
    background-color: #333;
    background-image: url('../images/model-cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 40px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
    color: #fff;
    text-align: center;
}

.model-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.model-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.model-cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.model-cta-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.7;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.btn-model-cta {
    display: inline-block;
    background-color: #ff85a1;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 133, 161, 0.4);
}

.btn-model-cta:hover {
    background-color: #ff6b8e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 133, 161, 0.5);
}

.btn-model-cta i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-model-cta:hover i {
    transform: translateX(5px);
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .concept-pillars {
        gap: 20px;
    }

    .concept-pillar {
        min-width: 280px;
    }

    .policy-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .concept-main-section {
        padding: 20px 0;
        margin-bottom: 40px;
    }

    .concept-text p {
        font-size: 1rem;
    }

    .concept-pillars {
        flex-direction: column;
        gap: 20px;
    }

    .concept-pillar {
        width: 100%;
        padding: 15px;
        margin-bottom: 10px;
    }

    .policy-container {
        flex-direction: column;
    }

    .policy-image {
        min-width: auto;
    }

    .policy-content {
        min-width: auto;
    }

    .model-cta-section {
        padding: 60px 30px;
    }

    .model-cta-title {
        font-size: 2rem;
    }

    .model-cta-text {
        font-size: 1.1rem;
    }

    .pillar-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }

    .pillar-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .pillar-content p {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .concept-main-visual {
        margin-bottom: 30px;
    }

    .concept-text p {
        font-size: 0.95rem;
    }

    .concept-pillars-section {
        padding: 20px 0;
    }

    .pillar-icon {
        width: 50px;
        height: 50px;
    }

    .pillar-title {
        font-size: 16px;
    }

    .pillar-content p {
        font-size: 13px;
        line-height: 1.3;
        margin-bottom: 5px;
    }

    .concept-pillar {
        padding: 12px;
        margin-bottom: 8px;
    }

    .pillar-content p:nth-child(n+2) {
        display: none;
    }

    .model-cta-section {
        padding: 40px 20px;
    }

    .model-cta-title {
        font-size: 1.8rem;
    }

    .model-cta-text {
        font-size: 1rem;
    }

    .btn-model-cta {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* ニュースページのスタイル */
.news-page-section {
    padding: 20px 0 60px;
    position: relative;
}

.news-page-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.news-page-item {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 133, 161, 0.1);
}

@media (min-width: 768px) {
    .news-page-item {
        flex-direction: row;
        height: 220px;
    }
}

.news-page-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 133, 161, 0.15);
}

.news-page-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

@media (min-width: 768px) {
    .news-page-image {
        width: 300px;
        flex-shrink: 0;
        height: 100%;
    }
}

.news-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-page-item:hover .news-page-image img {
    transform: scale(1.05);
}

.news-page-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ff85a1;
    color: #fff;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 3px 8px rgba(255, 133, 161, 0.3);
}

.news-page-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-page-date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
    display: block;
}

.news-page-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 600;
    transition: color 0.3s ease;
}

.news-page-item:hover .news-page-title {
    color: #ff85a1;
}

.news-page-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news-page-link {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    color: #ff85a1;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.news-page-link i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.news-page-link:hover {
    color: #ff6b8b;
}

.news-page-link:hover i {
    transform: translateX(4px);
}

/* ページネーション */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.page-numbers,
.page-current,
.page-dots,
.page-prev,
.page-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.page-numbers {
    background-color: #fff;
    color: #666;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-numbers:hover {
    background-color: #ffecf0;
    color: #ff6b8b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 133, 161, 0.1);
}

.page-current {
    background-color: #ff85a1;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(255, 133, 161, 0.2);
}

.page-dots {
    color: #666;
    cursor: default;
}

.page-prev,
.page-next {
    background-color: #fff;
    color: #666;
    text-decoration: none;
    padding: 0 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-prev i,
.page-next i {
    transition: transform 0.3s ease;
}

.page-prev:hover,
.page-next:hover {
    background-color: #ffecf0;
    color: #ff6b8b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 133, 161, 0.1);
}

.page-prev:hover i {
    transform: translateX(-3px);
}

.page-next:hover i {
    transform: translateX(3px);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .news-page-title {
        font-size: 1.1rem;
    }

    .news-page-excerpt {
        -webkit-line-clamp: 2;
    }

    .page-numbers,
    .page-current,
    .page-dots,
    .page-prev,
    .page-next {
        min-width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .news-page-item {
        border-radius: 8px;
    }

    .news-page-image {
        height: 180px;
    }

    .news-page-content {
        padding: 15px;
    }

    .news-page-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .news-page-excerpt {
        font-size: 0.85rem;
        margin-bottom: 10px;
        -webkit-line-clamp: 2;
    }

    .news-page-category {
        font-size: 0.7rem;
        padding: 4px 10px;
    }

    .pagination {
        gap: 5px;
    }

    .page-numbers,
    .page-current,
    .page-dots,
    .page-prev,
    .page-next {
        min-width: 30px;
        height: 30px;
        font-size: 0.8rem;
        padding: 0 8px;
    }

    .page-prev,
    .page-next {
        padding: 0 12px;
    }
}

/* ニュース一覧ページのスタイル */
.news-list-section {
    padding: 40px 0;
    margin-bottom: 60px;
}

.news-list-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.news-list-item {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(255, 133, 161, 0.1);
}

.news-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 133, 161, 0.15);
}

.news-list-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.news-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-list-item:hover .news-list-image img {
    transform: scale(1.05);
}

.news-list-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ff85a1;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 3px 8px rgba(255, 133, 161, 0.3);
}

.news-list-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-list-date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
    display: block;
}

.news-list-title {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 600;
    transition: color 0.3s ease;
}

.news-list-item:hover .news-list-title {
    color: #ff85a1;
}

.news-list-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.news-list-link {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    color: #ff85a1;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.news-list-link i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.news-list-link:hover {
    color: #ff6b8b;
}

.news-list-link:hover i {
    transform: translateX(4px);
}

/* ページネーション */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 10px;
}

.pagination-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: #333;
    border-radius: 50%;
    border: 1px solid #ddd;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background-color: #f9f9f9;
    border-color: #ff85a1;
    color: #ff85a1;
}

.pagination-btn.active {
    background-color: #ff85a1;
    color: #fff;
    border-color: #ff85a1;
}

.pagination-btn-prev,
.pagination-btn-next {
    width: auto;
    padding: 0 15px;
    border-radius: 20px;
}

.pagination-btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn-disabled:hover {
    background-color: #fff;
    border-color: #ddd;
    color: #333;
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
    .news-list-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .news-list-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .news-list-section {
        padding: 30px 0;
        margin-bottom: 40px;
    }

    .news-list-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .news-list-image {
        height: 220px;
    }

    .news-list-title {
        font-size: 1.15rem;
    }

    .pagination {
        margin-top: 30px;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .news-list-section {
        padding: 20px 0;
    }

    .news-list-container {
        gap: 20px;
        margin-bottom: 30px;
    }

    .news-list-content {
        padding: 15px;
    }

    .news-list-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .news-list-excerpt {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .pagination {
        gap: 5px;
    }

    .pagination-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* ページネーションの省略記号 */
.pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    padding: 0 5px;
    color: #666;
    font-size: 1rem;
}

@media (max-width: 480px) {
    .pagination-ellipsis {
        min-width: 15px;
        font-size: 0.85rem;
    }
}

/* ヘッダーのCTAボタン */
.nav-item.cta-nav {
    margin-left: 15px;
}

.nav-item.cta-nav a.cta-btn {
    background-color: #ff85a1;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(255, 133, 161, 0.3);
    border: 2px solid #ff85a1;
    text-align: center;
    display: inline-block;
}

.nav-item.cta-nav a.cta-btn:hover {
    background-color: #fff;
    color: #ff85a1;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 133, 161, 0.4);
}

.nav-item.cta-nav a.cta-btn::after {
    display: none;
}

@media (max-width: 992px) {
    .nav-item.cta-nav {
        margin-left: 10px;
    }

    .nav-item.cta-nav a.cta-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .nav-item.cta-nav {
        margin-left: 0;
        margin-top: 15px;
    }

    .nav-item.cta-nav a.cta-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 1rem;
        text-align: center;
        display: block;
    }
}

/* サイズ入力フィールドの横並び */
.size-inputs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.size-inputs>div {
    flex: 1;
    min-width: 100px;
}

.size-inputs label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #666;
}

.size-inputs input,
.size-inputs select {
    width: 100%;
}

/* フォームセクションタイトル */
.contact-form h3 {
    font-size: 1.3rem;
    color: #ff85a1;
    margin: 30px 0 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ffecf0;
}

.contact-form h3:first-child {
    margin-top: 0;
}

/* ファイル入力フィールド */
input[type="file"] {
    width: 100%;
    padding: 10px;
    background-color: #fff;
    border: 1px dashed #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

input[type="file"]:hover {
    border-color: #ff85a1;
    background-color: #ffecf0;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .size-inputs {
        flex-direction: column;
        gap: 15px;
    }

    .size-inputs>div {
        width: 100%;
    }
}

/* 応募フォームの注意書き強調 */
.contact-intro strong {
    color: #ff85a1;
    font-weight: 700;
    font-size: 1.1em;
}

/* チェックボックスグループのレイアウト改善 */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

@media (max-width: 576px) {
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

/* ステップフォーム */
.step-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50px;
    right: 50px;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #e0e0e0;
    color: #888;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 8px;
    transition: all 0.3s;
}

.step-title {
    font-size: 0.9rem;
    color: #888;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s;
}

.step.active .step-number {
    background-color: #e63946;
    color: #fff;
}

.step.active .step-title {
    color: #e63946;
    font-weight: 600;
}

.step.completed .step-number {
    background-color: #28a745;
    color: #fff;
}

.step.completed .step-title {
    color: #28a745;
}

.form-step {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.btn-prev,
.btn-next {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-next {
    background: linear-gradient(135deg, #e63946, #f77f85);
    margin-left: auto;
}

.btn-prev:hover,
.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-next:hover {
    background: linear-gradient(135deg, #d62d3a, #e63946);
}

/* 確認セクション */
.confirmation-section {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.confirmation-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dee2e6;
}

.confirmation-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.confirmation-item h4 {
    color: #e63946;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.confirmation-content {
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #dee2e6;
}

.confirmation-content p {
    margin: 5px 0;
    color: #333;
}

.confirmation-content .label {
    font-weight: 600;
    color: #666;
    display: inline-block;
    min-width: 120px;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .step-indicator {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .step-indicator::before {
        display: none;
    }
    
    .step {
        min-width: 80px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-title {
        font-size: 0.8rem;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-prev,
    .btn-next {
        width: 100%;
        justify-content: center;
    }
    
    .btn-next {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .step-indicator {
        gap: 10px;
    }
    
    .step {
        min-width: 60px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .step-title {
        font-size: 0.7rem;
    }
    
    .confirmation-section {
        padding: 15px;
    }
    
    .confirmation-content .label {
        min-width: 100px;
        font-size: 0.9rem;
    }
}

/* SNSボタン */
.sns-buttons-container {
    margin: 30px 0;
}

.sns-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.sns-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.sns-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.sns-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.sns-btn:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .sns-buttons {
        justify-content: center;
        gap: 10px;
    }
    
    .sns-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .sns-buttons {
        gap: 8px;
    }
    
    .sns-btn {
        width: 40px;
        height: 40px;
    }
}