@charset "UTF-8";
*,
:after,
:before {
  border: 0 solid;
  box-sizing: border-box;
}

:after,
:before {
  --tw-content: "";
}

:host,
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  font-family: Noto Sans JP, sans-serif;
  font-feature-settings: normal;
  font-variation-settings: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-tap-highlight-color: transparent;
}

body {
  line-height: inherit;
  margin: 0;
}

hr {
  border-top-width: 1px;
  color: inherit;
  height: 0;
}

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

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

b,
strong {
  font-weight: bolder;
}

code,
kbd,
pre,
samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
  font-feature-settings: normal;
  font-size: 1em;
  font-variation-settings: normal;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-collapse: collapse;
  border-color: inherit;
  text-indent: 0;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font-family: inherit;
  font-feature-settings: inherit;
  font-size: 100%;
  font-variation-settings: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
}

button,
select {
  text-transform: none;
}

button,
input:where([type=button]),
input:where([type=reset]),
input:where([type=submit]) {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}

:-moz-focusring {
  outline: auto;
}

:-moz-ui-invalid {
  box-shadow: none;
}

progress {
  vertical-align: baseline;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  list-style: none;
}
summary::marker {
  content: "";
}
summary::-webkit-details-marker {
  display: none;
}

blockquote,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
}

fieldset,
legend {
  padding: 0;
}

menu,
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

dialog {
  padding: 0;
}

textarea {
  resize: vertical;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #9ca3af;
  opacity: 1;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #9ca3af;
  opacity: 1;
}

input::placeholder,
textarea::placeholder {
  color: #9ca3af;
  opacity: 1;
}

[role=button],
button {
  cursor: pointer;
}

:disabled {
  cursor: default;
}

audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
  display: block;
  vertical-align: middle;
}

img,
video {
  height: auto;
}

:root {
  /* color */
  --color-white: #ffffff;
  --color-text: #4f4f4f;
  --color-text-blue: #005587;
  --color-bg-light: #eefaff;
  --color-bg-dark: #eaf1f8;
  --color-blue-light: #0bbbef;
  --color-blue-main: #035788;
  --color-blue-medium: #046b9d;
  --color-blue-dark: #032a57;
  --color-green-light: #5083a1;
  --color-orange: #ff8617;
  --color-line: #d9d9d9;
  --color-border: #cfd8e3;
  /* font */
  --font-sans: YuGothic, "Yu Gothic", "游ゴシック体", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-en: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.l-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 600;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
.is-header-hide .l-header {
  opacity: 0;
}
.is-header-show .l-header {
  opacity: 1;
}
.is-header-fixed .l-header {
  position: fixed;
  top: 20rem;
  left: 20rem;
  right: 20rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 8rem;
}
@media only screen and (max-width: 1271px) {
  .is-header-fixed .l-header {
    top: 10rem;
    left: 10rem;
    right: 10rem;
  }
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 60rem, 1380rem);
  height: 51rem;
  margin-inline: auto;
  padding: 0;
  box-sizing: border-box;
}

.l-header__head {
  flex-shrink: 0;
}

.l-header__logo {
  display: block;
  width: 176rem;
  transition: opacity 0.3s ease;
}
@media only screen and (min-width: 1272px) {
  .l-header__logo {
    transform: translateY(4rem);
  }
}

.l-header__logo:hover {
  opacity: 0.7;
}

.l-header__logo-img {
  display: block;
  width: 100%;
  height: auto;
}

.l-header__logo-img--blue {
  display: none;
}

.l-header__right {
  display: flex;
  align-items: center;
  -moz-column-gap: 24rem;
       column-gap: 24rem;
}

.l-header__nav-list {
  display: flex;
  align-items: center;
  -moz-column-gap: 24rem;
       column-gap: 24rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.l-header__nav-item {
  position: relative;
}

.l-header__nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 40rem;
  gap: 6rem;
  font-size: 15rem;
  font-weight: 700;
  line-height: 1.4666666667;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.l-header__nav-arrow {
  display: block;
  width: 6rem;
  height: 5rem;
  flex-shrink: 0;
  transform: translateY(0);
}

.u-sp-br {
  display: none;
}

.l-header__login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 162rem;
  min-width: 162rem;
  height: 37rem;
  padding: 0 16rem;
  box-sizing: border-box;
  color: var(--color-white);
  font-size: 14rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  word-break: keep-all;
  background-color: var(--color-orange);
  border: 1rem solid var(--color-orange);
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.l-header__login:hover {
  color: var(--color-orange);
  background-color: var(--color-white);
  border-color: var(--color-orange);
}

.l-header__login-text {
  white-space: nowrap;
  word-break: keep-all;
}

.l-header.is-header-white .l-header__nav-link {
  color: var(--color-white);
}

.l-header.is-header-white .l-header__logo-img--white {
  display: block;
}

.l-header.is-header-white .l-header__logo-img--blue {
  display: none;
}

.l-header.is-header-dark .l-header__nav-link {
  color: var(--color-text);
}

.l-header.is-header-dark .l-header__logo-img--white {
  display: none;
}

.l-header.is-header-dark .l-header__logo-img--blue {
  display: block;
}

.l-header.is-header-white .l-header__burger-bar {
  background-color: var(--color-white);
}

.l-header.is-header-dark .l-header__burger-bar {
  background-color: var(--color-text);
}

.l-header__subnav {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220rem;
  margin: 0;
  padding: 12rem 0;
  list-style: none;
  background-color: var(--color-blue-main);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.l-header__subnav-link {
  display: block;
  padding: 10rem 16rem;
  color: var(--color-white);
  font-size: 14rem;
  line-height: 1.5;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.l-header__burger {
  display: none;
  padding: 0;
  border: none;
  background: transparent;
}

.l-header__burger-bar {
  display: block;
  width: 30rem;
  height: 1.5rem;
  background-color: var(--color-white);
  transform-origin: center;
  transition: top 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}
.l-header__burger-bar + .l-header__burger-bar {
  margin-top: 5rem;
}

@media only screen and (min-width: 1272px) {
  .l-header__nav-item.is-has-children:hover .l-header__subnav {
    opacity: 1;
    visibility: visible;
  }
  .l-header__nav-link:hover,
  .l-header__subnav-link:hover {
    opacity: 0.7;
  }
}
@media only screen and (max-width: 1271px) {
  .l-header__inner {
    width: 100%;
    height: 63rem;
    padding: 0 0 0 18rem;
  }
  .l-header__nav {
    display: none;
  }
  .l-header__right {
    display: flex;
    align-items: center;
    height: 65rem;
    margin-left: auto;
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .l-header__login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 65rem;
    min-width: 72rem;
    height: 65rem;
    min-height: 48rem;
    padding: 10rem 12rem;
    font-size: 11rem;
    font-weight: 700;
    line-height: 1.4;
    white-space: normal;
  }
  .l-header__login-text {
    width: 52rem;
    line-height: 1.4;
    white-space: normal;
    word-break: keep-all;
  }
  .u-sp-br {
    display: block;
  }
  .l-header__burger {
    position: relative;
    display: block;
    width: 65rem;
    height: 65rem;
    padding: 0;
    margin-left: 0;
  }
  .l-header__burger-bar {
    position: absolute;
    left: 50%;
    width: 30rem;
    height: 1.5rem;
    margin-top: 0;
    transform: translateX(-50%);
  }
  .l-header__burger-bar + .l-header__burger-bar {
    margin-top: 0;
  }
  .l-header__burger-bar--top {
    top: 24rem;
  }
  .l-header__burger-bar--middle {
    top: 32rem;
  }
  .l-header__burger-bar--bottom {
    top: 40rem;
  }
}
@media only screen and (max-width: 767px) {
  .l-header__inner {
    width: 100%;
    height: 63rem;
    padding: 0 0 0 10rem;
  }
  .l-header__logo {
    width: 96rem;
  }
  .l-header__logo-img {
    width: 100%;
  }
  .l-header__right {
    display: flex;
    align-items: center;
    height: 65rem;
    margin-left: auto;
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .u-sp-br {
    display: block;
  }
  .l-header__login {
    display: inline-flex;
    width: 65rem;
    min-width: 65rem;
    height: 65rem;
    min-height: 65rem;
    padding: 0;
    font-size: 10rem;
    line-height: 1.4;
    white-space: normal;
  }
  .l-header__login-text {
    width: 52rem;
    line-height: 1.4;
    white-space: normal;
    word-break: keep-all;
  }
  .l-header__burger {
    position: relative;
    display: block;
    width: 65rem;
    height: 65rem;
    padding: 0;
  }
  .l-header__burger-bar {
    position: absolute;
    left: 50%;
    width: 30rem;
    height: 1.5rem;
    margin-top: 0;
    transform: translateX(-50%);
  }
  .l-header__burger-bar + .l-header__burger-bar {
    margin-top: 0;
  }
  .l-header__burger-bar--top {
    top: 24rem;
  }
  .l-header__burger-bar--middle {
    top: 32rem;
  }
  .l-header__burger-bar--bottom {
    top: 40rem;
  }
}
body.is-sp-menu-open {
  overflow: hidden;
}

body.is-sp-menu-open .l-header__burger-bar {
  width: 32rem;
  height: 1.5rem;
}

body.is-sp-menu-open .l-header__burger-bar--top {
  top: 50%;
  transform: translate(-50%, -50%) rotate(25deg);
}

body.is-sp-menu-open .l-header__burger-bar--middle {
  opacity: 0;
}

body.is-sp-menu-open .l-header__burger-bar--bottom {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);
}

@media only screen and (min-width: 1272px) {
  .is-header-fixed .l-header {
    min-height: 64rem;
  }
  .is-header-fixed .l-header__inner {
    height: 64rem;
    padding-block: 6rem;
  }
  .is-header-fixed .l-header__logo {
    width: 176rem;
    transform: none;
  }
}
.is-header-fixed .l-header.is-header-white .l-header__nav-link,
.is-header-fixed .l-header.is-header-dark .l-header__nav-link {
  color: var(--color-blue-main);
}
.is-header-fixed .l-header.is-header-white .l-header__logo-img--white,
.is-header-fixed .l-header.is-header-dark .l-header__logo-img--white {
  display: none;
}
.is-header-fixed .l-header.is-header-white .l-header__logo-img--blue,
.is-header-fixed .l-header.is-header-dark .l-header__logo-img--blue {
  display: block;
}
.is-header-fixed .l-header.is-header-white .l-header__burger-bar,
.is-header-fixed .l-header.is-header-dark .l-header__burger-bar {
  background-color: var(--color-blue-main);
}

.c-btn {
  position: relative;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  width: 270rem;
  min-height: 48rem;
  padding: 0 40rem 0 20rem;
  color: var(--color-white);
  font-size: 14rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.56px;
  text-decoration: none;
  background-color: var(--color-orange);
  border: 1rem solid var(--color-orange);
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.c-btn__text {
  display: inline-block;
}

/* 右に矢印を置くテキスト左揃えのボタン */
.c-btn.--icon {
  text-align: left;
}

.c-btn.--icon::after {
  position: absolute;
  top: 50%;
  right: 18rem;
  width: 0;
  height: 0;
  border-top: 3rem solid transparent;
  border-bottom: 3rem solid transparent;
  border-left: 5rem solid currentColor;
  content: "";
  transform: translateY(-50%);
}

/* 右に矢印を置くテキスト中央揃えのボタン */
.c-btn.--icon.--text-center {
  justify-content: center;
  padding-right: 48rem;
  padding-left: 48rem;
  text-align: center;
}

/* 白背景版 */
.c-btn.--white {
  color: var(--color-blue-main);
  background-color: var(--color-white);
  border-color: var(--color-blue-main);
}

/* 中央寄せで使いたい場合 */
.c-btn.--center {
  margin-inline: auto;
}

/* PC hover */
@media only screen and (min-width: 1272px) {
  .c-btn:hover {
    color: var(--color-orange);
    background-color: var(--color-white);
  }
  .c-btn.--white:hover {
    color: var(--color-white);
    background-color: var(--color-blue-main);
    border-color: var(--color-blue-main);
  }
}
/* 下層ページ用 横長ボタン */
.c-btn-lower {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 520rem;
  min-height: 68rem;
  margin-inline: auto;
  padding: 20rem 56rem;
  color: var(--color-blue-main);
  font-size: 18rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  background-color: var(--color-bg-light);
  border-top: 3rem solid var(--color-blue-main);
  transition: opacity 0.3s ease;
}

.c-btn-lower::after {
  position: absolute;
  top: 50%;
  right: 16rem;
  width: 18rem;
  height: 18rem;
  background-color: var(--color-blue-main);
  content: "";
  transform: translateY(-50%);
}

.c-btn-lower::before {
  position: absolute;
  top: 50%;
  right: 21rem;
  z-index: 1;
  width: 0;
  height: 0;
  border-top: 4rem solid transparent;
  border-bottom: 4rem solid transparent;
  border-left: 6rem solid var(--color-white);
  content: "";
  transform: translateY(-50%);
}

@media only screen and (min-width: 1272px) and (hover: hover) and (pointer: fine) {
  .c-btn-lower:hover {
    opacity: 0.7;
  }
}
@media only screen and (max-width: 767px) {
  .c-btn-lower {
    max-width: 100%;
    min-height: 56rem;
    padding: 16rem 44rem 16rem 20rem;
    font-size: 14rem;
  }
  .c-btn-lower::after {
    right: 12rem;
    width: 16rem;
    height: 16rem;
  }
  .c-btn-lower::before {
    right: 17rem;
    border-top-width: 3rem;
    border-bottom-width: 3rem;
    border-left-width: 5rem;
  }
}
/* テキストリンク風ボタン */
.c-btn-text {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8rem;
  color: var(--color-text);
  font-size: 14rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.c-btn-text::after {
  width: 6rem;
  height: 6rem;
  border-top: 1rem solid var(--color-orange);
  border-right: 1rem solid var(--color-orange);
  content: "";
  transform: rotate(45deg);
}

@media only screen and (min-width: 1272px) {
  .c-btn-text:hover {
    opacity: 0.7;
  }
  .c-btn-border-bottom:hover {
    opacity: 0.8;
  }
}
@media only screen and (max-width: 1271px) {
  .c-btn {
    min-width: 240rem;
    min-height: 48rem;
    padding: 12rem 40rem 12rem 20rem;
    font-size: 14rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-btn {
    min-width: 220rem;
    min-height: 48rem;
    padding: 14rem 40rem 14rem 20rem;
    font-size: 13rem;
  }
  .c-btn-border-bottom {
    min-height: 48rem;
    padding: 12rem 48rem 12rem 20rem;
    font-size: 14rem;
  }
  .c-btn-text {
    font-size: 13rem;
  }
}
/* セクション見出し */
.c-heading {
  position: relative;
  display: inline-block;
  padding-left: 22rem;
  color: var(--color-blue-main);
  font-size: 32rem;
  font-weight: 700;
  line-height: 1.5;
}

.c-heading::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6rem;
  height: 42rem;
  background-color: var(--color-blue-light);
  content: "";
  transform: translateY(-50%);
}

.c-heading--white {
  color: var(--color-white);
}

.c-heading--line {
  position: relative;
  padding-bottom: 20rem;
}

.c-heading--line::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56rem;
  height: 4rem;
  background-color: var(--color-blue-light);
  content: "";
}

/* 大見出し */
.c-heading--large {
  display: inline-block;
  padding-left: 0;
  color: var(--color-blue-main);
  font-size: 38rem;
  font-weight: 700;
  line-height: 1.2105263158;
}

.c-heading--large-white {
  color: var(--color-white);
}

.c-heading--large-line {
  position: relative;
  padding-bottom: 25rem;
}

.c-heading--large-line::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60rem;
  height: 6rem;
  background-color: var(--color-blue-light);
  content: "";
}

/* 中見出し */
.c-heading--medium {
  position: relative;
  display: inline-block;
  padding-left: 20rem;
  color: var(--color-blue-main);
  font-size: 24rem;
  font-weight: 700;
  line-height: 1.6666666667;
}

.c-heading--medium::before {
  position: absolute;
  top: 20rem;
  left: 0;
  width: 8rem;
  height: 8rem;
  background-color: var(--color-blue-light);
  content: "";
  transform: translateY(-50%);
}

/* 見出し内の改行単位 */
.c-heading span,
.c-heading--medium span {
  display: inline-block;
}

/* 中見出し：装飾なし */
.c-heading--medium-plain {
  padding-left: 0;
}

.c-heading--medium-plain::before {
  content: none;
}

.c-heading--medium-white {
  color: var(--color-white);
}

/* 小見出し */
.c-heading--item {
  position: relative;
  display: inline-block;
  padding-left: 16rem;
  color: var(--color-blue-main);
  font-size: 20rem;
  font-weight: 700;
  line-height: 1.5;
}

.c-heading--item::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 8rem;
  height: 8rem;
  background-color: var(--color-blue-light);
  content: "";
  transform: translateY(-50%);
}

/* 小見出し：装飾なし */
.c-heading--item-plain {
  padding-left: 0;
}

.c-heading--item-plain::before {
  content: none;
}

/* 小見出し：白文字 */
.c-heading--item-white {
  color: var(--color-white);
}

@media only screen and (max-width: 1271px) {
  .c-heading {
    padding-left: 18rem;
    font-size: 24rem;
    line-height: 1.45;
  }
  .c-heading::before {
    width: 5rem;
    height: 32rem;
  }
  .c-heading--large {
    font-size: 34rem;
  }
  .c-heading--medium {
    font-size: 20rem;
    line-height: 1.45;
  }
  .c-heading--medium::before {
    top: 50%;
    width: 7rem;
    height: 7rem;
    transform: translateY(-50%);
  }
  .c-heading--medium-plain {
    padding-left: 0;
    font-size: 18rem;
    line-height: 1.45;
  }
}
@media only screen and (max-width: 767px) {
  .c-heading {
    padding-left: 14rem;
    font-size: 20rem;
    line-height: 1.45;
  }
  .c-heading::before {
    top: 0.72em;
    width: 5rem;
    height: 24rem;
    transform: translateY(-50%);
  }
  .c-heading--line {
    padding-bottom: 16rem;
  }
  .c-heading--line::after {
    width: 44rem;
    height: 3rem;
  }
  .c-heading--large {
    font-size: 24rem;
    line-height: 1.45;
  }
  .c-heading--large-line {
    padding-bottom: 18rem;
  }
  .c-heading--large-line::after {
    width: 48rem;
    height: 4rem;
  }
  .c-heading--medium {
    padding-left: 16rem;
    font-size: 16rem;
    line-height: 1.45;
  }
  .c-heading--medium::before {
    top: 11.6rem;
    width: 6rem;
    height: 6rem;
  }
  .c-heading--medium-plain {
    padding-left: 0;
  }
  .c-heading--medium-plain::before {
    content: none;
  }
  .c-heading--item {
    padding-left: 14rem;
    font-size: 17rem;
    line-height: 1.5;
  }
  .c-heading--item::before {
    top: 0.75em;
    width: 6rem;
    height: 6rem;
  }
}
.c-table {
  width: 100%;
}
.c-table__row {
  display: grid;
  grid-template-columns: 200rem minmax(0, 1fr);
  border-bottom: 1rem solid var(--color-line);
}
.c-table__row:first-child .c-table__head,
.c-table__row:first-child .c-table__data {
  padding-top: 0;
}
.c-table__head, .c-table__data {
  padding: 24rem 0;
  color: var(--color-text);
  font-size: 16rem;
  line-height: 1.5;
  letter-spacing: 0.64px;
}
.c-table__head {
  position: relative;
  font-weight: 700;
}
.c-table__head::after {
  position: absolute;
  left: 0;
  bottom: -1rem;
  width: 100%;
  height: 1rem;
  background-color: var(--color-blue-main);
  content: "";
}
.c-table__data {
  padding-left: 24rem;
  font-weight: 500;
}
.c-table__data a {
  color: var(--color-blue-main);
  text-decoration: underline;
  text-underline-offset: 3rem;
}
.c-table--distributors .c-table__row {
  grid-template-columns: 300rem minmax(0, 1fr);
  -moz-column-gap: 58rem;
       column-gap: 58rem;
}
.c-table--distributors .c-table__head::after {
  bottom: 0;
}
.c-table--distributors .c-table__data {
  padding-left: 0;
}

@media only screen and (max-width: 1271px) {
  .c-table__row {
    grid-template-columns: 176rem minmax(0, 1fr);
  }
  .c-table__head, .c-table__data {
    padding-top: 24rem;
    padding-bottom: 24rem;
  }
  .c-table__data {
    padding-left: 24rem;
  }
  .c-table--distributors .c-table__row {
    grid-template-columns: 240rem minmax(0, 1fr);
    -moz-column-gap: 58rem;
         column-gap: 58rem;
  }
  .c-table--distributors .c-table__data {
    padding-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .c-table__row {
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .c-table__head, .c-table__data {
    display: block;
    width: 100%;
    padding: 16rem 0;
    font-size: 14rem;
    line-height: 1.6;
  }
  .c-table__data {
    padding-left: 0;
  }
  .c-table__head::after {
    bottom: 0;
    width: 100%;
  }
  .c-table__row:first-child .c-table__head {
    padding-top: 0;
  }
  .c-table__row:first-child .c-table__head {
    padding-top: 0;
  }
  .c-table__row:first-child .c-table__data {
    padding-top: 16rem;
  }
  .c-table--distributors .c-table__row {
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .c-table--distributors .c-table__head,
  .c-table--distributors .c-table__data {
    display: block;
    width: 100%;
  }
  .c-table--distributors .c-table__head::after {
    width: 100%;
  }
}
.c-lower-fv {
  position: relative;
  color: var(--color-white);
  background-color: var(--color-blue-main);
  overflow: hidden;
}
.c-lower-fv__title {
  font-size: 38rem;
  font-weight: 700;
  line-height: 1.5;
}
.c-lower-fv__line {
  width: 64rem;
  height: 6rem;
  margin-top: 24rem;
}
.c-lower-fv__breadcrumb {
  margin-top: 48rem;
}
.c-lower-fv--theme-dark .c-lower-fv__title,
.c-lower-fv--theme-dark .c-lower-fv__breadcrumb {
  color: var(--color-white);
}
.c-lower-fv--theme-dark .c-lower-fv__line {
  background-color: var(--color-white);
}
.c-lower-fv--theme-light {
  color: var(--color-blue-main);
  background-color: var(--color-white);
}
.c-lower-fv--theme-light .c-lower-fv__title,
.c-lower-fv--theme-light .c-lower-fv__breadcrumb {
  color: var(--color-blue-main);
}
.c-lower-fv--theme-light .c-lower-fv__line {
  background-color: var(--color-blue-light);
}

.c-lower-fv--image {
  background-color: transparent;
}

.c-lower-fv--plain {
  background-color: var(--color-white);
}

.c-lower-fv--size-normal {
  height: 480rem;
}
@media only screen and (max-width: 1271px) {
  .c-lower-fv--size-normal {
    height: 420rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-lower-fv--size-normal {
    height: 320rem;
  }
}

.c-lower-fv--size-special {
  height: 433rem;
}
@media only screen and (max-width: 1271px) {
  .c-lower-fv--size-special {
    height: 380rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-lower-fv--size-special {
    height: 340rem;
  }
}

.c-lower-fv__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.c-lower-fv__picture {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.c-lower-fv__picture::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
  content: "";
  pointer-events: none;
}

.c-lower-fv__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.c-lower-fv--plain .c-lower-fv__picture::after {
  display: none;
}

.c-lower-fv__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  padding-top: 69rem;
  padding-bottom: 56rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 1271px) {
  .c-lower-fv__inner {
    padding-top: 63rem;
    padding-bottom: 48rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-lower-fv__inner {
    padding-top: 63rem;
    padding-bottom: 40rem;
  }
}

.c-lower-fv__brand {
  display: flex;
  align-items: center;
}

.c-lower-fv__logo {
  display: inline-block;
}

.c-lower-fv__logo img {
  display: block;
  width: auto;
  height: 34rem;
}
@media only screen and (max-width: 767px) {
  .c-lower-fv__logo img {
    height: 28rem;
  }
}

.c-lower-fv__content {
  max-width: 100%;
  padding-top: 112rem;
}
@media only screen and (max-width: 1271px) {
  .c-lower-fv__content {
    padding-top: 96rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-lower-fv__content {
    max-width: 100%;
    padding-top: 80rem;
  }
}

.c-lower-fv--size-special .c-lower-fv__content {
  padding-top: 112rem;
}
@media only screen and (max-width: 1271px) {
  .c-lower-fv--size-special .c-lower-fv__content {
    padding-top: 96rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-lower-fv--size-special .c-lower-fv__content {
    padding-top: 80rem;
  }
}

.c-lower-fv__title {
  font-size: 38rem;
  font-weight: 700;
  line-height: 1.2105263158;
}
@media only screen and (max-width: 1271px) {
  .c-lower-fv__title {
    font-size: 34rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-lower-fv__title {
    font-size: 24rem;
    line-height: 1.3;
    letter-spacing: 0;
  }
}

.c-lower-fv__line {
  width: 60rem;
  height: 6rem;
  margin-top: 19rem;
  background-color: var(--color-blue-light);
}
@media only screen and (max-width: 1271px) {
  .c-lower-fv__line {
    margin-top: 18rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-lower-fv__line {
    width: 44rem;
    height: 4rem;
    margin-top: 16rem;
  }
}

.c-lower-fv__breadcrumb {
  margin-top: 40rem;
  font-size: 12rem;
  line-height: 1.6;
  overflow-x: visible;
}
@media only screen and (max-width: 1271px) {
  .c-lower-fv__breadcrumb {
    margin-top: 32rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-lower-fv__breadcrumb {
    margin-top: 24rem;
    font-size: 11rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
}

.c-sns-box {
  padding: 80rem;
  background-color: var(--color-white);
  border: 6rem solid var(--color-bg-dark);
}

.c-sns-box__text {
  margin-top: 28rem;
  color: var(--color-text);
  font-size: 16rem;
  font-weight: 700;
  line-height: 1.5;
}

.c-sns-box__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24rem;
  margin-top: 32rem;
  padding: 0;
  list-style: none;
}

.c-sns-box__item {
  flex: 0 0 auto;
}

.c-sns-box__item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40rem;
  height: 40rem;
  transition: opacity 0.3s ease;
}

.c-sns-box__item img {
  display: block;
  width: 32rem;
  height: 32rem;
}

@media only screen and (min-width: 1272px) and (hover: hover) and (pointer: fine) {
  .c-sns-box__item a:hover {
    opacity: 0.7;
  }
}
@media only screen and (max-width: 1271px) {
  .c-sns-box {
    padding: 64rem 48rem;
  }
  .c-sns-box__list {
    gap: 20rem;
    margin-top: 28rem;
  }
  .c-sns-box__item img {
    width: 30rem;
    height: 30rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-sns-box {
    padding: 28rem 18rem;
    border-width: 4rem;
  }
  .c-sns-box__text {
    margin-top: 20rem;
    font-size: 14rem;
  }
  .c-sns-box__list {
    -moz-column-gap: 16rem;
         column-gap: 16rem;
    row-gap: 18rem;
    margin-top: 22rem;
  }
  .c-sns-box__item img {
    width: 36rem;
    height: 36rem;
  }
}
.p-lower-products {
  padding-top: 120rem;
  padding-bottom: 120rem;
}
@media only screen and (max-width: 1271px) {
  .p-lower-products {
    padding-top: 88rem;
    padding-bottom: 88rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-lower-products {
    padding-top: 64rem;
    padding-bottom: 64rem;
  }
}

.c-product-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 39rem;
  margin-top: 40rem;
}
@media only screen and (max-width: 1271px) {
  .c-product-cards {
    gap: 24rem;
    margin-top: 40rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-product-cards {
    grid-template-columns: 1fr;
    gap: 32rem;
    margin-top: 32rem;
  }
}

.c-product-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

@media only screen and (min-width: 1272px) and (hover: hover) and (pointer: fine) {
  .c-product-card:hover {
    opacity: 0.7;
  }
}
.c-product-card__image img {
  display: block;
  width: 100%;
  height: auto;
}

.c-product-card .c-heading--medium {
  margin-top: 14rem;
  margin-bottom: 4rem;
}

.c-product-card__label {
  margin: 0;
}

@media only screen and (max-width: 1271px) {
  .c-product-card .c-heading--medium {
    margin-top: 10rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-product-card .c-heading--medium {
    margin-top: 10rem;
  }
  .c-product-card__label {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
.c-text {
  margin: 0;
  color: var(--color-text);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-size: 16rem;
}
@media only screen and (max-width: 767px) {
  .c-text {
    font-size: 14rem;
  }
}
.c-text {
  margin-block: calc((1em - 1lh) / 2);
}

.c-text--white {
  color: var(--color-white);
}

.c-text--medium {
  font-weight: 500;
}

.c-text--bold {
  font-weight: 700;
}

.c-text--small {
  font-size: 14rem;
  line-height: 1.7142857143;
}

@media only screen and (max-width: 767px) {
  .c-text {
    font-size: 14rem;
    line-height: 1.8;
  }
  .c-text--small {
    font-size: 13rem;
    line-height: 1.8;
  }
}
.c-list-square {
  display: grid;
  gap: 16rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-list-square > li {
  position: relative;
  padding-left: 14rem;
  color: var(--color-text);
  font-size: 16rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.c-list-square > li::before {
  position: absolute;
  top: 12rem;
  left: 0;
  width: 6rem;
  height: 6rem;
  background-color: var(--color-blue-light);
  content: "";
  transform: translateY(-50%);
}

.p-distributors-business__sub-list {
  display: grid;
  gap: 4rem;
  margin-top: 8rem;
  padding-left: 0;
  list-style: none;
}
.p-distributors-business__sub-list > li {
  line-height: 1.5;
}
.p-distributors-business__sub-list > li::before {
  content: none;
}

@media only screen and (max-width: 1271px) {
  .c-list-square {
    gap: 12rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-list-square {
    gap: 8rem;
  }
  .c-list-square > li {
    padding-left: 16rem;
    font-size: 14rem;
    line-height: 1.7;
  }
  .c-list-square > li::before {
    top: 11.9rem;
    width: 5rem;
    height: 5rem;
  }
  .p-distributors-business__sub-list {
    gap: 3rem;
    margin-top: 6rem;
  }
  .p-distributors-business__sub-list > li {
    line-height: 1.6;
  }
}
.c-text-link {
  color: var(--color-blue-main);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: opacity 0.3s ease;
}

@media only screen and (min-width: 1272px) and (hover: hover) and (pointer: fine) {
  .c-text-link:hover {
    opacity: 0.7;
  }
}
/* 個別：グローバルアクセス内の注釈リンク位置 */
.p-global-access-note__link {
  display: inline-block;
  margin-top: 4rem;
}

html {
  scroll-padding-top: 85px;
  scroll-behavior: smooth;
  font-size: 1px;
}
@media only screen and (max-width: 1271px) {
  html {
    font-size: 0.09765625vw;
  }
}
@media only screen and (max-width: 1023px) {
  html {
    font-size: 0.1302083333vw;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 0.15625vw;
  }
}
@media only screen and (max-width: 639px) {
  html {
    font-size: 0.2083333333vw;
  }
}
@media only screen and (max-width: 479px) {
  html {
    font-size: 0.2666666667vw;
  }
}
html.is-modal-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}

body {
  min-height: 100dvh;
  height: auto;
  color: var(--color-text);
  font-size: 16rem;
  font-family: var(--font-sans);
  line-break: strict;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
}

.scroll-container {
  flex: 1;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fv-media {
  position: relative;
  overflow: hidden;
}

.fv-media__bg {
  position: absolute;
  inset: 0;
}

.fv-media__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.28);
}

.fv-media__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv-breadcrumb {
  margin-top: 24rem;
}

.fv-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fv-breadcrumb__item {
  position: relative;
  color: var(--color-white);
  font-size: 14rem;
  font-weight: 500;
  line-height: 1.6;
}

.fv-breadcrumb__item + .fv-breadcrumb__item {
  margin-left: 28rem;
}

.fv-breadcrumb__item + .fv-breadcrumb__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -18rem;
  width: 8rem;
  height: 8rem;
  border-top: 1rem solid var(--color-white);
  border-right: 1rem solid var(--color-white);
  transform: translateY(-50%) rotate(45deg);
}

.fv-breadcrumb__link {
  color: var(--color-white);
  text-decoration: none;
}

@media only screen and (min-width: 1272px) and (hover: hover) and (pointer: fine) {
  .fv-breadcrumb__link:hover {
    text-decoration: underline;
  }
}
@media only screen and (max-width: 767px) {
  .fv-breadcrumb {
    margin-top: 16rem;
  }
  .fv-breadcrumb__item {
    font-size: 12rem;
  }
  .fv-breadcrumb__item + .fv-breadcrumb__item {
    margin-left: 20rem;
  }
  .fv-breadcrumb__item + .fv-breadcrumb__item::before {
    left: -14rem;
    width: 6rem;
    height: 6rem;
  }
}
.c-lower-fv__breadcrumb-list {
  display: flex;
  align-items: center;
  -moz-column-gap: 0;
       column-gap: 0;
  row-gap: 8rem;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: nowrap;
  width: -moz-max-content;
  width: max-content;
}

.c-lower-fv__breadcrumb-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: inherit;
  font-size: 14rem;
  font-weight: 400;
  line-height: 1.2142857143;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .c-lower-fv__breadcrumb-item {
    font-size: 12rem;
    line-height: 1;
  }
}

.c-lower-fv__breadcrumb-item + .c-lower-fv__breadcrumb-item {
  margin-left: 26rem;
}
@media only screen and (max-width: 767px) {
  .c-lower-fv__breadcrumb-item + .c-lower-fv__breadcrumb-item {
    margin-left: 18rem;
  }
}

.c-lower-fv__breadcrumb-item + .c-lower-fv__breadcrumb-item::before {
  position: absolute;
  top: 50%;
  left: -16rem;
  width: 0;
  height: 0;
  border-top: 4rem solid transparent;
  border-bottom: 4rem solid transparent;
  border-left: 5rem solid currentColor;
  content: "";
  transform: translateY(-50%);
}
@media only screen and (max-width: 1271px) {
  .c-lower-fv__breadcrumb-item + .c-lower-fv__breadcrumb-item::before {
    left: -14rem;
    border-top-width: 3.5rem;
    border-bottom-width: 3.5rem;
    border-left-width: 4.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-lower-fv__breadcrumb-item + .c-lower-fv__breadcrumb-item::before {
    left: -11rem;
    border-top-width: 3rem;
    border-bottom-width: 3rem;
    border-left-width: 4rem;
  }
}

.c-lower-fv__breadcrumb-item a,
.c-lower-fv__breadcrumb-item span {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}

.c-lower-fv__breadcrumb-item a {
  transition: opacity 0.3s ease;
}

@media only screen and (min-width: 1272px) and (hover: hover) and (pointer: fine) {
  .c-lower-fv__breadcrumb-item a:hover {
    opacity: 0.7;
  }
}