@charset "UTF-8";
/* ==========================================================================
   IN'S ダイレクト — style.css
   ========================================================================== */

/* ---- design tokens ---------------------------------------------------- */
:root {
  --color-navy: #0e3580; /* フッター・濃紺 */
  --color-red: #e60039; /* CTA・強調 */
  --color-red-dark: #c50031;
  --color-nav-bg: #afd2e4; /* ナビ帯の淡いブルー */
  --color-grey-bg: #f3f4f5; /* セクション背景グレー */
  --color-cta-bg: #93a7bc; /* お問合せ背景 */
  --color-text: #000;
  --color-text-weak: #555;
  --color-border: #d7dbe1;
  --color-white: #fff;
  --color-blue-light: #afd2e4;

  --container: 1100px;
  --container-narrow: 940px;

  --radius-s: 6px;
  --radius-m: 10px;

  --ff-base:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic",
    "YuGothic", "Meiryo", sans-serif;
  --ff-en: "Arial", "Helvetica Neue", Helvetica, sans-serif;
}

/* ---- reset ------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--ff-base);
  color: var(--color-text);
  line-height: 1.7;
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
p {
  margin: 0;
}
button {
  font-family: inherit;
  cursor: pointer;
}
select {
  font-family: inherit;
}

.u-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

/* focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--color-blue-light);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
.container--narrow {
  max-width: var(--container-narrow);
}

.body-home .aside {
  display: none;
}
.body-home .wrapper.wrapper--column-2 .__inner .main {
  width: 100%;
  float: none;
  padding: 0;
}
.body-home .wrapper .__inner {
  max-width: none;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: relative;
  background: #f3f4f5;
  border-bottom: 1px solid var(--color-border);
}
.site-header__inner {
  max-width: 1600px;
  margin: 0 auto;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  height: 100px;
}
.site-header__left {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 0 12px 24px;
}
.site-header__logo-img {
  width: 218px;
  height: auto;
}
.site-header__right {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  align-items: center;
  gap: 31px;
  height: 100%;
}
.site-header__menu {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  align-items: center;
  gap: 20px;
  padding: 12px 0 12px 24px;
  justify-content: end;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.site-header__logo:hover {
  text-decoration: none;
}

.site-header__logo-text {
  font-size: 13px;
  line-height: 1.35;
  color: var(--color-text-weak);
}

/* search */
.header-search {
  position: relative;
  flex: 1 1 527px;
  max-width: 527px;
}
.header-search__icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-search__icon::after {
  content: "";
  display: block;
  width: 1px;
  height: 22px;
  background: var(--color-navy);
}
.header-search__input {
  width: 100%;
  max-width: 527px;
  height: 56px;
  padding: 0 14px 0 48px;
  border: 1px solid var(--color-navy);
  border-radius: 10px;
  font-size: 14px;
  background: var(--color-white);
}
.header-search__input::placeholder {
  color: #9aa0a8;
}

/* utility */
.header-utility {
  flex-shrink: 0;
}
.header-utility__list {
  display: flex;
  gap: 19px;
}
.header-utility__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 13px;
  color: var(--color-text);
  min-width: 44px;
}
.header-utility__link svg {
  color: #4a5568;
}
.header-utility__link:hover {
  color: var(--color-navy);
  text-decoration: none;
}
.header-utility__link:hover svg {
  color: var(--color-navy);
}

/* register */
.header-register {
  flex: 0 1 280px;
  max-width: 280px;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 26px;
  background: var(--color-red);
  color: var(--color-white);
  font-weight: 700;
  font-size: 22px;
  transition: background 0.2s;
}
.header-register:hover {
  background: var(--color-red-dark);
  text-decoration: none;
}
.header-register__arrow {
  display: flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  color: var(--color-red);
  border-radius: 3px;
}
.header-register__arrow::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid currentColor;
}

/* mobile/tablet login/cart shortcuts + menu toggle wrapper */
.site-header__actions {
  display: contents;
}
.site-header__login,
.site-header__cart {
  display: none;
}

/* mobile toggle */
.header-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: none;
  border: none;
  flex-shrink: 0;
}
.header-toggle span {
  display: block;
  height: 2px;
  background: var(--color-navy);
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.header-toggle span:nth-child(3) {
  width: 80%;
}
body.is-nav-open .header-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.is-nav-open .header-toggle span:nth-child(2) {
  transform: rotate(-45deg);
}
body.is-nav-open .header-toggle span:nth-child(3) {
  opacity: 0;
}

/* mobile/tablet drawer wraps .global-nav (always visible) plus duplicated
   header-utility / header-register used only for the ≤900px overlay menu */
.header-drawer .header-utility,
.header-drawer .header-register {
  display: none;
}

/* ---- global nav ------------------------------------------------------- */
.global-nav {
  background: var(--color-nav-bg);
}
.global-nav__inner {
  max-width: 1230px;
  margin-inline: auto;
  display: flex;
  align-items: stretch;
  gap: 20px;
  padding: 10px 24px;
}
.global-nav__category {
  position: relative;
}
.global-nav__catbtn {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 40px;
  padding: 0 16px;
  min-width: 210px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  justify-content: space-between;
}

.global-nav__catbtn svg {
  color: var(--color-navy);
}

/* mega menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 40;
  width: 680px;
  background: var(--color-white);
  border: 1px solid #d3d8de;
  border-radius: var(--radius-s);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  padding: 16px 40px 22px;
}
.mega-menu__all {
  width: 183.333px;
  display: flex;
  align-items: center;
  padding: 8px 0 14px;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--color-text);
  justify-content: space-between;
}
.mega-menu__cols {
  display: flex;
  gap: 24px;
}
.mega-menu__col {
  flex: 1;
}
.mega-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  color: var(--color-text);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-navy);
}

.mega-menu__all svg,
.mega-menu__head svg {
  color: var(--color-navy);
}
.mega-menu__col ul li a {
  display: block;
  padding: 6px 4px;
  font-size: 14px;
  color: var(--color-text);
}
.mega-menu__col ul li a:hover {
  background: var(--color-grey-bg);
  color: var(--color-navy);
  text-decoration: none;
}

/* filters */
.global-nav__filters {
  display: flex;
  align-items: center;
  gap: 12px;
}
.global-nav__keyword {
  position: relative;
}
.global-nav__keywordbtn {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 40px;
  padding: 0 16px;
  min-width: 210px;
  font-size: 14px;
  font-weight: 700;
  justify-content: space-between;
  cursor: pointer;
}
.global-nav__keywordbtn svg {
  color: var(--color-navy);
}

/* keyword search panel */
.keyword-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 40;
  width: 880px;
  background: var(--color-white);
  border: 1px solid #d3d8de;
  border-radius: var(--radius-s);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  padding: 20px 24px 24px;
}
.keyword-panel__cols {
  display: flex;
  gap: 28px;
}
.keyword-panel__col {
  flex: 1;
  min-width: 0;
}
.keyword-panel__head {
  font-weight: 700;
  font-size: 15px;
  color: var(--color-navy);
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}
.keyword-panel__subgroups {
  display: flex;
  gap: 60px;
}

.keyword-panel__subhead {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-weak);
  margin-bottom: 4px;
}
.keyword-panel__radios li + li {
  margin-top: 2px;
}
.keyword-panel__radios label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 4px;
  font-size: 13px;
  color: var(--color-text);
  cursor: pointer;
  border-radius: var(--radius-s);
}
.keyword-panel__radios label:hover {
  background: var(--color-grey-bg);
}
.keyword-panel__radios input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-navy);
}
.keyword-panel__search {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 308px;
  height: 44px;
  margin: 20px auto 0;
  background: var(--color-navy);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-s);
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s;
}
.keyword-panel__search:hover {
  background: var(--color-blue-light);
  text-decoration: none;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding-bottom: 78px;
}
.hero__stage {
  position: relative;
  width: 100%;
}
.hero__slides {
  position: relative;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-inline: calc((100% - 970px) / 2);
}
.hero__slides::-webkit-scrollbar {
  display: none;
}
.hero__slide {
  flex: 0 0 970px;
  min-width: 0;
}
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.7);
  transition: filter 0.4s ease;
}
.hero__slide.is-active img {
  filter: none;
}
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-navy);
  color: var(--color-white);
  border: none;
  border-radius: 3px;
}
.hero__arrow--prev {
  right: calc(50% + 485px + 12px);
}
.hero__arrow--prev::before {
  content: "";
  width: 0;
  height: 0;
  margin-right: 2px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 9px solid var(--color-white);
}
.hero__arrow--next {
  left: calc(50% + 485px + 12px);
}
.hero__arrow--next::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 9px solid var(--color-white);
}
@media (max-width: 970px) {
  .hero__slides {
    gap: 0;
    padding-inline: 0;
  }
  .hero__slide {
    flex: 0 0 100%;
  }
  .hero__arrow {
    display: none;
  }
}
.hero__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.hero__dots button {
  width: 60px;
  height: 8px;
  padding: 0;
  border: none;
  background: #c5c7c9;
  border-radius: 2px;
}
.hero__dots button.is-current {
  background: var(--color-navy);
}

/* ==========================================================================
   共通セクション見出し
   ========================================================================== */
.section {
  padding: 64px 0;
}

.section.section--recommend,
.section.section--info {
  padding: 64px 0 0;
}
.section .section-head {
  text-align: center;
  padding-bottom: 30px;
}

.section-head__en {
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.16em;
  color: var(--color-navy);
  margin-bottom: 6px;
}
.section-head__ja {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.section-head__ja span {
  display: inline-block;
}

/* ---- products / genre ------------------------------------------------- */
.section--products {
  background: var(--color-grey-bg);
}
.genre-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.genre-list > li {
  min-width: 0;
}
.genre-card {
  position: relative;
  display: flex;
  align-items: center;
  height: 248px;
  background: var(--color-white);
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  padding: 20px 40px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.genre-card__body {
  display: flex;
  gap: 20px;
  align-items: center;
}
.genre-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.genre-card__img {
  display: block;
  height: auto;
  flex: 1 1 auto;
  min-width: 0;
}
.genre-card__img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1054 / 906;
  object-fit: contain;
}
.genre-card__name {
  display: block;
  font-size: 22px;
  font-weight: 700;
  margin-top: 14px;
  width: 210px;
  white-space: nowrap;
}
.genre-card__arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-navy);
  color: var(--color-white);
}
.genre-card__arrow::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid var(--color-white);
}

/* ---- about ------------------------------------------------------------ */
.section--about {
  padding: 0;
  background-image: url("https://files.bcart.jp/ins-direct/uploads/home/about_bg.jpg");
  background-size: cover;
  background-position: center;
  min-height: 440px;
}
.about__lead {
  text-align: center;
  font-size: 19px;
  font-weight: 700;
  padding: 56px 24px 30px;
}

.about__beer .section-head__en {
  color: var(--color-navy);
}
.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 20px;
}
.about-feature__box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 104px;
  padding: 14px 12px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-s);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
}
.about-feature__text {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
}

/* ---- recommend -------------------------------------------------------- */
.main.main--home section.__block.__block--pro-recommend {
  max-width: 1260px;
  margin: 0 auto;
}
@media (min-width: 1280px) {
  .p-product-block ul.__product li.__item {
    width: 25%;
  }
}
@media screen and (min-width: 600px) {
  .p-product-block ul.__product li.__item a .__photo img {
    max-height: fit-content;
  }
}

/* 商品が4件以上ある場合のみ JS が .p-product-block--slider を付与し、矢印ボタンを追加する */
.p-product-block {
  position: relative;
}
.p-product-block--slider ul.__product {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.p-product-block--slider ul.__product::-webkit-scrollbar {
  display: none;
}
.p-product-block--slider ul.__product li.__item {
  flex: 0 0 auto;
}
.p-product-block__next {
  position: absolute;
  right: -40px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 2px;
  background: var(--color-navy);
  cursor: pointer;
  transition: opacity 0.2s;
}
.p-product-block__next::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 9px solid var(--color-white);
}
.p-product-block__next:hover {
  opacity: 0.85;
}

/* ---- information ------------------------------------------------------ */
.main.main--home .__block.__block--news {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.main.main--home .c-heading-main {
  display: none;
}

.news-list {
  border-top: 1px solid var(--color-border);
}
.news-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 8px;
  border-bottom: 1px solid var(--color-border);
}
.news-item__date {
  flex-shrink: 0;
  font-size: 14px;
  color: var(--color-text-weak);
  font-family: var(--ff-en);
}
.news-item__tag {
  flex-shrink: 0;
  min-width: 64px;
  padding: 3px 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-white);
  border-radius: 2px;
}
.news-item__tag--blue {
  background: var(--color-navy);
}
.news-item__tag--red {
  background: var(--color-red);
}
.news-item__text {
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ---- step ------------------------------------------------------------- */
.step-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}
.step-card {
  position: relative;
  text-align: center;
}
.step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 110px;
  right: -11px;
  width: 0;
  height: 0;
  border-left: 11px solid var(--color-navy);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.step-card__box {
  background: var(--color-grey-bg);
  border-radius: var(--radius-m);
  padding: 48px 10px 32px;
  min-height: 118px;
  position: relative;
}
.step-card__no {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: absolute;
  top: -18px;
  color: var(--color-navy);
  left: 50%;
  transform: translateX(-50%);
}
.step-card__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}
.step-card__icon {
  margin-top: 16px;
}
.step-card__icon img {
  width: 85px;
  height: 85px;
  object-fit: contain;
  margin-inline: auto;
}
.step-card__text {
  margin-top: 12px;
  font-size: 15px;
  text-align: left;
  line-height: 1.6;
}

/* ---- download --------------------------------------------------------- */
.section--download,
.section--register {
  background: var(--color-grey-bg);
}
.download-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.download-card {
  display: flex;
  gap: 20px;
  background: var(--color-white);
  border-radius: var(--radius-s);
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.download-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.download-card__label {
  font-size: 12px;
  color: var(--color-text-weak);
  line-height: 1.5;
}
.download-card__title {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
.download-card__btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 8px 20px;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-s);
  transition: background 0.2s;
}
.download-card__btn:hover {
  background: color-mix(in srgb, var(--color-navy) 80%, transparent);
  text-decoration: none;
}
.download-card__thumb {
  flex-shrink: 0;
  width: 46%;
}
.download-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.register__btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--color-red);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-s);
  transition: background 0.2s;
  margin-top: 18px;
  padding: 8px 20px;
}

.register__btn:hover {
  background: var(--color-red-dark);
  text-decoration: none;
}

.register__arrow {
  display: flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  color: var(--color-red);
  border-radius: 3px;
}
.register__arrow::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid currentColor;
}

/* ---- contact cta ------------------------------------------------------ */
.contact-cta {
  display: flex;
  background:
    linear-gradient(rgba(120, 140, 160, 0.55), rgba(120, 140, 160, 0.55)),
    url("https://files.bcart.jp/ins-direct/uploads/common/cta-bg.png") center /
      cover no-repeat,
    var(--color-cta-bg);
  min-height: 320px;
  align-items: center;
}
.contact-cta__inner {
  max-width: 930px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-cta__title {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-white);
}
.contact-cta__lead {
  margin-top: 8px;
  font-size: 16px;
  color: var(--color-white);
}
.contact-cta__lead {
  span {
    display: inline;
  }
}
.contact-cta__btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
  width: 330px;
  height: 100px;
  background: var(--color-red);
  color: var(--color-white);
  font-size: 22px;
  font-weight: 700;
  transition: background 0.2s;
}
.contact-cta__btn:hover {
  background: var(--color-red-dark);
  text-decoration: none;
}
.contact-cta__arrow {
  display: flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  color: var(--color-red);
  border-radius: 3px;
}
.contact-cta__arrow::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid currentColor;
}

/* ==========================================================================
   サイドメニュー
   ========================================================================== */
.aside section.__block.__block--category .__body ul.__tree {
  background: #f8f8f8;
  padding: 10px;
}
.aside section.__block.__block--category .__body ul.__tree li {
  padding-bottom: 14px;
}
.aside section.__block.__block--category .__body ul.__tree ul li {
  padding-bottom: 0;
}

.aside section.__block.__block--category .__body ul.__tree ul {
  list-style: none;
}
.aside section.__block.__block--category .__body ul.__tree > li.__item {
  border-top: none;
}
.aside section.__block.__block--category .__body ul.__tree > li > a {
  display: block;
  padding: 12px 20px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-navy);
  text-decoration: none;
}
.aside section.__block.__block--category .__body ul.__tree li li a {
  display: block;
  padding: 10px 20px 10px 32px;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  text-decoration: none;
}
.aside section.__block.__block--category .__body ul.__tree a:hover {
  text-decoration: underline;
}
.aside
  section.__block.__block--category
  .__body
  ul.__tree
  > li.__item:last-child {
  border-bottom: none;
}

.aside section.__block.__block--calendar ul li {
  padding: unset;
  margin: unset;
}
.aside section.__block.__block--calendar ul li table.cal {
  font-size: 13px;
}
.aside section.__block.__block--calendar ul li table.cal thead th {
  color: var(--color-navy);
}
.aside section.__block.__block--calendar ul li table.cal tbody th {
  background-color: var(--color-nav-bg) !important;
  font-weight: normal;
  padding: 4px 0;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: var(--color-white);
}
.aside section.__block.__block--calendar ul li table.cal tbody th:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.aside section.__block.__block--calendar ul li table.cal tbody th:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-right: none;
}
.aside section.__block.__block--calendar ul li table.cal tbody td {
  padding: 3px 0;
}
.aside section.__block.__block--calendar ul li table.cal tbody td span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.aside
  section.__block.__block--calendar
  ul
  li
  table.cal
  tbody
  td
  span.cal-week-close {
  width: 28px !important;
  height: 28px !important;
  background-color: var(--color-border) !important;
  border-radius: 50%;
}

/* ==========================================================================
   商品一覧 ・　商品詳細
   ========================================================================== */

.main.main--product-list section.__child ul {
  display: flex;
  gap: 12px;
}
.main.main--product-list section.__child ul li {
  padding: 0;
}
.main.main--product-list section.__child ul li a,
.main.main--product-list section.__child ul li:last-child a {
  display: block;
  text-decoration: none;
  color: var(--color-text);
  background: var(--color-grey-bg);
  border-radius: 4px;
  border: 1px solid var(--color-navy);
  padding: 5px;
  margin: 0;
  font-weight: 700;
}

.main.main--product-list section.__control {
  background: none;
}

.main.main--product-list
  section.__list.__list--row
  ul.__product
  > li.__item
  .__set
  .__to-cart,
.main.main--product-detail section.__add-cart {
  display: flex;
  justify-content: flex-end;
}

.main.main--product-detail section.__add-cart button.c-button-submit,
.main.main--product-list
  section.__list.__list--row
  ul.__product
  > li.__item
  .__set
  .__to-cart
  button.c-button-submit {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main.main--product-detail section.__add-cart button::before,
.main.main--product-list
  section.__list.__list--row
  ul.__product
  > li.__item
  .__set
  .__to-cart
  button::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 6px;
  vertical-align: middle;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='1.6'%3E%3Ccircle cx='9' cy='20' r='1.4'%3E%3C/circle%3E%3Ccircle cx='18' cy='20' r='1.4'%3E%3C/circle%3E%3Cpath d='M2 3h3l2.2 12.2a1 1 0 0 0 1 .8h9.4a1 1 0 0 0 1-.8L21 7H6'%3E%3C/path%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='1.6'%3E%3Ccircle cx='9' cy='20' r='1.4'%3E%3C/circle%3E%3Ccircle cx='18' cy='20' r='1.4'%3E%3C/circle%3E%3Cpath d='M2 3h3l2.2 12.2a1 1 0 0 0 1 .8h9.4a1 1 0 0 0 1-.8L21 7H6'%3E%3C/path%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.main.main--product-detail
  section.__information
  .__primary
  .__photo
  .__sub
  ul
  li {
  width: 25%;
}

.main.main--product-detail
  section.__information
  .__primary
  .__photo
  .__main
  img {
  max-height: none;
}

.main.main--product-detail section.__information .__primary,
.main.main--product-detail section.__information .__secondary {
  width: 49%;
}
.main.main--product-detail section.__information .__secondary h1.__title {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-text);
}
.main.main--product-detail section.__information .__secondary .__description {
  color: var(--color-text);
  font-size: 18px;
  font-weight: bold;
}
.c-table-dl tr th {
  background-color: var(--color-grey-bg);
  font-size: 15px;
}
.c-table-dl tr td {
  font-size: 16px;
  font-weight: bold;
}
/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 40px 0 22px;
}
.site-footer__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.site-footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-footer__company {
  font-size: 13px;
}
.site-footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 8px;
}
.site-footer__nav li {
  display: flex;
  align-items: center;
}
.site-footer__nav li:not(:last-child)::after {
  content: "｜";
  margin: 0 14px;
  color: var(--color-white);
}
.site-footer__nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-white);
}
.site-footer__nav a:hover {
  text-decoration: underline;
}
.site-footer__copy {
  padding: 15px 0;
  text-align: center;
  font-size: 11px;
}
.site-footer__logo a {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}
.site-footer__logo-ins {
  width: 220px;
  height: auto;
}
.site-footer__logo-ichinose {
  width: 100px;
  height: auto;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  /* header: logo + cart shortcut + menu toggle on row 1, search on row 2,
     カテゴリ/容量/用途（global-nav__filters）に続けて、ご利用方法/
     お問い合わせ/ログイン/新規会員登録 をメニュー展開時に表示する。
     .site-header__inner を display:contents で消し、.site-header 自体を
     フレックスコンテナにして .global-nav と同じ並び順で制御する。 */

  .site-header {
    display: flex;
    flex-wrap: wrap;
  }
  .site-header__inner {
    display: contents;
  }
  .site-header__left {
    order: 1;
    padding: 10px 12px;
  }
  .site-header__logo-text {
    font-size: 9px;
  }
  .site-header__right {
    display: contents;
  }
  .site-header__menu {
    display: contents;
  }

  /* row 1: login / cart shortcuts + menu toggle stay fixed here whether the menu is open or not */
  .site-header__actions {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    order: 2;
    margin-left: auto;
    gap: 10px;
  }
  .site-header__login,
  .site-header__cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    font-size: 10px;
    color: var(--color-text);
  }
  .site-header__login svg,
  .site-header__cart svg {
    color: #4a5568;
  }
  .site-header__login:hover,
  .site-header__cart:hover {
    color: var(--color-navy);
    text-decoration: none;
  }
  .header-toggle {
    display: flex;
    width: 60px;
    align-self: stretch;
    background: var(--color-navy);
    height: 60px;
  }
  .header-toggle span {
    background: var(--color-white);
  }

  .header-search {
    order: 3;
    flex-basis: 100%;
    max-width: none;
    border-top: solid 1px var(--color-border);
    padding: 10px 12px 12px;
  }
  .header-search__input {
    height: 46px;
    border: 2px solid var(--color-navy);
  }

  .header-search__icon {
    left: 25px;
  }

  /* row 1 の header-utility / header-register（デスクトップ表示分）は非表示。
     ドロワー側の複製（.header-drawer 配下）だけを使う */
  .site-header__inner .header-utility,
  .site-header__inner .header-register {
    display: none;
  }

  /* drawer: header からの top 位置指定 + z-index でページ内容の上に重ねて表示 */
  .header-drawer {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 60;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    background: var(--color-white);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
  }
  body.is-nav-open .header-drawer {
    display: block;
  }

  /* メニュー展開中はヘッダーを画面上部に固定し、スクロールしても隠れないようにする */
  body.is-nav-open .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
  }

  .header-drawer .header-utility {
    padding: 16px 12px 4px;
  }
  .header-drawer .header-utility__list {
    justify-content: space-around;
  }
  .header-drawer .header-register {
    display: flex;
    flex: 0 1 auto;
    align-self: auto;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 14px;
    font-weight: 700;
    width: 182px;
    height: 50px;
  }

  .keyword-panel__search {
    width: 259.49px;
  }

  .global-nav__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px 12px;
  }
  .global-nav__catbtn {
    width: 100%;
  }

  .global-nav {
    background: #0e3580;
    color: var(--color-white);
  }
  .mega-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    margin-top: 8px;
    background: none;
    border: none;
  }
  .mega-menu__all {
    width: auto;
    color: var(--color-white);
    border-bottom: 1px solid var(--color-white);
  }
  .mega-menu__head {
    color: var(--color-white);
    border: none;
  }
  .mega-menu__cols {
    flex-direction: column;
    gap: 10px;
  }
  .global-nav__catbtn svg,
  .global-nav__keywordbtn svg,
  .mega-menu__col ul li a,
  .mega-menu__all svg,
  .mega-menu__head svg {
    color: var(--color-white);
  }
  .global-nav__filters {
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
  }
  .global-nav__keywordbtn {
    width: 100%;
    min-width: 0;
  }

  .keyword-panel {
    position: static;
    width: 100%;
    box-shadow: none;
    margin-top: 8px;
    background: #bcd8e7;
  }
  .keyword-panel__cols {
    flex-direction: column;
    gap: 18px;
  }

  .keyword-panel__head {
    font-size: 17px;
    color: var(--color-text);
    border: none;
  }
  .keyword-panel__col:last-child {
    border-bottom: solid 1px var(--color-white);
  }

  .p-product-block__next {
    right: -6px;
  }
  .hero {
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .site-header__logo-text {
    display: none;
  }
  .site-header__logo-img {
    width: 118px;
  }
  .hero {
    padding-bottom: 10px;
  }
  .section {
    padding: 44px 0;
  }
  .section-head__en {
    font-size: 14px;
  }
  .section-head__ja {
    font-size: 22px;
  }
  .section-head__ja span {
    display: block;
  }
  .header-toggle {
    width: 44px;
    height: 44px;
  }

  .hero__dots button {
    width: 47.6px;
    height: 6px;
  }
  /* grids collapse */
  .genre-list {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 20px;
  }
  .genre-card {
    height: auto;
  }
  .genre-card__name {
    font-size: 19px;
  }
  .about__lead {
    font-size: 15px;
    padding: 40px 40px 28px;
  }
  .about-features {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
  }
  .p-product-block__next {
    right: 8px;
    width: 30px;
    height: 30px;
  }
  .step-flow {
    grid-template-columns: repeat(1, 1fr);
    gap: 28px;
  }
  .step-card:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 11px solid var(--color-navy);
    border-bottom: none;
  }
  .step-card {
    text-align: left;
  }
  .step-card__box {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 0;
    padding: 14px 16px;
  }
  .step-card__no {
    position: static;
    order: 1;
    transform: none;
    flex-shrink: 0;
  }
  .step-card__no img {
    height: 27px;
  }
  .step-card__title {
    order: 3;
    margin-top: 0;
    font-size: 15px;
    flex: 1;
  }
  .step-card__icon {
    order: 2;
    margin-top: 0;
    flex-shrink: 0;
  }
  .step-card__icon img {
    width: 48px;
    height: 48px;
    padding: 8px;
    border-radius: var(--radius-m);
  }
  .step-card__text {
    margin-top: 8px;
  }
  .download-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .download-card__label {
    display: none;
  }

  .download-card__btn {
    font-size: 10px;
  }
  /* news wrap */
  .news-item {
    flex-wrap: wrap;
    gap: 8px 14px;
    padding: 14px 4px;
  }
  .news-item__text {
    white-space: normal;
    flex-basis: 100%;
  }

  /* contact cta */
  .contact-cta__inner {
    flex-direction: column;
    gap: 41px;
    text-align: center;
  }
  .contact-cta__title {
    font-size: 21px;
  }
  .contact-cta__btn {
    width: 250px;
    height: 76px;
    font-size: 17px;
    max-width: 320px;
  }

  .contact-cta__lead {
    font-size: 15px;
  }
  .contact-cta__lead span {
    display: block;
  }

  .main.main--product-detail section.__information .__secondary h1.__title {
    font-size: 18px;
  }
  .main.main--product-detail section.__information .__secondary .__description {
    font-size: 16px;
  }
  .c-table-dl tr th {
    font-size: 14px;
  }
  .c-table-dl tr td {
    font-size: 15px;
  }

  /* footer */
  .site-footer__nav ul {
    align-items: center;
    gap: 0;
  }
  .site-footer__logo a {
    flex-direction: column;
    gap: 20px;
  }
  .site-footer__logo-ins {
    width: 200px;
  }
  .site-footer__logo-ichinose {
    width: 90px;
  }
  .site-footer__nav a {
    font-size: 12px;
  }
  .site-footer__nav li:not(:last-child)::after {
    margin: 0 10px;
  }
}
@media (min-width: 600px) {
  .main.main--home section.__block.__block--news .__body ul li > a span.__date,
  .main.main--home section.__block.__block--news .__body ul li > a span.__title,
  .main.main--home
    section.__block.__block--news
    .__body
    ul
    li
    > span
    span.__date,
  .main.main--home
    section.__block.__block--news
    .__body
    ul
    li
    > span
    span.__title,
  .main.main--home
    section.__block.__block--news
    .__body
    ul
    li:last-child
    > a
    span.__date,
  .main.main--home
    section.__block.__block--news
    .__body
    ul
    li:last-child
    > a
    span.__title,
  .main.main--home
    section.__block.__block--news
    .__body
    ul
    li:last-child
    > span
    span.__date,
  .main.main--home
    section.__block.__block--news
    .__body
    ul
    li:last-child
    > span
    span.__title {
    border-bottom: 1px solid #b2b2b2;
  }
  .main.main--home section.__block.__block--news .__body ul li > a span.__date,
  .main.main--home section.__block.__block--news .__body ul li > a span.__title,
  .main.main--home
    section.__block.__block--news
    .__body
    ul
    li
    > span
    span.__date,
  .main.main--home
    section.__block.__block--news
    .__body
    ul
    li
    > span
    span.__title {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.main.main--home section.__block.__block--news .__body ul li > a span.__date {
  width: 180px;
  padding: 0 0 0 10px;
}

@media (max-width: 599px) {
  .main.main--home section.__block.__block--news .__body ul li > a span,
  .main.main--home section.__block.__block--news .__body ul li > span span {
    font-size: 14px;
  }
  .main.main--home section.__block.__block--news .__body ul li {
    padding: 1em;
  }
  .main.main--home section.__block.__block--news .__body ul li > a span.__date {
    width: auto;
    padding: 0 0 0.3em 0;
  }
  .main.main--home section.__block.__block--news .__body ul li,
  .main.main--home section.__block.__block--news .__body ul li:last-child {
    border-bottom: 1px solid #b2b2b2;
  }
  .main.main--product-detail section.__add-cart button.c-button-submit,
  .main.main--product-list
    section.__list.__list--row
    ul.__product
    > li.__item
    .__set
    .__to-cart {
    display: block;
  }
}

/* motion */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

@media screen and (max-width: 959px) {
  .main.main--product-detail section.__information .__primary,
  .main.main--product-detail section.__information .__secondary {
    width: auto;
    float: none;
    padding: 0 12px;
  }
}

@media (min-width: 600px) {
  .main.main--home section.__block.__block--news .__body ul li {
    display: table-row-group;
    font-size: 100%;
  }
}