@charset "UTF-8";

/* font
-----------------------------------------------------*/
/* sans-serif */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2"), url("../fonts/NotoSansJP-Regular.woff") format("woff");
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: bold;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/NotoSansJP-Bold.woff2") format("woff2"), url("../fonts/NotoSansJP-Bold.woff") format("woff");
}

/* serif */
@font-face {
  font-family: "Noto Serif CJK JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSerifCJKjp-Regular.woff") format("woff");
}

@font-face {
  font-family: "Noto Serif CJK JP";
  font-style: bold;
  font-weight: 700;
  src: url("../fonts/NotoSerifCJKjp-Bold.woff") format("woff");
}

/* mixin var
-----------------------------------------------------*/
/* reset
-----------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1;
}

article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  display: block;
}

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

/* html
-----------------------------------------------------*/
html {
  overflow: auto;
  font-size: 62.5%;
}

html.is-large {
  font-size: 70%;
}

body {
  color: #333;
  /*font: 1.6rem/1.8 YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;*/
  font: 1.6rem/1.8 "Noto Sans JP", sans-serif;
  /*font:1.6rem/1.8 "Noto Serif CJK JP", serif;*/
  font-weight: 400;
  overflow-wrap: break-word;
  word-break: break-word;
}

@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
    font-weight: 400;
  }
}

/* link
-----------------------------------------------------*/
a {
  color: #1A1A1A;
}

a:hover,
a:active,
a:focus {
  color: rgb(102.5, 102.5, 102.5);
}

a {
  transition: 0.3s linear;
}

/*flex
-----------------------------------------------------*/
.flex {
  display: flex;
}

@media (max-width: 1199px) {
  .flex-xl {
    display: flex !important;
  }
}

@media (max-width: 1023px) {
  .flex-lg {
    display: flex !important;
  }
}

@media (max-width: 767px) {
  .flex-md {
    display: flex !important;
  }
}

@media (max-width: 575px) {
  .flex-sm {
    display: flex !important;
  }
}

.justify-start {
  justify-content: start;
}

@media (max-width: 1199px) {
  .justify-start-xl {
    justify-content: start !important;
  }
}

@media (max-width: 1023px) {
  .justify-start-lg {
    justify-content: start !important;
  }
}

@media (max-width: 767px) {
  .justify-start-md {
    justify-content: start !important;
  }
}

@media (max-width: 575px) {
  .justify-start-sm {
    justify-content: start !important;
  }
}

.justify-center {
  justify-content: center;
}

@media (max-width: 1199px) {
  .justify-center-xl {
    justify-content: center !important;
  }
}

@media (max-width: 1023px) {
  .justify-center-lg {
    justify-content: center !important;
  }
}

@media (max-width: 767px) {
  .justify-center-md {
    justify-content: center !important;
  }
}

@media (max-width: 575px) {
  .justify-center-sm {
    justify-content: center !important;
  }
}

.justify-between {
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .justify-between-xl {
    justify-content: space-between !important;
  }
}

@media (max-width: 1023px) {
  .justify-between-lg {
    justify-content: space-between !important;
  }
}

@media (max-width: 767px) {
  .justify-between-md {
    justify-content: space-between !important;
  }
}

@media (max-width: 575px) {
  .justify-between-sm {
    justify-content: space-between !important;
  }
}

.justify-around {
  justify-content: space-around;
}

@media (max-width: 1199px) {
  .justify-around-xl {
    justify-content: space-around !important;
  }
}

@media (max-width: 1023px) {
  .justify-around-lg {
    justify-content: space-around !important;
  }
}

@media (max-width: 767px) {
  .justify-around-md {
    justify-content: space-around !important;
  }
}

@media (max-width: 575px) {
  .justify-around-sm {
    justify-content: space-around !important;
  }
}

.justify-end {
  justify-content: end;
}

@media (max-width: 1199px) {
  .justify-end-xl {
    justify-content: end !important;
  }
}

@media (max-width: 1023px) {
  .justify-end-lg {
    justify-content: end !important;
  }
}

@media (max-width: 767px) {
  .justify-end-md {
    justify-content: end !important;
  }
}

@media (max-width: 575px) {
  .justify-end-sm {
    justify-content: end !important;
  }
}

.align-items-start {
  align-items: flex-start;
}

@media (max-width: 1199px) {
  .align-items-start-xl {
    align-items: flex-start !important;
  }
}

@media (max-width: 1023px) {
  .align-items-start-lg {
    align-items: flex-start !important;
  }
}

@media (max-width: 767px) {
  .align-items-start-md {
    align-items: flex-start !important;
  }
}

@media (max-width: 575px) {
  .align-items-start-sm {
    align-items: flex-start !important;
  }
}

.align-items-center {
  align-items: center;
}

@media (max-width: 1199px) {
  .align-items-center-xl {
    align-items: center !important;
  }
}

@media (max-width: 1023px) {
  .align-items-center-lg {
    align-items: center !important;
  }
}

@media (max-width: 767px) {
  .align-items-center-md {
    align-items: center !important;
  }
}

@media (max-width: 575px) {
  .align-items-center-sm {
    align-items: center !important;
  }
}

.align-items-end {
  align-items: end;
}

@media (max-width: 1199px) {
  .align-items-end-xl {
    align-items: end !important;
  }
}

@media (max-width: 1023px) {
  .align-items-end-lg {
    align-items: end !important;
  }
}

@media (max-width: 767px) {
  .align-items-end-md {
    align-items: end !important;
  }
}

@media (max-width: 575px) {
  .align-items-end-sm {
    align-items: end !important;
  }
}

.flex-wrap {
  flex-wrap: wrap;
}

@media (max-width: 1199px) {
  .flex-wrap-xl {
    flex-wrap: wrap !important;
  }
}

@media (max-width: 1023px) {
  .flex-wrap-lg {
    flex-wrap: wrap !important;
  }
}

@media (max-width: 767px) {
  .flex-wrap-md {
    flex-wrap: wrap !important;
  }
}

@media (max-width: 575px) {
  .flex-wrap-sm {
    flex-wrap: wrap !important;
  }
}

.flex-nowrap {
  flex-wrap: nowrap;
}

@media (max-width: 1199px) {
  .flex-nowrap-xl {
    flex-wrap: nowrap !important;
  }
}

@media (max-width: 1023px) {
  .flex-nowrap-lg {
    flex-wrap: nowrap !important;
  }
}

@media (max-width: 767px) {
  .flex-nowrap-md {
    flex-wrap: nowrap !important;
  }
}

@media (max-width: 575px) {
  .flex-nowrap-sm {
    flex-wrap: nowrap !important;
  }
}

/*font-size
-----------------------------------------------------*/
.fs-10 {
  font-size: 1rem;
}

.fs-11 {
  font-size: 1.1rem;
}

.fs-12 {
  font-size: 1.2rem;
}

.fs-13 {
  font-size: 1.3rem;
}

.fs-14 {
  font-size: 1.4rem;
}

.fs-15 {
  font-size: 1.5rem;
}

.fs-16 {
  font-size: 1.6rem;
}

.fs-17 {
  font-size: 1.7rem;
}

.fs-18 {
  font-size: 1.8rem;
}

.fs-19 {
  font-size: 1.9rem;
}

.fs-20 {
  font-size: 2rem;
}

.fs-21 {
  font-size: 2.1rem;
}

.fs-22 {
  font-size: 2.2rem;
}

.fs-23 {
  font-size: 2.3rem;
}

.fs-24 {
  font-size: 2.4rem;
}

.fs-25 {
  font-size: 2.5rem;
}

.fs-26 {
  font-size: 2.6rem;
}

.fs-27 {
  font-size: 2.7rem;
}

.fs-28 {
  font-size: 2.8rem;
}

.fs-29 {
  font-size: 2.9rem;
}

.fs-30 {
  font-size: 3rem;
}

@media (max-width: 1199px) {
  .fs-10-xl {
    font-size: 1rem !important;
  }

  .fs-11-xl {
    font-size: 1.1rem !important;
  }

  .fs-12-xl {
    font-size: 1.2rem !important;
  }

  .fs-13-xl {
    font-size: 1.3rem !important;
  }

  .fs-14-xl {
    font-size: 1.4rem !important;
  }

  .fs-15-xl {
    font-size: 1.5rem !important;
  }

  .fs-16-xl {
    font-size: 1.6rem !important;
  }

  .fs-17-xl {
    font-size: 1.7rem !important;
  }

  .fs-18-xl {
    font-size: 1.8rem !important;
  }

  .fs-19-xl {
    font-size: 1.9rem !important;
  }

  .fs-20-xl {
    font-size: 2rem !important;
  }

  .fs-21-xl {
    font-size: 2.1rem !important;
  }

  .fs-22-xl {
    font-size: 2.2rem !important;
  }

  .fs-23-xl {
    font-size: 2.3rem !important;
  }

  .fs-24-xl {
    font-size: 2.4rem !important;
  }

  .fs-25-xl {
    font-size: 2.5rem !important;
  }

  .fs-26-xl {
    font-size: 2.6rem !important;
  }

  .fs-27-xl {
    font-size: 2.7rem !important;
  }

  .fs-28-xl {
    font-size: 2.8rem !important;
  }

  .fs-29-xl {
    font-size: 2.9rem !important;
  }

  .fs-30-xl {
    font-size: 3rem !important;
  }
}

@media (max-width: 1023px) {
  .fs-10-lg {
    font-size: 1rem !important;
  }

  .fs-11-lg {
    font-size: 1.1rem !important;
  }

  .fs-12-lg {
    font-size: 1.2rem !important;
  }

  .fs-13-lg {
    font-size: 1.3rem !important;
  }

  .fs-14-lg {
    font-size: 1.4rem !important;
  }

  .fs-15-lg {
    font-size: 1.5rem !important;
  }

  .fs-16-lg {
    font-size: 1.6rem !important;
  }

  .fs-17-lg {
    font-size: 1.7rem !important;
  }

  .fs-18-lg {
    font-size: 1.8rem !important;
  }

  .fs-19-lg {
    font-size: 1.9rem !important;
  }

  .fs-20-lg {
    font-size: 2rem !important;
  }

  .fs-21-lg {
    font-size: 2.1rem !important;
  }

  .fs-22-lg {
    font-size: 2.2rem !important;
  }

  .fs-23-lg {
    font-size: 2.3rem !important;
  }

  .fs-24-lg {
    font-size: 2.4rem !important;
  }

  .fs-25-lg {
    font-size: 2.5rem !important;
  }

  .fs-26-lg {
    font-size: 2.6rem !important;
  }

  .fs-27-lg {
    font-size: 2.7rem !important;
  }

  .fs-28-lg {
    font-size: 2.8rem !important;
  }

  .fs-29-lg {
    font-size: 2.9rem !important;
  }

  .fs-30-lg {
    font-size: 3rem !important;
  }
}

@media (max-width: 767px) {
  .fs-10-md {
    font-size: 1rem !important;
  }

  .fs-11-md {
    font-size: 1.1rem !important;
  }

  .fs-12-md {
    font-size: 1.2rem !important;
  }

  .fs-13-md {
    font-size: 1.3rem !important;
  }

  .fs-14-md {
    font-size: 1.4rem !important;
  }

  .fs-15-md {
    font-size: 1.5rem !important;
  }

  .fs-16-md {
    font-size: 1.6rem !important;
  }

  .fs-17-md {
    font-size: 1.7rem !important;
  }

  .fs-18-md {
    font-size: 1.8rem !important;
  }

  .fs-19-md {
    font-size: 1.9rem !important;
  }

  .fs-20-md {
    font-size: 2rem !important;
  }

  .fs-21-md {
    font-size: 2.1rem !important;
  }

  .fs-22-md {
    font-size: 2.2rem !important;
  }

  .fs-23-md {
    font-size: 2.3rem !important;
  }

  .fs-24-md {
    font-size: 2.4rem !important;
  }

  .fs-25-md {
    font-size: 2.5rem !important;
  }

  .fs-26-md {
    font-size: 2.6rem !important;
  }

  .fs-27-md {
    font-size: 2.7rem !important;
  }

  .fs-28-md {
    font-size: 2.8rem !important;
  }

  .fs-29-md {
    font-size: 2.9rem !important;
  }

  .fs-30-md {
    font-size: 3rem !important;
  }
}

@media (max-width: 575px) {
  .fs-10-sm {
    font-size: 1rem !important;
  }

  .fs-11-sm {
    font-size: 1.1rem !important;
  }

  .fs-12-sm {
    font-size: 1.2rem !important;
  }

  .fs-13-sm {
    font-size: 1.3rem !important;
  }

  .fs-14-sm {
    font-size: 1.4rem !important;
  }

  .fs-15-sm {
    font-size: 1.5rem !important;
  }

  .fs-16-sm {
    font-size: 1.6rem !important;
  }

  .fs-17-sm {
    font-size: 1.7rem !important;
  }

  .fs-18-sm {
    font-size: 1.8rem !important;
  }

  .fs-19-sm {
    font-size: 1.9rem !important;
  }

  .fs-20-sm {
    font-size: 2rem !important;
  }

  .fs-21-sm {
    font-size: 2.1rem !important;
  }

  .fs-22-sm {
    font-size: 2.2rem !important;
  }

  .fs-23-sm {
    font-size: 2.3rem !important;
  }

  .fs-24-sm {
    font-size: 2.4rem !important;
  }

  .fs-25-sm {
    font-size: 2.5rem !important;
  }

  .fs-26-sm {
    font-size: 2.6rem !important;
  }

  .fs-27-sm {
    font-size: 2.7rem !important;
  }

  .fs-28-sm {
    font-size: 2.8rem !important;
  }

  .fs-29-sm {
    font-size: 2.9rem !important;
  }

  .fs-30-sm {
    font-size: 3rem !important;
  }
}

.lh-1 {
  line-height: 1.1;
}

.lh-2 {
  line-height: 1.2;
}

.lh-3 {
  line-height: 1.3;
}

.lh-4 {
  line-height: 1.4;
}

.lh-5 {
  line-height: 1.5;
}

.lh-6 {
  line-height: 1.6;
}

@media (max-width: 1199px) {
  .lh-1-xl {
    line-height: 1.1 !important;
  }

  .lh-2-xl {
    line-height: 1.2 !important;
  }

  .lh-3-xl {
    line-height: 1.3 !important;
  }

  .lh-4-xl {
    line-height: 1.4 !important;
  }

  .lh-5-xl {
    line-height: 1.5 !important;
  }

  .lh-6-xl {
    line-height: 1.6 !important;
  }
}

@media (max-width: 1023px) {
  .lh-1-lg {
    line-height: 1.1 !important;
  }

  .lh-2-lg {
    line-height: 1.2 !important;
  }

  .lh-3-lg {
    line-height: 1.3 !important;
  }

  .lh-4-lg {
    line-height: 1.4 !important;
  }

  .lh-5-lg {
    line-height: 1.5 !important;
  }

  .lh-6-lg {
    line-height: 1.6 !important;
  }
}

@media (max-width: 767px) {
  .lh-1-md {
    line-height: 1.1 !important;
  }

  .lh-2-md {
    line-height: 1.2 !important;
  }

  .lh-3-md {
    line-height: 1.3 !important;
  }

  .lh-4-md {
    line-height: 1.4 !important;
  }

  .lh-5-md {
    line-height: 1.5 !important;
  }

  .lh-6-md {
    line-height: 1.6 !important;
  }
}

@media (max-width: 575px) {
  .lh-1-sm {
    line-height: 1.1 !important;
  }

  .lh-2-sm {
    line-height: 1.2 !important;
  }

  .lh-3-sm {
    line-height: 1.3 !important;
  }

  .lh-4-sm {
    line-height: 1.4 !important;
  }

  .lh-5-sm {
    line-height: 1.5 !important;
  }

  .lh-6-sm {
    line-height: 1.6 !important;
  }
}

/*utility
-----------------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
}

ol {
  padding-left: 1em;
}

.float-l {
  float: left;
}

.float-r {
  float: right;
}

.en {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
}

.mincho {
  font-family: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

em {
  font-style: normal;
  font-weight: bold;
}

.line {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 80%, #fffa73 0%) repeat scroll 0 0;
}

.indent-list {
  text-indent: -1em;
  padding-left: 1em;
}

.disc-list {
  list-style: disc;
  padding-left: 1.5em;
}

.color-main {
  color: #1A1A1A !important;
}

.color-accent01 {
  color: #3A6DB5 !important;
}

.color-caution {
  color: #4A4A4A !important;
}

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

.align-l {
  text-align: left;
}

@media (max-width: 1199px) {
  .align-l-xl {
    text-align: left !important;
  }
}

@media (max-width: 1023px) {
  .align-l-lg {
    text-align: left !important;
  }
}

@media (max-width: 767px) {
  .align-l-md {
    text-align: left !important;
  }
}

@media (max-width: 575px) {
  .align-l-sm {
    text-align: left !important;
  }
}

.align-c {
  text-align: center;
}

@media (max-width: 1199px) {
  .align-c-xl {
    text-align: center !important;
  }
}

@media (max-width: 1023px) {
  .align-c-lg {
    text-align: center !important;
  }
}

@media (max-width: 767px) {
  .align-c-md {
    text-align: center !important;
  }
}

@media (max-width: 575px) {
  .align-c-sm {
    text-align: center !important;
  }
}

.align-r {
  text-align: right;
}

@media (max-width: 1199px) {
  .align-r-xl {
    text-align: right !important;
  }
}

@media (max-width: 1023px) {
  .align-r-lg {
    text-align: right !important;
  }
}

@media (max-width: 767px) {
  .align-r-md {
    text-align: right !important;
  }
}

@media (max-width: 575px) {
  .align-r-sm {
    text-align: right !important;
  }
}

.pos-r {
  position: relative;
}

.box-shadow {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

.bg-blue-pattern01 {
  background: repeating-linear-gradient(-45deg, #0171bb, #0171bb 10px, #0674bc 0, #0674bc 20px);
}

.block {
  display: block;
}

@media (max-width: 1199px) {
  .block-xl {
    display: block !important;
  }
}

@media (max-width: 1023px) {
  .block-lg {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .block-md {
    display: block !important;
  }
}

@media (max-width: 575px) {
  .block-sm {
    display: block !important;
  }
}

.none {
  display: none;
}

@media (max-width: 1199px) {
  .none-xl {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .none-lg {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .none-md {
    display: none !important;
  }
}

@media (max-width: 575px) {
  .none-sm {
    display: none !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* margin padding gap
-----------------------------------------------------*/
.mt-0 {
  margin-top: 0rem !important;
}

.pt-0 {
  padding-top: 0rem !important;
}

.mb-0 {
  margin-bottom: 0rem !important;
}

.pb-0 {
  padding-bottom: 0rem !important;
}

.ml-0 {
  margin-left: 0rem !important;
}

.pl-0 {
  padding-left: 0rem !important;
}

.mr-0 {
  margin-right: 0rem !important;
}

.pr-0 {
  padding-right: 0rem !important;
}

.mt-10 {
  margin-top: 1rem !important;
}

.pt-10 {
  padding-top: 1rem !important;
}

.mb-10 {
  margin-bottom: 1rem !important;
}

.pb-10 {
  padding-bottom: 1rem !important;
}

.ml-10 {
  margin-left: 1rem !important;
}

.pl-10 {
  padding-left: 1rem !important;
}

.mr-10 {
  margin-right: 1rem !important;
}

.pr-10 {
  padding-right: 1rem !important;
}

.mt-15 {
  margin-top: 1.5rem !important;
}

.pt-15 {
  padding-top: 1.5rem !important;
}

.mb-15 {
  margin-bottom: 1.5rem !important;
}

.pb-15 {
  padding-bottom: 1.5rem !important;
}

.ml-15 {
  margin-left: 1.5rem !important;
}

.pl-15 {
  padding-left: 1.5rem !important;
}

.mr-15 {
  margin-right: 1.5rem !important;
}

.pr-15 {
  padding-right: 1.5rem !important;
}

.mt-20 {
  margin-top: 2rem !important;
}

.pt-20 {
  padding-top: 2rem !important;
}

.mb-20 {
  margin-bottom: 2rem !important;
}

.pb-20 {
  padding-bottom: 2rem !important;
}

.ml-20 {
  margin-left: 2rem !important;
}

.pl-20 {
  padding-left: 2rem !important;
}

.mr-20 {
  margin-right: 2rem !important;
}

.pr-20 {
  padding-right: 2rem !important;
}

.mt-25 {
  margin-top: 2.5rem !important;
}

.pt-25 {
  padding-top: 2.5rem !important;
}

.mb-25 {
  margin-bottom: 2.5rem !important;
}

.pb-25 {
  padding-bottom: 2.5rem !important;
}

.ml-25 {
  margin-left: 2.5rem !important;
}

.pl-25 {
  padding-left: 2.5rem !important;
}

.mr-25 {
  margin-right: 2.5rem !important;
}

.pr-25 {
  padding-right: 2.5rem !important;
}

.mt-30 {
  margin-top: 3rem !important;
}

.pt-30 {
  padding-top: 3rem !important;
}

.mb-30 {
  margin-bottom: 3rem !important;
}

.pb-30 {
  padding-bottom: 3rem !important;
}

.ml-30 {
  margin-left: 3rem !important;
}

.pl-30 {
  padding-left: 3rem !important;
}

.mr-30 {
  margin-right: 3rem !important;
}

.pr-30 {
  padding-right: 3rem !important;
}

.mt-35 {
  margin-top: 3.5rem !important;
}

.pt-35 {
  padding-top: 3.5rem !important;
}

.mb-35 {
  margin-bottom: 3.5rem !important;
}

.pb-35 {
  padding-bottom: 3.5rem !important;
}

.ml-35 {
  margin-left: 3.5rem !important;
}

.pl-35 {
  padding-left: 3.5rem !important;
}

.mr-35 {
  margin-right: 3.5rem !important;
}

.pr-35 {
  padding-right: 3.5rem !important;
}

.mt-40 {
  margin-top: 4rem !important;
}

.pt-40 {
  padding-top: 4rem !important;
}

.mb-40 {
  margin-bottom: 4rem !important;
}

.pb-40 {
  padding-bottom: 4rem !important;
}

.ml-40 {
  margin-left: 4rem !important;
}

.pl-40 {
  padding-left: 4rem !important;
}

.mr-40 {
  margin-right: 4rem !important;
}

.pr-40 {
  padding-right: 4rem !important;
}

.mt-45 {
  margin-top: 4.5rem !important;
}

.pt-45 {
  padding-top: 4.5rem !important;
}

.mb-45 {
  margin-bottom: 4.5rem !important;
}

.pb-45 {
  padding-bottom: 4.5rem !important;
}

.ml-45 {
  margin-left: 4.5rem !important;
}

.pl-45 {
  padding-left: 4.5rem !important;
}

.mr-45 {
  margin-right: 4.5rem !important;
}

.pr-45 {
  padding-right: 4.5rem !important;
}

.mt-50 {
  margin-top: 5rem !important;
}

.pt-50 {
  padding-top: 5rem !important;
}

.mb-50 {
  margin-bottom: 5rem !important;
}

.pb-50 {
  padding-bottom: 5rem !important;
}

.ml-50 {
  margin-left: 5rem !important;
}

.pl-50 {
  padding-left: 5rem !important;
}

.mr-50 {
  margin-right: 5rem !important;
}

.pr-50 {
  padding-right: 5rem !important;
}

.mt-60 {
  margin-top: 6rem !important;
}

.pt-60 {
  padding-top: 6rem !important;
}

.mb-60 {
  margin-bottom: 6rem !important;
}

.pb-60 {
  padding-bottom: 6rem !important;
}

.ml-60 {
  margin-left: 6rem !important;
}

.pl-60 {
  padding-left: 6rem !important;
}

.mr-60 {
  margin-right: 6rem !important;
}

.pr-60 {
  padding-right: 6rem !important;
}

.mt-70 {
  margin-top: 7rem !important;
}

.pt-70 {
  padding-top: 7rem !important;
}

.mb-70 {
  margin-bottom: 7rem !important;
}

.pb-70 {
  padding-bottom: 7rem !important;
}

.ml-70 {
  margin-left: 7rem !important;
}

.pl-70 {
  padding-left: 7rem !important;
}

.mr-70 {
  margin-right: 7rem !important;
}

.pr-70 {
  padding-right: 7rem !important;
}

.mt-80 {
  margin-top: 8rem !important;
}

.pt-80 {
  padding-top: 8rem !important;
}

.mb-80 {
  margin-bottom: 8rem !important;
}

.pb-80 {
  padding-bottom: 8rem !important;
}

.ml-80 {
  margin-left: 8rem !important;
}

.pl-80 {
  padding-left: 8rem !important;
}

.mr-80 {
  margin-right: 8rem !important;
}

.pr-80 {
  padding-right: 8rem !important;
}

.mt-100 {
  margin-top: 10rem !important;
}

.pt-100 {
  padding-top: 10rem !important;
}

.mb-100 {
  margin-bottom: 10rem !important;
}

.pb-100 {
  padding-bottom: 10rem !important;
}

.ml-100 {
  margin-left: 10rem !important;
}

.pl-100 {
  padding-left: 10rem !important;
}

.mr-100 {
  margin-right: 10rem !important;
}

.pr-100 {
  padding-right: 10rem !important;
}

@media (max-width: 1199px) {
  .mt-0-xl {
    margin-top: 0rem !important;
  }

  .pt-0-xl {
    padding-top: 0rem !important;
  }

  .mb-0-xl {
    margin-bottom: 0rem !important;
  }

  .pb-0-xl {
    padding-bottom: 0rem !important;
  }

  .ml-0-xl {
    margin-left: 0rem !important;
  }

  .pl-0-xl {
    padding-left: 0rem !important;
  }

  .mr-0-xl {
    margin-right: 0rem !important;
  }

  .pr-0-xl {
    padding-right: 0rem !important;
  }

  .mt-10-xl {
    margin-top: 1rem !important;
  }

  .pt-10-xl {
    padding-top: 1rem !important;
  }

  .mb-10-xl {
    margin-bottom: 1rem !important;
  }

  .pb-10-xl {
    padding-bottom: 1rem !important;
  }

  .ml-10-xl {
    margin-left: 1rem !important;
  }

  .pl-10-xl {
    padding-left: 1rem !important;
  }

  .mr-10-xl {
    margin-right: 1rem !important;
  }

  .pr-10-xl {
    padding-right: 1rem !important;
  }

  .mt-15-xl {
    margin-top: 1.5rem !important;
  }

  .pt-15-xl {
    padding-top: 1.5rem !important;
  }

  .mb-15-xl {
    margin-bottom: 1.5rem !important;
  }

  .pb-15-xl {
    padding-bottom: 1.5rem !important;
  }

  .ml-15-xl {
    margin-left: 1.5rem !important;
  }

  .pl-15-xl {
    padding-left: 1.5rem !important;
  }

  .mr-15-xl {
    margin-right: 1.5rem !important;
  }

  .pr-15-xl {
    padding-right: 1.5rem !important;
  }

  .mt-20-xl {
    margin-top: 2rem !important;
  }

  .pt-20-xl {
    padding-top: 2rem !important;
  }

  .mb-20-xl {
    margin-bottom: 2rem !important;
  }

  .pb-20-xl {
    padding-bottom: 2rem !important;
  }

  .ml-20-xl {
    margin-left: 2rem !important;
  }

  .pl-20-xl {
    padding-left: 2rem !important;
  }

  .mr-20-xl {
    margin-right: 2rem !important;
  }

  .pr-20-xl {
    padding-right: 2rem !important;
  }

  .mt-25-xl {
    margin-top: 2.5rem !important;
  }

  .pt-25-xl {
    padding-top: 2.5rem !important;
  }

  .mb-25-xl {
    margin-bottom: 2.5rem !important;
  }

  .pb-25-xl {
    padding-bottom: 2.5rem !important;
  }

  .ml-25-xl {
    margin-left: 2.5rem !important;
  }

  .pl-25-xl {
    padding-left: 2.5rem !important;
  }

  .mr-25-xl {
    margin-right: 2.5rem !important;
  }

  .pr-25-xl {
    padding-right: 2.5rem !important;
  }

  .mt-30-xl {
    margin-top: 3rem !important;
  }

  .pt-30-xl {
    padding-top: 3rem !important;
  }

  .mb-30-xl {
    margin-bottom: 3rem !important;
  }

  .pb-30-xl {
    padding-bottom: 3rem !important;
  }

  .ml-30-xl {
    margin-left: 3rem !important;
  }

  .pl-30-xl {
    padding-left: 3rem !important;
  }

  .mr-30-xl {
    margin-right: 3rem !important;
  }

  .pr-30-xl {
    padding-right: 3rem !important;
  }

  .mt-35-xl {
    margin-top: 3.5rem !important;
  }

  .pt-35-xl {
    padding-top: 3.5rem !important;
  }

  .mb-35-xl {
    margin-bottom: 3.5rem !important;
  }

  .pb-35-xl {
    padding-bottom: 3.5rem !important;
  }

  .ml-35-xl {
    margin-left: 3.5rem !important;
  }

  .pl-35-xl {
    padding-left: 3.5rem !important;
  }

  .mr-35-xl {
    margin-right: 3.5rem !important;
  }

  .pr-35-xl {
    padding-right: 3.5rem !important;
  }

  .mt-40-xl {
    margin-top: 4rem !important;
  }

  .pt-40-xl {
    padding-top: 4rem !important;
  }

  .mb-40-xl {
    margin-bottom: 4rem !important;
  }

  .pb-40-xl {
    padding-bottom: 4rem !important;
  }

  .ml-40-xl {
    margin-left: 4rem !important;
  }

  .pl-40-xl {
    padding-left: 4rem !important;
  }

  .mr-40-xl {
    margin-right: 4rem !important;
  }

  .pr-40-xl {
    padding-right: 4rem !important;
  }

  .mt-45-xl {
    margin-top: 4.5rem !important;
  }

  .pt-45-xl {
    padding-top: 4.5rem !important;
  }

  .mb-45-xl {
    margin-bottom: 4.5rem !important;
  }

  .pb-45-xl {
    padding-bottom: 4.5rem !important;
  }

  .ml-45-xl {
    margin-left: 4.5rem !important;
  }

  .pl-45-xl {
    padding-left: 4.5rem !important;
  }

  .mr-45-xl {
    margin-right: 4.5rem !important;
  }

  .pr-45-xl {
    padding-right: 4.5rem !important;
  }

  .mt-50-xl {
    margin-top: 5rem !important;
  }

  .pt-50-xl {
    padding-top: 5rem !important;
  }

  .mb-50-xl {
    margin-bottom: 5rem !important;
  }

  .pb-50-xl {
    padding-bottom: 5rem !important;
  }

  .ml-50-xl {
    margin-left: 5rem !important;
  }

  .pl-50-xl {
    padding-left: 5rem !important;
  }

  .mr-50-xl {
    margin-right: 5rem !important;
  }

  .pr-50-xl {
    padding-right: 5rem !important;
  }

  .mt-60-xl {
    margin-top: 6rem !important;
  }

  .pt-60-xl {
    padding-top: 6rem !important;
  }

  .mb-60-xl {
    margin-bottom: 6rem !important;
  }

  .pb-60-xl {
    padding-bottom: 6rem !important;
  }

  .ml-60-xl {
    margin-left: 6rem !important;
  }

  .pl-60-xl {
    padding-left: 6rem !important;
  }

  .mr-60-xl {
    margin-right: 6rem !important;
  }

  .pr-60-xl {
    padding-right: 6rem !important;
  }

  .mt-70-xl {
    margin-top: 7rem !important;
  }

  .pt-70-xl {
    padding-top: 7rem !important;
  }

  .mb-70-xl {
    margin-bottom: 7rem !important;
  }

  .pb-70-xl {
    padding-bottom: 7rem !important;
  }

  .ml-70-xl {
    margin-left: 7rem !important;
  }

  .pl-70-xl {
    padding-left: 7rem !important;
  }

  .mr-70-xl {
    margin-right: 7rem !important;
  }

  .pr-70-xl {
    padding-right: 7rem !important;
  }

  .mt-80-xl {
    margin-top: 8rem !important;
  }

  .pt-80-xl {
    padding-top: 8rem !important;
  }

  .mb-80-xl {
    margin-bottom: 8rem !important;
  }

  .pb-80-xl {
    padding-bottom: 8rem !important;
  }

  .ml-80-xl {
    margin-left: 8rem !important;
  }

  .pl-80-xl {
    padding-left: 8rem !important;
  }

  .mr-80-xl {
    margin-right: 8rem !important;
  }

  .pr-80-xl {
    padding-right: 8rem !important;
  }

  .mt-100-xl {
    margin-top: 10rem !important;
  }

  .pt-100-xl {
    padding-top: 10rem !important;
  }

  .mb-100-xl {
    margin-bottom: 10rem !important;
  }

  .pb-100-xl {
    padding-bottom: 10rem !important;
  }

  .ml-100-xl {
    margin-left: 10rem !important;
  }

  .pl-100-xl {
    padding-left: 10rem !important;
  }

  .mr-100-xl {
    margin-right: 10rem !important;
  }

  .pr-100-xl {
    padding-right: 10rem !important;
  }
}

@media (max-width: 1023px) {
  .mt-0-lg {
    margin-top: 0rem !important;
  }

  .pt-0-lg {
    padding-top: 0rem !important;
  }

  .mb-0-lg {
    margin-bottom: 0rem !important;
  }

  .pb-0-lg {
    padding-bottom: 0rem !important;
  }

  .ml-0-lg {
    margin-left: 0rem !important;
  }

  .pl-0-lg {
    padding-left: 0rem !important;
  }

  .mr-0-lg {
    margin-right: 0rem !important;
  }

  .pr-0-lg {
    padding-right: 0rem !important;
  }

  .mt-10-lg {
    margin-top: 1rem !important;
  }

  .pt-10-lg {
    padding-top: 1rem !important;
  }

  .mb-10-lg {
    margin-bottom: 1rem !important;
  }

  .pb-10-lg {
    padding-bottom: 1rem !important;
  }

  .ml-10-lg {
    margin-left: 1rem !important;
  }

  .pl-10-lg {
    padding-left: 1rem !important;
  }

  .mr-10-lg {
    margin-right: 1rem !important;
  }

  .pr-10-lg {
    padding-right: 1rem !important;
  }

  .mt-15-lg {
    margin-top: 1.5rem !important;
  }

  .pt-15-lg {
    padding-top: 1.5rem !important;
  }

  .mb-15-lg {
    margin-bottom: 1.5rem !important;
  }

  .pb-15-lg {
    padding-bottom: 1.5rem !important;
  }

  .ml-15-lg {
    margin-left: 1.5rem !important;
  }

  .pl-15-lg {
    padding-left: 1.5rem !important;
  }

  .mr-15-lg {
    margin-right: 1.5rem !important;
  }

  .pr-15-lg {
    padding-right: 1.5rem !important;
  }

  .mt-20-lg {
    margin-top: 2rem !important;
  }

  .pt-20-lg {
    padding-top: 2rem !important;
  }

  .mb-20-lg {
    margin-bottom: 2rem !important;
  }

  .pb-20-lg {
    padding-bottom: 2rem !important;
  }

  .ml-20-lg {
    margin-left: 2rem !important;
  }

  .pl-20-lg {
    padding-left: 2rem !important;
  }

  .mr-20-lg {
    margin-right: 2rem !important;
  }

  .pr-20-lg {
    padding-right: 2rem !important;
  }

  .mt-25-lg {
    margin-top: 2.5rem !important;
  }

  .pt-25-lg {
    padding-top: 2.5rem !important;
  }

  .mb-25-lg {
    margin-bottom: 2.5rem !important;
  }

  .pb-25-lg {
    padding-bottom: 2.5rem !important;
  }

  .ml-25-lg {
    margin-left: 2.5rem !important;
  }

  .pl-25-lg {
    padding-left: 2.5rem !important;
  }

  .mr-25-lg {
    margin-right: 2.5rem !important;
  }

  .pr-25-lg {
    padding-right: 2.5rem !important;
  }

  .mt-30-lg {
    margin-top: 3rem !important;
  }

  .pt-30-lg {
    padding-top: 3rem !important;
  }

  .mb-30-lg {
    margin-bottom: 3rem !important;
  }

  .pb-30-lg {
    padding-bottom: 3rem !important;
  }

  .ml-30-lg {
    margin-left: 3rem !important;
  }

  .pl-30-lg {
    padding-left: 3rem !important;
  }

  .mr-30-lg {
    margin-right: 3rem !important;
  }

  .pr-30-lg {
    padding-right: 3rem !important;
  }

  .mt-35-lg {
    margin-top: 3.5rem !important;
  }

  .pt-35-lg {
    padding-top: 3.5rem !important;
  }

  .mb-35-lg {
    margin-bottom: 3.5rem !important;
  }

  .pb-35-lg {
    padding-bottom: 3.5rem !important;
  }

  .ml-35-lg {
    margin-left: 3.5rem !important;
  }

  .pl-35-lg {
    padding-left: 3.5rem !important;
  }

  .mr-35-lg {
    margin-right: 3.5rem !important;
  }

  .pr-35-lg {
    padding-right: 3.5rem !important;
  }

  .mt-40-lg {
    margin-top: 4rem !important;
  }

  .pt-40-lg {
    padding-top: 4rem !important;
  }

  .mb-40-lg {
    margin-bottom: 4rem !important;
  }

  .pb-40-lg {
    padding-bottom: 4rem !important;
  }

  .ml-40-lg {
    margin-left: 4rem !important;
  }

  .pl-40-lg {
    padding-left: 4rem !important;
  }

  .mr-40-lg {
    margin-right: 4rem !important;
  }

  .pr-40-lg {
    padding-right: 4rem !important;
  }

  .mt-45-lg {
    margin-top: 4.5rem !important;
  }

  .pt-45-lg {
    padding-top: 4.5rem !important;
  }

  .mb-45-lg {
    margin-bottom: 4.5rem !important;
  }

  .pb-45-lg {
    padding-bottom: 4.5rem !important;
  }

  .ml-45-lg {
    margin-left: 4.5rem !important;
  }

  .pl-45-lg {
    padding-left: 4.5rem !important;
  }

  .mr-45-lg {
    margin-right: 4.5rem !important;
  }

  .pr-45-lg {
    padding-right: 4.5rem !important;
  }

  .mt-50-lg {
    margin-top: 5rem !important;
  }

  .pt-50-lg {
    padding-top: 5rem !important;
  }

  .mb-50-lg {
    margin-bottom: 5rem !important;
  }

  .pb-50-lg {
    padding-bottom: 5rem !important;
  }

  .ml-50-lg {
    margin-left: 5rem !important;
  }

  .pl-50-lg {
    padding-left: 5rem !important;
  }

  .mr-50-lg {
    margin-right: 5rem !important;
  }

  .pr-50-lg {
    padding-right: 5rem !important;
  }

  .mt-60-lg {
    margin-top: 6rem !important;
  }

  .pt-60-lg {
    padding-top: 6rem !important;
  }

  .mb-60-lg {
    margin-bottom: 6rem !important;
  }

  .pb-60-lg {
    padding-bottom: 6rem !important;
  }

  .ml-60-lg {
    margin-left: 6rem !important;
  }

  .pl-60-lg {
    padding-left: 6rem !important;
  }

  .mr-60-lg {
    margin-right: 6rem !important;
  }

  .pr-60-lg {
    padding-right: 6rem !important;
  }

  .mt-70-lg {
    margin-top: 7rem !important;
  }

  .pt-70-lg {
    padding-top: 7rem !important;
  }

  .mb-70-lg {
    margin-bottom: 7rem !important;
  }

  .pb-70-lg {
    padding-bottom: 7rem !important;
  }

  .ml-70-lg {
    margin-left: 7rem !important;
  }

  .pl-70-lg {
    padding-left: 7rem !important;
  }

  .mr-70-lg {
    margin-right: 7rem !important;
  }

  .pr-70-lg {
    padding-right: 7rem !important;
  }

  .mt-80-lg {
    margin-top: 8rem !important;
  }

  .pt-80-lg {
    padding-top: 8rem !important;
  }

  .mb-80-lg {
    margin-bottom: 8rem !important;
  }

  .pb-80-lg {
    padding-bottom: 8rem !important;
  }

  .ml-80-lg {
    margin-left: 8rem !important;
  }

  .pl-80-lg {
    padding-left: 8rem !important;
  }

  .mr-80-lg {
    margin-right: 8rem !important;
  }

  .pr-80-lg {
    padding-right: 8rem !important;
  }

  .mt-100-lg {
    margin-top: 10rem !important;
  }

  .pt-100-lg {
    padding-top: 10rem !important;
  }

  .mb-100-lg {
    margin-bottom: 10rem !important;
  }

  .pb-100-lg {
    padding-bottom: 10rem !important;
  }

  .ml-100-lg {
    margin-left: 10rem !important;
  }

  .pl-100-lg {
    padding-left: 10rem !important;
  }

  .mr-100-lg {
    margin-right: 10rem !important;
  }

  .pr-100-lg {
    padding-right: 10rem !important;
  }
}

@media (max-width: 767px) {
  .mt-0-md {
    margin-top: 0rem !important;
  }

  .pt-0-md {
    padding-top: 0rem !important;
  }

  .mb-0-md {
    margin-bottom: 0rem !important;
  }

  .pb-0-md {
    padding-bottom: 0rem !important;
  }

  .ml-0-md {
    margin-left: 0rem !important;
  }

  .pl-0-md {
    padding-left: 0rem !important;
  }

  .mr-0-md {
    margin-right: 0rem !important;
  }

  .pr-0-md {
    padding-right: 0rem !important;
  }

  .mt-10-md {
    margin-top: 1rem !important;
  }

  .pt-10-md {
    padding-top: 1rem !important;
  }

  .mb-10-md {
    margin-bottom: 1rem !important;
  }

  .pb-10-md {
    padding-bottom: 1rem !important;
  }

  .ml-10-md {
    margin-left: 1rem !important;
  }

  .pl-10-md {
    padding-left: 1rem !important;
  }

  .mr-10-md {
    margin-right: 1rem !important;
  }

  .pr-10-md {
    padding-right: 1rem !important;
  }

  .mt-15-md {
    margin-top: 1.5rem !important;
  }

  .pt-15-md {
    padding-top: 1.5rem !important;
  }

  .mb-15-md {
    margin-bottom: 1.5rem !important;
  }

  .pb-15-md {
    padding-bottom: 1.5rem !important;
  }

  .ml-15-md {
    margin-left: 1.5rem !important;
  }

  .pl-15-md {
    padding-left: 1.5rem !important;
  }

  .mr-15-md {
    margin-right: 1.5rem !important;
  }

  .pr-15-md {
    padding-right: 1.5rem !important;
  }

  .mt-20-md {
    margin-top: 2rem !important;
  }

  .pt-20-md {
    padding-top: 2rem !important;
  }

  .mb-20-md {
    margin-bottom: 2rem !important;
  }

  .pb-20-md {
    padding-bottom: 2rem !important;
  }

  .ml-20-md {
    margin-left: 2rem !important;
  }

  .pl-20-md {
    padding-left: 2rem !important;
  }

  .mr-20-md {
    margin-right: 2rem !important;
  }

  .pr-20-md {
    padding-right: 2rem !important;
  }

  .mt-25-md {
    margin-top: 2.5rem !important;
  }

  .pt-25-md {
    padding-top: 2.5rem !important;
  }

  .mb-25-md {
    margin-bottom: 2.5rem !important;
  }

  .pb-25-md {
    padding-bottom: 2.5rem !important;
  }

  .ml-25-md {
    margin-left: 2.5rem !important;
  }

  .pl-25-md {
    padding-left: 2.5rem !important;
  }

  .mr-25-md {
    margin-right: 2.5rem !important;
  }

  .pr-25-md {
    padding-right: 2.5rem !important;
  }

  .mt-30-md {
    margin-top: 3rem !important;
  }

  .pt-30-md {
    padding-top: 3rem !important;
  }

  .mb-30-md {
    margin-bottom: 3rem !important;
  }

  .pb-30-md {
    padding-bottom: 3rem !important;
  }

  .ml-30-md {
    margin-left: 3rem !important;
  }

  .pl-30-md {
    padding-left: 3rem !important;
  }

  .mr-30-md {
    margin-right: 3rem !important;
  }

  .pr-30-md {
    padding-right: 3rem !important;
  }

  .mt-35-md {
    margin-top: 3.5rem !important;
  }

  .pt-35-md {
    padding-top: 3.5rem !important;
  }

  .mb-35-md {
    margin-bottom: 3.5rem !important;
  }

  .pb-35-md {
    padding-bottom: 3.5rem !important;
  }

  .ml-35-md {
    margin-left: 3.5rem !important;
  }

  .pl-35-md {
    padding-left: 3.5rem !important;
  }

  .mr-35-md {
    margin-right: 3.5rem !important;
  }

  .pr-35-md {
    padding-right: 3.5rem !important;
  }

  .mt-40-md {
    margin-top: 4rem !important;
  }

  .pt-40-md {
    padding-top: 4rem !important;
  }

  .mb-40-md {
    margin-bottom: 4rem !important;
  }

  .pb-40-md {
    padding-bottom: 4rem !important;
  }

  .ml-40-md {
    margin-left: 4rem !important;
  }

  .pl-40-md {
    padding-left: 4rem !important;
  }

  .mr-40-md {
    margin-right: 4rem !important;
  }

  .pr-40-md {
    padding-right: 4rem !important;
  }

  .mt-45-md {
    margin-top: 4.5rem !important;
  }

  .pt-45-md {
    padding-top: 4.5rem !important;
  }

  .mb-45-md {
    margin-bottom: 4.5rem !important;
  }

  .pb-45-md {
    padding-bottom: 4.5rem !important;
  }

  .ml-45-md {
    margin-left: 4.5rem !important;
  }

  .pl-45-md {
    padding-left: 4.5rem !important;
  }

  .mr-45-md {
    margin-right: 4.5rem !important;
  }

  .pr-45-md {
    padding-right: 4.5rem !important;
  }

  .mt-50-md {
    margin-top: 5rem !important;
  }

  .pt-50-md {
    padding-top: 5rem !important;
  }

  .mb-50-md {
    margin-bottom: 5rem !important;
  }

  .pb-50-md {
    padding-bottom: 5rem !important;
  }

  .ml-50-md {
    margin-left: 5rem !important;
  }

  .pl-50-md {
    padding-left: 5rem !important;
  }

  .mr-50-md {
    margin-right: 5rem !important;
  }

  .pr-50-md {
    padding-right: 5rem !important;
  }

  .mt-60-md {
    margin-top: 6rem !important;
  }

  .pt-60-md {
    padding-top: 6rem !important;
  }

  .mb-60-md {
    margin-bottom: 6rem !important;
  }

  .pb-60-md {
    padding-bottom: 6rem !important;
  }

  .ml-60-md {
    margin-left: 6rem !important;
  }

  .pl-60-md {
    padding-left: 6rem !important;
  }

  .mr-60-md {
    margin-right: 6rem !important;
  }

  .pr-60-md {
    padding-right: 6rem !important;
  }

  .mt-70-md {
    margin-top: 7rem !important;
  }

  .pt-70-md {
    padding-top: 7rem !important;
  }

  .mb-70-md {
    margin-bottom: 7rem !important;
  }

  .pb-70-md {
    padding-bottom: 7rem !important;
  }

  .ml-70-md {
    margin-left: 7rem !important;
  }

  .pl-70-md {
    padding-left: 7rem !important;
  }

  .mr-70-md {
    margin-right: 7rem !important;
  }

  .pr-70-md {
    padding-right: 7rem !important;
  }

  .mt-80-md {
    margin-top: 8rem !important;
  }

  .pt-80-md {
    padding-top: 8rem !important;
  }

  .mb-80-md {
    margin-bottom: 8rem !important;
  }

  .pb-80-md {
    padding-bottom: 8rem !important;
  }

  .ml-80-md {
    margin-left: 8rem !important;
  }

  .pl-80-md {
    padding-left: 8rem !important;
  }

  .mr-80-md {
    margin-right: 8rem !important;
  }

  .pr-80-md {
    padding-right: 8rem !important;
  }

  .mt-100-md {
    margin-top: 10rem !important;
  }

  .pt-100-md {
    padding-top: 10rem !important;
  }

  .mb-100-md {
    margin-bottom: 10rem !important;
  }

  .pb-100-md {
    padding-bottom: 10rem !important;
  }

  .ml-100-md {
    margin-left: 10rem !important;
  }

  .pl-100-md {
    padding-left: 10rem !important;
  }

  .mr-100-md {
    margin-right: 10rem !important;
  }

  .pr-100-md {
    padding-right: 10rem !important;
  }
}

@media (max-width: 575px) {
  .mt-0-sm {
    margin-top: 0rem !important;
  }

  .pt-0-sm {
    padding-top: 0rem !important;
  }

  .mb-0-sm {
    margin-bottom: 0rem !important;
  }

  .pb-0-sm {
    padding-bottom: 0rem !important;
  }

  .ml-0-sm {
    margin-left: 0rem !important;
  }

  .pl-0-sm {
    padding-left: 0rem !important;
  }

  .mr-0-sm {
    margin-right: 0rem !important;
  }

  .pr-0-sm {
    padding-right: 0rem !important;
  }

  .mt-10-sm {
    margin-top: 1rem !important;
  }

  .pt-10-sm {
    padding-top: 1rem !important;
  }

  .mb-10-sm {
    margin-bottom: 1rem !important;
  }

  .pb-10-sm {
    padding-bottom: 1rem !important;
  }

  .ml-10-sm {
    margin-left: 1rem !important;
  }

  .pl-10-sm {
    padding-left: 1rem !important;
  }

  .mr-10-sm {
    margin-right: 1rem !important;
  }

  .pr-10-sm {
    padding-right: 1rem !important;
  }

  .mt-15-sm {
    margin-top: 1.5rem !important;
  }

  .pt-15-sm {
    padding-top: 1.5rem !important;
  }

  .mb-15-sm {
    margin-bottom: 1.5rem !important;
  }

  .pb-15-sm {
    padding-bottom: 1.5rem !important;
  }

  .ml-15-sm {
    margin-left: 1.5rem !important;
  }

  .pl-15-sm {
    padding-left: 1.5rem !important;
  }

  .mr-15-sm {
    margin-right: 1.5rem !important;
  }

  .pr-15-sm {
    padding-right: 1.5rem !important;
  }

  .mt-20-sm {
    margin-top: 2rem !important;
  }

  .pt-20-sm {
    padding-top: 2rem !important;
  }

  .mb-20-sm {
    margin-bottom: 2rem !important;
  }

  .pb-20-sm {
    padding-bottom: 2rem !important;
  }

  .ml-20-sm {
    margin-left: 2rem !important;
  }

  .pl-20-sm {
    padding-left: 2rem !important;
  }

  .mr-20-sm {
    margin-right: 2rem !important;
  }

  .pr-20-sm {
    padding-right: 2rem !important;
  }

  .mt-25-sm {
    margin-top: 2.5rem !important;
  }

  .pt-25-sm {
    padding-top: 2.5rem !important;
  }

  .mb-25-sm {
    margin-bottom: 2.5rem !important;
  }

  .pb-25-sm {
    padding-bottom: 2.5rem !important;
  }

  .ml-25-sm {
    margin-left: 2.5rem !important;
  }

  .pl-25-sm {
    padding-left: 2.5rem !important;
  }

  .mr-25-sm {
    margin-right: 2.5rem !important;
  }

  .pr-25-sm {
    padding-right: 2.5rem !important;
  }

  .mt-30-sm {
    margin-top: 3rem !important;
  }

  .pt-30-sm {
    padding-top: 3rem !important;
  }

  .mb-30-sm {
    margin-bottom: 3rem !important;
  }

  .pb-30-sm {
    padding-bottom: 3rem !important;
  }

  .ml-30-sm {
    margin-left: 3rem !important;
  }

  .pl-30-sm {
    padding-left: 3rem !important;
  }

  .mr-30-sm {
    margin-right: 3rem !important;
  }

  .pr-30-sm {
    padding-right: 3rem !important;
  }

  .mt-35-sm {
    margin-top: 3.5rem !important;
  }

  .pt-35-sm {
    padding-top: 3.5rem !important;
  }

  .mb-35-sm {
    margin-bottom: 3.5rem !important;
  }

  .pb-35-sm {
    padding-bottom: 3.5rem !important;
  }

  .ml-35-sm {
    margin-left: 3.5rem !important;
  }

  .pl-35-sm {
    padding-left: 3.5rem !important;
  }

  .mr-35-sm {
    margin-right: 3.5rem !important;
  }

  .pr-35-sm {
    padding-right: 3.5rem !important;
  }

  .mt-40-sm {
    margin-top: 4rem !important;
  }

  .pt-40-sm {
    padding-top: 4rem !important;
  }

  .mb-40-sm {
    margin-bottom: 4rem !important;
  }

  .pb-40-sm {
    padding-bottom: 4rem !important;
  }

  .ml-40-sm {
    margin-left: 4rem !important;
  }

  .pl-40-sm {
    padding-left: 4rem !important;
  }

  .mr-40-sm {
    margin-right: 4rem !important;
  }

  .pr-40-sm {
    padding-right: 4rem !important;
  }

  .mt-45-sm {
    margin-top: 4.5rem !important;
  }

  .pt-45-sm {
    padding-top: 4.5rem !important;
  }

  .mb-45-sm {
    margin-bottom: 4.5rem !important;
  }

  .pb-45-sm {
    padding-bottom: 4.5rem !important;
  }

  .ml-45-sm {
    margin-left: 4.5rem !important;
  }

  .pl-45-sm {
    padding-left: 4.5rem !important;
  }

  .mr-45-sm {
    margin-right: 4.5rem !important;
  }

  .pr-45-sm {
    padding-right: 4.5rem !important;
  }

  .mt-50-sm {
    margin-top: 5rem !important;
  }

  .pt-50-sm {
    padding-top: 5rem !important;
  }

  .mb-50-sm {
    margin-bottom: 5rem !important;
  }

  .pb-50-sm {
    padding-bottom: 5rem !important;
  }

  .ml-50-sm {
    margin-left: 5rem !important;
  }

  .pl-50-sm {
    padding-left: 5rem !important;
  }

  .mr-50-sm {
    margin-right: 5rem !important;
  }

  .pr-50-sm {
    padding-right: 5rem !important;
  }

  .mt-60-sm {
    margin-top: 6rem !important;
  }

  .pt-60-sm {
    padding-top: 6rem !important;
  }

  .mb-60-sm {
    margin-bottom: 6rem !important;
  }

  .pb-60-sm {
    padding-bottom: 6rem !important;
  }

  .ml-60-sm {
    margin-left: 6rem !important;
  }

  .pl-60-sm {
    padding-left: 6rem !important;
  }

  .mr-60-sm {
    margin-right: 6rem !important;
  }

  .pr-60-sm {
    padding-right: 6rem !important;
  }

  .mt-70-sm {
    margin-top: 7rem !important;
  }

  .pt-70-sm {
    padding-top: 7rem !important;
  }

  .mb-70-sm {
    margin-bottom: 7rem !important;
  }

  .pb-70-sm {
    padding-bottom: 7rem !important;
  }

  .ml-70-sm {
    margin-left: 7rem !important;
  }

  .pl-70-sm {
    padding-left: 7rem !important;
  }

  .mr-70-sm {
    margin-right: 7rem !important;
  }

  .pr-70-sm {
    padding-right: 7rem !important;
  }

  .mt-80-sm {
    margin-top: 8rem !important;
  }

  .pt-80-sm {
    padding-top: 8rem !important;
  }

  .mb-80-sm {
    margin-bottom: 8rem !important;
  }

  .pb-80-sm {
    padding-bottom: 8rem !important;
  }

  .ml-80-sm {
    margin-left: 8rem !important;
  }

  .pl-80-sm {
    padding-left: 8rem !important;
  }

  .mr-80-sm {
    margin-right: 8rem !important;
  }

  .pr-80-sm {
    padding-right: 8rem !important;
  }

  .mt-100-sm {
    margin-top: 10rem !important;
  }

  .pt-100-sm {
    padding-top: 10rem !important;
  }

  .mb-100-sm {
    margin-bottom: 10rem !important;
  }

  .pb-100-sm {
    padding-bottom: 10rem !important;
  }

  .ml-100-sm {
    margin-left: 10rem !important;
  }

  .pl-100-sm {
    padding-left: 10rem !important;
  }

  .mr-100-sm {
    margin-right: 10rem !important;
  }

  .pr-100-sm {
    padding-right: 10rem !important;
  }
}

/*page-common
-----------------------------------------------------*/
.container-sm {
  max-width: 720px;
  padding: 0 5%;
  margin: 0 auto;
}

.container-md {
  max-width: 950px;
  padding: 0 2rem;
  margin: 0 auto;
}

.container-lg {
  max-width: 1200px;
  padding: 0 2rem;
  margin: 0 auto;
}

.container-xl {
  max-width: 1400px;
  padding: 0 5%;
  margin: 0 auto;
}

@media (max-width: 767px) {

  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    padding: 0 1.5rem;
  }
}

/* page-sec */
.top-sec {
  padding: 8rem 0 10rem;
}

@media (max-width: 767px) {
  .top-sec {
    padding: 4rem 0 6rem;
  }
}

.page-sec {
  padding: 6rem 0 10rem;
}

@media (max-width: 767px) {
  .page-sec {
    padding: 4rem 0 6rem;
  }
}

/*btn
-----------------------------------------------------*/
.btn-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 6rem;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  background-color: #E07B00;
  border: 5px solid #ffe3c2;
  border-radius: 5px;
  text-decoration: none;
}

@media (max-width: 767px) {
  .btn-more {
    width: auto;
    padding: 2.1rem 4rem;
    font-size: 1.8rem;
  }
}

@media (max-width: 575px) {
  .btn-more {
    text-align: left;
    padding: 2.1rem 4rem 2.1rem 2rem;
    width: 100%;
  }
}

.btn-more:hover,
.btn-more:focus,
.btn-more:active {
  color: #E07B00;
  background-color: #fff;
}

.btn-more__icon {
  position: absolute;
  top: 50%;
  right: 1.3rem;
  width: 25px;
  height: 25px;
  transform: translateY(-50%);
}

.btn-more__icon-bg {
  fill: #fff;
  transition: fill 0.3s ease;
}

.btn-more__icon-arrow {
  stroke: #E07B00;
  transition: stroke 0.3s ease;
}

.btn-more:hover .btn-more__icon-bg,
.btn-more:focus .btn-more__icon-bg,
.btn-more:active .btn-more__icon-bg {
  fill: #E07B00;
}

.btn-more:hover .btn-more__icon-arrow,
.btn-more:focus .btn-more__icon-arrow,
.btn-more:active .btn-more__icon-arrow {
  stroke: #fff;
}

.line_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.5rem 0;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  background-color: #06c755;
  border-radius: 5px;
  text-decoration: none;
  border: 1px solid transparent;
}

.line_btn-icon {
  position: relative;
  flex-shrink: 0;
  width: 26px;
  height: 27px;
}

.line_btn-icon::before,
.line_btn-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: opacity 0.3s ease;
}

.line_btn-icon::before {
  background-image: url("../images/common/line_icon.svg");
  opacity: 1;
}

.line_btn-icon::after {
  background-image: url("../images/common/line_icon_hover.svg");
  opacity: 0;
}

.line_btn:hover,
.line_btn:focus,
.line_btn:active {
  color: #06c755;
  border-color: #06c755;
  background-color: #fff;
}

.line_btn:hover .line_btn-icon::before,
.line_btn:focus .line_btn-icon::before,
.line_btn:active .line_btn-icon::before {
  opacity: 0;
}

.line_btn:hover .line_btn-icon::after,
.line_btn:focus .line_btn-icon::after,
.line_btn:active .line_btn-icon::after {
  opacity: 1;
}

/*h2
-----------------------------------------------------*/
.section-title {
  text-align: center;
  margin-bottom: 5rem;
}

@media (max-width: 767px) {
  .section-title {
    margin-bottom: 3rem;
  }
}

@media (max-width: 575px) {
  .section-title {
    margin-bottom: 3.5rem;
  }
}

.section-title__en {
  display: block;
  font-size: 7.8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.156rem;
  color: #d3e0f1;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
  margin-bottom: -5rem;
}

@media (max-width: 767px) {
  .section-title__en {
    font-size: 5.4rem;
    margin-bottom: -4rem;
  }
}

@media (max-width: 575px) {
  .section-title__en {
    font-size: 4.5rem;
    margin-bottom: -3.5rem;
  }
}

.section-title__heading {
  position: relative;
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.3;
}

@media (max-width: 767px) {
  .section-title__heading {
    font-size: 3rem;
  }
}

@media (max-width: 575px) {
  .section-title__heading {
    font-size: 2.4rem;
  }
}

.section-title__line {
  display: block;
  width: 31px;
  height: 4px;
  margin: 2.5rem auto 0;
  background-color: #3A6DB5;
}

@media (max-width: 767px) {
  .section-title__line {
    margin: 2rem auto 0;
  }
}

@media (max-width: 575px) {
  .section-title__line {
    height: 3px;
    width: 26px;
    margin: 1.5rem auto 0;
  }
}

@media (max-width: 767px) {
  .section-title--page .section-title__line {
    margin: 1.8rem auto 0;
  }
}

@media (max-width: 575px) {
  .section-title--page .section-title__line {
    height: 3px;
    width: 26px;
  }
}

h1+h2,
h2+h3,
h3+h4 {
  margin-top: 0 !important;
}

.tilte-sub-text {
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
  margin-top: -1rem;
  margin-bottom: 3rem;
}

.no-posts {
  /* 該当する投稿が無いときの案内。見出しが中央寄せなので中央にそろえる。
     本文（1.6rem）より大きくして目に入るようにする */
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 767px) {
  .no-posts {
    font-size: 1.8rem;
  }
}

@media (max-width: 1023px) {
  .tilte-sub-text {
    font-size: 2.2rem;
    margin-bottom: 5rem;
  }
}

/* tag 
-----------------------------------------------------*/
.event-tag {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  border-radius: 3px;
}

@media (max-width: 767px) {
  .event-tag {
    font-size: 1.8rem;
  }
}

@media (max-width: 575px) {
  .event-tag {
    font-size: 1.5rem;
    padding: 0.7rem 0.8rem 0.8rem 0.8rem;
  }
}

.event-tag__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
}

.event-tag--onsale {
  background-color: #1a6b2f;
}

.event-tag--onsale .event-tag__dot {
  background-color: #A8E6BC;
}

.event-tag--before {
  background-color: #C2410C;
}

.event-tag--before .event-tag__dot {
  background-color: #FED7AA;
}

.event-tag--ended {
  background-color: #3d4a5c;
}

.event-tag--ended .event-tag__dot {
  background-color: #B0BEC9;
}

.event-tag--cat {
  background-color: #0B1E3D;
}

.event-tag--cat .event-tag__dot {
  background-color: #fff;
}

.event-card__image {
  position: relative;
}

.event-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 0.8rem 1rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1rem;
  color: #fff;
  background-color: #ef4444;
  border-bottom-right-radius: 5px;
}

@media (max-width: 575px) {
  .event-card__badge {
    font-size: 1.5rem;
    padding: 0.7rem 0.9rem 0.5rem 0.9rem;
  }
}

/*header
-----------------------------------------------------*/
#header {
  position: relative;
  width: 100%;
}

#header .header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background-color: #0B1E3D;
  position: relative;
}

@media (max-width: 1023px) {
  #header .header-top {
    padding: 1.2rem 1.5rem;
  }
}

#header .header-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

@media (max-width: 767px) {
  #header .header-logo {
    gap: 0.5rem;
  }
}

#header .header-logo img {
  width: 109px;
  height: auto;
}

@media (max-width: 767px) {
  #header .header-logo img {
    width: 90px;
  }
}

@media (max-width: 767px) {
  #header .header-logo img {
    width: 70px;
  }
}

#header .header-brand-name {
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: bold;
  color: #fff;
}

@media (max-width: 767px) {
  #header .header-brand-name {
    font-size: 1.2rem;
  }
}

#header .header-buttons {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

@media (max-width: 1023px) {
  #header .header-buttons {
    display: none;
  }
}

#header .header-nav {
  display: flex;
  justify-content: center;
  padding: 1.8rem 0;
  background-color: #F2F6FB;
  border-top: 1px solid #d2dceb;
  border-bottom: 1px solid #d2dceb;
}

@media (max-width: 1023px) {
  #header .header-nav {
    display: none;
  }
}

#header .header-nav a {
  position: relative;
  padding-right: 3rem;
  margin-right: 3rem;
  font-weight: bold;
  text-decoration: none;
}

#header .header-nav a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 1.6rem;
  background-color: #bbcae1;
  transform: translateY(-50%);
}

#header .header-nav a:hover {
  color: #3A6DB5;
}

#header .header-nav a:last-child {
  padding-right: 0;
  margin-right: 0;
}

#header .header-nav a:last-child::after {
  content: none;
}

#header .header-nav a[aria-current=page] {
  color: #3A6DB5;
  text-decoration: underline;
  text-underline-offset: 0.4rem;
}

.header-fontsize {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  padding-right: 2.5rem;
}

.header-fontsize-label {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
}

.header-fontsize-buttons {
  display: flex;
  gap: 1rem;
}

.header-fontsize-btn {
  padding: 1rem 1.5rem;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 1.12px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  background-color: transparent;
  cursor: pointer;
}

.header-fontsize-btn.is-active {
  background-color: #fff;
  color: #1A1A1A;
}

.sns-list {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 767px) {
  .sns-list {
    gap: 3rem;
  }
}

.sns-list li {
  display: flex;
  align-items: center;
}

.sns-list__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
}

.sns-list__link img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.sns-list__link:hover {
  opacity: 0.5;
}

.line_btn {
  padding: 1rem 2rem;
}

@media (max-width: 767px) {
  .line_btn {
    padding: 1.5rem 2rem;
    width: 70%;
  }
}

/*hamburger
-----------------------------------------------------*/
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 65px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: none;
  background: #3A6DB5;
  cursor: pointer;
  z-index: 1;
}

@media (max-width: 1023px) {
  .hamburger {
    display: flex;
  }
}

.hamburger.active .hamburger_line1 {
  top: 6px;
  transform: rotate(45deg);
}

.hamburger.active .hamburger_line2 {
  opacity: 0;
}

.hamburger.active .hamburger_line3 {
  top: 6px;
  transform: rotate(-45deg);
}

.hamburger_lines {
  position: relative;
  display: block;
  width: 26px;
  height: 14px;
}

.hamburger_line {
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  position: absolute;
  left: 0;
  transition: all 0.35s;
}

.hamburger_line1 {
  top: 0;
}

.hamburger_line2 {
  top: 6px;
}

.hamburger_line3 {
  top: 12px;
}

.hamburger_text {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/*globalMenu
-----------------------------------------------------*/
.globalMenu {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: #0B1E3D;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  overflow-y: auto;
  overscroll-behavior-y: contain;
}

.globalMenu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.globalMenu__head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.globalMenu__head img {
  width: 90px;
  height: auto;
}

.globalMenu__close {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: 65px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: none;
  border-radius: 0;
  background: #3A6DB5;
  cursor: pointer;
}

.globalMenu__close-icon {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
}

.globalMenu__close-icon::before,
.globalMenu__close-icon::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}

.globalMenu__close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.globalMenu__close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.globalMenu__close-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.05em;
}

.nav__gnav {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0 2rem;
}

.nav__gnav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav__gnav li a {
  display: block;
  padding: 2rem 0;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.sp-menu-utils {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 3rem 2rem 5rem;
}

.sp-menu-utils .header-fontsize {
  border-right: none;
  padding-right: 0;
}

body.is-menu-open {
  overflow: hidden;
}

/*pankuzu
-----------------------------------------------------*/

.breadcrumb {
  border: none;
}

.breadcrumb__item {
  color: #1A1A1A;
}

.breadcrumb__item a {
  color: #6b7280;
}

.breadcrumb__item-current {
  font-weight: bold;
}

.breadcrumb__item-current a {
  color: #3A6DB5;
}

.icon-home {
  color: #1A1A1A;
}

/* main 
-----------------------------------------------------*/
.mainvisual {
  position: relative;
  padding: 1.5rem 0 4rem;
  overflow: hidden;
}

.mainvisual__slider {
  overflow: visible;
}

.mainvisual__slide {
  width: 85%;
  max-width: 882px;
  opacity: 0.5;
  transition: opacity 0.4s ease;
}

@media (max-width: 1023px) {
  .mainvisual__slide {
    width: 80%;
  }
}

.mainvisual__slide img {
  display: block;
  width: 100%;
  aspect-ratio: 882/496;
  -o-object-fit: cover;
  object-fit: cover;
}

.mainvisual__slide.swiper-slide-active {
  opacity: 1;
}

.mainvisual__nav {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
}

@media (max-width: 575px) {
  .mainvisual__nav {
    width: 40px;
    height: 40px;
  }
}

.mainvisual__nav img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  transform: scale(2);
}

.mainvisual__nav--prev {
  left: 8rem;
}

@media (max-width: 1023px) {
  .mainvisual__nav--prev {
    left: 0.5rem;
  }
}

.mainvisual__nav--next {
  right: 8rem;
}

@media (max-width: 1023px) {
  .mainvisual__nav--next {
    right: 0.5rem;
  }
}

.mainvisual__pagination {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2rem;
}

@media (max-width: 767px) {
  .mainvisual__pagination {
    margin-top: 1.5rem;
    gap: 0.2rem;
  }
}

.mainvisual__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #c7d2dd;
  border-radius: 50%;
  opacity: 1;
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding: 0;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media (max-width: 767px) {
  .mainvisual__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}

.mainvisual__pagination .swiper-pagination-bullet-active {
  background-color: #3A6DB5;
}

/* events 
-----------------------------------------------------*/
.events--onsale {
  background-color: #EBF3F6;
}

.events--upcoming {
  background-color: #fff;
}

.events--upcoming .event-card__body {
  background-color: #F4F7F9;
}

.events__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

@media (max-width: 1023px) {
  .events__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .events__list {
    grid-template-columns: 1fr;
  }
}

.events__more {
  margin-top: 4rem;
  text-align: center;
}

@media (max-width: 767px) {
  .events__more {
    margin-top: 5rem;
  }
}

.event-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  overflow: hidden;
  text-decoration: none;
}

.event-card:hover .event-card__image img {
  transform: scale(1.05);
}

.event-card__image {
  overflow: hidden;
}

.event-card__image img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.event-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 2rem 1.5rem 1.5rem;
}

.event-card__status {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.event-card__status .event-tag {
  align-self: center;
  margin-bottom: 0;
}

.event-card__release {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  color: #e60012;
}

@media (max-width: 767px) {
  .event-card__release {
    font-size: 1.8rem;
  }
}

@media (max-width: 575px) {
  .event-card__release {
    font-size: 1.6rem;
  }
}

.event-card__title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  min-height: 10.4rem;
  margin-bottom: 2rem;
}

@media (max-width: 575px) {
  .event-card__title {
    font-size: 1.8rem;
    min-height: 7.02rem;
  }
}

.event-card__divider {
  width: 100%;
  height: 1px;
  margin: auto 0 1.5rem;
  background-color: #D1D5DB;
}

.event-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.event-card__meta-row {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.event-card__meta-icon {
  flex-shrink: 0;
  width: 18px;
  height: 20px;
  margin-top: 0.3rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.event-card__meta-dates {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-height: 5.09rem;
}

.event-card__meta-row--date .event-card__meta-icon {
  background-image: url("../images/common/icon-date.svg");
}

.event-card__date {
  display: flex;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: bold;
}

@media (max-width: 767px) {
  .event-card__date {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  .event-card__date {
    font-size: 1.6rem;
  }
}

.event-card__place {
  flex-shrink: 0;
  white-space: nowrap;
}

.event-card__place::after {
  content: "：";
}

.event-card__day-item {
  white-space: nowrap;
}

/* news
-----------------------------------------------------*/
.news {
  background-color: #f0f1f3;
}

.news--archive {
  background-color: transparent;
}

.news__list {
  margin: 0 auto;
  border-top: 1px solid #D1D5DB;
}

@media (max-width: 767px) {
  .news__list {
    margin-top: 5rem;
  }
}

.news__item {
  border-bottom: 1px solid #D1D5DB;
}

.news__link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0;
  text-decoration: none;
}

@media (max-width: 767px) {
  .news__link {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
}

.news__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.news__date {
  font-size: 1.6rem;
  font-weight: bold;
  color: #6b7280;
}

.news__cat {
  padding: 0.8rem 1rem;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  background-color: #3A6DB5;
  border-radius: 3px;
}

@media (max-width: 767px) {
  .news__cat {
    font-size: 1.5rem;
    padding: 0.6rem 0.8rem;
  }
}

.news__title {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  transition: color 0.3s ease;
}

@media (max-width: 767px) {
  .news__title {
    font-size: 1.8rem;
  }
}

a.news__link:hover .news__title {
  color: #3A6DB5;
}

.news__more {
  margin-top: 4rem;
  text-align: center;
}

@media (max-width: 767px) {
  .news__more {
    margin-top: 5rem;
  }
}

/*ticket
-----------------------------------------------------*/
.ticket {
  position: relative;
  padding: 5rem 0;
  background-color: #3A6DB5;
  overflow: hidden;
}

.ticket::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/common/cta_bg.png");
  background-position: center bottom;
  background-size: cover;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.ticket__card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .ticket__card {
    padding: 3rem 2rem;
  }
}

.ticket__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  margin-bottom: 2.5rem;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #3A6DB5;
}

@media (max-width: 767px) {
  .ticket__label {
    font-size: 2.8rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 575px) {
  .ticket__label {
    font-size: 2.6rem;
    gap: 1rem;
  }
}

.ticket__label span {
  flex-shrink: 0;
}

.ticket__label::before,
.ticket__label::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background-color: #D1D5DB;
}

@media (max-width: 575px) {

  .ticket__label::before,
  .ticket__label::after {
    max-width: none;
  }
}

.ticket__groups {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

@media (max-width: 767px) {
  .ticket__groups {
    gap: 3rem;
  }
}

.ticket__group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.ticket__group-title {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 767px) {
  .ticket__group-title {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  .ticket__group-title {
    font-size: 1.8rem;
  }
}

.ticket-box {
  width: 100%;
  max-width: 691px;
  padding: 1rem;
  border: 2px solid #D1D5DB;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .ticket-box {
    max-width: 100%;
  }
}

.ticket-box__head {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  background-color: #3A6DB5;
  border-radius: 5px;
}

@media (max-width: 575px) {
  .ticket-box__head {
    margin-bottom: 2rem;
  }
}

.ticket-box__body {
  display: flex;
  flex-direction: column;
}

.ticket-box__lead {
  margin-bottom: 1rem;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 767px) {
  .ticket-box__lead {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  .ticket-box__lead {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
}

.ticket-box__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.ticket-box__phone-icon {
  width: 30px;
  height: 30px;
  background-image: url("../images/common/icon-phone.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media (max-width: 575px) {
  .ticket-box__phone-icon {
    width: 25px;
    height: 25px;
  }
}

.ticket-box__phone-num {
  font-size: 3.8rem;
  font-weight: bold;
  line-height: 1.2;
  color: #3A6DB5;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .ticket-box__phone-num {
    font-size: 3.3rem;
  }
}

@media (max-width: 575px) {
  .ticket-box__phone-num {
    font-size: 3rem;
  }
}

.ticket-box__phone-num:hover {
  color: #3A6DB5;
  opacity: 0.8;
}

.ticket-box__hours {
  color: #3A6DB5;
  text-align: center;
  line-height: 1;
}

@media (max-width: 767px) {
  .ticket-box__hours {
    font-size: 1.8rem;
  }
}

@media (max-width: 575px) {
  .ticket-box__hours {
    font-size: 1.6rem;
  }
}

.ticket-box__address {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-top: 1rem;
  margin-top: 2rem;
  border-top: 2px solid #D1D5DB;
}

@media (max-width: 575px) {
  .ticket-box__address {
    padding-top: 2rem;
    margin-top: 3rem;
  }
}

.ticket-box__address-text {
  line-height: 1.5;
}

@media (max-width: 767px) {
  .ticket-box__address-text {
    font-size: 1.8rem;
  }
}

@media (max-width: 575px) {
  .ticket-box__address-text {
    font-size: 1.6rem;
  }
}

.ticket-box__text {
  line-height: 1.4;
  text-align: center;
  padding: 1rem 0;
}

@media (max-width: 767px) {
  .ticket-box__text {
    font-size: 1.8rem;
  }
}

@media (max-width: 575px) {
  .ticket-box__text {
    font-size: 1.6rem;
  }
}

.ticket-box__delivery {
  display: block;
  width: 94px;
  height: 34px;
  background-image: url("../images/common/delivery_icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.ticket__note {
  width: 100%;
  line-height: 1.5;
  text-align: center;
  margin-top: 1rem;
}

@media (max-width: 575px) {
  .ticket__note {
    text-align: left;
    font-size: 1.6rem;
  }
}

.ticket__note-link {
  font-weight: bold;
  color: #3A6DB5;
  text-decoration: underline;
}

.ticket__note-link:hover {
  color: #3A6DB5;
  opacity: 0.8;
}

/* footer
-----------------------------------------------------*/
.footer__main {
  padding: 5rem 0 2.5rem;
  background-color: #0B1E3D;
  color: #fff;
}

.footer__columns {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media (max-width: 1023px) {
  .footer__columns {
    flex-direction: column;
    gap: 4rem;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.footer__brand-head {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__brand-logo {
  width: 116px;
  height: auto;
}

@media (max-width: 767px) {
  .footer__brand-logo {
    width: 100px;
  }
}

.footer__brand-name {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.16px;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .footer__brand-name {
    font-size: 1.4rem;
  }
}

.footer .line_btn {
  width: 100%;
  max-width: 258px;
}

.footer__nav {
  display: flex;
  gap: 6.5rem;
}

@media (max-width: 767px) {
  .footer__nav {
    gap: 2rem;
  }
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.footer__nav-heading {
  width: -moz-fit-content;
  width: fit-content;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1px;
  transition: background-size 0.3s ease, color 0.3s ease;
}

.footer__nav-heading:hover {
  background-size: 100% 1px;
}

.footer__nav-heading {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 767px) {
  .footer__nav-heading {
    font-size: 1.6rem;
  }
}

.footer__nav-heading:hover {
  color: #3A6DB5;
}

.footer__nav-sub {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.footer__nav-sublink {
  width: -moz-fit-content;
  width: fit-content;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1px;
  transition: background-size 0.3s ease, color 0.3s ease;
}

.footer__nav-sublink:hover {
  background-size: 100% 1px;
}

.footer__nav-sublink {
  position: relative;
  padding-left: 1.4rem;
  background-origin: content-box;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  text-decoration: none;
}

.footer__nav-sublink:hover {
  color: #3A6DB5;
}

.footer__nav-sublink::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 0;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent currentColor;
}

.footer__policy {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5em;
  justify-content: center;
  padding-top: 2.5rem;
  margin-top: 8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
  .footer__policy {
    margin-top: 5rem;
  }
}

@media (max-width: 575px) {
  .footer__policy {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}

.footer__policy-link {
  color: #fff;
}

.footer__policy-link:hover {
  color: #3A6DB5;
}

.footer__copyright {
  padding: 2.4rem 2rem;
  text-align: center;
  background-color: #08152b;
}

.footer__copyright-text {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #fff;
}

/* concert
-----------------------------------------------------*/
.events--archive {
  background-color: #fff;
}

.events--archive .event-card {
  border-radius: 5px;
}

.events--archive .event-card__body {
  background-color: #f4f7f9;
}

.pagination {
  margin-top: 6rem;
}

@media (max-width: 767px) {
  .pagination {
    margin-top: 5rem;
  }
}

.pagination__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}

.pagination__link,
.pagination__ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  height: 4rem;
  font-size: 1.6rem;
  line-height: 1;
  color: #222;
  text-decoration: none;
  border-radius: 3px;
}

@media (max-width: 767px) {

  .pagination__link,
  .pagination__ellipsis {
    font-size: 1.8rem;
  }
}

.pagination__link:hover {
  color: #3A6DB5;
  background-color: #F2F6FB;
}

.pagination__link--current {
  font-weight: bold;
  color: #fff;
  background-color: #3A6DB5;
}

.pagination__link--current:hover {
  color: #fff;
  background-color: #3A6DB5;
}

.pagination__ellipsis {
  color: #222;
  pointer-events: none;
}

/*concert single
-----------------------------------------------------*/
.concert__section {
  margin-top: 3rem;
}

@media (max-width: 767px) {
  .concert__section {
    margin-top: 2.5rem;
  }
}

.concert__header {
  padding-bottom: 2rem;
  border-bottom: 1px solid #D1D5DB;
}

.concert__title {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.3;
}

.concert__title .br-card {
  display: none;
}

@media (max-width: 767px) {
  .concert__title {
    font-size: 2.6rem;
  }
}

@media (max-width: 575px) {
  .concert__title {
    font-size: 2rem;
  }
}

.concert__release {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  color: #e60012;
}

@media (max-width: 575px) {
  .concert__release {
    font-size: 1.6rem;
  }
}

.concert__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.concert__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}

.concert__badges .event-tag {
  margin-bottom: 0;
}

.concert__hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.concert__hashtag {
  font-size: 1.8rem;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

@media (max-width: 575px) {
  .concert__hashtag {
    font-size: 1.6rem;
  }
}

.concert__figure {
  margin-top: 3rem;
}

@media (max-width: 575px) {
  .concert__figure {
    margin-top: 2.5rem;
  }
}

.concert__figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 5px;
}

.concert-heading {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 2.5rem;
}

@media (max-width: 575px) {
  .concert-heading {
    font-size: 2rem;
  }
}

.concert-heading::before {
  content: "";
  flex-shrink: 0;
  width: 4px;
  height: 2.3rem;
  background-color: #3A6DB5;
}

.concert-overview {
  display: table;
  width: 100%;
  border-collapse: collapse;
}

.concert-overview__row {
  display: table-row;
}

.concert-overview__label,
.concert-overview__data {
  display: table-cell;
  vertical-align: middle;
  border: 1px solid #D1D5DB;
}

.concert-overview__label {
  width: 1%;
  white-space: nowrap;
  padding: 2.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  color: #0B1E3D;
  background-color: #F2F6FB;
}

@media (max-width: 767px) {
  .concert-overview__label {
    padding: 1.5rem;
    font-size: 1.6rem;
  }
}

@media (max-width: 575px) {
  .concert-overview__label {
    padding: 1.5rem 1rem;
  }
}

.concert-overview__data {
  width: 100%;
  padding: 2rem 1rem 2rem 1.5rem;
  font-size: 1.8rem;
  line-height: 1.8;
  background-color: #fff;
}

@media (max-width: 767px) {
  .concert-overview__data {
    padding: 2rem;
    font-size: 1.6rem;
  }
}

@media (max-width: 575px) {
  .concert-overview__data {
    padding: 1.5rem 1rem;
  }
}

.concert-overview__data p {
  margin: 0;
}

.concert-overview__data strong {
  font-weight: bold;
}

.concert-overview__tel {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  transition: opacity 0.3s ease;
}

.concert-overview__tel:hover {
  color: #3A6DB5;
}

.buy {
  margin-top: 3rem;
  padding: 3rem 2.5rem 2rem;
  background-color: #EBF3F6;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .buy {
    margin-top: 4rem;
  }
}

@media (max-width: 575px) {
  .buy {
    padding: 3rem 1.5rem 2rem;
  }
}

.buy__head {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.buy__label {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  color: #3A6DB5;
  margin-bottom: 0.5rem;
}

@media (max-width: 575px) {
  .buy__label {
    font-size: 1.2rem;
  }
}

.buy__title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.8rem;
  width: 100%;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .buy__title {
    font-size: 2.2rem;
  }
}

@media (max-width: 575px) {
  .buy__title {
    font-size: 1.9rem;
  }
}

.buy__title span {
  flex-shrink: 0;
}

.buy__title::before,
.buy__title::after {
  content: "";
  flex: 1 1 auto;
  max-width: 294px;
  height: 1px;
  background-color: #D1D5DB;
}

@media (max-width: 575px) {

  .buy__title::before,
  .buy__title::after {
    max-width: none;
  }
}

.buy__note {
  font-size: 1.6rem;
  line-height: 1.4;
  color: #4A4A4A;
  text-align: center;
}

.buy__note-lead {
  /* 店頭セクションの案内文。注意書きより目立たせる */
  font-size: 1.8rem;
  font-weight: bold;
  color: #1A1A1A;
}

.buy__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.buy__tab {
  padding: 1.5rem 2rem 1.7rem;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  background-color: #0B1E3D;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  border: 2px solid transparent;
}

@media (max-width: 575px) {
  .buy__tab {
    padding: 1.5rem 1.8rem;
    font-size: 1.6rem;
  }
}

.buy__tab:hover,
.buy__tab:focus,
.buy__tab:active {
  border: 2px solid #0B1E3D;
  background: #fff;
  color: #0B1E3D;
}

.buy__tab.is-active {
  background-color: #3A6DB5;
}

.buy__panels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.buy__panel {
  padding: 1rem;
  background-color: #fff;
  border-radius: 5px;
  scroll-margin-top: 2rem;
}

.buy-panel__title {
  padding: 1rem 2rem;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  background-color: #3A6DB5;
  border-radius: 5px;
}

@media (max-width: 575px) {
  .buy-panel__title {
    font-size: 1.8rem;
  }
}

.buy-panel__providers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (max-width: 767px) {
  .buy-panel__providers {
    grid-template-columns: 1fr;
  }
}

.buy-panel__shops {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.provider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 1rem;
  border: 1px solid #D1D5DB;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .provider {
    /* ロゴ・コード・ボタンの間隔。スマホでは縦に長くなるので詰める */
    gap: 1.6rem;
  }
}

.provider__name {
  width: 100%;
  padding: 1rem 2rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  background-color: #EBF3F6;
  border-radius: 5px;
}

.provider__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  /* 幅が足りないときは縮めずに折り返す。縮めるとロゴごとに縮小率が変わり、
     画像に焼き込んだ文字の大きさがそろわなくなる */
  flex-wrap: wrap;
  gap: 1.5rem;
  /* ロゴを置く帯の高さを固定する。ここを可変にすると、下にあるコードや
     ボタンの量でロゴの縦位置が動き、隣のカードとそろわなくなる。
     122px は一番背の高いロゴ（道新）の表示高さ */
  min-height: 122px;
}

@media (max-width: 767px) {
  .provider__logos {
    /* スマホは1カラムでカードが縦に並ぶため、そろえる必要がない。
       余白を作らないよう元の高さに戻す */
    min-height: 93px;
  }
}

.provider__logos img {
  width: auto;
  /* 高さは必ず幅に追従させる。height属性が効いて縦横比が崩れるのを防ぐ */
  height: auto;
  max-width: 100%;
  /* --logo-h は「登録した画像の高さの半分」をPHPが1枚ずつ渡す。
     ロゴは2倍で登録する運用なので、これで全ロゴが50%表示になり
     縮小率がそろう。渡ってこない場合だけ93pxで頭打ちにする */
  max-height: var(--logo-h, 93px);
  -o-object-fit: contain;
  object-fit: contain;
}

/* 下に説明文が増えることがあるロゴは、高さではなく幅で大きさを決める。
   リンク（<a>）で包まれたロゴでも崩れないよう、幅は px だけで指定する。
   %（100%）は親の幅を指すため、親の <a> の幅を決める段階では無視され、
   <a> が画像の実寸まで広がってしまう（↗バッジがロゴから離れる原因）。
   高さで頭打ちにすると、行が増えたぶんロゴ本体が小さくなってしまう。
   ファイル名で判定しているので、差し替えるときは同じ名前を使う */
.provider__logos img[src*="seicomart_logo"] {
  max-width: 217px;
  max-height: none;
}

/* ローソンは3枚並ぶので、他の2枚と同じ幅にそろえてPCで1行に収める */
.provider__logos img[src*="lawson_logo1"] {
  max-width: 117px;
  max-height: none;
}

.provider__logos a {
  position: relative;
  display: block;
  /* ゼロ幅まで潰れて中の画像ごと消えるのを防ぐ。
     裸のimgと違い、ブロック要素は最小幅が0まで許されるため */
  flex-shrink: 0;
  line-height: 0;
  transition: opacity 0.3s ease;
}

.provider__logos a::after {
  content: "↗";
  position: absolute;
  right: -0.2rem;
  bottom: -0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.6rem;
  color: #3A6DB5;
  -webkit-text-stroke: 0.5px currentColor;
  background-color: #fff;
  border: 2px solid #3A6DB5;
  border-radius: 50%;
}

.provider__logos a:hover {
  opacity: 0.7;
}

.provider__caption {
  font-size: 1.8rem;
  line-height: 1.4;
  color: #6b7280;
  text-align: center;
}

@media (max-width: 575px) {
  .provider__caption {
    font-size: 1.6rem;
  }
}

.provider__codes {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0.5rem;
  line-height: 1.4;
  font-size: 1.8rem;
  font-weight: bold;
  max-width: 100%;
  min-width: 0;
}

@media (max-width: 767px) {
  .provider__codes {
    /* コードは購入時に読み取ってもらう情報なので、スマホでは大きく出す */
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  .provider__codes {
    flex-direction: column;
    align-items: flex-start;
    /* ラベルと数字が縦に並ぶので、間隔と行送りを詰める */
    gap: 0.2rem;
    line-height: 1.25;
  }
}

.provider__codes p {
  margin: 0;
}

.provider__label {
  white-space: nowrap;
}

.provider__code-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media (max-width: 575px) {
  .provider__code-list {
    align-items: flex-start;
  }
}

.provider__code-num {
  white-space: nowrap;
}

.provider__actions {
  display: flex;
  /* 購入ボタンが複数あるときは横に並べず縦に積む */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  gap: 0.5rem;
  width: 100%;
  /* カードはグリッドで高さが揃うので、ボタンを下端に押し付けると
     隣り合うカードのボタンが横一線に並ぶ。
     ロゴやコードの行数が違っても位置がずれない */
  margin-top: auto;
}

.provider__actions .btn-buy:not(:only-child) {
  width: 100%;
  /* 「函館 ネット購入はこちら」＋2文字ぶんまで1行に収まる幅。
     文字に使えるのは 280 − padding40 − 枠線6 ＝ 234px。
     CJKは太字でも1文字16pxなので、増やすなら1文字あたり1.6rem足す */
  max-width: 28rem;
}

.provider__actions .btn-buy:only-child {
  min-width: 24.7rem;
}

@media (max-width: 575px) {
  .provider__actions .btn-buy:only-child {
    min-width: 0;
    width: 100%;
    max-width: 22rem;
  }
}

.buy-panel__providers>.provider {
  min-width: 0;
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18.9rem;
  padding: 1.7rem 2rem;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  background-color: #E07B00;
  border: 3px solid #ffe3c2;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-buy:hover {
  color: #E07B00;
  background-color: #fff;
}

@media (max-width: 575px) {
  .btn-buy {
    width: 100%;
  }
}

.shop-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 1rem 1rem 2.5rem;
  border: 1px solid #D1D5DB;
  border-radius: 5px;
}

.shop-item__name {
  width: 100%;
  padding: 1.2rem 2rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  background-color: #EBF3F6;
  border-radius: 5px;
}

.shop-item__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  width: 100%;
}

.shop-item__address {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 0.5rem;
}

@media (max-width: 575px) {
  .shop-item__address {
    font-size: 1.8rem;
  }
}

.shop-item__hours {
  font-size: 1.8rem;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 575px) {
  .shop-item__hours {
    font-size: 1.6rem;
  }
}

.shop-item__tel {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding-bottom: 0.6rem;
}

.shop-item__tel-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background-image: url("../images/common/icon-phone.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.shop-item__tel-num {
  font-size: 3.3rem;
  font-weight: bold;
  line-height: 1.2;
  color: #3A6DB5;
  text-decoration: underline;
}

@media (max-width: 575px) {
  .shop-item__tel-num {
    font-size: 2.8rem;
  }
}

.shop-item__tel-num:hover {
  color: #3A6DB5;
  opacity: 0.8;
}

.shop-item__foot {
  width: 100%;
  padding-top: 1.5rem;
  font-size: 1.8rem;
  line-height: 1.4;
  text-align: center;
  border-top: 1px solid #D1D5DB;
}

@media (max-width: 575px) {
  .shop-item__foot {
    font-size: 1.6rem;
  }
}

.performer-sns {
  margin-top: 3rem;
  padding-bottom: 3rem;
  border: 1px solid #D1D5DB;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .performer-sns {
    margin-top: 2rem;
  }
}

.performer-sns__title {
  padding: 2rem;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  border-bottom: 1px solid #D1D5DB;
}

.performer-sns__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 2.5rem 2rem 0;
}

.performer-sns__item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.performer-sns__item a:hover {
  opacity: 0.5;
}

.performer-sns__name {
  font-size: 1.8rem;
  font-weight: bold;
}

.performer-sns__icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.performer-sns__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.performer-sns__icon img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.recommend {
  background-color: #fff;
  padding-bottom: 10rem;
}

@media (max-width: 767px) {
  .recommend {
    padding-bottom: 6rem;
  }
}

.recommend__back {
  padding-top: 4rem;
  margin-bottom: 8rem;
  text-align: center;
  border-top: 1px solid #D1D5DB;
}

@media (max-width: 767px) {
  .recommend__back {
    margin-bottom: 5rem;
  }
}

.recommend .event-card {
  border-radius: 5px;
}

.recommend .event-card__body {
  background-color: #f4f7f9;
}

/*company
-----------------------------------------------------*/

.company__body table {
  width: 100%;
  border-collapse: collapse;
}

.company__body td {
  padding: 2rem 3.5rem 2rem 1.5rem;
  font-size: 1.8rem;
  line-height: 1.8;
  border: 1px solid #D1D5DB;
}

@media (max-width: 767px) {
  .company__body td {
    padding: 1.5rem;
    font-size: 1.6rem;
  }
}

/* 1列目（項目名） */
.company__body td:first-child {
  width: 1%;
  white-space: nowrap;
  font-weight: bold;
  color: #0B1E3D;
  background-color: #F2F6FB;
}

/*faq
-----------------------------------------------------*/
.faq__item {
  padding: 2.2rem 2.5rem;
  background-color: #f4f7f9;
  border: 1px solid #BBCAE1;
  border-radius: 5px;
  transition: padding-bottom 0.3s ease;
}

@media (max-width: 767px) {
  .faq__item {
    padding: 3rem 2rem;
  }
}

@media (max-width: 575px) {
  .faq__item {
    padding: 2.5rem 1.5rem;
  }
}

.faq__item+.faq__item {
  margin-top: 1rem;
}

.faq__item:not(.is-open) {
  padding-bottom: 2.2rem;
}

@media (max-width: 767px) {
  .faq__item:not(.is-open) {
    padding-bottom: 2rem;
  }
}

@media (max-width: 575px) {
  .faq__item:not(.is-open) {
    padding-bottom: 1.5rem;
  }
}

.faq__toggle,
.faq__answer-inner {
  display: flex;
  align-items: baseline;
  gap: .8rem;
}

.faq__toggle {
  width: 100%;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
}

.faq__question {
  transition: padding-bottom 0.3s ease;
}

.faq__item.is-open .faq__question {
  padding-bottom: 3rem;
  border-bottom: 1px solid #D1D5DB;
}

@media (max-width: 575px) {
  .faq__item.is-open .faq__question {
    padding-bottom: 2rem;
  }
}

.faq__icon {
  flex-shrink: 0;
  align-self: center;
  width: 1.2rem;
  height: 1.2rem;
  margin-left: auto;
  border-right: 2px solid #3A6DB5;
  border-bottom: 2px solid #3A6DB5;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.faq__item.is-open .faq__icon {
  transform: rotate(225deg);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer-inner {
  overflow: hidden;
}

.faq__answer-inner>* {
  padding-top: 3rem;
}

@media (max-width: 575px) {
  .faq__answer-inner>* {
    padding-top: 2rem;
  }
}

.faq__mark {
  flex-shrink: 0;
  width: 2.2rem;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
}

@media (max-width: 575px) {
  .faq__mark {
    width: 1.8rem;
    font-size: 2.2rem;
  }
}

.faq__mark--q {
  color: #3A6DB5;
}

.faq__mark--a {
  color: #E07B00;
}

.faq__question-text {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}

@media (max-width: 575px) {
  .faq__question-text {
    font-size: 1.8rem;
  }
}

.faq__answer-body {
  min-width: 0;
  font-size: 1.8rem;
  line-height: 1.6;
}

@media (max-width: 575px) {
  .faq__answer-body {
    font-size: 1.6rem;
  }
}

.faq__answer-body p+p {
  margin-top: 1.5rem;
}

.faq__answer-body ul,
.faq__answer-body ol {
  margin-top: 1rem;
  padding-left: 1.5em;
  list-style: disc;
}

.faq__answer-body a {
  color: #3A6DB5;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.faq__answer-body a:hover {
  opacity: 0.7;
}

/*media
-----------------------------------------------------*/
.media__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem 3rem;
}

@media (max-width: 1023px) {
  .media__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
  }
}

@media (max-width: 767px) {
  .media__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .media__list {
    grid-template-columns: 1fr;
  }
}

.media__link {
  display: block;
  text-decoration: none;
}

.media__link,
.media__link:hover,
.media__link:focus {
  color: inherit;
}

.media__link:hover {
  opacity: 0.7;
}

.media__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 12rem;
  padding: 2rem;
  background-color: #fff;
  border: 1px solid #D1D5DB;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .media__logo {
    height: 10rem;
    padding: 1.5rem;
  }
}

.media__logo img {
  width: auto;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.media__text {
  margin-top: 1rem;
  font-size: 1.6rem;
  line-height: 1.6;
}

@media (max-width: 575px) {
  .media__text {
    margin-top: 1rem;
    font-size: 1.4rem;
  }
}

/*privacy-policy
-----------------------------------------------------*/

.policy__body {
  font-size: 1.8rem;
  line-height: 1.9;
}

@media (max-width: 767px) {
  .policy__body {
    font-size: 1.6rem;
  }
}

.policy__body h2 {
  margin: 2rem 0 1.5rem;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.4;
  color: #0B1E3D;
}

.policy__body h3 {
  margin: 3rem 0 1.5rem;
  font-size: 2rem;
  font-weight: bold;
}

.policy__body p {
  margin-bottom: 2rem;
}

.policy__body ul,
.policy__body ol {
  margin: 0 0 2rem;
  padding-left: 1em;
  list-style: disc;
}

.policy__body li {
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.policy__body a {
  color: #3A6DB5;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.policy__body a:hover {
  opacity: 0.7;
}

.policy__body>*:first-child {
  margin-top: 0;
}

/*media
-----------------------------------------------------*/
.media__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem 3rem;
}

@media (max-width: 1023px) {
  .media__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
  }
}

@media (max-width: 767px) {
  .media__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .media__list {
    grid-template-columns: 1fr;
  }
}

.media__link {
  display: block;
  text-decoration: none;
}

.media__link,
.media__link:hover,
.media__link:focus {
  color: inherit;
}

.media__link:hover {
  opacity: 0.7;
}

.media__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 12rem;
  padding: 2rem;
  background-color: #fff;
  border: 1px solid #D1D5DB;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .media__logo {
    height: 10rem;
    padding: 1.5rem;
  }
}

.media__logo img {
  width: auto;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.media__text {
  margin-top: 1rem;
  font-size: 1.6rem;
  line-height: 1.6;
}

@media (max-width: 575px) {
  .media__text {
    margin-top: 1rem;
    font-size: 1.4rem;
  }
}

/*partners（主要取引先）
-----------------------------------------------------*/
.partners__lead {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.9;
  text-align: center;
  margin-bottom: 4rem;
}

@media (max-width: 767px) {
  .partners__lead {
    font-size: 1.6rem;
    margin-bottom: 3rem;
  }
}

.partners__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 6rem;
}

@media (max-width: 767px) {
  .partners__list {
    grid-template-columns: 1fr;
    row-gap: 5rem;
  }
}

.partners__group {
  padding: 0 1rem;
  border-right: 1px solid #D1D5DB;
}

.partners__group:nth-child(3n),
.partners__group:last-child {
  border-right: none;
}

@media (max-width: 767px) {
  .partners__group {
    padding: 0;
    border-right: none;
  }
}

.partners__genre {
  font-family: "Noto Serif JP", "Noto Serif CJK JP", serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.3;
  color: #3A6DB5;
  text-align: center;
}

@media (max-width: 767px) {
  .partners__genre {
    font-size: 2.2rem;
  }
}

.partners__ornament {
  display: block;
  margin: 2.4rem auto 0;
}

@media (max-width: 767px) {
  .partners__ornament {
    margin: 1.8rem auto 0;
  }
}

.partners__companies {
  margin-top: 3rem;
}

@media (max-width: 767px) {
  .partners__companies {
    margin-top: 2rem;
  }
}

.partners__company {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 767px) {
  .partners__company {
    font-size: 1.8rem;
  }
}

.partners__company+.partners__company {
  margin-top: 3rem;
}

@media (max-width: 767px) {
  .partners__company+.partners__company {
    margin-top: 1.5rem;
  }
}

/*history（公演実績）
-----------------------------------------------------*/
.history__tab-bar {
  background-color: #F8F8F8;
  padding: 1.5rem 0;
  margin-bottom: 6rem;
}

@media (max-width: 767px) {
  .history__tab-bar {
    margin-bottom: 4rem;
  }
}

.history__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 6.5rem;
  column-gap: 6.5rem;
  row-gap: 2.2rem;
  max-width: 950px;
  padding: 0 2rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .history__tabs {
    -moz-column-gap: 3.4rem;
    column-gap: 3.4rem;
    row-gap: 1.8rem;
    padding: 0 1.5rem;
  }
}

.history__tabs-item {
  position: relative;
}

.history__tabs-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -3.25rem;
  width: 1px;
  height: 3.25rem;
  background-color: rgba(26, 26, 26, 0.25);
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .history__tabs-item:not(:last-child)::after {
    right: -1.7rem;
    height: 2.4rem;
  }
}

.history__tab {
  position: relative;
  padding: 0.4rem 0;
  font-family: "Noto Serif JP", "Noto Serif CJK JP", serif;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1A1A1A;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

@media (max-width: 767px) {
  .history__tab {
    font-size: 1.8rem;
  }
}

.history__tab:hover,
.history__tab:focus,
.history__tab:active {
  color: #3A6DB5;
}

.history__tab.is-active {
  font-weight: 900;
  color: #3A6DB5;
}

.history__tab.is-active::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  width: calc(100% + 3.5rem);
  height: 2px;
  background-color: #3A6DB5;
  transform: translateX(-50%);
}

.history__year {
  margin: 0 0 1.5rem 2rem;
  font-family: "Tiro Bangla", serif;
  font-size: 10.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.408rem;
  /* letter-spacing は最後の文字の右にも効くので、そのぶんを戻す */
  padding-right: 0.408rem;
  color: #0B1E3D;
}

@media (max-width: 767px) {
  .history__year {
    margin: 0 0 1.5rem;
    font-size: 6rem;
    letter-spacing: -0.24rem;
    padding-right: 0.24rem;
  }
}

.history__timeline {
  margin-left: 4.4rem;
  padding-left: 3.6rem;
  border-left: 4px solid #EBF3F6;
}

@media (max-width: 767px) {
  .history__timeline {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }
}

.history__month-card {
  position: relative;
  display: flex;
  gap: 3rem;
  align-items: stretch;
  padding: 2rem;
  background-color: #fff;
  border: 1px solid #BBCAE1;
  border-radius: 5px;
}

.history__month-card::before {
  content: "";
  position: absolute;
  top: 4.5rem;
  left: calc(-3.6rem - 7.5px);
  width: 11px;
  height: 11px;
  background-color: #fff;
  border: 3px solid #0B1E3D;
  border-radius: 50%;
}

.history__month-card+.history__month-card {
  margin-top: 1.5rem;
}

@media (max-width: 767px) {
  .history__month-card {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .history__month-card::before {
    display: none;
  }
}

.history__month {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-shrink: 0;
  width: 86px;
  /* body の line-height 1.8 を継承すると、44pxの数字の上下に
     約17.6pxずつ行送りの余白が入る。位置を padding だけで決められるよう 1 にする */
  line-height: 1;
  padding-top: 1.6rem;
  font-family: "Noto Serif JP", "Noto Serif CJK JP", serif;
  color: #0B1E3D;
  background-color: #F4F7F9;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .history__month {
    justify-content: flex-start;
    width: auto;
    padding: 0.5rem 1.4rem 0.7rem;
  }
}

.history__month-num {
  font-size: 4.4rem;
  font-weight: 700;
  letter-spacing: -0.176rem;
}

@media (max-width: 767px) {
  .history__month-num {
    font-size: 3rem;
  }
}

.history__month-unit {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.104rem;
}

@media (max-width: 767px) {
  .history__month-unit {
    font-size: 1.8rem;
  }
}

.history__rows {
  flex: 1;
  min-width: 0;
  padding: 1.8rem 0;
}

@media (max-width: 767px) {
  .history__rows {
    padding: 0;
  }
}

.history__row {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.history__row+.history__row {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid #E7EDF5;
}

@media (max-width: 767px) {
  .history__row {
    flex-direction: column;
    gap: 1rem;
  }

  .history__row+.history__row {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
}

.history__row-head {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-shrink: 0;
}

.history__name {
  min-width: 18.3rem;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

@media (max-width: 767px) {
  .history__name {
    min-width: 0;
    font-size: 1.6rem;
  }
}

.history__area {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.8rem 1rem 0.9rem;
  min-width: calc(3em + 2rem);
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
  background-color: #5CA7E1;
  border-radius: 3px;
}

@media (max-width: 767px) {
  .history__area {
    padding: 0.6rem 0.8rem 0.7rem;
    min-width: calc(3em + 1.6rem);
    font-size: 1.3rem;
  }
}

.history__area--teal {
  background-color: #5BC0BE;
}

.history__area--red {
  background-color: #E58B8B;
}

.history__area--purple {
  background-color: #9B8BD6;
}

.history__place {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
  font-size: 1.8rem;
  font-weight: bold;
}

@media (max-width: 767px) {
  .history__place {
    font-size: 1.6rem;
  }
}

.history__place-icon {
  flex-shrink: 0;
  margin-top: 0.4rem;
}

@media (max-width: 767px) {
  .history__place-icon {
    width: 20px;
    height: 20px;
    margin-top: 0.3rem;
  }
}

.history__venues {
  min-width: 0;
  line-height: 1.8;
}

.history__venue {
  white-space: nowrap;
}

/*# sourceMappingURL=style.css.map */