@charset "UTF-8";
/* ==========================================================
Name:
    base.css

Description:
    サイト全体に共通する設定を記述する
    基本的にタグ自体にスタイルを定義する

Contents:
    base settings
========================================================== */
/* ==========================================================
*
*   base settings
*
========================================================== */
/* ---------------------------------------------
*   Universal selector
--------------------------------------------- */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* ---------------------------------------------
*   html, body
--------------------------------------------- */
html,
body {
  color: #0e1719;
  font-weight: 400;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  word-wrap: break-word;
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  html,
  body {
    font-size: 4.26667vw;
  }
}

body {
  line-height: 1.5;
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  body {
    min-width: 320px;
    line-height: 1.5;
  }
}

body.top {
  overflow: hidden;
  height: 100vh;
}

body.top.is-load {
  overflow: visible;
  height: auto;
}

body.is-sp-menu-opened {
  overflow: hidden !important;
  height: 100vh !important;
  position: fixed;
  width: 100%;
}


body.is-header-menu-open {
  overflow: hidden !important;
  height: 100vh !important;
}

/* ---------------------------------------------
*   <a> tag
--------------------------------------------- */
a {
  color: inherit;
  text-decoration: none;
}

/* Fallback focus style (for browsers without :focus-visible) */
a:focus {
  outline: var(--focus-ring-width) solid var(--focus-ring-color);
  outline-offset: var(--focus-ring-offset);
  box-shadow: var(--focus-ring-shadow);
}

/* Mouse-click: hide outline when :focus-visible is supported */
a:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

/* ---------------------------------------------
*   <img> tag
--------------------------------------------- */
img {
  max-width: 100%;
  vertical-align: bottom;
}
/* ---------------------------------------------
*   ページトップに戻るボタン
--------------------------------------------- */
body {
  position: relative;
}
#btnPageTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: none;
  width: 80px;
  height: 80px;
  background-color: #141e5a;
  border: 1px solid #fff;
  border-radius: 40px;
  cursor: pointer;
  z-index: 9000;
}
#btnPageTop.show {
  display: grid;
  place-content: center;
  opacity: 0;
  animation-name: btnPageTopFadeIn;
  animation-duration: .5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
#btnPageTop.show::after{
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-left: 0;
  border-bottom: 0;
  transform: translateY(25%) rotate(-45deg);
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  #btnPageTop {
    right: 10px;
    bottom: 10px;
    width: 60px;
    height: 60px;
  }
  #btnPageTop.show::after{
    width: 14px;
    height: 14px;
  }
}
@keyframes btnPageTopFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ==========================================================
*   Keyboard focus (Tab key) visibility
*   - Show clear focus indication for keyboard users
*   - Use :focus-visible so mouse clicks don't show the ring
========================================================== */
:root {
  --focus-ring-color: #0b63ce;
  --focus-ring-width: 3px;
  --focus-ring-offset: 3px;
  --focus-ring-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9);
}

/* Base focus-visible styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[role="button"]:focus-visible,
[tabindex]:not([tabindex="-1"]):focus-visible {
  outline: var(--focus-ring-width) solid var(--focus-ring-color);
  outline-offset: var(--focus-ring-offset);
  box-shadow: var(--focus-ring-shadow);
}

/* If some CSS resets removed outline, enforce focus-visible ring */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[role="button"]:focus-visible,
[tabindex]:not([tabindex="-1"]):focus-visible {
  outline: var(--focus-ring-width) solid var(--focus-ring-color) !important;
}

/* Optional: add extra clarity only in content areas (avoid double ring in header icons) */
.c-slider a:focus-visible img,
.c-slider a:focus-visible svg,
.c-slider button:focus-visible svg {
  outline: var(--focus-ring-width) solid var(--focus-ring-color);
  outline-offset: var(--focus-ring-offset);
}

/* ==========================================================
*   Focus visibility: sliders (PICKUP etc.)
*   - Frame the whole card/slide using :focus-within
*   - Avoid tiny "dot" outlines when focused elements are inline
========================================================== */

/* 1) Make focused elements inside slider have a stable box (fallback) */
.c-slider a:focus-visible,
.c-slider button:focus-visible,
.c-slider [role="button"]:focus-visible {
  text-decoration: none;
}

/* 2) Primary: draw the ring above slide contents using a pseudo-element */
.c-slider .slick-slide:focus-within,
.c-slider__item:focus-within,
.c-slider__item-inner:focus-within {
  position: relative;
  outline: none;
}

.c-slider .slick-slide:focus-within::after,
.c-slider__item:focus-within::after,
.c-slider__item-inner:focus-within::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  box-shadow:
    inset 0 0 0 var(--focus-ring-width) var(--focus-ring-color),
    inset 0 0 0 calc(var(--focus-ring-width) + 2px) rgba(255, 255, 255, 0.9);
}

/* 3) Arrow buttons */
.slick-arrow:focus-visible {
  outline: var(--focus-ring-width) solid var(--focus-ring-color);
  outline-offset: 4px;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.9),
    0 0 0 6px rgba(11, 99, 206, 0.55);
}

/* ==========================================================
*   Focus visibility: header icon links (mail/search/bag)
*   - Avoid extra whitespace ring
*   - Avoid double ring on nested img
========================================================== */
.header-nav__icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.header-nav__icon-link > img,
.header-nav__icon-link > svg {
  display: block;
}

/* Ensure only the anchor shows the ring (not the nested image) */
.header-nav__icon-link:focus img,
.header-nav__icon-link:focus svg,
.header-nav__icon-link:focus-visible img,
.header-nav__icon-link:focus-visible svg {
  outline: none !important;
  box-shadow: none !important;
}