@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&family=Sorts+Mill+Goudy:ital@0;1&display=swap');
.ic-cart {
    width:40px;
    height: auto;
}
.justify-content-end {
    justify-content: end !important;
}
.container {
    /*max-width: 1170px;*/
    margin: 0 auto;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}
.row { width: 100%; padding:0; margin:0; }
.col { width: 100%; padding:0; margin:0; }

/* キャッチコピー */
.catch-copy {
  padding-top: 110px;
  text-align: center;
  margin-bottom: 110px;
}
.catch-copy > h2 {
  color: #881491 !important;
  text-align: center;
  font-size: 37px;
  font-weight: 600;
  letter-spacing: 4px;
  line-height: 2em!important;
  text-shadow: 4px 4px 10px rgba(252, 201, 0, 0.25);
}
/* メインコンテンツ */
.mw-1170 {
    max-width: 1170px !important;
    margin-left: auto;
    margin-right: auto;
}
.i_single_product_content {
    width: 100%;
    margin-top: 0;
    position: relative;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0.3rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    color: #333;
    transition: 0.5s;
    overflow: hidden;
    box-sizing: border-box;
}

/* PC版レイアウト (768px以上) */
@media (min-width: 768px) {
    .i_single_product_content {
        display: grid;
        grid-template-columns: 600px 1fr;
        align-items: stretch;
        box-sizing: border-box;
    }
    /* 偶数要素のレイアウト反転 */
    .i_single_product_content.reverse {
        grid-template-columns: 1fr 600px;
    }
    .i_single_product_content .image-area {
        padding: 0;
        margin: 0;
    }
     .i_single_product_content.reverse .image-area {
                order: 2;
            }
    .i_single_product_content .image-area img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .i_single_product_content .text-content {
        padding: 32px 40px 4px 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
    }
    .i_single_product_content.reverse .text-content {
                order: 1;
                align-items: flex-start;
            }
}

/* SP版レイアウト (767px以下) */
@media (max-width: 767px) {
    .i_single_product_content {
        display: flex;
        flex-direction: column;
        margin-top: 30px;
        margin-left: 12px;
        margin-right: 12px;
    }
    
    .i_single_product_content .image-area {
        padding: 0;
        margin: 0;
        order: 1;
    }
    
    .i_single_product_content .image-area img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    .i_single_product_content .text-content {
        padding: 30px 20px;
        order: 2;
        align-items: flex-end;
        flex-wrap: wrap;
        justify-self: stretch;
    }
    
    .catch-copy {
        padding-top: 40px;
        margin-bottom: 10px;
    }
    
    .catch-copy h2 {
        font-size: 1.8em;
    }
}

/* テキストコンテンツのスタイル */
.text-content h2 {
    font-size: 3em;
    letter-spacing: 0.45rem;
    font-weight: 700;
    text-align: left; /* 左揃えに変更 */
    margin-bottom: 24px;
    line-height: 1.5;
    align-self: center;
    margin-top:0;
}

.text-content h2 a {
    color: #4B3049;
    text-decoration: none;
}

.text-content h2 a:hover {
    color: #795376;
}

.text-content h3 {
    font-size: 1.2em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    align-self: center;
    letter-spacing: 0.6px;
}

.text-content p {
    font-weight: 700;
    font-size: 19px;
    margin-bottom: 15px;
    line-height: 2.2em;
    letter-spacing: 0.6px;
    color: #4B3049;
}

.btn_index {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 15px 0;
    background: none;
    color: #B52365;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 8px;
    width: 190px;
    position: relative;
    font-size: 1.4em;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.btn_index:hover {
    opacity: 0.6;
    color:#B52365;
}

.btn_index::after {
    content: "";
    width: 190px;
    height: 2px;
    background-color: #B52365;
    margin-top: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.btn_index::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 11.4px;
    width: 12px;
    height: 10px;
    border-right: 1.9px solid #B52365;
    border-top: 1.9px solid #B52365;
    transform: rotate(45deg);
    z-index: 1;
}

/* reverseクラスのボタンを右寄せに */
.i_single_product_content.reverse .btn_index {
    align-self: flex-end;
}

/* タブレット対応 (768px〜991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .i_single_product_content {
        grid-template-columns: 400px 1fr;
    }
   .i_single_product_content.reverse {
                grid-template-columns: 1fr 400px;
            } 
    .text-content h2 {
        font-size: 1.8em;
        letter-spacing: 0.2rem;
    }
    
    .text-content h5 {
        font-size: 18px;
    }
}

/* 中サイズPC対応 (992px〜1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .i_single_product_content {
        grid-template-columns: 500px 1fr;
    }

    .i_single_product_content.reverse {
        grid-template-columns: 1fr 500px;
    }
    
    .text-content h2 {
        font-size: 1.9em;
        letter-spacing: 0.3rem;
    }
}

/* 小さなスマホ対応 (480px以下) */
@media (max-width: 480px) {

    .catch-copy h2 {
        font-size: 1.5em;
        letter-spacing: 0.1rem;
    }
    
    .text-content {
        padding: 20px 26px !important;
        margin-top: 8px;
    }
    
    .text-content h2 {
        font-size: 2em;
        letter-spacing: 0.2rem;
        text-align: center;
    }
    
    .text-content h5 {
        font-size: 16px;
    }

    .text-content p {
        font-weight: 700;
        font-size: 16px;
        margin-bottom: 2px;
        line-height: 1.8em;
        letter-spacing: 0.2px;
    }
    
    .btn_index {
        padding: 12px 25px;
        font-size: 14px;
        text-align: right;
        margin-left:calc(100% - 230px);
    }
    .btn_index::after {
        content: "";
        width: 190px;
        height: 2px;
        background-color: #B52365;
        margin-top: 12px;
        position: relative;
        transition: all 0.3s ease;
    }

    .btn_index::before {
        right: -24px;
        bottom: 8.4px;
    }
}

.i_single_product_iner {
    margin-bottom: 90px;
}

@media (max-width: 767px) {
    .i_single_product_iner {
        margin-bottom: 0;
    }
}


/* ブログセクション */
.blog_section {
    width: 100%;
    margin-top: 0;
    position: relative;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0.3rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    color: #333;
    transition: 0.5s;
    overflow: hidden;
    box-sizing: border-box;
    padding-top: 78px;
    padding-bottom: 48px;
}

.blog_header {
    text-align: center;
    margin-bottom: 32px;
}

.blog_header h2 {
    color: #4B3049 !important;
    font-size: 37px;
    font-weight: 600;
    letter-spacing: 8px;
    margin-bottom: 16px;
}

.blog_divider {
    width: 892px;
    height: 2px;
    background-color: #000;
    margin: 0 auto 20px auto;
    max-width: 100%;
}

.blog_header h3 {
    color: #4B3049;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
}

.blog_cards_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 34px;
    padding-left: 140px;
    padding-right: 140px;
}

.blog_card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.3rem;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.blog_card:hover {
    box-shadow: 0 5px 12px 0 rgba(31, 38, 135, 0.2);
}

.blog_thumbnail {
    width: 100%;
    aspect-ratio: 260/290;
    overflow: hidden;
}

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

.blog_card:hover .blog_thumbnail img {
    transform: scale(1.05);
}

.blog_content {
    padding: 20px;
}

.blog_date {
    color: #4B3049;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.blog_title {
    color: #4B3049;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
    letter-spacing: 0.5px;
}

.blog_more_btn_container {
    display: flex;
    justify-content: flex-end;
    padding-right: 150px;
}

.blog_more_btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 0;
    background: none;
    color: #B52365;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.4em;
    letter-spacing: 1.5px;
    width: 190px;
    position: relative;
    transition: all 0.3s ease;
}

.blog_more_btn:hover {
    opacity: 0.6;
    color: #B52365;
}

.blog_more_btn::after {
    content: "";
    width: 190px;
    height: 2px;
    background-color: #B52365;
    margin-top: 11px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
}

.blog_more_btn::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 11.4px;
    width: 12px;
    height: 10px;
    border-right: 1.9px solid #B52365;
    border-top: 1.9px solid #B52365;
    transform: rotate(45deg);
    z-index: 1;
}

/* レスポンシブ対応 */

@media (max-width: 767px) {
    .blog_section {
        padding: 60px 0 40px 0;
        margin-top: 30px;
        width: 100%;
        border-radius: 0;
    }
    
    .blog_header h2 {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .blog_header h3 {
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    .blog_divider {
        width: 100%;
        max-width: 86%;
    }
    
    .blog_cards_container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 16px;
        padding-left: 30px;
        padding-right: 30px;
    }
    .blog_thumbnail {
        width: 100%;
        aspect-ratio: 100/86;
        overflow: hidden;
    }

    .blog_thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    .blog_more_btn_container {
        justify-content: center;
        padding-right: 35px;
    }
    
    .blog_more_btn {
        font-size: 1.2em;
        width: 150px;
    }
    
    .blog_more_btn::after {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .blog_header h2 {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .blog_header h3 {
        font-size: 16px;
    }
    
    .blog_content {
        padding: 15px;
    }
    
    .blog_title {
        font-size: 14px;
    }
    
    .blog_date {
        font-size: 12px;
    }
}
/* ナビゲーターセクション */
.navigator_section {
    width: 100%;
    padding-top: 178px;
    padding-bottom: 130px;
    background: rgba(222, 194, 226, 0.1);
    position: relative;
}

.navigator_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/media/index/navigator-bg.jpg');
                opacity:0.43;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    z-index: 1;
}

.navigator_content {
    position: relative;
    z-index: 2;
}

.navigator_header {
    text-align: center;
    margin-bottom: 60px;
}

.navigator_header h2 {
    color: #000 !important;
    font-size: 46px;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 0;
}

.navigator_main_content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 40px;
}

.navigator_left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.navigator_logo {
    width: 100%;
    margin-bottom: 10px;
}

.navigator_logo img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.navigator_small_text {
    color: #000;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.navigator_name {
    color: #000;
    font-size: 48px;
    font-family: "Sorts Mill Goudy";
}

.navigator_divider {
    width: 1px;
    height: 200px;
    background-color: #363636;
    flex-shrink: 0;
}

.navigator_right {
    flex: 2;
}

.navigator_services {
    color: #000;
    font-size: 24px;
    font-weight: 600;
    line-height: 2.2em;
}

.navigator_contact_btn {
    display: flex;
    justify-content: right;
    margin-top: 40px;
    padding-right: 60px;
}
.navigator_contact_btn .btn_index{
    width: 290px;
}
.navigator_contact_btn .btn_index::after {
    width: 290px;
}

/* レスポンシブ対応 */
@media (max-width: 991px) {
    .navigator_main_content {
        flex-direction: column;
        gap: 40px;
    }
    
    .navigator_divider {
        width: 100%;
        max-width: 300px;
        height: 1px;
    }
    
    .navigator_right {
        padding-left: 0;
        text-align: center;
    }
    
    .navigator_name {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .navigator_section {
        padding: 60px 0;
        width: 100%;
        background: rgba(222, 194, 226, 1);
        position: relative;
    }
    .navigator_section::before {
        background-position: 80% center;
    }
    
    .navigator_header h2 {
        font-size: 32px;
        letter-spacing: 2px;
        padding-right: 24px;
        padding-left: 24px;
    }
    
    .navigator_main_content {
        gap: 30px;
        padding: 0 20px;
    }
    
    .navigator_logo {
        width: 80vw;
        height: auto;
    }
    .navigator_name {
        font-size: 32px;
        letter-spacing: 1px;
    }
    
    .navigator_services {
        font-size: 16px;
        line-height: 2.2em;
    }
    
    .navigator_small_text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .navigator_header h2 {
        font-size: 30px;
        letter-spacing: 1px;
        line-height: 1.6em;
    }
    
    
    .navigator_name {
        font-size: 28px;
    }
    
    .navigator_services {
        font-size: 13px;
        line-height: 2em;
    }
}

/* グッツセクション */
.goods_section {
    width: 100%;
    padding-top: 170px;
    padding-bottom: 180px;
    position: relative;
}

.goods_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/static/wallpaper_goods.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.goods_content {
    position: relative;
    z-index: 2;
}

.goods_header {
    text-align: center;
    margin-bottom: 60px;
}

.goods_logo {
    margin-bottom: 14px;
}

.goods_logo img {
    width: 200px;
    height: auto;
}

.goods_header h2 {
    color: white !important;
    font-size: 40px;
    font-weight: 700;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 14px;
    margin-top: 2px;
    margin-bottom: 80px;
}

.goods_header h3 {
    color: white;
    font-size: 30px;
    font-weight: 500;
    font-family: 'Noto Serif JP', serif;
    text-shadow: 9px 4px 4px rgb(0,0,0,0.25);
    letter-spacing: 6px;
    margin-bottom: 56px;
    line-height: 1.8em;
}

.goods_description {
    color: white;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Noto Serif JP', serif;
    text-align: left;
    line-height: 2.5em;
    margin: 0;
    padding-left: 40px;
}

.goods_cards_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1170px;
    margin: 0 auto;
    padding-left: 50px;
    padding-right: 50px;
}

.goods_card {
    box-shadow: 0px 7.2px 28.8px 0px #00000033;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.76);
    text-align: left;
}

.goods_card:hover {
    transform: translateY(-2px);
}

.goods_thumbnail {
    width: calc(100% - 60px);
    overflow: hidden;
    margin-right: auto;
    margin-left: auto;
    margin-top: 30px;
}

.goods_thumbnail img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.goods_card:hover .goods_thumbnail img {
    transform: scale(1.03);
}

.goods_card_content {
    padding: 20px 30px;
    text-align: left;
}

.goods_title {
    color: #4B3049;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Noto Serif JP', serif;
    margin-bottom: 10px;
}

.goods_price {
    color: #795376;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}

/* もっと見るカード */
.goods_more_card {
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: none;
    background: transparent;
    box-shadow: none;
}

.goods_btn_more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: white;
    font-size: 1.4em;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: opacity 0.3s ease;
    padding: 20px;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.goods_btn_arrow {
    position: relative;
    flex: 1;
    height: 2px;
    margin-right: 20px;
}

.goods_btn_arrow::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

.goods_btn_arrow::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    border-right: 2px solid white;
    border-top: 2px solid white;
    z-index: 1;
}

.goods_btn_more:hover {
    opacity: 0.6;
    color: white;
}

.goods_btn_text {
    flex-shrink: 0;
}

/* レスポンシブ対応 */
@media (max-width: 991px) {
    .goods_cards_container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 20px;
    }
    
    .goods_header h2 {
        font-size: 32px;
    }
    
    .goods_header h3 {
        font-size: 24px;
    }
    
    .goods_description {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .goods_section {
        padding: 60px 0;
    }
    
    .goods_cards_container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .goods_header {
        margin-bottom: 40px;
    }
    
    .goods_header h2 {
        font-size: 28px;
        line-height: 1.4em;
    }
    
    .goods_header h3 {
        font-size: 20px;
        line-height: 1.5em;
    }
    
    .goods_description {
        font-size: 16px;
        line-height: 1.8em;
    }
    
    .goods_logo img {
        width: 40vw;
    }
}

@media (max-width: 480px) {
    .goods_header h2 {
        font-size: 27px;
        margin-top: 25px;
        margin-bottom: 30px;
        letter-spacing: 10px;
    }
    
    .goods_header h3 {
        font-size: 19px;
        letter-spacing: 2px;
        line-height: 1.8em;
        padding-left: 36px;
        padding-right: 36px;
        margin-bottom: 38px;
    }
    
    .goods_description {
        font-size: 15px;
        line-height: 2em;
        padding-left: 36px;
        padding-right: 36px;
    }
    
    .goods_logo img {
        width: 48vw;
    }
}