@charset "UTF-8";
html {
  font-size: 62.5%;
  margin: 0;
}

html, body {
  background: var(--bg-main);
  color: var(--font-base);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  height: 100%;
  width: 100%;
}

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, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  background: transparent;
  border: 0;
  color: inherit;
  font-family: inherit;
  font-size: 100%;
  font-stretch: inherit;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}
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 > *, legend > *,
table > *, caption > *, tbody > *, tfoot > *, thead > *, tr > *, th > *, td > *,
article > *, aside > *, canvas > *, details > *, embed > *,
figure > *, figcaption > *, footer > *, header > *,
menu > *, nav > *, output > *, ruby > *, section > *, summary > *,
time > *, mark > *, audio > *, video > * {
  font-size: inherit;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: none;
}
body * {
  box-sizing: border-box;
}
body *::before, body *::after {
  box-sizing: border-box;
}

sup {
  font-size: 0.8em;
  vertical-align: super;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: none;
}

table {
  border-spacing: 0;
}

a {
  text-decoration: none;
}

img {
  vertical-align: top;
}

:root {
  --bg-main: #ECF3FA;
  --bg-caution: #FFF1EF;
  --bg-sub-nav: #A3DAFF;
  --bg-contact: #A2D8FF;
  --bg-global_footer: #F8F8F8;
  --bg-light-gray: #EEEEEE;
  --bg-thead-th: #D3E0EF;
  --border-table: #989898;
  --border-gray: #ADADAD;
  --font-base: #333;
  --font-current: #0C79C5;
  --font-sub-nav: #005B9B;
  --font-caution: #E71425;
}

.l-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  width: 100%;
}
.l-wrapper > * {
  max-width: 100%;
}

.l-main {
  flex: 1;
}
.l-main.-home {
  max-width: unset;
  padding: 0;
}

.l-article {
  width: 100%;
}

.l-footer {
  background: white;
  position: relative;
  width: 100%;
}

.l-header {
  background: white;
  left: 0;
  position: sticky;
  right: 0;
  top: 0;
  width: 100%;
}

.l-header {
  z-index: 100;
}

.p-global_nav__bg {
  z-index: 200;
}
.p-global_nav__container {
  z-index: 200;
}

.c-anchor {
  display: block;
}

.c-btn {
  align-items: center;
  background-color: white;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  line-height: 1.4;
}
.c-btn.-primary {
  background-color: white;
  background-image: url(/assets/img/icn/icn_chevron-small-blue-right.svg);
  background-position: right 12px center;
  background-repeat: no-repeat;
  border: 1px solid var(--font-current);
  border-radius: 100px;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 6px 40px 6px 20px;
}
.c-btn.-accordion {
  border: 1px solid var(--font-current);
  border-radius: 100px;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 6px 40px 6px 20px;
  position: relative;
}
.c-btn.-accordion::after {
  background-image: url(/assets/img/icn/icn_chevron-small-blue-down.svg);
  background-position: center;
  background-repeat: no-repeat;
  bottom: 0;
  content: "";
  height: 12px;
  margin: auto;
  position: absolute;
  right: 12px;
  top: 0;
  transition: 0.2s;
  width: 12px;
}
.c-btn.-accordion.is-opened::after {
  transform: rotate(180deg);
}
.c-btn.-ex_link {
  background-color: white;
  background-image: url(/assets/img/icn/icn_external_link_b.svg);
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 18px;
  border: 1px solid var(--font-current);
  border-radius: 100px;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 6px 40px 6px 20px;
}
.c-btn.-large {
  background: white;
  border: 1px solid var(--font-current);
  border-radius: 100px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.16);
  position: relative;
  width: 100%;
}
.c-btn.-pdf {
  background: white;
  border: 1px solid var(--font-current);
  border-radius: 100px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.16);
  position: relative;
  width: 100%;
}
.c-btn.-pdf::after {
  align-items: center;
  border: 1px solid var(--font-caution);
  border-radius: 100px;
  color: var(--font-caution);
  content: "PDF";
  display: inline-flex;
  font-size: 1.2rem;
  font-weight: bold;
  height: 15px;
  justify-content: center;
  width: 34px;
}
.c-btn.-home {
  background-color: white;
  background-image: url(/assets/img/icn/icn_chevron-small-blue-right.svg);
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 14px;
  border-radius: 100px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  font-weight: 500;
}
.c-btn.-product_info {
  align-items: center;
  background: white;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: var(--font-current);
  display: flex;
  font-weight: bold;
  justify-content: center;
  line-height: 1.4;
  text-align: center;
}
.c-btn_wrapper {
  display: flex;
}
.c-btn_wrapper.-right {
  justify-content: flex-end;
}
.c-btn_wrapper.-center {
  justify-content: center;
}

.c-bnr img {
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  max-width: 100%;
  transition: 0.2s;
}
.c-bnr img:hover {
  opacity: 0.8;
}

.c-grid {
  display: flex;
  flex-wrap: wrap;
}

.c-heading.-lv1 {
  background-image: url(/assets/img/cmn/bg_page_header.svg);
  background-repeat: no-repeat;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.45;
}
.c-heading.-lv2 {
  align-items: flex-start;
  border-bottom: 2px solid var(--font-current);
  display: flex;
  font-weight: bold;
  gap: 10px;
  line-height: 1.5;
}
.c-heading.-lv2 .c-num {
  align-items: center;
  background: var(--font-current);
  border-radius: 100%;
  color: white;
  display: inline-flex;
  font-weight: 500;
  justify-content: center;
  padding-bottom: 2px;
}
.c-heading.-lv2.-notice {
  background-image: url(/assets/img/icn/icn_notice.svg);
  background-position: left 0.2em;
  background-repeat: no-repeat;
  background-size: 1.2em;
  padding-left: 1.5em;
}
.c-heading.-lv2 b {
  flex: 1;
}
.c-heading.-lv3 {
  align-items: flex-start;
  color: var(--font-sub-nav);
  display: flex;
  font-weight: bold;
  gap: 10px;
  line-height: 1.42;
}
.c-heading.-lv3 .c-num {
  align-items: center;
  background: var(--font-current);
  border-radius: 100%;
  color: white;
  display: inline-flex;
  font-weight: 500;
  justify-content: center;
  padding-bottom: 2px;
}
.c-heading.-lv3 b {
  flex: 1;
}
.c-heading.-lv4 {
  align-items: baseline;
  background-color: var(--bg-light-gray);
  background-image: url(/assets/img/icn/icn_heading_lv3.svg);
  background-repeat: no-repeat;
  display: flex;
  flex-wrap: wrap;
  font-weight: 500;
  line-height: 1.4;
}
.c-heading.-lv4.-icon_none {
  background-image: none;
}
.c-heading.-lv5 {
  font-weight: bold;
  line-height: 1.4;
  position: relative;
}
.c-heading.-lv5::before {
  background: var(--font-current);
  border-radius: 100px;
  bottom: 0;
  content: "";
  left: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 6px;
}
.c-heading.-lv6 {
  font-weight: bold;
  line-height: 1.4;
}
.c-heading.-lv6 + * {
  margin-top: 12px;
}
.c-heading.-home {
  background-image: url(/assets/img/cmn/bg_page_header.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  color: var(--font-current);
  font-weight: bold;
  text-align: center;
}

.c-img {
  text-align: center;
}
.c-img img {
  height: auto;
  max-width: 100%;
}

.c-link {
  transition: 0.2s;
}
.c-link.-cmn {
  color: var(--font-sub-nav);
  text-decoration: underline;
}
.c-link.-external {
  color: var(--font-sub-nav);
  text-decoration: underline;
}
.c-link.-external:after {
  background-image: url(/assets/img/icn/icn_external_link_b.svg);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}
.c-link.-pdf {
  color: var(--font-sub-nav);
  text-decoration: underline;
}
.c-link.-pdf::after {
  align-items: center;
  border: 1px solid var(--font-caution);
  border-radius: 100px;
  color: var(--font-caution);
  content: "PDF";
  display: inline-flex;
  font-size: 1.2rem;
  font-weight: bold;
  height: 15px;
  justify-content: center;
  margin-left: 10px;
  width: 34px;
}

ul.c-list.-cmn li {
  line-height: 1.8;
  position: relative;
}
ul.c-list.-cmn li::before {
  background: var(--font-current);
  border-radius: 100%;
  content: "";
  height: 10px;
  left: 0;
  position: absolute;
  width: 10px;
}
ul.c-list.-cmn li + li {
  margin-top: 8px;
}
ul.c-list.-annotation {
  margin-top: 16px;
}
ul.c-list.-annotation > li {
  line-height: 1.7;
  margin-top: 0.5rem;
  padding-left: 1.5em;
  position: relative;
}
ul.c-list.-annotation > li::before {
  content: "※";
  left: 0;
  position: absolute;
}
ul.c-list.-desc {
  margin-top: 16px;
}
ul.c-list.-desc > li {
  line-height: 1.7;
  margin-top: 0.5rem;
  padding-left: 1.5em;
  position: relative;
}
ul.c-list.-desc > li::before {
  content: "・";
  left: 0;
  position: absolute;
}

ol.c-list.-cmn li {
  counter-increment: ol-cmn;
  line-height: 1.8;
  padding-left: 1.5em;
  position: relative;
}
ol.c-list.-cmn li::before {
  content: counter(ol-cmn) ".";
  left: 0;
  margin-right: 0.5em;
  position: absolute;
}
ol.c-list.-cmn li + li {
  margin-top: 16px;
}
ol.c-list.-circled > li {
  counter-increment: ol-circled;
  line-height: 1.8;
  padding-left: 1.5em;
  position: relative;
}
ol.c-list.-circled > li::before {
  align-items: center;
  border: 1px solid var(--font-base);
  border-radius: 100%;
  content: counter(ol-circled);
  display: inline-flex;
  font-weight: 600;
  height: 1.5em;
  justify-content: center;
  letter-spacing: -0.1em;
  margin-right: 0.5em;
  padding-bottom: 0.1rem;
  padding-right: 0.1rem;
  position: absolute;
  width: 1.5em;
}
ol.c-list.-circled > li + li {
  margin-top: 16px;
}
ol.c-list.-circled.-bl > li::before {
  border: 1px solid var(--font-current);
  color: var(--font-current);
  font-weight: 700;
}
ol.c-list.-parentheses > li {
  counter-increment: ol-parentheses;
  line-height: 1.8;
  padding-left: 2em;
  position: relative;
}
ol.c-list.-parentheses > li::before {
  content: "(" counter(ol-parentheses) ")";
  left: 0;
  margin-right: 0.5em;
  position: absolute;
}
ol.c-list.-parentheses > li + li {
  margin-top: 16px;
}
ol.c-list.-katakana li {
  counter-increment: ol-katakana;
  line-height: 1.8;
  padding-left: 2em;
  position: relative;
}
ol.c-list.-katakana li::before {
  content: counter(ol-katakana, katakana) ".";
  left: 0;
  margin-right: 0.5em;
  position: absolute;
}
ol.c-list.-katakana li + li {
  margin-top: 6px;
}
ol.c-list.-katakana.-parentheses li::before {
  content: "(" counter(ol-katakana, katakana) ")";
  left: 0;
  margin-right: 0.5em;
  position: absolute;
}
ol.c-list.-iroha li {
  counter-increment: ol-iroha;
  line-height: 1.8;
  padding-left: 2em;
  position: relative;
}
ol.c-list.-iroha li::before {
  content: counter(ol-iroha, katakana-iroha) ".";
  left: 0;
  margin-right: 0.5em;
  position: absolute;
}
ol.c-list.-iroha li + li {
  margin-top: 6px;
}
ol.c-list.-iroha.-parentheses li::before {
  content: "(" counter(ol-katakana, katakana) ")";
  left: 0;
  margin-right: 0.5em;
  position: absolute;
}
ol.c-list.-annotation li {
  counter-increment: ol-annotation;
  line-height: 1.6;
}
ol.c-list.-annotation li::before {
  color: var(--font-sub-nav);
  content: "注釈" counter(ol-annotation);
  margin-right: 0.5em;
}
ol.c-list.-annotation li + li {
  margin-top: 6px;
}
ol.c-list .c-list {
  margin-top: 1em;
}

dl.c-list.-faq .c-scope {
  background: var(--bg-light-gray);
  border-radius: 8px;
  position: relative;
}
dl.c-list.-faq .c-scope + .c-scope {
  margin-top: 8px;
}
dl.c-list.-faq .c-scope::before, dl.c-list.-faq .c-scope::after {
  background: var(--font-current);
  content: "";
  margin: auto;
  position: absolute;
  transition: 0.2s;
  width: 2px;
}
dl.c-list.-faq .c-scope::after {
  transform: rotate(90deg);
}
dl.c-list.-faq .c-scope.is-opened::before {
  transform: scaleY(0);
}
dl.c-list.-faq .c-scope dt {
  font-weight: 500;
  line-height: 1.5;
  position: relative;
}
dl.c-list.-faq .c-scope dd {
  background-color: white;
  border-radius: 10px;
  display: none;
  position: relative;
}
dl.c-list.-faq .c-scope dd.is-opened {
  display: block;
}
dl.c-list.-faq .c-scope dd .faq_q {
  font-weight: 700;
  line-height: 1.8;
}
dl.c-list.-faq .c-scope dd .faq_q::before {
  align-items: center;
  background: var(--font-current);
  border-radius: 100%;
  color: white;
  content: "Q";
  display: inline-flex;
  font-weight: bold;
  justify-content: center;
  position: absolute;
}
dl.c-list.-faq .c-scope dd .faq_a {
  line-height: 1.8;
  margin-top: 24px;
}
dl.c-list.-faq .c-scope dd .faq_a::before {
  align-items: center;
  background: var(--font-caution);
  border-radius: 100%;
  color: white;
  content: "A";
  display: inline-flex;
  font-weight: bold;
  justify-content: center;
  position: absolute;
}
dl.c-list.-faq + * {
  margin-top: 40px;
}
dl.c-list.-faq.-icon_none .c-scope {
  background-color: white;
}
dl.c-list.-faq.-icon_none .c-scope dt {
  padding-left: 16px;
}
dl.c-list.-faq.-icon_none .c-scope dt::before {
  display: none !important;
}
dl.c-list.-faq.-icon_none .c-scope dd {
  padding-left: 16px;
}
dl.c-list.-faq.-icon_none .c-scope dd::before {
  display: none !important;
}
dl.c-list.-executive {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.8;
  width: 100%;
}
dl.c-list.-executive dt {
  width: 9em;
}
dl.c-list.-executive dd {
  width: calc(100% - 9em);
}

.c-section {
  background: white;
  border-radius: 8px;
  position: relative;
}
.c-section.-flow + .c-section.-flow::before {
  border-bottom: 0;
  border-style: solid;
  content: "";
  height: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 0;
}
.c-section.-lv2 {
  border: 5px solid var(--bg-thead-th);
}
.c-section.-lv3 {
  background: var(--bg-light-gray);
}
.c-section.-lv3 .c-heading.-lv4 + * {
  margin-top: 0;
}

.c-table.-cmn {
  background: white;
  border: 1px solid var(--border-table);
  border-collapse: collapse;
  table-layout: fixed;
}
.c-table.-cmn thead th {
  background: var(--bg-thead-th);
  line-height: 1.4;
}
.c-table.-cmn th, .c-table.-cmn td {
  border: 1px solid var(--border-table);
  line-height: 1.8;
  vertical-align: middle;
}
.c-table.-cmn th .c-btn_wrapper, .c-table.-cmn td .c-btn_wrapper {
  margin: 8px 0;
}
.c-table.-cmn th .c-btn_wrapper .c-btn, .c-table.-cmn td .c-btn_wrapper .c-btn {
  line-height: 1;
}
.c-table.-cmn th ul.c-list.-annotation li, .c-table.-cmn td ul.c-list.-annotation li {
  font-size: clamp(1rem, 1.5vw, 1.6rem);
}
.c-table.-cmn th {
  background: var(--bg-light-gray);
}
.c-table.-cmn.-th_left tbody th {
  text-align: left;
}
.c-table.-cmn.-thtd_top tbody th,
.c-table.-cmn.-thtd_top tbody td {
  vertical-align: top;
}
.c-table.-cmn.-td_center tbody td {
  text-align: center;
}
.c-table_wrapper.-scroll {
  overflow: auto;
  position: relative;
  width: 100%;
}
.c-table_wrapper.-scroll + * {
  margin-top: 16px;
}

p {
  line-height: 1.8;
}

sup.c-annotation {
  color: var(--font-sub-nav);
  display: inline-block;
  margin: 0 4px;
}

.c-caption {
  margin-bottom: 16px;
}
.c-caption.-date {
  text-align: right;
}
.c-caption.-heading {
  font-weight: bold;
  line-height: 1.4;
  text-align: left;
}

em {
  font-weight: bold;
}

strong {
  color: var(--font-sub-nav);
  font-weight: bold;
}

.tsumi {
  background-color: #B3BC82;
  color: white;
  padding: 0 5px;
}

.p-accordion__target {
  display: none;
}
.p-accordion__target.is-show[data-display-type=block] {
  display: block;
}
.p-accordion__target.is-show[data-display-type=flex] {
  display: flex;
}

.p-block_skip {
  left: 0;
  position: absolute;
  top: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 0;
  transform: translate(-100%, -100%);
}

.p-bnr__list {
  display: flex;
  flex-wrap: wrap;
}
.p-bnr.-main li .c-btn {
  border-radius: 8px;
  color: white;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
.p-bnr.-main li .c-btn.-basic_policy {
  background: linear-gradient(#63d9f5 0%, #4960de 100%);
}
.p-bnr.-main li .c-btn.-commission {
  background: linear-gradient(#cfd951 0%, #0fb185 100%);
}
.p-bnr.-main li .c-btn.-view {
  background: linear-gradient(#ffa44a 0%, #e24538 100%);
  position: relative;
}
.p-bnr.-main li .c-btn.-view:after {
  background-image: url(/assets/img/icn/icn_external_link.svg);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 16px;
  content: "";
  display: inline-block;
  position: absolute;
  right: 16px;
}
.p-bnr.-main li .c-btn.-bg_red {
  background: var(--font-caution);
}
.p-bnr.-main li .c-btn.-bg_blue {
  background: var(--font-current);
}
.p-bnr.-main li .c-btn.-exlink:after {
  background-image: url(/assets/img/icn/icn_external_link.svg);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 16px;
  content: "";
  display: inline-block;
  position: absolute;
  right: 16px;
}
.p-bnr.-main + * {
  margin-top: 40px;
}
.p-bnr.-sub {
  border-bottom: 1px solid var(--border-gray);
  border-top: 1px solid var(--border-gray);
  display: flex;
}
.p-bnr.-sub + .p-bnr.-sub {
  border-top: 0;
}
.p-bnr.-sub + .p-global_sitemap {
  margin-top: 40px;
}
.p-bnr.-sub figcaption {
  display: flex;
  font-size: 2rem;
  font-weight: bold;
  justify-content: center;
  line-height: 1.4;
  text-align: center;
}

.p-box {
  background-color: white;
  border: 2px solid var(--font-current);
}
.p-box + * {
  margin-top: 32px;
}
.p-box.-gray {
  border: 1px solid var(--border-table);
}

.p-btt a {
  background-color: var(--font-current);
  background-image: url(/assets/img/icn/icn_btt.svg);
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 100%;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  height: 40px;
  overflow: hidden;
  position: fixed;
  text-indent: -100vw;
  width: 40px;
  z-index: 10;
}

.p-card.-account {
  background: white;
  border-radius: 16px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
}
.p-card.-account .c-headline {
  color: var(--font-sub-nav);
  font-weight: bold;
  line-height: 1.4;
  position: relative;
}
.p-card.-account .c-headline::after {
  background: linear-gradient(90deg, #e71425 0%, #3079c5 100%);
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  width: 100%;
}
.p-card.-document {
  background: white;
  border-radius: 16px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.p-card.-document .c-img img {
  height: auto;
  width: 100%;
}
.p-card.-document .c-headline {
  color: var(--font-sub-nav);
  font-weight: bold;
  line-height: 1.5;
}
.p-card.-document .c-headline + .c-sub_text {
  margin-top: 12px;
}
.p-card.-document .c-sub_text {
  line-height: 1.5;
}
.p-card.-useful {
  align-items: center;
  background: white;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.p-card.-useful .c-img {
  text-align: center;
}
.p-card.-useful .c-img img {
  height: auto;
}
.p-card.-useful .c-headline {
  font-weight: bold;
  line-height: 1.45;
}

.p-contact {
  align-items: center;
  background: var(--bg-contact);
  display: flex;
  flex-direction: column;
}
.p-contact .c-heading {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.4;
  padding-bottom: 8px;
  position: relative;
}
.p-contact .c-heading::after {
  background: var(--font-base);
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 32px;
}
.p-contact .c-container {
  align-items: center;
  display: flex;
  justify-content: center;
}
.p-contact .c-container .c-btn.-primary {
  border: none;
  flex-shrink: 0;
  margin: 0;
}
.p-contact .tel {
  font-weight: 700;
}
.p-footer_nav__list {
  display: flex;
}
.p-footer_nav li {
  align-items: center;
  display: flex;
  line-height: 1.4;
  position: relative;
}
.p-footer_nav li:last-child::after {
  content: none;
}

.p-global_footer {
  display: flex;
  flex-direction: column;
}
.p-global_footer__bottom {
  background: var(--font-current);
  display: flex;
}
.p-global_footer__bottom p {
  color: white;
  font-size: 1.2rem;
  margin: 0;
}
.p-global_header__symbol img {
  height: auto;
  width: 100%;
}
.p-global_nav__hamburger {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 50px;
  justify-content: center;
  padding: 4px;
  width: 50px;
}
.p-global_nav__hamburger .c-icn {
  flex: 1;
  position: relative;
  width: 100%;
}
.p-global_nav__hamburger .c-icn::before, .p-global_nav__hamburger .c-icn::after {
  background: var(--font-current);
  border-radius: 2px;
  bottom: 0;
  content: "";
  height: 2px;
  left: 4px;
  margin-left: auto;
  position: absolute;
  right: 4px;
}
.p-global_nav__hamburger .c-icn::before {
  transform: translateY(-10px);
  width: 34px;
}
.p-global_nav__hamburger .c-icn::after {
  width: 15px;
}
.p-global_nav__hamburger .c-label {
  color: var(--font-current);
  font-weight: bold;
}
.p-global_nav__bg {
  height: 100dvh;
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 100dvw;
  z-index: 10000;
}
.p-global_nav__utility .c-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.p-global_nav__utility .c-list li {
  width: calc((100% - 8px) / 2);
}
.p-global_nav__utility .c-btn {
  align-items: center;
  border-radius: 8px;
  display: flex;
  gap: 4px;
  height: 56px;
  padding: 4px;
  position: relative;
}
.p-global_nav__utility .c-btn.-home {
  background: white;
  padding: 4px 12px;
}
.p-global_nav__utility .c-btn.-home .c-label {
  color: var(--font-sub-nav);
}
.p-global_nav__utility .c-btn.-home::after {
  background-image: url(/assets/img/icn/icn_sub_nav_heading.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  height: 16px;
  margin: auto;
  position: absolute;
  right: 12px;
  top: 0;
  width: 16px;
}
.p-global_nav__utility .c-icn {
  flex-shrink: 0;
  width: 24px;
}
.p-global_nav__utility .c-icn img {
  height: auto;
  width: 100%;
}
.p-global_nav__utility .c-label {
  color: white;
  font-size: clamp(13.6533333328px, 16 / 375 * 100vw, 16px);
  font-weight: bold;
  line-height: 1.25;
}
.p-global_nav__container .c-close {
  height: 50px;
  position: absolute;
  right: 12px;
  top: 10px;
  width: 50px;
}
.p-global_nav__container .c-close::before, .p-global_nav__container .c-close::after {
  background: var(--font-current);
  content: "";
  height: 38px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 2px;
}
.p-global_nav__container .c-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.p-global_nav__list {
  display: flex;
}
.p-global_nav__contact a {
  align-items: center;
  background: var(--primary);
  color: white;
  display: flex;
  font-weight: bold;
  justify-content: center;
}
.p-global_nav__sub {
  display: none;
}
.p-global_nav #GLOBAL_NAV_STATUS {
  left: 0;
  position: fixed;
  top: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 0;
  transform: translate(-100%, -100%);
}
body.is-debug .p-global_nav #GLOBAL_NAV_STATUS {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  opacity: 1;
  transform: translate(100%, 100%);
  z-index: 10000;
}

.p-global_sitemap {
  background: var(--bg-global_footer);
  display: flex;
  flex-direction: column;
}
.p-global_sitemap__symbol img {
  height: auto;
  max-width: 238px;
  width: 75%;
}
.p-global_sitemap__container {
  display: flex;
}
.p-global_sitemap__col {
  width: 100%;
}
.p-global_sitemap__list {
  display: flex;
}
.p-global_sitemap__list dt, .p-global_sitemap__list li {
  color: var(--font-current);
}
.p-global_sitemap__list dt a, .p-global_sitemap__list li a {
  line-height: 1.3125;
  transition: 0.2s;
}
.p-hansel__list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.p-hansel__list li {
  align-items: center;
  display: flex;
  gap: 5px;
  position: relative;
}
.p-hansel__list li a {
  transition: 0.2s;
}
.p-hansel__list li a:hover {
  color: var(--font-caution);
}
.p-hansel__list li mark {
  color: var(--font-sub-nav);
}
.p-hansel__list li + li::before {
  background-image: url(/assets/img/icn/icn_chevron-small-thin-gray-right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 12px;
  width: 10px;
}

.p-home_main_visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-home_main_visual .c-lead {
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
}
.p-home_bnr.-main {
  display: flex;
  justify-content: center;
}
.p-home_bnr.-main .c-list {
  display: flex;
}
.p-home_bnr.-main li {
  display: flex;
}
.p-home_bnr.-main .c-bnr {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: block;
  overflow: hidden;
}
.p-home_bnr.-main .c-bnr.-direct {
  background: var(--bg-main);
}
.p-home_bnr.-main .c-bnr.-direct .c-symbol {
  color: var(--font-current);
  font-weight: bold;
  grid-area: symbol;
}
.p-home_bnr.-main .c-bnr.-direct .c-symbol .c-en {
  color: var(--font-caution);
}
.p-home_bnr.-main .c-bnr.-direct .c-btn_wrapper.-sub .c-btn.-primary {
  border: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: var(--font-current);
}
.p-home_bnr.-main .c-bnr.-direct .c-btn_wrapper.-main .c-btn.-main {
  background: linear-gradient(#e71425 0%, #eb854e 100%);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: white;
  display: flex;
  font-weight: bold;
  justify-content: center;
  line-height: 1.45;
}
.p-home_bnr.-campaign {
  background: var(--bg-main);
}
.p-home_bnr.-campaign .c-list, .p-home_bnr.-pickup .c-list {
  display: flex;
  flex-wrap: wrap;
}
.p-home_bnr.-campaign .c-list li a, .p-home_bnr.-pickup .c-list li a {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: block;
}
.p-home_bnr.-campaign .c-list li a img, .p-home_bnr.-pickup .c-list li a img {
  width: 100%;
}
.p-home_bnr.-pickup {
  background: white;
}
.p-home_bnr.-useful, .p-home_bnr.-product_info {
  overflow: hidden;
  position: relative;
}
.p-home_bnr.-useful .p-home_bnr__bg, .p-home_bnr.-product_info .p-home_bnr__bg {
  height: calc(100% + 250px);
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: -1;
}
.p-home_bnr.-useful .p-home_bnr__bg img, .p-home_bnr.-product_info .p-home_bnr__bg img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-home_bnr.-useful .c-list, .p-home_bnr.-product_info .c-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.p-home_news {
  background: white;
}
.p-home_news .c-caution {
  font-size: 1.4rem;
  width: 100%;
}
.p-home_news .c-caution .c-icn.-pdf {
  background: white;
  border: 1px solid var(--font-caution);
  border-radius: 100px;
  color: var(--font-caution);
  content: "PDF";
  display: inline-flex;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.25;
  margin-right: 6px;
  padding: 0 4px;
}
.p-home_news .c-caution img {
  vertical-align: text-bottom;
}

.p-inner_link__list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}
.p-inner_link__list a {
  background-color: white;
  background-image: url(/assets/img/icn/icn_chevron-small-blue-down.svg);
  background-repeat: no-repeat;
  border-radius: 100px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: flex;
  line-height: 1.5;
}

body.index #container {
  background: white;
  margin: 0 auto;
  max-width: 800px;
}
body.index #container #header {
  border-bottom: 3px solid var(--font-current);
  padding: 15px;
}
body.index #container #footer {
  background-color: var(--font-current);
  margin-top: 20px;
}
body.index #container #footer p {
  color: white;
  padding: 5px;
  text-align: center;
}
body.index #container .c-btn {
  margin: 30px auto;
}

.p-modal {
  bottom: 0;
  display: none;
  left: 0;
  overflow: auto;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}
.p-modal__content {
  background: white;
  margin: auto;
  min-width: 100%;
  position: relative;
}
.p-modal__content .c-section {
  padding: 0 0 20px;
}
.p-modal__header {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.p-modal__close {
  height: 50px;
  position: relative;
  transition: 0.2s;
  width: 50px;
}
.p-modal__close::before, .p-modal__close::after {
  background: var(--font-current);
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  transform: rotate(45deg);
  width: 50px;
}
.p-modal__close::after {
  transform: rotate(-45deg);
}
.newsBox dl {
  align-items: baseline;
  border-bottom: 1px dotted var(--font-base);
  display: flex;
}
.newsBox dl dt.date {
  font-size: 1.6rem;
}
.newsBox dl dt.ico img {
  vertical-align: baseline;
}
.newsBox dl dd {
  line-height: 1.8125;
}
.newsBox dl dd a {
  text-decoration: underline;
  transition: 0.2s;
}
.newsBox dl dd img {
  margin-left: 5px;
  vertical-align: text-bottom;
}
.newsBox > p {
  line-height: 1.4;
  margin-top: 16px;
}
.newsBox > p img {
  vertical-align: baseline;
}

.ee-components-style-global {
  background-color: white;
}

.p-notification {
  background: var(--bg-caution);
}
.p-notification .c-heading {
  align-items: center;
  display: flex;
  flex-shrink: 0;
}
.p-notification .c-list li a {
  color: var(--font-caution);
  display: block;
  font-weight: 500;
  line-height: 1.4;
  padding-left: 20px;
  position: relative;
}
.p-notification .c-list li a[href*=".pdf"]::after {
  background: white;
  border: 1px solid var(--font-caution);
  border-radius: 100px;
  content: "PDF";
  display: inline-flex;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.25;
  padding: 0 4px;
}
.p-notification .c-list li a::before {
  background-image: url(/assets/img/icn/icn_notification.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 15px;
  left: 0;
  position: absolute;
  top: 0.5rem;
  width: 15px;
}
.p-notification .c-list li + li {
  margin-top: 10px;
}

.p-tab_menu__list {
  align-items: stretch;
  display: flex;
}
.p-tab_menu__list li {
  width: 25%;
}
.p-tab_menu__list a {
  background-color: white;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.14);
  display: flex;
  flex-direction: column;
  font-weight: 700;
  height: 100%;
  justify-content: center;
  line-height: 1.5;
  text-align: center;
}
.p-tab_menu__list a.-current {
  background-color: #cfe6f6;
  background-image: none;
  box-shadow: none;
}
.p-tab_menu__list a.-current:hover {
  background-color: #cfe6f6;
}
.p-tab_menu + .c-section {
  background: #cfe6f6;
  border-radius: 0 0 8px 8px;
}
.p-utility_nav__list {
  display: flex;
  gap: 8px;
}
.p-utility_nav__list li .c-link {
  align-items: center;
  color: white;
  display: flex;
  font-weight: 700;
  justify-content: center;
}
.p-utility_nav__list li .c-link.-document {
  background: linear-gradient(-90deg, #8cce24 0%, #0fb185 100%);
}
.p-utility_nav__list li .c-link.-online {
  background: linear-gradient(90deg, #3079c5 0%, #0fadd3 100%);
}
.p-utility_nav__list li .c-link.-login {
  background: linear-gradient(90deg, #e71425 0%, #eb854e 100%);
}

html[lang=en-US] ._jp {
  display: none !important;
}

html[lang=ja] ._en {
  display: none !important;
}

.u-tc {
  text-align: center;
}

.u-tl {
  text-align: left;
}

.u-tr {
  text-align: right;
}

.u-tc_red {
  color: var(--font-caution);
}

.u-tc_blue {
  color: var(--font-current);
}

@media print, screen and (min-width: 800px) {
  .l-wrapper {
    align-items: center;
  }
  .l-main {
    max-width: 1240px;
    min-width: 800px;
    padding: 0 20px 96px;
    width: 100%;
  }
  .l-header {
    display: flex;
    justify-content: center;
  }
  .c-anchor {
    transform: translateY(-98px);
  }
  .c-btn.-primary {
    transition: 0.2s;
  }
  .c-btn.-primary:hover {
    background-color: var(--bg-caution);
    background-position: right 8px center;
  }
  .c-btn.-accordion {
    transition: 0.2s;
  }
  .c-btn.-accordion:hover {
    background-color: var(--bg-caution);
    background-position: right 8px center;
  }
  .c-btn.-accordion:active {
    background-color: white;
  }
  .c-btn.-ex_link {
    transition: 0.2s;
  }
  .c-btn.-ex_link:hover {
    background-color: var(--bg-caution);
    background-position: right 8px center;
  }
  .c-btn.-large {
    font-size: 1.8rem;
    justify-content: flex-start;
    line-height: 1.4;
    max-width: 842px;
    padding: 16px 64px 16px 32px;
    transition: 0.2s;
  }
  .c-btn.-large:hover {
    background-color: var(--bg-caution);
  }
  .c-btn.-pdf {
    font-size: 1.8rem;
    justify-content: flex-start;
    line-height: 1.4;
    max-width: 842px;
    padding: 16px 64px 16px 32px;
    transition: 0.2s;
  }
  .c-btn.-pdf:hover {
    background-color: var(--bg-caution);
  }
  .c-btn.-pdf::after {
    position: absolute;
    right: 30px;
  }
  .c-btn.-home {
    background-color: white;
    background-image: url(/assets/img/icn/icn_chevron-small-blue-right.svg);
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-size: 14px;
    font-size: 1.8rem;
    height: 70px;
    outline: var(--font-current) solid 2px;
    outline-offset: -8px;
    transition: 0.2s;
    width: 400px;
  }
  .c-btn.-home:hover {
    background-color: var(--bg-caution);
  }
  .c-btn.-product_info {
    font-size: 1.8rem;
    height: 70px;
    transition: 0.2s;
  }
  .c-btn.-product_info:hover {
    background: var(--bg-caution);
  }
  .c-btn_wrapper + * {
    margin-top: 40px;
  }
  .c-container.-sub {
    margin-left: 24px;
    margin-right: 24px;
  }
  .c-container.-sub + * {
    margin-top: 40px;
  }
  .c-grid .c-col {
    width: 100%;
  }
  .c-grid .c-col[data-col*="pc:1/2"] {
    width: 50%;
  }
  .c-grid .c-col[data-col*="pc:1/3"] {
    width: 33.3333333333%;
  }
  .c-grid .c-col[data-col*="pc:2/3"] {
    width: 66.6666666667%;
  }
  .c-grid .c-col[data-col*="pc:1/4"] {
    width: 25%;
  }
  .c-grid .c-col[data-col*="pc:1/5"] {
    width: 20%;
  }
  .c-grid .c-col[data-col*=fixed] {
    width: auto;
  }
  .c-grid .c-col[data-order*="pc:1"] {
    order: 1;
  }
  .c-grid .c-col[data-order*="pc:2"] {
    order: 2;
  }
  .c-grid .c-col[data-order*="pc:3"] {
    order: 3;
  }
  .c-grid .c-col[data-order*="pc:4"] {
    order: 4;
  }
  .c-grid .c-col[data-order*="pc:5"] {
    order: 5;
  }
  .c-grid .c-col[data-order*="pc:6"] {
    order: 6;
  }
  .c-grid .c-col[data-order*="pc:7"] {
    order: 7;
  }
  .c-grid .c-col[data-order*="pc:8"] {
    order: 8;
  }
  .c-grid .c-col[data-order*="pc:9"] {
    order: 9;
  }
  .c-grid .c-col[data-order*="pc:10"] {
    order: 10;
  }
  .c-grid[data-gap-row*="pc:4"] {
    row-gap: 4px;
  }
  .c-grid[data-gap-row*="pc:8"] {
    row-gap: 8px;
  }
  .c-grid[data-gap-row*="pc:12"] {
    row-gap: 12px;
  }
  .c-grid[data-gap-row*="pc:16"] {
    row-gap: 16px;
  }
  .c-grid[data-gap-row*="pc:20"] {
    row-gap: 20px;
  }
  .c-grid[data-gap-row*="pc:24"] {
    row-gap: 24px;
  }
  .c-grid[data-gap-row*="pc:28"] {
    row-gap: 28px;
  }
  .c-grid[data-gap-row*="pc:32"] {
    row-gap: 32px;
  }
  .c-grid[data-gap-row*="pc:36"] {
    row-gap: 36px;
  }
  .c-grid[data-gap-row*="pc:40"] {
    row-gap: 40px;
  }
  .c-grid[data-gap-row*="pc:44"] {
    row-gap: 44px;
  }
  .c-grid[data-gap-row*="pc:48"] {
    row-gap: 48px;
  }
  .c-grid[data-gap-col*="pc:4"] {
    -moz-column-gap: 4px;
    column-gap: 4px;
  }
  .c-grid[data-gap-col*="pc:4"] > .c-col[data-col*="pc:1/2"] {
    width: calc((100% - 4px * 1) / 2);
  }
  .c-grid[data-gap-col*="pc:4"] > .c-col[data-col*="pc:1/3"] {
    width: calc((100% - 4px * 2) / 3);
  }
  .c-grid[data-gap-col*="pc:4"] > .c-col[data-col*="pc:2/3"] {
    width: calc(66.6666666667% - 4px);
  }
  .c-grid[data-gap-col*="pc:4"] > .c-col[data-col*="pc:1/4"] {
    width: calc((100% - 4px * 3) / 4);
  }
  .c-grid[data-gap-col*="pc:4"] > .c-col[data-col*="pc:1/5"] {
    width: calc((100% - 4px * 4) / 5);
  }
  .c-grid[data-gap-col*="pc:4"] > .c-col[data-col*="pc:1/6"] {
    width: calc((100% - 4px * 5) / 6);
  }
  .c-grid[data-gap-col*="pc:8"] {
    -moz-column-gap: 8px;
    column-gap: 8px;
  }
  .c-grid[data-gap-col*="pc:8"] > .c-col[data-col*="pc:1/2"] {
    width: calc((100% - 8px * 1) / 2);
  }
  .c-grid[data-gap-col*="pc:8"] > .c-col[data-col*="pc:1/3"] {
    width: calc((100% - 8px * 2) / 3);
  }
  .c-grid[data-gap-col*="pc:8"] > .c-col[data-col*="pc:2/3"] {
    width: calc(66.6666666667% - 8px);
  }
  .c-grid[data-gap-col*="pc:8"] > .c-col[data-col*="pc:1/4"] {
    width: calc((100% - 8px * 3) / 4);
  }
  .c-grid[data-gap-col*="pc:8"] > .c-col[data-col*="pc:1/5"] {
    width: calc((100% - 8px * 4) / 5);
  }
  .c-grid[data-gap-col*="pc:8"] > .c-col[data-col*="pc:1/6"] {
    width: calc((100% - 8px * 5) / 6);
  }
  .c-grid[data-gap-col*="pc:12"] {
    -moz-column-gap: 12px;
    column-gap: 12px;
  }
  .c-grid[data-gap-col*="pc:12"] > .c-col[data-col*="pc:1/2"] {
    width: calc((100% - 12px * 1) / 2);
  }
  .c-grid[data-gap-col*="pc:12"] > .c-col[data-col*="pc:1/3"] {
    width: calc((100% - 12px * 2) / 3);
  }
  .c-grid[data-gap-col*="pc:12"] > .c-col[data-col*="pc:2/3"] {
    width: calc(66.6666666667% - 12px);
  }
  .c-grid[data-gap-col*="pc:12"] > .c-col[data-col*="pc:1/4"] {
    width: calc((100% - 12px * 3) / 4);
  }
  .c-grid[data-gap-col*="pc:12"] > .c-col[data-col*="pc:1/5"] {
    width: calc((100% - 12px * 4) / 5);
  }
  .c-grid[data-gap-col*="pc:12"] > .c-col[data-col*="pc:1/6"] {
    width: calc((100% - 12px * 5) / 6);
  }
  .c-grid[data-gap-col*="pc:16"] {
    -moz-column-gap: 16px;
    column-gap: 16px;
  }
  .c-grid[data-gap-col*="pc:16"] > .c-col[data-col*="pc:1/2"] {
    width: calc((100% - 16px * 1) / 2);
  }
  .c-grid[data-gap-col*="pc:16"] > .c-col[data-col*="pc:1/3"] {
    width: calc((100% - 16px * 2) / 3);
  }
  .c-grid[data-gap-col*="pc:16"] > .c-col[data-col*="pc:2/3"] {
    width: calc(66.6666666667% - 16px);
  }
  .c-grid[data-gap-col*="pc:16"] > .c-col[data-col*="pc:1/4"] {
    width: calc((100% - 16px * 3) / 4);
  }
  .c-grid[data-gap-col*="pc:16"] > .c-col[data-col*="pc:1/5"] {
    width: calc((100% - 16px * 4) / 5);
  }
  .c-grid[data-gap-col*="pc:16"] > .c-col[data-col*="pc:1/6"] {
    width: calc((100% - 16px * 5) / 6);
  }
  .c-grid[data-gap-col*="pc:20"] {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
  .c-grid[data-gap-col*="pc:20"] > .c-col[data-col*="pc:1/2"] {
    width: calc((100% - 20px * 1) / 2);
  }
  .c-grid[data-gap-col*="pc:20"] > .c-col[data-col*="pc:1/3"] {
    width: calc((100% - 20px * 2) / 3);
  }
  .c-grid[data-gap-col*="pc:20"] > .c-col[data-col*="pc:2/3"] {
    width: calc(66.6666666667% - 20px);
  }
  .c-grid[data-gap-col*="pc:20"] > .c-col[data-col*="pc:1/4"] {
    width: calc((100% - 20px * 3) / 4);
  }
  .c-grid[data-gap-col*="pc:20"] > .c-col[data-col*="pc:1/5"] {
    width: calc((100% - 20px * 4) / 5);
  }
  .c-grid[data-gap-col*="pc:20"] > .c-col[data-col*="pc:1/6"] {
    width: calc((100% - 20px * 5) / 6);
  }
  .c-grid[data-gap-col*="pc:24"] {
    -moz-column-gap: 24px;
    column-gap: 24px;
  }
  .c-grid[data-gap-col*="pc:24"] > .c-col[data-col*="pc:1/2"] {
    width: calc((100% - 24px * 1) / 2);
  }
  .c-grid[data-gap-col*="pc:24"] > .c-col[data-col*="pc:1/3"] {
    width: calc((100% - 24px * 2) / 3);
  }
  .c-grid[data-gap-col*="pc:24"] > .c-col[data-col*="pc:2/3"] {
    width: calc(66.6666666667% - 24px);
  }
  .c-grid[data-gap-col*="pc:24"] > .c-col[data-col*="pc:1/4"] {
    width: calc((100% - 24px * 3) / 4);
  }
  .c-grid[data-gap-col*="pc:24"] > .c-col[data-col*="pc:1/5"] {
    width: calc((100% - 24px * 4) / 5);
  }
  .c-grid[data-gap-col*="pc:24"] > .c-col[data-col*="pc:1/6"] {
    width: calc((100% - 24px * 5) / 6);
  }
  .c-grid[data-gap-col*="pc:28"] {
    -moz-column-gap: 28px;
    column-gap: 28px;
  }
  .c-grid[data-gap-col*="pc:28"] > .c-col[data-col*="pc:1/2"] {
    width: calc((100% - 28px * 1) / 2);
  }
  .c-grid[data-gap-col*="pc:28"] > .c-col[data-col*="pc:1/3"] {
    width: calc((100% - 28px * 2) / 3);
  }
  .c-grid[data-gap-col*="pc:28"] > .c-col[data-col*="pc:2/3"] {
    width: calc(66.6666666667% - 28px);
  }
  .c-grid[data-gap-col*="pc:28"] > .c-col[data-col*="pc:1/4"] {
    width: calc((100% - 28px * 3) / 4);
  }
  .c-grid[data-gap-col*="pc:28"] > .c-col[data-col*="pc:1/5"] {
    width: calc((100% - 28px * 4) / 5);
  }
  .c-grid[data-gap-col*="pc:28"] > .c-col[data-col*="pc:1/6"] {
    width: calc((100% - 28px * 5) / 6);
  }
  .c-grid[data-gap-col*="pc:32"] {
    -moz-column-gap: 32px;
    column-gap: 32px;
  }
  .c-grid[data-gap-col*="pc:32"] > .c-col[data-col*="pc:1/2"] {
    width: calc((100% - 32px * 1) / 2);
  }
  .c-grid[data-gap-col*="pc:32"] > .c-col[data-col*="pc:1/3"] {
    width: calc((100% - 32px * 2) / 3);
  }
  .c-grid[data-gap-col*="pc:32"] > .c-col[data-col*="pc:2/3"] {
    width: calc(66.6666666667% - 32px);
  }
  .c-grid[data-gap-col*="pc:32"] > .c-col[data-col*="pc:1/4"] {
    width: calc((100% - 32px * 3) / 4);
  }
  .c-grid[data-gap-col*="pc:32"] > .c-col[data-col*="pc:1/5"] {
    width: calc((100% - 32px * 4) / 5);
  }
  .c-grid[data-gap-col*="pc:32"] > .c-col[data-col*="pc:1/6"] {
    width: calc((100% - 32px * 5) / 6);
  }
  .c-grid[data-gap-col*="pc:36"] {
    -moz-column-gap: 36px;
    column-gap: 36px;
  }
  .c-grid[data-gap-col*="pc:36"] > .c-col[data-col*="pc:1/2"] {
    width: calc((100% - 36px * 1) / 2);
  }
  .c-grid[data-gap-col*="pc:36"] > .c-col[data-col*="pc:1/3"] {
    width: calc((100% - 36px * 2) / 3);
  }
  .c-grid[data-gap-col*="pc:36"] > .c-col[data-col*="pc:2/3"] {
    width: calc(66.6666666667% - 36px);
  }
  .c-grid[data-gap-col*="pc:36"] > .c-col[data-col*="pc:1/4"] {
    width: calc((100% - 36px * 3) / 4);
  }
  .c-grid[data-gap-col*="pc:36"] > .c-col[data-col*="pc:1/5"] {
    width: calc((100% - 36px * 4) / 5);
  }
  .c-grid[data-gap-col*="pc:36"] > .c-col[data-col*="pc:1/6"] {
    width: calc((100% - 36px * 5) / 6);
  }
  .c-grid[data-gap-col*="pc:40"] {
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
  .c-grid[data-gap-col*="pc:40"] > .c-col[data-col*="pc:1/2"] {
    width: calc((100% - 40px * 1) / 2);
  }
  .c-grid[data-gap-col*="pc:40"] > .c-col[data-col*="pc:1/3"] {
    width: calc((100% - 40px * 2) / 3);
  }
  .c-grid[data-gap-col*="pc:40"] > .c-col[data-col*="pc:2/3"] {
    width: calc(66.6666666667% - 40px);
  }
  .c-grid[data-gap-col*="pc:40"] > .c-col[data-col*="pc:1/4"] {
    width: calc((100% - 40px * 3) / 4);
  }
  .c-grid[data-gap-col*="pc:40"] > .c-col[data-col*="pc:1/5"] {
    width: calc((100% - 40px * 4) / 5);
  }
  .c-grid[data-gap-col*="pc:40"] > .c-col[data-col*="pc:1/6"] {
    width: calc((100% - 40px * 5) / 6);
  }
  .c-grid[data-gap-col*="pc:44"] {
    -moz-column-gap: 44px;
    column-gap: 44px;
  }
  .c-grid[data-gap-col*="pc:44"] > .c-col[data-col*="pc:1/2"] {
    width: calc((100% - 44px * 1) / 2);
  }
  .c-grid[data-gap-col*="pc:44"] > .c-col[data-col*="pc:1/3"] {
    width: calc((100% - 44px * 2) / 3);
  }
  .c-grid[data-gap-col*="pc:44"] > .c-col[data-col*="pc:2/3"] {
    width: calc(66.6666666667% - 44px);
  }
  .c-grid[data-gap-col*="pc:44"] > .c-col[data-col*="pc:1/4"] {
    width: calc((100% - 44px * 3) / 4);
  }
  .c-grid[data-gap-col*="pc:44"] > .c-col[data-col*="pc:1/5"] {
    width: calc((100% - 44px * 4) / 5);
  }
  .c-grid[data-gap-col*="pc:44"] > .c-col[data-col*="pc:1/6"] {
    width: calc((100% - 44px * 5) / 6);
  }
  .c-grid[data-gap-col*="pc:48"] {
    -moz-column-gap: 48px;
    column-gap: 48px;
  }
  .c-grid[data-gap-col*="pc:48"] > .c-col[data-col*="pc:1/2"] {
    width: calc((100% - 48px * 1) / 2);
  }
  .c-grid[data-gap-col*="pc:48"] > .c-col[data-col*="pc:1/3"] {
    width: calc((100% - 48px * 2) / 3);
  }
  .c-grid[data-gap-col*="pc:48"] > .c-col[data-col*="pc:2/3"] {
    width: calc(66.6666666667% - 48px);
  }
  .c-grid[data-gap-col*="pc:48"] > .c-col[data-col*="pc:1/4"] {
    width: calc((100% - 48px * 3) / 4);
  }
  .c-grid[data-gap-col*="pc:48"] > .c-col[data-col*="pc:1/5"] {
    width: calc((100% - 48px * 4) / 5);
  }
  .c-grid[data-gap-col*="pc:48"] > .c-col[data-col*="pc:1/6"] {
    width: calc((100% - 48px * 5) / 6);
  }
  .c-grid.-center {
    justify-content: center;
  }
  .c-grid + * {
    margin-top: 48px;
  }
  .c-heading.-lv1 {
    font-size: clamp(3.2rem, 3vw, 4rem);
    padding-top: 24px;
  }
  .c-heading.-lv1 + * {
    margin-top: 40px;
  }
  .c-heading.-lv1 + .p-inner_link {
    margin-top: 36px;
  }
  .c-heading.-lv2 {
    font-size: 3rem;
    padding-bottom: 20px;
  }
  .c-heading.-lv2 + * {
    margin-top: 40px;
  }
  .c-heading.-lv2 .c-num {
    font-size: 2.2rem;
    height: 40px;
    width: 40px;
  }
  .c-heading.-lv3 {
    font-size: 2.8rem;
  }
  .c-heading.-lv3 + * {
    margin-top: 32px;
  }
  .c-heading.-lv3 .c-num {
    font-size: 2rem;
    height: 35px;
    width: 35px;
  }
  .c-heading.-lv4 {
    background-position: 24px center;
    border-radius: 8px;
    font-size: 2.6rem;
    gap: 4px 8px;
    padding: 18px 18px 18px 70px;
  }
  .c-heading.-lv4 small {
    font-size: 2.2rem;
  }
  .c-heading.-lv4 + * {
    margin-top: 32px;
  }
  .c-heading.-lv4 + .c-heading.-lv3 {
    margin-top: 40px;
  }
  .c-heading.-lv4.-icon_none {
    padding: 18px 18px 18px 18px;
  }
  .c-heading.-lv5 {
    font-size: 2.2rem;
    padding-left: 16px;
  }
  .c-heading.-lv5::before {
    height: calc(100% - 8px);
  }
  .c-heading.-lv5 + * {
    margin-top: 26px;
  }
  .c-heading.-lv6 {
    font-size: 2rem;
  }
  .c-heading.-home {
    font-size: 3.4rem;
    padding-bottom: 20px;
  }
  .c-heading.-home + * {
    margin-top: 36px;
  }
  * + .c-heading.-lv3 {
    margin-top: 64px !important;
  }
  * + .c-heading.-lv4 {
    margin-top: 56px !important;
  }
  .c-link.-cmn:hover {
    color: var(--font-caution);
    text-decoration: none;
  }
  .c-link.-img:hover {
    opacity: 0.7;
  }
  .c-link.-external:after {
    height: 18px;
    width: 28px;
  }
  .c-link.-pdf:hover {
    color: var(--font-caution);
    text-decoration: none;
  }
  ul.c-list.-cmn li {
    font-size: 1.8rem;
    font-size: clamp(1.4rem, 1.7vw, 1.8rem);
    padding-left: 20px;
  }
  ul.c-list.-cmn li::before {
    top: 1.2rem;
  }
  ul.c-list.-cmn + * {
    margin-top: 24px;
  }
  ul.c-list.-annotation > li {
    font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  }
  ul.c-list.-annotation + * {
    margin-top: 24px;
  }
  ul.c-list.-desc > li {
    font-size: 1.6rem;
  }
  ul.c-list.-desc + * {
    margin-top: 24px;
  }
  ol.c-list.-cmn li {
    font-size: 1.8rem;
  }
  ol.c-list.-cmn + * {
    margin-top: 24px;
  }
  ol.c-list.-circled > li {
    font-size: 1.8rem;
  }
  ol.c-list.-circled > li::before {
    font-size: 1.2rem;
    left: 0;
    top: 0.8rem;
  }
  ol.c-list.-circled + * {
    margin-top: 24px;
  }
  ol.c-list.-parentheses > li {
    font-size: 1.8rem;
  }
  ol.c-list.-parentheses + * {
    margin-top: 24px;
  }
  ol.c-list.-katakana li {
    font-size: 1.8rem;
  }
  ol.c-list.-katakana + * {
    margin-top: 24px;
  }
  ol.c-list.-iroha li {
    font-size: 1.8rem;
  }
  ol.c-list.-iroha + * {
    margin-top: 24px;
  }
  ol.c-list.-annotation li {
    font-size: 1.6rem;
    font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  }
  ol.c-list.-annotation + * {
    margin-top: 24px;
  }
  ol.c-list.-annotation + .-annotation {
    margin-top: 12px;
  }
  dl.c-list.-faq .c-scope {
    padding-bottom: 1px;
  }
  dl.c-list.-faq .c-scope::before, dl.c-list.-faq .c-scope::after {
    height: 26px;
    right: 38px;
    top: 28px;
  }
  dl.c-list.-faq .c-scope dt {
    font-size: 2.6rem;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 50px;
    padding-top: 20px;
  }
  dl.c-list.-faq .c-scope dd {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 16px;
    margin-left: 16px;
    margin-right: 16px;
    margin-top: 8px;
    padding-bottom: 16px;
    padding-left: 60px;
    padding-right: 16px;
    padding-top: 16px;
  }
  dl.c-list.-faq .c-scope dd .faq_q::before {
    font-size: 2rem;
    height: 34px;
    left: 16px;
    padding-bottom: 4px;
    transform: translateY(4px);
    width: 34px;
  }
  dl.c-list.-faq .c-scope dd .faq_a {
    font-size: 1.8rem;
  }
  dl.c-list.-faq .c-scope dd .faq_a::before {
    font-size: 2rem;
    height: 34px;
    left: 16px;
    padding-bottom: 4px;
    width: 34px;
  }
  .c-section {
    padding: 36px 40px 40px;
  }
  .c-section + .c-section {
    margin-top: 16px;
  }
  .c-section.-flow + .c-section.-flow {
    margin-top: 64px;
  }
  .c-section.-flow + .c-section.-flow::before {
    border-left: 41px solid transparent;
    border-right: 41px solid transparent;
    border-top: 36px solid var(--font-current);
    top: -50px;
  }
  .c-section.-lv2 + * {
    margin-top: 36px;
  }
  .c-section.-lv3 {
    margin-top: 40px;
    padding: 8px 0 32px;
  }
  .c-section.-lv3 + * {
    margin-top: 40px;
  }
  .c-table.-cmn {
    width: 100%;
  }
  .c-table.-cmn th, .c-table.-cmn td {
    font-size: clamp(1.4rem, 1.7vw, 1.8rem);
    padding: clamp(5px, 0.8vw, 16px);
  }
  .c-table.-cmn th p, .c-table.-cmn td p {
    font-size: clamp(1.4rem, 1.7vw, 1.8rem);
  }
  .c-table + * {
    margin-top: 32px;
  }
  p {
    font-size: 1.8rem;
  }
  p + * {
    margin-top: 48px;
  }
  p + table {
    margin-top: 24px;
  }
  p + .c-btn_wrapper {
    margin-top: 24px;
  }
  p + p,
  p + .c-list {
    margin-top: 24px;
  }
  .c-caption {
    font-size: 1.8rem;
  }
  .c-caption.-heading {
    font-size: 2rem;
  }
  .p-bnr.-main {
    min-width: 720px;
  }
  .p-bnr.-main .p-bnr__list {
    gap: 40px;
    justify-content: center;
  }
  .p-bnr.-main li .c-btn {
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    font-size: 2.2rem;
    height: 96px;
    transition: 0.2s;
    width: 320px;
  }
  .p-bnr.-main li .c-btn:hover {
    opacity: 0.7;
  }
  .p-bnr.-main li .c-btn.-view:after {
    height: 18px;
    width: 28px;
  }
  .p-bnr.-main li .c-btn.-wide {
    width: 460px;
  }
  .p-bnr.-main li .c-btn.-exlink:after {
    height: 18px;
    width: 28px;
  }
  .p-bnr.-sub {
    align-items: stretch;
    gap: 24px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    min-width: 720px;
    padding: 24px 0;
    width: 100%;
  }
  .p-bnr.-sub figcaption {
    align-items: center;
    border-right: 1px solid var(--border-gray);
    flex-shrink: 0;
    width: 88px;
  }
  .p-bnr.-sub .p-bnr__list {
    gap: 16px;
  }
  .p-bnr.-sub .p-bnr__list li {
    width: 250px;
  }
  .p-bnr.-sub .p-bnr__list li a {
    transition: 0.2s;
  }
  .p-bnr.-sub .p-bnr__list li a:hover {
    opacity: 0.7;
  }
  .p-bnr.-sub .p-bnr__list li img {
    height: auto;
    width: 100%;
  }
  .p-box {
    margin-top: 32px;
    padding: 24px;
  }
  .p-btt a {
    bottom: 24px;
    right: 24px;
  }
  .p-card.-account {
    gap: 14px;
    height: 100%;
    padding: 24px 24px 32px;
    transition: 0.2s;
  }
  .p-card.-account:hover {
    background: var(--bg-caution);
  }
  .p-card.-account .c-headline {
    font-size: 2.4rem;
    padding-bottom: 12px;
  }
  .p-card.-account .c-sub_text {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .p-card.-document {
    padding: 16px 16px 24px;
    transition: 0.2s;
    width: 580px;
  }
  .p-card.-document:hover {
    background: var(--bg-caution);
    opacity: 0.7;
  }
  .p-card.-document .c-img {
    margin-bottom: 20px;
  }
  .p-card.-document .c-headline {
    font-size: 2.4rem;
  }
  .p-card.-document .c-sub_text {
    font-size: 1.6rem;
  }
  .p-card.-useful {
    border-radius: 16px;
    padding: 8px 16px 16px;
    transition: 0.2s;
  }
  .p-card.-useful:hover {
    background: var(--bg-caution);
  }
  .p-card.-useful .c-img img {
    max-width: 100%;
  }
  .p-card.-useful .c-headline {
    font-size: clamp(1.1rem, 1.5vw, 2.4rem);
  }
  .p-contact {
    border-radius: 200px;
    gap: 20px;
    margin-top: 80px;
    padding: 28px 28px 32px;
  }
  .p-contact .c-container {
    gap: 20px;
  }
  .p-contact .c-container p {
    font-size: clamp(1.6rem, 1.8vw, 1.8rem);
  }
  .p-contact .c-container .c-btn.-primary {
    padding-left: 52px;
    padding-right: 52px;
    transition: 0.2s;
  }
  .p-contact .c-container .c-btn.-primary:hover {
    background-position: right 8px center;
    opacity: 0.7;
  }
  .p-contact .tel {
    font-size: 4rem;
  }
  .p-footer_nav {
    padding: 16px 0 24px;
  }
  .p-footer_nav__list {
    flex-wrap: wrap;
    gap: 16px 0;
    justify-content: center;
  }
  .p-footer_nav li::after {
    background: var(--font-base);
    content: "";
    height: 12px;
    margin: 0 12px;
    width: 1px;
  }
  .p-footer_nav li a {
    font-size: clamp(1.2rem, 1.09375vw, 1.4rem);
  }
  .p-footer_nav li a:hover {
    color: var(--font-caution);
  }
  .p-global_footer {
    padding: 96px 40px 0;
  }
  .p-global_footer__bottom {
    gap: 0 24px;
    margin: 0 -40px;
    padding: 16px 40px;
  }
  .p-global_footer__bottom p {
    line-height: 1.4;
  }
  .p-global_header {
    align-items: center;
    display: grid;
    grid-template-areas: "logo subnav" "logo mainnav";
    grid-template-columns: minmax(224px, 334px) 1fr;
    grid-template-rows: 40px 1fr;
    height: 98px;
    max-width: 1200px;
    min-width: 800px;
    width: 100%;
    -moz-column-gap: 16px;
    column-gap: 16px;
  }
  .p-global_header__symbol {
    grid-area: logo;
    padding: 20px 0 0 14px;
  }
  .p-global_nav {
    align-items: flex-end;
    display: flex;
    grid-area: mainnav;
    height: 100%;
    justify-self: end;
    padding-right: 16px;
  }
  .p-global_nav__hamburger {
    display: none;
  }
  .p-global_nav__bg {
    display: none;
  }
  .p-global_nav__body {
    align-items: center;
    display: flex;
  }
  .p-global_nav__utility {
    display: none;
  }
  .p-global_nav__container .c-close {
    display: none;
  }
  .p-global_nav__list {
    gap: 0 44px;
    transition: 0.2s;
  }
  .p-global_nav__list > li > a {
    display: flex;
    flex-direction: column;
    font-size: 1.6rem;
    font-weight: 500;
    height: 40px;
    justify-content: space-between;
    line-height: 1.5;
    position: relative;
    transition: 0.2s;
    word-break: keep-all;
    z-index: 2;
  }
  .p-global_nav__list > li > a:hover {
    color: var(--font-caution);
  }
  .p-global_nav__list > li > a::before {
    border-bottom: 30px solid var(--bg-sub-nav);
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-style: solid;
    border-top: 0;
    content: "";
    height: 0;
    left: 0;
    margin: auto;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 36px;
    transition: 0ms;
    transition-delay: 0ms;
    width: 0;
  }
  body#home .p-global_nav__list > li > a[data-category=home] {
    color: var(--font-current);
  }
  body#home .p-global_nav__list > li > a[data-category=home]::after {
    background-color: var(--font-current);
    content: "";
    display: block;
    height: 3px;
    width: 100%;
  }
  body#account .p-global_nav__list > li > a[data-category=account] {
    color: var(--font-current);
  }
  body#account .p-global_nav__list > li > a[data-category=account]::after {
    background-color: var(--font-current);
    content: "";
    display: block;
    height: 3px;
    width: 100%;
  }
  body#company .p-global_nav__list > li > a[data-category=company] {
    color: var(--font-current);
  }
  body#company .p-global_nav__list > li > a[data-category=company]::after {
    background-color: var(--font-current);
    content: "";
    display: block;
    height: 3px;
    width: 100%;
  }
  body#products .p-global_nav__list > li > a[data-category=products] {
    color: var(--font-current);
  }
  body#products .p-global_nav__list > li > a[data-category=products]::after {
    background-color: var(--font-current);
    content: "";
    display: block;
    height: 3px;
    width: 100%;
  }
  body#service .p-global_nav__list > li > a[data-category=service] {
    color: var(--font-current);
  }
  body#service .p-global_nav__list > li > a[data-category=service]::after {
    background-color: var(--font-current);
    content: "";
    display: block;
    height: 3px;
    width: 100%;
  }
  body#seminar .p-global_nav__list > li > a[data-category=seminar] {
    color: var(--font-current);
  }
  body#seminar .p-global_nav__list > li > a[data-category=seminar]::after {
    background-color: var(--font-current);
    content: "";
    display: block;
    height: 3px;
    width: 100%;
  }
  body#branch .p-global_nav__list > li > a[data-category=branch] {
    color: var(--font-current);
  }
  body#branch .p-global_nav__list > li > a[data-category=branch]::after {
    background-color: var(--font-current);
    content: "";
    display: block;
    height: 3px;
    width: 100%;
  }
  .p-global_nav__list > li > a.is-opened {
    color: var(--font-caution) !important;
  }
  .p-global_nav__list > li > a.is-opened::before {
    opacity: 1;
    top: 36px;
    transition: 0.2s;
    transition-delay: 100ms;
  }
  .p-global_nav__contact a {
    font-size: 1.6rem;
    height: 100px;
    width: 126px;
  }
  .p-global_nav__sub {
    left: 0;
    margin: auto;
    max-width: 1072px;
    min-width: 760px;
    padding: 0 20px;
    position: absolute;
    right: 0;
    top: 120px;
  }
  .p-global_nav__sub.is-opened {
    display: block;
  }
  .p-global_nav__sub .c-list {
    background: var(--bg-sub-nav);
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 36px 40px 40px;
    transition: 0.2s;
  }
  .p-global_nav__sub .c-list dt {
    padding-bottom: 6px;
    transition: 0.2s;
    width: 100%;
  }
  .p-global_nav__sub .c-list dt a {
    align-items: center;
    display: inline-flex;
    font-size: 2.4rem;
    font-weight: 600;
    gap: 20px;
    transition: 0.2s;
  }
  .p-global_nav__sub .c-list dt a::after {
    background-image: url(/assets/img/icn/icn_sub_nav_heading.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 16px;
    width: 16px;
  }
  .p-global_nav__sub .c-list dt a:hover {
    color: var(--font-caution);
  }
  .p-global_nav__sub .c-list dd {
    transition: 0.2s;
    width: calc((100% - 48px) / 4);
  }
  .p-global_nav__sub .c-list dd a {
    align-items: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    color: var(--font-sub-nav);
    display: flex;
    font-size: 1.8rem;
    font-weight: 700;
    height: 100%;
    justify-content: center;
    line-height: 1.4;
    min-height: 70px;
    padding: 10px;
    transition: 0.2s;
  }
  .p-global_nav__sub .c-list dd a:hover {
    background: var(--bg-caution);
  }
  .p-global_nav #GLOBAL_NAV_STATUS {
    display: none;
  }
  .p-global_sitemap {
    gap: 24px;
    margin-left: -40px;
    margin-right: -40px;
    padding: 40px 40px 32px;
  }
  .p-global_sitemap__container {
    gap: 20px;
  }
  .p-global_sitemap__list {
    flex-direction: column;
    gap: 16px;
  }
  .p-global_sitemap__list dt a, .p-global_sitemap__list li a {
    font-size: clamp(1.6rem, 1.40625vw, 1.8rem);
    font-weight: bold;
  }
  .p-global_sitemap__list dt a:hover, .p-global_sitemap__list li a:hover {
    color: var(--font-caution);
  }
  .p-global_sitemap__list dd {
    font-size: clamp(1.2rem, 1.09375vw, 1.4rem);
    line-height: 1.6;
  }
  .p-global_sitemap__list dd a {
    transition: 0.2s;
  }
  .p-global_sitemap__list dd a:hover {
    color: var(--font-caution);
  }
  .p-hansel {
    margin-bottom: 32px;
  }
  .p-hansel__list {
    padding: 12px 0;
  }
  .p-hansel__list li a {
    font-size: 1.4rem;
  }
  .p-hansel__list li mark {
    font-size: 1.4rem;
  }
  .p-home_main_visual {
    background-attachment: fixed;
    background-image: url(/img/home_bg_main_visual.webp);
    background-position: center 50px;
    background-repeat: no-repeat;
    background-size: 2560px;
    min-height: 616px;
  }
  .p-home_main_visual .c-lead {
    font-size: 3.6rem;
    line-height: 1.73333333;
    margin-top: 70px;
  }
  .p-home_bnr.-main {
    margin-bottom: 52px;
    margin-top: 200px;
    padding: 0 0;
  }
  .p-home_bnr.-main .c-list {
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
  }
  .p-home_bnr.-main li {
    gap: 32px;
  }
  .p-home_bnr.-main .c-bnr.-img {
    transition: 0.2s;
  }
  .p-home_bnr.-main .c-bnr.-img:hover {
    background: var(--bg-caution);
  }
  .p-home_bnr.-main .c-bnr.-direct {
    display: grid;
    gap: 16px 0;
    grid-auto-columns: 1fr;
    grid-template-areas: "symbol btn_main" "btn_sub btn_main";
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    height: 145px;
    padding: 24px 32px;
    width: 584px;
  }
  .p-home_bnr.-main .c-bnr.-direct .c-symbol {
    font-size: 2.4rem;
  }
  .p-home_bnr.-main .c-bnr.-direct .c-btn_wrapper.-sub {
    grid-area: btn_sub;
  }
  .p-home_bnr.-main .c-bnr.-direct .c-btn_wrapper.-sub .c-btn.-primary {
    transition: 0.2s;
  }
  .p-home_bnr.-main .c-bnr.-direct .c-btn_wrapper.-sub .c-btn.-primary:hover {
    opacity: 0.7;
  }
  .p-home_bnr.-main .c-bnr.-direct .c-btn_wrapper.-main {
    grid-area: btn_main;
    justify-content: right;
    margin: 0;
  }
  .p-home_bnr.-main .c-bnr.-direct .c-symbol {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .p-home_bnr.-main .c-bnr.-direct .c-btn_wrapper.-sub {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .p-home_bnr.-main .c-bnr.-direct .c-btn_wrapper.-main {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 3;
  }
  .p-home_bnr.-main .c-bnr.-direct .c-btn_wrapper.-main .c-btn.-main {
    border-radius: 16px;
    font-size: 2rem;
    gap: 24px;
    height: 96px;
    transition: 0.2s;
    width: 200px;
  }
  .p-home_bnr.-main .c-bnr.-direct .c-btn_wrapper.-main .c-btn.-main:hover {
    opacity: 0.7;
  }
  .p-home_bnr.-campaign, .p-home_bnr.-pickup {
    padding: 64px 0;
  }
  .p-home_bnr.-campaign .c-list, .p-home_bnr.-pickup .c-list {
    gap: 32px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 1240px;
    padding: 0 20px;
  }
  .p-home_bnr.-campaign .c-list li, .p-home_bnr.-pickup .c-list li {
    width: 570px;
  }
  .p-home_bnr.-campaign .c-btn_wrapper, .p-home_bnr.-pickup .c-btn_wrapper {
    margin-top: 40px;
  }
  .p-home_bnr.-useful, .p-home_bnr.-product_info {
    padding: 52px 40px 64px;
  }
  .p-home_bnr.-useful .p-home_bnr__bg, .p-home_bnr.-product_info .p-home_bnr__bg {
    width: calc(100% + 48px);
  }
  .p-home_bnr.-useful .c-list, .p-home_bnr.-product_info .c-list {
    gap: 24px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
  }
  .p-home_bnr.-useful .c-list li, .p-home_bnr.-product_info .c-list li {
    width: calc((100% - 72px) / 4);
  }
  .p-home_bnr.-product_info .c-list {
    gap: 18px;
  }
  .p-home_news {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 64px 40px;
  }
  .p-home_news .c-caution {
    line-height: 1.4;
    margin-top: 16px;
    max-width: 1100px;
    text-align: right;
  }
  .p-home_news .c-caution + .c-btn_wrapper {
    margin-top: 36px;
  }
  .p-inner_link__list {
    gap: 16px;
  }
  .p-inner_link__list a {
    background-position: right 24px center;
    font-size: 1.6rem;
    padding: 10px 56px 10px 20px;
    transition: 0.2s;
  }
  .p-inner_link__list a:hover {
    background-color: var(--bg-caution);
    background-position: right 24px bottom 12px;
  }
  .p-inner_link + * {
    margin-top: 36px;
  }
  body.index #container #content {
    padding: 40px;
  }
  body.index #container #footer p {
    font-size: 1.2rem;
  }
  .p-modal {
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
  }
  .p-modal__wrapper {
    margin: 40px auto;
    max-height: calc(100% - 80px);
    max-width: 1200px;
    width: calc(100% - 80px);
  }
  .p-modal__content {
    padding: 0 40px 40px;
  }
  .p-modal__header {
    height: 80px;
    margin-right: -40px;
    padding-right: 16px;
  }
  .p-modal__close {
    cursor: pointer;
  }
  .p-modal__close:hover {
    opacity: 0.7;
  }
  .newsBox {
    margin: 0 auto;
    max-width: 1100px;
    width: 100%;
  }
  .newsBox dl {
    gap: 20px;
    padding-bottom: 24px;
  }
  .newsBox dl + dl {
    margin-top: 28px;
  }
  .newsBox dl dt {
    align-items: center;
    font-size: 1.4rem;
    line-height: 1.8125;
    width: 140px;
  }
  .newsBox dl dd {
    font-size: 1.6rem;
    width: calc(100% - 250px);
  }
  .newsBox dl dd a:hover {
    color: var(--font-caution);
    text-decoration: none;
  }
  .newsBox > p {
    font-size: 1.4rem;
    max-width: 1100px;
    text-align: right;
  }
  .p-notification {
    display: flex;
    justify-content: center;
  }
  .p-notification__container {
    align-content: stretch;
    display: flex;
    max-width: 1200px;
    padding: 12px;
    width: 100%;
  }
  .p-notification .c-heading {
    border-right: 2px solid var(--font-caution);
    color: var(--font-caution);
    font-size: 1.8rem;
    font-weight: bold;
    margin-right: 16px;
    width: 144px;
  }
  .p-notification .c-list li a {
    font-size: 1.7rem;
  }
  .p-notification .c-list li a:hover {
    text-decoration: underline;
  }
  .p-tab_menu__list {
    gap: 16px;
  }
  .p-tab_menu__list a {
    background-position: right 20px center;
    font-size: 2.2rem;
    letter-spacing: 0.1em;
    padding: 15px 20px 15px 20px;
    transition: 0.2s;
  }
  .p-tab_menu__list a:hover {
    background-color: var(--bg-caution);
  }
  .p-tab_menu__list a small {
    font-size: 1.6rem;
  }
  .p-utility_nav {
    grid-area: subnav;
    justify-self: end;
    padding-right: 16px;
  }
  .p-global_header__symbol {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  .p-global_nav {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
  .p-utility_nav {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .p-utility_nav__list li .c-link {
    border-radius: 0 0 10px 10px;
    font-size: 1.6rem;
    gap: 4px;
    height: 40px;
    padding: 0 12px;
    transition: 0.2s;
  }
  .p-utility_nav__list li .c-link .c-label {
    white-space: nowrap;
  }
  .p-utility_nav__list li .c-link:hover {
    opacity: 0.7;
  }
  ._sp {
    display: none !important;
  }
}

@media screen and (max-width: 799px) {
  .l-main {
    margin-left: 16px;
    margin-right: 16px;
    max-width: calc(100% - 32px);
    padding-bottom: 40px;
  }
  .c-anchor {
    transform: translateY(-68px);
  }
  .c-btn.-large {
    display: block;
    font-size: 1.4rem;
    line-height: 1.5;
    padding: 8px 16px;
  }
  .c-btn.-pdf {
    display: block;
    font-size: 1.4rem;
    line-height: 1.5;
    padding: 8px 16px;
  }
  .c-btn.-home {
    font-size: clamp(13.6533333328px, 16 / 375 * 100vw, 16px);
    min-height: 62px;
    outline: var(--font-current) solid 1px;
    outline-offset: -5px;
    width: 100%;
  }
  .c-btn.-product_info {
    font-size: 1.4rem;
    height: 54px;
  }
  .c-btn_wrapper + * {
    margin-top: 40px;
  }
  .c-btn small {
    font-size: 12px;
  }
  .c-container.-sub {
    margin-left: 8px;
  }
  .c-container.-sub + * {
    margin-top: 24px;
  }
  .c-grid .c-col {
    width: 100%;
  }
  .c-grid .c-col[data-col*="sp:1/2"] {
    width: 50%;
  }
  .c-grid .c-col[data-col*="sp:1/3"] {
    width: 33.3333333333%;
  }
  .c-grid .c-col[data-order*="sp:1"] {
    order: 1;
  }
  .c-grid .c-col[data-order*="sp:2"] {
    order: 2;
  }
  .c-grid .c-col[data-order*="sp:3"] {
    order: 3;
  }
  .c-grid .c-col[data-order*="sp:4"] {
    order: 4;
  }
  .c-grid .c-col[data-order*="sp:5"] {
    order: 5;
  }
  .c-grid .c-col[data-order*="sp:6"] {
    order: 6;
  }
  .c-grid .c-col[data-order*="sp:7"] {
    order: 7;
  }
  .c-grid .c-col[data-order*="sp:8"] {
    order: 8;
  }
  .c-grid .c-col[data-order*="sp:9"] {
    order: 9;
  }
  .c-grid .c-col[data-order*="sp:10"] {
    order: 10;
  }
  .c-grid[data-gap-row*="sp:4"] {
    row-gap: 4px;
  }
  .c-grid[data-gap-row*="sp:8"] {
    row-gap: 8px;
  }
  .c-grid[data-gap-row*="sp:12"] {
    row-gap: 12px;
  }
  .c-grid[data-gap-row*="sp:16"] {
    row-gap: 16px;
  }
  .c-grid[data-gap-row*="sp:20"] {
    row-gap: 20px;
  }
  .c-grid[data-gap-row*="sp:24"] {
    row-gap: 24px;
  }
  .c-grid[data-gap-row*="sp:28"] {
    row-gap: 28px;
  }
  .c-grid[data-gap-row*="sp:32"] {
    row-gap: 32px;
  }
  .c-grid[data-gap-row*="sp:36"] {
    row-gap: 36px;
  }
  .c-grid[data-gap-row*="sp:40"] {
    row-gap: 40px;
  }
  .c-grid[data-gap-col*="sp:4"] {
    -moz-column-gap: 4px;
    column-gap: 4px;
  }
  .c-grid[data-gap-col*="sp:4"] > .c-col[data-col*="sp:1/2"] {
    width: calc((100% - 4px * 1) / 2);
  }
  .c-grid[data-gap-col*="sp:4"] > .c-col[data-col*="sp:1/3"] {
    width: calc((100% - 4px * 2) / 3);
  }
  .c-grid[data-gap-col*="sp:8"] {
    -moz-column-gap: 8px;
    column-gap: 8px;
  }
  .c-grid[data-gap-col*="sp:8"] > .c-col[data-col*="sp:1/2"] {
    width: calc((100% - 8px * 1) / 2);
  }
  .c-grid[data-gap-col*="sp:8"] > .c-col[data-col*="sp:1/3"] {
    width: calc((100% - 8px * 2) / 3);
  }
  .c-grid[data-gap-col*="sp:12"] {
    -moz-column-gap: 12px;
    column-gap: 12px;
  }
  .c-grid[data-gap-col*="sp:12"] > .c-col[data-col*="sp:1/2"] {
    width: calc((100% - 12px * 1) / 2);
  }
  .c-grid[data-gap-col*="sp:12"] > .c-col[data-col*="sp:1/3"] {
    width: calc((100% - 12px * 2) / 3);
  }
  .c-grid[data-gap-col*="sp:16"] {
    -moz-column-gap: 16px;
    column-gap: 16px;
  }
  .c-grid[data-gap-col*="sp:16"] > .c-col[data-col*="sp:1/2"] {
    width: calc((100% - 16px * 1) / 2);
  }
  .c-grid[data-gap-col*="sp:16"] > .c-col[data-col*="sp:1/3"] {
    width: calc((100% - 16px * 2) / 3);
  }
  .c-grid[data-gap-col*="sp:20"] {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
  .c-grid[data-gap-col*="sp:20"] > .c-col[data-col*="sp:1/2"] {
    width: calc((100% - 20px * 1) / 2);
  }
  .c-grid[data-gap-col*="sp:20"] > .c-col[data-col*="sp:1/3"] {
    width: calc((100% - 20px * 2) / 3);
  }
  .c-grid[data-gap-col*="sp:24"] {
    -moz-column-gap: 24px;
    column-gap: 24px;
  }
  .c-grid[data-gap-col*="sp:24"] > .c-col[data-col*="sp:1/2"] {
    width: calc((100% - 24px * 1) / 2);
  }
  .c-grid[data-gap-col*="sp:24"] > .c-col[data-col*="sp:1/3"] {
    width: calc((100% - 24px * 2) / 3);
  }
  .c-grid[data-gap-col*="sp:28"] {
    -moz-column-gap: 28px;
    column-gap: 28px;
  }
  .c-grid[data-gap-col*="sp:28"] > .c-col[data-col*="sp:1/2"] {
    width: calc((100% - 28px * 1) / 2);
  }
  .c-grid[data-gap-col*="sp:28"] > .c-col[data-col*="sp:1/3"] {
    width: calc((100% - 28px * 2) / 3);
  }
  .c-grid[data-gap-col*="sp:32"] {
    -moz-column-gap: 32px;
    column-gap: 32px;
  }
  .c-grid[data-gap-col*="sp:32"] > .c-col[data-col*="sp:1/2"] {
    width: calc((100% - 32px * 1) / 2);
  }
  .c-grid[data-gap-col*="sp:32"] > .c-col[data-col*="sp:1/3"] {
    width: calc((100% - 32px * 2) / 3);
  }
  .c-grid + * {
    margin-top: 32px;
  }
  .c-heading.-lv1 {
    background-size: 68px;
    font-size: 2.4rem;
    padding-top: 16px;
  }
  .c-heading.-lv1 + * {
    margin-top: 24px;
  }
  .c-heading.-lv2 {
    font-size: 1.9rem;
    padding-bottom: 8px;
  }
  .c-heading.-lv2 + * {
    margin-top: 16px;
  }
  .c-heading.-lv2 .c-num {
    font-size: 2rem;
    height: 30px;
    width: 30px;
  }
  .c-heading.-lv2 b small {
    font-size: 1.6rem;
  }
  .c-heading.-lv3 {
    font-size: 1.8rem;
  }
  .c-heading.-lv3 + * {
    margin-top: 16px;
  }
  .c-heading.-lv3 .c-num {
    font-size: 1.8rem;
    height: 25px;
    width: 25px;
  }
  .c-heading.-lv4 {
    background-position: 8px 8px;
    background-size: 22px;
    font-size: 1.8rem;
    padding: 8px 16px 8px 36px;
  }
  .c-heading.-lv4 small {
    font-size: 1.5rem;
  }
  .c-heading.-lv4 + * {
    margin-top: 16px;
  }
  .c-heading.-lv4.-icon_none {
    padding: 8px 16px 8px 16px;
  }
  .c-heading.-lv5 {
    font-size: 1.6rem;
    padding-left: 10px;
  }
  .c-heading.-lv5::before {
    height: calc(100% - 4px);
    width: 4px;
  }
  .c-heading.-lv5 + * {
    margin-top: 12px;
  }
  .c-heading.-lv6 {
    font-size: 1.5rem;
  }
  .c-heading.-home {
    font-size: clamp(18.7733333326px, 22 / 375 * 100vw, 22px);
    padding-bottom: 18px;
  }
  .c-heading.-home + * {
    margin-top: 28px;
  }
  * + .c-heading.-lv3 {
    margin-top: 24px !important;
  }
  * + .c-heading.-lv4 {
    margin-top: 24px;
  }
  .c-link.-external:after {
    height: 14px;
    width: 28px;
  }
  ul.c-list.-cmn li {
    font-size: 1.4rem;
    padding-left: 18px;
  }
  ul.c-list.-cmn li::before {
    top: 0.8rem;
  }
  ul.c-list.-cmn + * {
    margin-top: 24px;
  }
  ul.c-list.-annotation > li {
    font-size: 1.2rem;
  }
  ul.c-list.-annotation + * {
    margin-top: 24px;
  }
  ul.c-list.-desc > li {
    font-size: 1.2rem;
  }
  ul.c-list.-desc + * {
    margin-top: 24px;
  }
  ol.c-list.-cmn li {
    font-size: 1.4rem;
  }
  ol.c-list.-cmn + * {
    margin-top: 16px;
  }
  ol.c-list.-circled > li {
    font-size: 1.4rem;
  }
  ol.c-list.-circled > li::before {
    font-size: 1rem;
    left: -0.1em;
    top: 0.5rem;
  }
  ol.c-list.-circled + * {
    margin-top: 16px;
  }
  ol.c-list.-parentheses > li {
    font-size: 1.4rem;
  }
  ol.c-list.-parentheses + * {
    margin-top: 16px;
  }
  ol.c-list.-katakana li {
    font-size: 1.4rem;
  }
  ol.c-list.-katakana + * {
    margin-top: 16px;
  }
  ol.c-list.-iroha li {
    font-size: 1.4rem;
  }
  ol.c-list.-iroha + * {
    margin-top: 16px;
  }
  ol.c-list.-annotation li {
    font-size: 1.2rem;
  }
  ol.c-list.-annotation + * {
    margin-top: 24px;
  }
  ol.c-list.-annotation + .-annotation {
    margin-top: 8px;
  }
  dl.c-list.-faq .c-scope {
    padding: 8px 12px 8px 12px;
  }
  dl.c-list.-faq .c-scope::before, dl.c-list.-faq .c-scope::after {
    height: 12px;
    right: 16px;
    top: 14px;
  }
  dl.c-list.-faq .c-scope dt {
    font-size: 1.4rem;
    padding-right: 20px;
  }
  dl.c-list.-faq .c-scope dd {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 8px;
    margin-top: 16px;
    padding-bottom: 16px;
    padding-left: 35px;
    padding-right: 16px;
    padding-top: 16px;
  }
  dl.c-list.-faq .c-scope dd .faq_q::before {
    font-size: 1.4rem;
    height: 22px;
    left: 8px;
    padding-bottom: 4px;
    transform: translateY(4px);
    width: 22px;
  }
  dl.c-list.-faq .c-scope dd .faq_a::before {
    font-size: 1.6rem;
    height: 22px;
    left: 8px;
    padding-bottom: 2px;
    width: 22px;
  }
  .c-section {
    padding: 20px 16px 24px;
  }
  .c-section + .c-section {
    margin-top: 8px;
  }
  .c-section.-flow + .c-section.-flow {
    margin-top: 32px;
  }
  .c-section.-flow + .c-section.-flow::before {
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 18px solid var(--font-current);
    top: -25px;
  }
  .c-section.-lv2 + * {
    margin-top: 24px;
  }
  .c-section.-lv3 {
    margin-top: 24px;
    padding: 8px;
  }
  .c-section.-lv3 + * {
    margin-top: 24px;
  }
  .c-table.-cmn th, .c-table.-cmn td {
    font-size: 1.4rem;
    font-size: clamp(1.3rem, 1.4vw, 1.4rem);
    padding: 8px 8px;
  }
  .c-table.-cmn th p, .c-table.-cmn td p {
    font-size: clamp(1.3rem, 1.4vw, 1.4rem);
  }
  .c-table.-cmn.-horizon tr {
    display: flex;
    flex-direction: column;
  }
  .c-table.-cmn.-horizon th, .c-table.-cmn.-horizon td {
    border: none;
    text-align: left;
  }
  .c-table_wrapper.-scroll .c-table {
    min-width: 600px;
  }
  .c-table_wrapper.-scroll img {
    max-width: inherit;
    width: 500px;
  }
  .c-table + * {
    margin-top: 16px;
  }
  p {
    font-size: 1.4rem;
  }
  p + * {
    margin-top: 24px;
  }
  p + .c-btn_wrapper {
    margin-top: 12px;
  }
  p + p,
  p + .c-list {
    margin-top: 8px;
  }
  .c-caption {
    font-size: 1.4rem;
  }
  .c-caption.-heading {
    font-size: 1.5rem;
  }
  .p-bnr.-main .p-bnr__list {
    align-items: center;
    flex-direction: column;
    gap: 24px;
  }
  .p-bnr.-main li .c-btn {
    font-size: 1.7rem;
    height: 78px;
    width: 280px;
  }
  .p-bnr.-main li .c-btn.-view:after {
    height: 14px;
    width: 28px;
  }
  .p-bnr.-main li .c-btn.-exlink:after {
    height: 14px;
    width: 28px;
  }
  .p-bnr.-sub {
    align-items: center;
    flex-direction: column;
    gap: 16px;
    padding: 16px 0;
  }
  .p-bnr.-sub figcaption {
    letter-spacing: 0.05em;
  }
  .p-bnr.-sub .p-bnr__list {
    gap: 12px;
  }
  .p-bnr.-sub .p-bnr__list li {
    width: calc((100% - 12px) / 2);
  }
  .p-bnr.-sub .p-bnr__list li img {
    height: auto;
    width: 100%;
  }
  .p-box {
    margin-top: 24px;
    padding: 16px;
  }
  .p-btt a {
    bottom: 8px;
    right: 8px;
  }
  .p-card.-account {
    gap: 8px;
    padding: 14px 16px 16px;
  }
  .p-card.-account .c-headline {
    font-size: 1.7rem;
    padding-bottom: 8px;
  }
  .p-card.-account .c-sub_text {
    font-size: 1.4rem;
    line-height: 1.8;
  }
  .p-card.-document {
    padding: 16px;
  }
  .p-card.-document .c-img {
    margin-bottom: 12px;
  }
  .p-card.-document .c-headline {
    font-size: 1.8rem;
  }
  .p-card.-document .c-sub_text {
    font-size: 1.4rem;
  }
  .p-card.-useful {
    border-radius: 10px;
    gap: 4px;
    padding: 8px;
  }
  .p-card.-useful .c-img img {
    width: 80%;
  }
  .p-card.-useful .c-headline {
    font-size: clamp(11.0933333329px, 13 / 375 * 100vw, 13px);
  }
  .p-contact {
    border-radius: 50px;
    gap: 8px;
    margin-top: 32px;
    padding: 20px 24px 20px;
  }
  .p-contact .c-heading {
    font-size: 2.4rem;
  }
  .p-contact .c-container {
    flex-wrap: wrap;
    gap: 8px;
  }
  .p-contact .c-container p {
    font-size: 1.2rem;
    text-align: center;
    word-break: keep-all;
  }
  .p-contact .c-container .c-btn.-primary {
    background-position: right 8px center;
    font-size: 1.6rem;
    padding-left: 8px;
    padding-right: 24px;
    padding-top: 4px;
  }
  .p-contact .tel {
    display: block;
    font-size: 2.8rem;
  }
  .p-footer_nav {
    padding: 24px 8px 52px;
  }
  .p-footer_nav__list {
    flex-direction: column;
    gap: 16px;
  }
  .p-footer_nav li a {
    font-size: clamp(10.2399999996px, 12 / 375 * 100vw, 12px);
    padding-left: 16px;
    position: relative;
  }
  .p-footer_nav li a::before {
    background-image: url(/assets/img/icn/icn_footer_nav.svg);
    background-repeat: no-repeat;
    content: "";
    height: 12px;
    left: 0;
    position: absolute;
    top: 0.25rem;
    width: 12px;
  }
  .p-global_footer {
    padding: 52px 16px 0;
  }
  .p-global_footer__bottom {
    flex-direction: column;
    gap: 8px;
    margin: 0 -16px;
    padding: 8px 16px;
  }
  .p-global_footer__bottom p {
    font-size: 1rem;
    text-align: center;
  }
  .p-global_header {
    align-items: center;
    display: flex;
    gap: 8px;
    height: 68px;
    padding: 10px 12px 8px;
  }
  .p-global_header__symbol {
    height: auto;
    max-width: 168px;
  }
  .p-global_nav__container {
    background: var(--bg-main);
    bottom: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100dvh;
    left: 0;
    overflow: auto;
    padding: 70px 16px 16px;
    position: fixed;
    transition: 0.2s;
    width: 100dvw;
    z-index: 10000;
  }
  .p-global_nav__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .p-global_nav__list > li {
    width: calc((100% - 8px) / 2);
  }
  .p-global_nav__list > li > a {
    align-items: center;
    background-color: white;
    background-image: url(/assets/img/icn/icn_sub_nav_heading.svg);
    background-position: right 16px center;
    background-repeat: no-repeat;
    border-radius: 8px;
    color: var(--font-sub-nav);
    display: flex;
    font-size: clamp(12.7999999995px, 15 / 375 * 100vw, 15px);
    font-weight: bold;
    height: 50px;
    line-height: 1.25;
    padding: 0 30px 0 16px;
    position: relative;
  }
  .p-global_nav__list > li > a.c-utility.-document {
    background: linear-gradient(-90deg, #8cce24 0%, #0fb185 100%);
    color: white;
  }
  .p-global_nav__list > li > a.c-utility.-online {
    background: linear-gradient(90deg, #3079c5 0%, #0fadd3 100%);
    color: white;
  }
  .p-global_nav__list > li > a.c-utility.-login {
    background: linear-gradient(90deg, #e71425 0%, #eb854e 100%);
    color: white;
  }
  .p-global_nav__list > li > a .c-icn {
    flex-shrink: 0;
    width: 24px;
  }
  .p-global_nav__list > li > a .c-icn img {
    height: auto;
    width: 100%;
  }
  .p-global_nav__list > li.c-accordion {
    background: white;
    border-radius: 8px;
    padding: 16px;
    width: 100%;
  }
  .p-global_nav__list > li.c-accordion > a {
    background-image: none;
    height: auto;
    margin: -16px;
    padding: 16px;
  }
  .p-global_nav__list > li.c-accordion > a::before, .p-global_nav__list > li.c-accordion > a::after {
    background: var(--font-sub-nav);
    bottom: 0;
    content: "";
    height: 14px;
    margin: auto;
    position: absolute;
    right: 24px;
    top: 0;
    transition: 0.2s;
    width: 2px;
  }
  .p-global_nav__list > li.c-accordion > a::after {
    transform: rotate(90deg);
  }
  .p-global_nav__list > li.c-accordion > a.is-opened::before {
    height: 0;
  }
  .p-global_nav__contact a {
    font-size: 1.2rem;
    height: 50px;
    width: 88px;
  }
  .p-global_nav__sub.is-opened {
    display: block;
  }
  .p-global_nav__sub .c-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 12px;
  }
  .p-global_nav__sub .c-list a {
    align-items: center;
    border-radius: 8px;
    display: flex;
    font-size: clamp(13.6533333328px, 16 / 375 * 100vw, 16px);
    font-weight: 500;
    line-height: 1.5;
    padding: 4px 16px 4px 24px;
    position: relative;
  }
  .p-global_nav__sub .c-list a::after {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    content: "";
    height: 12px;
    margin: auto;
    position: absolute;
    right: 12px;
    top: 0;
    width: 12px;
  }
  .p-global_nav__sub .c-list dt a {
    background: var(--bg-main);
    color: var(--font-sub-nav);
    padding: 10px 16px;
  }
  .p-global_nav__sub .c-list dt a::after {
    background-image: url(/assets/img/icn/icn_chevron-small-blue-right.svg);
  }
  .p-global_nav__sub .c-list dd a {
    background: var(--bg-light-gray);
    padding: 10px 16px;
  }
  .p-global_nav__sub .c-list dd a::after {
    background-image: url(/assets/img/icn/icn_chevron-small-gray-right.svg);
  }
  .p-global_nav #GLOBAL_NAV_STATUS:checked ~ .p-global_nav__bg {
    pointer-events: auto;
  }
  .p-global_nav #GLOBAL_NAV_STATUS:checked ~ .p-global_nav__body .p-global_nav__container {
    transform: translateY(100%);
  }
  .p-global_sitemap {
    gap: 16px;
    margin-left: -16px;
    margin-right: -16px;
    padding: 24px 16px 16px;
  }
  .p-global_sitemap__symbol {
    text-align: center;
  }
  .p-global_sitemap__list {
    flex-wrap: wrap;
    gap: 8px;
  }
  .p-global_sitemap__list dt, .p-global_sitemap__list li {
    width: calc((100% - 8px) / 2);
  }
  .p-global_sitemap__list dt a, .p-global_sitemap__list li a {
    align-items: center;
    background-color: white;
    background-image: url(/assets/img/icn/icn_chevron-small-blue-right.svg);
    background-position: right 8px center;
    background-repeat: no-repeat;
    display: flex;
    font-size: clamp(1.4rem, 2.25vw, 1.6rem);
    font-weight: bold;
    height: 50px;
    padding: 0 32px 0 16px;
  }
  .p-hansel {
    margin-bottom: 8px;
  }
  .p-hansel__list {
    padding: 8px 0;
  }
  .p-home_main_visual {
    background: none;
    margin-left: -16px;
    margin-right: -16px;
  }
  .p-home_main_visual::before {
    background: url(/img/home_bg_main_visual_sp.webp) center/2500px no-repeat;
    content: "";
    display: block;
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    transform: translate3d(0, 0, -1px);
    width: 100%;
    z-index: -1;
    -webkit-background-size: cover;
  }
  .p-home_main_visual .c-lead {
    font-size: 2.2rem;
    line-height: 1.8;
    margin-bottom: 35px;
    margin-top: 30px;
  }
  .p-home_bnr.-main {
    margin: 0 auto;
    max-width: 400px;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .p-home_bnr.-main .c-list {
    flex-direction: column;
    gap: 24px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }
  .p-home_bnr.-main li {
    flex-direction: column;
    gap: 24px;
  }
  .p-home_bnr.-main .c-bnr {
    width: 100%;
  }
  .p-home_bnr.-main .c-bnr img {
    height: auto;
    width: 100%;
  }
  .p-home_bnr.-main .c-bnr.-direct {
    display: flex;
    flex-direction: column;
    padding: 20px 28px 28px;
  }
  .p-home_bnr.-main .c-bnr.-direct .c-symbol {
    font-size: clamp(18.7733333326px, 22 / 375 * 100vw, 22px);
    margin-bottom: 16px;
    margin-left: -28px;
    margin-right: -28px;
    text-align: center;
  }
  .p-home_bnr.-main .c-bnr.-direct .c-btn_wrapper.-sub .c-btn.-primary {
    border-radius: 10px;
  }
  .p-home_bnr.-main .c-bnr.-direct .c-btn_wrapper.-main {
    margin-top: 16px;
  }
  .p-home_bnr.-main .c-bnr.-direct .c-btn_wrapper.-main .c-btn.-main {
    border-radius: 10px;
    font-size: clamp(15.3599999994px, 18 / 375 * 100vw, 18px);
    gap: 12px;
    padding: 8px;
    width: 100%;
  }
  .p-home_bnr.-campaign, .p-home_bnr.-pickup {
    margin-left: -16px;
    margin-right: -16px;
    padding: 40px 16px;
  }
  .p-home_bnr.-campaign .c-list, .p-home_bnr.-pickup .c-list {
    flex-direction: column;
    gap: 16px;
  }
  .p-home_bnr.-campaign .c-list li a img, .p-home_bnr.-pickup .c-list li a img {
    height: auto;
    width: 100%;
  }
  .p-home_bnr.-campaign .c-btn_wrapper, .p-home_bnr.-pickup .c-btn_wrapper {
    margin-top: 24px;
  }
  .p-home_bnr.-useful, .p-home_bnr.-product_info {
    margin-left: -16px;
    margin-right: -16px;
    padding: 40px 16px;
  }
  .p-home_bnr.-useful .p-home_bnr__bg, .p-home_bnr.-product_info .p-home_bnr__bg {
    width: 100%;
  }
  .p-home_bnr.-useful .c-list, .p-home_bnr.-product_info .c-list {
    gap: 8px;
  }
  .p-home_bnr.-useful .c-list li, .p-home_bnr.-product_info .c-list li {
    width: calc((100% - 16px) / 2);
  }
  .p-home_news {
    margin-left: -16px;
    margin-right: -16px;
    padding: 40px 16px;
  }
  .p-home_news .c-caution {
    line-height: 1.8;
    margin-top: 16px;
  }
  .p-home_news .c-caution + .c-btn_wrapper {
    margin-top: 24px;
  }
  .p-inner_link__list {
    gap: 8px;
  }
  .p-inner_link__list a {
    background-position: right 12px center;
    font-size: 1.2rem;
    padding: 8px 36px 8px 16px;
  }
  .p-inner_link + * {
    margin-top: 24px;
  }
  body.index #container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
  }
  body.index #container #content {
    min-height: 75vh;
    padding: 20px;
  }
  body.index #container #footer p {
    font-size: 1rem;
  }
  .p-modal__wrapper {
    align-items: flex-start;
    min-height: 100vdh;
    width: 100%;
  }
  .p-modal__header {
    height: 72px;
    padding-right: 10px;
  }
  .newsBox dl {
    flex-direction: column;
    gap: 10px;
    padding-bottom: 16px;
    position: relative;
  }
  .newsBox dl + dl {
    margin-top: 16px;
  }
  .newsBox dl dt {
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .newsBox dl dt.ico {
    left: 9em;
    position: absolute;
    top: 2px;
  }
  .newsBox dl dd {
    font-size: 1.4rem;
  }
  .p-notification {
    margin-left: -16px;
    margin-right: -16px;
  }
  .p-notification__container {
    padding: 0 12px 12px 16px;
  }
  .p-notification .c-heading {
    background: var(--font-caution);
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    justify-content: center;
    line-height: 1.4;
    margin-bottom: 8px;
    margin-left: -16px;
    margin-right: -12px;
    padding: 2px;
  }
  .p-notification .c-list li a {
    font-size: 1.4rem;
  }
  .p-notification .c-list li a::before {
    top: 0.25rem;
  }
  .p-tab_menu__list {
    gap: 4px;
  }
  .p-tab_menu__list a {
    background-position: right 12px center;
    font-size: 1.3rem;
    padding: 8px 4px 8px 4px;
  }
  .p-tab_menu__list a small {
    font-size: 1rem;
  }
  .p-tab_menu + .c-section {
    padding: 0;
  }
  .p-utility_nav {
    margin-left: auto;
  }
  .p-utility_nav__list li .c-link {
    border-radius: 8px;
    flex-direction: column;
    height: 50px;
    text-align: center;
    width: 50px;
  }
  .p-utility_nav__list li .c-link .c-icn img {
    height: 24px;
    width: 24px;
  }
  .p-utility_nav__list li .c-link .c-label {
    letter-spacing: -0.1em;
  }
  .p-utility_nav__list li .c-link .c-label .c-lsi {
    letter-spacing: 0;
  }
  ._pc {
    display: none !important;
  }
}

@media screen and (max-width: 599px) {
  .c-table_wrapper.-scroll::before {
    background-image: url(/assets/img/icn/icn_table_scroll.svg);
    background-position: right center;
    background-repeat: no-repeat;
    color: var(--font-sub-nav);
    content: "スクロール";
    display: block;
    font-size: 1.2rem;
    left: 0;
    margin-bottom: 8px;
    padding-right: 48px;
    position: sticky;
    text-align: right;
    width: 100%;
  }
}

@media print, screen and (max-width: 1050px) and (min-width: 800px) {
  .p-global_header {
    grid-template-rows: 34px 1fr;
    -moz-column-gap: 8px;
    column-gap: 8px;
  }
  .p-global_nav__list {
    gap: 0 24px;
  }
  .p-global_nav__list > li > a {
    font-size: 1.4rem;
  }
  .p-global_nav__sub .c-list {
    padding: 32px 40px 32px;
  }
  .p-global_nav__sub .c-list dt {
    padding-bottom: 6px;
  }
  .p-global_nav__sub .c-list dt a {
    font-size: 2.2rem;
  }
  .p-global_nav__sub .c-list dd a {
    font-size: 1.3rem;
    min-height: 62px;
  }
  .p-utility_nav__list li .c-link {
    font-size: 1.3rem;
    height: 34px;
  }
  .p-utility_nav__list li .c-link .c-icn img {
    height: 24px;
    width: 24px;
  }
}

@media screen and (max-width: 799px) and (max-width: 799px) {
  .p-global_nav__list > li > a.c-utility {
    background-image: none;
    gap: 4px;
    padding: 0 4px;
  }
}
/*# sourceMappingURL=maps/style.css.map */
