/* Theme Name: Reina Photo
Theme URI: https://reina-photo.com/
Description: reina-photoのオリジナルテーマです
Author: miharu.t
Author URI: https://reina-photo.com/
Version: 1.0.0
*/
html {
    font-size: 62.5%;
    /* 16px * 62.5% = 10px */
    max-width: 100%;
}

body {
    color: #594A3D;
    background-color: #F2F7F4;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
    text-align: left;
    -webkit-overflow-scrolling: touch;
    touch-action: manipulation;
}

a:hover {
    opacity: 0.8;
    color: #89ABCE !important;
    transition: 0.3s ease;
}

.zen-kaku-gothic-new {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 400;
    font-style: normal;
}

.klee-one-regular {
    font-family: "Klee One", cursive;
    font-weight: 400;
    font-style: normal;
}

.container {
    max-width: 1240px;
    padding-left: 6.944%;
    /* 100px / 1440px ≒ 6.94% */
    padding-right: 6.944%;
    margin-left: auto;
    margin-right: auto;

}

.br-sp {
    display: none;
}

.br-pc {
    display: block;
}

@media screen and (max-width: 768px) {
    .br-sp {
        display: block;
    }

    .br-pc {
        display: none;
    }

}

/*header*/
.site-header {
    /*max-width: 1240px;*/
    width: 100%;
    min-height: 100px;
    /*padding-left: 6.944%;
    /* 100px / 1440px ≒ 6.94% */
    /*padding-right: 6.944%;*/
    /*margin-left: auto;
    margin-right: auto;*/
    background: #F2F7F4;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 100;
}

.site-header.change-color {
    /*background: #ffffff;*/
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.header-inner {
    margin: 0 auto;
    padding-top: 13px;
    padding-bottom: 13px;
    width: 86.12%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.site-nav .nav-list {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav .nav-list a {
    color: #594A3D;
    text-decoration: none;
    font-size: 16px;
}

.header-contact .contact-btn {
    padding: 6px;
    background: #89ABCE;
    min-width: 160px;
    max-height: 60px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #8ba9c8;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    color: #8ba9c8;
    border: 1px solid #8ba9c8;
    background: white;
}

.contact-btn:hover .icon-path {
    fill: #8ba9c8;
}

.hamburger,
.link-btn-header-container {
    display: none;
}


@media screen and (max-width: 1000px) {
    .site-header {
        margin: 0 auto;
        width: 100%;
        min-height: 50px;
        padding-left: 0%;
        padding-right: 0%;
        background: #F2F7F4;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header-inner {
        width: 86%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .site-logo {
        width: 80px;
        height: 50px;
    }

    .site-logo a {
        margin-top: 10px;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-end;
        width: 30px;
        height: 15px;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 1px;
        background-color: #594A3D;
        transition: all 0.3s ease;
    }

    .hamburger span:nth-of-type(2) {
        width: 75%;
    }

    /* ハンバーガーアイコン（開閉アニメーション） */
    .hamburger.active span:nth-of-type(1) {
        transform: translateY(5px) rotate(45deg);
    }

    .hamburger.active span:nth-of-type(2) {
        width: 100%;
        transform: translateY(-10px) rotate(-45deg);
    }

    .hamburger.active span:nth-of-type(2)::after {
        display: none;
    }

    .site-nav {
        padding-top: 140px;
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #F2F7F4;
        z-index: 1000;
        align-items: center;
        flex-direction: column;
        overflow: hidden;
        gap: 20px;
    }

    .site-nav.active {
        display: flex;
    }

    .site-nav .nav-list {
        flex-direction: column;
        gap: 30px;
        padding: 0;
        margin: 0;
        list-style: none;
        text-align: center;
    }

    .site-nav .nav-list a {
        color: #594A3D;
        font-size: 1.3rem;
        text-decoration: none;
        transition: color 0.3s;
    }

    .site-nav .nav-list a:hover {
        color: #89ABCE;
    }

    /* お問い合わせボタン */
    .header-contact {
        display: none;

    }

    .header-contact.active {
        display: block;
    }

    .site-nav .header-contact {
        margin-top: 20px;
    }

    .site-nav .nav-list a {
        color: #594A3D;
        text-decoration: none;
        font-size: 1.3rem;
    }

    .header-contact .contact-btn {
        padding: 0;
        min-width: 210px;
        max-width: 210px;
        height: 60px;
        border-radius: 50px;
        text-decoration: none;
        gap: 8px;
        transition: background 0.3s ease;
        font-size: 1.3rem;
    }

    /*インスタグラムボタン*/
    .link-btn-header-container {
        display: block;
    }

    .link-btn-header {
        position: relative;
    }

    .link-btn-header::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 20%;
        width: 18px;
        height: 18px;
        background-image: url(assets/img/link_icon_blue.png);
        background-repeat: no-repeat;
        background-size: contain;
        transform: translateY(-50%);
    }
}


/*ファーストビュー*/
.fv-container {
    margin-top: 100px;
    height: 100vh;
    position: relative;
}

/* swiper全体 */
.fv-swiper {
    margin-right: 0 !important;
    width: 86%;
    height: 100%;
}

/* swiper画像設定 */
.fv-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 40px 0 0 40px;
}

.swiper-text {
    position: absolute;
    top: 15%;
    left: 10%;
    color: #fff;
    text-align: left;
}

/* タイトルスタイル */
.swiper-title {
    font-size: 4.5rem;
    margin-bottom: 24px;
    letter-spacing: 10px;
    line-height: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}

/* サブタイトルスタイル */
.swiper-subtitle {
    font-size: 2.6rem;
    letter-spacing: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}

/* スクロールダウン*/
.scroll-down {
    position: absolute;
    bottom: 100px;
    left: 6.94%;
    /* 100px / 1440px ≒ 6.94% */
    width: 50px;
    height: 230px;
    color: #594A3D;
    z-index: 10;

}

.scrolldown span {
    position: absolute;
    left: 0;
    width: 50px;
    color: #594A3D;
    letter-spacing: 0.05em;
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
}

/* 線の描写 */
.scrolldown::before {
    animation: scrolldown 2s infinite;
    background-color: #594A3D;
    bottom: 10px;
    content: "";
    height: 100px;
    left: -28px;
    margin: auto;
    position: absolute;
    right: 0;
    width: 0.5px;
}

@keyframes scrolldown {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }

    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }

    51% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}

@media screen and (max-width: 768px) {

    /*ファーストビュー*/
    .fv-container {
        margin: 76px auto 50px;
        position: relative;
    }

    /* swiper全体 */
    .fv-swiper {
        margin-right: 0 !important;
        width: 100%;
        height: 100%;
        /*height: 500px;*/
    }

    /* swiper画像設定 */
    .fv-swiper .swiper-slide img {
        border-radius: 20px 0 0 20px;
    }

    .swiper-text {
        position: absolute;
        top: 10%;
        left: 5%;
        color: #fff;
        text-align: left;
    }

    /* タイトルスタイル */
    .swiper-title {
        font-size: 1.8rem;
        margin-bottom: 16px;
        letter-spacing: 10px;
        line-height: 2rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    }

    /* サブタイトルスタイル */
    .swiper-subtitle {
        font-size: 1rem;
        letter-spacing: 4px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    }

    /* スクロールダウン*/
    .scroll-down {
        display: none;

    }
}

/* トップ_about*/
.about-section {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 140px 6.94%;
    max-width: 1200px;
    margin: auto;
}

.about-content {
    width: 50%;
    padding-right: 40px;
    margin-bottom: 70px;
}

.section-title {
    font-size: 4rem;
    color: #594A3D;
    font-weight: bold;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 2rem;
    color: #B7997C;
    margin-bottom: 60px;
}

.about-text p {
    line-height: 1.8;
    color: #594A3D;
}

.more-btn-container {
    margin-top: 70px;
    max-width: 260px;
    height: 60px;
}

.more-btn-container a {
    background-color: #89ABCE;
    border-radius: 50px;
    padding: 20px 70px;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    border: 1px solid #8ba9c8;
    transition: background 0.3s ease;
    position: relative;
}

.more-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 30%;
    width: 12px;
    height: 12px;
    background-image: url('assets/img/button_icon_white.png');
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateY(-50%);
}

.more-btn:hover {
    color: #8ba9c8;
    border: 1px solid #8ba9c8;
    background: white;
}

.more-btn-container:hover .more-btn::after {
    background-image: url('assets/img/button_icon_blue.png');
    background-repeat: no-repeat;
    background-size: contain;
}

/* トップ_about画像 */
.about-images {
    width: 50%;
    /*position: relative;*/
    height: 600px;
    /* 画像エリアの高さを調整 */
}

/* 各画像の配置とデザイン調整 */
.about-img {
    position: absolute;
    object-fit: cover;
    border-radius: 20px;
}

/* 画像ごとの位置調整例 */
.about-img01 {
    top: 140px;
    right: 6.94%;
    /* 100px / 1440px ≒ 6.94% */
    width: 31.2%;
    /* 450px / 1440px ≒ 31.2% */
    height: 400px;
    aspect-ratio: 450 / 400;
}

.about-img02 {
    top: 620px;
    right: 0;
    width: 23.2%;
    /* 335px / 1440px ≒ 23.2% */
    height: 435px;
    aspect-ratio: 335 / 435;
    border-radius: 20px 0 0 20px;
}

.about-img03 {
    bottom: 375px;
    left: 6.94%;
    /* 100px / 1440px ≒ 6.94% */
    width: 43.05%;
    /* 620px / 1440px ≒ 43.05% */
    height: 350px;
    aspect-ratio: 620 / 350;
}

.about-img04 {
    bottom: 100px;
    right: 19.1%;
    /* 300px / 1440px ≒ 19.1% */
    width: 19.09%;
    /* 275px / 1440px ≒ 19.09% */
    height: 275px;
    aspect-ratio: 275 / 275;
}

/* レスポンシブ調整 */
@media screen and (max-width: 768px) {
    .about-section {
        flex-direction: column;
        padding: 30px 20px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 4px;
    }

    .section-subtitle {
        font-size: 1.3rem;
        color: #B7997C;
        margin-bottom: 16px;
    }

    .about-text p {
        font-size: 1.3rem;
        line-height: 1.8;
        color: #594A3D;
    }

    .more-btn-container {
        margin: 30px auto 0;
        max-width: 210px;
        height: 60px;
    }

    .more-btn-container a {
        font-size: 1.3rem;
    }

    .more-btn::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 20%;
        width: 8px;
        height: 12px;
        background-image: url(assets/img/button_icon_white.png);
        background-repeat: no-repeat;
        background-size: contain;
        transform: translateY(-50%);
    }

    .about-content,
    .about-images {
        width: 100%;
    }

    .about-images {
        height: 1044px;
    }

    /* 画像ごとの位置調整例 */
    .about-img01 {
        top: 594px;
        right: 0%;
        width: 80%;
        /* 300px / 375px ≒ 80% */
        height: 250px;
        aspect-ratio: 300 / 250;
        border-radius: 20px;
    }

    .about-img02 {
        top: 1114px;
        right: 0;
        width: 53.3%;
        /* 200px / 375px ≒ 53.3% */
        height: 300px;
        aspect-ratio: 200 / 300;
        border-radius: 20px;
    }

    .about-img03 {
        top: 904px;
        left: 0;
        width: 80%;
        /* 300px / 375px ≒ 80% */
        height: 150px;
        aspect-ratio: 300 / 150;
    }

    .about-img04 {
        bottom: 80px;
        left: 13.5%;
        width: 40%;
        /* 150px / 375px ≒ 40% */
        height: 150px;
        aspect-ratio: 150 / 150;
    }
}

/*トップ_plan*/
.plan-section {
    background-image: url('assets/img/top_plan_bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 100px 6.94%;
    border-radius: 100px 100px 0 0;
}

.plan-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.plan-title40 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.plan-sub {
    display: block;
}

.plan-item {
    display: flex;
    gap: 90px;
    align-items: center;
    margin-bottom: 60px;
    margin-left: calc(50% - 50vw);
}

.plan-item.reverse {
    margin-right: calc(50% - 50vw);
    margin-left: auto;
    flex-direction: row-reverse;
}

.plan-img {
    width: 50%;
    /* 720px / 1440px ≒ 50% */
    height: 500px;
}

.plan-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 0 40px 40px 0;
}

.plan-item.reverse .plan-img img {
    border-radius: 40px 0 0 40px;
}

.plan-text {
    flex: 1;
    padding: 0 6.94% 0 0;
}

.plan-item.reverse .plan-text {
    padding: 0 0 0 6.94%;
}

.plan-number {
    font-size: 8rem;
    color: #fff;
    margin-bottom: 10px;
    transform: translate(-10%, 50%);
}

.plan-title {
    font-size: 2.6rem;
    color: #594A3D;
    margin-bottom: 32px;
    font-weight: 500;
    position: relative;
}

.plan-text p {
    color: #594A3D;
    margin-bottom: 36px;
    line-height: 3.2rem;
    font-weight: 400;
}

@media screen and (max-width: 900px) {
    .plan-section {
        background-image: url('assets/img/top_plan_bg.png');
        background-repeat: no-repeat;
        background-size: 100% 100%;
        padding: 40px 6.94%;
        border-radius: 50px 50px 0 0;
    }

    .plan-inner {
        max-width: 1200px;
        margin: 0 auto;
    }

    .plan-title40 {
        text-align: center;
        margin-bottom: 24px;
        position: relative;
    }

    .plan-sub {
        margin-top: 8px;
    }

    .plan-item {
        display: flex;
        gap: 0;
        align-items: center;
        margin-bottom: 40px;
        margin-left: auto;
    }

    .plan-img {
        width: 93%;
        /* 350px / 375px ≒ 93% */
        height: 300px;
        margin-right: auto;
        margin-left: calc(50% - 50vw);
    }

    .plan-item.reverse {
        margin-right: auto;
        flex-direction: row-reverse;
    }

    .plan-img.reverse {
        margin-left: auto;
        margin-right: calc(50% - 50vw);
        text-align: right;
    }

    .plan-img img {
        max-width: 351px;
        max-height: 300px;
        object-fit: cover;
        border-radius: 0 20px 20px 0;
    }

    .plan-item.reverse .plan-img img {
        border-radius: 20px 0 0 20px;
    }

    .plan-text {
        flex: 1;
        padding: 0 6.94% 0 0;
    }

    .plan-item.reverse .plan-text {
        padding: 0;
    }

    .plan-number {
        font-size: 4rem;
        color: #fff;
        margin-bottom: 10px;
        transform: translate(0%, 50%);
    }

    .plan-title {
        font-size: 1.8rem;
        color: #594A3D;
        margin: 0 0 16px 16px;
        font-weight: 500;
        position: relative;
    }

    .plan-text p {
        color: #594A3D;
        margin-bottom: 8px;
        line-height: 3.2rem;
        font-weight: 400;
        font-size: 1.3rem;
    }

    .plan-item,
    .plan-item.reverse {
        flex-direction: column;
    }

    .plan-text {
        padding: 0 20px;
    }
}

/*トップ_gallery*/
.gallery-section {
    background-color: #fff;
    padding: 100px 6.94%;
    text-align: center;
}

.gallery-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Instagramフィード調整 */
.instagram-gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.instagram-gallery img {
    max-width: 300px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.more-btn-center {
    margin: 0 auto;
}

/* トップ_news */
.news-section {
    padding: 100px 6.94%;
    text-align: center;
}

.news-inner {
    max-width: 720px;
    margin: 0 auto;
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.news-list li {
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 66px 100px 20px;
    border-bottom: 1px solid #DDECEF;
}

.news-list li time {
    flex-shrink: 0;
    margin-right: 50px;
    font-weight: 400;
}

.news-list li a {
    color: #594A3D;
    text-decoration: none;
    font-weight: 400;
}

@media screen and (max-width: 900px) {
    .news-section {
        padding: 80px 6.94%;
        text-align: left;
    }

    .news-inner {
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
    }

    .news-list {
        list-style: none;
        padding: 0;
        margin: 0 0 40px 0;
    }

    .news-list li {
        display: flex;
        justify-content: left;
        align-items: center;
        padding: 24px 0 20px;
        border-bottom: 1px solid #DDECEF;
        font-size: 1.3rem;
    }

    .news-list li time {
        flex-shrink: 0;
        margin-right: 50px;
        font-weight: 400;
    }

    .news-list li a {
        color: #594A3D;
        text-decoration: none;
        font-weight: 400;
    }

}

/* aboutページ */
.hero {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    margin-top: 100px;
    margin-bottom: 100px;
}

/* 透過オーバーレイ */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(89, 74, 61, 0.3);
    /* #594A3D, 透過度30% */
    z-index: 1;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 2;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 2rem;
}

/* About Introセクション */
.about-intro {
    display: flex;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto 140px;
    padding: 0 6.94%;
}

.intro-content {
    flex: 1;
    padding-right: 40px;
}

.intro-content h2 {
    font-size: 4.5rem;
    font-weight: 400;
}

.intro-content .section-subtitle {
    letter-spacing: 0.4rem;
    margin-bottom: 66px;
}

.intro-content p {
    line-height: 1.8;
    font-weight: 400;
}

.intro-image {
    width: 620px;
    height: 600px;
    flex: 1;
    padding-left: 40px;
}

.intro-image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

/* About_profile */
.about-profile {
    display: flex;
    align-items: start;
    max-width: 1200px;
    margin: 140px auto 100px;
    padding: 0 6.94%;
}

.profile-image {
    width: 500px;
    height: 550px;
    flex: 1;
    padding-right: 40px;
}

.profile-image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    object-position: bottom;
}

.profile-content {
    margin-top: 40px;
    flex: 1;
    padding-left: 40px;
}

.profile-content p {
    line-height: 1.8;
    font-weight: 400;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .hero {
        height: 240px;
        margin-top: 40px;
        margin-bottom: 50px;
    }

    .hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .hero-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        text-align: center;
        z-index: 2;
    }

    .hero-text h1 {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 20px;
        white-space: nowrap;
    }

    .hero-text p {
        font-size: 1.6rem;
    }

    .about-intro,
    .about-profile {
        flex-direction: column;
    }

    .intro-content {
        padding: 0 0 80px 0;
    }

    .intro-image,
    .profile-image {
        padding: 0;
        margin-bottom: 0;
    }

    .about-intro {
        margin: 0 auto 80px;
        padding: 0 6.94%;
    }

    .intro-content h2 {
        font-size: 2rem;
    }

    .intro-content p,
    .profile-content p {
        font-size: 1.3rem;
    }

    .intro-content .section-subtitle {
        font-size: 1.3rem;
        letter-spacing: 0.1rem;
        margin-bottom: 24px;
    }

    .intro-image {
        width: 100%;
        max-width: 390px;
        max-height: 300px;
        flex: 1;
        padding-left: 0;
    }

    .about-profile {
        display: flex;
        flex-direction: column-reverse;
        margin: 80px auto 80px;
        padding: 0 6.94%;
    }

    .profile-image {
        width: 100%;
        max-width: 375px;
        height: 250px;
        flex: 1;
        padding-right: 0;
    }

    .profile-content {
        margin-top: 0;
        flex: 1;
        padding-left: 0;
        padding-bottom: 50px;
    }

    .profile-content p {
        line-height: 1.8;
        font-weight: 400;
    }

}

/* news_archiveページ */
.news-archive {
    margin-bottom: 100px;
}

/* グリッドレイアウト */
.news-grid-container {
    max-width: 1241px;
    margin: 0 auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 327px));
    gap: 50px 130px;
    list-style: none;
    padding: 0;
    margin: 0;
    place-content: center;
    place-items: center;
}

.news-item {
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-item:hover {
    box-shadow: 0 5px 5px rgba(137, 171, 206, 0.1);
}

.news-cat-active:hover {
    background-color: #594A3D !important;
    color: #fff !important;
    opacity: 1;
}

.news-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-thumbnail a {
    text-decoration: none;
}

.news-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-thumbnail.placeholder {
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
}

/* タイトル、日付、カテゴリー */
.news-item a {
    text-decoration: none;
}

.news-category-archive {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.news-cat-archive {
    display: inline-block;
    background-color: #89ABCE;
    color: #fff !important;
    padding: 5px 15px;
    font-size: 1rem;
    border-radius: 20px;
    margin: 0 !important;
    text-transform: uppercase;
    transition: background-color 0.3s;
    text-decoration: none;
}

.news-cat-archive:hover {
    background-color: #594A3D;
    color: #fff !important;
}

.news-item time {
    display: block;
    color: #594A3D;
    margin: 20px 0px 20px 20px;
    font-weight: 400;
}

.news-item span {
    margin: 0 20px 20px;
    display: block;
    color: #594A3D;
    font-weight: 400;
}

/* ページネーション */
.news-pagination {
    margin: 70px 0 100px;
    text-align: center;
}

.news-pagination a,
.news-pagination span {
    margin: 0 5px;
    padding: 10px 15px;
    border-radius: 5px;
    color: #594A3D;
    text-decoration: none;
    transition: color 0.3s;
}

.news-pagination a:hover {
    color: #89ABCE;
}

.news-pagination .current {
    font-weight: bold;
    color: #89ABCE;
}

@media screen and (max-width: 768px) {
    .news-archive {
        margin-bottom: 80px;
    }

    /* グリッドレイアウト */
    .news-grid {
        display: grid;
        gap: 40px;
        place-items: center;
        place-content: center;
    }

}

/* single-news */
.news-single {
    margin-bottom: 100px;
}

.news-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.news-content h2 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.news-flex-container {
    display: flex;
    gap: 24px;
    justify-content: start;
    align-items: center;
}

.news-content time {
    display: block;
    margin-bottom: 66px;
    color: #594A3D;
    font-weight: 400;
}

/* カテゴリー表示 */
.news-category {
    margin-bottom: 66px;
}

.news-cat {
    display: inline-block;
    background-color: #89ABCE;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    margin-right: 10px;
    text-transform: uppercase;
    transition: background-color 0.3s;
    text-decoration: none;
}

.news-cat:hover {
    background-color: #594A3D;
    color: #fff !important;
}

.news-thumbnail-single {
    margin-bottom: 66px;
}

.news-thumbnail-single img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.news-content .news-body {
    line-height: 3.2rem;
    font-weight: 400;
}

.news-archive-btn {
    margin-top: 66px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 900px) {
    .news-single {
        margin-bottom: 80px;
    }

    .news-content {
        max-width: 900px;
        margin: 0 auto;
        padding: 20px;
    }

    .news-content h2 {
        font-size: 2rem;
        margin-bottom: 20px;
        font-weight: 500;
    }

    .news-flex-container {
        display: flex;
        gap: 24px;
        justify-content: start;
        align-items: center;
    }

    /* カテゴリー表示 */
    .news-category {
        margin-bottom: 66px;
    }

    .news-cat {
        font-size: 1rem;
    }

    .news-cat:hover {
        background-color: #594A3D;
        color: #fff !important;
    }

    .news-thumbnail-single {
        margin-bottom: 32px;
    }

    .news-thumbnail-single img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .news-content .news-body {
        font-size: 1.3rem;
        line-height: 3.2rem;
        font-weight: 400;
    }

    .news-archive-btn {
        margin-top: 32px;
    }

}

/*privacypolicy*/
.privacy-container {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 6.94%;
}

.privacy-container .privacy-text {
    max-width: 900px;
    font-weight: 400;
    margin: 0 auto 140px;
    line-height: 1.8;
}

.privacy-policy {
    line-height: 1.8;
    color: #594A3D;
    font-weight: 400;
}

.privacy-title {
    display: inline-block;
    font-size: 1.5rem;
    line-height: 3.2rem;
    border-bottom: 1px solid #89ABCE;
}

@media screen and (max-width: 768px) {
    .privacy-container {
        margin: 0 auto 80px;
    }

    .privacy-container .privacy-text {
        font-size: 1.3rem;
        margin-bottom: 64px;
    }

    .privacy-policy {
        font-size: 1.3rem !important;
        text-align: left;
    }

    .privacy-title {
        font-size: 1.5rem;
    }

}

/*planページ*/
.plan-categories {
    text-align: center;
    margin-bottom: 80px;
    padding: 40px 0;
}

.plan-category-detail {
    font-weight: 400;
    color: #594A3D;
    margin-bottom: 36px;
}

.plan-category-list {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 0;
}

.plan-category-list li {
    display: flex;
    align-items: center;

}

.plan-category-list a {
    font-size: 1.8rem;
    color: #594A3D;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.plan-category-list a::after {
    content: "";
    background-image: url('assets/img/plan_category_arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 15px;
    height: 7px;
    margin-left: 10px;
    margin: 20px 20px;
    position: absolute;
    top: 50%;
}

.plan-category-list a:hover {
    color: #89ABCE;
}

.plan-category-list a::after:hover {
    background-image: url('assets/img/plan_category_arrow_blue.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.divider {
    width: 1px;
    height: 40px;
    background-color: #594A3D;
    margin: 0 20px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 900px) {
    .plan-categories {
        margin-bottom: 56px;
        padding: 0 6.94%;
    }

    .plan-category-detail {
        font-size: 1.3rem;
    }

    .plan-category-list {
        gap: 32px 4px;
    }

    .plan-category-list li {
        display: flex;
        align-items: center;

    }

    .plan-category-list a {
        font-size: 1.1rem;
    }

    .plan-category-list a::after {
        margin: 16px 20px;
        top: 45%;
    }

    .divider {
        width: 1px;
        height: 20px;
        background-color: #594A3D;
        margin: 0 10px;
    }
}

/* planスライダー */
.plan-slider-section {
    margin: 0 6.94%;
}

.plan-container {
    background-image: url('assets/img/top_plan_bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 40px;
    margin: 0 auto 100px;
    padding: 70px 70px 70px 70px;
    max-width: 1240px;
}

/* スライダー内の矢印位置調整 */
.swiper-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.plan-swiper {
    max-width: 900px;
    height: 450px;
    position: relative;
}

.plan-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ナビゲーション */
.swiper-button-prev,
.swiper-button-next {
    display: none !important;
}

.custom-swiper-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffffff;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

[class*="custom-swiper-button-prev-"] {
    left: -35px;
}

[class*="custom-swiper-button-next-"] {
    right: -35px;
}

/* アイコンスタイル */
.custom-swiper-button svg {
    width: 30px;
    height: 40px;
    fill: #594A3D;
    transition: fill 0.2s;
}

.custom-swiper-button:hover {
    background-color: #594A3D;
}

.custom-swiper-button:hover svg {
    fill: #ffffff;
}

/* planカスタム情報 */
.plan-details {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding-top: 50px;
}

.plan-details h2 {
    font-size: 3rem;
    color: #594A3D;
    margin-bottom: 20px;
}

.plan-details p {
    font-weight: 400;
    text-align: left;
    margin-bottom: 24px;
    line-height: 3.2rem;
}

/* 料金ボックス */
.price-box {
    background-color: #ffffff;
    padding: 17px 20px;
    margin-bottom: 24px;
    color: #89ABCE;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}

.price-box span {
    color: #89ABCE;
    font-size: 2.6rem;
    display: block;
    letter-spacing: 0.1rem;
}

.price-box small {
    margin-left: 32px;
    font-weight: 400;
}

/* 季節の撮影会ボタン*/
.link-btn-container a {
    background-color: #fff;
    border-radius: 50px;
    padding: 20px 70px;
    text-decoration: none;
    color: #8ba9c8;
    display: flex;
    align-items: center;
    border: 1px solid #8ba9c8;
    transition: background 0.3s ease;
    position: relative;
    font-weight: 400;
}

.link-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 30%;
    width: 18px;
    height: 18px;
    background-image: url('assets/img/link_icon_blue.png');
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateY(-50%);
}

.link-btn:hover {
    color: #fff !important;
    border: 1px solid #8ba9c8;
    background: #8ba9c8;
}

.link-btn-container:hover .link-btn::after {
    background-image: url('assets/img/link_icon_white.png');
    background-repeat: no-repeat;
    background-size: contain;
}

/* 注意事項セクション */
.precautions-section {
    margin: 0 6.94%;
}

.precautions-container {
    border-radius: 40px;
    padding: 70px 70px 30px 70px;
    margin: 0 auto 100px;
    max-width: 1240px;
    background-image: url('assets/img/top_plan_bg.png');
    background-size: cover;
    background-position: center;

}

.precautions-title {
    font-size: 3rem;
    color: #594A3D;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
}

.precautions-item {
    margin-bottom: 40px;
}

.precautions-item h3 {
    font-size: 1.8rem;
    color: #594A3D;
    font-weight: 600;
    margin-bottom: 8px;
}

.precautions-item p {
    font-weight: 400;
    color: #594A3D;
    line-height: 2.8rem;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .plan-slider-section {
        margin: 0;
    }

    .plan-container {
        margin: 0 auto 80px;
        padding: 50px 24px 40px 24px;
        border-radius: 20px;
    }

    .plan-swiper-container,
    .plan-swiper {
        max-height: 300px;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .plan-swiper .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .plan-swiper-slide {
        max-height: 300px;
    }

    .custom-swiper-button {
        display: none;
    }

    .precautions-section {
        padding: 40px;
    }

    /* planカスタム情報 */

    .plan-details h2 {
        font-size: 2rem;
        margin-bottom: 14px;
    }

    .plan-details p {
        font-size: 1.2rem;
        line-height: 2.4rem;
        margin-bottom: 40px;
    }

    /* 料金ボックス */
    .price-box {
        background-color: #ffffff;
        padding: 8px 20px;
        margin-bottom: 32px;
        color: #89ABCE;
        font-weight: 500;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    .price-box span {
        color: #89ABCE;
        font-size: 2.0rem;
        display: block;
        letter-spacing: 0.1rem;
    }

    .price-box small {
        margin-left: 32px;
        font-weight: 400;
        font-size: 1.3rem;
    }

    /* 注意事項セクション */
    .precautions-section {
        margin: 0;

    }

    .precautions-container {
        border-radius: 20px;
        padding: 40px 24px 40px 24px;
        margin-bottom: 80px;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        max-width: 1240px;
        background-image: url('assets/img/top_plan_bg.png');
        background-size: cover;
        background-position: center;

    }

    .precautions-title {
        font-size: 2.0rem;
        margin-bottom: 30px;
    }

    .precautions-item h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .precautions-item p {
        font-size: 1.3rem;
        line-height: 2.4rem;
    }
}

/*コンタクトページ*/
.contact-container {
    margin: 0 auto 100px;
    max-width: 1080px;
    text-align: center;
}

.contact-text {
    margin: 0 auto 48px auto;
    font-weight: 400;
    line-height: 3.2rem;
    max-width: 467px;
    text-align: left;
}

.contact-text a {
    color: #594A3D;
}

.contact-margin {
    margin-bottom: 60px;
}

.contact-form-text {
    padding-top: 100px;
    border-top: #89ABCE 1px solid;
}

.contact-form-text h4 {
    font-size: 3.2rem;
    margin-bottom: 24px;
    line-height: 5rem;
}

.contact-form-text p {
    margin: 0 auto;
    font-weight: 400;
    text-align: left;
    max-width: 577px;
    line-height: 3.2rem;
}

.asterisk {
    color: #89ABCE;
}

/*コンタクトフォーム*/
.contact-form-container {
    max-width: 680px;
    margin: 48px auto 0;
    padding: 0 20px;
    font-weight: 400;
}

/* ラベルと入力フィールドの横並び */
.contact-form-row p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    align-items: center;
}

/* ラベル */
.contact-form-container label {
    flex-basis: 35%;
    text-align: left;
    color: #594A3D;
    margin-bottom: 0;
    line-height: 3.2rem;
}

/* 入力フィールド */
.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container input[type="tel"],
.contact-form-container textarea {
    flex-basis: 65%;
    padding: 15px;
    border: 1px solid #89ABCE;
    border-radius: 5px;
    background-color: #ffffff;
    color: #594A3D;
    transition: border-color 0.3s;
    min-width: 420px;
}

.contact-form-container input[type="text"]:focus,
.contact-form-container input[type="email"]:focus,
.contact-form-container input[type="tel"]:focus,
.contact-form-container textarea:focus {
    border-color: #594A3D;
}

/* テキストエリア */
.contact-form-container textarea {
    height: 120px;
    resize: none;
}

/* チェックボックス */
.checkbox-group {
    flex-basis: 100%;
    flex-direction: column;
    margin-bottom: 20px;
}

.checkbox-group p,
.contact-detail p {
    align-items: start;
}

.checkbox-group label {
    flex-basis: 30%;
}

.contact-checkbox {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 8px;
    margin-bottom: 24px;
}

input[type="checkbox"] {
    display: none;
}

.wpcf7-list-item {
    display: block;
    line-height: 1;
}

.wpcf7-list-item-label {
    position: relative;
    height: 20px;
    line-height: 20px;
    padding-left: 25px;
    display: inline-block;
}

/* チェックマーク */
.wpcf7-list-item-label::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #594A3D;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    box-sizing: border-box;
}

input[type="checkbox"]:checked+.wpcf7-list-item-label::after {
    content: "";
    display: block;
    width: 8px;
    height: 6px;
    border-top: 1px solid #89ABCE;
    border-right: 1px solid #89ABCE;
    transform: rotate(135deg);
    position: absolute;
    left: 5px;
    top: 4px;
}

.contact-checkbox label {
    color: #594A3D;
    cursor: pointer;
}

/* ボタン */
.contact-btn-container {
    margin: 28px auto 0;
    display: inline-block;
    position: relative;
}

.contact-btn-container p {
    max-width: 260px;
    height: 60px;
}

.contact-btn {
    max-width: 260px;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    height: 60px;
    padding: 15px;
    background-color: #89ABCE;
    color: #ffffff;
    text-align: center;
    border-radius: 50px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    border: 1px solid #8ba9c8;

}

.contact-btn-container::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 30%;
    width: 12px;
    height: 12px;
    background-image: url('assets/img/button_icon_white.png');
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateY(-50%);
}

.contact-btn-container:hover::after {
    color: #8ba9c8;
    /*border: 1px solid #8ba9c8;*/
    /*background: white;*/
    background-image: url('assets/img/button_icon_blue.png');
    background-repeat: no-repeat;
    background-size: contain;
}

/*注意書き*/
.wpcf7-not-valid-tip {
    margin-top: 2px;
    font-size: 1.4rem;
    color: #89ABCE;
}

/* 通常のプレースホルダー */
.contact-form-container ::placeholder {
    color: #ddd;
    opacity: 1;
}

/*エラーメッセージ*/
.wpcf7-response-output {
    border-color: #F2F7F4;
    color: #89ABCE;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #F2F7F4;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .contact-container {
        margin: 0 6.94% 80px;
    }

    .contact-text {
        font-size: 1.3rem;
    }

    .contact-margin {
        margin-bottom: 48px;
    }

    .contact-form-text {
        padding-top: 80px;
    }

    .contact-form-text h4 {
        font-size: 2rem;
    }

    .contact-form-text p {
        line-height: 2.6rem;
        font-size: 1.3rem;
    }

    /*コンタクトフォーム*/
    .contact-form-container {
        max-width: 680px;
        margin: 48px 0 0;
        padding: 0;
        font-weight: 400;
    }

    /* ラベルと入力フィールドの横並び */
    .contact-form-row p {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin-bottom: 16px;
        font-size: 1.3rem;
    }

    /* ラベル */
    .contact-form-container label {
        flex-basis: 100%;
        text-align: left;
        color: #594A3D;
        margin-bottom: 0;
        line-height: 3.2rem;
    }

    /* 入力フィールド */
    .contact-form-container input[type="text"],
    .contact-form-container input[type="email"],
    .contact-form-container input[type="tel"],
    .contact-form-container textarea {
        flex-basis: 100%;
        padding: 8px;
        min-width: 100%;
        min-height: 32px;
    }


    /* チェックボックス */


    .contact-checkbox {
        gap: 4px;
        margin-bottom: 24px;
        flex-direction: column;
    }

    .wpcf7-list-item-label {
        position: relative;
        height: 20px;
        line-height: 20px;
        padding-left: 25px;
        display: inline-block;
    }

    .contact-form-container input[type="text"],
    .contact-form-container input[type="email"],
    .contact-form-container input[type="tel"],
    .contact-form-container textarea {
        flex-basis: 100%;
    }

    .contact-btn {
        width: 100%;
        font-size: 1.3rem;
    }

    /*注意書き*/
    .wpcf7-not-valid-tip {
        margin-top: 2px;
        font-size: 1.2rem;
        color: #89ABCE;
    }
}




/*footer*/
.site-footer {
    background: #DDECEF;
    color: #8ba9c8;
    text-align: center;
    padding: 64px 0 24px 0;
}

.site-footer .container {
    position: relative;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 100px;
}

.footer-contact-link {
    margin-bottom: 88px;
    padding: 18px 18px 18px 18px;
    display: inline-flex;
    align-items: center;
    color: #8ba9c8;
    text-decoration: none;
    border-bottom: 1px solid #8ba9c8;
    gap: 30px;
    transition: color 0.3s;
    position: relative;
    z-index: 1;
}

.footer-contact-link::after {
    background-color: #594A3D;
    bottom: -1px;
    content: '';
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    transition: .5s all;
    width: 0;
}

.footer-contact-link:hover {
    color: #594A3D !important;
    fill: #594A3D !important;
}

.footer-contact-link:hover::after {
    width: 100%;
    z-index: 2;
}

.contact-ja {
    font-size: 3.2rem;
}

.contact-en {
    margin-right: 68px;
}

.footer-sns {
    margin-left: 16px;
    display: flex;
    gap: 32px;
}

.footer-nav {
    margin: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-menu,
.footer-sub-menu {
    margin-bottom: 48px;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 50px;
    font-weight: 400;
}

.footer-menu a,
.footer-sub-menu a {
    color: #8ba9c8;
    text-decoration: none;
}

.footer-menu a:hover,
.footer-sub-menu a:hover {
    color: #594A3D !important;
}

.footer-bottom {
    margin-top: 96px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.to-top-btn {
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    position: absolute;
    bottom: 0;
    right: 6.944%;
}

.to-top-btn:hover .icon-path,
.footer-contact-link:hover .icon-path {
    stroke: #594A3D;
}

@media screen and (max-width: 1000px) {
    .footer-wrapper {
        flex-direction: column;
    }

    .footer-nav {
        align-items: flex-start;
    }

    .footer-menu {
        flex-direction: column;
    }

    .site-footer {
        padding: 48px 0 24px 0;
    }

    .footer-wrapper {
        gap: 30px;
    }

    .footer-contact-link {
        margin-bottom: 48px;
        padding: 0 0 15px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .contact-ja {
        margin-left: 0;
        font-size: 2rem;
        white-space: nowrap;
    }

    .contact-en {
        font-size: 1.3rem;
    }

    .footer-sns {
        margin-left: 0;
        display: flex;
        gap: 8px;
    }

    .footer-logo {
        width: 80px;
        height: 20px;
    }

    .footer-sns a {
        width: 20px;
        height: 20px;
    }

    .footer-right {
        text-align: left;
    }

    .footer-nav {
        margin: 0px 0;
        align-items: flex-start;
    }

    .footer-menu,
    .footer-sub-menu {
        margin-bottom: 24px;
        gap: 20px;
        font-size: 1.3rem;
    }

    .footer-bottom {
        margin-top: 14px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 20px;
        font-size: 1rem;
    }

    .footer-contact-arrow svg,
    .to-top-btn svg {
        width: 40px;
        height: 40px;
    }


}

.not-found-page {
    text-align: center;
    margin: 100px 6.94%;
    font-weight: 400;
}

.not-found-title {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.not-found-page a {
    color: #89ABCE;
}

@media screen and (max-width: 768px) {
    .not-found-page {
        font-size: 1.3rem;
        margin: 80px 6.94%;
    }

    .not-found-title {
        font-size: 1.8rem;
        margin-bottom: 14px;
        font-weight: 500;
    }

}

.fadeInTrigger {
    opacity: 0;
}

.fadeIn {
    animation-name: fadeInAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


