@charset "utf-8";
/* CSS Document */

header.spOnly { display: none;}
/* スクロールを無効にするクラス */
.no-scroll {
    overflow: hidden;
    height: 100vh; /* 全体の高さを固定する */
}
@media (max-width: 1240px) {
header.spOnly { 
    position: relative;
    display: inherit;
    height: calc(64 * (70 / 430) * 1vw);
}

header.spOnly img { 
    width: 100%;
}

header.spOnly p.hedLogo {
    position: absolute;
    width: calc(159 * (70 / 430) * 1vw);
    top: calc(19.6 * (70 / 430) * 1vw);
    left: calc(16.6 * (70 / 430) * 1vw);
}

header.spOnly p.icon1 {
    position: absolute;
    width: calc(32.3 * (70 / 430) * 1vw);
    top: calc(15.2 * (70 / 430) * 1vw);
    right: calc(131.6 * (70 / 430) * 1vw);
}

header.spOnly p.icon2 {
    position: absolute;
    width: calc(34.1 * (70 / 430) * 1vw);
    top: calc(17.5 * (70 / 430) * 1vw);
    right: calc(81 * (70 / 430) * 1vw);
}

}
@media (max-width: 768px) {
header.spOnly { 
    position: relative;
    display: inherit;
    height: calc(64 * (100 / 480) * 1vw);
}

header.spOnly img { 
    width: 100%;
}

header.spOnly p.hedLogo {
    position: absolute;
    width: calc(159 * (100 / 480) * 1vw);
    top: calc(19.6 * (100 / 480) * 1vw);
    left: calc(16.6 * (100 / 480) * 1vw);
}

header.spOnly p.icon1 {
    position: absolute;
    width: calc(32.3 * (100 / 480) * 1vw);
    top: calc(15.2 * (100 / 480) * 1vw);
    right: calc(131.6 * (100 / 480) * 1vw);
}

header.spOnly p.icon2 {
    position: absolute;
    width: calc(34.1 * (100 / 480) * 1vw);
    top: calc(17.5 * (100 / 480) * 1vw);
    right: calc(81 * (100 / 480) * 1vw);
}

}

@media only screen and (max-width: 480px) {
header.spOnly { 
    position: relative;
    display: inherit;
    height: calc(64 * (100 / 430) * 1vw);
}

header.spOnly img { 
    width: 100%;
}

header.spOnly p.hedLogo {
    position: absolute;
    width: calc(159 * (100 / 430) * 1vw);
    top: calc(19.6 * (100 / 430) * 1vw);
    left: calc(16.6 * (100 / 430) * 1vw);
}

header.spOnly p.icon1 {
    position: absolute;
    width: calc(32.3 * (100 / 430) * 1vw);
    top: calc(15.2 * (100 / 430) * 1vw);
    right: calc(131.6 * (100 / 430) * 1vw);
}

header.spOnly p.icon2 {
    position: absolute;
    width: calc(34.1 * (100 / 430) * 1vw);
    top: calc(17.5 * (100 / 430) * 1vw);
    right: calc(81 * (100 / 430) * 1vw);
}

}


aside h1 {
    width: 187px;
    margin: 24px auto 32px auto;
}

aside h1 img {
    width: 100%;
    filter: brightness(0) invert(1);
}

aside nav {
    margin: 0 0 30px 0;
}


.sidebar {
    position: fixed;
    top: 0; /* 画面の上部に固定 */
    left: 0; /* 画面の左側に固定 */
    width: 250px;
    height: 100vh; /* サイドメニューの高さを画面全体に設定 */
    background-color: #208080;
    color: white;
    padding: 20px;
    box-shadow: 8px 0 9px -3px rgba(0, 0, 0, 0.13);
    overflow-y: auto; /* 縦方向にスクロールを有効にする */
    transform: translateX(-150px); /* 初期状態で少し左に配置 */
    opacity: 0; /* フェードイン前は非表示 */
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
    -ms-overflow-style: none;
    scrollbar-width: none;
    z-index: 1;
}

.sidebar::-webkit-scrollbar {
    display: none;
}

.sidebar-visible, .sidebar-slide-in {
    transform: translateX(0px); /* 少し左からスライドイン */
    opacity: 1;
}

#hamburgerContent {
    display: none;
}

.main-content {
    flex-grow: 1;
    margin: 0 0 0 250px;
    padding: 0px;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}


.fade-in {
    opacity: 1;
    visibility: visible;
}

.sidebar-fade-out {
    opacity: 0; /* フェードアウト */
    transition: opacity 1.5s ease-in-out; /* フェードアウトの時間を1.5秒に延長 */
}

.image-container {
    margin: 20px 0;
    max-width: 600px;
}

.lazy-element {
    opacity: 0;
    transform: translateY(200px); /* 初期状態で200px下に配置 */
    transition: opacity 1.5s ease, transform .8s ease; /* フェードインと移動のトランジション */
}


.in-viewport {
    opacity: 1;
    transform: translateY(0); /* フェードインと同時に元の位置に移動 */
}

/* アコーディオンメニューのスタイル */
aside .accordion-item {
    width: 206px;
    margin: 0 auto 0px auto;
}

aside .accordion-header {
    font-family: "Hiragino UD Sans W6 JIS2004";
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px; /* 上下左右に15pxのパディングを追加 */
    cursor: pointer;
    font-weight: bold;
    color: white;
    font-size: 1.0625rem;
    position: relative;
    transition: background-color 0.3s ease; /* 背景色のトランジションを追加 */
    border-radius: 10px;
}

aside .accordion-header:hover {
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.2); /* 背景を少し明るくする */
}

/* アコーディオンのコンテンツが広がるのに伴い、アイコンの位置も調整 */
aside .accordion-header::before {
    font-family: "Shuei MaruGo L";
    content: "\002B"; /* プラス記号 */
    position: absolute;
    right: 7px; /* アイコンの右位置を調整 */
    top: 50%; /* 中央に配置 */
    transform: translateY(-50%); /* アイコンを垂直方向に中央揃え */
    width: 20px;
    font-size: 1.2rem;
    text-align: center;
    color: #FFFFFF;
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

aside .accordion-header.active::before {
    font-family: "Shuei MaruGo L";
    content: "\2212"; /* マイナス記号 */
    right: 8.5px; /* アイコンの右位置を調整 */
    top: 50%; /* 中央に配置 */
    width: 19px;
    transform: translateY(-50%) rotate(180deg); /* 垂直中央揃えと回転 */
    font-size: 1.2rem;
}

aside .accordion-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    padding: 0;
    color: #fff;
}

aside .accordion-content.show {
    max-height: 100vh; /* 必要に応じて調整 */
    opacity: 1;
    padding: 20px;
    transition: max-height 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

aside .accordion-content ul {
    list-style-type: none; /* デフォルトのdiscを無効化 */
    margin: 5px 0 15px 15px; /* 左マージンをゼロに */
}

aside .accordion-content ul li {
    position: relative; /* 擬似要素のために位置を設定 */
    font-family: "Hiragino UD Sans W3 JIS2004";
    font-size: 0.9375rem;
    line-height: 1.3;
}

aside .accordion-content ul li a {
    display: block; /* リンク全体をブロック要素に */
    padding: 8px 15px; /* リンクの周りに余白を追加 */
    padding-left: 25px; /* 左側の余白をさらに追加して、discの左側もホバー範囲に */
    text-decoration: none;
    color: #FFF;
    position: relative;
    transition: background-color 0.3s ease; /* 背景色のトランジションを追加 */
    border-radius: 10px;
}

aside .accordion-content ul li a::before {
    content: '•'; /* カスタムマーカー */
    color: #FFBC1D; /* マーカーの色 */
    font-size: 1.1em; /* マーカーのサイズ */
    position: absolute;
    left: 10px; /* リンク内で左に配置し、ホバー範囲に含める */
    top: 50%; /* 垂直中央に配置 */
    transform: translateY(-50%); /* 縦位置の調整 */
}

aside .accordion-content ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2); /* 背景を少し明るくする */
    border-radius: 10px;
}


/* ハンバーガーメニュー */
.hamburger-menu {
    display: none;
    position: fixed;
    top: 0px;
    right: 0px;
    background-color: #208180;
    width: calc(64 * (100 / 430) * 1vw);
    height: calc(64 * (100 / 430) * 1vw);
    cursor: pointer;
    z-index: 1000;
}

.hamburger-menu div {
    width: calc(64 * (100 / 430) * 1vw);
    height: calc(64 * (100 / 430) * 1vw);
}

.hamburger-menu div img {
    width: 100%;
}

/* スマホ版の設定 */
@media (max-width: 1240px) {
    /* サイドメニューを非表示にする */
.sidebar {
        display: none;
    }
.main-content {
    margin: 0 0 0 0px;
}

/* ハンバガーメニューのアニメーション　全体表示 */
/*    #hamburgerContent {
        display: none;
        position: fixed;
        height: 100%;
        left: 0;
        width: 100%;
        box-sizing: border-box;
        z-index: 1000;
        background-color: #208080;
        clip-path: inset(0 0 100% 0);
        opacity: 0;
        transition: clip-path 0.3s ease-in-out, opacity 0.5s ease-in-out;
        overflow-y: auto; 
    }

    #hamburgerContent.visible {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }

    #hamburgerContent.fade-out {
        opacity: 0;
        clip-path: inset(0 0 0 0);
    }*/


/* ハンバガーメニューのアニメーション　右からフェードイン */
   #hamburgerContent {
        display: none;
        position: fixed;
        height: 100%;
        right: -70vw; /* 右からスライドインさせるため初期位置を設定 */
        width: 270px; /* 幅を70vwに設定 */
        box-sizing: border-box;
        z-index: 1000;
        background-color: #208080;
        opacity: 0;
        padding-bottom: 5vw;
        transition: right 0.5s ease-in-out, opacity 0.5s ease-in-out; /* 右からスライドするアニメーション */
        overflow-y: auto; /* 縦方向にスクロールを有効にする */
    }

    /* hamburgerContentが表示されたときのスタイル */
    #hamburgerContent.visible {
        right: 0; /* 右からスライドイン */
        opacity: 1;
    }

    /* フェードアウト時のスタイル */
    #hamburgerContent.fade-out {
        right: -70vw; /* 右にスライドアウト */
        opacity: 0;
    }

      #hamburgerContent h1 {
    display: none;
}

      #hamburgerContent nav {
        margin: 30px 0 30px 0;
}


    /* ハンバーガーメニューを常に表示 */
    .hamburger-menu {
    display: block;
    z-index: 9; /* サイドメニューより低い設定 */
    position: fixed;
    top: 0px;
    right: 0px;
    background-color: #208180;
    width: calc(64 * (70 / 430) * 1vw);
    height: calc(64 * (70 / 430) * 1vw);
    cursor: pointer;
}


    .hamburger-menu div {
        width: calc(64 * (70 / 430) * 1vw);
        height: calc(64 * (70 / 430) * 1vw);
    }

    /* 閉じるボタンのスタイルをhamburgerContentに合わせる */
    .close-btn {
        position: absolute;
        top: 0px;
        right: 0vw;
        background-color: #fff;
        color: #208080;
        border: none;
        font-size: 1.1rem;
        cursor: pointer;
        z-index: 1001;
        width: 30px;
        height: 30px;
        /* border-radius: 100px; */
        /* padding: 5px; */
        text-align: center;
        transition: opacity 0.5s ease-in-out;
    }
    
    footer .close-btn {
        display: none;
    }

    #hamburgerContent.visible + .close-btn {
        visibility: visible;
        opacity: 1; /* hamburgerContentが表示されたときにフェードイン */
    }
    
}

@media (max-width: 768px) {

    /* ハンバーガーメニューを常に表示 */
    .hamburger-menu {
    width: calc(64 * (100 / 480) * 1vw);
    height: calc(64 * (100 / 480) * 1vw);
}

    .hamburger-menu div {
        width: calc(64 * (100 / 480) * 1vw);
        height: calc(64 * (100 / 480) * 1vw);
    }
}

@media (max-width: 480px) {

    /* ハンバーガーメニューを常に表示 */
    .hamburger-menu {
    width: calc(64 * (100 / 430) * 1vw);
    height: calc(64 * (100 / 430) * 1vw);
}

    .hamburger-menu div {
        width: calc(64 * (100 / 430) * 1vw);
        height: calc(64 * (100 / 430) * 1vw);
    }
}


@media (min-width: 1241px) {
    .close-btn {
        display: none; /* PC版では閉じるボタンを非表示にする */
    }
    

/* ハンバガーメニューのアニメーション　全体表示 */
/*    #hamburger-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #208080;
    color: white;
    opacity: 0;
    transform: translateY(-100%);
    transition: transform 0.7s ease-in-out, opacity 0.7s ease-in-out;
    z-index: 1000;
}
*/
/* ハンバガーメニューのアニメーション　右からフェードイン */
   #hamburgerContent {
        display: none;
        position: fixed;
        height: 100%;
        right: -70vw; /* 右からスライドインさせるため初期位置を設定 */
        width: 70vw; /* 幅を70vwに設定 */
        box-sizing: border-box;
        z-index: 1000;
        background-color: #208080;
        opacity: 0;
        transition: right 0.5s ease-in-out, opacity 0.5s ease-in-out; /* 右からスライドするアニメーション */
        overflow-y: auto; /* 縦方向にスクロールを有効にする */
    }


.hamburger-content.visible {
    opacity: 0;
    transform: translateY(0);
    pointer-events: none;
}

.hamburger-content.fade-out {
    opacity: 0;
    transform: translateY(-100%);
}
}

/* search container */

.search-container {
    width: 180px;
    margin: 30px auto;
    text-align: center;
}

.search-box {
    display: flex;
    align-items: center;
    text-align: left;
    background-color: #ffffff;
    border-radius: 5px;
    padding: 9px 10px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.search-icon {
    width: 14px; /* アイコンの幅を大きくする */
    height: 22px; /* アイコンの高さを大きくする */
    fill: #888888;
    margin-left: 2px;
    margin-right: 8px;
}

#search-box {
    width: calc(100% - 40px); /* アイコンのスペースを考慮して幅を調整 */
    border: none;
    outline: none;
}

input#search-box {
    font-family:
  "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif !important;
    font-size: 0.9375rem;
    line-height: 1.3;
    color: #000000;
}

#search-box::placeholder {
    color: #cccccc;
}

.svgSerckIcon1 {
    fill: #208080;
    stroke-width: 0px;
}

.svgSerckIcon2 {
    fill: none;
    stroke: #208080;
    stroke-miterlimit: 10;
    stroke-width: 1.23px;
}
/* search container */


.additional-links ul {
    list-style-type: none;
    padding: 0;
    margin: 20px auto 40px auto;
    text-align: left;
    width: 200px;
}


.additional-links ul li {
    position: relative; /* 擬似要素のために位置を設定 */
    font-family: "Hiragino UD Sans W3 JIS2004";
    font-size: 0.9375rem;
    line-height: 1.3;
}

.additional-links ul li a {
    display: block; /* リンク全体をブロック要素に */
    padding: 8px 15px 10px 15px; /* リンクの周りに余白を追加 */
    padding-left: 25px; /* 左側の余白をさらに追加して、discの左側もホバー範囲に */
    text-decoration: none;
    color: #FFF;
    position: relative;
    transition: background-color 0.3s ease; /* 背景色のトランジションを追加 */
    border-radius: 10px;
}

.additional-links ul li a::before {
    content: '•'; /* カスタムマーカー */
    color: #FFBC1D; /* マーカーの色 */
    font-size: 1.1em; /* マーカーのサイズ */
    position: absolute;
    left: 10px; /* リンク内で左に配置し、ホバー範囲に含める */
    top: 50%; /* 垂直中央に配置 */
    transform: translateY(-50%); /* 縦位置の調整 */
}

.additional-links ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2); /* 背景を少し明るくする */
    border-radius: 10px;
}



.action-buttons {
    width: 180px;
    margin: 20px auto 0 auto;
}

.sidebar .btn,
#hamburgerContent .btn {
    display: block;
    text-align: center;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    color: #ffffff;
}



.sidebar a.btn-web-join,
#hamburgerContent a.btn-web-join {
    background-color: #F3F9FF;
    text-decoration: none;
    color: #214E7F;
    font-family: "Hiragino UD Sans W6 JIS2004";
    text-align: center;
    outline: none;
    position: relative;
    transition: all 0.3s ease; /* シンプルな変化に */
}

.sidebar a.btn-web-join:hover,
#hamburgerContent a.btn-web-join:hover {
    color: #FFF; /* ホバー時の文字色を変更 */
    background-color: #214E7F; /* 背景色を変更 */
    transform: scale(1.1); /* 拡大する */
    border-radius: 5px; /* ボタンの角を丸くする */
}

.sidebar a.btn-web-join:active,
#hamburgerContent a.btn-web-join:active {
    color: #214E7F; /* アクティブ時の色 */
    text-decoration: none;
}


.sidebar a.btn-trial-set,
#hamburgerContent a.btn-trial-set {
    background-color: #FFEBF2;
    text-decoration: none;
    color: #E93469;
    font-family: "Hiragino UD Sans W6 JIS2004";
    text-align: center;
    outline: none;
    position: relative;
    transition: all 0.3s ease; /* 変化のアニメーションをシンプルに */
}

.sidebar a.btn-trial-set:hover,
#hamburgerContent a.btn-trial-set:hover {
    color: #FFF; /* 色を変える */
    background-color: #E93469; /* 背景色を変更 */
    transform: scale(1.1); /* 拡大する */
    border-radius: 5px; /* ボタンの角を丸くする */
}
.sidebar a.btn-trial-set .text,
#hamburgerContent a.btn-trial-set .text {
  position: relative;
}
.sidebar a.btn-trial-set:active,
#hamburgerContent a.btn-trial-set:active{ color: #E93469; text-decoration: none;}


.sidebar a.btn-request-info,
#hamburgerContent a.btn-request-info {
    background-color: #F0FFF1;
    text-decoration: none;
    color: #1B9A2A;
    font-family: "Hiragino UD Sans W6 JIS2004";
    text-align: center;
    outline: none;
    position: relative;
    transition: all 0.3s ease; /* シンプルなアニメーション */
}

.sidebar a.btn-request-info:hover,
#hamburgerContent a.btn-request-info:hover {
    color: #FFF; /* ホバー時の文字色を変更 */
    background-color: #1B9A2A; /* ホバー時の背景色を変更 */
    transform: scale(1.1); /* 拡大する */
    border-radius: 5px; /* ボタンの角を丸くする */
}

.sidebar a.btn-request-info:active,
#hamburgerContent a.btn-request-info:active {
    color: #214E7F; /* アクティブ時の文字色 */
    text-decoration: none;
}

/* sidemenu cart */
.sidebar .cart-section,
#hamburgerContent .cart-section {
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    width: 180px;
    margin: 0 auto 20px auto;
}

.sidebar .cart-section a:hover,
#hamburgerContent .cart-section a:hover {
    background-color: rgba(255, 255, 255, 0.2); /* 背景を少し明るくする */
    border-radius: 10px; /* 角を丸くする */
}

.sidebar .cart-section a,
#hamburgerContent .cart-section a {
    display: flex;
    align-items: center;
    margin: 10px 0;
    padding: 20px 0px 20px 0px;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: white; /* aタグ内の文字色を白に設定 */
    transition: background-color 0.3s ease, padding 0.3s ease; /* トランジションを追加 */
}

.sidebar .cart-icon,
#hamburgerContent .cart-icon {
    width: 22px;
    height: 22px;
    margin-right: 18px;
    background-image: url('../../assets/img/icon_cart.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.sidebar .cart-text,
#hamburgerContent .cart-text {
    font-family: "Hiragino UD Sans W6 JIS2004";
    font-size: 1.0625rem;
    line-height: 1.2;
    font-feature-settings: "palt";
    letter-spacing: 1px;
}
/* sidemenu cart */





/* フッター内のサイドバーコンテンツをPC版で展開した状態にする */
@media (min-width: 1241px) {
    #footerContent .accordion-content {
        max-height: none; /* アコーディオンの高さ制限を解除 */
        opacity: 1; /* 常に表示 */
        padding: 10px 0; /* 適宜調整 */
        transition: none; /* アニメーションを無効にする */
    }
    
    #footerContent .accordion-header {
        cursor: default; /* カーソルを通常のポインターに変更 */
        background-color: transparent; /* 背景色を無効にする */
        pointer-events: none; /* クリックイベントを無効にする */
    }
}


footer {
    flex-grow: 1;
    margin: 66px 0 0 250px;
    background-color: #F6F3EF;
}
@media (max-width: 1240px) {
footer {
    margin: 66px 0 0 0px;
}
}

footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0 60px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch; /* 高さを揃える */
}

footer .footer-logo {
    position: relative;
    width: 355px; /* ロゴの幅を390pxに固定 */
    text-align: center; /* ロゴが左揃え */
    margin-top: 104px;
    margin-left: -40px;
    padding: 0 40px;
}

footer .footer-logo .footer-social {
    text-align: center; /* ロゴが左揃え */
    margin-top: 45px;
}

footer .footer-logo .footer-social a {
    padding: 0 6px;
}

footer .footer-logo .footer-social img {
    width: 33px;
}

@media (max-width: 1500px) {
footer .footer-logo {
    position: relative;
    width: calc(300 * (100 / 1500) * 1vw) 0 0 0px; /* ロゴの幅を390pxに固定 */
    text-align: center; /* ロゴが左揃え */
    margin-top: 104px;
    margin-left:  calc(10 * (100 / 1500) * 1vw);
    padding: 0 40px;
}
}


@media only screen and (max-width: 746px) {
footer {
    position: relative;
    flex-grow: 1;
    margin: calc(20 * (100 / 430) * 1vw) 0 0 0px;
    background-color: #F6F3EF;
}

footer .footer-container {
    max-width: none;
    margin: 0 auto;
    padding: calc(57 * (100 / 430) * 1vw) 0 0 0;
    display: block;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch; /* 高さを揃える */
}

footer .footer-logo {
    position: unset;
    width: calc(275 * (100 / 430) * 1vw); /* ロゴの幅を390pxに固定 */
    text-align: center; /* ロゴが左揃え */
    margin: 0 auto;
    padding: 0 0 calc(50 * (100 / 430) * 1vw) 0;
}

footer .footer-logo .footer-social {
    text-align: center; /* ロゴが左揃え */
    margin-top: calc(25 * (100 / 430) * 1vw);
}

footer .footer-logo .footer-social a {
    padding: 0 6px;
}

footer .footer-logo .footer-social img {
    width: calc(33 * (100 / 430) * 1vw);
}

}


footer .footer-logo .fotBg {
    position: absolute;
    width: 413px;
    bottom: 0px;
    left: -37px;
}

footer .footer-logo .fotBg img {
    width: 100%;
}

@media (max-width: 1500px) {
footer .footer-logo .fotBg {
    position: absolute;
    width: calc(300 * (100 / 1500) * 1vw);
    bottom:  0;
    left:  calc(40 * (100 / 1500) * 1vw);
    padding: 0 0 0 0px;
}
}

@media (max-width: 746px) {
footer .footer-logo .fotBg {
    position: absolute;
    width: calc(419 * (100 / 430) * 1vw);
    bottom:  calc(130 * (100 / 430) * 1vw);
    left: 0px;
    padding: 0 0 0 0px;
}
}



footer #footerContent {
    width: 807px;
    padding: 0 0 0 64px;
    text-align: left;
    border-left: 3px solid #EDEAE4;
}

footer #footerContent nav {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    text-align: left;
}

footer #footerContent .accordion-item {
    margin-bottom: 18px;
}

footer #footerContent .accordion-item:last-child {
    margin-bottom: 0; 
}

footer #footerContent .accordion-header {
    font-size: 1rem;
    line-height: 1;
    color: #208180;
    margin-bottom: 12px;
    font-family: "Shuei MaruGo B";
}

footer #footerContent .accordion-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid; /* グリッドレイアウトを使用 */
    grid-template-columns: repeat(4, 1fr); /* 4列に分ける */
    gap: 10px; /* 各リスト項目間のスペースを調整 */
}

footer #footerContent .accordion-content ul li {
    margin-bottom: 0; /* 縦方向のスペースをリセット */
}

footer #footerContent .accordion-content ul li a {
    color: #4D4D4D;
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.3;
    transition: color 0.3s ease;
    font-family: "Shuei MaruGo B";
}

footer #footerContent .accordion-content ul li a:hover {
    color: #208080;
}

footer #footerContent h1,
footer #footerContent .cart-section,
footer #footerContent .search-container,
footer #footerContent .additional-links,
footer #footerContent .action-buttons {
    display: none;
}



footer .footer-bottom {
    background-color: #EDEAE4;
    padding: 20px 0;
    text-align: center;
}

footer .footer-bottom .bottomAewa {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

footer .footer-bottom p {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1;
    color: #9D9B98;
    font-family: "Shuei MaruGo B";
}

footer .footer-bottom .footer-links {
    position: absolute;
    bottom: -1px;
    right: 20px;
}

footer .footer-bottom .footer-links a {
    padding: 0 15px;
    color: #9D9B98;
    text-decoration: none;
    font-size: 0.75rem;
    line-height: 1;
    transition: color 0.3s ease;
    font-family: "Shuei MaruGo B";
    border-left: 3px solid #DBD8D5;
}
/* 3つ目のリンクだけボーダーを変更 */
footer .footer-bottom .footer-links a:nth-child(3) {
    border-left: 3px solid #DBD8D5; /* 変更後の左ボーダー */
    border-right: 3px solid #DBD8D5; /* 変更後の右ボーダー */
}

footer .footer-bottom .footer-links a:hover {
    color: #208080;
}

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


footer #footerContent {
    width: calc(370 * (100 / 430) * 1vw) ;
    margin: 0 auto calc(200 * (100 / 430) * 1vw)  auto;
    padding: calc(40 * (100 / 430) * 1vw)  0 calc(30 * (100 / 430) * 1vw)  0px;
    text-align: left;
    border-left: none;
    border-top: 3px solid #EDEAE4;
    border-bottom: 3px solid #EDEAE4;
}

footer #footerContent nav {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    text-align: left;
}

footer #footerContent .accordion-item {
    margin-bottom: 18px;
}

footer #footerContent .accordion-item:last-child {
    margin-bottom: 0; 
}

footer #footerContent .accordion-header {
    font-size: 1rem;
    line-height: 1;
    color: #208180;
    margin-bottom: 12px;
    font-family: "Shuei MaruGo B";
}

footer #footerContent .accordion-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inherit; /* グリッドレイアウトを使用 */
    grid-template-columns: auto; /* 4列に分ける */
    gap: auto; /* 各リスト項目間のスペースを調整 */
}

footer #footerContent .accordion-content ul li {
    margin-bottom: 0; /* 縦方向のスペースをリセット */
}

footer #footerContent .accordion-content ul li a {
    color: #4D4D4D;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: "Shuei MaruGo B";
}

footer #footerContent .accordion-content ul li a:hover {
    color: #208080;
}

footer #footerContent h1,
footer #footerContent .cart-section,
footer #footerContent .search-container,
footer #footerContent .additional-links,
footer #footerContent .action-buttons {
    display: none;
}



footer .footer-bottom {
    background-color: #EDEAE4;
    padding: calc(30 * (100 / 430) * 1vw) 0 calc(100 * (100 / 430) * 1vw) 0;
    text-align: center;
    height: calc(80 * (100 / 430) * 1vw);
}

footer .footer-bottom .bottomAewa {
    position: relative;
    max-width: none;
    margin: 0 auto;
}

footer .footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1;
    color: #9D9B98;
    font-family: "Shuei MaruGo B";
}

footer .footer-bottom .footer-links {
    position: absolute;
    bottom: auto;
    top: calc(-170*(100 / 430)* 1vw);
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
}

footer .footer-bottom .footer-links a {
    padding: 0 calc(12 * (100 / 430) * 1vw);
    color: #9D9B98;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1;
    transition: color 0.3s ease;
    font-family: "Shuei MaruGo L";
    border-left: 3px solid #DBD8D5;
}
/* 3つ目のリンクだけボーダーを変更 */
footer .footer-bottom .footer-links a:nth-child(3) {
    border-left: 3px solid #DBD8D5; /* 変更後の左ボーダー */
    border-right: 3px solid #DBD8D5; /* 変更後の右ボーダー */
}

footer .footer-bottom .footer-links a:hover {
    color: #208080;
}




/* アコーディオンメニューのスタイル */
footer #footerContent .accordion-item {
    width: 100%;
    margin: 0 auto 0px auto;
}

footer #footerContent .accordion-header {
    font-family: "Hiragino UD Sans W6 JIS2004";
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0 7px 7px; /* 上下左右に15pxのパディングを追加 */
    cursor: pointer;
    font-size: 1.1875rem;
    position: relative;
    transition: background-color 0.3s ease; /* 背景色のトランジションを追加 */
    border-radius: 10px;
    color: #4D4D4D;
}

footer #footerContent .accordion-header:hover {
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 1); /* 背景を少し明るくする */
}

/* アコーディオンのコンテンツが広がるのに伴い、アイコンの位置も調整 */
footer #footerContent .accordion-header::before {
    font-family: "Shuei MaruGo L";
    content: "\002B"; /* プラス記号 */
    position: absolute;
    right: 7px; /* アイコンの右位置を調整 */
    top: 50%; /* 中央に配置 */
    transform: translateY(-50%); /* アイコンを垂直方向に中央揃え */
    width: 20px;
    font-size: 1.2rem;
    text-align: center;
    color: #208180;
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

footer #footerContent .accordion-header.active::before {
    font-family: "Shuei MaruGo L";
    content: "\2212"; /* マイナス記号 */
    right: 8.5px; /* アイコンの右位置を調整 */
    top: 50%; /* 中央に配置 */
    width: 19px;
    transform: translateY(-50%) rotate(180deg); /* 垂直中央揃えと回転 */
    font-size: 1.2rem;
}

footer #footerContent .accordion-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    padding: 0;
    color: #4D4D4D;
}

footer #footerContent .accordion-content.show {
    max-height: 100vh; /* 必要に応じて調整 */
    opacity: 1;
    padding: 20px;
    transition: max-height 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

footer #footerContent .accordion-content ul {
    list-style-type: none; /* デフォルトのdiscを無効化 */
    margin: 5px 0 15px 15px; /* 左マージンをゼロに */
}

footer #footerContent .accordion-content ul li {
    position: relative; /* 擬似要素のために位置を設定 */
    font-family: "Hiragino UD Sans W3 JIS2004";
    font-size: 1.1rem;
    line-height: 1.3;
}

footer #footerContent .accordion-content ul li a {
    font-size: 1.1rem;
    line-height: 1.3;
    display: block; /* リンク全体をブロック要素に */
    padding: 8px 15px; /* リンクの周りに余白を追加 */
    padding-left: 25px; /* 左側の余白をさらに追加して、discの左側もホバー範囲に */
    text-decoration: none;
    color: #4D4D4D;
    position: relative;
    transition: background-color 0.3s ease; /* 背景色のトランジションを追加 */
    border-radius: 10px;
}

footer #footerContent .accordion-content ul li a::before {
    content: '•'; /* カスタムマーカー */
    color: #FFBC1D; /* マーカーの色 */
    font-size: 1.1em; /* マーカーのサイズ */
    position: absolute;
    left: 10px; /* リンク内で左に配置し、ホバー範囲に含める */
    top: 50%; /* 垂直中央に配置 */
    transform: translateY(-50%); /* 縦位置の調整 */
}

footer #footerContent .accordion-content ul li a:hover {
    background-color: rgba(255, 255, 255, 1); /* 背景を少し明るくする */
    border-radius: 10px;
}


}

@media (max-width: 480px) {

footer .footer-bottom .footer-links a {
    font-size: 0.825rem;
}

}

.floatBnrArea,
.floatBnrAreaService {
    display: none;
}

@media (max-width: 480px) {

.floatBnrArea {
    display: inherit;
    position: fixed;
    bottom: -100px; /* 初期状態で画面外に配置 */
    z-index: 10;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0px 2px 7px 2px;
    opacity: 0; /* 初期状態で非表示に */
    transition: all 0.5s ease-in-out; /* フェードインアニメーション */
}

.floatBnrArea.visible {
    bottom: 0; /* 表示位置 */
    opacity: 1; /* フェードイン */
}

.floatBnrArea p {
    flex: 1;
    margin: 0 2px;
}

.floatBnrArea img {
    width: 100%;
    height: auto;
}

.floatBnrAreaService {
    display: inherit;
    position: fixed;
    bottom: -100px; /* 初期状態で画面外に配置 */
    z-index: 10;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0px 2px 7px 2px;
    opacity: 0; /* 初期状態で非表示に */
    transition: all 0.5s ease-in-out; /* フェードインアニメーション */
}

.floatBnrAreaService.visible {
    bottom: 0; /* 表示位置 */
    opacity: 1; /* フェードイン */
}

.floatBnrAreaService p {
    flex: 1;
    margin: 0 2px;
}

.floatBnrAreaService img {
    width: 100%;
    height: auto;
}

}



