@charset "UTF-8";
/* ============================================================
  共通パーツ（HEADER & FOOTER）
============================================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "helvetica-neue-lt-pro", "Helvetica Neue", Helvetica, Arial, "Noto Sans JP", sans-serif;
  background: #fff;
  color: #000;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

a.hr-is-disabled {
  color: #c7c7c7 !important;
  mix-blend-mode: normal !important;
  pointer-events: none;
  cursor: default;
}

/* ============================================================
  /共通パーツ（HEADER & FOOTER）end
============================================================ */
/* ============================================================
  HEADER
============================================================ */
.wrap_header {
  height: calc(84 * clamp(1190px, 100vw, 1920px) / 1440);
}

.hr-header {
  position: fixed;
  top: calc(10 * clamp(1190px, 100vw, 1920px) / 1440);
  left: 50%;
  transform: translate(-50%, 0);
  width: calc(1420 * clamp(1190px, 100vw, 1920px) / 1440);
  height: calc(64 * clamp(1190px, 100vw, 1920px) / 1440);
  z-index: 200;
  background: rgba(255, 255, 255, 0);
  border-radius: calc(6 * clamp(1190px, 100vw, 1920px) / 1440);
  transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.hr-header.hr-is-hidden {
  transform: translate(-50%, calc(-100% - calc(10 * clamp(1190px, 100vw, 1920px) / 1440)));
}
.hr-header-inner {
  height: 100%;
  padding: 0 calc(10 * clamp(1190px, 100vw, 1920px) / 1440) 0 calc(24 * clamp(1190px, 100vw, 1920px) / 1440);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hr-header .hr-logo {
  width: 117px;
  height: 20px;
  background-color: currentColor;
  mask-image: url("/s/brand/hirofu/common/2026/36w/img/h_logo.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: left center;
  -webkit-mask-image: url("/s/brand/hirofu/common/2026/36w/img/h_logo.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: left center;
  transition: background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.hr-header a .hr-logo {
  transition: 0.2s;
}
.hr-header a .hr-logo:hover {
  text-decoration: none;
  opacity: 0.7;
}
.hr-header .hr-main-nav {
  display: flex;
  gap: calc(24 * clamp(1190px, 100vw, 1920px) / 1440);
  align-items: center;
}
.hr-header .hr-main-nav a {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  padding: 0;
  position: relative;
  z-index: 1;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.hr-header .hr-main-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.hr-header .hr-main-nav a:hover {
  color: #fff;
}
.hr-header .hr-main-nav a:hover::before {
  opacity: 1;
}
.hr-header .hr-main-nav .hr-items-trigger.hr-is-open {
  color: #fff;
}
.hr-header .hr-main-nav .hr-items-trigger.hr-is-open::before {
  opacity: 1;
}
.hr-header .hr-main-nav .hr-items-trigger::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: calc(40 * clamp(1190px, 100vw, 1920px) / 1440);
}
.hr-header .hr-header-icons {
  display: flex;
  align-items: center;
  gap: calc(24 * clamp(1190px, 100vw, 1920px) / 1440);
}
.hr-header.hr-panel-open .hr-header-icons .hr-icon-btn:not(.hr-cart-btn) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.hr-header .hr-icon-btn {
  background: none;
  border: none;
  width: calc(22 * clamp(1190px, 100vw, 1920px) / 1440);
  height: calc(22 * clamp(1190px, 100vw, 1920px) / 1440);
  position: relative;
  color: currentColor;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.hr-header .hr-icon-btn.hr-icon-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.hr-header .hr-icon-search {
  display: block;
  width: calc(20 * clamp(1190px, 100vw, 1920px) / 1440);
  height: calc(20 * clamp(1190px, 100vw, 1920px) / 1440);
  background-color: currentColor;
  mask-image: url("/s/brand/hirofu/common/2026/36w/img/ico_search.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("/s/brand/hirofu/common/2026/36w/img/ico_search.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.hr-header [aria-label^=search] {
  display: none;
  cursor: default;
}
.hr-header .hr-icon-cart {
  display: block;
  width: 22px;
  height: 20px;
  background-color: currentColor;
  mask-image: url("/s/brand/hirofu/common/2026/36w/img/ico_cart.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("/s/brand/hirofu/common/2026/36w/img/ico_cart.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.hr-header .hr-cart-dot-wrap {
  position: absolute;
  top: -4px;
  right: -5px;
}
.hr-header .hr-cart-dot-wrap .hr-cart-dot {
  background: #c0392b;
  border-radius: 50%;
  font-size: 10px;
  color: #fff !important;
  width: 15px;
  height: 15px;
  align-items: center;
  justify-content: center;
  display: none;
}
.hr-header .hr-menu-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 5px;
  background: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hr-header .hr-menu-btn .hr-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hr-header .hr-menu-btn .hr-bars span {
  width: 24px;
  height: 1px;
  background: currentColor;
  display: block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hr-header .hr-menu-btn .hr-menu-txt {
  display: block;
  width: 22px;
  height: 5px;
  background-color: currentColor;
  mask-image: url("/s/brand/hirofu/common/2026/36w/img/h_menu_txt.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("/s/brand/hirofu/common/2026/36w/img/h_menu_txt.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.hr-header .hr-menu-btn.hr-is-open .hr-menu-txt {
  opacity: 0;
}
.hr-header .hr-menu-btn.hr-is-open .hr-bars {
  position: relative;
  top: calc(6 * clamp(1190px, 100vw, 1920px) / 1440);
}
.hr-header .hr-menu-btn.hr-is-open .hr-bars span:nth-child(1) {
  transform: translateY(calc(2.2 * clamp(1190px, 100vw, 1920px) / 1440)) rotate(22deg);
}
.hr-header .hr-menu-btn.hr-is-open .hr-bars span:nth-child(2) {
  transform: translateY(calc(-2.7 * clamp(1190px, 100vw, 1920px) / 1440)) rotate(-24deg);
}
.hr-header .hr-logo, .hr-header .hr-main-nav a, .hr-header .hr-header-icons, .hr-header .hr-menu-btn {
  color: #000;
  mix-blend-mode: multiply;
}
.hr-header .hr-logo.hr-on-dark, .hr-header .hr-main-nav a.hr-on-dark, .hr-header .hr-icon-btn.hr-on-dark, .hr-header .hr-menu-btn.hr-on-dark {
  color: #fff;
  mix-blend-mode: screen;
}
.hr-header .hr-logo.hr-on-split, .hr-header .hr-main-nav a.hr-on-split, .hr-header .hr-icon-btn.hr-on-split, .hr-header .hr-menu-btn.hr-on-split {
  color: #fff;
  mix-blend-mode: difference;
}
.hr-header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: calc(1386 * clamp(1190px, 100vw, 1920px) / 1440);
  height: 1px;
  background: #d9d9d9;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hr-header.hr-is-solid {
  background: rgb(255, 255, 255);
}
.hr-header.hr-is-solid .hr-logo, .hr-header.hr-is-solid .hr-main-nav a, .hr-header.hr-is-solid .hr-header-icons, .hr-header.hr-is-solid .hr-icon-btn, .hr-header.hr-is-solid .hr-menu-btn {
  color: #000 !important;
  mix-blend-mode: normal !important;
}
.hr-header.hr-is-solid .hr-main-nav a:hover {
  color: #fff !important;
}
.hr-header.hr-is-solid .hr-main-nav a.hr-is-disabled {
  color: #c7c7c7 !important;
}
.hr-header.hr-is-solid .hr-main-nav .hr-items-trigger.hr-is-open {
  color: #fff !important;
}
.hr-header.hr-panel-open::after {
  opacity: 1;
}

.hr-items-drawer {
  position: fixed;
  top: calc(10 * clamp(1190px, 100vw, 1920px) / 1440);
  left: 50%;
  transform: translate(-50%, calc(-8 * clamp(1190px, 100vw, 1920px) / 1440));
  width: calc(1420 * clamp(1190px, 100vw, 1920px) / 1440);
  background: #fff;
  border-radius: calc(6 * clamp(1190px, 100vw, 1920px) / 1440);
  box-shadow: 0 calc(30 * clamp(1190px, 100vw, 1920px) / 1440) calc(60 * clamp(1190px, 100vw, 1920px) / 1440) rgba(0, 0, 0, 0.15);
  z-index: 190;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: calc(100vh - 150px);
  overflow-y: auto;
}
.hr-items-drawer.hr-is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.hr-items-drawer-inner {
  padding: calc(88 * clamp(1190px, 100vw, 1920px) / 1440) calc(30 * clamp(1190px, 100vw, 1920px) / 1440) calc(52 * clamp(1190px, 100vw, 1920px) / 1440);
  display: grid;
  grid-template-columns: calc(310 * clamp(1190px, 100vw, 1920px) / 1440) 1fr;
  gap: calc(56 * clamp(1190px, 100vw, 1920px) / 1440);
}
.hr-items-drawer .hr-id-left {
  border-right: 1px solid #D9D9D9;
  padding-right: calc(56 * clamp(1190px, 100vw, 1920px) / 1440);
}
.hr-items-drawer .hr-id-left .hr-search {
  display: flex;
  border: 1px solid #424242;
  border-radius: 2px;
  width: 100%;
  height: 41px;
}
.hr-items-drawer .hr-id-left .hr-search form {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.hr-items-drawer .hr-id-left .hr-search input {
  flex: 1;
  min-width: 0;
  border: none;
  margin-right: 40px;
  padding: 0 14px;
  font-size: 16px;
  outline: none;
  font-family: inherit;
}
.hr-items-drawer .hr-id-left .hr-search a {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #000;
  border: 1px solid #424242;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  cursor: default;
}
.hr-items-drawer .hr-id-left .hr-search a::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  mask-image: url("/s/brand/hirofu/common/2026/36w/img/ico_search.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("/s/brand/hirofu/common/2026/36w/img/ico_search.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.hr-items-drawer .hr-id-left .hr-id-cta-list {
  border-top: 1px solid #e6e2d9;
  margin-top: calc(32 * clamp(1190px, 100vw, 1920px) / 1440);
}
.hr-items-drawer .hr-id-left .hr-id-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: calc(32 * clamp(1190px, 100vw, 1920px) / 1440);
  cursor: pointer;
}
.hr-items-drawer .hr-id-left .hr-id-cta span {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.7;
}
.hr-items-drawer .hr-id-left .hr-id-cta .hr-go {
  width: calc(40 * clamp(1190px, 100vw, 1920px) / 1440);
  height: calc(40 * clamp(1190px, 100vw, 1920px) / 1440);
  border-radius: 50%;
  border: 1px solid #000;
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.hr-items-drawer .hr-id-left .hr-id-cta .hr-go::before {
  content: "";
  display: block;
  width: calc(9 * clamp(1190px, 100vw, 1920px) / 1440);
  height: calc(9 * clamp(1190px, 100vw, 1920px) / 1440);
  background-color: currentColor;
  mask-image: url("/s/brand/hirofu/common/2026/36w/img/ico_arrow.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("/s/brand/hirofu/common/2026/36w/img/ico_arrow.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.hr-items-drawer .hr-id-left .hr-id-cta:hover .hr-go {
  background-color: #fff;
  color: #000;
}
.hr-items-drawer .hr-id-right .hr-cat-block {
  margin-top: calc(16 * clamp(1190px, 100vw, 1920px) / 1440);
}
.hr-items-drawer .hr-id-right .hr-cat-block:first-child {
  margin-top: 0;
}
.hr-items-drawer .hr-id-right .hr-cat-title {
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 1.6;
  color: #322e21;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hr-items-drawer .hr-id-right .hr-cat-title::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 16px;
  height: 1px;
  background: #c1c1c1;
}
.hr-items-drawer .hr-id-items {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: calc(16 * clamp(1190px, 100vw, 1920px) / 1440);
  margin-top: calc(16 * clamp(1190px, 100vw, 1920px) / 1440);
}
.hr-items-drawer .hr-id-item {
  display: block;
}
.hr-items-drawer .hr-id-item .hr-thumb {
  aspect-ratio: 59/32;
  background: #f7f5f1;
  border-radius: calc(4 * clamp(1190px, 100vw, 1920px) / 1440);
  overflow: hidden;
}
.hr-items-drawer .hr-id-item .hr-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  mix-blend-mode: multiply;
}
.hr-items-drawer .hr-id-item:hover .hr-thumb img {
  transform: scale(1.06);
}
.hr-items-drawer .hr-id-item .hr-lbl {
  position: relative;
  display: inline-block;
  max-width: 100%;
  font-size: 12px;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
  margin-top: calc(8 * clamp(1190px, 100vw, 1920px) / 1440);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hr-items-drawer .hr-id-item .hr-lbl::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.hr-items-drawer .hr-id-item:hover .hr-lbl::after {
  transform: scaleX(1);
}
.hr-items-drawer .hr-id-item.hr-view-all {
  height: 100%;
}
.hr-items-drawer .hr-id-item.hr-view-all .hr-thumb {
  aspect-ratio: auto;
  height: 100%;
  background: #fff;
  border: 1px solid #000;
  border-radius: calc(4 * clamp(1190px, 100vw, 1920px) / 1440);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(40 * clamp(1190px, 100vw, 1920px) / 1440) calc(25.5 * clamp(1190px, 100vw, 1920px) / 1440);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.hr-items-drawer .hr-id-item.hr-view-all .hr-thumb:hover {
  opacity: 1;
  text-decoration: none;
  background: #000;
  border-color: #000;
  color: #fff;
}

.hr-id-tags {
  display: flex;
  flex-wrap: wrap;
  gap: calc(8 * clamp(1190px, 100vw, 1920px) / 1440);
  margin-top: calc(8 * clamp(1190px, 100vw, 1920px) / 1440);
}
.hr-id-tags a {
  border: 1px solid #050100;
  border-radius: calc(2 * clamp(1190px, 100vw, 1920px) / 1440);
  padding: calc(4 * clamp(1190px, 100vw, 1920px) / 1440) calc(8 * clamp(1190px, 100vw, 1920px) / 1440);
  font-size: 10px;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.hr-id-tags a:hover {
  opacity: 1;
  text-decoration: none;
  background: #000;
  border-color: #000;
  color: #fff;
}

.hr-img-tint {
  position: relative;
  overflow: hidden;
}
.hr-img-tint::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.05);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.hr-img-tint:hover::after, .hr-img-tint:active::after {
  opacity: 0;
}

.hr-invert-hover {
  transition: filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hr-invert-hover:hover {
  filter: invert(1);
}

.hr-menu-overlay {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  max-width: 1920px;
  height: 100vh;
  z-index: 180;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hr-menu-overlay.hr-is-open {
  opacity: 1;
  visibility: visible;
}
.hr-menu-overlay .hr-menu-panel {
  width: calc(1420 * clamp(1190px, 100vw, 1920px) / 1440);
  margin: 0 auto;
  background: #ffffff;
  padding: 0 calc(88 * clamp(1190px, 100vw, 1920px) / 1440) calc(48 * clamp(1190px, 100vw, 1920px) / 1440) calc(64 * clamp(1190px, 100vw, 1920px) / 1440);
  border-radius: calc(6 * clamp(1190px, 100vw, 1920px) / 1440);
  max-height: 100vh;
  overflow-y: auto;
  margin-top: calc(10 * clamp(1190px, 100vw, 1920px) / 1440);
  overflow-x: hidden;
}
.hr-menu-overlay .hr-menu-panel-inner {
  padding-top: calc(88 * clamp(1190px, 100vw, 1920px) / 1440);
}
.hr-menu-overlay .hr-menu-top-nav {
  display: flex;
  gap: calc(40 * clamp(1190px, 100vw, 1920px) / 1440);
  padding-left: calc(24 * clamp(1190px, 100vw, 1920px) / 1440);
  position: relative;
}
.hr-menu-overlay .hr-menu-top-nav::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: calc(31 * clamp(1190px, 100vw, 1920px) / 1440);
  background: #cdcdcd;
}
.hr-menu-overlay .hr-menu-top-nav a {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.7;
  white-space: nowrap;
}
.hr-menu-overlay .hr-menu-top-nav a:not(.hr-is-disabled)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.hr-menu-overlay .hr-menu-top-nav a:not(.hr-is-disabled):hover::after {
  transform: scaleX(1);
}
.hr-menu-overlay .hr-menu-row {
  display: flex;
  gap: calc(93 * clamp(1190px, 100vw, 1920px) / 1440);
  align-items: stretch;
}
.hr-menu-overlay .hr-menu-left {
  flex: 1;
  min-width: 0;
}
.hr-menu-overlay .hr-menu-cols {
  display: flex;
  align-items: flex-start;
  gap: calc(64 * clamp(1190px, 100vw, 1920px) / 1440);
  margin-top: calc(40 * clamp(1190px, 100vw, 1920px) / 1440);
}
.hr-menu-overlay .hr-menu-cols h5 {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  color: #1a1a1a;
}
.hr-menu-overlay .hr-menu-cols .hr-care-goods-title {
  margin-top: calc(32 * clamp(1190px, 100vw, 1920px) / 1440);
}
.hr-menu-overlay .hr-menu-cols > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  min-width: 0;
}
.hr-menu-overlay .hr-menu-cols > div:first-child {
  padding-left: 0;
}
.hr-menu-overlay .hr-menu-cols ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: calc(12 * clamp(1190px, 100vw, 1920px) / 1440);
  border-left: 1px solid #cdcdcd;
  padding-left: calc(32 * clamp(1190px, 100vw, 1920px) / 1440);
  margin-top: calc(16 * clamp(1190px, 100vw, 1920px) / 1440);
}
.hr-menu-overlay .hr-menu-cols li {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: #1a1a1a;
}
.hr-menu-overlay .hr-menu-cols a {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
.hr-menu-overlay .hr-menu-cols a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.hr-menu-overlay .hr-menu-cols a:hover::after {
  transform: scaleX(1);
}
.hr-menu-overlay .hr-menu-bottom-links {
  display: flex;
  gap: calc(40 * clamp(1190px, 100vw, 1920px) / 1440);
  flex-wrap: wrap;
  margin-top: calc(40 * clamp(1190px, 100vw, 1920px) / 1440);
  font-size: 13px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.8;
}
.hr-menu-overlay .hr-menu-bottom-links a {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
.hr-menu-overlay .hr-menu-bottom-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.hr-menu-overlay .hr-menu-bottom-links a:hover::after {
  transform: scaleX(1);
}
.hr-menu-overlay .hr-menu-search {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  width: calc(215 * clamp(1190px, 100vw, 1920px) / 1440);
}
.hr-menu-overlay .hr-menu-search .hr-search {
  display: flex;
  border: calc(1 * clamp(1190px, 100vw, 1920px) / 1440) solid #1a1a1a;
  border-radius: 2px;
  width: 100%;
  height: 41px;
  position: relative;
}
.hr-menu-overlay .hr-menu-search .hr-search form {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.hr-menu-overlay .hr-menu-search .hr-search input {
  flex: 1;
  min-width: 0;
  border: none;
  margin-right: 40px;
  padding: 0 14px;
  font-size: 16px;
  outline: none;
  font-family: inherit;
}
.hr-menu-overlay .hr-menu-search .hr-search a {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  cursor: default;
}
.hr-menu-overlay .hr-menu-search .hr-search a::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  mask-image: url("/s/brand/hirofu/common/2026/36w/img/ico_search.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("/s/brand/hirofu/common/2026/36w/img/ico_search.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.hr-menu-overlay .hr-menu-search-icon {
  width: calc(20 * clamp(1190px, 100vw, 1920px) / 1440);
  height: calc(20 * clamp(1190px, 100vw, 1920px) / 1440);
}
.hr-menu-overlay .hr-menu-social {
  display: flex;
  gap: calc(7 * clamp(1190px, 100vw, 1920px) / 1440);
  align-items: center;
  margin-top: calc(52 * clamp(1190px, 100vw, 1920px) / 1440);
  color: #000;
  position: relative;
}
.hr-menu-overlay .hr-menu-social::before {
  content: "";
  position: absolute;
  top: calc(-24 * clamp(1190px, 100vw, 1920px) / 1440);
  left: 0;
  width: calc(215 * clamp(1190px, 100vw, 1920px) / 1440);
  height: 1px;
  background: #c1c1c1;
}
.hr-menu-overlay .hr-menu-social a {
  display: flex;
  color: inherit;
  transition: 0.2s;
}
.hr-menu-overlay .hr-sns-divider {
  display: block;
  width: calc(7 * clamp(1190px, 100vw, 1920px) / 1440);
  height: 1px;
  background: #1a1a1a;
  transform: rotate(-45deg);
}
.hr-menu-overlay .hr-ico-line {
  display: block;
  width: calc(20 * clamp(1190px, 100vw, 1920px) / 1440);
  height: calc(20 * clamp(1190px, 100vw, 1920px) / 1440);
  background-color: currentColor;
  mask-image: url("/s/brand/hirofu/common/2026/36w/img/ico_line.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("/s/brand/hirofu/common/2026/36w/img/ico_line.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
}
.hr-menu-overlay .hr-ico-insta {
  display: block;
  width: calc(20 * clamp(1190px, 100vw, 1920px) / 1440);
  height: calc(20 * clamp(1190px, 100vw, 1920px) / 1440);
  background-color: currentColor;
  mask-image: url("/s/brand/hirofu/common/2026/36w/img/ico_insta.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("/s/brand/hirofu/common/2026/36w/img/ico_insta.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
}
.hr-menu-overlay .hr-ico-mail {
  display: block;
  width: calc(20 * clamp(1190px, 100vw, 1920px) / 1440);
  height: calc(15.45 * clamp(1190px, 100vw, 1920px) / 1440);
  background-color: currentColor;
  mask-image: url("/s/brand/hirofu/common/2026/36w/img/ico_mail.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("/s/brand/hirofu/common/2026/36w/img/ico_mail.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.hr-menu-overlay .hr-menu-blog {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: calc(56 * clamp(1190px, 100vw, 1920px) / 1440);
  border-radius: calc(2 * clamp(1190px, 100vw, 1920px) / 1440);
  background: #1a1a1a;
  color: #fff !important;
  border: 1px solid #1a1a1a;
  padding: 0 calc(24 * clamp(1190px, 100vw, 1920px) / 1440);
  font-size: 14px;
  font-weight: 400;
  margin-top: calc(24 * clamp(1190px, 100vw, 1920px) / 1440);
  cursor: pointer;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hr-menu-overlay .hr-menu-blog:hover {
  background: #fff;
  color: #1a1a1a !important;
}
.hr-menu-overlay .hr-menu-blog .hr-ico-blog-dec {
  display: block;
  width: calc(13 * clamp(1190px, 100vw, 1920px) / 1440);
  height: calc(14 * clamp(1190px, 100vw, 1920px) / 1440);
  flex-shrink: 0;
  background-color: currentColor;
  mask-image: url("/s/brand/hirofu/common/2026/36w/img/ico_dec.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("/s/brand/hirofu/common/2026/36w/img/ico_dec.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.hr-menu-overlay .hr-menu-stage {
  border: 1px solid #1A1A1A;
  border-radius: calc(2 * clamp(1190px, 100vw, 1920px) / 1440);
  padding: calc(24 * clamp(1190px, 100vw, 1920px) / 1440) calc(20 * clamp(1190px, 100vw, 1920px) / 1440);
  color: #1A1A1A;
  line-height: 1.8;
  width: 100%;
  margin-top: calc(24 * clamp(1190px, 100vw, 1920px) / 1440);
}

/* ============================================================
  /HEADER end
============================================================ */
/* ============================================================
  FOOTER
============================================================ */
.hr-site-footer {
  background: #fff;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}
.hr-site-footer .hr-footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: calc(88 * clamp(1190px, 100vw, 1920px) / 1440);
  padding: calc(136 * clamp(1190px, 100vw, 1920px) / 1440) calc(88 * clamp(1190px, 100vw, 1920px) / 1440);
  background: #ffffff;
  border-radius: 0 0 calc(32 * clamp(1190px, 100vw, 1920px) / 1440) calc(32 * clamp(1190px, 100vw, 1920px) / 1440);
  position: relative;
  z-index: 2;
}
.hr-site-footer .hr-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  width: calc(215 * clamp(1190px, 100vw, 1920px) / 1440);
}
.hr-site-footer .hr-footer-logo {
  display: block;
  width: calc(140 * clamp(1190px, 100vw, 1920px) / 1440);
  height: calc(24 * clamp(1190px, 100vw, 1920px) / 1440);
  background-color: currentColor;
  mask-image: url("/s/brand/hirofu/common/2026/36w/img/h_logo.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: left center;
  -webkit-mask-image: url("/s/brand/hirofu/common/2026/36w/img/h_logo.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: left center;
  transition: 0.2s;
}
.hr-site-footer .hr-footer-logo:hover {
  text-decoration: none;
  opacity: 0.7;
}
.hr-site-footer .hr-footer-desc {
  font-size: 12px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.8;
  margin-top: calc(24 * clamp(1190px, 100vw, 1920px) / 1440);
}
.hr-site-footer .hr-footer-social {
  display: flex;
  gap: calc(7 * clamp(1190px, 100vw, 1920px) / 1440);
  align-items: center;
  color: #1A1A1A;
  margin-top: calc(24 * clamp(1190px, 100vw, 1920px) / 1440);
}
.hr-site-footer .hr-footer-social a {
  display: flex;
  color: inherit;
  transition: 0.2s;
}
.hr-site-footer .hr-footer-social a:hover {
  text-decoration: none;
  opacity: 0.7;
}
.hr-site-footer .hr-sns-divider {
  display: block;
  width: calc(7 * clamp(1190px, 100vw, 1920px) / 1440);
  height: 1px;
  background: #1a1a1a;
  transform: rotate(-45deg);
}
.hr-site-footer .hr-ico-line {
  display: block;
  width: calc(20 * clamp(1190px, 100vw, 1920px) / 1440);
  height: calc(20 * clamp(1190px, 100vw, 1920px) / 1440);
  background-color: currentColor;
  mask-image: url("/s/brand/hirofu/common/2026/36w/img/ico_line.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("/s/brand/hirofu/common/2026/36w/img/ico_line.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
}
.hr-site-footer .hr-ico-insta {
  display: block;
  width: calc(20 * clamp(1190px, 100vw, 1920px) / 1440);
  height: calc(20 * clamp(1190px, 100vw, 1920px) / 1440);
  background-color: currentColor;
  mask-image: url("/s/brand/hirofu/common/2026/36w/img/ico_insta.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("/s/brand/hirofu/common/2026/36w/img/ico_insta.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
}
.hr-site-footer .hr-ico-mail {
  display: block;
  width: calc(20 * clamp(1190px, 100vw, 1920px) / 1440);
  height: calc(15.45 * clamp(1190px, 100vw, 1920px) / 1440);
  background-color: currentColor;
  mask-image: url("/s/brand/hirofu/common/2026/36w/img/ico_mail.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("/s/brand/hirofu/common/2026/36w/img/ico_mail.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.hr-site-footer .hr-footer-blog {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: calc(56 * clamp(1190px, 100vw, 1920px) / 1440);
  border-radius: calc(2 * clamp(1190px, 100vw, 1920px) / 1440);
  background: #1a1a1a;
  color: #fff !important;
  border: 1px solid #1a1a1a;
  padding: 0 calc(24 * clamp(1190px, 100vw, 1920px) / 1440);
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  margin-top: calc(24 * clamp(1190px, 100vw, 1920px) / 1440);
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hr-site-footer .hr-footer-blog:hover {
  background: #fff;
  color: #1a1a1a !important;
}
.hr-site-footer .hr-footer-blog .hr-ico-blog-dec {
  display: block;
  width: calc(13 * clamp(1190px, 100vw, 1920px) / 1440);
  height: calc(14 * clamp(1190px, 100vw, 1920px) / 1440);
  flex-shrink: 0;
  background-color: currentColor;
  mask-image: url("/s/brand/hirofu/common/2026/36w/img/ico_dec.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("/s/brand/hirofu/common/2026/36w/img/ico_dec.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.hr-site-footer .hr-footer-stage {
  border: 1px solid #1A1A1A;
  border-radius: calc(2 * clamp(1190px, 100vw, 1920px) / 1440);
  padding: calc(24 * clamp(1190px, 100vw, 1920px) / 1440) calc(20 * clamp(1190px, 100vw, 1920px) / 1440);
  color: #1A1A1A;
  line-height: 1.8;
  width: 100%;
  margin-top: calc(24 * clamp(1190px, 100vw, 1920px) / 1440);
}
.hr-site-footer .hr-footer-nav {
  flex: 1;
  min-width: 0;
}
.hr-site-footer .hr-footer-nav-top {
  display: flex;
  flex-wrap: wrap;
  gap: calc(44 * clamp(1190px, 100vw, 1920px) / 1440);
  padding-left: calc(32 * clamp(1190px, 100vw, 1920px) / 1440);
  position: relative;
}
.hr-site-footer .hr-footer-nav-top::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: calc(31 * clamp(1190px, 100vw, 1920px) / 1440);
  background: #cdcdcd;
}
.hr-site-footer .hr-footer-nav-top a {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.7;
  white-space: nowrap;
}
.hr-site-footer .hr-footer-nav-top a:hover {
  color: #000 !important;
}
.hr-site-footer .hr-footer-nav-top a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.hr-site-footer .hr-footer-nav-top a:hover::after {
  transform: scaleX(1);
}
.hr-site-footer .hr-footer-cols {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: calc(32 * clamp(1190px, 100vw, 1920px) / 1440) calc(64 * clamp(1190px, 100vw, 1920px) / 1440);
  margin-top: calc(40 * clamp(1190px, 100vw, 1920px) / 1440);
}
.hr-site-footer .hr-footer-cols h5 {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  color: #1a1a1a;
}
.hr-site-footer .hr-footer-cols > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  min-width: 0;
}
.hr-site-footer .hr-footer-cols ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: calc(12 * clamp(1190px, 100vw, 1920px) / 1440);
  border-left: 1px solid #cdcdcd;
  padding-left: calc(32 * clamp(1190px, 100vw, 1920px) / 1440);
  margin-top: calc(16 * clamp(1190px, 100vw, 1920px) / 1440);
}
.hr-site-footer .hr-footer-cols li {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: #1a1a1a;
}
.hr-site-footer .hr-footer-cols a {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
.hr-site-footer .hr-footer-cols a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.hr-site-footer .hr-footer-cols a:hover::after {
  transform: scaleX(1);
}
.hr-site-footer .hr-footer-bottom-links {
  display: flex;
  gap: calc(28 * clamp(1190px, 100vw, 1920px) / 1440);
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.8;
  margin-top: calc(40 * clamp(1190px, 100vw, 1920px) / 1440);
}
.hr-site-footer .hr-footer-bottom-links a {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
.hr-site-footer .hr-footer-bottom-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.hr-site-footer .hr-footer-bottom-links a:hover::after {
  transform: scaleX(1);
}
.hr-site-footer .hr-footer-banner {
  position: relative;
  width: 100%;
  height: calc(700 * clamp(1190px, 100vw, 1920px) / 1440);
  overflow: hidden;
  margin-top: calc(-32 * clamp(1190px, 100vw, 1920px) / 1440);
}
.hr-site-footer .hr-footer-banner .hr-footer-banner-img {
  position: absolute;
  left: 0;
  top: -20%;
  width: 100%;
  height: 140%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  pointer-events: none;
  will-change: transform;
}
.hr-site-footer .hr-footer-banner .hr-footer-banner-logo {
  position: absolute;
  left: calc(48 * clamp(1190px, 100vw, 1920px) / 1440);
  bottom: calc(48 * clamp(1190px, 100vw, 1920px) / 1440);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(16 * clamp(1190px, 100vw, 1920px) / 1440);
}
.hr-site-footer .hr-footer-banner .hr-footer-banner-logo-mark {
  display: block;
  width: calc(140 * clamp(1190px, 100vw, 1920px) / 1440);
  height: calc(24 * clamp(1190px, 100vw, 1920px) / 1440);
  background-color: #ffffff;
  mask-image: url("/s/brand/hirofu/common/2026/36w/img/h_logo.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: left center;
  -webkit-mask-image: url("/s/brand/hirofu/common/2026/36w/img/h_logo.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: left center;
}
.hr-site-footer .hr-footer-banner .hr-footer-banner-copyright {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  line-height: 1.8;
  white-space: nowrap;
}

/* ============================================================
  /FOOTER end
============================================================ */
/* ============================================================
  ページ共通タイトル
============================================================ */
.cmn-ttl-en {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 1.5;
  color: #050100;
  width: -moz-max-content;
  width: max-content;
}

.cmn-ttl-jp {
  margin-top: 8px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #000;
  width: -moz-max-content;
  width: max-content;
}

/* ============================================================
  /ページ共通タイトル end
============================================================ *//*# sourceMappingURL=common.css.map */