@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
---------------------------------------------------------------------------- */
/* リッチテキスト スタイル
---------------------------------------------------------------------------- */
.m-single-content {
  font-size: 1.6rem;
  line-height: 1.75;
}
.m-single-content h2 {
  padding-block: 2rem;
  padding-inline: 2rem;
  border-radius: 1rem;
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/assets/images/common/bg_ttl.webp");
  margin-bottom: 4rem;
}
.m-single-content h3 {
  font-size: 2.5rem;
  line-height: 1.48;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}
.m-single-content p {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
}
.m-single-content p + p {
  margin-top: 1.5em;
}
.m-single-content p a {
  font-weight: 700;
  color: #213cbe;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .m-single-content p a:hover {
    text-decoration: none;
  }
}
.m-single-content p.large {
  font-size: 2rem;
}
.m-single-content p.small {
  font-size: 1.6rem;
}
.m-single-content ul {
  list-style-type: disc;
  list-style-position: inside;
}
.m-single-content ol {
  list-style-type: decimal;
  list-style-position: inside;
}
.m-single-content strong {
  font-weight: bold;
}
.m-single-content em {
  font-style: italic;
}
.m-single-content blockquote {
  display: block;
  position: relative;
  padding-block: 1em;
  padding-inline: 6rem 1em;
  box-sizing: border-box;
  font-style: italic;
  background: #efefef;
  color: #555;
}
.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 {
  display: block;
  margin: 0;
  color: transparent;
  overflow: hidden;
  color: #000000;
  border: none;
  border-bottom: 1px dotted currentColor;
  margin-block: 7rem 8rem;
}
.m-single-content small {
  display: block;
  font-size: 1.5rem;
  margin-top: 1rem;
}
.m-single-content figure {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  margin-top: 4rem;
}
.m-single-content figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.m-single-content table {
  width: 100%;
  border-collapse: separate !important;
  margin-block: 2rem;
  background-color: #fff;
}
.m-single-content table p {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}
.m-single-content table a {
  font-weight: 700;
  color: #213cbe;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .m-single-content table a:hover {
    text-decoration: none;
  }
}
.m-single-content table a._button {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  text-align: center;
  color: #fff;
  background: #09237d;
  border: 1px solid #09237d;
  border-radius: 10vmax;
  transition: all 0.3s;
  width: 24.6rem;
  padding-block: 0.5rem 0.5rem;
  padding-inline: 1.1rem 0.5rem;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.07em;
  font-weight: 400;
  margin-top: 1.5rem;
  text-decoration: none;
}
.m-single-content table a._button ._arrow {
  display: block;
  width: 2.5rem;
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
}
.m-single-content table a._button ._arrow::before {
  content: "";
  width: 1.413rem;
  height: 1.413rem;
  mask-image: url("/assets/images/common/icn_arrow_right2.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: #09237d;
  position: absolute;
  top: 57%;
  left: 12%;
  transform: translateY(-50%);
}
@media (any-hover: hover) {
  .m-single-content table a._button:hover {
    color: #09237d;
    background: #fff;
  }
  .m-single-content table a._button:hover ._arrow {
    background-color: #09237d;
  }
  .m-single-content table a._button:hover ._arrow::before {
    background-color: #fff;
  }
}
.m-single-content table:has(tr:first-child th + td) {
  width: 100%;
  border: 1px solid #000;
  border-radius: 1.5rem;
  overflow: hidden;
}
.m-single-content table:has(tr:first-child th + td) th,
.m-single-content table:has(tr:first-child th + td) td {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding-block: 2.7rem;
  padding-inline: 3rem;
  vertical-align: middle;
}
.m-single-content table:has(tr:first-child th + td) td {
  padding-inline: 6rem 3rem;
}
.m-single-content table:has(tr:first-child th + td) th {
  min-width: 30rem;
  padding-inline: 2rem;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  background-image: url(/assets/images/common/bg_table.webp);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.m-single-content table:has(tr:first-child th + td) tr:not(:last-child) th::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  translate: 0 50%;
  z-index: 1;
}
.m-single-content table:has(tr:first-child th + td) tr:first-child th {
  border-top-right-radius: 1.5rem;
}
.m-single-content table:has(tr:first-child th + td) tr:last-child th {
  border-bottom-right-radius: 1.5rem;
}
.m-single-content table:has(tr:first-child th + td) tr:not(:last-child) td {
  position: relative;
}
.m-single-content table:has(tr:first-child th + td) tr:not(:last-child) td:not(:first-child)::before {
  content: "";
  width: 92%;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 50%;
  z-index: 1;
}
.m-single-content table:has(tr:first-child th + th) {
  border-spacing: 1rem 0;
  border: 1px solid #000;
  border-radius: 1rem;
  overflow: hidden;
  padding-block: 1rem;
  padding-inline: 0;
}
.m-single-content table:has(tr:first-child th + th) th,
.m-single-content table:has(tr:first-child th + th) td {
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 700;
  vertical-align: middle;
  padding-block: 1rem;
  background-color: #fff;
}
.m-single-content table:has(tr:first-child th + th) tr:first-child th {
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  background-image: url(/assets/images/common/bg_table.webp);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  border-radius: 0.5rem;
  vertical-align: middle;
}
.m-single-content table:has(tr:first-child th + th) td:first-child {
  margin-right: 0.5rem;
}
.m-single-content table:has(tr:first-child th + th) tr:nth-child(2) td {
  border-top: 0.5rem solid #fff;
}
.m-single-content table:has(tr:first-child th + th) tr:not(:first-child) td {
  position: relative;
}
.m-single-content table:has(tr:first-child th + th) tr:not(:first-child) td::after {
  content: "";
  width: 92%;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
}
.m-single-content table:has(tr:first-child th + th) tr:last-child td::after,
.m-single-content table:has(tr:first-child th + th) tr:not(:first-child) td[rowspan]::after {
  content: none;
}
.m-single-content table:has(tr:first-child th + th) tr:not(:first-child) td::before {
  content: "";
  width: 1px;
  height: calc(100% + 2px);
  background-color: #000;
  position: absolute;
  top: 0;
  right: -0.5rem;
  translate: 100% 0;
  z-index: 1;
}
.m-single-content table:has(tr:first-child th + th) tr:not(:first-child):has(td + td) td:last-child::before {
  content: none;
}
.m-single-content .c-blank-space__l,
.m-single-content .c-blank-space__m,
.m-single-content .c-blank-space__s {
  display: block;
  margin: 0;
  color: transparent;
  unicode-bidi: isolate;
  overflow: hidden;
  border: none;
}
.m-single-content .c-blank-space__l {
  margin-bottom: 6rem;
}
.m-single-content .c-blank-space__m {
  margin-bottom: 4rem;
}
.m-single-content .c-blank-space__s {
  margin-bottom: 2rem;
}

@media screen and (max-width: 767px) {
  .m-single-content {
    font-size: 3.7333333333vw;
  }
  .m-single-content h2 {
    padding-block: 2.1333333333vw;
    padding-inline: 1.3333333333vw;
    border-radius: 2.6666666667vw;
    font-size: 4.5333333333vw;
    line-height: 1.4705882353;
    margin-bottom: 4.8vw;
  }
  .m-single-content h3 {
    font-size: 4.5333333333vw;
    line-height: 1.4705882353;
    margin-bottom: 1.3333333333vw;
  }
  .m-single-content p {
    font-size: 4vw;
    line-height: 1.5;
  }
  .m-single-content p.large {
    font-size: 4.2666666667vw;
  }
  .m-single-content p.small {
    font-size: 3.4666666667vw;
  }
  .m-single-content hr {
    margin-block: 9.3333333333vw 10.6666666667vw;
  }
  .m-single-content small {
    font-size: 3.2vw;
    margin-top: 1.3333333333vw;
  }
  .m-single-content figure {
    max-width: 84vw;
    margin-top: 8vw;
  }
  .m-single-content blockquote {
    padding-inline: 13.3333333333vw 1em;
  }
  .m-single-content blockquote:before {
    top: 2.6666666667vw;
    left: 2.6666666667vw;
  }
  .m-single-content table {
    width: 100%;
    border-collapse: separate !important;
    margin-block: 5.3333333333vw;
  }
  .m-single-content table a._button {
    width: 100%;
    padding-block: 1.3333333333vw;
    padding-inline: 5.6vw 1.3333333333vw;
    font-size: 3.7333333333vw;
    line-height: 1.5;
    letter-spacing: 0;
    margin-top: 1.3333333333vw;
  }
  .m-single-content table a._button ._arrow {
    width: 5.3333333333vw;
  }
  .m-single-content table a._button ._arrow::before {
    width: 2.96vw;
    height: 2.96vw;
  }
  .m-single-content table:has(tr:first-child th + td) {
    border-radius: 1.8666666667vw;
    table-layout: fixed;
  }
  .m-single-content table:has(tr:first-child th + td) th,
  .m-single-content table:has(tr:first-child th + td) td {
    font-size: 4vw;
    line-height: 1.3333333333;
    padding-block: 2.6666666667vw;
    padding-inline: 2.6666666667vw;
  }
  .m-single-content table:has(tr:first-child th + td) th {
    width: 20.8vw;
    padding-inline: 1.3333333333vw;
  }
  .m-single-content table:has(tr:first-child th + td) td {
    width: 85%;
  }
  .m-single-content table:has(tr:first-child th + td) tr:first-child th {
    border-top-right-radius: 1.8666666667vw;
  }
  .m-single-content table:has(tr:first-child th + td) tr:last-child th {
    border-bottom-right-radius: 1.8666666667vw;
  }
  .m-single-content table:has(tr:first-child th + th) {
    border-spacing: 2.6666666667vw 0;
    border-radius: 2.6666666667vw;
    padding-block: 1.3333333333vw;
  }
  .m-single-content table:has(tr:first-child th + th) tbody {
    display: flex;
    flex-direction: column;
  }
  .m-single-content table:has(tr:first-child th + th) colgroup {
    display: none;
  }
  .m-single-content table:has(tr:first-child th + th) tr {
    display: contents;
  }
  .m-single-content table:has(tr:first-child th + th) th,
  .m-single-content table:has(tr:first-child th + th) td {
    width: 100%;
    height: auto !important;
    font-size: 4vw;
    line-height: 1.5333333333;
    padding-block: 2.6666666667vw;
  }
  .m-single-content table:has(tr:first-child th + th) tr:first-child th {
    font-size: 4vw;
    border-radius: 1.3333333333vw;
    padding-block: 1.3333333333vw;
  }
  .m-single-content table:has(tr:first-child th + th) td:first-child {
    margin-right: 0;
  }
  .m-single-content table:has(tr:first-child th + th) tr:nth-child(2) td {
    border-top: none;
  }
  .m-single-content table:has(tr:first-child th + th) tr:not(:first-child) td::before {
    content: none;
  }
  table:has(tr:first-child th + th) tr:first-child th:nth-child(1) {
    order: 0;
  }
  table:has(tr:first-child th + th) tr:nth-child(2) td:nth-child(1) {
    order: 1;
  }
  table:has(tr:first-child th + th) tr:nth-child(3) td:nth-child(1) {
    order: 2;
  }
  table:has(tr:first-child th + th) tr:nth-child(4) td:nth-child(1) {
    order: 3;
  }
  table:has(tr:first-child th + th) tr:nth-child(5) td:nth-child(1) {
    order: 4;
  }
  table:has(tr:first-child th + th) tr:nth-child(6) td:nth-child(1) {
    order: 5;
  }
  table:has(tr:first-child th + th) tr:nth-child(7) td:nth-child(1) {
    order: 6;
  }
  table:has(tr:first-child th + th) tr:nth-child(8) td:nth-child(1) {
    order: 7;
  }
  table:has(tr:first-child th + th) tr:nth-child(9) td:nth-child(1) {
    order: 8;
  }
  table:has(tr:first-child th + th) tr:nth-child(10) td:nth-child(1) {
    order: 9;
  }
  table:has(tr:first-child th + th) tr:first-child th:nth-child(2) {
    order: 10;
  }
  table:has(tr:first-child th + th) tr:nth-child(2) td:nth-child(2) {
    order: 11;
  }
  table:has(tr:first-child th + th) tr:nth-child(3) td:nth-child(2) {
    order: 12;
  }
  table:has(tr:first-child th + th) tr:nth-child(4) td:nth-child(2) {
    order: 13;
  }
  table:has(tr:first-child th + th) tr:nth-child(5) td:nth-child(2) {
    order: 14;
  }
  table:has(tr:first-child th + th) tr:nth-child(6) td:nth-child(2) {
    order: 15;
  }
  table:has(tr:first-child th + th) tr:nth-child(7) td:nth-child(2) {
    order: 16;
  }
  table:has(tr:first-child th + th) tr:nth-child(8) td:nth-child(2) {
    order: 17;
  }
  table:has(tr:first-child th + th) tr:nth-child(9) td:nth-child(2) {
    order: 18;
  }
  table:has(tr:first-child th + th) tr:nth-child(10) td:nth-child(2) {
    order: 19;
  }
  table:has(tr:first-child th + th) tr:first-child th:nth-child(3) {
    order: 20;
  }
  table:has(tr:first-child th + th) tr:nth-child(2) td:nth-child(3) {
    order: 21;
  }
  table:has(tr:first-child th + th) tr:nth-child(3) td:nth-child(3) {
    order: 22;
  }
  table:has(tr:first-child th + th) tr:nth-child(4) td:nth-child(3) {
    order: 23;
  }
  table:has(tr:first-child th + th) tr:nth-child(5) td:nth-child(3) {
    order: 24;
  }
  table:has(tr:first-child th + th) tr:nth-child(6) td:nth-child(3) {
    order: 25;
  }
  table:has(tr:first-child th + th) tr:nth-child(7) td:nth-child(3) {
    order: 26;
  }
  table:has(tr:first-child th + th) tr:nth-child(8) td:nth-child(3) {
    order: 27;
  }
  table:has(tr:first-child th + th) tr:nth-child(9) td:nth-child(3) {
    order: 28;
  }
  table:has(tr:first-child th + th) tr:nth-child(10) td:nth-child(3) {
    order: 29;
  }
  table:has(tr:first-child th + th) tr:first-child th:nth-child(4) {
    order: 30;
  }
  table:has(tr:first-child th + th) tr:nth-child(2) td:nth-child(4) {
    order: 31;
  }
  table:has(tr:first-child th + th) tr:nth-child(3) td:nth-child(4) {
    order: 32;
  }
  table:has(tr:first-child th + th) tr:nth-child(4) td:nth-child(4) {
    order: 33;
  }
  table:has(tr:first-child th + th) tr:nth-child(5) td:nth-child(4) {
    order: 34;
  }
  table:has(tr:first-child th + th) tr:nth-child(6) td:nth-child(4) {
    order: 35;
  }
  table:has(tr:first-child th + th) tr:nth-child(7) td:nth-child(4) {
    order: 36;
  }
  table:has(tr:first-child th + th) tr:nth-child(8) td:nth-child(4) {
    order: 37;
  }
  table:has(tr:first-child th + th) tr:nth-child(9) td:nth-child(4) {
    order: 38;
  }
  table:has(tr:first-child th + th) tr:nth-child(10) td:nth-child(4) {
    order: 39;
  }
  table:has(tr:first-child th + th) tr:first-child th:nth-child(5) {
    order: 40;
  }
  table:has(tr:first-child th + th) tr:nth-child(2) td:nth-child(5) {
    order: 41;
  }
  table:has(tr:first-child th + th) tr:nth-child(3) td:nth-child(5) {
    order: 42;
  }
  table:has(tr:first-child th + th) tr:nth-child(4) td:nth-child(5) {
    order: 43;
  }
  table:has(tr:first-child th + th) tr:nth-child(5) td:nth-child(5) {
    order: 44;
  }
  table:has(tr:first-child th + th) tr:nth-child(6) td:nth-child(5) {
    order: 45;
  }
  table:has(tr:first-child th + th) tr:nth-child(7) td:nth-child(5) {
    order: 46;
  }
  table:has(tr:first-child th + th) tr:nth-child(8) td:nth-child(5) {
    order: 47;
  }
  table:has(tr:first-child th + th) tr:nth-child(9) td:nth-child(5) {
    order: 48;
  }
  table:has(tr:first-child th + th) tr:nth-child(10) td:nth-child(5) {
    order: 49;
  }
  table:has(tr:first-child th + th) tr:first-child th:nth-child(6) {
    order: 50;
  }
  table:has(tr:first-child th + th) tr:nth-child(2) td:nth-child(6) {
    order: 51;
  }
  table:has(tr:first-child th + th) tr:nth-child(3) td:nth-child(6) {
    order: 52;
  }
  table:has(tr:first-child th + th) tr:nth-child(4) td:nth-child(6) {
    order: 53;
  }
  table:has(tr:first-child th + th) tr:nth-child(5) td:nth-child(6) {
    order: 54;
  }
  table:has(tr:first-child th + th) tr:nth-child(6) td:nth-child(6) {
    order: 55;
  }
  table:has(tr:first-child th + th) tr:nth-child(7) td:nth-child(6) {
    order: 56;
  }
  table:has(tr:first-child th + th) tr:nth-child(8) td:nth-child(6) {
    order: 57;
  }
  table:has(tr:first-child th + th) tr:nth-child(9) td:nth-child(6) {
    order: 58;
  }
  table:has(tr:first-child th + th) tr:nth-child(10) td:nth-child(6) {
    order: 59;
  }
  table:has(tr:first-child th + th):has(td[rowspan]) tr:nth-child(3) td:only-child {
    order: 12;
  }
  table:has(tr:first-child th + th):has(td[rowspan]) tr:nth-child(4) td:only-child {
    order: 13;
  }
  table:has(tr:first-child th + th):has(td[rowspan]) tr:nth-child(5) td:only-child {
    order: 14;
  }
  table:has(tr:first-child th + th):has(td[rowspan]) tr:nth-child(6) td:only-child {
    order: 15;
  }
  table:has(tr:first-child th + th):has(td[rowspan]) tr:nth-child(7) td:only-child {
    order: 16;
  }
  table:has(tr:first-child th + th):has(td[rowspan]) tr:nth-child(8) td:only-child {
    order: 17;
  }
  table:has(tr:first-child th + th):has(td[rowspan]) tr:nth-child(9) td:only-child {
    order: 18;
  }
  table:has(tr:first-child th + th):has(td[rowspan]) tr:nth-child(10) td:only-child {
    order: 19;
  }
  .c-blank-space__l {
    margin-bottom: 8vw;
  }
  .c-blank-space__m {
    margin-bottom: 5.3333333333vw;
  }
  .c-blank-space__s {
    margin-bottom: 2.6666666667vw;
  }
}
/* タイトル系
---------------------------------------------------------------------------- */
.m-ttl-speechBubble {
  font-size: 2rem;
  line-height: 1;
  font-weight: 400;
  font-family: "hanatotyoutyo";
  color: #fff;
  text-align: center;
  width: fit-content;
  margin-inline: auto;
  padding-block: 0.51rem 0.51rem;
  padding-inline: 2rem 2.1rem;
  background-color: #09237d;
  box-shadow: 0.3rem 0.3rem 0 #fff;
  border-radius: 0.4rem;
  position: relative;
}
.m-ttl-speechBubble::before, .m-ttl-speechBubble::after {
  content: "";
  clip-path: polygon(0 0, 90% 0, 100% 100%);
  position: absolute;
  translate: -50% 95%;
}
.m-ttl-speechBubble::before {
  background-color: #09237d;
  width: 2rem;
  height: 1.7320508076rem;
  bottom: 0.3rem;
  left: 50%;
}
.m-ttl-speechBubble::after {
  background-color: #fff;
  width: 2rem;
  height: 1.7320508076rem;
  bottom: 0.1rem;
  left: 51.5%;
  z-index: -1;
}
.m-ttl-speechBubble._blue-2 {
  background-color: #004fbe;
}
.m-ttl-speechBubble._blue-2::before {
  background-color: #004fbe;
}
.m-ttl-speechBubble._fz-22 {
  font-size: 2.2rem;
}

@media screen and (max-width: 767px) {
  .m-ttl-speechBubble {
    font-size: 2.6666666667vw;
    padding-block: 1.0666666667vw 0.8vw;
    padding-inline: 2.1333333333vw 2.1333333333vw;
    box-shadow: 0.5333333333vw 0.5333333333vw 0 #fff;
    border-radius: 0.5333333333vw;
  }
  .m-ttl-speechBubble::before, .m-ttl-speechBubble::after {
    content: "";
    clip-path: polygon(0 0, 90% 0, 100% 100%);
    position: absolute;
    translate: -50% 95%;
  }
  .m-ttl-speechBubble::before {
    width: 2.1333333333vw;
    height: calc(2.1333333333vw / 2 * 1.7320508076);
    bottom: 0vw;
  }
  .m-ttl-speechBubble::after {
    width: 2.1333333333vw;
    height: calc(2.1333333333vw / 2 * 1.7320508076);
    bottom: -0.2666666667vw;
  }
  .m-ttl-speechBubble._fz-22 {
    font-size: 2.9333333333vw;
  }
}
/* ボタン系
---------------------------------------------------------------------------- */
.m-button-gradation-arrow {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  text-align: center;
  color: #fff;
  background: #09237d;
  border: 1px solid #09237d;
  border-radius: 10vmax;
  transition: all 0.3s;
}

.m-button-gradation-arrow ._txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  --height: 2;
  height: calc(var(--height) * 1rem);
  overflow: hidden;
}

.m-button-gradation-arrow ._txt span {
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  translate: 0;
}

.m-button-gradation-arrow ._txt::after {
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  width: fit-content;
  content: attr(data-txt);
  translate: 0;
}

.m-button-gradation-arrow ._arrow {
  display: block;
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
}
.m-button-gradation-arrow ._arrow::before {
  content: "";
  mask-image: url("/assets/images/common/icn_arrow_right3.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: #09237d;
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translateY(-50%);
}

.m-button-gradation-arrow ._arrow2 {
  display: block;
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
}
.m-button-gradation-arrow ._arrow2::before {
  content: "";
  mask-image: url("/assets/images/common/icn_arrow_right2.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: #09237d;
  position: absolute;
  top: 57%;
  left: 12%;
  transform: translateY(-50%);
}

.m-button-gradation-arrow ._arrow3 {
  display: block;
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
}
.m-button-gradation-arrow ._arrow3::before {
  content: "";
  mask-image: url("/assets/images/common/icn_arrow_right.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: #09237d;
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translateY(-50%);
}

.m-button-gradation-arrow._w-200 {
  width: 20rem;
  padding-block: 0.5rem 0.4rem;
  padding-inline: 0.5rem;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.m-button-gradation-arrow._w-200 ._txt {
  --height: 2.1;
}
.m-button-gradation-arrow._w-200 ._arrow {
  width: 2rem;
}
.m-button-gradation-arrow._w-200 ._arrow::before {
  width: 0.9rem;
  height: 0.9rem;
}

.m-button-gradation-arrow._w-246 {
  width: 24.6rem;
  padding-block: 0.5rem 0.5rem;
  padding-inline: 1.1rem 0.5rem;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.07em;
  font-weight: 400;
}
.m-button-gradation-arrow._w-246 ._txt {
  --height: 2;
}
.m-button-gradation-arrow._w-246 ._arrow {
  width: 2.5rem;
}
.m-button-gradation-arrow._w-246 ._arrow::before {
  width: 1.3rem;
  height: 1.3rem;
}
.m-button-gradation-arrow._w-246 ._arrow2 {
  width: 2.5rem;
}
.m-button-gradation-arrow._w-246 ._arrow2::before {
  width: 1.413rem;
  height: 1.413rem;
}

.m-button-gradation-arrow._w-480 {
  width: 48rem;
  padding-block: 0.6rem;
  padding-inline: 4.8rem 0.8rem;
  font-size: 2rem;
  line-height: 1.725;
  font-weight: 500;
}
.m-button-gradation-arrow._w-480 ._txt {
  --height: 3.4;
}
.m-button-gradation-arrow._w-480 ._arrow {
  width: 4rem;
}
.m-button-gradation-arrow._w-480 ._arrow::before {
  width: 2rem;
  height: 1.9rem;
}

.m-button-gradation-arrow._m-center {
  margin-inline: auto;
}

.m-button-gradation-arrow._m-right {
  margin-inline: auto 0;
}

.m-button-gradation-arrow._bg-white {
  background-color: #fff;
  border-color: #fff;
  color: #09237d;
}
.m-button-gradation-arrow._bg-white ._arrow {
  background-color: #09237d;
}
.m-button-gradation-arrow._bg-white ._arrow::before {
  background-color: #fff;
}

.m-button-gradation-arrow._relation {
  width: 20rem;
  padding-block: 0.5rem;
  padding-inline: 2rem 0.5rem;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
  background: initial;
  background-color: #09237d;
}
.m-button-gradation-arrow._relation ._arrow {
  width: 2.5rem;
}
.m-button-gradation-arrow._relation ._arrow::before {
  width: 1rem;
  height: 1rem;
  background-color: #09237d;
}

@media (any-hover: hover) {
  .m-button-gradation-arrow:hover {
    color: #09237d;
    background: #fff;
  }
  .m-button-gradation-arrow:hover ._arrow {
    background-color: #09237d;
  }
  .m-button-gradation-arrow:hover ._arrow::before {
    background-color: #fff;
  }
  .m-button-gradation-arrow:hover ._arrow2 {
    background-color: #09237d;
  }
  .m-button-gradation-arrow:hover ._arrow2::before {
    background-color: #fff;
  }
  .m-button-gradation-arrow:hover ._txt span {
    translate: 0 calc(var(--height) * -1rem);
  }
  .m-button-gradation-arrow:hover ._txt::after {
    translate: 0 calc(var(--height) * -1rem);
  }
  .m-button-gradation-arrow:hover ._arrow::before {
    animation: arrow 0.5s;
  }
  .m-button-gradation-arrow:hover ._arrow3::before {
    animation: arrow 0.5s;
  }
  .m-button-gradation-arrow:hover._bg-white {
    background-color: #09237d;
    color: #fff;
  }
  .m-button-gradation-arrow:hover._bg-white ._arrow {
    background-color: #fff;
  }
  .m-button-gradation-arrow:hover._bg-white ._arrow::before {
    background-color: #09237d;
  }
}
@media screen and (max-width: 767px) {
  .m-button-gradation-arrow ._txt {
    height: auto;
  }
  .m-button-gradation-arrow ._txt::after {
    content: none;
    display: none;
  }
  .m-button-gradation-arrow._w-200 {
    width: 53.3333333333vw;
    padding-block: 1.3333333333vw 1.0666666667vw;
    padding-inline: 1.3333333333vw;
    font-size: 3.7333333333vw;
  }
  .m-button-gradation-arrow._w-200 ._arrow {
    width: 5.3333333333vw;
  }
  .m-button-gradation-arrow._w-200 ._arrow::before {
    width: 2.4vw;
    height: 2.4vw;
  }
  .m-button-gradation-arrow._w-246 {
    width: 53.3333333333vw;
    padding-block: 1.3333333333vw;
    padding-inline: 5.6vw 1.3333333333vw;
    font-size: 3.7333333333vw;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .m-button-gradation-arrow._w-246 ._arrow {
    width: 5.3333333333vw;
  }
  .m-button-gradation-arrow._w-246 ._arrow::before {
    width: 2.96vw;
    height: 2.96vw;
  }
  .m-button-gradation-arrow._w-246 ._arrow2 {
    width: 5.3333333333vw;
  }
  .m-button-gradation-arrow._w-246 ._arrow2::before {
    width: 2.96vw;
    height: 2.96vw;
  }
  .m-button-gradation-arrow._w-480 {
    width: 76vw;
    padding-block: 1.3333333333vw;
    padding-inline: 2.6666666667vw 1.6vw;
    font-size: 4vw;
    line-height: 1.5;
  }
  .m-button-gradation-arrow._w-480 ._txt {
    --height: 22;
  }
  .m-button-gradation-arrow._w-480 ._arrow {
    width: 7.4666666667vw;
  }
  .m-button-gradation-arrow._w-480 ._arrow::before {
    width: 4vw;
    height: 3.7333333333vw;
    left: 25%;
  }
  .m-button-gradation-arrow._w-480._w-sp-250 {
    width: 49.6vw;
    padding-inline: 2.9333333333vw 1.6vw;
    font-size: 3.4666666667vw;
  }
  .m-button-gradation-arrow._w-480._w-sp-250 ._arrow {
    width: 5.3333333333vw;
  }
  .m-button-gradation-arrow._w-480._w-sp-250 ._arrow::before {
    width: 2.2133333333vw;
    height: 2.2133333333vw;
  }
  .m-button-gradation-arrow._relation {
    width: 44vw;
    padding-block: 1.3333333333vw;
    padding-inline: 4vw 1.3333333333vw;
    font-size: 2.9333333333vw;
  }
  .m-button-gradation-arrow._relation ._arrow {
    width: 5.52vw;
  }
  .m-button-gradation-arrow._relation ._arrow::before {
    width: 2.2133333333vw;
    height: 2.2133333333vw;
  }
  .m-button-gradation-arrow._m-right {
    margin-inline: auto;
  }
}
/* 下層MV
-------------------------------------------- */
.m-button-external-arrow {
  position: relative;
  display: inline-block;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  width: 100%;
  padding-block: 0.93rem 0.97rem;
  background-color: #09237d;
  border-radius: 10vmax;
  transition: all 0.3s;
}
.m-button-external-arrow ._arrow {
  position: absolute;
  top: 50%;
  right: 0.9rem;
  translate: 0 -50%;
  display: grid;
  place-items: center;
  width: 4rem;
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 50%;
}
.m-button-external-arrow ._arrow::before {
  content: "";
  width: 2.5rem;
  aspect-ratio: 1;
  background-color: #09237d;
  mask-image: url("/assets/images/common/icn_arrow_external_circle.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
  translate: -0.1rem 0.2rem;
}
.m-button-external-arrow ._arrow::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1rem;
  aspect-ratio: 1;
  background-color: #09237d;
  mask-image: url("/assets/images/common/icn_arrow_external_arrow.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
  transition: all 0.3s;
}
.m-button-external-arrow._tokyo {
  background-color: #0061A8;
  box-shadow: 0.7rem 0.7rem 0 #ccdfee;
}
.m-button-external-arrow._tokyo ._arrow::before,
.m-button-external-arrow._tokyo ._arrow::after {
  background-color: #0061A8;
}
.m-button-external-arrow._nagoya {
  background-color: #00664E;
  box-shadow: 0.7rem 0.7rem 0 #cce0dc;
}
.m-button-external-arrow._nagoya ._arrow::before,
.m-button-external-arrow._nagoya ._arrow::after {
  background-color: #00664E;
}
@media (hover: hover) {
  .m-button-external-arrow:hover {
    transform: translate(0.7rem, 0.7rem);
    box-shadow: none;
  }
  .m-button-external-arrow:hover._tokyo {
    color: #0061A8;
    background-color: #ccdfee;
  }
  .m-button-external-arrow:hover._tokyo ._arrow {
    background-color: #0061A8;
  }
  .m-button-external-arrow:hover._tokyo ._arrow::before,
  .m-button-external-arrow:hover._tokyo ._arrow::after {
    background-color: #fff;
  }
  .m-button-external-arrow:hover._nagoya {
    color: #00664E;
    background-color: #cce0dc;
  }
  .m-button-external-arrow:hover._nagoya ._arrow {
    background-color: #00664E;
  }
  .m-button-external-arrow:hover._nagoya ._arrow::before,
  .m-button-external-arrow:hover._nagoya ._arrow::after {
    background-color: #fff;
  }
  .m-button-external-arrow:hover ._arrow::after {
    translate: 0.3rem -0.3rem;
  }
}

@media screen and (max-width: 767px) {
  .m-button-external-arrow {
    font-size: 3.7333333333vw;
    padding-block: 1.8666666667vw 1.8666666667vw;
  }
  .m-button-external-arrow ._arrow {
    right: 1.8666666667vw;
    width: 6.1333333333vw;
  }
  .m-button-external-arrow ._arrow::before {
    width: 4vw;
    translate: 0 0.2666666667vw;
  }
  .m-button-external-arrow ._arrow3 {
    right: 1.8666666667vw;
    width: 6.1333333333vw;
  }
  .m-button-external-arrow ._arrow3::before {
    width: 4vw;
    translate: 0 0.2666666667vw;
  }
}
/* パーツ系
---------------------------------------------------------------------------- */
/* 下層MV
-------------------------------------------- */
.m-mv-child {
  margin-top: 10.6rem;
  height: 20.46875vw;
  padding-top: 5.6770833333vw;
  position: relative;
}

.m-mv-child::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("/assets/images/common/bg_mv_pc.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.m-mv-child-ttl {
  font-size: 5rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 2.6041666667vw;
  text-align: center;
  margin-top: 1.3020833333vw;
  width: fit-content;
  margin-inline: auto;
}

.m-mv-child-ttl ._small {
  display: block;
  font-size: 1.5625vw;
}

.m-mv-child-speechBubble {
  font-size: 2rem;
  line-height: 1;
  font-weight: 400;
  font-size: 1.0416666667vw;
  font-family: "hanatotyoutyo";
  color: #fff;
  text-align: center;
  width: fit-content;
  margin-inline: auto;
  padding-block: 0.265625vw 0.265625vw;
  padding-inline: 1.5625vw;
  background-color: #09237d;
  box-shadow: 0.15625vw 0.15625vw 0 #fff;
  border-radius: 0.2083333333vw;
  position: relative;
}
.m-mv-child-speechBubble::before, .m-mv-child-speechBubble::after {
  content: "";
  clip-path: polygon(0 0, 90% 0, 100% 100%);
  position: absolute;
  translate: -50% 95%;
}
.m-mv-child-speechBubble::before {
  background-color: #09237d;
  width: 1.0416666667vw;
  height: calc(1.0416666667vw / 2 * 1.7320508076);
  bottom: 0.15625vw;
  left: 50%;
}
.m-mv-child-speechBubble::after {
  background-color: #fff;
  width: 1.0416666667vw;
  height: calc(1.0416666667vw / 2 * 1.7320508076);
  bottom: 0.0520833333vw;
  left: 51.5%;
  z-index: -1;
}

.m-mv-child._detail {
  padding-top: 5.6770833333vw;
}
.m-mv-child._detail .m-mv-child-ttl-group {
  display: grid;
  grid-template: "ttl ttl" auto ". ." 0.5208333333vw "category txt" auto/auto auto;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0 1.2rem;
}
.m-mv-child._detail .m-mv-child-ttl {
  grid-area: ttl;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 1.0416666667vw;
  text-align: center;
  margin-top: 0;
}
.m-mv-child._detail .m-mv-child-category {
  grid-area: category;
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 700;
  font-size: 1.3541666667vw;
  color: #fff;
  width: fit-content;
  padding-block: 0.2083333333vw 0.3125vw;
  padding-inline: 1.40625vw;
  border-radius: 0.15625vw;
}
.m-mv-child._detail .m-mv-child-category._tokyo {
  background-color: #0061A8;
}
.m-mv-child._detail .m-mv-child-category._nagoya {
  background-color: #00664E;
}
.m-mv-child._detail .m-mv-child-txt {
  grid-area: txt;
  font-size: 3.5rem;
  line-height: 1.0285714286;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 1.8229166667vw;
}

@media screen and (max-width: 767px) {
  .m-mv-child {
    margin-top: 16vw;
    height: 41.8666666667vw;
    padding-top: 12.8vw;
  }
  .m-mv-child::before {
    width: 94.4vw;
    margin-inline: auto;
    background-image: url("/assets/images/common/bg_mv_sp.webp");
  }
  .m-mv-child:has(.m-mv-child-ttl ._small) {
    padding-top: 10.6666666667vw;
  }
  .m-mv-child-ttl {
    font-size: 6.6666666667vw;
    margin-top: 1.0666666667vw;
  }
  .m-mv-child-ttl ._small {
    font-size: 4vw;
  }
  .m-mv-child-speechBubble {
    font-size: 2.6666666667vw;
    padding-block: 1.0666666667vw 0.8vw;
    padding-inline: 4.8vw 4.2666666667vw;
    box-shadow: 0.5333333333vw 0.5333333333vw 0 #fff;
    border-radius: 0.5333333333vw;
  }
  .m-mv-child-speechBubble::before, .m-mv-child-speechBubble::after {
    content: "";
    clip-path: polygon(0 0, 90% 0, 100% 100%);
    position: absolute;
    translate: -50% 95%;
  }
  .m-mv-child-speechBubble::before {
    width: 2.1333333333vw;
    height: calc(2.1333333333vw / 2 * 1.7320508076);
    bottom: 0vw;
  }
  .m-mv-child-speechBubble::after {
    width: 2.1333333333vw;
    height: calc(2.1333333333vw / 2 * 1.7320508076);
    bottom: -0.2666666667vw;
  }
  .m-mv-child._detail {
    padding-top: 11.4666666667vw;
  }
  .m-mv-child._detail .m-mv-child-ttl-group {
    display: grid;
    grid-template: "ttl category" auto ". ." 2.4vw "txt txt" auto/auto auto;
    gap: 0 0.8vw;
  }
  .m-mv-child._detail .m-mv-child-ttl {
    font-size: 3.4666666667vw;
    line-height: 1.3076923077;
    text-align: right;
    margin-inline: auto 0;
  }
  .m-mv-child._detail .m-mv-child-category {
    font-size: 3.4666666667vw;
    line-height: 1;
    padding-block: 0.8vw 1.0666666667vw;
    padding-inline: 3.4666666667vw;
    border-radius: 0.8vw;
  }
  .m-mv-child._detail .m-mv-child-txt {
    font-size: 6.6666666667vw;
    line-height: 1;
  }
}
/* ニュース
-------------------------------------------- */
.m-news-item-link {
  display: grid;
  grid-template-columns: auto 10.6rem auto auto;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  padding-left: 0.7rem;
}

.m-news-item-link:not(:last-of-type) {
  padding-bottom: 2.7rem;
  position: relative;
}

.m-news-item-link:not(:last-of-type)::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: radial-gradient(circle at center, #000 0.1rem, transparent 0.1rem);
  background-size: 0.6rem 0.1rem;
  height: 0.1rem;
  width: 100%;
}

.m-news-item-time {
  margin-right: 3.9rem;
}

.m-news-item-category {
  text-align: center;
  margin-right: 4rem;
}
.m-news-item-category._tokyo {
  color: #0061A8;
}
.m-news-item-category._nagoya {
  color: #00664E;
}

.m-news-item-ttl {
  margin-right: 0.9rem;
  display: inline-block;
  max-width: 80rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.m-news-item-new {
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  background-color: #ff1347;
  padding-block: 0.3rem 0.4rem;
  padding-inline: 1.3rem;
  border-radius: 10vmax;
}

@media screen and (max-width: 767px) {
  .m-news-item-link {
    grid-template: "time category new ." auto ". . . ." 2.1333333333vw "ttl ttl ttl ttl" auto/auto auto auto 1fr;
    font-size: 4vw;
    line-height: 1.3333333333;
    padding-left: 0vw;
  }
  .m-news-item-link:not(:last-of-type) {
    padding-bottom: 4.2666666667vw;
  }
  .m-news-item-link:not(:last-of-type)::before {
    background: radial-gradient(circle at center, #000 0.2666666667vw, transparent 0.2666666667vw);
    background-size: 1.6vw 0.2666666667vw;
    height: 0.2666666667vw;
  }
  .m-news-item-time {
    grid-area: time;
    margin-right: 4.5333333333vw;
    font-size: 3.7333333333vw;
    line-height: 1.1428571429;
  }
  .m-news-item-category {
    grid-area: category;
    font-size: 3.7333333333vw;
    line-height: 1.1428571429;
    margin-right: 2.4vw;
  }
  .m-news-item-ttl {
    grid-area: ttl;
    margin-right: 0;
    max-width: auto;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .m-news-item-new {
    grid-area: new;
    font-size: 3.2vw;
    line-height: 1;
    padding-block: 0.8vw 1.0666666667vw;
    padding-inline: 3.2vw;
  }
}
/* イベントカード
-------------------------------------------- */
.m-event-card-link {
  display: grid;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr auto;
  justify-content: space-between;
  gap: 0 1rem;
  background-color: #fff;
  padding-block: 2rem 1.7rem;
  padding-inline: 2rem;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.3s;
}

.m-event-card-link::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #808080;
  z-index: 0;
  box-sizing: border-box;
  border-radius: 1rem;
}

@media (any-hover: hover) {
  .m-event-card-link:hover {
    opacity: 0.7;
  }
  .m-event-card-link:hover::before {
    border: 0.2rem solid #09237d;
  }
  .m-event-card-link:hover .m-event-card-img {
    scale: 1.1;
  }
}
.m-event-card-category {
  grid-column: 1/2;
  grid-row: 1/2;
  font-size: 1.4rem;
  line-height: 1.1428571429;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.m-event-card-category._tokyo {
  color: #0061A8;
}
.m-event-card-category._nagoya {
  color: #00664E;
}

.m-event-card-ttl {
  grid-column: 1/2;
  grid-row: 2/3;
  font-size: 1.8rem;
  line-height: 1.1666666667;
  letter-spacing: 0.05em;
  font-weight: 700;
  height: 4.2rem;
  margin-bottom: 1rem;
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.m-event-card-date {
  grid-column: 1/2;
  grid-row: 3/4;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  font-size: 1.3rem;
  line-height: 1.1538461538;
  font-weight: 400;
  align-items: flex-start;
}

.m-event-card-img-wrap {
  grid-column: 2/3;
  grid-row: 1/4;
  position: relative;
  width: 12rem;
  overflow: hidden;
}

.m-event-card-new {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 1;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  background-color: #ff1347;
  padding-block: 0.3rem 0.4rem;
  padding-inline: 1.3rem;
  border-radius: 10vmax;
}

.m-event-card-img {
  width: 100%;
  height: 12rem;
  scale: 1;
  transition: scale 0.3s;
}
.m-event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media screen and (max-width: 767px) {
  .m-event-card-link {
    grid-row: span 4;
    grid-template-rows: auto auto 1fr auto;
    height: auto;
    gap: 0 2.1333333333vw;
    padding-block: 3.2vw 3.4666666667vw;
    padding-inline: 4vw;
  }
  .m-event-card-link::before {
    border-radius: 2.6666666667vw;
  }
  .m-event-card-category {
    font-size: 3.4666666667vw;
    line-height: 1.1538461538;
    margin-bottom: 1.3333333333vw;
  }
  .m-event-card-ttl {
    font-size: 4.2666666667vw;
    line-height: 1.3;
    height: auto;
    margin-bottom: 0vw;
  }
  .m-event-card-date {
    grid-row: 4/5;
    font-size: 3.4666666667vw;
    line-height: 1.1538461538;
    margin-top: 1.3333333333vw;
  }
  .m-event-card-img-wrap {
    width: 26.6666666667vw;
  }
  .m-event-card-img-wrap {
    grid-row: 1/5;
  }
  .m-event-card-new {
    top: 1.3333333333vw;
    left: 1.3333333333vw;
    font-size: 2.6666666667vw;
    padding-block: 0.8vw 1.0666666667vw;
    padding-inline: 3.2vw;
  }
  .m-event-card-img {
    height: 26.6666666667vw;
  }
}
/* m-facilities-other
---------------------------------------------------------------------------- */
.m-facilities-other {
  display: grid;
  grid-template-columns: repeat(2, 57.5rem);
  gap: 4.7rem 5rem;
}

.m-facilities-other-box {
  display: grid;
  grid-template: "img ." auto "img btn" auto "img ." auto "img txt" 1fr "img ." auto/auto 1fr;
  align-items: center;
  gap: 0 2rem;
  border: 1px solid #000;
  border-radius: 1.3rem;
  padding-block: 1rem;
  padding-inline: 1rem;
}

.m-facilities-other-box-img {
  grid-area: img;
  width: 22.2rem;
  aspect-ratio: 222/154;
  overflow: hidden;
  border-radius: 0.5rem;
}
.m-facilities-other-box-img img {
  scale: 1;
  transition: scale 0.3s;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.m-facilities-other-box-txt {
  grid-area: txt;
  font-size: 1.4rem;
  line-height: 1.7857142857;
  font-weight: 700;
  opacity: 1;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.m-facilities-other-box .m-button-gradation-arrow {
  grid-area: btn;
  width: 28rem;
  padding-block: 0.5rem 0.4rem;
  padding-inline: 0.5rem;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 700;
  margin-inline: auto;
}
.m-facilities-other-box .m-button-gradation-arrow._tokyo {
  background-color: #0061A8;
  border-color: #0061A8;
}
.m-facilities-other-box .m-button-gradation-arrow._tokyo ._arrow::before {
  background-color: #0061A8;
}
.m-facilities-other-box .m-button-gradation-arrow._nagoya {
  background-color: #00664E;
  border-color: #00664E;
}
.m-facilities-other-box .m-button-gradation-arrow._nagoya ._arrow::before {
  background-color: #00664E;
}
.m-facilities-other-box .m-button-gradation-arrow ._txt {
  --height: 2.8;
}
.m-facilities-other-box .m-button-gradation-arrow ._arrow {
  width: 2.5rem;
}
.m-facilities-other-box .m-button-gradation-arrow ._arrow::before {
  top: 55%;
  width: 1.3rem;
  height: 1.3rem;
}

@media (any-hover: hover) {
  .m-facilities-other-box:hover .m-facilities-other-box-img img {
    scale: 1.1;
  }
  .m-facilities-other-box:hover .m-facilities-other-box-txt {
    opacity: 0.7;
  }
  .m-facilities-other-box:hover .m-button-gradation-arrow._tokyo {
    color: #0061A8;
    background: #fff;
  }
  .m-facilities-other-box:hover .m-button-gradation-arrow._tokyo ._arrow {
    background-color: #0061A8;
  }
  .m-facilities-other-box:hover .m-button-gradation-arrow._tokyo ._arrow::before {
    background-color: #fff;
  }
  .m-facilities-other-box:hover .m-button-gradation-arrow._nagoya {
    color: #00664E;
    background: #fff;
  }
  .m-facilities-other-box:hover .m-button-gradation-arrow._nagoya ._arrow {
    background-color: #00664E;
  }
  .m-facilities-other-box:hover .m-button-gradation-arrow._nagoya ._arrow::before {
    background-color: #fff;
  }
  .m-facilities-other-box:hover .m-button-gradation-arrow ._txt span {
    translate: 0 calc(var(--height) * -1rem);
  }
  .m-facilities-other-box:hover .m-button-gradation-arrow ._txt::after {
    translate: 0 calc(var(--height) * -1rem);
  }
  .m-facilities-other-box:hover .m-button-gradation-arrow ._arrow::before {
    animation: arrow 0.5s;
  }
  .m-facilities-other-box:hover .m-button-gradation-arrow ._arrow3::before {
    animation: arrow 0.5s;
  }
}
@media screen and (max-width: 767px) {
  .m-facilities-other {
    grid-template-columns: repeat(1, 100%);
    gap: 4.8vw;
  }
  .m-facilities-other-box {
    grid-template: "btn btn" auto "img txt" auto/auto 1fr;
    gap: 3.1466666667vw 2.64vw;
    border-radius: 3.4666666667vw;
    padding-block: 4.16vw 4.88vw;
    padding-inline: 3.7333333333vw;
  }
  .m-facilities-other-box-img {
    width: 28.8vw;
    aspect-ratio: 108/75;
    border-radius: 1.3333333333vw;
  }
  .m-facilities-other-box-txt {
    font-size: 3.2vw;
    white-space: normal;
  }
  .m-facilities-other-box .m-button-gradation-arrow {
    width: 100%;
    padding-block: 0.2666666667vw 0.2666666667vw;
    padding-inline: 1.3333333333vw;
    font-size: 4vw;
  }
  .m-facilities-other-box .m-button-gradation-arrow ._txt {
    --height: 2.8;
  }
  .m-facilities-other-box .m-button-gradation-arrow ._arrow {
    width: 5.3333333333vw;
  }
  .m-facilities-other-box .m-button-gradation-arrow ._arrow::before {
    top: 50%;
    width: 2.4vw;
    height: 2.4vw;
  }
}
/* m-relation
---------------------------------------------------------------------------- */
.m-relation-ttl {
  width: fit-content;
  min-width: 27rem;
  margin-inline: auto;
  padding-block: 1.4rem 1.6rem;
  padding-inline: 2rem;
  background-color: #09237d;
  border-radius: 1rem 1rem 0 0;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fff;
  text-align: center;
  align-content: center;
}

.m-relation-container {
  padding-block: 4.5rem 3rem;
  background-color: #f2f4f7;
  border-radius: 3.5rem 3.5rem 0 0;
}

.m-relation-items {
  display: flex;
  gap: 0 3rem;
  position: relative;
  z-index: 1;
}

.m-relation-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.7rem;
}

.m-relation-item-imgBox {
  transition: transform 0.2s ease-out;
  position: relative;
}

.m-relation-item-imgBox::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: -1;
  border-radius: 1.6rem;
  background-color: #09237d;
}

.m-relation-item-img {
  width: 100%;
  aspect-ratio: 366/274;
  background-color: #fff;
  border: 0.6rem solid #fff;
  border-radius: 1.5rem;
  position: relative;
  transition: transform 0.2s ease-out;
}
.m-relation-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (any-hover: hover) {
  .m-relation-item:hover .m-relation-item-img {
    transform: translate(1rem, 1rem);
  }
  .m-relation-item:hover .m-button-gradation-arrow {
    color: #09237d;
    background: #fff;
  }
  .m-relation-item:hover .m-button-gradation-arrow ._arrow {
    background-color: #09237d;
  }
  .m-relation-item:hover .m-button-gradation-arrow ._arrow::before {
    background-color: #fff;
  }
  .m-relation-item:hover .m-button-gradation-arrow ._txt span {
    translate: 0 calc(var(--height) * -1rem);
  }
  .m-relation-item:hover .m-button-gradation-arrow ._txt::after {
    translate: 0 calc(var(--height) * -1rem);
  }
  .m-relation-item:hover .m-button-gradation-arrow ._arrow::before {
    animation: arrow 0.5s;
  }
  .m-relation-item:hover .m-button-gradation-arrow ._arrow::before,
  .m-relation-item:hover .m-button-gradation-arrow ._arrow3::before {
    animation: arrow 0.5s;
  }
}
@media screen and (max-width: 767px) {
  .m-relation-ttl {
    min-width: 38.6666666667vw;
    padding-block: 1.8666666667vw;
    padding-inline: 2.6666666667vw;
    border-radius: 2.6666666667vw 2.6666666667vw 0 0;
    font-size: 2.9333333333vw;
    letter-spacing: 0.1em;
  }
  .m-relation-container {
    padding-block: 6.6666666667vw 10.6666666667vw;
    border-radius: 5.3333333333vw 5.3333333333vw 0 0;
  }
  .m-relation-items {
    flex-direction: column;
    gap: 5.8666666667vw;
  }
  .m-relation-item {
    gap: 4vw;
    padding-inline: 2.6666666667vw;
  }
  .m-relation-item-imgBox::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: -1;
    border-radius: 1.6rem;
    background-color: #09237d;
  }
  .m-relation-item-img {
    aspect-ratio: 314.5/154.03;
    border: 1.6vw solid #fff;
    border-radius: 4vw;
  }
}
/* CTA
-------------------------------------------- */
.m-cta {
  padding-block: 3.2rem 4rem;
  position: relative;
}

.m-cta-bg {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.m-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.m-cta-txt {
  font-size: 2.5rem;
  line-height: 1.72;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 2.8rem;
}

@media screen and (max-width: 767px) {
  .m-cta {
    padding-block: 4.8vw 8vw;
  }
  .m-cta-txt {
    font-size: 4vw;
    line-height: 1.5;
    margin-bottom: 5.3333333333vw;
  }
}
/* ページャー
-------------------------------------------- */
.m-pager {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}

.m-pager-list {
  display: inline-flex;
  align-items: center;
  column-gap: 1rem;
}

.m-pager-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid #09237d;
  color: #09237d;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

.m-pager-item.is-current a {
  background-color: #09237d;
  color: #fff;
}

.m-pager-item-prev a,
.m-pager-item-next a {
  border-color: transparent;
}

.m-pager-prev-symbol,
.m-pager-next-symbol {
  display: block;
  width: 1.8rem;
  height: 2rem;
  background-image: url("/assets/images/common/icn_arrow_right_double.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.m-pager-prev-symbol {
  scale: -1 1;
}

@media screen and (max-width: 767px) {
  .m-pager {
    margin-top: 8vw;
  }
  .m-pager-list {
    column-gap: 3.2vw;
  }
  .m-pager-item a {
    width: 9.6vw;
    height: 9.6vw;
    border: 0.2666666667vw solid #09237d;
    font-size: 4.2666666667vw;
  }
  .m-pager-item-prev a,
  .m-pager-item-next a {
    border-color: transparent;
  }
  .m-pager-prev-symbol,
  .m-pager-next-symbol {
    width: 4.2666666667vw;
    height: 4.8vw;
  }
}
/* アニメーション系
---------------------------------------------------------------------------- */
/* 矢印
-------------------------------------------- */
@keyframes arrow {
  0% {
    transform: translate(0, -50%);
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  49.9% {
    transform: translate(50%, -50%);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, -50%);
    opacity: 0;
  }
  100% {
    transform: translate(0, -50%);
    opacity: 1;
  }
}
/* フェード
-------------------------------------------- */
.m-fade-single-trigger {
  opacity: 0;
}

.m-fade-up {
  animation-name: m-fade-up;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes m-fade-up {
  from {
    opacity: 0;
    translate: 0 10rem;
  }
  to {
    opacity: 1;
    translate: 0;
  }
}
@media screen and (max-width: 767px) {
  @keyframes m-fade-up {
    from {
      opacity: 0;
      translate: 0 26.6666666667vw;
    }
    to {
      opacity: 1;
      translate: 0;
    }
  }
}
/* フェードイン（下から上へ）
-------------------------------------------- */
.m-anime-fade-in {
  opacity: 0;
  translate: 0 1rem;
}

/* 発火時のアニメーション＋遅延をここで定義 */
.m-anime-fade-in.is-active {
  animation-name: fade-in;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes fade-in {
  0% {
    opacity: 0;
    translate: 0 1rem;
  }
  100% {
    opacity: 1;
    translate: 0;
  }
}
/* ズームイン
-------------------------------------------- */
@keyframes zoom-in {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* バウンス
-------------------------------------------- */
.m-anime-bounce-in {
  opacity: 0;
  scale: 0.5;
}

/* 発火時のアニメーション＋遅延をここで定義 */
.m-anime-bounce-in.is-active {
  animation-name: bounce-in;
  animation-duration: 0.35s;
  animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation-fill-mode: forwards;
}

@keyframes bounce-in {
  0% {
    opacity: 0;
    scale: 0.5;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}
/* 上下へバウンス
-------------------------------------------- */
@keyframes updown_anime {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.6rem);
  }
  100% {
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  @keyframes updown_anime {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-1.0666666667vw);
    }
    100% {
      transform: translateY(0);
    }
  }
}
/* 下上へバウンス
-------------------------------------------- */
@keyframes downup_anime {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0.6rem);
  }
  100% {
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  @keyframes downup_anime {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(1.6vw);
    }
  }
}
/* テキストグラデーション
-------------------------------------------- */
.m-anime-mv-child-ttl {
  background: linear-gradient(90deg, #000 45%, #ffffff 50%, rgb(0, 0, 0) 55%);
  background-size: 300% 100%;
  background-position: 100% 0%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
  animation: none; /* ここが重要：初期は動かさない */
}

.m-anime-mv-child-ttl.is-active {
  animation-name: shineToColor;
  animation-duration: 3s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

.m-anime-text-left-right-bk {
  background: linear-gradient(90deg, #000 30%, #09237d 50%, rgba(255, 255, 255, 0) 70%);
  background-size: 300% 100%;
  background-position: 100% 0%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
  animation: none; /* ここが重要：初期は動かさない */
}

.m-anime-text-left-right-wh {
  background: linear-gradient(90deg, #ffffff 30%, #09237d 50%, rgba(255, 255, 255, 0) 70%);
  background-size: 300% 100%;
  background-position: 100% 0%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
  animation: none; /* ここが重要：初期は動かさない */
}

.m-anime-text-left-right-wh.is-active,
.m-anime-text-left-right-bk.is-active {
  animation-name: shineToColor;
  animation-duration: 3s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

@keyframes shineToColor {
  0% {
    /* グラデーションの右端（透明部分）をテキストにぶつける */
    background-position: 100% 0%;
  }
  100% {
    /* グラデーションの左端（黒色部分）まで引き切る */
    background-position: 0% 0%;
  }
}
/* m-anime-txt-blue
---------------------------------------------------------------------------- */
.m-anime-text-left-right {
  opacity: 0;
  position: relative;
  width: fit-content;
  margin-inline: auto;
}

.m-anime-text-left-right_base {
  display: block;
  position: relative;
  color: rgba(205, 0, 0, 0.0509803922);
}

.m-anime-text-left-right-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.m-anime-text-left-right-overlay > .m-anime-text-left-right-overlay-color,
.m-anime-text-left-right-overlay > .m-anime-text-left-right-overlay-base {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-mask: url("/assets/images/common/img_anime_txt_left_right.webp") no-repeat top 20cqh left -35cqw/155% auto;
  mask-image: url("/assets/images/common/img_anime_txt_left_right.webp");
  mask-repeat: no-repeat;
  mask-position: top 20cqh left -35cqw;
  mask-size: 155% auto;
  width: 100%;
  height: 100%;
}

.m-anime-text-left-right.is-active {
  translate: 0 0;
  opacity: 1;
  -webkit-transition: cubic-bezier(0.17, 0.84, 0.43, 0.99) 1s;
  transition: cubic-bezier(0.17, 0.84, 0.43, 0.99) 1s;
  -webkit-transition-property: opacity, translate;
  transition-property: opacity, translate;
}
.m-anime-text-left-right.is-active .m-anime-text-left-right-overlay > .m-anime-text-left-right-overlay-color,
.m-anime-text-left-right.is-active .m-anime-text-left-right-overlay > .m-anime-text-left-right-overlay-base {
  opacity: 1;
  -webkit-mask-position: 50% 30%;
  mask-position: 50% 30%;
  --anime-time: 2.2s;
  --opacity-time: 1.3s;
  -webkit-transition: mask-position var(--anime-time) cubic-bezier(0.23, 0.14, 0, 0.98), opacity var(--opacity-time) cubic-bezier(0.5, 1, 0.89, 1), -webkit-mask-position var(--anime-time) cubic-bezier(0.23, 0.14, 0, 0.98);
  transition: mask-position var(--anime-time) cubic-bezier(0.23, 0.14, 0, 0.98), -webkit-mask-position var(--anime-time) cubic-bezier(0.23, 0.14, 0, 0.98), opacity var(--opacity-time) cubic-bezier(0.5, 1, 0.89, 1);
}
.m-anime-text-left-right.is-active .m-anime-text-left-right-overlay > .m-anime-text-left-right-overlay-base {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.m-anime-text-left-right-overlay._black .m-anime-text-left-right-overlay-color {
  color: #004fbe;
}
.m-anime-text-left-right-overlay._black .m-anime-text-left-right-overlay-base {
  color: #000;
}

.m-anime-text-left-right-overlay._white .m-anime-text-left-right-overlay-color {
  color: #31d3f5;
}
.m-anime-text-left-right-overlay._white .m-anime-text-left-right-overlay-base {
  color: #fff;
}

/* 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;
}*/
@font-face {
  font-family: "hanatotyoutyo";
  src: url("../../fonts/hanatotyoutyo/hanatotyoutyo.woff2") format("woff2"), url("../../fonts/hanatotyoutyo/hanatotyoutyo.woff") format("woff");
  font-display: swap;
  font-weight: 400;
  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: #000;
  font-size: 1.5rem;
}

a {
  text-decoration: none;
  color: #000;
  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.02px) {
  html {
    font-size: 0.625vw;
  }
}
@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
  }
}
/*------------- .l-pagebody -------------*/
.l-pagebody {
  width: 100%;
  overflow: hidden;
}

.l-content {
  max-width: 120rem;
  margin-inline: auto;
}
.l-content._1920 {
  max-width: 192rem;
}

@media screen and (max-width: 767px) {
  .l-content {
    max-width: 100%;
    padding-inline: 5.3333333333vw;
  }
  .l-content._1920 {
    max-width: 100%;
  }
  .l-content._sp-px-0 {
    padding-inline: 0;
  }
  .l-content._sp-px-10 {
    padding-inline: 2.6666666667vw;
  }
}
/*------------- .l-header -------------*/
.l-header {
  height: 10.6rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9000;
  background-color: #fff;
}

.l-header-inner {
  height: 100%;
  max-width: 120rem;
  margin-inline: auto;
}

.l-header-top {
  margin-top: 0.6rem;
}

.l-header-top-inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

.l-header-top-logo {
  display: block;
  width: 28.822rem;
  aspect-ratio: 288.22/50;
}
.l-header-top-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.l-header-top-list {
  display: flex;
  align-items: center;
}

.l-header-top-list > :nth-of-type(2) {
  margin-inline: 4.93rem 4.24rem;
}

.l-header-top-link {
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  padding-bottom: 0.39rem;
}
.l-header-top-link:has(._ico) {
  gap: 1.3rem;
}

.l-header-top-link::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 0.1rem;
  background-color: #09237D;
  transform: scale(1, 1);
  transform-origin: left;
  transition: transform 0.3s;
}

@media (any-hover: hover) {
  .l-header-top-link:hover {
    color: #09237D;
  }
  .l-header-top-link:hover::before {
    transform: scale(0, 1);
  }
}
.l-header-top-link ._ico {
  display: block;
  width: 1.8rem;
  aspect-ratio: 1;
  background-color: #09237D;
  position: relative;
  border-radius: 50%;
}

.l-header-top-link ._ico::before {
  content: "";
  width: 0.9rem;
  height: 0.8rem;
  background-image: url("/assets/images/common/icn_arrow_right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translateY(-50%);
}

.l-header-top-link ._arrow {
  display: block;
  width: 1.8rem;
  aspect-ratio: 1;
  position: relative;
}

.l-header-top-link ._arrow::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background-image: url("/assets/images/common/icn_arrow_right2.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 57%;
  left: 12%;
  transform: translateY(-50%);
}

.l-header-top-link ._note {
  display: block;
  width: 2.3rem;
  aspect-ratio: 1;
  position: relative;
}

.l-header-top-link ._note::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("/assets/images/common/icn_note_n.webp");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media (any-hover: hover) {
  .l-header-top-link:hover ._ico::before {
    animation: arrow 0.5s;
  }
}
.l-header-gnav-list {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 10rem;
  padding-block: 1rem;
  padding-inline: 8.2rem 0;
}

.l-header-gnav-list > :nth-of-type(1) {
  margin-right: 11.7rem;
}

.l-header-gnav-list > :nth-of-type(2) {
  margin-right: 10.8rem;
}

.l-header-gnav-list > :nth-of-type(3) {
  margin-right: 10rem;
}

.l-header-gnav-list > :nth-of-type(4) {
  margin-right: 9rem;
}

.l-header-gnav-list > :nth-of-type(5) {
  margin-right: 8.4rem;
}

.l-header-gnav-link {
  font-size: 1.7rem;
  line-height: 1.1764705882;
  font-weight: 500;
  position: relative;
}

.l-header-gnav-link::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 0.1rem;
  background-color: #09237D;
  transform: scale(0, 1);
  transform-origin: left;
  transition: transform 0.3s;
}

.l-header-gnav-link:hover {
  color: #09237D;
}
.l-header-gnav-link:hover::before {
  transform: scale(1);
}

.l-header-gnav-link ._ico {
  display: none;
  width: 1.8rem;
  aspect-ratio: 1;
  background-color: #09237D;
  position: relative;
  border-radius: 50%;
}

.l-header-gnav-link ._ico::before {
  content: "";
  width: 0.9rem;
  height: 0.8rem;
  background-image: url("/assets/images/common/icn_arrow_right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translateY(-50%);
}

.l-header-gnav-link ._arrow {
  display: block;
  width: 1.8rem;
  aspect-ratio: 1;
  position: relative;
}

.l-header-gnav-link ._arrow::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background-image: url("/assets/images/common/icn_arrow_right2.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 57%;
  left: 12%;
  transform: translateY(-50%);
}

.l-header-meganav {
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50%;
  width: max-content;
  margin-top: 1.2rem;
  padding-block: 1.1rem 1.6rem;
  padding-inline: 1.1rem;
  background-color: rgb(255, 255, 255);
  border-radius: 1rem;
  box-shadow: 0.7rem 0.7rem 2rem rgba(48, 51, 104, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 9001;
}

.l-header-gnav-item:hover .l-header-meganav {
  opacity: 1;
  visibility: visible;
}

.l-header-gnav-item {
  position: relative;
}

.l-header-meganav-inner {
  display: flex;
  gap: 1.5rem;
}

.l-header-meganav-col {
  min-width: 20rem;
}

.l-header-meganav-ttl {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  padding-block: 0.8rem;
  padding-left: 1.5rem;
}
.l-header-meganav-ttl._tokyo {
  background-color: #0061A8;
}
.l-header-meganav-ttl._nagoya {
  background-color: #00664E;
}

.l-header-meganav-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 0.5rem;
  padding-inline: 1.4rem;
}

.l-header-meganav-ttl + .l-header-meganav-list {
  margin-top: 1.9rem;
}

.l-header-meganav-link {
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 500;
  display: block;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.l-header-meganav-list > li:not(:last-of-type) .l-header-meganav-link {
  border-bottom: 1px dotted #000;
  padding-bottom: 1.5rem;
}

.l-header-meganav-link::after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.3rem solid #09237D;
  border-right: 0.3rem solid #09237D;
  rotate: 45deg;
  transition: all 0.4s ease-in-out;
}

.l-header-meganav-link._tokyo::after {
  border-top-color: #0061A8;
  border-right-color: #0061A8;
}

.l-header-meganav-link._nagoya::after {
  border-top-color: #00664E;
  border-right-color: #00664E;
}

.l-header-meganav-link:hover {
  color: #09237D;
}
.l-header-meganav-link:hover._tokyo {
  color: #0061A8;
}
.l-header-meganav-link:hover._nagoya {
  color: #00664E;
}
.l-header-meganav-link:hover::after {
  translate: 0.6rem;
}

@media screen and (max-width: 767px) {
  .l-header {
    height: 16vw;
  }
  .l-header-inner {
    max-width: 100%;
    padding-inline: 5.3333333333vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .l-header-top {
    margin-top: 0;
  }
  .l-header-top-logo {
    width: 56.8906666667vw;
    aspect-ratio: 213.34/37;
  }
  .l-header-top-list {
    display: flex;
    align-items: center;
  }
  .l-header-top-list > :nth-of-type(2) {
    margin-inline: 13.1466666667vw 11.3066666667vw;
  }
  .l-header-top-link {
    font-size: 1.4rem;
    line-height: 1.2;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1.6vw;
    padding-bottom: 1.04vw;
    border-bottom: 1px solid #213CBE;
  }
  .l-header-top-link:has(._ico) {
    gap: 3.4666666667vw;
  }
  .l-header-top-link::before {
    content: none;
  }
  .l-header-top-link ._ico {
    display: block;
    width: 4.2666666667vw;
    aspect-ratio: 1;
    background-color: #09237D;
    position: relative;
    border-radius: 50%;
  }
  .l-header-top-link ._ico::before {
    content: "";
    width: 2.4vw;
    height: 2.1333333333vw;
    background-image: url("/assets/images/common/icn_arrow_right.svg");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .l-header-top-link ._arrow {
    display: block;
    width: 4.2666666667vw;
    aspect-ratio: 1;
    position: relative;
  }
  .l-header-top-link ._arrow::before {
    content: "";
    width: 4.2666666667vw;
    height: 4.2666666667vw;
    background-image: url("/assets/images/common/icn_arrow_right2.svg");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .l-header-gnav-wrap {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 16vw;
    right: -100%;
    width: 100%;
    max-height: calc(100svh - 16vw);
    transition: right 0.3s ease;
    overflow-y: auto;
  }
  .l-header-gnav-wrap.is-open {
    right: 0;
  }
  .l-header-gnav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 5.3333333333vw;
    border-radius: 0;
    padding-block: 6.1333333333vw 6.6666666667vw;
    padding-inline: 14.4vw;
  }
  .l-header-gnav-list > :nth-of-type(1) {
    margin-right: 0;
  }
  .l-header-gnav-list > :nth-of-type(2) {
    margin-right: 0;
  }
  .l-header-gnav-list > :nth-of-type(3) {
    margin-right: 0;
  }
  .l-header-gnav-list > :nth-of-type(4) {
    margin-right: 0;
  }
  .l-header-gnav-list > :nth-of-type(5) {
    margin-right: 0;
  }
  .l-header-gnav-link {
    font-size: 3.2vw;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .l-header-gnav-link::before {
    content: none;
  }
  .l-header-gnav-link ._ico {
    display: block;
    width: auto;
  }
  .l-header-gnav-link ._arrow2 {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    border-top: 0.8vw solid #09237D;
    border-right: 0.8vw solid #09237D;
    rotate: 45deg;
    translate: -50% 0;
  }
  .l-header-gnav-link ._arrow {
    width: 4.2666666667vw;
  }
  .l-header-gnav-link ._arrow::before {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
  .l-header-gnav-link ._note-wrap {
    display: flex;
    align-items: center;
    gap: 1.0666666667vw;
  }
  .l-header-gnav-link ._note {
    display: block;
    width: 6.1333333333vw;
    aspect-ratio: 1;
    position: relative;
  }
  .l-header-gnav-link ._note::before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("/assets/images/common/icn_note_n.webp");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .l-header-gnav-link:has(+ .l-header-meganav) ._ico {
    width: 4.2666666667vw;
    aspect-ratio: 1;
    border: 1px solid #231815;
    position: relative;
    background-color: #fff;
  }
  .l-header-gnav-link:has(+ .l-header-meganav) ._ico::before,
  .l-header-gnav-link:has(+ .l-header-meganav) ._ico::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2.4vw;
    height: 0.2666666667vw;
    background-color: #231815;
  }
  .l-header-gnav-link:has(+ .l-header-meganav) ._ico::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 0.3s ease;
  }
  .l-header-gnav-link:has(+ .l-header-meganav).is-open ._ico::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .l-header-meganav {
    position: static;
    top: 0;
    left: 0;
    translate: 0;
    width: 100%;
    margin-top: 3.2vw;
    padding: 0;
    padding-inline: 4vw;
    background-color: initial;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  .l-header-gnav-list > li:not(:last-of-type) {
    padding-bottom: 2.9333333333vw;
    width: 100%;
  }
  .l-header-gnav-list > li:not(:last-of-type)::before {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50%;
    background: radial-gradient(circle at center, #000 0.2666666667vw, transparent 0.2666666667vw);
    background-size: 1.6vw 0.2666666667vw;
    height: 0.2666666667vw;
    width: 100%;
  }
  .l-header-gnav-item {
    width: 100%;
  }
  .l-header-meganav-inner {
    flex-direction: column;
    gap: 0;
  }
  .l-header-meganav-top {
    font-size: 3.2vw;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.6vw;
    align-items: center;
    margin-block: 4vw 5.6vw;
  }
  .l-header-meganav-top::after {
    content: "";
    width: 1.6vw;
    height: 1.6vw;
    border-top: 0.8vw solid #09237D;
    border-right: 0.8vw solid #09237D;
    rotate: 45deg;
    transition: all 0.4s ease-in-out;
  }
  .l-header-meganav-top:hover {
    color: #09237D;
  }
  .l-header-meganav-top:hover::after {
    translate: 1.6vw;
  }
  .l-header-meganav-col {
    min-width: auto;
  }
  .l-header-meganav-col + .l-header-meganav-col {
    margin-top: 5.8666666667vw;
  }
  .l-header-meganav-ttl {
    font-size: 3.2vw;
    padding-block: 0.5333333333vw 0.8vw;
    padding-left: 2.9333333333vw;
    margin-bottom: 4.5333333333vw;
  }
  .l-header-meganav-list {
    flex-direction: column;
    gap: 2.9333333333vw;
    margin-top: 0;
    padding-inline: 0;
  }
  .l-header-meganav-ttl + .l-header-meganav-list {
    margin-top: 0;
  }
  .l-header-meganav-link {
    font-size: 3.2vw;
    line-height: 1.5;
    gap: 2.6666666667vw;
  }
  .l-header-meganav-list > li:not(:last-of-type) .l-header-meganav-link {
    padding-bottom: 2.9333333333vw;
  }
  .l-header-meganav-link::after {
    width: 1.6vw;
    height: 1.6vw;
    border-top: 0.8vw solid #09237D;
    border-right: 0.8vw solid #09237D;
  }
  .l-header-meganav-link:hover::after {
    translate: 1.6vw;
  }
  .m-menu-icon-wrap {
    font-size: 3.4666666667vw;
    line-height: 1;
    font-weight: 700;
    text-align: start;
    color: #fff;
    width: 23.2vw;
    padding-block: 1.3333333333vw 0.8vw;
    padding-inline: 3.2vw 0;
    background-color: #09237D;
    border-radius: 10vmax;
    position: relative;
  }
  .m-menu-icon,
  .m-menu-icon::before,
  .m-menu-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 3.8666666667vw;
    height: 0.5333333333vw;
    background-color: #fff;
    transition: transform 0.3s ease 0s;
  }
  .m-menu-icon {
    top: 50%;
    left: 16.2666666667vw;
    transform: translateY(-50%);
    background-color: transparent;
  }
  .m-menu-icon::before {
    transform: translateY(-0.8vw);
  }
  .m-menu-icon::after {
    transform: translateY(0.8vw);
  }
  .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: none;
  }
  .l-menu-cover.is-open {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: calc(100svh + 16vw);
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 7999;
  }
  .l-header-gnav-btn-wrap {
    background-color: #fff;
    padding-bottom: 5.3333333333vw;
  }
  .l-header-gnav-btn-wrap .m-button-gradation-arrow {
    width: 72.2666666667vw;
    padding-block: 1.3333333333vw 1.0666666667vw;
    padding-inline: 1.3333333333vw;
    font-size: 3.7333333333vw;
    line-height: 1.5;
    font-weight: 400;
  }
  .l-header-gnav-sns-list {
    display: flex;
    align-items: center;
    gap: 4.2666666667vw;
    background-color: #fff;
    padding-block: 4.8vw 9.8666666667vw;
    padding-inline: 12vw 0;
    position: relative;
  }
  .l-header-gnav-sns-list::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50%;
    background: radial-gradient(circle at center, #000 0.2666666667vw, transparent 0.2666666667vw);
    background-size: 1.6vw 0.2666666667vw;
    height: 0.2666666667vw;
    width: 75%;
  }
  .l-header-gnav-sns-note {
    display: block;
    width: 17.8666666667vw;
    aspect-ratio: 132/50;
  }
  .l-header-gnav-sns-note img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  .l-header-gnav-sns-instagram {
    display: flex;
    align-items: center;
    gap: 1.8666666667vw;
  }
  .l-header-gnav-sns-instagram img {
    width: 6.6666666667vw;
    aspect-ratio: 37/37;
    object-fit: contain;
    object-position: center;
  }
  .l-header-gnav-sns-instagram span {
    font-size: 3.2vw;
    line-height: 1.3;
  }
  .l-header-gnav-close {
    display: inline-block;
    width: 100%;
    font-size: 3.2vw;
    color: #000;
    text-align: center;
    background-color: #f2f4f7;
    border-bottom-left-radius: 5.3333333333vw;
    border-bottom-right-radius: 5.3333333333vw;
    padding-block: 5.0666666667vw;
  }
}
/*------------- .l-gnav -------------*/
/*------------- .l-breadcrumbs -------------*/
.m-mv-child .l-breadcrumbs {
  margin-top: 8.5416666667vw;
}

.m-mv-child:has(.m-mv-child-ttl ._small) .l-breadcrumbs {
  margin-top: 6.6145833333vw;
}

.l-breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 0.875vw;
}
.l-breadcrumbs ol li {
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 500;
  font-size: 0.7291666667vw;
  position: relative;
}
.l-breadcrumbs ol li::before {
  position: absolute;
  content: "-";
  top: 0;
  right: -0.5em;
  transform: translateX(100%);
  font-weight: 400;
}
.l-breadcrumbs ol li a {
  color: #6E7484;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.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: #09237D;
}

.l-breadcrumbs.is-plan ol li a {
  color: #fff;
}
.l-breadcrumbs.is-plan ol li:last-child a {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .m-mv-child .l-breadcrumbs {
    margin-top: 17.6vw;
  }
  .m-mv-child:has(.m-mv-child-ttl ._small) .l-breadcrumbs {
    margin-top: 15.4666666667vw;
  }
  .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-breadcrumbs ol {
    gap: 3.4666666667vw;
  }
  .l-breadcrumbs ol li {
    font-size: 3.2vw;
  }
}
/*------------- .l-sidebar -------------*/
/*------------- .l-pagetop -------------*/
.l-pagetop {
  position: fixed;
  bottom: 5rem;
  right: 11.9791666667vw;
  z-index: 1000;
}
.l-pagetop.is-fix {
  position: absolute;
  bottom: initial;
  translate: 0 -50%;
}

.l-pagetop-link {
  display: block;
  width: 6.2rem;
  height: 6.2rem;
  background-color: #fff;
  box-shadow: 0 0 1.5rem rgba(25, 25, 104, 0.15);
  border-radius: 50%;
  position: relative;
}
.l-pagetop-link::before {
  content: "";
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  width: 2.5rem;
  height: 1.4896919907rem;
  background-color: #000000;
  position: absolute;
  top: 50%;
  left: 51%;
  translate: -50% -50%;
}

@media (any-hover: hover) {
  .l-pagetop:hover .l-pagetop-link::before {
    animation-name: updown_anime;
    animation-duration: 0.8s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
  }
}
@media screen and (max-width: 767px) {
  .l-pagetop {
    bottom: 5.3333333333vw;
    right: 5.3333333333vw;
  }
  .l-pagetop-link {
    width: 8vw;
    height: 8vw;
    box-shadow: 0 0 4vw rgba(25, 25, 104, 0.15);
  }
  .l-pagetop-link::before {
    width: 3.3333333333vw;
    height: calc(3.3333333333vw / 2 * 1.1917535926);
  }
}
/*------------- .l-footer -------------*/
.l-footer-bg {
  position: relative;
  padding-block: 3.2rem 2.8rem;
}

.l-footer-bg-img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -10;
}
.l-footer-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.l-footer-inner {
  display: flex;
  gap: 4.2rem;
}

.l-footer-logo-link {
  display: block;
}

.l-footer-logo {
  display: block;
  width: 25.7rem;
  aspect-ratio: 257/45;
  margin-block: 0.6rem 3.4rem;
}
.l-footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.l-footer-sns {
  display: flex;
  flex-direction: column;
  margin-left: 5.5rem;
}

.l-footer-sns-note {
  width: 7.4rem;
  aspect-ratio: 74/28;
  margin-bottom: 1.2rem;
}
.l-footer-sns-note img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.l-footer-sns-instagram {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.l-footer-sns-instagram span {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 700;
  color: #000;
}
.l-footer-sns-instagram img {
  width: 2.2rem;
  aspect-ratio: 22/22;
  object-fit: contain;
  object-position: center;
}
.l-footer-sns-instagram:nth-of-type(3) {
  margin-block: 1.5rem;
}

.l-footer-list {
  display: grid;
  grid-template: "a . b . c" auto ". . . . ." 1.9rem "d . e . f" auto/auto 3rem auto 2rem auto;
}
.l-footer-list > :nth-of-type(1) {
  grid-area: a;
}
.l-footer-list > :nth-of-type(2) {
  grid-area: b;
}
.l-footer-list > :nth-of-type(3) {
  grid-area: c;
}
.l-footer-list > :nth-of-type(4) {
  grid-area: d;
}
.l-footer-list > :nth-of-type(5) {
  grid-area: e;
}
.l-footer-list > :nth-of-type(6) {
  grid-area: f;
}

.l-footer-list-link {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.l-footer-bottom-list .l-footer-list-link {
  position: relative;
}
.l-footer-bottom-list .l-footer-list-link::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 0.1rem;
  background-color: #09237D;
  transform: scale(0, 1);
  transform-origin: left;
  transition: transform 0.3s;
}
@media (any-hover: hover) {
  .l-footer-bottom-list .l-footer-list-link:hover::before {
    transform: scale(1);
  }
}

.l-footer-list-link ._ico {
  display: block;
  width: 1.8rem;
  aspect-ratio: 1;
  background-color: #09237D;
  position: relative;
  border-radius: 50%;
}

.l-footer-list-link ._ico::before {
  content: "";
  width: 0.9rem;
  height: 0.8rem;
  background-image: url("/assets/images/common/icn_arrow_right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translateY(-50%);
}

.l-footer-list-link ._arrow {
  display: block;
  width: 1.8rem;
  aspect-ratio: 1;
  position: relative;
}

.l-footer-list-link ._arrow::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background-image: url("/assets/images/common/icn_arrow_right2.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 57%;
  left: 12%;
  transform: translateY(-50%);
}

.l-footer-list-link ._note-wrap {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.l-footer-list-link ._note {
  display: block;
  width: 2.3rem;
  aspect-ratio: 1;
  position: relative;
}

.l-footer-list-link ._note::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("/assets/images/common/icn_note_n.webp");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media (any-hover: hover) {
  .l-footer-list-link:hover ._ico::before {
    animation: arrow 0.5s;
  }
}
.l-footer-list-child {
  margin-top: 0.8rem;
}

.l-footer-list-child-list {
  margin-block: auto;
}

.l-footer-list-child-list li:not(:first-of-type) {
  margin-top: 0.1rem;
}

.l-footer-list-child-link {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}

.l-footer-list-child-link::after {
  content: "";
  width: 0.5rem;
  aspect-ratio: 1;
  background-color: #09237D;
  position: absolute;
  top: 0.75rem;
  left: 0.4rem;
  border-radius: 50%;
}

.l-footer-list-child-link::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 0.1rem;
  background-color: #09237D;
  transform: scale(0, 1);
  transform-origin: left;
  transition: transform 0.3s;
}

@media (any-hover: hover) {
  .l-footer-list-child-link:hover::before {
    transform: scale(1);
  }
}
.l-footer-list-child-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  justify-content: flex-start;
  margin-top: 1rem;
}

.l-footer-list-child-inner-right,
.l-footer-list-child-inner-left {
  display: flex;
  gap: 0.4rem;
}

.l-footer-list-child-heading {
  font-size: 1.4rem;
  line-height: 1.0714285714;
  font-weight: 500;
  color: #fff;
  text-align: center;
  border-radius: 10vmax;
  padding-block: 0.6rem;
  padding-inline: 0.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.l-footer-list-child-heading._tokyo {
  background-color: #0061A8;
}
.l-footer-list-child-heading._nagoya {
  background-color: #00664E;
}

.l-footer-inner-bottom {
  display: flex;
  margin-top: 1.6rem;
}
.l-footer-inner-bottom > :first-of-type {
  margin-right: 4.4rem;
}
.l-footer-inner-bottom > :last-of-type {
  margin-left: 5rem;
}

.l-footer-bottom-list {
  display: flex;
  align-items: center;
}

.l-footer-bottom-list:first-of-type {
  gap: 1.2rem;
}

.l-footer-bottom-list:nth-of-type(2) {
  gap: 3.2rem;
}

.l-footer-bottom-nav-list {
  display: flex;
  align-items: center;
}

.l-footer-bottom-nav-list li {
  position: relative;
}

.l-footer-bottom-nav-list li:not(:first-of-type) {
  padding-left: 1.6rem;
  margin-left: 1.6rem;
}

.l-footer-bottom-nav-list li:not(:first-of-type)::before {
  content: "";
  width: 0.1rem;
  height: 1.228rem;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}

.l-footer-bottom-nav-list a {
  font-size: 1.2rem;
  line-height: 1.75;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
}

.l-footer-bottom-nav-list a::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 0.1rem;
  background-color: #09237D;
  transform: scale(0, 1);
  transform-origin: left;
  transition: transform 0.3s;
}

@media (any-hover: hover) {
  .l-footer-bottom-nav-list a:hover::before {
    transform: scale(1);
  }
}
.l-footer-bottom-nav-list a ._arrow {
  display: block;
  width: 1.4rem;
  aspect-ratio: 1;
  position: relative;
}

.l-footer-bottom-nav-list a ._arrow::before {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background-image: url("/assets/images/common/icn_arrow_right2.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}

.l-footer-copyright {
  background-color: #09237D;
  font-size: 1.2rem;
  line-height: 1.6666666667;
  font-weight: 400;
  color: #B3CBDC;
  text-align: center;
  padding-block: 0.3rem 0.4rem;
}

@media screen and (max-width: 767px) {
  .l-footer-bg {
    padding-block: 6.1333333333vw 8vw;
  }
  .l-footer-inner {
    display: flex;
    gap: 4.2666666667vw;
    flex-direction: column;
    padding-inline: 2.6666666667vw;
  }
  .l-footer-logo {
    width: 40.6746666667vw;
    aspect-ratio: 152.53/26.49;
    margin-block: 0 0;
  }
  .l-footer-sns {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 3.4666666667vw;
    margin-left: 0;
    padding-block: 5.3333333333vw 5.3333333333vw;
  }
  .l-footer-sns-note {
    width: 19.7333333333vw;
    aspect-ratio: 74/28;
    margin-bottom: 0;
  }
  .l-footer-sns-instagram {
    gap: 2.6666666667vw;
  }
  .l-footer-sns-instagram span {
    font-size: 3.2vw;
    line-height: 1.5;
  }
  .l-footer-sns-instagram img {
    width: 5.8666666667vw;
  }
  .l-footer-sns-instagram:nth-of-type(3) {
    margin-block: 0;
  }
  .l-footer-list {
    display: flex;
    flex-direction: column;
    gap: 3.4666666667vw;
  }
  .l-footer-list > li:not(:last-of-type) {
    border-bottom: 0.2666666667vw dotted #000;
    padding-bottom: 1.6vw;
  }
  .l-footer-list-link {
    font-size: 4vw;
    line-height: 1.5;
    justify-content: space-between;
    gap: 0;
  }
  .l-footer-bottom-list .l-footer-list-link::before {
    content: none;
  }
  .l-footer-list-link ._ico {
    width: 4.8vw;
  }
  .l-footer-list-link ._ico::before {
    width: 2.4vw;
    height: 2.1333333333vw;
  }
  .l-footer-list-link ._arrow {
    width: 4.8vw;
  }
  .l-footer-list-link ._arrow::before {
    width: 4.8vw;
    height: 4.8vw;
  }
  .l-footer-list-link ._note-wrap {
    gap: 1.0666666667vw;
  }
  .l-footer-list-link ._note {
    width: 6.1333333333vw;
  }
  .l-footer-list-link:has(+ .l-footer-list-child) ._ico {
    width: 4.8vw;
    aspect-ratio: 1;
    background-color: #fff;
    border: 1px solid #231815;
    position: relative;
  }
  .l-footer-list-link:has(+ .l-footer-list-child) ._ico::before,
  .l-footer-list-link:has(+ .l-footer-list-child) ._ico::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2.4vw;
    height: 0.2666666667vw;
    background-color: #231815;
  }
  .l-footer-list-link:has(+ .l-footer-list-child) ._ico::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 0.3s ease;
  }
  .l-footer-list-link:has(+ .l-footer-list-child).is-open ._ico::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .l-footer-list-child {
    margin-top: 2.4vw;
    padding-left: 8vw;
    display: none;
  }
  .l-footer-list-child-list {
    margin-block: 1.2rem auto;
  }
  .l-footer-list-child-list li:not(:first-of-type) {
    margin-top: 0.8vw;
  }
  .l-footer-list-child-link {
    position: relative;
    padding-left: 4vw;
    font-size: 3.7333333333vw;
    line-height: 1.5;
  }
  .l-footer-list-child-link::after {
    content: "";
    width: 1.3333333333vw;
    aspect-ratio: 1;
    background-color: #09237D;
    position: absolute;
    top: 2vw;
    left: 1.0666666667vw;
    border-radius: 50%;
  }
  .l-footer-list-child-link::before {
    content: none;
  }
  .l-footer-list-child-link-top {
    font-size: 4vw;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 1.6vw;
  }
  .l-footer-list-child-link-top ._ico {
    display: block;
    width: 4.8vw;
    aspect-ratio: 1;
    background-color: #09237D;
    position: relative;
    border-radius: 50%;
  }
  .l-footer-list-child-link-top ._ico::before {
    content: "";
    width: 2.4vw;
    height: 2.1333333333vw;
    background-image: url("/assets/images/common/icn_arrow_right.svg");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .l-footer-list-child-inner {
    grid-template-columns: 1fr;
    gap: 3.2vw;
    margin-top: 3.2vw;
    padding-bottom: 3.2vw;
  }
  .l-footer-list-child-inner-right,
  .l-footer-list-child-inner-left {
    gap: 1.8666666667vw;
  }
  .l-footer-list-child-heading {
    font-size: 3.7333333333vw;
    padding-block: 2.6666666667vw;
    padding-inline: 0.8vw;
  }
  .l-footer-inner-bottom {
    display: none;
  }
  .l-footer-copyright {
    font-size: 3.2vw;
    padding-block: 0.2666666667vw 0.5333333333vw;
  }
}
/* module
---------------------------------------------------------------------------- */
/* RWD表示切り替え
---------------------------------------------------------------------------- */
@media all and (min-width: 767.02px) {
  .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%;
  }
}
