@charset "UTF-8";
/* reset
---------------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, 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, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

* {
  box-sizing: border-box;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

img {
  border: 0;
  vertical-align: bottom;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

sub {
  vertical-align: sub;
}

sup {
  vertical-align: super;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

pre {
  white-space: pre-wrap;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/* common
---------------------------------------------------------------------------- */
/* Wisywigエディタ スタイル
---------------------------------------------------------------------------- */
.m-single-content {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  font-weight: 400;
}
.m-single-content p + p {
  margin-top: 1.8em;
}
.m-single-content p > a {
  color: #b80000;
  text-decoration: underline;
  transition: all 0.3s;
  margin-right: 0.4rem;
}
.m-single-content p > a::after {
  display: inline-block;
  content: "";
  color: #b80000;
  width: 2rem;
  aspect-ratio: 1;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  translate: 0.4rem 0.4rem;
  mask-image: url(./../../images/common/icn_internal.svg);
  background-color: currentColor;
}
.m-single-content p > a[target=_blank]::after {
  mask-image: url(./../../images/common/icn_external.svg);
}
.m-single-content p > a[href$=".pdf"]::after {
  mask-image: url(./../../images/common/icn_pdf.svg);
}
@media (any-hover: hover) {
  .m-single-content p > a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
}
.m-single-content p > a:has(> img)::after {
  content: none;
}
.m-single-content h2 {
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  font-weight: 700;
  background-color: #f0f0f0;
  padding-block: 1.2rem 1.1rem;
  padding-inline: 3.6rem 2rem;
  position: relative;
  margin-bottom: 1.8rem;
}
.m-single-content h2::before {
  content: "";
  width: 1.7rem;
  height: 0.3rem;
  background-color: #b80000;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
.m-single-content h2:not(:first-child) {
  margin-top: 5.4rem;
}
.m-single-content h3 {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding-bottom: 1.5rem;
  border-bottom: 0.1rem solid #dfdfdf;
  position: relative;
  margin-block: 5.4rem 2.2rem;
}
.m-single-content h3::before {
  content: "";
  width: 6rem;
  height: 0.3rem;
  background-color: #b80000;
  position: absolute;
  top: 100%;
  left: 0;
  translate: 0 -50%;
}
.m-single-content h4 {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.08em;
  font-weight: 700;
  position: relative;
  color: #b80000;
  margin-block: 5.4rem 2.4rem;
}
.m-single-content h5 {
  font-size: 1.4em;
  font-weight: 500;
  clear: both;
}
.m-single-content h6 {
  font-size: 1.2em;
  font-weight: 500;
  clear: both;
}
.m-single-content .wp-block-table {
  margin-block: 5.4rem;
}
.m-single-content table {
  width: 100%;
}
.m-single-content table thead {
  border-bottom: none;
  border: 1px solid #b80000;
}
.m-single-content table th {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #fff;
  background-color: #b80000;
  border-right: 1px solid #dfdfdf;
  border-right: none;
  padding-block: 1.45rem;
  padding-inline: 1.9rem;
  vertical-align: middle;
  text-align: center;
}
.m-single-content table td {
  font-weight: 400;
  background-color: #fff;
  border: 1px solid #dfdfdf;
  padding-block: 1.45rem;
  padding-inline: 1.9rem;
  vertical-align: middle;
}
.m-single-content .wp-block-image {
  margin-block: 2rem;
}
.m-single-content ul.wp-block-list {
  list-style-type: disc;
  list-style-position: inside;
}
.m-single-content ul.wp-block-list li {
  text-indent: -1.4em;
  padding-left: 1.4em;
}
.m-single-content ol.wp-block-list {
  list-style-type: decimal;
  list-style-position: inside;
}
.m-single-content ol.wp-block-list li {
  text-indent: -1.2em;
  padding-left: 1.2em;
}
.m-single-content .aligncenter {
  display: block;
  margin: 0 auto;
}
.m-single-content .alignright {
  float: right;
  margin-left: 1em;
}
.m-single-content .alignleft {
  float: left;
  margin-left: 1em;
}
.m-single-content strong {
  font-weight: bold;
}
.m-single-content em {
  font-style: italic;
}
.m-single-content blockquote {
  display: block;
  position: relative;
  padding: 1rem 1.5rem 1rem 6rem;
  box-sizing: border-box;
  font-style: italic;
  background: #efefef;
  color: #555;
  margin: 1.5em;
}
.m-single-content blockquote:before {
  display: inline-block;
  position: absolute;
  top: 1rem;
  left: 1rem;
  content: "“";
  color: #cfcfcf;
  font-size: 3em;
  line-height: 1;
  font-weight: 900;
}
.m-single-content hr {
  clear: both;
}
.m-single-content figcaption,
.m-single-content small {
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: #989898;
}
.m-single-content figcaption {
  margin-top: 1.1rem;
}
.m-single-content .wp-block-embed-youtube {
  width: 50rem;
  aspect-ratio: 500/282;
  margin-block: 6rem;
}
.m-single-content .wp-block-embed-youtube * {
  width: 100%;
  height: 100%;
}
.m-single-content .wp-block-embed-youtube iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media screen and (max-width: 767px) {
  .m-single-content {
    font-size: 4.2666666667vw;
  }
  .m-single-content p + p {
    margin-top: 1em;
  }
  .m-single-content p > a {
    margin-right: 1.0666666667vw;
  }
  .m-single-content p > a::after {
    width: 4.8vw;
    translate: 1.0666666667vw 1.0666666667vw;
  }
  .m-single-content h2 {
    font-size: 5.3333333333vw;
    padding-block: 3.2vw 2.9333333333vw;
    padding-inline: 8vw 4vw;
    margin-bottom: 4.8vw;
  }
  .m-single-content h2::before {
    width: 4.5333333333vw;
    height: 0.8vw;
  }
  .m-single-content h2:not(:first-child) {
    margin-top: 13.3333333333vw;
  }
  .m-single-content h3 {
    font-size: 4.8vw;
    padding-bottom: 4vw;
    border-bottom: 0.2666666667vw solid #dfdfdf;
    margin-block: 8vw 4.8vw;
  }
  .m-single-content h3::before {
    width: 16vw;
    height: 0.8vw;
  }
  .m-single-content h4 {
    font-size: 4.2666666667vw;
    margin-block: 8vw 4.8vw;
  }
  .m-single-content .wp-block-table {
    margin-block: 8vw;
  }
  .m-single-content .wp-block-table .has-fixed-layout {
    table-layout: auto;
    width: 100%;
  }
  .m-single-content table th {
    font-size: 4.2666666667vw;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: 500;
    padding-block: 3.8666666667vw;
    padding-inline: 5.0666666667vw;
    min-width: 40vw;
  }
  .m-single-content table td {
    padding-block: 3.8666666667vw;
    padding-inline: 5.0666666667vw;
  }
  .m-single-content .wp-block-image {
    margin-block: 5.3333333333vw;
  }
  .m-single-content blockquote {
    padding: 2.6666666667vw 4vw 2.6666666667vw 16vw;
  }
  .m-single-content blockquote:before {
    top: 2.6666666667vw;
    left: 2.6666666667vw;
  }
  .m-single-content figcaption,
  .m-single-content small {
    font-size: 3.7333333333vw;
  }
  .m-single-content figcaption {
    margin-top: 2.9333333333vw;
  }
  .m-single-content .wp-block-embed-youtube {
    width: 100%;
    margin-block: 8vw;
  }
}
/* 記事なしメッセージ
------------------------------------------ */
.m-normal-txt {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: #121212;
  margin-block: 4rem;
}

@media screen and (max-width: 767px) {
  .m-normal-txt {
    font-size: 4.2666666667vw;
    margin-block: 10.6666666667vw;
  }
}
/* m-pager
------------------------------------------ */
.m-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
  border-radius: calc(infinity * 1px);
  padding-block: 1.6rem;
  padding-inline: 1.5rem;
  width: fit-content;
  margin-inline: auto;
}

.m-pager .page-numbers {
  --col-txt: #121212;
  --col-bg: transparent;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
  color: var(--col-txt);
  text-align: center;
  align-content: center;
  display: inline-block;
  width: 3.25rem;
  aspect-ratio: 1;
  background-color: var(--col-bg);
  border-radius: 50%;
  margin-inline: 0.5rem;
  opacity: 1;
  transition: all 0.3s;
}
.m-pager .page-numbers.current {
  --col-txt: #fff;
  --col-bg: #b80000;
}
.m-pager .page-numbers.dots {
  pointer-events: none;
  --col-txt: #121212;
  --col-bg: transparent;
  margin-inline: 0rem;
}
.m-pager .page-numbers.next, .m-pager .page-numbers.prev {
  position: relative;
}
.m-pager .page-numbers.next::before, .m-pager .page-numbers.prev::before {
  --col-border: #121212;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 1;
  width: 1.3rem;
  height: 1.3rem;
  border-top: 0.2rem solid var(--col-border);
  border-right: 0.2rem solid var(--col-border);
  rotate: 45deg;
}
.m-pager .page-numbers.prev {
  transform: scaleX(-1);
}

@media (any-hover: hover) {
  .m-pager .page-numbers:hover {
    --col-txt: #b80000;
  }
  .m-pager .page-numbers:hover.current {
    --col-txt: #fff;
    --col-bg: #b80000;
  }
  .m-pager .page-numbers:hover.next::before, .m-pager .page-numbers:hover.prev::before {
    --col-border: #b80000;
  }
}
@media screen and (max-width: 767px) {
  .m-pager {
    padding-block: 2.4vw;
    padding-inline: 4vw;
  }
  .m-pager .page-numbers {
    font-size: 4.8vw;
    width: 8.6666666667vw;
    margin-inline: 0.1866666667vw;
  }
  .m-pager .page-numbers.next::before, .m-pager .page-numbers.prev::before {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    border-top: 0.5333333333vw solid var(--col-border);
    border-right: 0.5333333333vw solid var(--col-border);
  }
}
/* タイトル系
---------------------------------------------------------------------------- */
/* m-ttl-jp-en
----------------------------- */
.m-ttl-jp-en-ttl-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.m-ttl-jp-en-ttl-en {
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: #fff;
  font-family: "Lato";
}

.m-ttl-jp-en-ttl {
  font-size: 4rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #fff;
}

.m-ttl-jp-en-ttl-group._col-bk-red .m-ttl-jp-en-ttl-en {
  color: #b80000;
}
.m-ttl-jp-en-ttl-group._col-bk-red .m-ttl-jp-en-ttl {
  color: #121212;
}

@media screen and (max-width: 767px) {
  .m-ttl-jp-en-ttl-en {
    font-size: 4.8vw;
  }
  .m-ttl-jp-en-ttl {
    font-size: 6.6666666667vw;
  }
}
/* m-ttl-dot
----------------------------- */
.m-ttl-dot {
  font-size: 3.2rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: 700;
  display: grid;
  grid-template-columns: auto auto;
  align-items: start;
  justify-content: start;
  gap: 3.7rem;
}

.m-ttl-dot._col-white {
  color: #fff;
}

.m-ttl-dot ._dot {
  --clo-bg: #b80000;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--clo-bg);
  position: relative;
  top: 2.2rem;
  left: 0;
}
.m-ttl-dot ._dot::after, .m-ttl-dot ._dot::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--clo-bg);
  position: absolute;
  top: 50%;
  left: 0.8rem;
  translate: 0 -50%;
}
.m-ttl-dot ._dot::after {
  left: 1.6rem;
}

.m-ttl-dot ._dot._col-white {
  --clo-bg: #fff;
}

@media screen and (max-width: 767px) {
  .m-ttl-dot {
    font-size: 6.4vw;
    line-height: 1.5;
    gap: 6.6666666667vw;
  }
  .m-ttl-dot ._dot {
    width: 1.0666666667vw;
    height: 1.0666666667vw;
    top: 4.5333333333vw;
  }
  .m-ttl-dot ._dot::after, .m-ttl-dot ._dot::before {
    width: 1.0666666667vw;
    height: 1.0666666667vw;
    left: 2.1333333333vw;
  }
  .m-ttl-dot ._dot::after {
    left: 4.2666666667vw;
  }
}
/* ボタン系
---------------------------------------------------------------------------- */
.m-btn-circle-arrow {
  --col-txt: #121212;
  --col-icn: #bcbcbc;
  --col-border: #bcbcbc;
  --col-bg: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 2rem;
  line-height: 1.7;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: var(--col-txt);
  background-color: var(--col-bg);
  border: 2px solid var(--col-border);
  padding-block: 1.6rem 1.4rem;
  border-radius: 0.4rem;
  transition: 0.3s;
}
.m-btn-circle-arrow::before {
  content: "";
  display: block;
  width: 2.9rem;
  height: 2.9rem;
  mask-image: url(../../../assets/images/common/icn_circle_arrow.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: var(--col-icn);
  transition: 0.3s;
}

.m-btn-circle-arrow._arrow-right {
  flex-direction: row-reverse;
}
.m-btn-circle-arrow._arrow-right::before {
  scale: -1 1;
}

.m-btn-circle-arrow._col-red {
  --col-txt: #fff;
  --col-icn: #fff;
  --col-border: #991010;
  --col-bg: #b80000;
}

.m-btn-circle-arrow._col-icn-black {
  --col-txt: #121212;
  --col-icn: #121212;
  --col-border: #bcbcbc;
  --col-bg: #fff;
}

@media (any-hover: hover) {
  .m-btn-circle-arrow:hover {
    --col-txt: #b80000;
    --col-icn: #b80000;
    --col-border: #991010;
  }
  .m-btn-circle-arrow._col-red:hover {
    --col-txt: #b80000;
    --col-icn: #b80000;
    --col-border: #991010;
    --col-bg: #fff;
  }
  .m-btn-circle-arrow._col-icn-black:hover {
    --col-txt: #b80000;
    --col-icn: #b80000;
    --col-border: #991010;
    --col-bg: #fff;
  }
}
@media screen and (max-width: 767px) {
  .m-btn-circle-arrow {
    gap: 2.6666666667vw;
    font-size: 4.2666666667vw;
    padding-block: 2.6666666667vw 2.9333333333vw;
    border-radius: 2.1333333333vw;
  }
  .m-btn-circle-arrow::before {
    width: 5.8666666667vw;
    height: 5.8666666667vw;
  }
}
/* パーツ系
---------------------------------------------------------------------------- */
/* m-child-mv
----------------------------- */
.m-child-mv {
  padding-block: 5.9rem 5rem;
  position: relative;
}
.m-child-mv::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../../images/news/bg_mv_pc.webp");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.m-child-mv-ttl-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.m-child-mv-ttl-en {
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: #fff;
  font-family: "Lato";
}

.m-child-mv-ttl {
  font-size: 4rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .m-child-mv {
    padding-block: 9.6vw 9.6vw;
  }
  .m-child-mv::before {
    background-image: url("../../images/news/bg_mv_sp.webp");
  }
  .m-child-mv-ttl-en {
    font-size: 3.4666666667vw;
    line-height: 1.6153846154;
  }
  .m-child-mv-ttl {
    font-size: 6.6666666667vw;
    line-height: 1.5;
  }
}
/* m-cat
----------------------------- */
.m-news-card-img {
  width: 36.6rem;
  aspect-ratio: 366/206;
  margin-bottom: 1rem;
}
.m-news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.m-news-card-date {
  --col-txt: #848484;
  grid-template-columns: auto auto;
  justify-content: start;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: var(--col-txt);
  display: grid;
  margin-bottom: 0.9rem;
}
.m-news-card-date::before {
  --col-bg: #848484;
  content: "";
  width: 1.7rem;
  height: 1.7rem;
  mask-image: url("../../images/common/icn_date.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: var(--col-bg);
}

.m-news-card-category {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.m-news-card-category-item {
  --col-txt: #121212;
  --col-border: #bcbcbc;
  font-size: 1.4rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: var(--col-txt);
  border: 1px solid var(--col-border);
  padding-block: 0.3rem;
  padding-inline: 0.9rem;
}

.m-news-card-txt {
  --col-txt: #121212;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--col-txt);
  overflow: hidden;
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-decoration: none;
}

@media (any-hover: hover) {
  .m-news-card:hover .m-news-card-txt {
    --col-txt: #d93d33;
    text-decoration: underline;
  }
}
@media screen and (max-width: 767px) {
  .m-news-card-img {
    width: 100%;
    margin-bottom: 2.6666666667vw;
  }
  .m-news-card-date {
    gap: 2.6666666667vw;
    font-size: 4.2666666667vw;
    margin-bottom: 2.4vw;
  }
  .m-news-card-date::before {
    width: 4.5333333333vw;
    height: 4.5333333333vw;
  }
  .m-news-card-category {
    gap: 2.6666666667vw;
    margin-bottom: 2.6666666667vw;
  }
  .m-news-card-category-item {
    font-size: 3.7333333333vw;
    padding-block: 0.8vw;
    padding-inline: 2.4vw;
  }
  .m-news-card-txt {
    font-size: 5.3333333333vw;
  }
}
/* m-cat
----------------------------- */
.m-cat {
  background-color: #121212;
  position: relative;
}
.m-cat::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../../images/common/img_cta_pc.webp");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0;
}

.m-cat-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 38rem;
  padding-block: 11.3rem 12.4rem;
}

.m-cat-ttl-group {
  color: #fff;
  position: relative;
}

.m-cat-ttl {
  font-size: 4.2rem;
  line-height: 1.5;
  font-weight: 700;
  font-family: "Lato";
}

.m-cat-txt {
  font-size: 2.4rem;
  line-height: 1.625;
  letter-spacing: 0.04em;
  font-weight: 500;
  margin-top: 1rem;
}

.m-cat-btn-wrap {
  width: 38rem;
  padding-top: 1.2rem;
}

.m-cat-btn {
  display: inline-block;
  font-size: 2.4rem;
  line-height: 1.7083333333;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #fff;
  background-color: #d93d33;
  padding-block: 2rem 1.9rem;
  padding-inline: 6rem 5.8rem;
  position: relative;
  width: 100%;
}

.m-cat-btn ._arrow {
  --arrow-size: 1.2rem;
  --arrow-border-width: 0.3rem;
  position: absolute;
  top: 50%;
  right: 2rem;
  translate: 0 -50%;
  width: var(--arrow-size);
  height: var(--arrow-size);
  border-top: var(--arrow-border-width) solid currentColor;
  border-right: var(--arrow-border-width) solid currentColor;
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .m-cat::before {
    background-image: url("../../images/common/img_cta_sp.webp");
  }
  .m-cat-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: auto;
    gap: 9.6vw;
    padding-block: 12vw 13.3333333333vw;
  }
  .m-cat-ttl-group {
    color: #fff;
    position: relative;
    padding-left: 2.6666666667vw;
  }
  .m-cat-ttl {
    font-size: 8.5333333333vw;
  }
  .m-cat-txt {
    font-size: 4.8vw;
    line-height: 1.5;
    margin-top: 1.3333333333vw;
  }
  .m-cat-btn-wrap {
    width: 74.6666666667vw;
    padding-top: 0;
    margin-inline: auto;
  }
  .m-cat-btn {
    display: inline-block;
    font-size: 4.8vw;
    line-height: 1.7222222222;
    padding-block: 3.4666666667vw 3.7333333333vw;
    padding-inline: 10.9333333333vw;
    position: relative;
    width: 100%;
  }
  .m-cat-btn ._arrow {
    --arrow-size: calc(10/375 * 100vw);
    --arrow-border-width: calc(2/375 * 100vw);
    right: 4vw;
    width: var(--arrow-size);
    height: var(--arrow-size);
    border-top: var(--arrow-border-width) solid currentColor;
    border-right: var(--arrow-border-width) solid currentColor;
  }
}
/* m-cat-news
----------------------------- */
.m-cat-news {
  padding-block: 7.75rem 7.95rem;
  position: relative;
}
.m-cat-news::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../../images/common/bg_cta_news_pc.webp");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.m-cat-news-ttl {
  --rotate: 27deg;
  --margin-inline: 2rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: 2.6rem;
  line-height: 1.6153846154;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.m-cat-news-ttl::before,
.m-cat-news-ttl::after {
  width: 0.4rem;
  height: 2.7rem;
  background-color: #fff;
  content: "";
}

.m-cat-news-ttl::before {
  rotate: calc(-1 * var(--rotate));
  margin-right: var(--margin-inline);
}

.m-cat-news-ttl::after {
  rotate: var(--rotate);
  margin-left: var(--margin-inline);
}

.m-cat-news-box {
  padding-block: 4.5rem 5rem;
  background-color: #fff;
  margin-top: 3rem;
}

.m-cat-news-img {
  display: block;
  width: 69.7rem;
  aspect-ratio: 697/101;
  margin-inline: auto;
  margin-bottom: 4rem;
}
.m-cat-news-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.m-cat-news-btn-wrap {
  display: grid;
  grid-template-columns: repeat(2, 31.4rem);
  justify-content: center;
  gap: 3rem;
}

@media screen and (max-width: 767px) {
  .m-cat-news {
    padding-block: 12vw 10.6666666667vw;
  }
  .m-cat-news-ttl {
    --rotate: 27deg;
    --margin-inline: 2vw;
    font-size: 4.2666666667vw;
    line-height: 1.4375;
  }
  .m-cat-news-ttl::before,
  .m-cat-news-ttl::after {
    width: 0.4vw;
    height: 7.2vw;
  }
  .m-cat-news-ttl::before {
    rotate: calc(-1 * var(--rotate));
    margin-right: var(--margin-inline);
  }
  .m-cat-news-ttl::after {
    rotate: var(--rotate);
    margin-left: var(--margin-inline);
  }
  .m-cat-news-box {
    padding-block: 9.0666666667vw 8vw;
    background-color: #fff;
    margin-top: 5.3333333333vw;
  }
  .m-cat-news-img {
    width: 81.3333333333vw;
    aspect-ratio: 305/103;
    margin-bottom: 5.8666666667vw;
  }
  .m-cat-news-btn-wrap {
    grid-template-columns: repeat(1, 62.9333333333vw);
    gap: 4vw;
  }
}
/* m-bnr
----------------------------- */
.m-bnr {
  padding-block: 6.4rem 10.2rem;
  position: relative;
}
.m-bnr::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #1f1f1f;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.m-bnr-inner {
  position: relative;
}

.swiper {
  margin-inline: auto;
  width: 79.2rem;
}

.swiper-slide {
  display: flex;
  align-items: stretch;
}

.m-bnr-link {
  display: block;
  width: 22.4rem;
  height: 11.2rem;
}
.m-bnr-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.swiper-button-next,
.swiper-button-prev {
  width: 3.3rem;
  height: 3.3rem;
  border-top: 0.6rem solid rgba(255, 255, 255, 0.4);
  border-right: 0.6rem solid rgba(255, 255, 255, 0.4);
  top: 55%;
}

.swiper-button-next {
  right: 12.3rem;
  translate: 50%;
  rotate: 45deg;
}

.swiper-button-prev {
  left: 12.3rem;
  translate: -50%;
  rotate: -135deg;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -4.2rem;
  left: 0;
  width: 100%;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 2rem;
  height: 0.2rem;
  display: inline-block;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #fff;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0.52rem;
}

@media screen and (max-width: 767px) {
  .m-bnr {
    padding-block: 12vw 20vw;
  }
  .swiper {
    width: 100%;
  }
  .m-bnr-link {
    width: 59.7333333333vw;
    height: 29.8666666667vw;
    margin-inline: auto;
  }
  .swiper-button-next,
  .swiper-button-prev {
    width: 6.9333333333vw;
    height: 6.9333333333vw;
    border-top: 1.3333333333vw solid rgba(255, 255, 255, 0.4);
    border-right: 1.3333333333vw solid rgba(255, 255, 255, 0.4);
    top: 64%;
  }
  .swiper-button-next {
    right: 17.3333333333vw;
  }
  .swiper-button-prev {
    left: 17.3333333333vw;
  }
  .swiper-pagination.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -5.3333333333vw;
  }
  .swiper-pagination .swiper-pagination-bullet {
    width: 5.3333333333vw;
    height: 0.5333333333vw;
  }
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 1.3866666667vw;
  }
}
/* layout
-----------------------------------------------------------------------------*/
/*必要なフォントのみ読み込んでください。不要なフォントおよび太さは削除でお願いします。*/
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../fonts/Noto_Sans_JP/NotoSansJP-Regular.woff2") format("woff2"), url("../../fonts/Noto_Sans_JP/NotoSansJP-Regular.woff") format("woff");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../fonts/Noto_Sans_JP/NotoSansJP-Medium.woff2") format("woff2"), url("../../fonts/Noto_Sans_JP/NotoSansJP-Medium.woff") format("woff");
  font-display: swap;
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../fonts/Noto_Sans_JP/NotoSansJP-Bold.woff2") format("woff2"), url("../../fonts/Noto_Sans_JP/NotoSansJP-Bold.woff") format("woff");
  font-display: swap;
  font-weight: 700;
  font-style: normal;
}
/*
@font-face {
    font-family: 'Noto Sans JP';
	src: url("../../fonts/Noto_Sans_JP/NotoSansJP-Black.woff2") format("woff2"),url("../../fonts/Noto_Sans_JP/NotoSansJP-Black.woff") format("woff");
	font-display: swap;
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'Noto Serif JP';
	src: url("../../fonts/Noto_Serif_JP/NotoSerifJP-Regular.woff2") format("woff2"),url("../../fonts/Noto_Serif_JP/NotoSerifJP-Regular.woff") format("woff");
	font-display: swap;
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Noto Serif JP';
	src: url("../../fonts/Noto_Serif_JP/NotoSerifJP-Medium.woff2") format("woff2"),url("../../fonts/Noto_Serif_JP/NotoSerifJP-Medium.woff") format("woff");
	font-display: swap;
    font-weight: 500;
    font-style: normal;
}
*/
@font-face {
  font-family: "Noto Serif JP";
  src: url("../../fonts/Noto_Serif_JP/NotoSerifJP-Bold.woff2") format("woff2"), url("../../fonts/Noto_Serif_JP/NotoSerifJP-Bold.woff") format("woff");
  font-display: swap;
  font-weight: 700;
  font-style: normal;
}
/*
@font-face {
    font-family: 'Noto Serif JP';
	src: url("../../fonts/Noto_Serif_JP/NotoSerifJP-Black.woff2") format("woff2"),url("../../fonts/Noto_Serif_JP/NotoSerifJP-Black.woff") format("woff");
	font-display: swap;
    font-weight: 900;
    font-style: normal;
}*/
/* base
---------------------------------------------------------------------------- */
/*------------- General Elements -------------*/
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #121212;
  font-size: 1.5rem;
}

a {
  text-decoration: none;
  color: #2c6cd6;
  outline: none;
}
a:hover, a:active, a:focus {
  text-decoration: none;
}

img {
  max-width: 100%;
}

* {
  word-break: break-all;
}

@media screen and (max-width: 1280px) and (min-width: 767.01px) {
  html {
    font-size: 0.78125vw;
  }
}
@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
  }
}
/*------------- .l-pagebody -------------*/
.l-pagebody {
  width: 100%;
  overflow: hidden;
}

.l-content {
  width: 100%;
  max-width: 120rem;
  margin-inline: auto;
}
.l-content._1100 {
  max-width: 110rem;
}
.l-content._1080 {
  max-width: 108rem;
}
.l-content._1000 {
  max-width: 100rem;
}

.l-main {
  width: 100%;
  overflow: hidden;
  margin-top: min(4.1666666667vw, 80px);
}

@media screen and (max-width: 767px) {
  .l-content {
    max-width: 100%;
    padding-inline: 4vw;
  }
  .l-content._1000, .l-content._1080, .l-content._1100 {
    max-width: 100%;
  }
  .l-content._sp-px-0 {
    padding-inline: 0;
  }
  .l-content._sp-px-15 {
    padding-inline: 4vw;
  }
  .l-main {
    margin-top: 16vw;
  }
}
/*------------- .l-header -------------*/
.l-header {
  position: fixed;
  inset: 0;
  z-index: 9000;
  height: 8rem;
  background-color: #121212;
}

.l-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 192rem;
  padding-inline: 6rem 0;
  margin-inline: auto;
  height: 100%;
}

.l-header.is-detail {
  position: fixed;
}
.l-header.is-detail::before {
  opacity: 1;
}

.l-header.is-detail .l-header-inner {
  padding-top: 0;
}

.l-header.is-fixed {
  position: fixed;
}
.l-header.is-fixed::before {
  opacity: 1;
}

.l-header.is-fixed .l-header-inner {
  padding-top: 0;
}

.l-header-logo {
  width: 11rem;
  aspect-ratio: 110/46;
}
.l-header-logo a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}
.l-header-logo a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.l-header._news {
  background-color: #ffffff;
}
.l-header._news .l-header-inner {
  padding-inline: 2rem 0;
}
.l-header._news .l-header-logo {
  width: min(15.625vw, 300px);
  aspect-ratio: 300/43.41;
}

@media (max-width: 767px) {
  .l-header {
    height: 16vw;
  }
  .l-header-inner {
    max-width: 100%;
    padding-inline: 5.3333333333vw;
  }
  .l-header.is-detail::before,
  .l-header.is-fixed::before {
    opacity: 1;
  }
  .l-header-logo {
    width: 22.6666666667vw;
    aspect-ratio: 85/36;
  }
  .l-header._news .l-header-inner {
    padding-inline: 5.3333333333vw 0;
  }
  .l-header._news .l-header-logo {
    width: 37.3333333333vw;
  }
  .l-header._news .l-hamburger {
    width: 7.7333333333vw;
    height: 4.5333333333vw;
  }
  .l-header._news .l-hamburger-line {
    --color-bar: #b80000;
  }
  .l-hamburger {
    display: block;
    width: 6.1333333333vw;
    height: 5.3333333333vw;
    position: relative;
    z-index: 8000;
    background-color: transparent;
  }
  .l-hamburger-line {
    --color-bar: #fff;
    display: block;
    height: 0.4vw;
    width: 100%;
    background-color: var(--color-bar);
    transition: 0.3s;
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
  }
  .l-hamburger-line:before,
  .l-hamburger-line:after {
    content: "";
    display: block;
    width: 100%;
    height: 0.4vw;
    position: absolute;
    background-color: var(--color-bar);
    transition: inherit;
  }
  .l-hamburger-line:before {
    top: -2.1333333333vw;
  }
  .l-hamburger-line:after {
    top: 2.1333333333vw;
  }
  .l-hamburger.is-hamburger-open .l-hamburger-line {
    background-color: transparent;
  }
  .l-hamburger.is-hamburger-open .l-hamburger-line::before {
    top: 0;
    transform: rotate(45deg);
  }
  .l-hamburger.is-hamburger-open .l-hamburger-line::after {
    top: 0;
    transform: rotate(-45deg);
  }
}
/*------------- .l-gnav -------------*/
.l-header-gnav-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}

.l-header-gnav {
  height: 100%;
  margin-right: 0;
}

.l-header-gnav-list {
  display: flex;
  gap: 0 4.9rem;
  height: 100%;
}
.l-header-gnav-list > li {
  height: 100%;
}

.l-header-gnav-link {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  line-height: 1.7222222222;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #fff;
  width: 100%;
  height: 100%;
  position: relative;
}
.l-header-gnav-link::before {
  --color: transparent;
  content: "";
  display: block;
  width: 100%;
  height: 0.3rem;
  position: absolute;
  bottom: 0;
  background-color: var(--color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (any-hover: hover) {
  .l-header-gnav-link:hover {
    color: rgba(255, 255, 255, 0.6);
  }
  .l-header-gnav-link:hover::before {
    --color: #fff;
  }
}
.l-gnav-cta {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  align-items: center;
  gap: 1.5rem;
  margin-left: 8rem;
  height: 100%;
}

.l-gnav-cta-btn {
  --color-txt: #fff;
  --color-bg: #d93d33;
  display: grid;
  place-items: center;
  width: 23rem;
  height: 100%;
  background-color: var(--color-bg);
  color: var(--color-txt);
  padding-inline: 1rem;
  font-size: 1.8rem;
  line-height: 1.7222222222;
  letter-spacing: 0.041em;
  font-weight: 700;
  text-align: center;
}
.l-gnav-cta-btn span {
  position: relative;
}

@media (max-width: 767px) {
  .l-header-gnav-wrap {
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 16vw;
    right: -120%;
    z-index: 8000;
    overflow: auto;
    width: 61.3333333333vw;
    height: fit-content;
    max-height: calc(100vh - 16vw);
    transition: all 0.3s;
    background-color: #fff;
  }
  .l-header-gnav-wrap.is-open {
    right: 0;
  }
  .l-header-gnav {
    width: 100%;
    height: fit-content;
    background-color: #f0f0f0;
    padding-block: 0;
    padding-inline: 0;
  }
  .l-header-gnav-list {
    flex-direction: column;
  }
  .l-header-gnav-list > :last-child .l-header-gnav-link {
    margin-bottom: 0;
  }
  .l-header-gnav-item:not(:last-of-type) {
    border-bottom: 0.2666666667vw solid #cecece;
  }
  .l-header-gnav-link {
    font-size: 4.2666666667vw;
    line-height: 1.5;
    color: #121212;
    height: 16vw;
    padding-left: 5.3333333333vw;
  }
  .l-header-gnav-link::before {
    content: none;
  }
  .l-header-gnav-link::after {
    content: "";
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    border-top: 0.5333333333vw solid #d93d33;
    border-right: 0.5333333333vw solid #d93d33;
    rotate: 45deg;
    position: absolute;
    top: 50%;
    right: 6.4vw;
    translate: 0 -50%;
  }
  .l-gnav-cta {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
    gap: 0;
    padding: 0;
    margin: 0;
  }
  .l-gnav-cta-btn {
    width: 100%;
    height: 16vw;
    border-radius: 0;
    border: 0.2666666667vw solid var(--color-bg);
    padding: 0;
    margin: 0;
    font-size: 4.8vw;
  }
}
/*------------- .l-news-gnav -------------*/
.l-news-gnav-right {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}

.l-header-news-gnav-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}

.l-header-news-gnav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.1rem;
  height: 100%;
}

.l-header-news-gnav-language-text {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  width: 10.2rem;
  height: 3rem;
  padding-left: 1rem;
  gap: 0.8rem;
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: #121212;
  border: 1px solid #cecece;
  border-radius: 0.4rem;
}
.l-header-news-gnav-language-text::before {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  background-image: url(../../../assets/images/common/icn_language.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.l-header-news-gnav {
  height: 100%;
}

.l-header-news-gnav-list {
  display: flex;
  gap: 0 3.9rem;
  height: 100%;
}
.l-header-news-gnav-list > li {
  height: 100%;
}

.l-header-news-gnav-link {
  --col-txt: #3a3a3a;
  display: grid;
  place-content: center;
  grid-auto-flow: column;
  align-items: center;
  height: 100%;
  font-size: 1.7rem;
  line-height: 1.7058823529;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: var(--col-txt);
  position: relative;
}
.l-header-news-gnav-link::before {
  --color: transparent;
  content: "";
  display: block;
  width: 100%;
  height: 0.3rem;
  position: absolute;
  bottom: 0;
  background-color: var(--color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-header-news-gnav-link[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  mask-image: url(../../../assets/images/common/icn_external_header.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: currentColor;
  margin-left: 0.6rem;
}

@media (any-hover: hover) {
  .l-header-news-gnav-link:hover {
    --col-txt: #b80000;
  }
  .l-header-news-gnav-link:hover::before {
    --color: #b80000;
  }
}
.l-news-gnav-newsSite {
  height: 100%;
}

.l-news-gnav-newsSite-link {
  --col-bg: #fff;
  --col-txt: #3a3a3a;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14.2rem;
  height: 100%;
  font-size: 1.4rem;
  line-height: 1.5714285714;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: var(--col-txt);
  background-color: var(--col-bg);
  transition: all 0.3s;
  margin-left: 2.9rem;
  border-left: 1px solid #cecece;
  border-right: 1px solid #cecece;
}
.l-news-gnav-newsSite-link span {
  width: fit-content;
  position: relative;
  padding-left: 4rem;
}
.l-news-gnav-newsSite-link span::before {
  content: "";
  display: block;
  width: 2.91rem;
  height: 2.46rem;
  background-image: url(../../../assets/images/common/icn_header_newsSite.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
.l-news-gnav-newsSite-link span::after {
  content: "";
  display: inline-block;
  width: 1.3rem;
  height: 1.3rem;
  background-image: url(../../../assets/images/common/icn_header_newsSite_link.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 0.5rem;
}

@media (any-hover: hover) {
  .l-news-gnav-newsSite-link:hover {
    --col-bg: #3a3a3a;
    --col-txt: #fff;
  }
}
@media (max-width: 767px) {
  .l-news-gnav-right {
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
  }
  .l-header-news-gnav-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
    padding-block: 2.6666666667vw 9.8666666667vw;
    padding-inline: 5.3333333333vw;
  }
  .l-header-news-gnav-wrap {
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 16vw;
    right: -120%;
    z-index: 8000;
    overflow: auto;
    width: 100%;
    height: auto;
    max-height: calc(100vh - 16vw);
    transition: all 0.3s;
    background-color: #fff;
  }
  .l-header-news-gnav-wrap.is-open {
    right: 0;
  }
  .l-header-news-gnav-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4.5333333333vw;
    height: 100%;
    width: 100%;
  }
  .l-header-news-gnav-language-text {
    width: 38.6666666667vw;
    height: 10.6666666667vw;
    margin-inline: auto;
    padding-left: 5.0666666667vw;
    gap: 2.1333333333vw;
    font-size: 5.3333333333vw;
    border-radius: 1.0666666667vw;
  }
  .l-header-news-gnav-language-text::before {
    width: 5.8666666667vw;
    height: 5.8666666667vw;
  }
  .l-header-news-gnav {
    height: 100%;
    width: 100%;
  }
  .l-header-news-gnav-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5.3333333333vw 4vw;
  }
  .l-header-news-gnav-item:last-of-type {
    grid-column: 1/3;
  }
  .l-header-news-gnav-link {
    width: 100%;
    height: 14.6666666667vw;
    border-bottom: 0.2666666667vw solid #cecece;
    font-size: 4.2666666667vw;
    justify-content: start;
  }
  .l-header-news-gnav-link::before {
    content: none;
  }
  .l-header-news-gnav-link::after {
    content: "";
    width: 5.6vw;
    height: 5.6vw;
    mask-image: url(../../../assets/images/common/icn_circle_arrow.svg);
    mask-repeat: no-repeat;
    mask-size: contain;
    background-color: #b80000;
    rotate: 180deg;
    position: absolute;
    top: 50%;
    right: 0;
    translate: 0 -50%;
  }
  .l-header-news-gnav-link[target=_blank]::after {
    rotate: 0deg;
    width: 5.6vw;
    height: 5.6vw;
    margin-left: 0;
    background-color: #b80000;
  }
  .l-news-gnav-newsSite {
    height: 100%;
  }
  .l-news-gnav-newsSite-link {
    width: 37.8666666667vw;
    height: 100%;
    font-size: 3.7333333333vw;
    margin-left: 0;
    border-left: none;
    border-right: none;
  }
  .l-news-gnav-newsSite-link span {
    padding-left: 10.6666666667vw;
  }
  .l-news-gnav-newsSite-link span::before {
    width: 7.76vw;
    height: 6.56vw;
  }
  .l-news-gnav-newsSite-link span::after {
    width: 3.4666666667vw;
    height: 3.4666666667vw;
    margin-left: 1.3333333333vw;
  }
  .l-hamburger-wrap {
    display: grid;
    place-items: center;
    width: 16vw;
    height: 16vw;
    background-color: #f0f0f0;
  }
}
/*------------- .l-breadcrumbs -------------*/
.l-breadcrumbs {
  margin-block: 1.8rem 0.8rem;
}

.l-breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 3.3em;
}

.l-breadcrumbs ol li {
  position: relative;
}

.l-breadcrumbs ol li::before {
  content: "＞";
  color: #B80000;
  position: absolute;
  top: 50%;
  right: -1.2em;
  translate: 100% -50%;
}

.l-breadcrumbs ol li a {
  display: inline-block;
  width: max-content;
  line-height: 1.3;
  color: #B80000;
  opacity: 1;
  transition: opacity 0.3s ease;
  text-decoration: underline;
  text-underline-offset: 0.5em;
}

@media (any-hover: hover) {
  .l-breadcrumbs ol li a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
}
.l-breadcrumbs ol li:last-child::before {
  content: none;
}

.l-breadcrumbs ol li:last-child a {
  pointer-events: none;
  text-decoration: none;
  color: #121212;
  opacity: 1;
  width: fit-content;
}

.l-breadcrumbs ol li:last-child {
  color: #121212;
  opacity: 1;
}

.l-breadcrumbs.is-detail ol li::before {
  border-top: 1px solid #989898;
  border-right: 1px solid #989898;
}
.l-breadcrumbs.is-detail ol li a {
  color: #002C81;
}

@media screen and (max-width: 767px) {
  .l-breadcrumbs {
    /* はみ出し部分をスクロールする */
    overflow-x: auto;
    overflow-y: hidden;
    /* テキストを改行しないようにする */
    word-break: keep-all;
    white-space: nowrap;
    /* スクロールの動きを滑らかにする */
    -webkit-overflow-scrolling: touch;
    /* スクロールバーを非表示にする（Firefox用） */
    scrollbar-width: none;
  }
  .l-breadcrumbs::-webkit-scrollbar {
    /* スクロールバーを非表示にする（Chrome, Safari用） */
    display: none;
  }
}
/*------------- .l-sidebar -------------*/
/*------------- .l-pagetop -------------*/
/*------------- .l-footer -------------*/
.l-footer {
  background-color: #f0f0f0;
}

.l-footer-inner {
  display: flex;
  justify-content: space-between;
  padding-block: 6rem 7.4rem;
}

.l-footer-logo {
  display: block;
  width: 29.2rem;
  height: 3.5rem;
}
.l-footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.l-footer-nav {
  margin-top: 4.2rem;
  display: flex;
  gap: 4.9rem;
}

.l-footer-nav-link {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #121212;
}

.l-footer-global-link {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: #121212;
  border: 1px solid #bcbcbc;
  background-color: #fff;
  padding-block: 0.6rem 0.5rem;
  padding-inline: 1.6rem;
  border-radius: 0.4rem;
}
.l-footer-global-link::before {
  content: "";
  width: 2.1rem;
  height: 2.2rem;
  background-image: url(../../../assets/images/common/icn_language.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.l-footer-sns {
  margin-top: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2.4rem;
}

.l-footer-sns-link {
  display: block;
  width: 3.2rem;
  height: 3.2rem;
}
.l-footer-sns-link ._linkedin {
  width: 3.5rem;
}
.l-footer-sns-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.l-footer-bottom {
  border-top: 1px solid #bcbcbc;
}

.l-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.8rem 1.2rem;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.l-footer-bottom-link {
  color: #121212;
  text-decoration: underline;
}

@media (any-hover: hover) {
  .l-footer-bottom-link:hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-inner {
    flex-direction: column;
    gap: 8vw;
    padding-block: 16vw 8vw;
  }
  .l-footer-logo {
    width: 52vw;
    height: auto;
  }
  .l-footer-nav {
    margin-top: 8vw;
    flex-direction: column;
    gap: 5.3333333333vw;
  }
  .l-footer-nav-link {
    font-size: 4.2666666667vw;
  }
  .l-footer-global-link {
    gap: 1.6vw;
    font-size: 4.2666666667vw;
    padding-block: 1.6vw 1.3333333333vw;
    padding-inline: 4.2666666667vw;
    border-radius: 1.0666666667vw;
  }
  .l-footer-global-link::before {
    width: 5.6vw;
    height: 5.8666666667vw;
  }
  .l-footer-sns {
    margin-top: 5.3333333333vw;
    justify-content: flex-start;
    gap: 5.3333333333vw;
  }
  .l-footer-sns-link {
    width: 8.5333333333vw;
    height: 8.5333333333vw;
  }
  .l-footer-sns-link ._linkedin {
    width: 9.3333333333vw;
  }
  .l-footer-bottom-inner {
    flex-direction: column;
    padding-block: 4vw;
    font-size: 2.6666666667vw;
  }
}
/*------------- .l-footer -------------*/
.l-footer._news {
  background-color: #121212;
}

.l-footer-news-inner {
  padding-block: 5rem 7.8rem;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
}

.l-footer-news-logo {
  display: block;
  width: 30rem;
  height: 4.341rem;
}
.l-footer-news-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.l-footer-news-nav {
  width: 68rem;
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 2.2rem 3.9rem;
}

.l-footer-news-nav-link {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #ffffff;
}

.l-footer-news-bottom {
  border-top: 1px solid #bcbcbc;
}

.l-footer-news-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 0.8rem 1.2rem;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .l-footer-news-inner {
    padding-block: 10.6666666667vw 6.6666666667vw;
    grid-template-columns: 1fr;
  }
  .l-footer-news-logo {
    width: 61.8666666667vw;
    height: auto;
    margin-inline: auto;
  }
  .l-footer-news-nav {
    width: 100%;
    margin-top: 8.5333333333vw;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid #404040;
    border-bottom: 1px solid #404040;
  }
  .l-footer-news-nav > :last-child {
    grid-column: 1/3;
  }
  .l-footer-news-nav-link {
    display: grid;
    place-items: center;
    height: 14.9333333333vw;
    font-size: 4.2666666667vw;
    color: #ffffff;
    border-bottom: 1px solid #404040;
  }
  .l-footer-news-nav > :nth-child(odd) .l-footer-news-nav-link {
    border-right: 1px solid #404040;
  }
  .l-footer-news-nav > :last-child .l-footer-news-nav-link {
    border-right: none;
    border-bottom: none;
  }
  .l-footer-news-bottom {
    border-top: 1px solid #bcbcbc;
  }
  .l-footer-news-bottom-inner {
    padding-block: 4vw;
    font-size: 2.6666666667vw;
  }
}
/* module
---------------------------------------------------------------------------- */
/* RWD表示切り替え
---------------------------------------------------------------------------- */
@media all and (min-width: 767.01px) {
  .nopc {
    display: none !important;
  }
}
@media all and (max-width: 767px) {
  .nosp {
    display: none !important;
  }
}
/* フォントサイズ
---------------------------------------------------------------------------- */
.fs50 {
  font-size: 5rem !important;
}

.fs49 {
  font-size: 4.9rem !important;
}

.fs48 {
  font-size: 4.8rem !important;
}

.fs47 {
  font-size: 4.7rem !important;
}

.fs46 {
  font-size: 4.6rem !important;
}

.fs45 {
  font-size: 4.5rem !important;
}

.fs44 {
  font-size: 4.4rem !important;
}

.fs43 {
  font-size: 4.3rem !important;
}

.fs42 {
  font-size: 4.2rem !important;
}

.fs41 {
  font-size: 4.1rem !important;
}

.fs40 {
  font-size: 4rem !important;
}

.fs39 {
  font-size: 3.9rem !important;
}

.fs38 {
  font-size: 3.8rem !important;
}

.fs37 {
  font-size: 3.7rem !important;
}

.fs36 {
  font-size: 3.6rem !important;
}

.fs35 {
  font-size: 3.5rem !important;
}

.fs34 {
  font-size: 3.4rem !important;
}

.fs33 {
  font-size: 3.3rem !important;
}

.fs32 {
  font-size: 3.2rem !important;
}

.fs31 {
  font-size: 3.1rem !important;
}

.fs30 {
  font-size: 3rem !important;
}

.fs29 {
  font-size: 2.9rem !important;
}

.fs28 {
  font-size: 2.8rem !important;
}

.fs27 {
  font-size: 2.7rem !important;
}

.fs26 {
  font-size: 2.6rem !important;
}

.fs25 {
  font-size: 2.5rem !important;
}

.fs24 {
  font-size: 2.4rem !important;
}

.fs23 {
  font-size: 2.3rem !important;
}

.fs22 {
  font-size: 2.2rem !important;
}

.fs21 {
  font-size: 2.1rem !important;
}

.fs20 {
  font-size: 2rem !important;
}

.fs19 {
  font-size: 1.9rem !important;
}

.fs18 {
  font-size: 1.8rem !important;
}

.fs17 {
  font-size: 1.7rem !important;
}

.fs16 {
  font-size: 1.6rem !important;
}

.fs15 {
  font-size: 1.5rem !important;
}

.fs14 {
  font-size: 1.4rem !important;
}

.fs13 {
  font-size: 1.3rem !important;
}

.fs12 {
  font-size: 1.2rem !important;
}

.fs11 {
  font-size: 1.1rem !important;
}

.fs10 {
  font-size: 1rem !important;
}

.fs9 {
  font-size: 0.9rem !important;
}

.fs8 {
  font-size: 0.8rem !important;
}

.fs7 {
  font-size: 0.7rem !important;
}

.fs6 {
  font-size: 0.6rem !important;
}

@media screen and (max-width: 767px) {
  .spfs50 {
    font-size: 6.6666666667vw !important;
  }
  .spfs49 {
    font-size: 6.5333333333vw !important;
  }
  .spfs48 {
    font-size: 6.4vw !important;
  }
  .spfs47 {
    font-size: 6.2666666667vw !important;
  }
  .spfs46 {
    font-size: 6.1333333333vw !important;
  }
  .spfs45 {
    font-size: 6vw !important;
  }
  .spfs44 {
    font-size: 5.8666666667vw !important;
  }
  .spfs43 {
    font-size: 5.7333333333vw !important;
  }
  .spfs42 {
    font-size: 5.6vw !important;
  }
  .spfs41 {
    font-size: 5.4666666667vw !important;
  }
  .spfs40 {
    font-size: 5.3333333333vw !important;
  }
  .spfs39 {
    font-size: 5.2vw !important;
  }
  .spfs38 {
    font-size: 5.0666666667vw !important;
  }
  .spfs37 {
    font-size: 4.9333333333vw !important;
  }
  .spfs36 {
    font-size: 4.8vw !important;
  }
  .spfs35 {
    font-size: 4.6666666667vw !important;
  }
  .spfs34 {
    font-size: 4.5333333333vw !important;
  }
  .spfs33 {
    font-size: 4.4vw !important;
  }
  .spfs32 {
    font-size: 4.2666666667vw !important;
  }
  .spfs31 {
    font-size: 4.1333333333vw !important;
  }
  .spfs30 {
    font-size: 4vw !important;
  }
  .spfs29 {
    font-size: 3.8666666667vw !important;
  }
  .spfs28 {
    font-size: 3.7333333333vw !important;
  }
  .spfs27 {
    font-size: 3.6vw !important;
  }
  .spfs26 {
    font-size: 3.4666666667vw !important;
  }
  .spfs25 {
    font-size: 3.3333333333vw !important;
  }
  .spfs24 {
    font-size: 3.2vw !important;
  }
  .spfs23 {
    font-size: 3.0666666667vw !important;
  }
  .spfs22 {
    font-size: 2.9333333333vw !important;
  }
  .spfs21 {
    font-size: 2.8vw !important;
  }
  .spfs20 {
    font-size: 2.6666666667vw !important;
  }
  .spfs19 {
    font-size: 2.5333333333vw !important;
  }
  .spfs18 {
    font-size: 2.4vw !important;
  }
  .spfs17 {
    font-size: 2.2666666667vw !important;
  }
  .spfs16 {
    font-size: 2.1333333333vw !important;
  }
  .spfs15 {
    font-size: 2vw !important;
  }
  .spfs14 {
    font-size: 1.8666666667vw !important;
  }
  .spfs13 {
    font-size: 1.7333333333vw !important;
  }
  .spfs12 {
    font-size: 1.6vw !important;
  }
  .spfs11 {
    font-size: 1.4666666667vw !important;
  }
  .spfs10 {
    font-size: 1.3333333333vw !important;
  }
  .spfs9 {
    font-size: 1.2vw !important;
  }
  .spfs8 {
    font-size: 1.0666666667vw !important;
  }
  .spfs7 {
    font-size: 0.9333333333vw !important;
  }
  .spfs6 {
    font-size: 0.8vw !important;
  }
}
/* clearfix
---------------------------------------------------------------------------- */
.clearfix {
  zoom: 1;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

/* テキスト
---------------------------------------------------------------------------- */
.tal {
  text-align: left !important;
}

.tac {
  text-align: center !important;
}

.tar {
  text-align: right !important;
}

.fwb {
  font-weight: bold !important;
}

@media screen and (max-width: 767px) {
  .sptal {
    text-align: left !important;
  }
  .sptac {
    text-align: center !important;
  }
  .sptar {
    text-align: right !important;
  }
  .spfwb {
    font-weight: bold !important;
  }
}
/* マージン
---------------------------------------------------------------------------- */
.mt100 {
  margin-top: 10rem !important;
}

.mb100 {
  margin-bottom: 10rem !important;
}

.ml100 {
  margin-left: 10rem !important;
}

.mr100 {
  margin-right: 10rem !important;
}

.mt95 {
  margin-top: 9.5rem !important;
}

.mb95 {
  margin-bottom: 9.5rem !important;
}

.ml95 {
  margin-left: 9.5rem !important;
}

.mr95 {
  margin-right: 9.5rem !important;
}

.mt90 {
  margin-top: 9rem !important;
}

.mb90 {
  margin-bottom: 9rem !important;
}

.ml90 {
  margin-left: 9rem !important;
}

.mr90 {
  margin-right: 9rem !important;
}

.mt85 {
  margin-top: 8.5rem !important;
}

.mb85 {
  margin-bottom: 8.5rem !important;
}

.ml85 {
  margin-left: 8.5rem !important;
}

.mr85 {
  margin-right: 8.5rem !important;
}

.mt80 {
  margin-top: 8rem !important;
}

.mb80 {
  margin-bottom: 8rem !important;
}

.ml80 {
  margin-left: 8rem !important;
}

.mr80 {
  margin-right: 8rem !important;
}

.mt75 {
  margin-top: 7.5rem !important;
}

.mb75 {
  margin-bottom: 7.5rem !important;
}

.ml75 {
  margin-left: 7.5rem !important;
}

.mr75 {
  margin-right: 7.5rem !important;
}

.mt70 {
  margin-top: 7rem !important;
}

.mb70 {
  margin-bottom: 7rem !important;
}

.ml70 {
  margin-left: 7rem !important;
}

.mr70 {
  margin-right: 7rem !important;
}

.mt65 {
  margin-top: 6.5rem !important;
}

.mb65 {
  margin-bottom: 6.5rem !important;
}

.ml65 {
  margin-left: 6.5rem !important;
}

.mr65 {
  margin-right: 6.5rem !important;
}

.mt60 {
  margin-top: 6rem !important;
}

.mb60 {
  margin-bottom: 6rem !important;
}

.ml60 {
  margin-left: 6rem !important;
}

.mr60 {
  margin-right: 6rem !important;
}

.mt55 {
  margin-top: 5.5rem !important;
}

.mb55 {
  margin-bottom: 5.5rem !important;
}

.ml55 {
  margin-left: 5.5rem !important;
}

.mr55 {
  margin-right: 5.5rem !important;
}

.mt50 {
  margin-top: 5rem !important;
}

.mb50 {
  margin-bottom: 5rem !important;
}

.ml50 {
  margin-left: 5rem !important;
}

.mr50 {
  margin-right: 5rem !important;
}

.mt45 {
  margin-top: 4.5rem !important;
}

.mb45 {
  margin-bottom: 4.5rem !important;
}

.ml45 {
  margin-left: 4.5rem !important;
}

.mr45 {
  margin-right: 4.5rem !important;
}

.mt40 {
  margin-top: 4rem !important;
}

.mb40 {
  margin-bottom: 4rem !important;
}

.ml40 {
  margin-left: 4rem !important;
}

.mr40 {
  margin-right: 4rem !important;
}

.mt35 {
  margin-top: 3.5rem !important;
}

.mb35 {
  margin-bottom: 3.5rem !important;
}

.ml35 {
  margin-left: 3.5rem !important;
}

.mr35 {
  margin-right: 3.5rem !important;
}

.mt30 {
  margin-top: 3rem !important;
}

.mb30 {
  margin-bottom: 3rem !important;
}

.ml30 {
  margin-left: 3rem !important;
}

.mr30 {
  margin-right: 3rem !important;
}

.mt25 {
  margin-top: 2.5rem !important;
}

.mb25 {
  margin-bottom: 2.5rem !important;
}

.ml25 {
  margin-left: 2.5rem !important;
}

.mr25 {
  margin-right: 2.5rem !important;
}

.mt20 {
  margin-top: 2rem !important;
}

.mb20 {
  margin-bottom: 2rem !important;
}

.ml20 {
  margin-left: 2rem !important;
}

.mr20 {
  margin-right: 2rem !important;
}

.mt15 {
  margin-top: 1.5rem !important;
}

.mb15 {
  margin-bottom: 1.5rem !important;
}

.ml15 {
  margin-left: 1.5rem !important;
}

.mr15 {
  margin-right: 1.5rem !important;
}

.mt10 {
  margin-top: 1rem !important;
}

.mb10 {
  margin-bottom: 1rem !important;
}

.ml10 {
  margin-left: 1rem !important;
}

.mr10 {
  margin-right: 1rem !important;
}

.mt5 {
  margin-top: 0.5rem !important;
}

.mb5 {
  margin-bottom: 0.5rem !important;
}

.ml5 {
  margin-left: 0.5rem !important;
}

.mr5 {
  margin-right: 0.5rem !important;
}

.mt0 {
  margin-top: 0rem !important;
}

.mb0 {
  margin-bottom: 0rem !important;
}

.ml0 {
  margin-left: 0rem !important;
}

.mr0 {
  margin-right: 0rem !important;
}

@media screen and (max-width: 767px) {
  .spmt100 {
    margin-top: 13.3333333333vw !important;
  }
  .spmb100 {
    margin-bottom: 13.3333333333vw !important;
  }
  .spml100 {
    margin-left: 13.3333333333vw !important;
  }
  .spmr100 {
    margin-right: 13.3333333333vw !important;
  }
  .spmt95 {
    margin-top: 12.6666666667vw !important;
  }
  .spmb95 {
    margin-bottom: 12.6666666667vw !important;
  }
  .spml95 {
    margin-left: 12.6666666667vw !important;
  }
  .spmr95 {
    margin-right: 12.6666666667vw !important;
  }
  .spmt90 {
    margin-top: 12vw !important;
  }
  .spmb90 {
    margin-bottom: 12vw !important;
  }
  .spml90 {
    margin-left: 12vw !important;
  }
  .spmr90 {
    margin-right: 12vw !important;
  }
  .spmt85 {
    margin-top: 11.3333333333vw !important;
  }
  .spmb85 {
    margin-bottom: 11.3333333333vw !important;
  }
  .spml85 {
    margin-left: 11.3333333333vw !important;
  }
  .spmr85 {
    margin-right: 11.3333333333vw !important;
  }
  .spmt80 {
    margin-top: 10.6666666667vw !important;
  }
  .spmb80 {
    margin-bottom: 10.6666666667vw !important;
  }
  .spml80 {
    margin-left: 10.6666666667vw !important;
  }
  .spmr80 {
    margin-right: 10.6666666667vw !important;
  }
  .spmt75 {
    margin-top: 10vw !important;
  }
  .spmb75 {
    margin-bottom: 10vw !important;
  }
  .spml75 {
    margin-left: 10vw !important;
  }
  .spmr75 {
    margin-right: 10vw !important;
  }
  .spmt70 {
    margin-top: 9.3333333333vw !important;
  }
  .spmb70 {
    margin-bottom: 9.3333333333vw !important;
  }
  .spml70 {
    margin-left: 9.3333333333vw !important;
  }
  .spmr70 {
    margin-right: 9.3333333333vw !important;
  }
  .spmt65 {
    margin-top: 8.6666666667vw !important;
  }
  .spmb65 {
    margin-bottom: 8.6666666667vw !important;
  }
  .spml65 {
    margin-left: 8.6666666667vw !important;
  }
  .spmr65 {
    margin-right: 8.6666666667vw !important;
  }
  .spmt60 {
    margin-top: 8vw !important;
  }
  .spmb60 {
    margin-bottom: 8vw !important;
  }
  .spml60 {
    margin-left: 8vw !important;
  }
  .spmr60 {
    margin-right: 8vw !important;
  }
  .spmt55 {
    margin-top: 7.3333333333vw !important;
  }
  .spmb55 {
    margin-bottom: 7.3333333333vw !important;
  }
  .spml55 {
    margin-left: 7.3333333333vw !important;
  }
  .spmr55 {
    margin-right: 7.3333333333vw !important;
  }
  .spmt50 {
    margin-top: 6.6666666667vw !important;
  }
  .spmb50 {
    margin-bottom: 6.6666666667vw !important;
  }
  .spml50 {
    margin-left: 6.6666666667vw !important;
  }
  .spmr50 {
    margin-right: 6.6666666667vw !important;
  }
  .spmt45 {
    margin-top: 6vw !important;
  }
  .spmb45 {
    margin-bottom: 6vw !important;
  }
  .spml45 {
    margin-left: 6vw !important;
  }
  .spmr45 {
    margin-right: 6vw !important;
  }
  .spmt40 {
    margin-top: 5.3333333333vw !important;
  }
  .spmb40 {
    margin-bottom: 5.3333333333vw !important;
  }
  .spml40 {
    margin-left: 5.3333333333vw !important;
  }
  .spmr40 {
    margin-right: 5.3333333333vw !important;
  }
  .spmt35 {
    margin-top: 4.6666666667vw !important;
  }
  .spmb35 {
    margin-bottom: 4.6666666667vw !important;
  }
  .spml35 {
    margin-left: 4.6666666667vw !important;
  }
  .spmr35 {
    margin-right: 4.6666666667vw !important;
  }
  .spmt30 {
    margin-top: 4vw !important;
  }
  .spmb30 {
    margin-bottom: 4vw !important;
  }
  .spml30 {
    margin-left: 4vw !important;
  }
  .spmr30 {
    margin-right: 4vw !important;
  }
  .spmt25 {
    margin-top: 3.3333333333vw !important;
  }
  .spmb25 {
    margin-bottom: 3.3333333333vw !important;
  }
  .spml25 {
    margin-left: 3.3333333333vw !important;
  }
  .spmr25 {
    margin-right: 3.3333333333vw !important;
  }
  .spmt20 {
    margin-top: 2.6666666667vw !important;
  }
  .spmb20 {
    margin-bottom: 2.6666666667vw !important;
  }
  .spml20 {
    margin-left: 2.6666666667vw !important;
  }
  .spmr20 {
    margin-right: 2.6666666667vw !important;
  }
  .spmt15 {
    margin-top: 2vw !important;
  }
  .spmb15 {
    margin-bottom: 2vw !important;
  }
  .spml15 {
    margin-left: 2vw !important;
  }
  .spmr15 {
    margin-right: 2vw !important;
  }
  .spmt10 {
    margin-top: 1.3333333333vw !important;
  }
  .spmb10 {
    margin-bottom: 1.3333333333vw !important;
  }
  .spml10 {
    margin-left: 1.3333333333vw !important;
  }
  .spmr10 {
    margin-right: 1.3333333333vw !important;
  }
  .spmt5 {
    margin-top: 0.6666666667vw !important;
  }
  .spmb5 {
    margin-bottom: 0.6666666667vw !important;
  }
  .spml5 {
    margin-left: 0.6666666667vw !important;
  }
  .spmr5 {
    margin-right: 0.6666666667vw !important;
  }
  .spmt0 {
    margin-top: 0vw !important;
  }
  .spmb0 {
    margin-bottom: 0vw !important;
  }
  .spml0 {
    margin-left: 0vw !important;
  }
  .spmr0 {
    margin-right: 0vw !important;
  }
}
/* パディング
---------------------------------------------------------------------------- */
.pt100 {
  padding-top: 10rem !important;
}

.pb100 {
  padding-bottom: 10rem !important;
}

.pl100 {
  padding-left: 10rem !important;
}

.pr100 {
  padding-right: 10rem !important;
}

.pt95 {
  padding-top: 9.5rem !important;
}

.pb95 {
  padding-bottom: 9.5rem !important;
}

.pl95 {
  padding-left: 9.5rem !important;
}

.pr95 {
  padding-right: 9.5rem !important;
}

.pt90 {
  padding-top: 9rem !important;
}

.pb90 {
  padding-bottom: 9rem !important;
}

.pl90 {
  padding-left: 9rem !important;
}

.pr90 {
  padding-right: 9rem !important;
}

.pt85 {
  padding-top: 8.5rem !important;
}

.pb85 {
  padding-bottom: 8.5rem !important;
}

.pl85 {
  padding-left: 8.5rem !important;
}

.pr85 {
  padding-right: 8.5rem !important;
}

.pt80 {
  padding-top: 8rem !important;
}

.pb80 {
  padding-bottom: 8rem !important;
}

.pl80 {
  padding-left: 8rem !important;
}

.pr80 {
  padding-right: 8rem !important;
}

.pt75 {
  padding-top: 7.5rem !important;
}

.pb75 {
  padding-bottom: 7.5rem !important;
}

.pl75 {
  padding-left: 7.5rem !important;
}

.pr75 {
  padding-right: 7.5rem !important;
}

.pt70 {
  padding-top: 7rem !important;
}

.pb70 {
  padding-bottom: 7rem !important;
}

.pl70 {
  padding-left: 7rem !important;
}

.pr70 {
  padding-right: 7rem !important;
}

.pt65 {
  padding-top: 6.5rem !important;
}

.pb65 {
  padding-bottom: 6.5rem !important;
}

.pl65 {
  padding-left: 6.5rem !important;
}

.pr65 {
  padding-right: 6.5rem !important;
}

.pt60 {
  padding-top: 6rem !important;
}

.pb60 {
  padding-bottom: 6rem !important;
}

.pl60 {
  padding-left: 6rem !important;
}

.pr60 {
  padding-right: 6rem !important;
}

.pt55 {
  padding-top: 5.5rem !important;
}

.pb55 {
  padding-bottom: 5.5rem !important;
}

.pl55 {
  padding-left: 5.5rem !important;
}

.pr55 {
  padding-right: 5.5rem !important;
}

.pt50 {
  padding-top: 5rem !important;
}

.pb50 {
  padding-bottom: 5rem !important;
}

.pl50 {
  padding-left: 5rem !important;
}

.pr50 {
  padding-right: 5rem !important;
}

.pt45 {
  padding-top: 4.5rem !important;
}

.pb45 {
  padding-bottom: 4.5rem !important;
}

.pl45 {
  padding-left: 4.5rem !important;
}

.pr45 {
  padding-right: 4.5rem !important;
}

.pt40 {
  padding-top: 4rem !important;
}

.pb40 {
  padding-bottom: 4rem !important;
}

.pl40 {
  padding-left: 4rem !important;
}

.pr40 {
  padding-right: 4rem !important;
}

.pt35 {
  padding-top: 3.5rem !important;
}

.pb35 {
  padding-bottom: 3.5rem !important;
}

.pl35 {
  padding-left: 3.5rem !important;
}

.pr35 {
  padding-right: 3.5rem !important;
}

.pt30 {
  padding-top: 3rem !important;
}

.pb30 {
  padding-bottom: 3rem !important;
}

.pl30 {
  padding-left: 3rem !important;
}

.pr30 {
  padding-right: 3rem !important;
}

.pt25 {
  padding-top: 2.5rem !important;
}

.pb25 {
  padding-bottom: 2.5rem !important;
}

.pl25 {
  padding-left: 2.5rem !important;
}

.pr25 {
  padding-right: 2.5rem !important;
}

.pt20 {
  padding-top: 2rem !important;
}

.pb20 {
  padding-bottom: 2rem !important;
}

.pl20 {
  padding-left: 2rem !important;
}

.pr20 {
  padding-right: 2rem !important;
}

.pt15 {
  padding-top: 1.5rem !important;
}

.pb15 {
  padding-bottom: 1.5rem !important;
}

.pl15 {
  padding-left: 1.5rem !important;
}

.pr15 {
  padding-right: 1.5rem !important;
}

.pt10 {
  padding-top: 1rem !important;
}

.pb10 {
  padding-bottom: 1rem !important;
}

.pl10 {
  padding-left: 1rem !important;
}

.pr10 {
  padding-right: 1rem !important;
}

.pt5 {
  padding-top: 0.5rem !important;
}

.pb5 {
  padding-bottom: 0.5rem !important;
}

.pl5 {
  padding-left: 0.5rem !important;
}

.pr5 {
  padding-right: 0.5rem !important;
}

.pt0 {
  padding-top: 0rem !important;
}

.pb0 {
  padding-bottom: 0rem !important;
}

.pl0 {
  padding-left: 0rem !important;
}

.pr0 {
  padding-right: 0rem !important;
}

@media screen and (max-width: 767px) {
  .sppt100 {
    padding-top: 13.3333333333vw !important;
  }
  .sppb100 {
    padding-bottom: 13.3333333333vw !important;
  }
  .sppl100 {
    padding-left: 13.3333333333vw !important;
  }
  .sppr100 {
    padding-right: 13.3333333333vw !important;
  }
  .sppt95 {
    padding-top: 12.6666666667vw !important;
  }
  .sppb95 {
    padding-bottom: 12.6666666667vw !important;
  }
  .sppl95 {
    padding-left: 12.6666666667vw !important;
  }
  .sppr95 {
    padding-right: 12.6666666667vw !important;
  }
  .sppt90 {
    padding-top: 12vw !important;
  }
  .sppb90 {
    padding-bottom: 12vw !important;
  }
  .sppl90 {
    padding-left: 12vw !important;
  }
  .sppr90 {
    padding-right: 12vw !important;
  }
  .sppt85 {
    padding-top: 11.3333333333vw !important;
  }
  .sppb85 {
    padding-bottom: 11.3333333333vw !important;
  }
  .sppl85 {
    padding-left: 11.3333333333vw !important;
  }
  .sppr85 {
    padding-right: 11.3333333333vw !important;
  }
  .sppt80 {
    padding-top: 10.6666666667vw !important;
  }
  .sppb80 {
    padding-bottom: 10.6666666667vw !important;
  }
  .sppl80 {
    padding-left: 10.6666666667vw !important;
  }
  .sppr80 {
    padding-right: 10.6666666667vw !important;
  }
  .sppt75 {
    padding-top: 10vw !important;
  }
  .sppb75 {
    padding-bottom: 10vw !important;
  }
  .sppl75 {
    padding-left: 10vw !important;
  }
  .sppr75 {
    padding-right: 10vw !important;
  }
  .sppt70 {
    padding-top: 9.3333333333vw !important;
  }
  .sppb70 {
    padding-bottom: 9.3333333333vw !important;
  }
  .sppl70 {
    padding-left: 9.3333333333vw !important;
  }
  .sppr70 {
    padding-right: 9.3333333333vw !important;
  }
  .sppt65 {
    padding-top: 8.6666666667vw !important;
  }
  .sppb65 {
    padding-bottom: 8.6666666667vw !important;
  }
  .sppl65 {
    padding-left: 8.6666666667vw !important;
  }
  .sppr65 {
    padding-right: 8.6666666667vw !important;
  }
  .sppt60 {
    padding-top: 8vw !important;
  }
  .sppb60 {
    padding-bottom: 8vw !important;
  }
  .sppl60 {
    padding-left: 8vw !important;
  }
  .sppr60 {
    padding-right: 8vw !important;
  }
  .sppt55 {
    padding-top: 7.3333333333vw !important;
  }
  .sppb55 {
    padding-bottom: 7.3333333333vw !important;
  }
  .sppl55 {
    padding-left: 7.3333333333vw !important;
  }
  .sppr55 {
    padding-right: 7.3333333333vw !important;
  }
  .sppt50 {
    padding-top: 6.6666666667vw !important;
  }
  .sppb50 {
    padding-bottom: 6.6666666667vw !important;
  }
  .sppl50 {
    padding-left: 6.6666666667vw !important;
  }
  .sppr50 {
    padding-right: 6.6666666667vw !important;
  }
  .sppt45 {
    padding-top: 6vw !important;
  }
  .sppb45 {
    padding-bottom: 6vw !important;
  }
  .sppl45 {
    padding-left: 6vw !important;
  }
  .sppr45 {
    padding-right: 6vw !important;
  }
  .sppt40 {
    padding-top: 5.3333333333vw !important;
  }
  .sppb40 {
    padding-bottom: 5.3333333333vw !important;
  }
  .sppl40 {
    padding-left: 5.3333333333vw !important;
  }
  .sppr40 {
    padding-right: 5.3333333333vw !important;
  }
  .sppt35 {
    padding-top: 4.6666666667vw !important;
  }
  .sppb35 {
    padding-bottom: 4.6666666667vw !important;
  }
  .sppl35 {
    padding-left: 4.6666666667vw !important;
  }
  .sppr35 {
    padding-right: 4.6666666667vw !important;
  }
  .sppt30 {
    padding-top: 4vw !important;
  }
  .sppb30 {
    padding-bottom: 4vw !important;
  }
  .sppl30 {
    padding-left: 4vw !important;
  }
  .sppr30 {
    padding-right: 4vw !important;
  }
  .sppt25 {
    padding-top: 3.3333333333vw !important;
  }
  .sppb25 {
    padding-bottom: 3.3333333333vw !important;
  }
  .sppl25 {
    padding-left: 3.3333333333vw !important;
  }
  .sppr25 {
    padding-right: 3.3333333333vw !important;
  }
  .sppt20 {
    padding-top: 2.6666666667vw !important;
  }
  .sppb20 {
    padding-bottom: 2.6666666667vw !important;
  }
  .sppl20 {
    padding-left: 2.6666666667vw !important;
  }
  .sppr20 {
    padding-right: 2.6666666667vw !important;
  }
  .sppt15 {
    padding-top: 2vw !important;
  }
  .sppb15 {
    padding-bottom: 2vw !important;
  }
  .sppl15 {
    padding-left: 2vw !important;
  }
  .sppr15 {
    padding-right: 2vw !important;
  }
  .sppt10 {
    padding-top: 1.3333333333vw !important;
  }
  .sppb10 {
    padding-bottom: 1.3333333333vw !important;
  }
  .sppl10 {
    padding-left: 1.3333333333vw !important;
  }
  .sppr10 {
    padding-right: 1.3333333333vw !important;
  }
  .sppt5 {
    padding-top: 0.6666666667vw !important;
  }
  .sppb5 {
    padding-bottom: 0.6666666667vw !important;
  }
  .sppl5 {
    padding-left: 0.6666666667vw !important;
  }
  .sppr5 {
    padding-right: 0.6666666667vw !important;
  }
  .sppt0 {
    padding-top: 0vw !important;
  }
  .sppb0 {
    padding-bottom: 0vw !important;
  }
  .sppl0 {
    padding-left: 0vw !important;
  }
  .sppr0 {
    padding-right: 0vw !important;
  }
}
/* print
---------------------------------------------------------------------------- */
/* 印刷設定
---------------------------------------------------------------------------- */
@media print {
  * html body {
    zoom: 70%;
  }
}
