@charset "UTF-8";
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;
}

/* タイトル系
---------------------------------------------------------------------------- */
/*------------- .m-ttl01 -------------*/
.m-ttl01 {
  width: fit-content;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.m-ttl01-en {
  font-family: "Orbitron", sans-serif;
  font-size: 10rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.m-ttl01-en._white {
  color: #fff;
}
.m-ttl01-en._blue {
  color: #2F61E1;
}
.m-ttl01-en._wipeColor {
  position: relative;
}
.m-ttl01-en._wipeColor ._wipe-black {
  -webkit-text-fill-color: #001336;
}
.m-ttl01-en._wipeColor ._wipe-gradient {
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(135deg, #001336 0, #0844E5 60%);
  background-repeat: no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@supports (-moz-appearance: none) or (-webkit-hyphens: none) {
  .m-ttl01-en {
    letter-spacing: normal;
  }
}

.m-ttl01-ja {
  width: fit-content;
  font-size: 2.2rem;
  line-height: 1.1363636364;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #001336;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: flex-start;
  column-gap: 0.8rem;
}
.m-ttl01-ja._white {
  color: #fff;
}
.m-ttl01-ja._white::before {
  background-image: initial;
  background-color: #fff;
}
.m-ttl01-ja._blue {
  color: #2F61E1;
}

.m-ttl01-ja::before {
  content: "";
  width: 1.8rem;
  aspect-ratio: 18/7;
  border-radius: 50%;
  background-image: linear-gradient(90deg, #001330 0, #0843DC 100%);
  background-repeat: no-repeat;
  transform: rotate(-24deg);
  margin-top: 0.5rem;
}

@media screen and (max-width: 767px) {
  .m-ttl01 {
    gap: 2.1333333333vw;
  }
  .m-ttl01-en {
    font-size: 12.2666666667vw;
  }
  .m-ttl01-ja {
    font-size: 4.8vw;
    line-height: 1.3888888889;
    column-gap: 1.3333333333vw;
  }
  .m-ttl01-ja::before {
    width: 4.2666666667vw;
    margin-top: 1.3333333333vw;
  }
}
/*------------- .m-ttl02 -------------*/
.m-ttl02 {
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.m-ttl02-en {
  width: fit-content;
  font-family: "Orbitron", sans-serif;
  font-size: 1.8rem;
  line-height: 1.1666666667;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: #2F61E1;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: flex-start;
  column-gap: 0.65rem;
}
.m-ttl02-en._white {
  color: #fff;
}
.m-ttl02-en._white::before {
  background-image: initial;
  background-color: #fff;
}

.m-ttl02-en::before {
  content: "";
  width: 1.8rem;
  aspect-ratio: 18/7;
  border-radius: 50%;
  background-image: linear-gradient(90deg, #001330 0, #0843DC 100%);
  background-repeat: no-repeat;
  transform: rotate(-24deg);
  margin-top: 0.2rem;
}

.m-ttl02-ja {
  font-size: 4.2rem;
  line-height: 1.2380952381;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #001330;
}
.m-ttl02-ja._white {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .m-ttl02 {
    gap: 2.6666666667vw;
  }
  .m-ttl02-en {
    font-size: 4.2666666667vw;
    column-gap: 1.3333333333vw;
  }
  .m-ttl02-en::before {
    width: 4.2666666667vw;
    margin-top: 0.5333333333vw;
  }
  .m-ttl02-ja {
    font-size: 8vw;
  }
}
/* ボタン系
---------------------------------------------------------------------------- */
/*------------- .m-btn01 -------------*/
.m-btn01 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 0.5208333333vw;
  width: 100%;
  padding-bottom: 0.3645833333vw;
  position: relative;
}
@media (any-hover: hover) {
  .m-btn01:hover::after {
    background-position: left bottom;
  }
  .m-btn01:hover .m-btn01-arrow ._arrow-before {
    transform: translate(100%, -100%);
  }
  .m-btn01:hover .m-btn01-arrow ._arrow-after {
    transform: translate(0, 0);
  }
}

.m-btn01::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(90deg, #2F61E1 0, #2F61E1 50%, #CCCCCC 50%, #CCCCCC 100%);
  background-size: 200% 1px;
  background-position: right bottom;
  transition: background-position 0.3s ease 0s;
}

.m-btn01-txt {
  font-size: 1.8rem;
  line-height: 1.1111111111;
  letter-spacing: 0.02em;
  font-weight: 700;
}

@media screen and (max-width: 1550px) {
  .m-btn01-txt {
    font-size: 1.6rem;
    line-height: 1.25;
    letter-spacing: 0.02em;
    font-weight: 700;
  }
}
.m-btn01-arrow {
  display: block;
  position: relative;
  width: 0.78125vw;
  aspect-ratio: 1;
  overflow: hidden;
}

.m-btn01-arrow span {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(./../../images/common/icn_arrow_diagonal_bl.svg);
  transition: transform 0.3s ease-in-out;
}

.m-btn01-arrow ._arrow-before {
  transform: translate(0, 0);
}

.m-btn01-arrow ._arrow-after {
  transform: translate(-100%, 100%);
}

@media screen and (max-width: 767px) {
  .m-btn01 {
    gap: 0 2.6666666667vw;
    padding-bottom: 1.8666666667vw;
  }
  .m-btn01-txt {
    font-size: 4.2666666667vw;
    line-height: 1.125;
  }
  .m-btn01-arrow {
    width: 3.4666666667vw;
  }
}
/*------------- .m-btn02 -------------*/
.m-btn02 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 1rem;
  width: 100%;
  height: 6rem;
  padding-inline: 2.9rem 2.2rem;
  border-radius: 10vmax;
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease 0s, background-color 0.3s ease 0s, border 0.3s ease 0s;
}
.m-btn02._white {
  color: #01163B;
  background-color: #fff;
  border: 1px solid #fff;
}
.m-btn02._white::after {
  content: none;
}
@media (any-hover: hover) {
  .m-btn02._white:hover {
    color: #fff;
    background-color: transparent;
  }
}
.m-btn02._pcvw {
  gap: 0 0.5208333333vw;
  height: 3.125vw;
  padding-inline: 1.5104166667vw 1.1458333333vw;
}
@media (any-hover: hover) {
  .m-btn02:hover {
    color: #001330;
    border: 1px solid currentColor;
  }
  .m-btn02:hover::after {
    opacity: 0;
  }
  .m-btn02:hover .m-btn02-arrow ._arrow-before {
    transform: translate(100%, -100%);
  }
  .m-btn02:hover .m-btn02-arrow ._arrow-after {
    transform: translate(0, 0);
  }
}

.m-btn02::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(-135deg, #0843DC 0, #001330 100%);
  background-repeat: no-repeat;
  opacity: 1;
  transition: opacity 0.3s ease 0s;
}

.m-btn02-txt {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 700;
}
.m-btn02-txt._pcvw {
  font-size: 1.0416666667vw;
}

.m-btn02-arrow {
  display: block;
  position: relative;
  width: 2rem;
  aspect-ratio: 1;
  overflow: hidden;
}
.m-btn02-arrow._pcvw {
  width: 1.0416666667vw;
}

.m-btn02-arrow span {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(./../../images/common/icn_arrow_diagonal_wh.svg);
  background-color: currentColor;
  transition: transform 0.3s ease-in-out;
}

.m-btn02-arrow ._arrow-before {
  transform: translate(0, 0);
}

.m-btn02-arrow ._arrow-after {
  transform: translate(-100%, 100%);
}

@media screen and (max-width: 767px) {
  .m-btn02,
  .m-btn02._pcvw {
    gap: 0 2.6666666667vw;
    height: 13.3333333333vw;
    padding-inline: 5.3333333333vw 4.8vw;
  }
  .m-btn02-txt,
  .m-btn02-txt._pcvw {
    font-size: 4.2666666667vw;
  }
  .m-btn02-arrow,
  .m-btn02-arrow._pcvw {
    width: 4.8vw;
  }
}
/* アニメーション
---------------------------------------------------------------------------- */
/*------------- .m-txt-animation -------------*/
@media (any-hover: hover) {
  .m-txt-animation-parent:hover .m-txt-animation-child {
    background-size: 100% 1px;
  }
}

.m-txt-animation-child {
  display: inline;
  background: linear-gradient(to right, currentColor 0, currentColor 1px) no-repeat;
  transition: background-size 0.3s ease-out;
  background-position: 0 calc(100% - 1px);
  background-size: 0% 1px;
  padding-bottom: 1px;
}

/*------------- .m-scroll-bg -------------*/
.m-scroll-bg {
  padding-bottom: 7rem;
}

.m-scroll-bg-slider {
  overflow: hidden;
}

.m-scroll-bg-slider-items {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: slider-scroll 60s linear infinite;
}

.m-scroll-bg-slider-item {
  flex-shrink: 0;
  height: 8.3333333333vw;
  margin-right: 9.8958333333vw;
}
.m-scroll-bg-slider-item img {
  width: auto;
  max-width: none;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0.2;
}

@keyframes slider-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 767px) {
  .m-scroll-bg {
    padding-bottom: 10.6666666667vw;
  }
  .m-scroll-bg-slider-item {
    height: 21.3333333333vw;
    margin-right: 24vw;
  }
}
/* セクション系
---------------------------------------------------------------------------- */
/*------------- .m-sec-contact -------------*/
.m-sec-contact {
  position: relative;
  z-index: 1;
  margin-bottom: -7.8125vw;
}

.m-sec-contact-container {
  padding-block: 4.0104166667vw 2.8645833333vw;
  padding-inline: 8.3333333333vw 11.4583333333vw;
  width: 100%;
  max-width: 85.4166666667vw;
  margin-inline: auto;
  position: relative;
}

.m-sec-contact-container::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(./../../images/common/bg_sec_contact_pc.png);
}

.m-sec-contact-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 0 2.6041666667vw;
}

.m-sec-contact-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.34375vw;
}

.m-sec-contact-box-txt {
  font-size: 1.6rem;
  line-height: 1.8125;
  letter-spacing: 0.08em;
  font-weight: 400;
  color: #fff;
}

.m-sec-contact-wrap {
  width: 24.4791666667vw;
  display: flex;
  flex-direction: column;
  gap: 1.0416666667vw;
}

.m-sec-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 0.8854166667vw;
  width: 100%;
  height: 4.1666666667vw;
  padding-left: 1.5625vw;
  border-radius: 0.2604166667vw;
  background-color: #fff;
  transition: filter 0.3s ease;
}
@media (any-hover: hover) {
  .m-sec-contact-btn:hover {
    filter: brightness(1.3);
  }
  .m-sec-contact-btn:hover .m-sec-contact-btn-arrow ._arrow-before {
    transform: translate(100%, -100%);
  }
  .m-sec-contact-btn:hover .m-sec-contact-btn-arrow ._arrow-after {
    transform: translate(0, 0);
  }
}

.m-sec-contact-btn-txt {
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: 1.3541666667vw;
  color: #01163B;
}

.m-sec-contact-btn-arrow {
  display: block;
  position: relative;
  width: 1.3020833333vw;
  aspect-ratio: 1;
  overflow: hidden;
}

.m-sec-contact-btn-arrow span {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(./../../images/common/icn_arrow_diagonal_bk.svg);
  transition: transform 0.3s ease-in-out;
}

.m-sec-contact-btn-arrow ._arrow-before {
  transform: translate(0, 0);
}

.m-sec-contact-btn-arrow ._arrow-after {
  transform: translate(-100%, 100%);
}

.m-sec-contact-tel {
  width: 100%;
  height: 6.25vw;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0.1041666667vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2604166667vw;
  pointer-events: none;
  color: #fff;
}

.m-sec-contact-tel-num {
  font-family: "Rajdhani", sans-serif;
  font-size: 5.6rem;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-size: 2.9166666667vw;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: flex-start;
  column-gap: 1.0416666667vw;
  margin-left: 0.5208333333vw;
}

.m-sec-contact-tel-num::before {
  content: "";
  width: 0.7291666667vw;
  aspect-ratio: 14/39;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(./../../images/common/icn_tel.svg);
  transform: rotate(-30deg);
}

.m-sec-contact-tel-txt {
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: 400;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .m-sec-contact {
    margin-bottom: initial;
  }
  .m-sec-contact-container {
    padding-block: 13.3333333333vw 10.6666666667vw;
    padding-inline: 8vw;
    max-width: initial;
  }
  .m-sec-contact-container::after {
    background-image: url(./../../images/common/bg_sec_contact_sp.png);
  }
  .m-sec-contact-wrapper {
    flex-direction: column;
    gap: 7.4666666667vw;
  }
  .m-sec-contact-box {
    gap: 6.4vw;
  }
  .m-sec-contact-box-txt {
    font-size: 4vw;
    line-height: 1.8;
  }
  .m-sec-contact-wrap {
    width: 100%;
    gap: 2.6666666667vw;
  }
  .m-sec-contact-btn {
    gap: 0 3.2vw;
    height: 18.6666666667vw;
    padding-left: 4.8vw;
    border-radius: 1.3333333333vw;
  }
  .m-sec-contact-btn-txt {
    font-size: 5.3333333333vw;
  }
  .m-sec-contact-btn-arrow {
    width: 5.3333333333vw;
  }
  .m-sec-contact-tel {
    height: 22.6666666667vw;
    border-radius: 0.5333333333vw;
    gap: 0.8vw;
    pointer-events: auto;
    transition: filter 0.3s ease;
    position: relative;
  }
}
@media screen and (max-width: 767px) and (any-hover: hover) {
  .m-sec-contact-tel:hover {
    filter: brightness(1.3);
  }
}
@media screen and (max-width: 767px) {
  .m-sec-contact-tel::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 3.7333333333vw;
    transform: translateY(-50%);
    width: 5.3333333333vw;
    aspect-ratio: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(./../../images/common/icn_arrow_diagonal_wh.svg);
  }
  .m-sec-contact-tel-num {
    font-size: 9.6vw;
    column-gap: 4vw;
    margin-left: initial;
  }
  .m-sec-contact-tel-num::before {
    width: 2.4vw;
  }
  .m-sec-contact-tel-txt {
    font-size: 3.2vw;
  }
}
.m-mv {
  position: relative;
  height: 43rem;
  background-image: url("../../images/common/bg_mv.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.m-mv-text {
  color: #fff;
  font-size: 8.8rem;
  line-height: 1.1704545455;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding-top: 20rem;
  margin-bottom: 2rem;
  font-family: "Orbitron";
}

.m-mv-title {
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #fff;
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 3rem;
}
.m-mv-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  background: url("../../images/common/icn_mark_blue.svg") no-repeat center center/contain;
}

@media screen and (max-width: 767px) {
  .m-mv {
    position: relative;
    height: 70.6666666667vw;
    background-image: url("../../images/common/bg_mv_sp.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .m-mv-two {
    height: 85.3333333333vw;
  }
  .m-mv-text {
    font-size: 12.2666666667vw;
    line-height: 1.1956521739;
    letter-spacing: 0.05em;
    font-weight: 500;
    padding-top: 26.6666666667vw;
    margin-bottom: 2.6666666667vw;
  }
  .m-mv-title {
    font-size: 4.8vw;
    line-height: 1.3888888889;
    font-weight: 700;
    padding-left: 9.3333333333vw;
    margin-bottom: 8vw;
  }
  .m-mv-title::before {
    width: 4.8vw;
    height: 4.8vw;
    background: url("../../images/common/icn_mark_blue.svg") no-repeat center center/contain;
  }
}
.m-bg {
  background-color: #f5f5f5;
  padding: 8rem 0;
}

.m-bg-inner {
  background-color: #fff;
  padding: 6rem 10rem;
  border-radius: 1rem;
}

@media screen and (max-width: 767px) {
  .m-bg {
    padding: 13.3333333333vw 5.3333333333vw;
  }
  .m-bg-inner {
    padding: 5.3333333333vw 5.3333333333vw;
    border-radius: 2.6666666667vw;
  }
}
/*------------- ページネーション -------------*/
.m-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 6rem;
}

.m-pager .page-numbers {
  font-size: 2.6rem;
  line-height: 1.2307692308;
  font-weight: 700;
  color: #01163B;
  display: inline-block;
  position: relative;
  font-family: "Rajdhani";
  border: 1px solid #CCCCCC;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-pager .page-numbers.current {
  border: 1px solid #01163B;
}
.m-pager .page-numbers.dots {
  pointer-events: none;
  border: none;
}
.m-pager .page-numbers.next, .m-pager .page-numbers.prev {
  font-family: serif;
  font-weight: 700;
  border: none;
}

@media screen and (max-width: 767px) {
  .m-pager {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4vw;
    margin-top: 8vw;
  }
  .m-pager .page-numbers {
    font-size: 5.3333333333vw;
    line-height: 1.6;
    font-weight: 700;
    width: 8vw;
    height: 8vw;
  }
}
/*------------- 記事詳細 -------------*/
.m-single-title {
  font-size: 4.2rem;
  line-height: 1.4047619048;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #01163B;
  margin-bottom: 6rem;
}

@media screen and (max-width: 767px) {
  .m-single-title {
    font-size: 7.4666666667vw;
    line-height: 1.4285714286;
    letter-spacing: 0.04em;
    font-weight: 700;
    color: #01163B;
    margin-bottom: 8vw;
  }
}
/* Wisywigエディタ スタイル
---------------------------------------------------------------------------- */
.m-single-content::after {
  content: "";
  display: block;
  clear: both;
}
.m-single-content p {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 400;
}
.m-single-content a {
  color: #001336;
  text-decoration: underline;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.m-single-content a::after {
  content: "";
  display: inline-block;
  margin-left: 0.8rem;
  margin-right: 0.5rem;
  width: 1.7rem;
  height: 1.7rem;
  background-image: url(../../images/common/icn_single_link.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.m-single-content a:hover {
  text-decoration: none;
}
.m-single-content a[target=_blank]::after {
  background-image: url(../../images/common/icn_single_blank.svg);
}
.m-single-content a[href$=".pdf"]::after {
  background-image: url(../../images/common/icn_single_pdf.svg);
}
.m-single-content p {
  margin-bottom: 6rem;
}
.m-single-content p + p {
  margin-top: -3rem;
}
.m-single-content h2 {
  font-size: 3.6rem;
  line-height: 1.3888888889;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #001336;
  margin-bottom: 2.5rem;
  position: relative;
  padding-left: 5rem;
}
.m-single-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.5rem;
  width: 3.2rem;
  height: 3.2rem;
  background: url("../../images/common/icn_mark_blue.svg") no-repeat center center/contain;
}
.m-single-content h3 {
  font-size: 2.6rem;
  line-height: 1.3846153846;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #001336;
  background: url("../../images/common/icn_headline-top-left.svg") no-repeat left top, url("../../images/common/icn_headline-top-right.svg") no-repeat right top, url("../../images/common/icn_headline-bottom-left.svg") no-repeat left bottom, url("../../images/common/icn_headline-bottom-right.svg") no-repeat right bottom, #F5F5F5;
  padding: 1.6rem 2rem;
  margin-bottom: 2.5rem;
}
.m-single-content h4 {
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #001336;
  margin-bottom: 2.5rem;
}
.m-single-content h5 {
  font-size: 1.8rem;
  line-height: 1.3888888889;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #001336;
  margin-bottom: 2.5rem;
}
.m-single-content h6 {
  font-size: 1.6rem;
  line-height: 1.4375;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #001336;
  margin-bottom: 2.5rem;
}
.m-single-content table {
  width: 100%;
  margin-bottom: 6rem;
}
.m-single-content table td {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #CCCCCC;
  padding: 1.5rem 3rem;
  background-color: #F5F5F5;
}
.m-single-content table td p {
  margin: 0;
}
.m-single-content table tr:last-child td {
  border-bottom: none;
}
.m-single-content table tr td:first-child {
  background-color: #001336;
  color: #fff;
  width: 24rem;
}
.m-single-content table tr:first-child td:first-child {
  border-top-left-radius: 1rem;
}
.m-single-content table tr:first-child td:last-child {
  border-top-right-radius: 1rem;
}
.m-single-content table tr:last-child td:first-child {
  border-bottom-left-radius: 1rem;
}
.m-single-content table tr:last-child td:last-child {
  border-bottom-right-radius: 1rem;
}
.m-single-content .wp-block-image,
.m-single-content .wp-block-video {
  margin-bottom: 6rem;
}
.m-single-content ul {
  margin-bottom: 6rem;
  list-style-type: disc;
  list-style-position: inside;
}
.m-single-content ul li {
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.m-single-content ol {
  margin-bottom: 6rem;
  list-style-type: decimal;
  list-style-position: inside;
}
.m-single-content ol li {
  text-indent: -1.2em;
  padding-left: 1.2em;
}
.m-single-content strong {
  font-weight: bold;
}
.m-single-content em {
  font-style: italic;
}
.m-single-content hr {
  clear: both;
}
.m-single-content .has-small-font-size {
  font-size: 1.4rem !important;
}
.m-single-content .has-medium-font-size {
  font-size: 1.8rem !important;
}
.m-single-content .has-large-font-size {
  font-size: 2.4rem !important;
}
.m-single-content .has-x-large-font-size {
  font-size: 2.8rem !important;
}
.m-single-content #ez-toc-container {
  width: 100%;
  padding: 0;
  margin-block: 6rem;
  border-radius: 0.4rem;
  border: none;
  overflow: hidden;
  background-color: #F5F5F5;
}
.m-single-content #ez-toc-container nav {
  padding-block: 2rem 2.5rem;
  padding-inline: 4rem;
}
.m-single-content #ez-toc-container a::after {
  content: none;
}
.m-single-content #ez-toc-container a,
.m-single-content #ez-toc-container a:visited {
  color: inherit;
}
.m-single-content .ez-toc-title-container {
  padding-block: 0.8rem;
  padding-inline: 3rem;
  background-color: #383838;
  position: relative;
  cursor: pointer;
}
.m-single-content .ez-toc-title-container .ez-toc-title {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #fff;
}
.m-single-content .ez-toc-title-container::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 4rem;
  transform: translateY(-50%);
  width: 4rem;
  aspect-ratio: 40/29;
  background: url(./../../images/common/icn_index.svg) no-repeat center/contain;
}
.m-single-content #ez-toc-container ul {
  list-style: unset;
  overflow: unset;
}
.m-single-content #ez-toc-container ul.ez-toc-list-level-1 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.m-single-content #ez-toc-container ul.ez-toc-list-level-3 {
  margin-left: 2rem;
}
.m-single-content #ez-toc-container ul.ez-toc-list-level-4 {
  margin-left: 0;
}
.m-single-content #ez-toc-container nav > ul.ez-toc-list-level-1 {
  counter-reset: ez-toc-h2;
}
.m-single-content #ez-toc-container .ez-toc-heading-level-2 {
  font-size: 1.8rem;
  line-height: 1.3333333333;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #001336;
  overflow: unset;
  counter-increment: ez-toc-h2;
  text-indent: 0 !important;
  padding-left: 0 !important;
}
.m-single-content #ez-toc-container .ez-toc-heading-level-2 > a {
  font: inherit;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 5rem;
}
.m-single-content #ez-toc-container .ez-toc-heading-level-2 > a::after {
  content: "";
  position: absolute;
  left: 2.8rem;
  top: 0.5rem;
  background-color: #001336;
  width: 1px;
  height: 2rem;
}
.m-single-content #ez-toc-container .ez-toc-heading-level-2 > a::before {
  content: counter(ez-toc-h2, decimal-leading-zero);
  counter-increment: none;
  position: absolute;
  left: 0;
  top: 0;
  color: #001336;
  font-family: "Rajdhani";
  line-height: inherit;
  font-size: 2.2rem;
  line-height: 1.3636363636;
  letter-spacing: 0.04em;
  font-weight: 700;
}
.m-single-content #ez-toc-container .ez-toc-heading-level-3 {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #001336;
  overflow: unset;
  text-indent: 0 !important;
  padding-left: 0 !important;
}
.m-single-content #ez-toc-container .ez-toc-heading-level-3 a {
  color: inherit;
  font: inherit;
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: flex-start;
  column-gap: 0.8rem;
  position: relative;
  padding-left: 2.2rem;
}
.m-single-content #ez-toc-container .ez-toc-heading-level-3 a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 1.4rem;
  height: 1.4rem;
  background: url(../../images/common/icn_mark_blue.svg) no-repeat center/contain;
}
.m-single-content #ez-toc-container .ez-toc-heading-level-4 {
  color: #001336;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 400;
  text-indent: 0 !important;
  padding-left: 0 !important;
}
.m-single-content #ez-toc-container .ez-toc-heading-level-4 a {
  color: inherit;
  font: inherit;
  text-decoration: underline;
  margin-bottom: 0.5rem;
}
.m-single-content #ez-toc-container .ez-toc-heading-level-4 a::before {
  content: none;
}
@media (any-hover: hover) {
  .m-single-content #ez-toc-container .ez-toc-heading-level-4 a:hover {
    text-decoration: none;
  }
}

@media screen and (max-width: 767px) {
  .m-single-content p {
    font-size: 4.2666666667vw;
    line-height: 1.5;
    letter-spacing: 0.04em;
    font-weight: 400;
  }
  .m-single-content a::after {
    margin-left: 2.1333333333vw;
    margin-right: 1.3333333333vw;
    width: 4.5333333333vw;
    height: 4.5333333333vw;
  }
  .m-single-content p {
    margin-bottom: 8vw;
  }
  .m-single-content p + p {
    margin-top: -3rem;
  }
  .m-single-content h2 {
    font-size: 6.1333333333vw;
    line-height: 1.3913043478;
    letter-spacing: 0.04em;
    font-weight: 700;
    margin-bottom: 6.6666666667vw;
    padding-left: 7.4666666667vw;
  }
  .m-single-content h2::before {
    top: 2.4vw;
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
  .m-single-content h3 {
    font-size: 6.1333333333vw;
    line-height: 1.4347826087;
    letter-spacing: 0.04em;
    font-weight: 700;
    padding: 4.2666666667vw 5.3333333333vw;
    margin-bottom: 6.6666666667vw;
  }
  .m-single-content h4 {
    font-size: 5.3333333333vw;
    line-height: 1.4;
    letter-spacing: 0.04em;
    font-weight: 700;
    margin-bottom: 6.6666666667vw;
  }
  .m-single-content h5 {
    font-size: 4.8vw;
    line-height: 1.3888888889;
    letter-spacing: 0.04em;
    font-weight: 700;
    margin-bottom: 6.6666666667vw;
  }
  .m-single-content h6 {
    font-size: 4.2666666667vw;
    line-height: 1.4375;
    letter-spacing: 0.04em;
    font-weight: 700;
    margin-bottom: 6.6666666667vw;
  }
  .m-single-content table {
    width: 100%;
    margin-bottom: 8vw;
  }
  .m-single-content table td {
    padding: 4vw 4vw;
  }
  .m-single-content table td p {
    margin: 0;
  }
  .m-single-content table tr:last-child td {
    border-bottom: none;
  }
  .m-single-content table tr td:first-child {
    width: 35%;
  }
  .m-single-content table tr:first-child td:first-child {
    border-top-left-radius: 2.6666666667vw;
  }
  .m-single-content table tr:first-child td:last-child {
    border-top-right-radius: 2.6666666667vw;
  }
  .m-single-content table tr:last-child td:first-child {
    border-bottom-left-radius: 2.6666666667vw;
  }
  .m-single-content table tr:last-child td:last-child {
    border-bottom-right-radius: 2.6666666667vw;
  }
  .m-single-content .wp-block-image,
  .m-single-content .wp-block-video {
    margin-bottom: 8vw;
  }
  .m-single-content ul {
    margin-bottom: 8vw;
  }
  .m-single-content ol {
    margin-bottom: 8vw;
  }
  .m-single-content .has-small-font-size {
    font-size: 3.7333333333vw !important;
  }
  .m-single-content .has-medium-font-size {
    font-size: 4.2666666667vw !important;
  }
  .m-single-content .has-large-font-size {
    font-size: 4.8vw !important;
  }
  .m-single-content .has-x-large-font-size {
    font-size: 5.3333333333vw !important;
  }
  .m-single-content #ez-toc-container {
    margin-block: 8vw;
    border-radius: 1.0666666667vw 1.0666666667vw 0 0;
  }
  .m-single-content #ez-toc-container nav {
    padding-block: 5.3333333333vw 4vw;
    padding-inline: 5.3333333333vw;
  }
  .m-single-content .ez-toc-title-container {
    padding-block: 1.6vw;
    padding-inline: 5.3333333333vw;
  }
  .m-single-content .ez-toc-title-container .ez-toc-title {
    font-size: 4.2666666667vw;
  }
  .m-single-content .ez-toc-title-container::before {
    right: 5.3333333333vw;
    width: 6.4vw;
  }
  .m-single-content #ez-toc-container ul.ez-toc-list-level-1 {
    gap: 1.3333333333vw;
  }
  .m-single-content #ez-toc-container ul.ez-toc-list-level-3 {
    margin-left: 4vw;
  }
  .m-single-content #ez-toc-container .ez-toc-heading-level-2 {
    font-size: 4.2666666667vw;
    line-height: 1.5;
  }
  .m-single-content #ez-toc-container .ez-toc-heading-level-2 a {
    margin-bottom: 2.1333333333vw;
    padding-left: 8vw;
  }
  .m-single-content #ez-toc-container .ez-toc-heading-level-2 a::after {
    left: 4vw;
    top: 1.3333333333vw;
    height: 4vw;
  }
  .m-single-content #ez-toc-container .ez-toc-heading-level-2 a::before {
    font-size: 4.8vw;
    line-height: 1.3888888889;
    letter-spacing: 0.04em;
    font-weight: 700;
  }
  .m-single-content #ez-toc-container .ez-toc-heading-level-3 {
    font-size: 3.7333333333vw;
    line-height: 1.7142857143;
  }
  .m-single-content #ez-toc-container .ez-toc-heading-level-3 a {
    margin-bottom: 2.1333333333vw;
    column-gap: 2.1333333333vw;
    padding-left: 5.8666666667vw;
  }
  .m-single-content #ez-toc-container .ez-toc-heading-level-3 a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.8vw;
    width: 3.7333333333vw;
    height: 3.7333333333vw;
    background: url(../../images/common/icn_mark_blue.svg) no-repeat center/contain;
  }
  .m-single-content #ez-toc-container .ez-toc-heading-level-4 {
    font-size: 3.7333333333vw;
    line-height: 1.7142857143;
  }
  .m-single-content #ez-toc-container .ez-toc-heading-level-4 a {
    margin-bottom: 1.3333333333vw;
  }
  .m-single-content #ez-toc-container .ez-toc-heading-level-4 a::before {
    display: none;
  }
}
.m-404 {
  background-color: #F5F5F5;
}

.m-404-button {
  width: 28rem;
  margin: 3rem auto 0;
}

@media screen and (max-width: 767px) {
  .m-404 {
    background-color: #F5F5F5;
  }
  .m-404-button {
    width: 80%;
    margin: 8vw auto 0;
  }
}
/*必要なフォントのみ読み込んでください。不要なフォントおよび太さは削除でお願いします。*/
@font-face {
  font-family: "Zen Kaku Gothic New";
  src: url("../../fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Regular.woff2") format("woff2"), url("../../fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Regular.woff") format("woff");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Zen Kaku Gothic New";
  src: url("../../fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Medium.woff2") format("woff2"), url("../../fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Medium.woff") format("woff");
  font-display: swap;
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Zen Kaku Gothic New";
  src: url("../../fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Bold.woff2") format("woff2"), url("../../fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Bold.woff") format("woff");
  font-display: swap;
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Zen Kaku Gothic New";
  src: url("../../fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Black.woff2") format("woff2"), url("../../fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Black.woff") format("woff");
  font-display: swap;
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Rajdhani";
  src: url("../../fonts/Rajdhani/Rajdhani-Regular.woff2") format("woff2"), url("../../fonts/Rajdhani/Rajdhani-Regular.woff") format("woff");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Rajdhani";
  src: url("../../fonts/Rajdhani/Rajdhani-Medium.woff2") format("woff2"), url("../../fonts/Rajdhani/Rajdhani-Medium.woff") format("woff");
  font-display: swap;
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Rajdhani";
  src: url("../../fonts/Rajdhani/Rajdhani-SemiBold.woff2") format("woff2"), url("../../fonts/Rajdhani/Rajdhani-SemiBold.woff") format("woff");
  font-display: swap;
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Rajdhani";
  src: url("../../fonts/Rajdhani/Rajdhani-Bold.woff2") format("woff2"), url("../../fonts/Rajdhani/Rajdhani-Bold.woff") format("woff");
  font-display: swap;
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Orbitron";
  src: url("../../fonts/Orbitron/Orbitron-Regular.woff2") format("woff2"), url("../../fonts/Orbitron/Orbitron-Regular.woff") format("woff");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Orbitron";
  src: url("../../fonts/Orbitron/Orbitron-Medium.woff2") format("woff2"), url("../../fonts/Orbitron/Orbitron-Medium.woff") format("woff");
  font-display: swap;
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Orbitron";
  src: url("../../fonts/Orbitron/Orbitron-Bold.woff2") format("woff2"), url("../../fonts/Orbitron/Orbitron-Bold.woff") format("woff");
  font-display: swap;
  font-weight: 700;
  font-style: normal;
}
/* base
---------------------------------------------------------------------------- */
/*------------- General Elements -------------*/
html {
  font-size: 62.5%;
}

body {
  font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8125;
  letter-spacing: 0.08em;
  font-weight: 400;
  color: #2A2A2A;
}

a {
  text-decoration: none;
  color: inherit;
  outline: none;
}
a:hover, a:active, a:focus {
  text-decoration: none;
}

img {
  max-width: 100%;
}

* {
  word-break: break-all;
}

@media screen and (max-width: 1550px) and (min-width: 767.01px) {
  html {
    font-size: 0.6774193548vw;
  }
}
@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
    font-size: 4vw;
    line-height: 1.8;
  }
  body.is-fixed {
    overflow: hidden;
  }
}
/*------------- .l-pagebody -------------*/
.l-pagebody {
  width: 100%;
  overflow: hidden;
}

/*------------- .l-content -------------*/
.l-content {
  width: 100%;
  max-width: 120rem;
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .l-content {
    max-width: initial;
    padding-inline: 5.3333333333vw;
  }
  .l-content._sp30 {
    padding-inline: 8vw;
  }
}
/*------------- .l-main -------------*/
.l-main {
  position: relative;
}

.l-main::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -10;
  width: 100%;
  height: calc(100% + 25rem);
  background-color: #F5F5F5;
}

/*------------- .l-header -------------*/
.l-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(2.5rem);
  width: 100%;
  height: 8.2rem;
  padding-inline: 4rem 6rem;
  z-index: 9000;
  background-color: transparent;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.l-header._bgColor {
  background-color: rgba(7, 7, 8, 0.7);
  transform: translateY(0);
}

.l-header-logo {
  display: block;
  width: 37.2rem;
  aspect-ratio: 372/82;
}
.l-header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media screen and (max-width: 767px) {
  .l-header {
    height: 18.6666666667vw;
    transform: initial;
    padding-inline: 2.6666666667vw 5.3333333333vw;
  }
  .l-header.is-open {
    background-color: rgba(7, 7, 8, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .l-header-logo {
    width: 64vw;
  }
}
/*------------- .l-gnav -------------*/
.l-gnav-container {
  display: contents;
}

.l-gnav-wrapper {
  display: flex;
  align-items: center;
  gap: 0 4rem;
  height: 100%;
}

.l-gnav {
  display: block;
  height: inherit;
}

.l-gnav-items {
  height: inherit;
  display: flex;
  gap: 0 3rem;
}

.l-gnav-item-link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (any-hover: hover) {
  .l-gnav-item-link:hover ._ja::after {
    transform: scaleX(1);
  }
}

.l-gnav-item-link ._ja {
  display: block;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #fff;
  padding-block: 0.5rem;
  position: relative;
}

.l-gnav-item-link ._ja::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.l-gnav-button {
  width: 20rem;
}

.l-gnav-btn {
  width: 100%;
  height: 5rem;
  border-radius: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #fff;
  color: #01163B;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (any-hover: hover) {
  .l-gnav-btn:hover {
    color: #fff;
    background-color: transparent;
  }
}

.l-gnav-btn span {
  font-size: 2.1rem;
  line-height: 1.3333333333;
  letter-spacing: 0.02em;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .l-gnav-container {
    display: block;
    position: fixed;
    top: 18.6666666667vw;
    left: 101%;
    width: 100%;
    height: calc(100svh - 18.6666666667vw);
    max-height: 160vw;
    transform: translateX(0);
    transition: transform 0.3s ease 0s;
    background-color: rgba(7, 7, 8, 0.7);
    overflow-y: auto;
    z-index: 8999;
    pointer-events: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .l-gnav-container::-webkit-scrollbar {
    display: none;
  }
  .l-gnav-container.is-open {
    transform: translateX(-101%);
    pointer-events: auto;
  }
  .l-gnav-wrapper {
    height: auto;
    flex-direction: column;
    align-items: initial;
    gap: initial;
    padding-block: 9.3333333333vw;
    padding-inline: 5.3333333333vw;
  }
  .l-gnav {
    height: auto;
  }
  .l-gnav-items {
    height: auto;
    flex-wrap: wrap;
    gap: 6.9333333333vw 22.6666666667vw;
  }
  .l-gnav-item-link {
    flex-direction: column;
    align-items: initial;
    justify-content: initial;
    gap: 0.5333333333vw;
  }
  .l-gnav-item-link ._en {
    font-family: "Orbitron", sans-serif;
    font-size: 6.9333333333vw;
    line-height: 1;
    letter-spacing: 0.05em;
    font-weight: 500;
    color: #fff;
  }
  .l-gnav-item-link ._ja {
    font-size: 3.4666666667vw;
    color: #919191;
    padding-block: initial;
  }
  .l-gnav-item-link ._ja::after {
    content: none;
  }
  .l-gnav-button {
    width: 100%;
    margin-top: 8vw;
  }
  .l-gnav-btn {
    height: 13.8666666667vw;
  }
  .l-gnav-btn span {
    font-size: 5.0666666667vw;
  }
  .l-gnav-tel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2666666667vw;
    width: 100%;
    height: 18.6666666667vw;
    border-radius: 0.5333333333vw;
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-top: 2.1333333333vw;
    position: relative;
  }
  .l-gnav-tel::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 5.3333333333vw;
    transform: translateY(-50%);
    width: 4.8vw;
    aspect-ratio: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(./../../images/common/icn_arrow_diagonal_wh.svg);
  }
  .l-gnav-tel-num {
    font-family: "Rajdhani", sans-serif;
    font-size: 3.1rem;
    line-height: 1;
    letter-spacing: 0.04em;
    font-weight: 600;
    color: #fff;
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: flex-start;
    column-gap: 2.6666666667vw;
  }
  .l-gnav-tel-num::before {
    content: "";
    width: 2.2vw;
    aspect-ratio: 8.25/23.8;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(./../../images/common/icn_tel.svg);
    transform: rotate(-30deg);
  }
  .l-gnav-tel-txt {
    font-size: 3.2vw;
    line-height: 1.5;
    letter-spacing: 0.08em;
    font-weight: 400;
    color: #fff;
    text-align: center;
  }
  .m-menu-icon-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 17.3333333333vw;
    height: 100%;
    z-index: 9999;
    cursor: pointer;
  }
  .m-menu-icon,
  .m-menu-icon::before,
  .m-menu-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 6.6666666667vw;
    height: 0.5333333333vw;
    background-color: #fff;
    transition: transform 0.3s ease 0s, width 0.3s ease 0s;
  }
  .m-menu-icon {
    top: 50%;
    left: 5.3333333333vw;
    transform: translateY(-50%);
  }
  .m-menu-icon::before {
    transform: translateY(-2.1333333333vw);
  }
  .m-menu-icon::after {
    transform: translateY(2.1333333333vw);
  }
  .m-menu-icon.is-open {
    background-color: transparent;
  }
  .m-menu-icon.is-open::before {
    transform: translateY(0) rotate(-45deg);
  }
  .m-menu-icon.is-open::after {
    transform: translateY(0) rotate(45deg);
  }
  .l-menu-cover {
    display: block;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(42, 42, 42, 0.7);
    z-index: 8000;
    transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
  }
  .l-menu-cover.is-open {
    opacity: 1;
    visibility: visible;
  }
}
/*------------- .l-breadcrumbs -------------*/
.l-breadcrumbs::-webkit-scrollbar {
  display: none;
}

.l-breadcrumbs {
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.l-breadcrumbs ol {
  width: max-content;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 6.5rem;
  margin-left: auto;
  flex-wrap: nowrap;
  /* 折り返さない */
  white-space: nowrap;
}
.l-breadcrumbs ol li + li {
  position: relative;
}
.l-breadcrumbs ol li + li::before {
  background: #82848F;
  content: "";
  position: absolute;
  left: -5.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4rem;
  height: 0.1rem;
}
.l-breadcrumbs ol span {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #82848F;
}
.l-breadcrumbs ol a {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #82848F;
}

@media screen and (max-width: 767px) {
  .l-breadcrumbs::-webkit-scrollbar {
    display: none;
  }
  .l-breadcrumbs {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .l-breadcrumbs ol {
    width: max-content;
    gap: 12vw;
    margin-left: auto;
    flex-wrap: nowrap;
    /* 折り返さない */
    white-space: nowrap;
    /* iOSでスムーズスクロール */
  }
  .l-breadcrumbs ol li {
    flex: 0 0 auto;
    /* 横幅を維持 */
  }
  .l-breadcrumbs ol li + li::before {
    left: -8.5333333333vw;
    width: 5.3333333333vw;
    height: 0.2666666667vw;
  }
  .l-breadcrumbs ol span {
    font-size: 3.7333333333vw;
    line-height: 1.4285714286;
    letter-spacing: 0.04em;
    font-weight: 700;
  }
  .l-breadcrumbs ol a {
    font-size: 3.7333333333vw;
    line-height: 1.4285714286;
    letter-spacing: 0.04em;
    font-weight: 700;
  }
}
/*------------- .l-sidebar -------------*/ /*------------- .l-footerContainer -------------*/
.l-footerContainer {
  position: relative;
}

/*------------- .l-pagetop -------------*/
.l-pagetop {
  position: fixed;
  bottom: 2.0833333333vw;
  right: 6.25vw;
  z-index: 100;
}
.l-pagetop.is-fix {
  position: absolute;
  top: 5.46875vw;
  bottom: initial;
}

.l-pagetop-link {
  display: block;
  width: 6.3541666667vw;
  aspect-ratio: 122/90;
}
.l-pagetop-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media screen and (max-width: 767px) {
  .l-pagetop {
    bottom: 5.3333333333vw;
    right: 2.6666666667vw;
  }
  .l-pagetop.is-fix {
    top: -8vw;
  }
  .l-pagetop-link {
    width: 26.9333333333vw;
  }
}
/*------------- .l-footer -------------*/
.l-footer {
  padding-top: 13.0208333333vw;
  background-color: #070708;
}

.l-footer-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0 3rem;
  padding-bottom: 8rem;
}

.l-footer-logo {
  width: 37.2rem;
  aspect-ratio: 372/82;
}
.l-footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.l-footer-logo-g {
  width: 30rem;
  aspect-ratio: 300/87;
  margin-top: 1.5rem;
}
.l-footer-logo-g img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.l-footer-wrap-items {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 4.3rem 6.5rem;
  margin-top: 1.5rem;
}

.l-footer-wrap-item-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.l-footer-wrap-item-link ._en {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: flex-start;
  column-gap: 1rem;
  font-family: "Orbitron", sans-serif;
  font-size: 2.6rem;
  line-height: 1.1538461538;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: #fff;
}
@supports (-moz-appearance: none) or (-webkit-hyphens: none) {
  .l-footer-wrap-item-link ._en {
    letter-spacing: 0.02em;
  }
}

.l-footer-wrap-item-link ._en::before {
  content: "";
  width: 1.8rem;
  aspect-ratio: 18/7;
  border-radius: 50%;
  background-image: linear-gradient(90deg, #001330 0, #0843DC 100%);
  background-repeat: no-repeat;
  transform: rotate(-24deg);
  margin-top: 0.5rem;
}

.l-footer-wrap-item-link ._ja {
  font-size: 1.5rem;
  line-height: 1.1333333333;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #919191;
  padding-left: 2.8rem;
}

.l-footer-bottom {
  padding-block: 2.5rem 5.5rem;
  border-top: 1px solid #919191;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 3rem;
}

.l-footer-bottom-link {
  font-size: 1.4rem;
  line-height: 1.1428571429;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .l-footer-bottom-link:hover {
    text-decoration: none;
  }
}

.l-footer-bottom-copy {
  font-size: 1.3rem;
  line-height: 1.2307692308;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .l-footer {
    padding-top: 12vw;
  }
  .l-footer-wrapper {
    flex-direction: column;
    align-items: initial;
    gap: 7.2vw;
    padding-bottom: 8vw;
  }
  .l-footer-logo {
    width: 73.3333333333vw;
  }
  .l-footer-logo-g {
    text-align: center;
    width: 57.3333333333vw;
    margin: 2.6666666667vw auto 0;
  }
  .l-footer-wrap-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 8vw 5.3333333333vw;
    margin-top: initial;
  }
  .l-footer-wrap-item-link {
    gap: 0.8vw;
  }
  .l-footer-wrap-item-link ._en {
    column-gap: 0.8vw;
    font-size: 5.3333333333vw;
    line-height: 1.5;
  }
  .l-footer-wrap-item-link ._en::before {
    width: 4.2666666667vw;
    margin-top: 0.8vw;
  }
  .l-footer-wrap-item-link ._ja {
    font-size: 3.4666666667vw;
    line-height: 1.3076923077;
    padding-left: 5.3333333333vw;
  }
  .l-footer-bottom {
    padding-block: 8vw;
    flex-direction: column;
    gap: 6.1333333333vw;
  }
  .l-footer-bottom-link {
    font-size: 3.4666666667vw;
    line-height: 1.1538461538;
  }
  .l-footer-bottom-copy {
    font-size: 3.4666666667vw;
    text-align: center;
  }
}
/* 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;
  }
}
/* 印刷設定
---------------------------------------------------------------------------- */
@media print {
  * html body {
    zoom: 70%;
  }
}
/* reset
---------------------------------------------------------------------------- */
/* common
---------------------------------------------------------------------------- */
/* layout
-----------------------------------------------------------------------------*/
/* module
---------------------------------------------------------------------------- */
/* print
---------------------------------------------------------------------------- */
