/* Google Fonts Import */
@import url(https://fonts.googleapis.com/css?family=Cinzel);
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);

@font-face {
    font-family: 'Botterill Signature';
    src: url('https://www.ground.ne.jp/fonts/Botterill_Signature.otf') format('opentype'),
         url('https://www.ground.ne.jp/fonts/Botterill_Signature.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}



/* Content Container */
.content {
    margin: 0 auto;
    width: 1100px;
}

@media screen and (max-width: 640px) {
    .content {
        width: 100%;
    }
}

/* Font Definitions */
@font-face {
    font-family: 'Cinzel';
    src: url('https://www.ground.ne.jp/fonts/Cinzel-Regular.ttf') format("truetype");
}

.font_h_alphanumeric {
    font-family: 'Cinzel', serif;
}



@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url('https://www.ground.ne.jp/fonts/MaterialIcons-Regular.eot');
    src: local('Material Icons'), local('MaterialIcons-Regular'),
         url('https://www.ground.ne.jp/fonts/MaterialIcons-Regular.woff2') format('woff2'),
         url('https://www.ground.ne.jp/fonts/MaterialIcons-Regular.woff') format('woff'),
         url('https://www.ground.ne.jp/fonts/MaterialIcons-Regular.ttf') format('truetype');
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
}

.font_Gothic {
    font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
}

/* Icon Styles */
.list_heading_style {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
    content: "arrow_drop_down";
    transform: rotate(-90deg);
    font-size: 1rem;
}

.list_heading_cart {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
    content: "shopping_cart";
    font-size: 1rem;
}

.link_arrow_single {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
    content: "keyboard_arrow_right";
    letter-spacing: -0.5rem;
    margin-left: 0.5rem;
}

.link_arrow_double {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
    content: "keyboard_arrow_rightkeyboard_arrow_right";
    letter-spacing: -0.5rem;
    margin-left: 0.5rem;
}

/* Link Styles */
.link_text_white a,
.link_text_white a:hover,
.link_text_white a:active,
.link_text_white a:focus,
.link_text_white a:visited {
    color: #fff;
}

.link_text_colored a,
.link_text_colored a:hover,
.link_text_colored a:active,
.link_text_colored a:focus,
.link_text_colored a:visited {
    color: #a3bac0;
    text-decoration: underline;
}

/* Shipment Badge */
.shipment {
    display: inline-block;
    padding: 0 1rem;
    background: #ffffc8;
    color: #8c8886;
    font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
}

.shipment span:nth-of-type(1) {
    font-size: 1.2rem;
}

.shipment span:nth-of-type(2) {
    font-size: 1.1rem;
}

/* Base HTML/Body Styles */
html {
    font-size: 16px;
}

body {
    background: #0E1D21;
}

* {
    box-sizing: border-box;
}

html, body {
    min-width: 1300px;
}

@media screen and (max-width: 640px) {
    html {
        font-size: 14px;
    }
    
    html, body {
        min-width: initial;
    }
}

/* Responsive Break Points */
br.tablet, br.sp, br.smallSp, br.middleSp, br.largeSp {
    display: none;
}

@media screen and (min-width: 641px) and (max-width: 1199px) {
    br.tablet {
        display: block;
    }
}

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

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

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

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

/* Mobile Navigation (Initially Hidden) */
#headerSp, #drawerNavSp {
    display: none;
}

#header > ol {
    border: 1px solid #FFF;
    padding: 2rem;
    margin-top: 0.5rem;
    padding-left: 3rem; /* 番号のスペースを確保 */
}

#header > ol > li {
    margin-bottom: 1rem; /* 行間を広く */
}

#header > ol > li:last-child {
    margin-bottom: 0; /* 最後の項目は下マージンなし */
}
/* デスクトップでモバイル用リスト全体を非表示 */
#header > ol.mobile-text {
    display: none;
}

/* Header Top */

#headerTop {
    width: 100%;
    background: #fff;
}

#headerTop div {
    margin: 0 auto;
    width: 1100px;
    display: flex;
}

@media screen and (max-width: 640px) {
  
   #header > ol {
        padding: 1.5rem;
        margin-top: 0.3rem;
        padding-left: 2.5rem; /* モバイルは少し狭く */
    }
    
    #header > ol > li {
        margin-bottom: 0.8rem; /* モバイルは少し狭く */
    }
  
 .signature-text {
        font-size: 5rem !important;
        top: 40px !important;
        margin-left: -20px;
    }
  
   /* モバイルでデスクトップ用リスト全体を非表示 */
    #header > ol.desktop-text {
        display: none;
    }
    
    /* モバイルでモバイル用リストを表示 */
    #header > ol.mobile-text {
        display: block;
    }
  
  
  #headerTop div {
        width: 100%;
    }
}

#headerTop div h2 {
    font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
    font-size: 0.75rem;
}

#headerTop div nav {
    margin-left: auto;
}

#headerTop div nav ul {
    display: flex;
}

#headerTop div nav ul li {
    margin-left: 1.5rem;
    font-size: 0.9rem;
    cursor: pointer;
}

#headerTop div nav ul li:nth-of-type(1)::before {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
    content: "arrow_drop_down";
    transform: rotate(-90deg);
    font-size: 1rem;
}

#headerTop div nav ul li:nth-of-type(2)::before {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
    content: "shopping_cart";
    font-size: 1rem;
    margin-right: 0.5rem;
    color: #f7f793;
}

/* Header Main */
#headerMain {
    position: relative;
    width: 100%;
}

#headerMain .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
}

#headerMain .logo img {
    width: 300px;
}

#headerMain div {
    margin: 0 auto;
    width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* デスクトップ・モバイル用テキスト表示切り替え */
.desktop-text {
    display: block;
}
.mobile-text {
    display: none;
}

@media screen and (max-width: 640px) {
    #headerMain div {
        width: 100%;
    }
   /* モバイル表示：mobile-text表示、desktop-text非表示 */
    .desktop-text {
        display: none;
    }
    .mobile-text {
        display: block;
    }

}

#headerMain div nav {
    padding: 1rem 0;
    align-self: flex-start;
}

#headerMain div nav ul {
    display: flex;
    font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
    font-size: 0.9rem;
}

#headerMain div nav ul li {
    margin-right: 1rem;
}

#headerMain div nav ul li:before {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
    content: "arrow_drop_down";
    transform: rotate(-90deg);
    font-size: 1rem;
}

#headerMain div aside {
    padding: 1rem 0;
    text-align: right;
}

#headerMain div aside p:nth-of-type(1) {
    display: inline-block;
    font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
    font-size: 0.75rem;
    text-decoration: underline;
}

#headerMain div aside address span:nth-of-type(1) {
    margin-left: 0.5rem;
    font-size: 1.2rem;
}

#headerMain div aside address span:nth-of-type(2) {
    display: block;
    font-size: 0.8rem;
}

#headerMain div aside .note {
    display: block !important;
    font-size: 0.7rem;
    font-weight: bold;
}

/* Global Navigation */
#globalNav {
    width: 100%;
    background: #8c8886;
    color: #fff;
}

#globalNav > ul {
    margin: 0 auto;
    width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

@media screen and (max-width: 640px) {
    #globalNav > ul {
        width: 100%;
    }
}

#globalNav > ul > li > a {
    display: inline-block;
    padding: 0.5rem 3rem;
}

#globalNav > ul a,
#globalNav > ul a:hover,
#globalNav > ul a:active,
#globalNav > ul a:focus,
#globalNav > ul a:visited {
    color: #fff;
}

#globalNav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

/* Global Navigation Dropdown */
#globalNav .globalNavChildMenu:hover > a {
    position: relative;
}

#globalNav .globalNavChildMenu:hover > a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -9px;
    display: block;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 9px 9px 9px;
    border-color: transparent transparent #fff transparent;
    z-index: 0;
}

#globalNav .globalNavChildMenu .globalNavChildContainer {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 1.5rem;
    width: 1100px;
    background: #fff;
    z-index: 100;
    text-align: left;
}

#globalNav .globalNavChildMenu .globalNavChildContainer ul {
    width: 25%;
}

#globalNav .globalNavChildMenu .globalNavChildContainer ul a {
    display: block;
    padding: 0.5rem;
}

#globalNav .globalNavChildMenu .globalNavChildContainer a,
#globalNav .globalNavChildMenu .globalNavChildContainer a:hover {
    color: #403b38;
}

#globalNav .globalNavChildMenu .globalNavChildContainer .pickUp {
    width: 50%;
    font-size: 0;
}

#globalNav .globalNavChildMenu .globalNavChildContainer .pickUp p {
    padding: 0 0 1.5rem 0;
    color: #403b38;
    font-size: 1rem;
}

#globalNav .globalNavChildMenu .globalNavChildContainer .pickUp a {
    display: inline-block;
    width: 50%;
}

#globalNav .globalNavChildMenu .globalNavChildContainer .pickUp a img {
    display: block;
    margin: 0 auto;
    width: 80%;
}

#globalNav .globalNavChildMenu .globalNavChildContainer .pickUp a img + p {
    padding: 1rem 0 1rem 2rem;
}

#globalNav .globalNavChildMenu:hover .globalNavChildContainer {
    display: flex;
}

/* Mobile Header */
@media screen and (max-width: 640px) {
    #headerTop, #headerMain, #globalNav {
        display: none;
    }
    
    #headerSp {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        width: 100%;
        padding: 1rem;
        background: #f1f0ec;
    }
    
    #headerSp a.drawerNavSpBtn:after {
        font-family: 'Material Icons';
        font-weight: normal;
        font-style: normal;
        font-size: 1rem;
        line-height: 1;
        letter-spacing: normal;
        text-transform: none;
        display: inline-block;
        vertical-align: middle;
        white-space: nowrap;
        word-wrap: normal;
        direction: ltr;
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
        -moz-osx-font-smoothing: grayscale;
        font-feature-settings: 'liga';
        content: "menu";
        font-size: 2rem;
    }
    
    #headerSp .headerSpLogo {
        text-align: center;
    }
    
    #headerSp .headerSpLogo img {
        width: 50%;
    }
    
    #headerSp a.cart:after {
        font-family: 'Material Icons';
        font-weight: normal;
        font-style: normal;
        font-size: 1rem;
        line-height: 1;
        letter-spacing: normal;
        text-transform: none;
        display: inline-block;
        vertical-align: middle;
        white-space: nowrap;
        word-wrap: normal;
        direction: ltr;
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
        -moz-osx-font-smoothing: grayscale;
        font-feature-settings: 'liga';
        content: "shopping_cart";
        font-size: 2rem;
    }
}

/* Mobile Drawer Navigation */
@media screen and (max-width: 640px) {
    #drawerNavSp {
        display: flex;
        position: fixed;
        top: 0;
        left: 100%;
        z-index: 999;
        width: 80%;
        height: 100%;
        color: #fff;
        transition: 0.5s;
        overflow-x: visible;
        -webkit-overflow-scrolling: touch;
    }
    
    #drawerNavSp a,
    #drawerNavSp a:hover,
    #drawerNavSp a:active,
    #drawerNavSp a:focus,
    #drawerNavSp a:visited {
        color: #fff;
    }
    
    #drawerNavSp.insight {
        transform: translateX(-100%);
    }
    
    #drawerNavSp div {
        display: block;
        position: relative;
        width: 5rem;
    }
    
    #drawerNavSp .drawerNavSpBtn {
        position: absolute;
        background: #8c8886;
        width: 100%;
        padding: 0.5rem;
        box-sizing: border-box;
        bottom: 60px;
        font-size: 0.8rem;
        text-align: center;
    }
    
    #drawerNavSp .drawerNavSpBtn:before {
        font-family: 'Material Icons';
        font-weight: normal;
        font-style: normal;
        font-size: 1rem;
        line-height: 1;
        letter-spacing: normal;
        text-transform: none;
        display: inline-block;
        vertical-align: middle;
        white-space: nowrap;
        word-wrap: normal;
        direction: ltr;
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
        -moz-osx-font-smoothing: grayscale;
        font-feature-settings: 'liga';
        content: "close";
        display: block;
        font-size: 2rem;
    }
    
    #drawerNavSp > ul {
        width: calc(100% - 5rem);
        padding-bottom: 7rem;
    }
    
    #drawerNavSp ul {
        height: 100%;
        background: #8c8886;
        overflow-y: scroll;
    }
    
    #drawerNavSp ul li > a,
    #drawerNavSp ul li > p {
        display: block;
        padding: 1rem;
    }
    
    #drawerNavSp ul ul li {
        border-bottom: 1px solid #fff;
    }
    
    #drawerNavSp ul ul li:first-of-type {
        border-top: 1px solid #fff;
    }
    
    #drawerNavSp ul ul li a {
        display: block;
        padding: 0.75rem 1rem 0.75rem 2rem;
    }
    
    #drawerNavSp ul .pickUp {
        background: #ffffc8;
        border-bottom: 1px solid #8c8886;
    }
    
    #drawerNavSp ul .pickUp a {
        background:#8c8886;
    }
    
    #drawerNavSp ul p {
        color: #ffffc8;
    }
}

/* Footer Float Button - Desktop & Mobile */
#footerSp {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: fixed;
    z-index: 1001;
    pointer-events: none;
}

/* Desktop Style */
@media screen and (min-width: 641px) {
    #footerSp {
        right: 30px;
        bottom: 30px;
        left: auto;
        width: auto;
        height: auto;
        padding: 0;
        background: transparent;
    }
    
    #footerSp ul li a {
        background: #8c8886;
        color: #fff;
        padding: 1rem 2rem;
        border-radius: 50px;
        font-size: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }
    
    #footerSp ul li a:hover {
        background: #7a7674;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        transform: translateY(-2px);
    }
}

/* Common Styles */
#footerSp ul {
    display: flex;
    width: auto;
}

#footerSp ul li {
    font-size: 0.9rem;
    text-align: center;
    color: #fff;
    list-style: none;
    pointer-events: auto;
}

#footerSp ul li:before {
    content: none;
}

#footerSp ul li a {
    display: block;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

/* Site Map */
#siteMap {
    width: 100%;
    padding: 1.5rem 0;
    background: #403b38;
}

#siteMap > div {
    margin: 0 auto;
    width: 1100px;
}

@media screen and (max-width: 640px) {
    #siteMap > div {
        width: 100%;
    }
}

#siteMap > div h2 {
    margin-bottom: 1rem;
    text-decoration: underline;
}

#siteMap > div div {
    display: flex;
    justify-content: space-between;
}

#siteMap > div div nav {
    width: calc(100% / 6);
    font-size: 0.8rem;
}

#siteMap > div div nav:nth-of-type(3) {
    width: calc((100% / 6) * 2);
}

#siteMap > div div nav h3 {
    margin-bottom: 1rem;
}

#siteMap > div div nav h3:after {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
    content: "keyboard_arrow_rightkeyboard_arrow_right";
    letter-spacing: -0.5rem;
    margin-left: 0.5rem;
}

#siteMap > div div nav li {
    margin: 0.25rem 0;
}

#siteMap > div div nav > div ul {
    width: 50%;
}
/* Shopping Guide */
#shoppingGuide {
    width: 100%;
    padding: 1.5rem 0;
    background: #403b38;
}

#shoppingGuide > div {
    margin: 0 auto;
    width: 1100px;
    position: relative;
    padding-top: 1rem;
    color: #fff;
}

@media screen and (max-width: 640px) {
    #shoppingGuide > div {
        width: 100%;
    }
}

#shoppingGuide > div > h2 {
    margin-bottom: 2rem;
    text-align: center;
}

#shoppingGuide > div nav {
    position: absolute;
    top: 1rem;
    right: 0;
}

#shoppingGuide > div nav a,
#shoppingGuide > div nav a:hover,
#shoppingGuide > div nav a:active,
#shoppingGuide > div nav a:focus,
#shoppingGuide > div nav a:visited {
    color: #fff;
}

#shoppingGuide > div nav > a:after {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
    content: "keyboard_arrow_rightkeyboard_arrow_right";
    letter-spacing: -0.5rem;
    margin-left: 0.5rem;
}

#shoppingGuide > div aside {
    display: none;
}

#shoppingGuide > div div {
    display: flex;
    justify-content: space-between;
}

#shoppingGuide > div div article {
    width: calc(100% / 4);
    font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
    font-size: 0.9rem;
    padding: 0 1rem;
}

#shoppingGuide > div div article h2 {
    position: relative;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding: 1rem 0;
}

#shoppingGuide > div div article h2:after {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
    content: "keyboard_arrow_right";
    letter-spacing: -0.5rem;
    margin-left: 0.5rem;
    margin-left: 2rem;
    position: absolute;
    right: 0;
    transform: translateX(-100%);
}

#shoppingGuide > div div article:first-of-type {
    padding: 0 1rem 0 0;
}

#shoppingGuide > div div article:last-of-type {
    padding: 0 0 0 1rem;
}

#shoppingGuide > div div article li {
    margin: 1rem 0 1rem 1rem;
    text-indent: -1rem;
}

#shoppingGuide > div div article li:before {
    content: "\30fb";
}

/* Footer */
footer {
    padding: 1.5rem 0;
    background: #403b38;
}

footer a,
footer a:hover,
footer a:active,
footer a:focus,
footer a:visited {
    color: #fff;
}

footer > div {
    margin: 0 auto;
    width: 1100px;
    color: #fff;
}



@media screen and (max-width: 640px) {
    footer > div {
        width: 100%;
    }
}

footer > div .inner {
    display: flex;
    align-items: center;
    border: 1px solid #fff;
}

footer > div .inner > * {
    width: calc(100% / 2);
}

footer > div .inner div {
    border-right: #fff solid 1px;
    text-align: center;
}

footer > div .inner div img {
    padding: 1rem 0;
    width: 50%;
}

footer > div .inner address {
    padding: 0 1rem;
    font-size: 0.9rem;
}

footer > div ul {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
    font-size: 0.8rem;
    text-align: center;
}

footer > div ul li:after {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
    content: "keyboard_arrow_right";
    letter-spacing: -0.5rem;
    margin-left: 0.5rem;
    margin-left: 1rem;
}

footer > div small {
    display: block;
    padding: 2rem 0;
    width: 100%;
    font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
    text-align: center;
}

/* Tablet Responsive Styles */
@media screen and (min-width: 641px) and (max-width: 1199px) {
    #siteMap {
        display: flex;
    }
    
    #siteMap > div {
        margin: 0 auto;
        width: 100vw;
        padding: 0 1rem;
    }
    
    #siteMap > div div {
        flex-wrap: wrap;
    }
    
    #siteMap > div div nav {
        margin-bottom: 2rem;
        width: 50%;
    }
    
    #siteMap > div div nav:nth-of-type(3) {
        width: 50%;
    }
    
    #shoppingGuide > div {
        width: 100vw;
    }
    
    #shoppingGuide > div nav {
        right: 1rem;
    }
    
    #shoppingGuide > div div {
        flex-wrap: wrap;
    }
    
    #shoppingGuide > div div article {
        width: 50%;
    }
    
    #shoppingGuide > div div article:first-of-type,
    #shoppingGuide > div div article:last-of-type {
        padding: 0 1rem;
    }
    
    footer > div {
        width: 100vw;
    }
    
    footer > div .inner {
        justify-content: center;
        flex-wrap: wrap;
        margin: 0 1rem;
    }
    
    footer > div .inner > * {
        padding: 1rem 0;
    }
    
    footer > div ul {
        flex-wrap: wrap;
    }
    
    footer > div ul li {
        width: 33%;
        margin: 0.25rem 0;
    }
}

/* Mobile Responsive Styles */
@media screen and (max-width: 640px) {
         #footerSp {
        left: 0;
        bottom: 0;
        padding: 0.7rem 1rem;
        width: 100%;
        height: 60px;
        background: transparent;
    }
    
    #footerSp div {
        width: auto;
    }
    
    #footerSp ul {
        display: flex;
        width: auto;
    }
    
    #footerSp ul li {
        width: auto;
        font-size: 0.8rem;
        text-align: center;
        color: #fff;
        list-style: none;
        pointer-events: auto;
    }
    
    #footerSp ul li:before {
        content: none;
    }
    
    #footerSp ul li a {
        display: block;
        color: #fff;
        background: #8c8886;
        padding: 0.5rem 1rem;
        border-radius: 0;
    }
    
    #footerSp ul li img {
        width: 24px;
        margin-bottom: 0.2rem;
    }
    
    body.footerSpMargin {
        margin-bottom: 60px;
    }
    
    
    #siteMap {
        display: none;
    }
    
    #shoppingGuide {
        padding: 0;
    }
    
    #shoppingGuide div h2 {
        margin-bottom: 1rem;
    }
    
    #shoppingGuide div > nav {
        display: none;
    }
    
    #shoppingGuide div aside {
        display: block;
        padding-bottom: 1rem;
        text-align: center;
    }
    
    #shoppingGuide div aside > * {
        display: inline-block;
        margin: 0 0.25rem;
        padding: 0.25rem 0.5rem;
        background: #fff;
        color: #403b38;
        font-size: 0.9rem;
    }
    
    #shoppingGuide div div {
        flex-wrap: wrap;
    }
    
    #shoppingGuide div div article,
    #shoppingGuide div div article:first-of-type,
    #shoppingGuide div div article:last-of-type {
        padding: 0 1rem;
        width: 100%;
    }
    
    #shoppingGuide div div article h2,
    #shoppingGuide div div article:first-of-type h2,
    #shoppingGuide div div article:last-of-type h2 {
        margin-bottom: 0;
        border-bottom: none;
    }
    
    #shoppingGuide div div article ul,
    #shoppingGuide div div article:first-of-type ul,
    #shoppingGuide div div article:last-of-type ul {
        display: none;
    }
    
    footer div .inner {
        flex-wrap: wrap;
    }
    
    footer div .inner > * {
        width: 100%;
    }
    
    footer div .inner > div {
        border-right: none;
    }
    
    footer div .inner address {
        padding-bottom: 1rem;
    }
    
    footer div .inner address p {
        text-align: center;
    }
    
    footer div ul {
        flex-wrap: wrap;
    }
    
    footer div ul > li {
        padding: 0.5rem 0;
        width: calc(100% / 2);
    }
    
    footer div small {
        font-size: 0.5rem;
    }
}

/* Additional Font Face - Cormorant Garamond */
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/cormorantgaramond/v21/co3umX5slCNuHLi8bLeY9MK7whWMhyjypVO7abI26QOD_v86KnTOjw.ttf) format('truetype');
}

/* Override for Alphanumeric Font */
.font_h_alphanumeric {
    font-family: 'Cormorant Garamond', serif;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Awards Page Specific Styles */
html {
    font-size: 16px;
}


* {
    box-sizing: border-box;
}

html, body {
    min-width: 1300px;
}

main {
    color: #FFF;
}

main a,
main a:hover,
main a:active,
main a:focus,
main a:visited {
    color: #FFF;
}

#globalNav {
    display: none;
    position: fixed;
    z-index: 1000;
    margin-bottom: 1.5rem;
}

#globalNav ul {
    padding: 0;
}

#globalNav ul a {
    display: block;
    padding: 0.5rem 2rem;
}

/* Main Visual Animation */
@keyframes mainVisualLoopSlide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

#mainVisual {
    position: relative;
    width: 100%;
    overflow: hidden;
}

#mainVisual header {
    position: absolute;
    left: 50%;
    bottom: 10%;
    transform: translateX(-50%);
}

#mainVisual header h1 {
    display: inline-block;
    width: 300px;
}

#mainVisual header .logo-image {
    display: inline-block;
    width: 300px;
}

#mainVisual header .logo-image img {
    width: 100%;
}

#mainVisual .mainVisual-content {
    display: flex;
    transform: translateX(-3600px) translateX(50vw) translateX(-450px);
}

#mainVisual ul.mainVisual-unit {
    animation: mainVisualLoopSlide 50s infinite linear 1s both;
    display: flex;
}

#mainVisual ul.mainVisual-unit li img {
   width:900px;
    height: 600px;
  object-fit: cover;
}

/* Awards Section Header */
#header {
    margin: 3rem auto;
    width: 900px;
    text-align: left;
  padding-left: 80px;
}

#header h1 {
    margin-top: 5rem;
  margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: bold;
}
#header h2 {
    margin-top: 2rem;
  margin-bottom: 0.5rem;
    font-size: 1.4rem;
}
#header p {
    margin-bottom: 1rem;
  font-size: 1.1rem;
}

#header ol li a {
    color: #FFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

#header ol li a:hover {
    color: #8c8886;
    text-decoration: underline;
}

/* 目次の行間を広く */
#header ol li {
    margin-bottom: 1.5rem; /* 行間の調整（お好みで0.8rem〜1.5remなど変更可能） */
}

#header ol li:last-child {
    margin-bottom: 0; /* 最後の項目は下マージンなし */
}

#header .signature-text {
    font-family: 'Botterill Signature', cursive;
    font-size: 5rem;
    transform: rotate(-3deg);
    display: inline-block;
    position: relative;
    top: 50px;
    z-index: 1;
}


/* Media Date Style - 放送日に下線 */
.media-date {
    text-decoration: underline;
  margin-bottom: 2rem;
}

/* 背景色の制御用クラス */
.bg-light {
    background: #4A3429 !important; 
}

.bg-dark {
    background: #0E1D21 !important; 
}

/* Awards List */
#awards {
    background: #7A6145;
    margin:3rem 0 5rem 0;
    padding: 3rem 0 5rem 0;
    width: 100%; /* 900px → 100% に変更 */
}

/* Awards section内のコンテンツは中央寄せで幅を制限 */
#awards > * {
  margin-top:3rem;
  margin-left:auto;
  margin-right:auto;
    max-width: 900px;
  padding-left: 100px;
    padding-right: 0;
}

#awards .cta-btn {
    display: block;
    width: fit-content;
    margin: 0rem auto 4rem auto;
}

#awards > span {
  font-size: 1.3rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
    text-align: left; /* テキスト自体も中央揃え */
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* workshop-imageは例外的に幅を保持 */
#awards .workshop-image {
    margin-left: auto;
    margin-right: auto;
  margin-bottom: 2rem;
    max-width: 1200px;
}
#awards ul li strong {
    font-size: 1.2rem;
}

#awards li.desktop-text {
    margin-top: 3rem;
  margin-bottom: 1rem;
}

#awards li.mobile-text {
    margin-top: 3rem;
    margin-bottom: 1rem;
}
/* regional-activityも幅を保持 */
#awards .regional-activity {
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
}

.regional-activity {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin: 1rem 0;
}

/* Regional Activity Reverse - 画像左、テキスト右 */
.regional-activity-reverse {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin: 1rem 0;
    flex-direction: row-reverse; /* テキストを右、画像を左に */
}

.regional-activity-reverse .activity-text {
    flex: 2;
}

.regional-activity-reverse .activity-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: none;
}

/* デスクトップで画像を横並びにする */
@media screen and (min-width: 641px) {
    .regional-activity-reverse .activity-image {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .regional-activity-reverse .activity-image > div {
        flex: 1;
    }
}

.regional-activity-reverse .activity-image img {
    width: 100%;
    height: auto;
}


/* navigation-sectionも幅を保持 */
#awards .navigation-section {
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
}





#awards h3 {
 
    font-size: 1.3rem;
    margin-left: auto;
    margin-right: auto;
  margin-top: 2rem;
    color: #FFF;
}

/* Ensure awards h2 tags maintain consistent styling */
#awards h2 {
    font-size: 1.4rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
    color: #FFF;
}


#index2 {
    margin:3rem 0;
    padding: 3rem 0 1.5rem 0;
    width: 100%; /* 900px → 100% に変更 */
}

/* Awards section内のコンテンツは中央寄せで幅を制限 */
#index2 > * {
  margin-top:2rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
  padding-left: 100px;
    padding-right: 0;
}


#index2 h2 {
    margin-bottom: 2rem;
    font-size: 1.4rem;
    text-align: center;
    padding-left: 0; /* 中央配置のため左余白をリセット */
}

#index2 > p {
    margin-bottom: 2rem !important;
    text-align: left;
    padding-left: 100px;
}

#index2 h3 {
  margin-top: 0;
    font-size: 1.3rem;
    color: #FFF;
}

#index2 p {
    margin-bottom: 5rem;
}


#index2 .column-message {
    text-decoration: underline;
    padding: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 auto; /* 左右をautoに変更 */
    text-align: left !important;
    max-width: 900px !important;
  margin-bottom: 1rem !important;
}

#index2 ul li {
    list-style: none;
}

#index2 ul li:before {
    content: none;
}
/* aタグを含む親要素も中央配置 */
#index2 a:has(.column-message) {
    display: block;
    text-align: left;
    padding-left: 100px !important;
    max-width: 900px !important; /* 900px → 1000px に変更 */
    margin-left: auto;
    margin-right: auto;
}

#index2 .workshop-image {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    max-width: 1200px;
    padding-left: 0 !important;  /* 親から継承されるpadding-leftを打ち消す */
}

#index2 h4 {
    max-width: 700px;
    margin-top: 5rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center; /* left → center に変更 */
    padding-left: 0; /* 20px → 0 に変更（中央揃えのため） */
    margin-bottom: 0.5rem;
    font-size: 1.3rem; /* 1.2rem → 1.5rem に変更（サイズを大きく） */
}

#index2 h4 + p {
    margin-top: 0.5rem !important;
}

#index2 h3:has(.media-date) {
    margin-top: 5rem;
}

/* 左配置・左揃えテキスト */
.text-left {
    text-align: left !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}



  
/* Index3 Section - awardsスタイルを継承 */
#index3 {
    margin:3rem 0;
    padding: 3rem 0 5rem 0;
    width: 100%; /* 900px → 100% に変更 */
}

/* Awards section内のコンテンツは中央寄せで幅を制限 */
#index3 > * {
  margin-top:3rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
  padding-left: 100px;
    padding-right: 0;
}
#index3 h2 {
  margin-top: 4rem;
}

#index3 > span {
    font-size: 1.3rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
    text-align: left;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
#index3 .workshop-image {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
    max-width: 1200px;
    padding-left: 0;
}
#index3 .navigation-section {
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
}
#index3 h2 {
    font-size: 1.4rem;
  margin: 3rem auto;
    max-width: 900px;
    color: #FFF;
}
#index3 h3 {
  text-align: left;
    font-size: 1.3rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3rem;
  margin-bottom: 1rem;
    color: #FFF;
  max-width: 1000px;
}

#index3 h3 .media-date {
    display: block;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    
}

#index3 h4 {
    max-width: 700px;
  margin-top: 5rem;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    padding-left: 20px;
    margin-bottom: 0.5rem; /* 追加 */
  font-size: 1.2rem;
}

#index3 h4 .media-date {
    display: inline-block;
}

#index3 h4 + p {
    margin-top: 0; /* 追加 */
}

#index3 p {
  max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  margin-bottom: 0.5rem;
    text-align: left;
    padding-left: 20px;
}
#index3 .cta-btn {
    display: block;
    width: fit-content;
    margin: 0rem auto 4rem auto;
}
#index3 ul {
    max-width: 600px;
    margin: 1rem auto;
    text-align: left;
    padding-left: 20px;
}


#index3 h3.aligned-h3 {
  margin-top: 5rem;
    max-width: 700px;
    text-align: left;
    padding-left: 20px;
}

#index3 .aligned-ul + p {
    max-width: 600px;
  margin-top: 0.5rem;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    padding-left: 20px;
}

/* section9の実績リスト用 */
#index3 ul.desktop-text {
    max-width: 700px;
}

/* section9の実績リスト直後のp */
#index3 ul.desktop-text + p.desktop-text {
    max-width: 700px;
}

/* View More Button */
.cta-btn {
    display: inline-block;
    margin: 0rem auto 4rem auto;
    padding: 1rem 3rem !important;
    border: 2px solid #FFF;
    border-radius: 50px;
    color: #FFF;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #FFF;
    color: #1A1E1C;
}

#index2 a.cta-btn {
    display: inline-block;
    margin: auto;
}

/* Center the button */
#awards .cta-btn {
    display: block;
    width: fit-content;
    margin: 0rem auto 4rem auto;
}


/* Workshop Image */
.workshop-image {
    margin-top: 2rem;
    width: 100%;
    text-align: center;
}

.workshop-image img {
    max-width: 100%;
    height: auto;
    width: auto;
    max-height: 600px;
    object-fit: contain;
}


/* Regional Activity Section */
.regional-activity {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin: 1rem 0;
}

.activity-text {
    flex: 1.5;
}

.activity-image {
    flex: 1.5;
    display: flex;
    flex-direction: column; /* デフォルトは縦並び */
    gap: 1.5rem;
    max-width: none; /* 300pxの制限を解除 */
   margin-top: 3rem;
}

/* デスクトップで画像を横並びにする */
@media screen and (min-width: 641px) {
    .activity-image {
        flex-direction: row; /* デスクトップでは横並び */
        gap: 1.5rem;
    }
    
    .activity-image > div {
        flex: 1;
    }
}

.activity-image img {
    width: 100%;
    height: auto;
}


.image-caption {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    text-align: center;
    color: #FFF;
    line-height: 1.4;
}

.image-caption .caption-title {
    font-size: 1.1rem; /* 通常より大きく */
    font-weight: bold; /* 太字にする（オプション） */
    display: block;
  margin-top: 0.5rem; /* 二行目との間に余白 */
    margin-bottom: 0.5rem; /* 二行目との間に余白 */
}

.image-caption .caption-title.underline {
    text-decoration: underline;
}

#index3 .aligned-ul {
    max-width: 700px;
    margin: 1rem auto;
    text-align: left;
    padding-left: 20px;
}

#index3 .aligned-ul + p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    padding-left: 20px;
}
/* Popular Flowers - デスクトップ用（新規追加） */
#index2 .activity-image.popular-flowers {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    max-width: 1200px; /* お好みで調整 */
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
}

#index2 .activity-image.popular-flowers > div {
    flex: 1;
}

#index2 .activity-image.popular-flowers img {
    width: 100%;
    height: auto;
}

  /* Popular Flowers Slider */
.popular-flowers-slider {
    margin: 2rem auto;
    max-width: 1200px;
}

.popular-flowers-slider > div {
    padding: 0 10px;
}

.popular-flowers-slider img {
    width: 100%;
    height: auto;
    display: block;
}

.popular-flowers-slider .image-caption {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.4;
}

/* Slick dots customization for popular-flowers */
.popular-flowers-slider.slick-slider {
    margin-bottom: 3rem;
}

.popular-flowers-slider .slick-dots {
    bottom: -40px;
}

.popular-flowers-slider .slick-dots li button:before {
    font-size: 12px;
    color: #fff;
    opacity: 0.5;
}

.popular-flowers-slider .slick-dots li.slick-active button:before {
    color: #fff;
    opacity: 1;
}

/* Popular Flowers Slider Controls - おしゃれバージョン */
.popular-flowers-slider .slick-prev,
.popular-flowers-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    border: none;
    border-radius: 0;
    width: 40px;
    height: 60px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    padding: 0;
}

/* デフォルトの矢印を非表示 */
.popular-flowers-slider .slick-prev:before,
.popular-flowers-slider .slick-next:before {
    content: '' !important;
    display: none !important;
}

.popular-flowers-slider .slick-prev:hover,
.popular-flowers-slider .slick-next:hover {
    background: rgba(255, 255, 255, 0.5);
}

.popular-flowers-slider .slick-prev {
    left: 10px;
}

.popular-flowers-slider .slick-next {
    right: 10px;
}

.popular-flowers-slider .slick-prev span,
.popular-flowers-slider .slick-next span {
    display: block;
    line-height: 60px;
}

/* 中央のスライド強調は削除（不要） */
.popular-flowers-slider .slick-slide {
    margin: 0 10px;
}


/* 2カラム用の新しいクラス */
#index3 .two-column-ul {
    display: flex;
    gap: 2rem;
    max-width: 900px;
    justify-content: center;
}

#index3 .two-column-ul li {
    flex: 1;
    list-style: none;
}

#index3 .two-column-ul li:before {
    content: none;
}

#index3 .two-column-ul .cta-btn {
    width: 100%;
    margin: 0;
}

/* Price Table Image */
.price-table-image {
    margin: 2rem auto 4rem auto;
    text-align: center;
}

.price-table-image img {
    max-width: 100%;
    height: auto;
    width: 600px;
}


/* Message Examples Styling */
.message-examples {
    list-style: none;
    padding: 0;
    margin: 2rem auto;
    max-width: 700px;
}

.message-examples li {
    background: rgba(201, 160, 111, 0.4); /* 白背景で半透明 */
    border: none; /* 囲み枠なし */
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    color: #fff; /* テキストを暗い色に */
    line-height: 1.8;
    font-size: 1rem;
}

.message-examples li:last-child {
    margin-bottom: 0;
}

.message-examples li:before {
    content: none; /* リスト記号を非表示 */
}

/* FAQ Section Styles */
#faq-section-10 {
    margin: 3rem 0 0 0; /* autoを削除 */
    padding: 3rem 0 1.5rem 0;
    width: 100%; /* 900px → 100%に変更 */
    max-width: 100%; /* 900px → 100%に変更 */
}

.faq-section {
    margin: 6rem 0 0 0 !important; /* autoを削除 */
    padding: 3rem 0 1.5rem 0 !important;
    width: 100% !important; /* 900px → 100%に変更 */
    max-width: 100% !important; /* 900px → 100%に変更 */
}

/* 内部のコンテンツは900pxで中央配置 */
.faq-section h2 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
  font-size: 1.3rem;
    padding-left: 0 !important;
}

.faq-container {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
/* セクション内の全要素を中央揃え */
#faq-section-10 *:not(.faq-question):not(.faq-answer):not(.faq-answer p),
.faq-section *:not(.faq-question):not(.faq-answer):not(.faq-answer p) {
    text-align: center !important;
}


.faq-item {
    margin-bottom: 2rem;
    border: none;
    border-radius: 0;
    overflow: visible;
    background: transparent;
}

.faq-question {
  text-align: left !important;
    padding: 1rem 3rem 1rem 3rem;
    font-size: 1.1rem;
    font-weight: normal;
    cursor: pointer;
    position: relative;
    transition: opacity 0.3s ease;
    color: #FFF;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.faq-question:hover {
    opacity: 0.7;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    color: #FFF;
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  text-align: left !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
    color: #FFF;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1rem 3rem 2rem 3rem;
}

.faq-answer p {
  text-align: left !important;
    margin: 0;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Navigation Section */
.navigation-section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

#index2.budget-section .comment {
    text-align: center;
    padding-left: 0 !important;
    margin-left: 0 !important;
    max-width: 100%;
    margin-top: 3rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.nav-item {
    flex: 1;
    text-align: center;
}

.nav-item h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #FFF;
    font-weight: bold;
}

.nav-item a {
    display: block;
    transition: transform 0.3s ease;
}

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

.nav-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

h2 span.desktop-text {
    display: inline;
}

h2 span.mobile-text {
    display: none;
}


#stickyBar {
  display: none;
}

/* Mobile Responsive for Awards */
@media screen and (max-width: 640px) {
    html {
        font-size: 14px;
    }
    
    html, body {
        min-width: initial;
    }
  
    
    #headerSp {
        margin-bottom: 1.5rem;
    }
    
    #mainVisual {
        position: relative;
        width: 100%;
        overflow: hidden;
    }
    
    #mainVisual header h1 {
        width: 65vw;
    }
    
    #mainVisual .mainVisual-content {
        transform: translateX(-2640px) translateX(50vw) translateX(-330px);
    }
    
    #mainVisual ul.mainVisual-unit {
        font-size: 0;
    }
    
    #mainVisual ul.mainVisual-unit li img {
        width: auto;
        height: 440px;
    }
  
   #mainVisual header .logo-image {
        width: 65vw;
    }
    
    #header h1 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
      margin-left: 2rem;
    }
  
    #header p {
      font-size: 1.1rem;
        margin-bottom: 1.5rem;
      margin-left: 1rem;
    }
    #header h2 {
        font-size: 1.1rem;  /* ← この3行を追加 */
    }
    #header {
        width: 100%;
      padding: 0 1.5rem;
    }
  
  
   #awards h2 {
        font-size: 1.1rem;
    }
    
    
  #index3 h2 {
        font-size: 1.1rem;
        margin: 3rem auto 1rem auto; /* 上3rem、右auto、下1rem、左auto */
    }
  
    #index3 h3 {
       font-size: 1.1rem !important;
      text-align:left;
    }
  
  #index3 h3.aligned-h3 {
    font-size: 1.1rem;
  }
  
  
   .image-caption {
        font-size: 0.8rem;
    }
    
      #awards {
        width: 100%;
        padding: 2rem 1.5rem 1.5rem 1.5rem;
    }
    
    #awards > * {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 0;
    }
  
  #awards .workshop-image {
        padding-left: 0;
    }
  
   #awards > span {
        max-width: 100%;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
   #awards ul li strong {
        font-size: 1.2rem;
    }
    
   #index2 {
        width: 100%;
        padding: 0 1.5rem;
    }
    
    #index2 h2 {
      font-size: 1.2rem;
        text-align:left;
        padding-left: 0;
      margin-left: 2rem;
    }
  
   h2#section2 {
        margin-left: 1rem !important;  /* 2rem → 1rem に変更 */
    }
  #index2 h3 {
        text-align: left;
        padding-left: 0;
      margin-left: 1rem;
    font-size: 1.2rem;
    }
  
 #index2 h4 {
    text-align: center; /* left → center に変更 */
    padding-left: 0; /* 1rem → 0 に変更 */
    margin-left: auto; /* 1rem → auto に変更 */
    margin-right: auto; /* 追加 */
    margin-bottom: 0.5rem;
    font-size: 1.3rem; /* 1.1rem → 1.3rem に変更 */
}
  
 
  
 #index2 > p.mobile-text {
    text-align: left;
    padding-left: 0;
    margin-left: 1rem ;
  }
  
      
      #index2 p {
        text-align: left;
        padding-left: 0;
      margin-left: 1rem;
    }
    
     #index2 > p {
        text-align: left;
        padding-left: 0;
    }  
 
    #index2 ul {
        padding-left: 1.5rem;
        margin-left: 0;
        text-align: left;
    }
    
    #index2 ul li {
        text-align: left;
        margin-bottom: 0.5rem;
    }
  
   #index2 .workshop-image {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100%;
    }
    
    #index2 .workshop-image img {
        width: 100%;
        height: auto;
    }
  
  
  .text-left {
        text-align: left !important;
        padding-left: 1rem !important;
        margin-left: 0 !important;
    }
  
   .text-left p{
        text-align: left !important;
        padding-left: 1rem !important;
        margin-left: 2rem !important;
    }
  
    #index3 {
        width: 100%;
        padding: 2rem 1.5rem 1.5rem 1.5rem;
    }
    
   #index3 h3 {
        font-size: 1.3rem;
}
  
    #index3 > * {
        max-width: 150%;
        padding-left: 1.5rem;
        padding-right: 0;
    }
    
    #index3 > span {
        max-width: 100%;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    #index3 .workshop-image {
        padding-left: 0;
    }
  
#index3 h4 {
        text-align: left;
        padding-left: 1rem;
  margin-top: 3rem;
        margin-left: 0;
        margin-bottom: 0.5rem; /* 追加 */
    }
    
    #index3 h4 + p {
        margin-top: 0;
    }
  
   #index3 h4.mobile-text {
        font-size: 1.1rem;  /* 1.1rem → 1rem に変更 */
    }
     
  #index2 .column-message,
#index3 .column-message {
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: left;
    font-size: 1rem;
    max-width: 100%;
}
  
     #index3 .two-column-ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    #index3 .two-column-ul .cta-btn {
        width: auto;
    }
  
    .cta-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
  
  .regional-activity {
    flex-direction: column;
    padding: 0;
    margin: 1rem 0;
}

/* regional-activityの画像をpopular-flowersと同じスタイルに */
.regional-activity .activity-image {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
    width: calc(100% + 3rem) !important;
    max-width: calc(100% + 3rem) !important;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0 !important;
    flex-direction: row;
}

.regional-activity .activity-image > div {
    flex: 0 0 calc(50% - 0.25rem);
    max-width: calc(50% - 0.25rem);
}

.regional-activity .activity-image img {
    width: 100%;
    height: auto;
    display: block;
}
    
   /* popular-flowersの4枚表示 */
#index2.flower-gallery .activity-image.popular-flowers {
        margin-left: -1.5rem !important;
        margin-right: -1.5rem !important;
        width: calc(100% + 3rem) !important;
        max-width: calc(100% + 3rem) !important;
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0 !important;
    }
    
    #index2.flower-gallery .activity-image.popular-flowers > div {
        flex: 0 0 calc(50% - 0.25rem);
        max-width: calc(50% - 0.25rem);
    }
    
    #index2.flower-gallery .activity-image.popular-flowers img {
        width: 100%;
        height: auto;
    }
  
 .popular-flowers-slider > div {
        padding: 0 5px;
    }
    
    .popular-flowers-slider .image-caption {
        font-size: 0.8rem;
    }
    
    .popular-flowers-slider .slick-slide {
        margin: 0 5px;
    }
    
    .popular-flowers-slider .slick-prev {
        left: 5px;
        width: 35px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .popular-flowers-slider .slick-next {
        right: 5px;
        width: 35px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .popular-flowers-slider .slick-prev span,
    .popular-flowers-slider .slick-next span {
        line-height: 50px;
    }
  
  .message-examples {
        max-width: 100%;
        margin: 1.5rem 0;
    }
    
    .message-examples li {
        padding: 1rem;
        margin-bottom: 1rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }
  
     .faq-section {
        width: 100%;
        padding: 0 1.5rem !important;
    }

    .faq-section h2 {
        font-size: 1.2rem;
        text-align: left;
        padding-left: 0;
        margin-left: 0;
    }

    .faq-question {
        padding: 1rem 2.5rem 1rem 0;
        font-size: 0.95rem;
        font-weight: normal;
    }

    .faq-question::after {
        right: 0;
        font-size: 1.5rem;
    }

    .faq-answer {
        padding: 0;
    }

    .faq-item.active .faq-answer {
        padding: 1rem 0 2rem 0;
    }

    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
  
  
    /* Mobile Navigation Section */
    .navigation-section {
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 60px;
        padding-top: 30px;
    }
    
    .nav-item {
        flex: 0 0 calc(50% - 15px);
    }
    
    .nav-item h4 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
  
      h2 span.desktop-text {
        display: none !important;
    }
    
    h2 span.mobile-text {
        display: inline !important;
    }
  
  
   .faq-container.desktop-text {
        display: none !important;
    }
    
    .faq-container.mobile-text {
        display: block !important;
    }
    
    /* FAQ内のテキスト要素も切り替え */
    .faq-item .desktop-text {
        display: none !important;
    }
    
    .faq-item .mobile-text {
        display: block !important;
    }
    
    /* FAQセクション全体のモバイル調整 */
    #faq-section-10 {
        width: 100%;
        padding: 2rem 1.5rem 1.5rem 1.5rem !important;
        margin: 3rem 0 0 0 !important;
    }
    
    /* FAQ質問のテキスト配置 */
    .faq-question.mobile-text {
        text-align: left !important;
        padding-left: 0 !important;
        padding-right: 2.5rem;
    }
    
    /* FAQ回答のテキスト配置 */
    .faq-answer.mobile-text {
        text-align: left !important;
    }
    
    .faq-answer.mobile-text p {
        text-align: left !important;
        padding-left: 0 !important;
    }

       #index2.budget-section .comment {
        text-align: center;
        padding-left: 0 !important;
        margin-left: 0 !important;
        padding-right: 1.5rem;
        font-size: 0.9rem;
    }
  
  #stickyBar {
    display: block;
    position: fixed;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    z-index: 1002; /* 1000 → 1002に変更 */
  }
  
  #stickyBar a {
    display: inline-block;
    background: #FFF;
    color: #8c8886;
    font-size: 0.95rem;
    font-weight: bold;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    transition: all 0.3s ease;
  }
  
  #stickyBar a:hover {
    background: #f5f5f5;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  }
  
}