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

/* ==========================================================================
       1. 基本レイアウト設定
       ========================================================================== */
:root {
    color-scheme: light;
}
* {
    box-sizing: border-box;
}
html, body {
    margin: 0;
    padding: 0;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
    /* --- セクション共通設定 --- */
section {
  padding-top: 80px;    /* 上に80pxの余白 */
  padding-bottom: 80px; /* 下に80pxの余白 */
}
    @media (max-width: 767px) {
  section {
    padding-top: 45px;    /* PCの約半分に調整 */
    padding-bottom: 45px;
  }
    }
.u-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
.l-container {
    max-width: 1800px;
    margin-inline: auto;
    padding-inline: 40px;
    width: 100%;
}

@media (max-width: 767px) {
.l-container {
    padding-inline: 20px;
}
}


/* ==========================================================================
       1.2 タイポグラフィ設定（iroma Font Styles）
       ========================================================================== */
	   
body {
  font-family: 
    "Avenir Next",    /* Mac用Avenir */
    "Avenir",         /* 標準Avenir */
    "Helvetica Neue", 
    "Yu Gothic Medium", /* Windowsで游ゴシックを綺麗に見せるための指定 */
    "YuGothic", 
    "Hiragino Sans", 
    sans-serif;
  
  font-weight: 500;    /* 游ゴシックは500(Medium)にすると圧倒的に読みやすくなります */
  letter-spacing: 0.05em; /* Avenirと游ゴシックは少し広めが美しい */
  line-height: 1.8;
  color: #333;
  -webkit-font-smoothing: antialiased;
}   
	   
/* ブランド名（スライダー・商品カード共通）を明朝体へ */
.top-slide__brand,
.c-item-card__brand {
    font-weight: 600;      /* 視認性のための太さ */
    letter-spacing: 0.1em; /* 高級感を出すための字間 */
    text-transform: uppercase;
    color: #111;           /* 線の細さをカバーする濃いめの色 */
}





/* ==========================================================================
       2. 告知バー (Announcement Bar)
       ========================================================================== */
.c-announcement-bar {
    border-bottom: 1px solid #e0e0e0;
    padding: 0;
    overflow: hidden;
}
.c-announcement-bar__container {
    max-width: 100%;
    width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 36px;
    position: relative;
}
.c-announcement-bar__content {
    flex: 1;
    height: 36px;
    overflow: hidden;
    position: relative;
}
.c-announcement-bar__inner {
    display: block;
    width: 100%;
    animation: slideAnnounceVertical 8s infinite;
}
.c-announcement-bar__item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    font-size: 12px;
    color: #333;
    text-decoration: none;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.c-announcement-bar__item strong {
    font-weight: 600;
    margin: 0 4px;
}
.c-announcement-bar__arrow {
    padding: 0 15px;
    font-size: 10px;
    color: #aaa;
    line-height: 1;
    font-family: "Hiragino Sans", "Meiryo", sans-serif;
    user-select: none;
    cursor: default;
}
@keyframes slideAnnounceVertical {
0%, 45% {
transform: translateY(0);
}
50%, 95% {
transform: translateY(-36px);
}
100% {
transform: translateY(0);
}
}
.c-announcement-bar:hover .c-announcement-bar__inner {
    animation-play-state: paused;
}

@media (max-width: 739px) {
.c-announcement-bar__container, .c-announcement-bar__content, .c-announcement-bar__item {
    height: 30px;
}
.c-announcement-bar__item {
    font-size: 10px;
}
.c-announcement-bar__arrow {
    padding: 0 10px;
}
@keyframes slideAnnounceVertical {
0%, 45% {
transform: translateY(0);
}
50%, 95% {
transform: translateY(-30px);
}
100% {
transform: translateY(0);
}
}
}
/* ==========================================================================
       3. ヘッダー (Header)
       ========================================================================== */
#iroma-header.l-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}
#iroma-header .c-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}
#iroma-header .c-header-logo img {
    height: 28px;
    width: auto;
    display: block;
}
#iroma-header .c-header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}
#iroma-header .c-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    font-size: 18px;
    color: #333;
    display: flex;
    align-items: center;
    transition: opacity 0.3s;
}
#iroma-header .c-icon-btn:hover {
    opacity: 0.6;
}
.c-icon-btn--cart {
    position: relative;
}
.c-cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #000;
    color: #fff;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.c-header-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 14px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    margin-left: 5px;
}
.c-header-hamburger span {
    width: 100%;
    height: 1px;
    background: #000;
}
/* ==========================================================================
       4. PCナビゲーション (Primary Nav)
       ========================================================================== */
#iroma-header .c-primary-nav {
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}
#iroma-header .c-primary-nav__list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}
#iroma-header .c-primary-nav__list li a {
    display: block;
    padding: 15px 0;
    margin-right: 40px;
    font-size: 13px;
    letter-spacing: 0.1em;
    color: #333;
    transition: opacity 0.3s;
}
.u-pc-only {
    display: block;
}

@media (max-width: 739px) {
.u-pc-only {
    display: none !important;
}
}
/* ==========================================================================
       5. ドロワーメニュー (Drawer System)
       ========================================================================== */
.c-drawer {
    position: fixed;
    inset: 0;
    z-index: 2000;
    visibility: hidden;
}
.c-drawer[aria-hidden="false"] {
    visibility: visible;
}
.c-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.4s;
}
.c-drawer[aria-hidden="false"] .c-drawer__overlay {
    opacity: 1;
}
.c-drawer__content {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 420px;
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.c-drawer[aria-hidden="false"] .c-drawer__content {
    transform: translateX(0);
}
.c-drawer__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    font-weight: 200;
    cursor: pointer;
    z-index: 10;
}
.c-drawer__inner {
    padding: 80px 30px 40px;
}
.c-drawer__title {
    font-size: 14px;
    letter-spacing: 0.1em;
    font-weight: 500;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    margin-bottom: 25px;
}
/* 検索ドロワー専用 */
.c-drawer__search {
    margin-bottom: 35px;
}
.c-drawer__search input {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    font-size: 15px;
    border-radius: 0;
    outline: none;
}
.c-drawer__list {
    list-style: none;
    padding: 0;
}
.c-drawer__list li a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #f8f8f8;
    color: #333;
    font-size: 14px;
}
/* アコーディオン */
.c-drawer__item.has-accordion {
    border-bottom: 1px solid #f0f0f0;
}
.js-accordion-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    background: none;
    border: none;
    font-size: 14px;
    cursor: pointer;
    position: relative;
}
.js-accordion-trigger::after {
    content: '+';
    font-size: 18px;
    font-weight: 200;
    transition: transform 0.3s;
}
.c-drawer__item.is-open .js-accordion-trigger::after {
    content: '−';
}
.c-drawer__accordion {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f9f9f9;
}
.c-drawer__item.is-open .c-drawer__accordion {
    max-height: 2000px;
    padding: 20px 0;
}
/* グリッドメニュー (2列) */
.c-drawer__sub-list--grid, .c-drawer__sub-list--categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    padding: 0 20px;
    list-style: none;
}
.c-drawer__sub-list--grid li a, .c-drawer__sub-list--categories li a {
    font-size: 12px;
    color: #333;
    padding: 8px 0;
    display: block;
    letter-spacing: 0.05em;
    border: none !important;
    transition: color 0.3s;
}
.c-drawer__sub-list--grid li a:hover {
    color: #888;
}
.c-drawer__sub-btn-wrap {
    grid-column: 1 / -1;
    margin-top: 15px;
}
.c-drawer__all-link {
    display: block;
    width: 100%;
    padding: 12px 0;
    background: #000;
    color: #fff !important;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.1em;
}
/* ドロワーフッター & SNS */
.c-drawer__btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 40px;
}
.c-btn-black {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 12px;
    letter-spacing: 0.05em;
}
.c-drawer__footer {
    background: #f8f8f8;
    padding: 40px 30px;
    margin: 0 -30px -40px;
}
.c-drawer__sub-list--single {
    list-style: none;
    padding: 0 20px;
}
.c-drawer__sub-list--single li {
    border-bottom: 1px solid #eee;
}
.c-drawer__sub-list--single li:last-child {
    border-bottom: none;
}
.c-drawer__sub-list--single li a {
    display: block;
    padding: 12px 0;
    font-size: 13px;
    color: #333;
    position: relative;
}
.c-drawer__sub-list--single li a::after {
    content: '>';
    position: absolute;
    right: 0;
    font-size: 10px;
    color: #ccc;
}
.c-drawer__sns {
    display: flex;
    gap: 25px;
}
.c-drawer__sns a {
    font-size: 18px;
    color: #333;
}
/* ==========================================================================
       6. メインコンテンツパーツ (Cards / Sections)
       ========================================================================== */
.l-main {
    padding: 24px 0 64px;
}
.c-section__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 16px;
    padding: 0 40px;
}
.c-section__title {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
}
.c-section__more {
    font-size: 14px;
    text-decoration: underline;
}
    
@media (max-width: 767px) {

.l-main {
    padding: 0 0 64px;
}


  /* 見出しの左右paddingを解除 */
  .c-section__head {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 25px; /* スマホでは見出し下の余白も少し詰める */
  }

  .c-section__title {
    font-size: 20px; /* スマホ用に少しフォントを調整 */
  }
}    
    

/* 商品カード・グリッド */
.l-new-grid {
    display: grid;
    gap: 10px;
    width: 100%;
}


.c-section__more {
    font-size: 12px;
    text-decoration: underline;
}

@media (max-width: 739px) {
.l-new-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
}

@media (min-width: 740px) and (max-width: 1279px) {
.l-new-grid {
    grid-template-columns: repeat(3, 1fr);
}
}

@media (min-width: 1280px) {
.l-new-grid {
    grid-template-columns: repeat(4, 1fr);
}
}
.c-item-card__img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 10px;
}
.c-item-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.c-item-card:hover .c-item-card__img img {
    transform: scale(1.05);
}
.c-item-card__brand {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 4px;
   color: #333333;
}
.c-item-card__title {
    font-size: 13px;
    line-height: 1.4;
    margin: 0 0 6px;
    font-weight: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.c-item-card__price {
    font-size: 13px;
    font-weight: 500;
}
/* 特集 (Feature) */
.l-feature-grid {
    display: grid;
    gap: 20px;
    padding: 0;
}

@media (min-width: 740px) {
.l-feature-grid {
    grid-template-columns: repeat(3, 1fr);
}

.c-item-card__title {
    font-size: 12px;
    line-height: 1.4;
    margin: 0 0 6px;
    font-weight: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
}

@media (max-width: 739px) {
.l-feature-grid {
    grid-template-columns: 1fr;
}
}
.c-feature-card__img {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    margin-bottom: 12px;
}
.c-feature-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}
.c-feature-card a:hover .c-feature-card__img img {
    opacity: 0.9;
}

.c-feature-card__text {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
}
/* スマホ向けのスタイル */
@media screen and (max-width: 767px) {
  .c-feature-card__text {
    font-size: 13px;     
    line-height: 1.75;    
    margin-top: 8px;     
  }
  
  .c-feature-card {
    margin-bottom: 40px; 
  }

  .c-feature-card:last-child {
    margin-bottom: 0;
  }
}


/* ブランド (Brand List) */
.p-brand-section {
    padding: 80px 0;
}
.p-brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.p-brand-item {
    display: flex;
    align-items: center;
    height: 60px;
    padding: 0 30px;
    font-size: 14px;
    color: #000;
    border: 1px solid #000;
    transition: background-color 0.2s;
}
.p-brand-item:hover {
    background-color: #f9f9f9;
}

@media (max-width: 739px) {
.p-brand-grid {
    grid-template-columns: repeat(2, 1fr);
}
.p-brand-item {
    height: 80px;
    padding: 0 15px;
    font-size: 12px;
}
}
/* ニュース (News) */
.l-section-news {
    padding: 60px 0;
    border-top: 1px solid #f0f0f0;
}
.c-news-layout {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (min-width: 740px) {
.c-news-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}
.c-news-layout__left {
    flex: 0 0 80px;
    padding-top: 16px;
}
.c-news-layout__right {
    flex: 1;
}
}
.c-news-list__item {
    border-bottom: 1px solid #eee;
}
.c-news-list__item:first-child {
    border-top: 1px solid #eee;
}
.c-news-list__link {
    display: flex;
    padding: 16px 0;
    transition: opacity 0.3s;
}
.c-news-list__date {
    font-size: 13px;
    color: #888;
    width: 90px;
    flex: 0 0 auto;
    margin-right: 40px;
}
.c-news-list__title {
    font-size: 13px;
    line-height: 1.5;
    flex: 1;
}
/* ==========================================================================
       7. フッター (Footer)
       ========================================================================== */
#iroma-footer.l-footer {
    border-top: 1px solid #e5e5e5;
    background: #fafafa;
}
#iroma-footer .l-footer__top {
    padding: 26px 0;
}
#iroma-footer .l-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}
#iroma-footer .c-footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}

.c-footer-links section {
  padding-top: 0; 
  padding-bottom: 0;
  margin-bottom: 40px; /* 縦に並んだ時のセクション間の余白 */
}
#iroma-footer .c-footer-links h2 {
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}
.c-footer-links ul {
    list-style: none;
    padding: 0;
}
.c-footer-links ul li {
    font-size: 13px;
    letter-spacing: .05em;
    line-height: 2.5;
}
.c-footer-links ul li a {
    opacity: .75;
    transition: opacity 0.3s;
}
.c-footer-links ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}
.c-footer-support {
    margin-bottom: 30px;
}
.c-support-info {
    line-height: 1.8;
}
.c-support-info__time {
    font-weight: bold;
    font-size: 13px;
    color: #333;
}
.c-support-info__note {
    font-size: 11px;
    color: #666;
}
.c-support-accordion {
    border: 1px solid #4a4a4a;
    max-width: 400px;
    margin-bottom: 25px;
}
.c-support-trigger {
    width: 100%;
    padding: 15px;
    background: #4a4a4a;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: background 0.3s;
}
.c-support-trigger:hover {
    background: #666;
}
.c-support-trigger::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 18px;
}
.c-support-accordion.is-open .c-support-trigger::after {
    content: '−';
}
.c-support-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #fff;
}
.c-support-accordion.is-open .c-support-content {
    max-height: 200px;
}
.c-support-btns {
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 10px;
}
.c-support-btns .c-cta-btn {
    display: block;
    padding: 12px;
    border: 1px solid #eee;
    font-size: 13px;
    text-align: center;
}

@media (min-width: 768px) {
#iroma-footer .l-footer-grid {
    grid-template-columns: 1fr 2fr;
    align-items: start;
}
#iroma-footer .c-footer-links {
    grid-template-columns: repeat(4, 1fr);
}
}
.l-footer__bottom {
    padding: 18px 0;
    border-top: 1px solid #e5e5e5;
    font-size: 13px;
    color: #444;
}