@charset "UTF-8";
/* 変数 */
:root {
  --color_font_basic: #111;
  --color_bg: #efefef;
  --color_border: #ccc;
  --color_link: #2f80d6;
  --color_danger: #fd1500;
  --color_success: #2f841a;
  --font_family_en: "Barlow";
  --hover_opacity: 0.7;
  --hover_transition_duration: 0.3s;
  --easeOutQuart: cubic-bezier(0.25, 1, 0.5, 1);
  --easeInOutCubic: cubic-bezier(0.65, 0, 0.35, 1);
}

/* reset */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, button, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  background: var(--color_bg);
  color: var(--color_font_basic);
  line-height: 1.6;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  transition: opacity 0.5s var(--easeInOutCubic);
  opacity: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body main {
  flex: 1;
}

body.is-fadeout {
  opacity: 0;
  pointer-events: none;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  background: transparent;
  touch-action: manipulation;
}

table {
  border-collapse: collapse;
}

img {
  vertical-align: bottom;
}

.text_barlow {
  font-family: var(--font_family_en), sans-serif;
  font-weight: 600;
  font-style: normal;
}

/* コンポーネント */
.custom-cursor {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 8px solid rgba(204, 204, 204, 0.85);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--easeOutQuart), width 0.8s var(--easeOutQuart), height 0.8s var(--easeOutQuart), border-width 0.8s var(--easeOutQuart);
  z-index: 1100;
}

body:not(.is_pc) .custom-cursor {
  display: none;
}

.custom-cursor::before, .custom-cursor::after {
  content: "";
  position: absolute;
  background-color: rgba(183, 183, 183, 0.85);
}

.custom-cursor::before {
  width: 1px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.custom-cursor::after {
  width: 12px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.custom-cursor.is_hover {
  width: 40px;
  height: 40px;
  border-width: 1px;
  transition: width 0.8s var(--easeOutQuart), height 0.8s var(--easeOutQuart), border-width 0.8s var(--easeOutQuart);
}

.custom-cursor:not(.is_hover)::before, .custom-cursor:not(.is_hover)::after {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}

.custom-cursor.is_hover::before, .custom-cursor.is_hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.button {
  text-decoration: none;
  text-align: center;
  display: grid;
  place-items: center;
  position: relative;
  cursor: pointer;
  color: var(--color_font_basic);
}
.button.primary {
  background-color: #fff;
  width: 280px;
  height: 56px;
  border: 1px solid var(--color_font_basic);
  border-radius: 4px;
  font-weight: bold;
  margin: auto;
  z-index: 1;
  transition: color 0.3s linear;
}
.button.primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color_font_basic);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s linear;
  z-index: -1;
}
@media (hover: hover) {
  .button.primary:hover {
    color: #fff;
  }
  .button.primary:hover::before {
    transform: scaleX(1);
  }
}
.button.outline {
  border: 1px solid var(--color_font_basic);
  color: var(--color_font_basic);
  border-radius: 2px;
  font-family: var(--font_family_en), sans-serif;
  font-weight: 400;
  font-style: normal;
  z-index: 1;
}
.button.outline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color_font_basic);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s linear;
  z-index: -1;
}
@media (hover: hover) {
  .button.outline:hover {
    color: #fff;
  }
  .button.outline:hover::before {
    transform: scaleX(1);
  }
}
.button.outline.size-s {
  font-size: 13px;
  width: 96px;
  height: 30px;
}
.button.outline.chevron-right {
  grid-template-columns: auto auto;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.button.outline.chevron-right::after {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2011%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%3E%3Cpath%20d%3D%22m0%200h11v11h-11z%22%2F%3E%3Cg%20stroke%3D%22%23111%22%20stroke-miterlimit%3D%2210%22%3E%3Cpath%20d%3D%22m6%201.5%204%204-4%204%22%2F%3E%3Cpath%20d%3D%22m0%205.5h10%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.button.outline.chevron-right:hover::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2011%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%3E%3Cpath%20d%3D%22m0%200h11v11h-11z%22%2F%3E%3Cg%20stroke%3D%22%23fff%22%20stroke-miterlimit%3D%2210%22%3E%3Cpath%20d%3D%22m6%201.5%204%204-4%204%22%2F%3E%3Cpath%20d%3D%22m0%205.5h10%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

.form-group {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-weight: bold;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-group label .required {
  background: var(--color_danger);
  color: #fff;
  font-size: 10px;
  padding: 0 4px;
  border-radius: 2px;
}

input[type=text], input[type=email], select, textarea {
  font-size: 16px;
  width: 100%;
  padding: 18px 12px;
  border: 1px solid var(--color_border);
  border-radius: 0;
  background: #fff;
  color: inherit;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #bbb;
}

input::placeholder, textarea::placeholder {
  color: #bbb;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color_success);
  box-shadow: 0 0 0 1px var(--color_success) inset;
  transition: border-color var(--hover_transition_duration), box-shadow var(--hover_transition_duration);
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m22.37%207.17-.71-.71-9.67%209.66-9.65-9.66-.71.71%2010.37%2010.37z%22%20fill%3D%22%23111%22%2F%3E%3Cpath%20d%3D%22m0%200h24v24h-24z%22%20fill%3D%22none%22%2F%3E%3C%2Fsvg%3E") right 12px center/24px 24px no-repeat;
}

textarea {
  resize: vertical;
  min-height: 270px;
  padding: 12px;
}

.alert {
  border: 1px solid var(--color_border);
  font-size: 16px;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
  background-color: #fff;
  padding: 18px 12px;
  margin: 2em auto;
}
.alert:empty {
  padding: 0;
  border: none;
}
.alert.success {
  color: var(--color_success);
  border-color: var(--color_success);
}
.alert.danger {
  color: var(--color_danger);
  border-color: var(--color_danger);
}

hr {
  height: 0;
  width: 100%;
  border: none;
  border-top: 1px solid #ccc;
  margin: 0;
}

/* レイアウト */
.header {
  display: flex;
  z-index: 1020;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 120px;
  padding-right: 64px;
  padding-left: 44px;
}
@media (max-width: 992px) {
  .header {
    height: 64px;
    padding-right: 0;
    padding-left: 10px;
  }
}

.header h1 img {
  display: block;
}
@media (max-width: 992px) {
  .header h1 img {
    width: 192px;
    height: auto;
  }
}

.header_news {
  background-color: var(--color_font_basic);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  height: 40px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
}
@media (max-width: 720px) {
  .header_news {
    height: 34px;
    font-size: 13px;
    padding: 0 10px;
  }
}
.header_news a {
  color: inherit;
  transition: color 0.3s var(--easeInOutCubic);
}
.header_news a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.gnav {
  font-family: var(--font_family_en), sans-serif;
  font-weight: 600;
  font-style: normal;
  display: flex;
  gap: 64px;
  list-style-type: none;
  position: relative;
  font-size: 18px;
  align-items: center;
}
@media (max-width: 992px) {
  .gnav {
    display: flex;
    align-items: flex-start;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    padding: 64px 60px 40px;
    background-color: #fff;
    z-index: 1000;
    flex-direction: column;
    gap: 25px;
    transition: opacity 0.5s var(--easeInOutCubic), visibility 0.5s var(--easeInOutCubic);
  }
  .gnav.is_open {
    visibility: visible;
    opacity: 1;
    display: flex;
    pointer-events: auto;
  }
}
.gnav_item {
  position: relative;
}
.gnav_link {
  position: relative;
  color: inherit;
  text-decoration: none;
  padding: 8px 0;
}
@media (hover: hover) {
  .gnav_link::before {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color_font_basic);
    transition: width 0.3s linear;
  }
  .gnav_link:hover::before {
    width: 100%;
  }
}
.gnav_link[href^=https] {
  padding-right: 16px;
}
.gnav_link[href^=https]::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 15px;
  right: 0;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2012%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m7%201v1h2.29l-7.29%207.29v-7.29h3v-1h-4v10h10v-4h-1v3h-7.29l7.29-7.29v2.29h1v-4z%22%20fill%3D%22%23111%22%2F%3E%3Cpath%20d%3D%22m0%200h12v12h-12z%22%20fill%3D%22none%22%2F%3E%3C%2Fsvg%3E");
}
.gnav_trigger {
  display: none;
  width: 64px;
  height: 64px;
  background: url(../images/icon_gnav_trigger.svg) center/38px 38px no-repeat;
  margin-left: auto;
  z-index: 1100;
  position: relative;
}
@media (max-width: 992px) {
  .gnav_trigger {
    display: block;
  }
  .gnav_trigger.is_active {
    background-image: none;
    transform: rotate(45deg);
  }
  .gnav_trigger.is_active::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 1px;
    background-color: var(--color_font_basic);
  }
  .gnav_trigger.is_active::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 38px;
    background-color: var(--color_font_basic);
  }
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  box-shadow: 0 0 8px 5px rgba(0, 0, 0, 0.05);
  padding: 12px 10px;
  list-style: none;
  z-index: 1000;
  border-radius: 4px;
  transition: opacity 0.5s var(--easeInOutCubic);
}
@media (max-width: 992px) {
  .dropdown {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 0 10px;
  }
}
.dropdown_trigger {
  font-family: var(--font_family_en), sans-serif;
  font-weight: 600;
  font-style: normal;
}
.dropdown li a {
  padding: 9px 12px;
  text-decoration: none;
  color: inherit;
  display: block;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  transition: 0.3s opacity var(--easeInOutCubic);
}
.dropdown li a:hover {
  opacity: 0.6;
}
@media (max-width: 992px) {
  .dropdown li a {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: none;
  }
  .dropdown li a::before {
    content: "";
    width: 20px;
    height: 1px;
    background-color: var(--color_font_basic);
  }
}

.dropdown_trigger {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 8px 0;
  color: inherit;
}
.dropdown_trigger::after {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2011%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m0%200h11v11h-11z%22%20fill%3D%22none%22%2F%3E%3Cpath%20d%3D%22m10%205h-4v-4h-1v4h-4v1h4v4h1v-4h4z%22%20fill%3D%22%23111%22%2F%3E%3C%2Fsvg%3E");
  transition: transform 0.5s var(--easeInOutCubic);
}
@media (max-width: 992px) {
  .dropdown_trigger::after {
    display: none;
  }
}
.dropdown_trigger:hover::after {
  transform: rotate(45deg);
}

.gnav_item:hover .dropdown_trigger::after {
  transform: rotate(45deg);
}

.gnav_item:hover .dropdown {
  opacity: 1;
  visibility: visible;
}

.brandCard_container {
  padding: 50px 0 min(350px, 35vw);
  display: grid;
  grid-template-columns: repeat(26, 1fr);
}

.brandCard {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.brandCard:nth-of-type(3n + 1) {
  grid-column: 2/10;
}
.brandCard:nth-of-type(3n + 2) {
  grid-column: 18/26;
}
.brandCard:nth-of-type(3n) {
  grid-column: 10/18;
}
.brandCard a {
  display: block;
  position: relative;
}
.brandCard a img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/5;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1.2s var(--easeOutQuart);
}
.brandCard a:hover img {
  transform: scale(1.03);
}
@media (hover: hover) {
  .brandCard a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0;
    z-index: 10;
    transition: opacity 1.2s var(--easeOutQuart);
  }
  .brandCard a:hover::before {
    opacity: 0.6;
  }
  .brandCard a::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 20;
    transition: opacity 1.6s var(--easeOutQuart);
  }
  .brandCard a:hover::after {
    opacity: 0.7;
  }
}

.footer {
  width: 100%;
  height: 64px;
  font-size: 14px;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font_family_en), sans-serif;
}
@media (max-width: 720px) {
  .footer {
    padding: 0 20px;
  }
}

.instagram_link {
  text-decoration: none;
  color: inherit;
  padding: 6px 0;
  position: relative;
}
.instagram_link::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -22px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2018%2018%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20%3E%3CclipPath%20id%3D%22a%22%3E%3Cpath%20d%3D%22m1%201h16v16h-16z%22%2F%3E%3C%2FclipPath%3E%3Cpath%20d%3D%22m0%200h18v18h-18z%22%20fill%3D%22none%22%2F%3E%3Cg%20clip-path%3D%22url(%23a)%22%3E%3Cpath%20d%3D%22m5.69%201.06c-.85.04-1.43.18-1.94.38-.53.2-.97.48-1.42.93-.44.45-.72.89-.92%201.42-.2.51-.33%201.09-.37%201.94s-.05%201.13-.04%203.3c0%202.17.01%202.44.05%203.3.04.85.18%201.43.38%201.94.21.53.48.97.93%201.42.45.44.89.72%201.42.92.51.2%201.09.33%201.94.37s1.13.05%203.3.04c2.17%200%202.45-.01%203.3-.05s1.43-.18%201.94-.38c.53-.21.97-.48%201.42-.93.44-.45.72-.89.92-1.42.2-.51.33-1.09.37-1.94s.05-1.13.04-3.3c0-2.17-.01-2.44-.05-3.3-.04-.85-.18-1.43-.38-1.94-.21-.53-.48-.97-.93-1.42-.45-.44-.89-.72-1.42-.92-.51-.2-1.09-.33-1.94-.37s-1.13-.05-3.3-.04c-2.17%200-2.44.01-3.3.05m.09%2014.46c-.78-.03-1.2-.16-1.49-.27-.37-.14-.64-.32-.92-.6s-.45-.55-.6-.92c-.11-.28-.24-.71-.28-1.49-.04-.84-.05-1.1-.05-3.23%200-2.14%200-2.39.04-3.23.03-.78.16-1.2.27-1.49.14-.37.32-.64.6-.92s.55-.45.92-.6c.28-.11.7-.24%201.48-.28.84-.04%201.1-.05%203.23-.05%202.14%200%202.39%200%203.23.04.78.03%201.2.16%201.49.27.37.14.64.32.92.6s.45.55.6.92c.11.28.24.7.28%201.48.04.84.05%201.1.05%203.23%200%202.14%200%202.39-.04%203.23-.03.78-.16%201.2-.27%201.49-.14.37-.32.64-.6.92s-.55.45-.92.6c-.28.11-.7.24-1.48.28-.84.04-1.1.05-3.23.05-2.14%200-2.39%200-3.23-.04m6.52-10.79c0%20.53.43.96.96.96s.96-.43.96-.96-.43-.96-.96-.96-.96.43-.96.96m-7.41%204.29c0%202.27%201.85%204.1%204.12%204.1s4.1-1.85%204.1-4.12-1.85-4.1-4.12-4.1-4.1%201.85-4.1%204.12zm1.44-.01c0-1.47%201.19-2.67%202.66-2.67s2.67%201.19%202.67%202.66-1.19%202.67-2.66%202.67-2.67-1.19-2.67-2.66%22%20fill%3D%22%23111%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@media (hover: hover) {
  .instagram_link::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color_font_basic);
    transition: width 0.3s linear;
  }
  .instagram_link:hover::after {
    width: 100%;
  }
}

.subPage_container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 40px min(250px, 25vw);
}
@media (max-width: 992px) {
  .subPage_container {
    padding-top: 30px;
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media (max-width: 720px) {
  .subPage_container {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.brandDetail_container, .newsDetail_container {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}
@media (max-width: 992px) {
  .brandDetail_container, .newsDetail_container {
    gap: 40px;
  }
}
@media (max-width: 720px) {
  .brandDetail_container, .newsDetail_container {
    flex-direction: column;
    gap: 60px;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.splide {
  max-width: 560px;
  width: 50%;
  flex: 1;
}
@media (max-width: 992px) {
  .splide {
    max-width: none;
    width: 100%;
    overflow: hidden;
  }
}
.splide__list img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
}
.splide__arrow {
  color: transparent;
  position: absolute;
  top: calc(50% - 20px);
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  opacity: 0.5;
  transition: opacity 0.5s var(--easeOutQuart);
}
@media (max-width: 992px) {
  .splide__arrow {
    top: calc(50% - 16px);
  }
}
.splide__arrow::before {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2018%2018%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m4.26%204.96h11v1h-11z%22%20fill%3D%22%23111%22%20transform%3D%22matrix(.70710678%20.70710678%20-.70710678%20.70710678%206.72%20-5.3)%22%2F%3E%3Cpath%20d%3D%22m4.26%2012.04h11v1h-11z%22%20fill%3D%22%23111%22%20transform%3D%22matrix(-.70710678%20.70710678%20-.70710678%20-.70710678%2025.52%2014.5)%22%2F%3E%3Cpath%20d%3D%22m0%200h18v18h-18z%22%20fill%3D%22none%22%2F%3E%3C%2Fsvg%3E") center center/18px 18px no-repeat;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 720px) {
  .splide__arrow::before {
    width: 36px;
    height: 36px;
    background-size: 16px 16px;
  }
}
.splide__arrow:hover {
  opacity: 0.8;
}
.splide__arrow svg {
  display: none;
}
.splide__arrow--prev {
  left: 0;
}
@media (max-width: 720px) {
  .splide__arrow--prev {
    left: -4px;
  }
}
.splide__arrow--prev::before {
  transform: translate(-50%, -50%) rotate(180deg);
}
.splide__arrow--next {
  right: 0;
}
@media (max-width: 720px) {
  .splide__arrow--next {
    right: -4px;
  }
}
.splide__pagination {
  margin: 24px 0 0 0 !important;
}
@media (max-width: 720px) {
  .splide__pagination {
    margin: 16px 0 0 0 !important;
  }
}
.splide__pagination button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  color: transparent;
  background: #d9d9d9;
  cursor: pointer;
  margin: 0 6px;
  transition: background-color var(--hover_transition_duration) var(--easeOutQuart);
}
@media (max-width: 720px) {
  .splide__pagination button {
    width: 9px;
    height: 9px;
    margin: 0 9px;
  }
}
.splide__pagination button:hover, .splide__pagination button.is-active {
  background: var(--color_font_basic);
}

.brandText, .newsText {
  width: 50%;
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media (max-width: 720px) {
  .brandText, .newsText {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
}
.brandText_title, .newsText_title {
  font-family: var(--font_family_en), sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 32px;
  line-height: 1.2;
  transform: translateY(-8px);
}
@media (max-width: 720px) {
  .brandText_title, .newsText_title {
    font-size: 28px;
    transform: none;
  }
}
.brandText_time, .newsText_time {
  font-family: var(--font_family_en), "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  line-height: 1.2;
  margin-top: 15px;
}
.brandText_time:empty, .newsText_time:empty {
  margin: 0;
}
.brandText_ruby, .newsText_ruby {
  font-size: 13px;
  line-height: 1;
}
@media (max-width: 720px) {
  .brandText_ruby, .newsText_ruby {
    line-height: 1.8;
    text-align: center;
  }
}
.brandText_description, .newsText_description {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 40px;
  margin-bottom: 30px;
}
@media (max-width: 720px) {
  .brandText_description, .newsText_description {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.brandText_description a, .newsText_description a {
  color: var(--color_link);
  transition: opacity var(--hover_transition_duration) var(--easeOutQuart);
}
.brandText_description a:hover, .newsText_description a:hover {
  opacity: var(--hover_opacity);
}
.brandText_logo, .newsText_logo {
  width: min(100%, 300px);
  height: auto;
  margin: 65px 0 90px;
}
@media (max-width: 720px) {
  .brandText_logo, .newsText_logo {
    align-self: center;
    margin: 55px 0 70px;
  }
}
.brandText .button, .newsText .button {
  margin-bottom: 25px;
}
@media (max-width: 720px) {
  .brandText .button, .newsText .button {
    align-self: center;
  }
}
.brandText_link, .newsText_link {
  list-style-type: none;
  display: flex;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 5px;
}
@media (max-width: 720px) {
  .brandText_link, .newsText_link {
    justify-content: center;
    gap: 36px;
  }
}
.brandText_link a.button.outline.size-s, .newsText_link a.button.outline.size-s {
  width: auto;
  padding-left: 12px;
  padding-right: 12px;
}

@media (max-width: 720px) {
  .brandText_title {
    text-align: center;
  }
}

@media (max-width: 720px) {
  .newsDetail_container {
    gap: 50px;
  }
}

.stockist_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
@media (max-width: 720px) {
  .stockist_header {
    margin-bottom: 8px;
  }
}
.stockist_header h2 {
  font-family: var(--font_family_en), sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.2;
  font-size: 24px;
}
@media (max-width: 720px) {
  .stockist_header h2 {
    font-size: 18px;
  }
}
.stockist_header img {
  width: auto;
  height: 34px;
}
@media (max-width: 720px) {
  .stockist_header img {
    max-width: 80px;
    max-height: 30px;
  }
}
.stockist_table {
  font-size: 14px;
}
.stockist_table a {
  color: var(--color_link);
  transition: opacity var(--hover_transition_duration) var(--easeOutQuart);
}
.stockist_table a:hover {
  opacity: var(--hover_opacity);
}
.stockist_row {
  display: flex;
  justify-content: space-around;
  gap: 16px;
  border-bottom: 1px solid var(--color_border);
}
@media (max-width: 720px) {
  .stockist_row {
    flex-direction: column;
    padding: 16px 0;
    gap: 10px;
  }
  .stockist_row:nth-of-type(2) {
    border-top: 1px solid var(--color_border);
  }
}
.stockist_row > div {
  padding: 16px 0;
}
@media (max-width: 720px) {
  .stockist_row > div {
    padding: 0;
  }
}
.stockist_row .area {
  width: 15%;
  padding-left: 40px;
}
@media (max-width: 992px) {
  .stockist_row .area {
    padding-left: 20px;
  }
}
@media (max-width: 720px) {
  .stockist_row .area {
    padding-left: 0;
  }
  .stockist_row .area::before {
    content: "area:";
  }
}
.stockist_row .shop {
  width: 25%;
}
@media (max-width: 720px) {
  .stockist_row .shop::before {
    content: "shop:";
  }
}
.stockist_row .address {
  width: 45%;
}
@media (max-width: 992px) {
  .stockist_row .address {
    width: 43%;
  }
}
@media (max-width: 720px) {
  .stockist_row .address::before {
    content: "address:";
  }
}
.stockist_row .phone {
  width: 15%;
  padding-right: 40px;
}
@media (max-width: 992px) {
  .stockist_row .phone {
    width: 18%;
    padding-right: 20px;
  }
}
@media (max-width: 720px) {
  .stockist_row .phone::before {
    content: "phone:";
  }
}
@media (max-width: 720px) {
  .stockist_row .area, .stockist_row .shop, .stockist_row .address, .stockist_row .phone {
    width: 100%;
    padding-left: 70px;
    position: relative;
    min-height: 1em;
  }
  .stockist_row .area::before, .stockist_row .shop::before, .stockist_row .address::before, .stockist_row .phone::before {
    font-family: var(--font_family_en), sans-serif;
    font-weight: 600;
    font-style: normal;
    position: absolute;
    left: 0;
    width: 60px;
    text-align: right;
    line-height: 1.55;
    font-size: 13px;
  }
}
.stockist_row.head {
  border-bottom: none;
  background-color: #e5e5e5;
}
.stockist_row.head > div {
  font-family: var(--font_family_en), sans-serif;
  font-weight: 600;
  font-style: normal;
  padding-top: 6px;
  padding-bottom: 6px;
}
@media (max-width: 720px) {
  .stockist_row.head {
    display: none;
  }
}

@media (max-width: 720px) {
  .no_data {
    display: none;
  }
}

.company_container {
  display: flex;
  flex-wrap: wrap;
  gap: 180px 80px;
}
@media (max-width: 720px) {
  .company_container {
    gap: 80px;
  }
}
.company_container h2 {
  font-family: var(--font_family_en), sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 42px;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 720px) {
  .company_container h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
.company_container h3 {
  font-family: var(--font_family_en), sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 32px;
  margin-bottom: 30px;
  line-height: 1.3;
}
@media (max-width: 720px) {
  .company_container h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.company_container p {
  line-height: 1.7;
}
@media (max-width: 720px) {
  .company_container p {
    font-size: 15px;
  }
}
.company_container p a {
  color: var(--color_link);
  transition: opacity var(--hover_transition_duration) var(--easeOutQuart);
}
.company_container p a:hover {
  opacity: var(--hover_opacity);
}
.company_container .statement {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.company_container .statement > * {
  max-width: 430px;
  margin-right: auto;
  margin-left: auto;
}
.company_container .statement img {
  border-radius: 5%;
  width: 100%;
  height: auto;
  margin-bottom: 40px;
  background-color: #fff;
}
@media (max-width: 720px) {
  .company_container .statement img {
    margin-bottom: 30px;
    width: 70vw;
    height: auto;
  }
}
.company_container .distributor, .company_container .branding {
  width: calc(50% - 40px);
}
@media (max-width: 720px) {
  .company_container .distributor, .company_container .branding {
    width: 100%;
  }
}
.company_container .branding p {
  margin-bottom: 40px;
}
.company_container .branding img {
  margin-bottom: 25px;
  transition: opacity var(--hover_transition_duration) var(--easeOutQuart);
}
.company_container .branding img:hover {
  opacity: var(--hover_opacity);
}
@media (max-width: 720px) {
  .company_container .branding a.logo {
    justify-content: center;
    display: flex;
  }
  .company_container .branding a.button {
    margin: auto;
  }
}
.company_container .company {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 80px;
       column-gap: 80px;
}
.company_container .company h3 {
  margin-bottom: 15px;
}
.company_container .company table {
  font-size: 15px;
  margin: 20px 0;
  line-height: 1.7;
}
.company_container .company table caption {
  text-align: left;
  margin-bottom: 8px;
}
.company_container .company table th, .company_container .company table td {
  padding: 4px 0;
}
.company_container .company table th {
  font-weight: normal;
  text-align: left;
  width: 7em;
  vertical-align: top;
}
.company_container .company table ul {
  list-style-type: none;
}
.company_container .company .ja, .company_container .company .en {
  width: calc(50% - 40px);
}
@media (max-width: 720px) {
  .company_container .company .ja, .company_container .company .en {
    width: 100%;
  }
}
.company_container .company .ja table caption {
  font-size: 17px;
  font-weight: bold;
}
.company_container .company .en table {
  font-family: var(--font_family_en), sans-serif;
  font-weight: 400;
  font-style: normal;
}
.company_container .company .en table caption {
  font-size: 18px;
  font-family: var(--font_family_en), sans-serif;
  font-weight: 600;
  font-style: normal;
}

.contact_container {
  max-width: 580px;
  width: 100%;
}
.contact_container h2 {
  font-family: var(--font_family_en), sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 42px;
  margin-bottom: 40px;
}
@media (max-width: 720px) {
  .contact_container h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
}

.error_container {
  text-align: center;
}
.error_container h2, .error_container h3 {
  font-family: var(--font_family_en), sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1;
}
.error_container h2 {
  font-size: min(170px, 28vw);
  margin-bottom: -0.03em;
}
.error_container h3 {
  font-size: min(56px, 9.5vw);
  margin-bottom: 15px;
}
.error_container p {
  font-size: min(18px, 4vw);
  font-weight: bold;
  margin-bottom: 40px;
}