@charset "UTF-8";
.js-inview.js-inviewFadein {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.js-inview.-inview.js-inviewFadein {
  opacity: 1;
  transition: opacity 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.c-pageHeading__inner.js-inview .c-pageHeading__title span,
.c-pageHeading__inner.js-inview .c-pageHeading__title span::before {
  opacity: 0;
  transition: transform 1s cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transform: translateY(20px);
}
.c-pageHeading__inner.js-inview .c-pageHeading__subTitle {
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity 0.8s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transform: translateY(5px);
}

.c-pageHeading__inner.js-inview.-inview .c-pageHeading__title span,
.c-pageHeading__inner.js-inview.-inview .c-pageHeading__title span::before {
  opacity: 1;
  transition: transform 1s cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transform: translateY(0);
}
.c-pageHeading__inner.js-inview.-inview .c-pageHeading__subTitle {
  opacity: 1;
  transition: transform 0.8s cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity 0.8s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition-delay: 0.8s;
  transform: translateY(0);
}
.c-pageHeading__inner.js-inview.-inview .c-pageHeading__title span::before {
  transition-delay: 0.25s;
}

:root {
  --color-primary: #F8791F;
  --color-secondary: #53adad;
  --color-text: #111;
  --color-red: #F95056;
  --color-bg: #FFE0BF;
  --color-line: #111;
  --clientWidth: var(--jsClientWidth, 100vw);
  --clientHight: var(--jsClientHeight, 100vh);
  --headerHeight: 95px;
  --headerHeightSp: 100px;
}

body {
  font-size: 16px;
  color: #111;
  letter-spacing: 0.025em;
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  font-family: "Noto Sans JP", system-ui;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
}

* {
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
*::before, *::after {
  box-sizing: inherit;
}
*:focus {
  outline: none;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  padding: 0;
  margin: 0;
  border: 0;
}

a {
  outline: none;
  -webkit-touch-callout: none;
}
a, a:visited {
  color: inherit;
}
@media (any-hover: hover) {
  a {
    transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
}
@media (min-width: 768px) {
  a:hover {
    color: var(--color-primary);
    text-decoration: none;
  }
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

ol,
ul {
  list-style: none;
}

img,
video {
  max-width: 100%;
}

img {
  height: auto;
  vertical-align: top;
  border-style: none;
}
@media not all and (min-width: 1024px) {
  img {
    width: 100%;
  }
}

blockquote,
q {
  quotes: none;
}

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

b,
em,
strong,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

address {
  font-style: normal;
}

small {
  font-size: 87.5%;
}

[hidden]:not([hidden=until-found]) {
  display: none !important;
}

[disabled] {
  /* stylelint-disable-next-line */
  cursor: not-allowed;
}

/* form */
input[type=text],
input[type=tel],
input[type=number],
input[type=date],
input[type=time],
input[type=password],
input[type=email],
textarea {
  appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

textarea {
  display: block;
}

fieldset {
  margin: 0;
  border: none;
}

legend {
  display: none;
}

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

:root {
  --zindex-header: 10;
}

.l-header {
  z-index: var(--zindex-header);
}

.l-header__logoWrap {
  z-index: calc(var(--zindex-header) + 1);
}

.l-subFix {
  z-index: calc(var(--zindex-header) - 1);
}

.p-topMainVisual__heading,
.p-topMainVisual__lead,
.p-topMainVisual__scroll {
  z-index: calc(var(--zindex-header) - 8);
}

.c-buttonWrap {
  display: flex;
}
.c-buttonWrap._left {
  justify-content: flex-start;
}
.c-buttonWrap._center {
  justify-content: center;
}
.c-buttonWrap._right {
  justify-content: flex-end;
}

.c-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  border: 1px solid #111;
  text-decoration: none;
  transition: border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@media not all and (min-width: 1024px) {
  .c-button {
    border-radius: 18.9054726368vw;
    height: 12.1890547264vw;
    padding: 0 13.4328358209vw 0 10.447761194vw;
  }
}
@media (min-width: 1024px) {
  .c-button {
    border-radius: 5.0666666667vw;
    height: 3.2666666667vw;
    padding: 0 3.6vw 0 2.8vw;
  }
}
.c-button span {
  color: #111;
  white-space: nowrap;
  transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
}
.c-button::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 9px;
  background-color: #111;
  mask-image: url("../img/arrow.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url("../img/arrow.svg");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  transition: background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@media not all and (min-width: 1024px) {
  .c-button::after {
    right: 3.7313432836vw;
  }
}
@media (min-width: 1024px) {
  .c-button::after {
    right: 1vw;
  }
}
@media (any-hover: hover) {
  .c-button:hover {
    border-color: var(--color-primary);
    transition: border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .c-button:hover span {
    color: var(--color-primary);
    transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .c-button:hover::after {
    background-color: var(--color-primary);
    transition: background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
}
.c-button._white {
  border-color: #fff;
}
.c-button._white span {
  color: #fff;
}
.c-button._white::after {
  background-color: #fff;
}
@media (any-hover: hover) {
  .c-button._white:hover {
    border-color: var(--color-primary);
  }
  .c-button._white:hover span {
    color: var(--color-primary);
  }
  .c-button._white:hover::after {
    background-color: var(--color-primary);
  }
}
@media not all and (min-width: 1024px) {
  .c-button + .c-button {
    margin-top: 29px;
  }
}
@media (min-width: 1024px) {
  .c-button + .c-button {
    margin-left: 29px;
  }
}

button.c-button {
  justify-content: center;
  width: 100%;
  height: 18.407960199vw;
  padding-right: 20px;
  padding-left: 20px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.008em;
  line-height: 114%;
  background: var(--color-primary);
  border: none;
  border-radius: 999px;
  transition: background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  font-size: 1rem;
  font-weight: 700;
}
@media (min-width: 1024px) {
  button.c-button {
    height: 74px;
    padding-right: 25px;
    padding-left: 25px;
    cursor: pointer;
    font-size: 1.25rem;
  }
}
button.c-button::after {
  position: initial;
  transform: none;
  margin-inline-start: 0.5em;
  background-color: #fff;
}
button.c-button span {
  color: #fff;
}
@media (min-width: 1024px) {
  button.c-button:not(._auto) {
    width: 26.5333333333vw;
  }
}
button.c-button[data-button=back] {
  width: 39.3034825871vw;
  height: 13.4328358209vw;
  margin-inline: auto;
  background: #AB9687;
}
@media (min-width: 1024px) {
  button.c-button[data-button=back] {
    width: 10.5333333333vw;
    height: 54px;
  }
}
button.c-button[data-button=back]::after {
  display: none;
}
button.c-button[data-button=back]::before {
  content: "";
  transform: rotate(180deg);
  width: 11px;
  height: 9px;
  margin-inline-end: 0.5em;
  background-color: #fff;
  mask-image: url("../img/arrow.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  transition: background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (any-hover: hover) {
  button.c-button:hover {
    background-color: #000;
    transition: background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
  button.c-button:hover span {
    color: #fff;
  }
  button.c-button:hover::after {
    background-color: #fff;
  }
}

.c-channels__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .c-channels__list {
    column-gap: 2.6666666667vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 2vw;
  }
}

.c-channels__item + .c-channels__item {
  margin-top: 5.223880597vw;
}
@media (min-width: 1024px) {
  .c-channels__item + .c-channels__item {
    margin-top: 0;
  }
}

.c-channels__item .item {
  position: relative;
  align-items: flex-start;
  border: 1px solid #2f2f2f;
  border-radius: 12px;
  display: flex;
  gap: 6.2189054726vw;
  padding: 5.4726368159vw 6.2189054726vw 5.9701492537vw 3.9800995025vw;
}
@media (min-width: 1024px) {
  .c-channels__item .item {
    gap: 2vw;
    height: 100%;
    padding: 2vw 1.7333333333vw;
  }
}
@media (min-width: 1024px) and (any-hover: hover) {
  .c-channels__item .item .item__avatar img {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
}
@media (min-width: 1024px) and (any-hover: hover) {
  .c-channels__item .item:has(.item__name a:hover) .item__avatar img {
    transform: scale(1.05);
  }
}
.c-channels__item .item__avatar {
  border-radius: 50%;
  flex-shrink: 0;
  height: 19.9004975124vw;
  overflow: hidden;
  width: 19.9004975124vw;
}
@media (min-width: 1024px) {
  .c-channels__item .item__avatar {
    height: 8vw;
    width: 8vw;
  }
}
.c-channels__item .item__avatar img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.c-channels__item .item__body {
  display: flex;
  flex-direction: column;
  gap: 2.4875621891vw;
}
@media (min-width: 1024px) {
  .c-channels__item .item__body {
    gap: 0.5333333333vw;
  }
}
.c-channels__item .item__name {
  letter-spacing: 0.03em;
  line-height: normal;
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
}
.c-channels__item .item__name a {
  color: #fff;
  text-decoration: none;
}
.c-channels__item .item__name a::before {
  content: "";
  position: absolute;
  inset: 0;
}
@media (min-width: 1024px) and (any-hover: hover) {
  .c-channels__item .item__name a {
    transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
}
@media (min-width: 1024px) and (any-hover: hover) {
  .c-channels__item .item__name a:hover {
    color: #F8791F;
  }
}
.c-channels__item .item__desc {
  color: #999;
  line-height: 1.8;
  margin: 0;
  font-size: 0.875rem;
}
.c-channels__item .item__sns {
  align-items: center;
  display: flex;
  gap: 12px;
}
.c-channels__item .item__snsLink {
  align-items: center;
  color: #F8791F;
  display: flex;
  justify-content: center;
  position: relative;
}
@media (min-width: 1024px) {
  .c-channels__item .item__snsLink {
    z-index: 1;
  }
}
@media (min-width: 1024px) and (any-hover: hover) {
  .c-channels__item .item__snsLink {
    transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .c-channels__item .item__snsLink [class*=c-icon__] {
    transition: background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .c-channels__item .item__snsLink [class*=c-icon__]::before {
    transition: background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
}
@media (min-width: 1024px) and (any-hover: hover) {
  .c-channels__item .item__snsLink:hover {
    color: #fff;
  }
  .c-channels__item .item__snsLink:hover [class*=c-icon__]::before {
    background-color: #F8791F;
  }
}

.c-contact .c-contact__lead {
  line-height: 180%;
  letter-spacing: 0.1em;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .c-contact .c-contact__lead {
    text-align: center;
  }
}
.c-contact[data-page=contact_finish] .c-contact__lead {
  margin-bottom: 45px;
}
@media (min-width: 768px) {
  .c-contact[data-page=contact_finish] .c-contact__lead {
    margin-bottom: 92px;
  }
}
.c-contact .c-contact__formFinish .c-contact__formTitle {
  margin-bottom: 25px;
  line-height: 1.8;
  text-align: left;
  font-size: 1.25rem;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .c-contact .c-contact__formFinish .c-contact__formTitle {
    margin-bottom: 40px;
    text-align: center;
    font-size: 2.25rem;
  }
}
.c-contact .c-contact__formFinish .c-contact__lead {
  margin-bottom: 45px;
}
@media (min-width: 1024px) {
  .c-contact .c-contact__formFinish .c-contact__lead {
    max-width: 1017px;
    margin-inline: auto;
    margin-bottom: 92px;
  }
}
.c-contact .c-contact__required {
  color: var(--color-red);
}
.c-contact .c-contact__form .c-input input[type=date],
.c-contact .c-contact__form .c-input input[type=email],
.c-contact .c-contact__form .c-input input[type=number],
.c-contact .c-contact__form .c-input input[type=password],
.c-contact .c-contact__form .c-input input[type=tel],
.c-contact .c-contact__form .c-input input[type=text],
.c-contact .c-contact__form .c-input input[type=time] {
  background-color: #fff4e9;
}
@media not all and (min-width: 1024px) {
  .c-contact .c-contact__form .c-input input[type=date],
  .c-contact .c-contact__form .c-input input[type=email],
  .c-contact .c-contact__form .c-input input[type=number],
  .c-contact .c-contact__form .c-input input[type=password],
  .c-contact .c-contact__form .c-input input[type=tel],
  .c-contact .c-contact__form .c-input input[type=text],
  .c-contact .c-contact__form .c-input input[type=time] {
    width: 100%;
  }
}
.c-contact .c-contact__form .c-select select {
  height: 45px;
  background: #fff4e9;
  border-radius: 8px;
}
.c-contact .c-contact__form .c-textarea textarea {
  background-color: #fff4e9;
  height: 67.1641791045vw;
}
@media (min-width: 1024px) {
  .c-contact .c-contact__form .c-textarea textarea {
    height: 253px;
  }
}

.c-contact__info {
  margin-top: 16.9154228856vw;
}
@media (min-width: 1024px) {
  .c-contact__info {
    margin-top: 75px;
    text-align: center;
  }
}

.c-contact__infoTitle {
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-size: 1rem;
  font-weight: 700;
}

.c-contact__infoText {
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-size: 1rem;
  font-weight: 500;
}

.c-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #111;
}
@media not all and (min-width: 1024px) {
  .c-cta {
    padding: 24.1293532338vw 6.2189054726vw 25.8706467662vw;
  }
}
@media (min-width: 1024px) {
  .c-cta {
    height: 21vw;
    justify-content: center;
  }
}
.c-cta .c-cta__title {
  color: #fff;
  letter-spacing: 0.1em;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", system-ui;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
  font-weight: 700;
  line-height: 1.8;
}
@media not all and (min-width: 1024px) {
  .c-cta .c-cta__title {
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .c-cta .c-cta__title {
    text-align: center;
  }
}
@media not all and (min-width: 1024px) {
  .c-cta .c-cta__button {
    margin-top: 7.2139303483vw;
  }
}
@media (min-width: 1024px) {
  .c-cta .c-cta__button {
    margin-top: 1.9333333333vw;
  }
}
.c-cta .c-cta__button a {
  position: relative;
  display: inline-flex;
  align-items: center;
  border: 1px solid #fff;
  text-decoration: none;
  transition: border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@media not all and (min-width: 1024px) {
  .c-cta .c-cta__button a {
    border-radius: 18.9054726368vw;
    height: 12.1890547264vw;
    padding: 0 13.4328358209vw 0 10.447761194vw;
  }
}
@media (min-width: 1024px) {
  .c-cta .c-cta__button a {
    border-radius: 5.0666666667vw;
    height: 3.2666666667vw;
    padding: 0 3.6vw 0 2.8vw;
  }
}
.c-cta .c-cta__button a span {
  color: #fff;
  transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
}
.c-cta .c-cta__button a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 9px;
  background-color: #fff;
  mask-image: url("../img/arrow.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url("../img/arrow.svg");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  transition: background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@media not all and (min-width: 1024px) {
  .c-cta .c-cta__button a::after {
    right: 3.7313432836vw;
  }
}
@media (min-width: 1024px) {
  .c-cta .c-cta__button a::after {
    right: 1vw;
  }
}
@media (any-hover: hover) {
  .c-cta .c-cta__button a:hover {
    border-color: var(--color-primary);
  }
  .c-cta .c-cta__button a:hover span {
    color: var(--color-primary);
  }
  .c-cta .c-cta__button a:hover::after {
    background-color: var(--color-primary);
  }
}

.c-form {
  margin-top: 38px;
}
@media (min-width: 768px) {
  .c-form {
    margin-top: 50px;
  }
}
.c-form .error {
  padding-top: 5px;
  font-weight: bold;
  color: var(--color-red);
}
.c-form .c-form__lead + dl {
  margin-top: 40px;
}
.c-form + .c-buttonWrap {
  margin-top: 46px;
}
.c-form .c-form__err {
  display: block;
  color: var(--color-red);
  line-height: 180%;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 500;
}
.c-form .c-form__err + dl {
  margin-top: 20px;
}
.c-form .c-form__item {
  padding-block: 7.4626865672vw 6.4676616915vw;
  border-bottom: 1px solid #111;
}
@media (min-width: 1024px) {
  .c-form .c-form__item {
    display: grid;
    grid-template-columns: 195px 1fr;
    gap: 0 10px;
    padding-block: 32px;
  }
}
.c-form .c-form__item .c-form__err {
  line-height: 180%;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 500;
}
.c-form .c-form__item dt {
  padding-block-start: 0.5em;
  letter-spacing: 0.1em;
  line-height: 180%;
  font-size: 1rem;
  font-weight: 700;
}
.c-form .c-form__item dd label {
  display: block;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}
.c-form .c-form__item dd label + label {
  margin-top: 7px;
}
.c-form .c-form__item dd > p {
  padding-top: 8px;
}
.c-form .c-buttonWrap {
  margin-top: 13.9303482587vw;
}
@media (min-width: 1024px) {
  .c-form .c-buttonWrap {
    margin-top: 94px;
  }
}
.c-form .c-buttonWrap + .c-buttonWrap {
  margin-top: 9.9502487562vw;
}
@media (min-width: 1024px) {
  .c-form .c-buttonWrap + .c-buttonWrap {
    margin-top: 43px;
  }
}
.c-form._confirm .c-form__item {
  padding-block: 7.4626865672vw 5.9701492537vw;
  margin: 0;
  border-bottom: 1px solid #111;
}
@media (min-width: 1024px) {
  .c-form._confirm .c-form__item {
    padding-block: 24px;
  }
}
.c-form._confirm .c-form__item dt {
  padding-top: 0;
}
.c-form._confirm .c-form__item dd > p {
  padding-top: 0;
}
@media not all and (min-width: 1024px) {
  .c-form._confirm .c-buttonWrap form {
    display: flex;
    width: 100%;
  }
}
@media not all and (min-width: 1024px) {
  .c-form._confirm .c-buttonWrap .c-button {
    margin-inline: auto;
  }
}

.c-form__required {
  margin-left: 0.4rem;
  color: var(--color-red);
}

.c-form__agree {
  height: 230px;
  padding: 20px 22px;
  margin-top: 47px;
  background: #fff4e9;
  overflow-y: auto;
  text-align: left;
}
.c-form__agree > h2 {
  margin-block-end: 6px;
  font-size: 1.25rem;
  font-weight: 700;
}
.c-form__agree > h3 {
  margin-block: 2.5em 3px;
  font-weight: 700;
}
.c-form__agree > ul {
  margin-block-start: 1em;
}
.c-form__agree > ul + p {
  margin-block-start: 1em;
}
.c-form__agree > p + p {
  margin-block-start: 1em;
}
.c-form__agree a {
  color: var(--color-primary);
}

.c-form__agreeCheck {
  margin-top: 30px;
  letter-spacing: 0.1em;
  font-size: 1rem;
  font-weight: 700;
}

.c-hamburger {
  position: fixed;
  top: 29px;
  right: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: none;
  background: none;
}
.c-hamburger .c-hamburger__line {
  position: relative;
  display: block;
  width: 42px;
  height: 3px;
  background-color: #000;
  border-radius: 999px;
  transition: color 0.3s;
}
body:not(.home) .l-header:not(._fixed) .c-hamburger .c-hamburger__line {
  background-color: var(--color-text);
}

.l-header .l-header__navigation._open + .c-hamburger .c-hamburger__line {
  background-color: #000 !important;
}

.c-hamburger .c-hamburger__line::before, .c-hamburger .c-hamburger__line::after {
  position: absolute;
  left: 0;
  display: block;
  width: 42px;
  height: 3px;
  content: "";
  background-color: #000;
  border-radius: 999px;
  transition: background-color 0.3s;
}
body:not(.home) .l-header:not(._fixed) .c-hamburger .c-hamburger__line::before, body:not(.home) .l-header:not(._fixed) .c-hamburger .c-hamburger__line::after {
  background-color: var(--color-text);
}

.l-header .l-header__navigation._open + .c-hamburger .c-hamburger__line::before, .l-header .l-header__navigation._open + .c-hamburger .c-hamburger__line::after {
  background-color: #000 !important;
}

.c-hamburger .c-hamburger__line::before {
  top: -13px;
}
.c-hamburger .c-hamburger__line::after {
  bottom: -13px;
}
.l-header .l-header__navigation._open + .c-hamburger .c-hamburger__line {
  background: none !important;
}
.l-header .l-header__navigation._open + .c-hamburger .c-hamburger__line::before {
  transform: translateY(13px) rotateZ(45deg);
}
.l-header .l-header__navigation._open + .c-hamburger .c-hamburger__line::after {
  transform: translateY(-13px) rotateZ(-45deg);
}

@media (min-width: 1024px) {
  .c-hamburger {
    display: none;
  }
}

[class*=c-icon] {
  flex-shrink: 0;
}
[class*=c-icon] span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  border: 0;
}

.c-icon__x,
.c-icon__instagram,
.c-icon__tictoc,
.c-icon__facebook {
  background-color: currentcolor;
  border-radius: 50%;
  display: block;
  height: 36px;
  position: relative;
  width: 36px;
}
.c-icon__x::before,
.c-icon__instagram::before,
.c-icon__tictoc::before,
.c-icon__facebook::before {
  background-color: #fff;
  content: "";
  display: block;
  inset: 0;
  mask-position: center;
  mask-repeat: no-repeat;
  position: absolute;
}

.c-icon__x::before {
  mask-image: url("../img/sns_x.svg");
  mask-size: 18px auto;
}

.c-icon__instagram::before {
  mask-image: url("../img/sns_instagram.svg");
  mask-size: 22px auto;
}

.c-icon__tictoc::before {
  mask-image: url("../img/sns_tictoc.svg");
  mask-size: 16px auto;
}

.c-icon__facebook::before {
  mask-image: url("../img/sns_facebook.svg");
  mask-position: center bottom;
  mask-size: 14px auto;
}

input:-webkit-autofill {
  -webkit-transition: background-color 5000s ease-in-out 0s !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

.c-input {
  width: 100%;
}
.c-input input[type=date],
.c-input input[type=email],
.c-input input[type=number],
.c-input input[type=password],
.c-input input[type=tel],
.c-input input[type=text],
.c-input input[type=time] {
  box-sizing: border-box;
  padding: 10px 12px;
  background-color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .c-input input[type=date],
  .c-input input[type=email],
  .c-input input[type=number],
  .c-input input[type=password],
  .c-input input[type=tel],
  .c-input input[type=text],
  .c-input input[type=time] {
    padding: 15px;
  }
}
.c-input input[type=date]::placeholder,
.c-input input[type=email]::placeholder,
.c-input input[type=number]::placeholder,
.c-input input[type=password]::placeholder,
.c-input input[type=tel]::placeholder,
.c-input input[type=text]::placeholder,
.c-input input[type=time]::placeholder {
  color: #ccc;
}
.c-input input[type=date],
.c-input input[type=email],
.c-input input[type=number],
.c-input input[type=password],
.c-input input[type=tel],
.c-input input[type=text],
.c-input input[type=time] {
  /* stylelint-disable-next-line */
}
.c-input input[type=date]:focus-visible,
.c-input input[type=email]:focus-visible,
.c-input input[type=number]:focus-visible,
.c-input input[type=password]:focus-visible,
.c-input input[type=tel]:focus-visible,
.c-input input[type=text]:focus-visible,
.c-input input[type=time]:focus-visible {
  outline: 1px solid var(--color-primary);
}
.c-input input[name=Zip] {
  margin-bottom: 13px;
}
.c-input input[name=Zip]::before {
  margin-right: 12px;
  content: "〒";
}
.c-input._lage input[type=date],
.c-input._lage input[type=email],
.c-input._lage input[type=number],
.c-input._lage input[type=password],
.c-input._lage input[type=tel],
.c-input._lage input[type=text],
.c-input._lage input[type=time] {
  width: 100%;
}
.c-input._medium input[type=date],
.c-input._medium input[type=email],
.c-input._medium input[type=number],
.c-input._medium input[type=password],
.c-input._medium input[type=tel],
.c-input._medium input[type=text],
.c-input._medium input[type=time] {
  width: 30.4666666667vw;
}
@media not all and (min-width: 768px) {
  .c-input._medium input[type=date],
  .c-input._medium input[type=email],
  .c-input._medium input[type=number],
  .c-input._medium input[type=password],
  .c-input._medium input[type=tel],
  .c-input._medium input[type=text],
  .c-input._medium input[type=time] {
    width: 100%;
  }
}
.c-input._small input[type=date],
.c-input._small input[type=email],
.c-input._small input[type=number],
.c-input._small input[type=password],
.c-input._small input[type=tel],
.c-input._small input[type=text],
.c-input._small input[type=time] {
  width: 140px;
}
@media not all and (min-width: 768px) {
  .c-input._small input[type=date],
  .c-input._small input[type=email],
  .c-input._small input[type=number],
  .c-input._small input[type=password],
  .c-input._small input[type=tel],
  .c-input._small input[type=text],
  .c-input._small input[type=time] {
    width: 100%;
  }
}
.c-input input[type=checkbox],
.c-input input[type=radio] {
  margin-right: 4px;
}
@media (min-width: 768px) {
  .c-input input[type=checkbox],
  .c-input input[type=radio] {
    margin-right: 8px;
  }
}

span.c-input + span.c-input {
  margin-left: 20px;
}
@media not all and (min-width: 768px) {
  span.c-input + span.c-input {
    display: block;
    margin-left: 0;
  }
}

p.c-input__help {
  margin-bottom: 10px;
}

span.c-input__help {
  margin-left: 10px;
}
@media not all and (min-width: 768px) {
  span.c-input__help {
    display: block;
    margin-top: 5px;
    margin-left: 0;
  }
}

.c-textarea._narrow {
  margin: 28px auto 30px;
}
@media (min-width: 1024px) {
  .c-textarea._narrow {
    width: 76%;
  }
}
.c-textarea._narrow textarea {
  font-size: 1rem;
}
.c-textarea textarea {
  box-sizing: border-box;
  width: 100%;
  height: 150px;
  min-height: 80px;
  padding: 10px 12px;
  background-color: #fff;
  border: none;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .c-textarea textarea {
    height: 225px;
    padding: 20px;
  }
}
.c-textarea textarea::placeholder {
  color: #ccc;
}
.c-textarea textarea {
  /* stylelint-disable-next-line */
}
.c-textarea textarea:focus-visible {
  outline: 1px solid var(--color-primary);
}

ul .c-list > li, ol .c-list > li {
  margin-left: 20px;
}
.c-list._alpha {
  list-style-type: lower-alpha;
}
.c-list._roman {
  list-style-type: lower-roman;
}

.c-listDot li {
  display: flex;
}
.c-listDot li + li {
  margin-top: 16px;
}
@media (min-width: 1024px) {
  .c-listDot li + li {
    margin-top: 11px;
  }
}
.c-listDot li::before {
  display: block;
  flex-shrink: 0;
  width: 23px;
  text-align: center;
  content: "・";
}
@media (min-width: 1024px) {
  .c-listDot li::before {
    width: 14px;
    font-feature-settings: "palt";
    text-align: left;
  }
}

.c-listArchive {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.c-listArchive__item {
  padding-block: 9.9502487562vw;
  border-bottom: 1px solid #111;
}
@media (min-width: 1024px) {
  .c-listArchive__item {
    padding-block: 1.6666666667vw;
  }
}
.c-listArchive__item .item .item__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
@media (any-hover: hover) {
  .c-listArchive__item .item .item__link {
    transition: color 0.3s;
  }
  .c-listArchive__item .item .item__link:hover {
    color: #F8791F;
  }
}
.c-listArchive__item .item .item__heading {
  display: flex;
  flex-direction: column;
  gap: 1.9900497512vw;
}
@media (min-width: 1024px) {
  .c-listArchive__item .item .item__heading {
    gap: 0.5333333333vw;
  }
}
.c-listArchive__item .item .item__headingTitle {
  font-family: "Noto Sans JP", system-ui;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  order: 1;
}
.c-listArchive__item .item .item__headingMeta {
  display: flex;
  align-items: center;
  gap: 2.4875621891vw;
  white-space: nowrap;
  order: 0;
  font-family: "Lato", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.1em;
}
@media (min-width: 1024px) {
  .c-listArchive__item .item .item__headingMeta {
    gap: 3vw;
  }
}
.c-listArchive__item .item .item__headingMeta .category span::before {
  content: "[ ";
}
.c-listArchive__item .item .item__headingMeta .category span::after {
  content: " ]";
}

.c-listArchive._row {
  gap: 9.9502487562vw;
}
@media (min-width: 1024px) {
  .c-listArchive._row {
    gap: 30px;
  }
}
.c-listArchive._row .c-listArchive__item {
  padding-block: 0;
  border-bottom: none;
}
@media (min-width: 1024px) {
  .c-listArchive._row .item__heading {
    display: grid;
    grid-template-columns: 15.6666666667vw 1fr;
    align-items: start;
    gap: 1.6666666667vw;
  }
  .c-listArchive._row .item__headingMeta {
    padding-block-start: 0.2em;
  }
  .c-listArchive._row .item__headingTitle {
    flex: 1;
  }
}

.c-pageHeading {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-bottom: 6px solid #111;
  background: linear-gradient(to bottom, #ffc98f, #fff3e7);
}
@media not all and (min-width: 1024px) {
  .c-pageHeading {
    height: 96.0199004975vw;
  }
}
@media (min-width: 1024px) {
  .c-pageHeading {
    height: 25.7333333333vw;
  }
}
.c-pageHeading::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/pageHeading/bg_texture.jpg") center/cover no-repeat;
  opacity: 0.4;
  pointer-events: none;
}
@media not all and (min-width: 1024px) {
  .c-pageHeading::before {
    background-size: 373.1343283582vw auto;
  }
}
.c-pageHeading::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  background: white;
  opacity: 0.89;
  mask-image: url("../img/pageHeading/bg_mask.svg");
  mask-position: 0 0;
  mask-repeat: no-repeat;
  pointer-events: none;
}
@media not all and (min-width: 1024px) {
  .c-pageHeading::after {
    left: -43.7810945274vw;
    width: 272.1393034826vw;
    mask-size: 288.5572139303vw 121.8905472637vw;
  }
}
@media (min-width: 1024px) {
  .c-pageHeading::after {
    left: 27.0666666667vw;
    width: 72.9333333333vw;
    mask-size: 77.3333333333vw 32.6666666667vw;
  }
}
.c-pageHeading .c-pageHeading__inner {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--color-text);
}
@media not all and (min-width: 1024px) {
  .c-pageHeading .c-pageHeading__inner {
    margin-block-start: 12.4378109453vw;
  }
}
@media (min-width: 1024px) {
  .c-pageHeading .c-pageHeading__inner {
    margin-block-start: 5.6666666667vw;
  }
}
.c-pageHeading .c-pageHeading__title span {
  display: block;
  font-weight: 500;
}
@media not all and (min-width: 1024px) {
  .c-pageHeading .c-pageHeading__title span {
    letter-spacing: 0.03em;
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .c-pageHeading .c-pageHeading__title span {
    letter-spacing: 0.03em;
    font-size: 1rem;
  }
}
.c-pageHeading .c-pageHeading__title span::before {
  content: attr(data-en);
  display: block;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}
@media not all and (min-width: 1024px) {
  .c-pageHeading .c-pageHeading__title span::before {
    margin-bottom: 1.9900497512vw;
    font-size: 13.4328358209vw;
    letter-spacing: -0.01em;
  }
}
@media (min-width: 1024px) {
  .c-pageHeading .c-pageHeading__title span::before {
    margin-bottom: 0.8vw;
    font-size: 3.6vw;
    letter-spacing: -0.01em;
  }
}

.navigation {
  text-align: center;
}
@media not all and (min-width: 768px) {
  .navigation.pagination {
    padding-top: 77px;
  }
}
@media (min-width: 768px) {
  .navigation.pagination {
    margin-top: 100px;
  }
}
.navigation.pagination .page-numbers {
  display: flex;
  justify-content: center;
}
.navigation.pagination li {
  align-self: center;
}
.navigation.pagination li + li {
  margin-left: 1.7412935323vw;
}
@media (min-width: 768px) {
  .navigation.pagination li + li {
    margin-left: 7px;
  }
}
.navigation.pagination a,
.navigation.pagination span[aria-current=page],
.navigation.pagination span[class*=dots] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 8.9552238806vw;
  height: 8.9552238806vw;
  line-height: 1;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  font-size: 1.5rem;
  font-family: "Lato", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
}
@media (min-width: 768px) {
  .navigation.pagination a,
  .navigation.pagination span[aria-current=page],
  .navigation.pagination span[class*=dots] {
    width: 46px;
    height: 46px;
  }
}
.navigation.pagination a[class=page-numbers],
.navigation.pagination span[aria-current=page][class=page-numbers],
.navigation.pagination span[class*=dots][class=page-numbers] {
  position: relative;
}
.navigation.pagination a[class=page-numbers]::before, .navigation.pagination a[class=page-numbers]::after,
.navigation.pagination span[aria-current=page][class=page-numbers]::before,
.navigation.pagination span[aria-current=page][class=page-numbers]::after,
.navigation.pagination span[class*=dots][class=page-numbers]::before,
.navigation.pagination span[class*=dots][class=page-numbers]::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 1px;
  background-color: #F8791F;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.navigation.pagination a[class=page-numbers]::before,
.navigation.pagination span[aria-current=page][class=page-numbers]::before,
.navigation.pagination span[class*=dots][class=page-numbers]::before {
  top: 0;
}
.navigation.pagination a[class=page-numbers]::after,
.navigation.pagination span[aria-current=page][class=page-numbers]::after,
.navigation.pagination span[class*=dots][class=page-numbers]::after {
  bottom: 0;
}
@media (any-hover: hover) {
  .navigation.pagination a[class=page-numbers]:hover,
  .navigation.pagination span[aria-current=page][class=page-numbers]:hover,
  .navigation.pagination span[class*=dots][class=page-numbers]:hover {
    color: #F8791F;
    transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .navigation.pagination a[class=page-numbers]:hover::before, .navigation.pagination a[class=page-numbers]:hover::after,
  .navigation.pagination span[aria-current=page][class=page-numbers]:hover::before,
  .navigation.pagination span[aria-current=page][class=page-numbers]:hover::after,
  .navigation.pagination span[class*=dots][class=page-numbers]:hover::before,
  .navigation.pagination span[class*=dots][class=page-numbers]:hover::after {
    opacity: 1;
  }
}
.navigation.pagination span[aria-current=page] {
  position: relative;
  color: #111;
  font-size: 1.5rem;
  font-family: "Lato", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
}
.navigation.pagination span[aria-current=page]::before, .navigation.pagination span[aria-current=page]::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 1px;
  background-color: currentColor;
}
.navigation.pagination span[aria-current=page]::before {
  top: 0;
}
.navigation.pagination span[aria-current=page]::after {
  bottom: 0;
}

.c-select {
  position: relative;
  display: inline-block;
  width: fit-content;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .c-select:hover::after {
    border-color: var(--color-primary);
  }
}
.c-select::before {
  position: absolute;
  top: calc(50% - 10px);
  right: 11px;
  z-index: 2;
  width: 14px;
  height: 20px;
  pointer-events: none;
  cursor: pointer;
  content: "";
  background: url("../img/icon_select_arrow.svg") no-repeat 0 0;
}
.c-select select {
  display: block;
  width: 100%;
  height: 50px;
  padding: 10px 60px 10px 24px;
  appearance: none;
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
}
@media (min-width: 1024px) {
  .c-select select {
    width: 19vw;
  }
}
.c-select select[disabled] {
  /* stylelint-disable-next-line */
  cursor: not-allowed;
}
.c-select select:focus {
  border-color: var(--color-primary);
  border-width: 1px;
}
.c-select select:invalid {
  color: #ccc;
}
.c-select select option {
  color: var(--color-text);
}
.c-select select::-ms-expand {
  display: none;
}

.c-table > table {
  margin-top: 35px;
  margin-bottom: 35px;
  background: #fff;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
@media (min-width: 1024px) {
  .c-table > table {
    width: 100%;
    margin-top: 46px;
    margin-bottom: 56px;
  }
}
.c-table > table + table {
  margin-top: 35px;
}
@media (min-width: 1024px) {
  .c-table > table + table {
    margin-top: 46px;
  }
}
.c-table th,
.c-table td {
  padding: 15px 14px;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
@media (min-width: 1024px) {
  .c-table th,
  .c-table td {
    padding: 25px 30px;
  }
}
.c-table th {
  text-align: left;
  letter-spacing: 0.01em;
  vertical-align: top;
  background: #e8f8ff;
  line-height: 1.4285714286;
}
@media (min-width: 1024px) {
  .c-table th {
    letter-spacing: 0.02em;
    line-height: 1.75;
  }
}
.c-table td > p {
  line-height: 1.4285714286;
}
@media (min-width: 1024px) {
  .c-table td > p {
    line-height: 1.75;
  }
}
.c-table._line table {
  border-right: none;
}
.c-table._line th,
.c-table._line td {
  border-left: none;
}
.c-table._line th {
  background: none;
}

@media (any-hover: hover) {
  .wrapper .l-container {
    transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), filter 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
}
@media (any-hover: hover) {
  .wrapper:hover:has(.c-navSub:hover) .l-container {
    filter: blur(15px);
    opacity: 0.6;
    transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), filter 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

.l-contents {
  width: 100%;
}
@media (min-width: 1024px) {
  :not(.p-top, .l-main__inner) > .l-contents {
    max-width: 1440px;
    padding-inline: 100px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  :not(.p-top, .l-main__inner) > .l-contents._narrow {
    max-width: 1700px;
    padding-inline: 230px;
    margin: 0 auto;
  }
}
@media not all and (min-width: 1024px) {
  :not(.p-top) > .l-contents {
    padding-inline: 5.4726368159vw;
  }
}
@media (min-width: 1024px) {
  .l-main__inner .l-contents {
    order: 2;
  }
}

.l-footer {
  position: relative;
  background: linear-gradient(to bottom, #ffe2c2, #ffbe7b);
  height: 84.328358209vw;
}
@media (min-width: 1024px) {
  .l-footer {
    height: 25.6vw;
  }
}
.l-footer .l-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30.0995024876vw;
}
@media (min-width: 1024px) {
  .l-footer .l-footer__inner {
    padding-top: 6.2vw;
  }
}
.l-footer .l-footer__logo a {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  color: #111;
  font-size: 10.1990049751vw;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .l-footer .l-footer__logo a {
    font-size: 2.7333333333vw;
  }
}
@media (any-hover: hover) {
  .l-footer .l-footer__logo a {
    transition: color 0.3s;
  }
  .l-footer .l-footer__logo a:hover {
    color: #F8791F;
  }
}
.l-footer .l-footer__globalNav {
  margin-top: 0.3333333333vw;
}
@media not all and (min-width: 1024px) {
  .l-footer .l-footer__globalNav {
    display: none;
  }
}
.l-footer .l-footer__globalNav .l-globalNavigation__list {
  display: flex;
  gap: 0.4666666667vw;
}
.l-footer .l-footer__globalNav .l-globalNavigation__itemLink {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  color: #111;
  font-size: 1.3333333333vw;
  text-decoration: none;
}
.l-footer .l-footer__copy {
  position: absolute;
  bottom: 28.1094527363vw;
  left: 0;
  width: 100%;
  font-family: "Lato", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  color: #111;
  font-size: 12px;
  letter-spacing: 0.07em;
  text-align: center;
}
@media (min-width: 1024px) {
  .l-footer .l-footer__copy {
    bottom: 2.4666666667vw;
  }
}

@media not all and (min-width: 1024px) {
  .l-globalNavigation {
    width: 100%;
    height: 100%;
    padding: 142px 25px 20px;
    overflow-y: auto;
    background-color: #ffe0bf;
  }
}
@media (min-width: 1024px) {
  .l-globalNavigation .l-globalNavigation__list {
    display: flex;
  }
}
.l-globalNavigation .l-globalNavigation__item {
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}
@media not all and (min-width: 1024px) {
  .l-globalNavigation .l-globalNavigation__item {
    color: #111;
  }
}
@media (min-width: 1024px) {
  .l-globalNavigation .l-globalNavigation__item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 95px;
    letter-spacing: 0.1em;
  }
}
@media (min-width: 1024px) {
  .l-globalNavigation .l-globalNavigation__item._home {
    display: none;
  }
}
.l-globalNavigation .l-globalNavigation__item .l-globalNavigation__itemWrap {
  position: relative;
}
@media not all and (min-width: 1024px) {
  .l-globalNavigation .l-globalNavigation__item .l-globalNavigation__itemWrap .l-globalNavigation__btn {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    display: flex;
    width: 100%;
    height: 100%;
    padding-right: 3px;
  }
  .l-globalNavigation .l-globalNavigation__item .l-globalNavigation__itemWrap .l-globalNavigation__btn::before {
    display: block;
    align-self: center;
    width: 25px;
    height: 25px;
    margin-left: auto;
    content: "";
    background: url("../img/common/icon_arrow_white.png") no-repeat 50% 50%;
    background-size: auto 12px;
    transition: transform 0.3s;
    transform-origin: center;
  }
  .l-globalNavigation .l-globalNavigation__item .l-globalNavigation__itemWrap .l-globalNavigation__btn span {
    position: absolute;
    display: block;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .l-footer .l-footerNav__item._open .l-footerNav__btn::before {
    transform: rotate(90deg);
  }
}
@media not all and (min-width: 1024px) {
  .l-globalNavigation .l-globalNavigation__item {
    border-bottom: 1px solid #111;
  }
}
.l-globalNavigation .l-globalNavigation__item .l-globalNavigation__itemLink {
  line-height: 160%;
  color: var(--color-text);
  text-align: center;
  text-decoration: none;
}
@media not all and (min-width: 1024px) {
  .l-globalNavigation .l-globalNavigation__item .l-globalNavigation__itemLink {
    display: block;
    padding-block: 15px;
    text-align: left;
    line-height: normal;
    font-size: 1.75rem;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
  }
}
@media (min-width: 1024px) {
  .l-globalNavigation .l-globalNavigation__item .l-globalNavigation__itemLink {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: 10px;
    word-break: keep-all;
    transition: color 0.3s;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1100px) {
  .l-globalNavigation .l-globalNavigation__item .l-globalNavigation__itemLink {
    padding-inline: 10px;
  }
}
@media (any-hover: hover) {
  .l-globalNavigation .l-globalNavigation__item .l-globalNavigation__itemLink:hover {
    color: var(--color-primary);
    transition: color 0.3s;
  }
}

.l-header {
  position: fixed;
  display: flex;
  align-items: center;
  width: 100%;
  height: var(--headerHeightSp);
}
@media not all and (min-width: 1024px) {
  .l-header._fixed {
    background: #fff;
  }
}
@media (min-width: 1024px) {
  .l-header {
    height: var(--headerHeight);
    transition: height 0.5s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .l-header._fixed {
    height: 79px;
    transition: height 0.5s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .l-header._fixed .l-header__inner {
    height: 79px;
  }
  .l-header._fixed .l-header__logoWrap {
    position: relative;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .l-header._fixed .l-header__logoWrap {
    align-self: center;
  }
}
.l-header .l-header__inner {
  display: flex;
  align-items: flex-end;
  width: 100%;
}
@media not all and (min-width: 1024px) {
  .l-header .l-header__inner {
    justify-content: space-between;
    height: var(--headerHeightSp);
    padding: 26px 24px 15px;
  }
}
@media (min-width: 1024px) {
  .l-header .l-header__inner {
    height: var(--headerHeight);
    padding-inline: 45px 55px;
  }
}
@media not all and (min-width: 1024px) {
  .l-header .l-header__logoWrap {
    align-self: center;
  }
}
.l-header .l-header__logo {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  font-size: 40px;
  color: #111;
  line-height: 1;
  white-space: nowrap;
}
@media (any-hover: hover) {
  .l-header .l-header__logo a {
    transition: color 0.3s;
  }
  .l-header .l-header__logo a:hover {
    color: #F8791F;
  }
}
.l-header .l-header__logo a {
  color: inherit;
  text-decoration: none;
}
@media not all and (min-width: 1024px) {
  .l-header .l-header__navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s linear, visibility 0.3s linear;
  }
}
@media (min-width: 1024px) {
  .l-header .l-header__navigation:not(._open) {
    margin-left: auto;
  }
}
@media not all and (min-width: 1024px) {
  .l-header .l-header__navigation._open {
    background: #ffe0bf;
    visibility: visible;
    opacity: 1;
  }
}
@media (min-width: 1024px) {
  .l-header .l-header__navigation._open {
    background: var(--color-primary) url("../img/menu_img_logo.svg") no-repeat 100% 0;
    background-size: 410px auto;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: navhide 0.3s ease-in-out, navshow 0.3s ease-out;
  }
}
@keyframes navhide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes navshow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (min-width: 1024px) {
  .l-header .l-globalNavigation__list {
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .l-header .l-globalNavigation__item {
    align-items: flex-end;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    font-size: 1.25rem;
    color: #111;
    letter-spacing: normal;
  }
}
.l-header .l-globalNavigation__itemLink {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  color: #111;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .l-header .l-globalNavigation__itemLink {
    font-size: 1.25rem;
  }
}

.l-main {
  width: 100%;
}
@media not all and (min-width: 1024px) {
  .l-main:not(.p-top) {
    padding-bottom: 83px;
  }
}
@media (min-width: 1024px) {
  .l-main:not(.p-top) {
    padding-bottom: 110px;
  }
}
.l-main .l-main__inner {
  padding-block-start: 22.3880597015vw;
}
@media (min-width: 1024px) {
  .l-main .l-main__inner {
    padding-block-start: 120px;
    margin-inline: auto;
    max-width: 1040px;
  }
}

.p-archiveCategory {
  border-top: 1px solid #111;
}
@media not all and (min-width: 1024px) {
  .p-archiveCategory {
    padding-top: 6.4676616915vw;
    padding-bottom: 6.7164179104vw;
  }
}
@media (min-width: 1024px) {
  .p-archiveCategory {
    display: flex;
    align-items: center;
    min-height: 90px;
    margin-block-end: 69px;
    border-bottom: 1px solid #111;
  }
}
.p-archiveCategory .p-archiveCategory__title {
  font-weight: 500;
  font-size: 1rem;
  color: #111;
  white-space: nowrap;
}
@media not all and (min-width: 1024px) {
  .p-archiveCategory .p-archiveCategory__title {
    text-align: center;
  }
  .p-archiveCategory .p-archiveCategory__title::after {
    content: "";
    display: block;
    width: 25.1243781095vw;
    height: 1px;
    margin: 5.7213930348vw auto 0;
    background: #111;
  }
}
@media (min-width: 1024px) {
  .p-archiveCategory .p-archiveCategory__title {
    position: relative;
    padding: 0 28px 0 27px;
  }
  .p-archiveCategory .p-archiveCategory__title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 33px;
    transform: translateY(-50%);
    background: #111;
  }
}
.p-archiveCategory .p-archiveCategory__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media not all and (min-width: 1024px) {
  .p-archiveCategory .p-archiveCategory__list {
    justify-content: center;
    gap: 3.4825870647vw 10.9452736318vw;
    margin-block: 6.2189054726vw;
  }
}
@media (min-width: 1024px) {
  .p-archiveCategory .p-archiveCategory__list {
    flex-wrap: nowrap;
    gap: 50px;
    padding-left: 30px;
  }
}
.p-archiveCategory .p-archiveCategory__link {
  font-weight: 500;
  font-size: 0.9375rem;
  color: #111;
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-decoration: none;
}
.p-archiveCategory .p-archiveCategory__link._current {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-primary);
  letter-spacing: 0.1em;
}

.p-entry .p-entry__mv {
  margin-bottom: 60px;
}
.p-entry .p-entry__mv img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.p-entry .p-entryHeading {
  display: grid;
  padding-bottom: 24px;
  margin-bottom: 37px;
  border-bottom: 1px solid var(--color-line);
}
@media (min-width: 1024px) {
  .p-entry .p-entryHeading {
    padding-bottom: 20px;
    margin-bottom: 39px;
  }
}
.p-entry .p-entryHeading .p-entryHeading__title {
  order: 2;
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-weight: 700;
  font-size: 1.25rem;
}
@media (min-width: 1024px) {
  .p-entry .p-entryHeading .p-entryHeading__title {
    font-size: 1.75rem;
  }
}
.p-entry .p-entryHeading .p-entryHeading__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  order: 1;
  margin-bottom: 13px;
}
@media (min-width: 1024px) {
  .p-entry .p-entryHeading .p-entryHeading__meta {
    margin-bottom: 13px;
  }
}
.p-entry .p-entryHeading .p-entryHeading__meta .p-entryHeading__category {
  letter-spacing: 0.1em;
  font-family: "Lato", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
}
.p-entry .p-entryHeading .p-entryHeading__meta .p-entryHeading__category::before {
  content: "[ ";
}
.p-entry .p-entryHeading .p-entryHeading__meta .p-entryHeading__category::after {
  content: " ]";
}
.p-entry .p-entryHeading .p-entryHeading__meta .p-entryHeading__time {
  flex-shrink: 0;
  align-items: center;
  letter-spacing: 0.1em;
  white-space: nowrap;
  font-family: "Lato", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
}
.p-entry .p-entryHeading .p-entryHeading__client {
  order: 3;
  margin-top: 20px;
  line-height: 200%;
  letter-spacing: 0.03em;
  font-size: 1.125rem;
}
@media (min-width: 1024px) {
  .p-entry .p-entryHeading .p-entryHeading__client {
    margin-top: 24px;
  }
}
@media (min-width: 1024px) {
  .p-entry .p-entry__inner._narrow {
    max-width: 1017px;
    margin: 0 auto;
  }
}
.p-entry .p-entry__inner,
.p-entry .p-entry__body {
  padding-bottom: 100px;
  border-bottom: 1px solid var(--color-line);
}
@media (min-width: 1024px) {
  .p-entry .p-entry__inner,
  .p-entry .p-entry__body {
    padding-bottom: 120px;
  }
}
.p-entry .p-entry__inner > :first-child,
.p-entry .p-entry__body > :first-child {
  margin-top: 0 !important;
}
.p-entry .p-entry__inner > :last-child,
.p-entry .p-entry__body > :last-child {
  margin-bottom: 0 !important;
}
.p-entry .p-entry__inner > h1,
.p-entry .p-entry__body > h1 {
  margin-bottom: 30px;
  line-height: 2;
  letter-spacing: 0.03em;
  font-size: 1.75rem;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .p-entry .p-entry__inner > h1,
  .p-entry .p-entry__body > h1 {
    margin-bottom: 71px;
  }
}
.p-entry .p-entry__inner > h2,
.p-entry .p-entry__body > h2 {
  padding-bottom: 10px;
  margin-top: 75px;
  margin-bottom: 34px;
  letter-spacing: 0.1em;
  line-height: 180%;
  border-bottom: 2px solid var(--color-primary);
  font-size: 1.125rem;
}
.p-entry .p-entry__inner > h3,
.p-entry .p-entry__body > h3 {
  position: relative;
  margin-top: 75px;
  margin-bottom: 25px;
  letter-spacing: 0.1em;
  line-height: 180%;
  font-weight: 700;
}
.p-entry .p-entry__inner > h4,
.p-entry .p-entry__body > h4 {
  display: flex;
  margin-top: 25px;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
  line-height: 180%;
  font-weight: 700;
}
.p-entry .p-entry__inner > h4::before,
.p-entry .p-entry__body > h4::before {
  flex-shrink: 0;
  width: 12px;
  height: 2px;
  margin-top: 0.7em;
  margin-right: 10px;
  content: "";
  background-color: #F8791F;
}
.p-entry .p-entry__inner > h5,
.p-entry .p-entry__body > h5 {
  margin-top: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
  line-height: 180%;
  font-weight: 700;
}
.p-entry .p-entry__inner > h6,
.p-entry .p-entry__body > h6 {
  margin-top: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.025em;
}
.p-entry .p-entry__inner h2 + ul:not([class]), .p-entry .p-entry__inner h2 + ol:not([class]),
.p-entry .p-entry__inner h3 + ul:not([class]),
.p-entry .p-entry__inner h3 + ol:not([class]),
.p-entry .p-entry__inner h4 + ul:not([class]),
.p-entry .p-entry__inner h4 + ol:not([class]),
.p-entry .p-entry__inner h5 + ul:not([class]),
.p-entry .p-entry__inner h5 + ol:not([class]),
.p-entry .p-entry__inner h6 + ul:not([class]),
.p-entry .p-entry__inner h6 + ol:not([class]),
.p-entry .p-entry__body h2 + ul:not([class]),
.p-entry .p-entry__body h2 + ol:not([class]),
.p-entry .p-entry__body h3 + ul:not([class]),
.p-entry .p-entry__body h3 + ol:not([class]),
.p-entry .p-entry__body h4 + ul:not([class]),
.p-entry .p-entry__body h4 + ol:not([class]),
.p-entry .p-entry__body h5 + ul:not([class]),
.p-entry .p-entry__body h5 + ol:not([class]),
.p-entry .p-entry__body h6 + ul:not([class]),
.p-entry .p-entry__body h6 + ol:not([class]) {
  margin-top: 0;
}
.p-entry .p-entry__inner > p,
.p-entry .p-entry__body > p {
  margin: 40px 0;
  line-height: 1.8;
  letter-spacing: 0.1em;
  word-wrap: break-word;
  font-size: 0.9375rem;
}
@media (min-width: 1024px) {
  .p-entry .p-entry__inner > p,
  .p-entry .p-entry__body > p {
    margin: 14px 0;
  }
}
.p-entry .p-entry__inner > p + p,
.p-entry .p-entry__body > p + p {
  margin-top: 1em;
}
.p-entry .p-entry__inner a,
.p-entry .p-entry__body a {
  color: var(--color-primary);
}
.p-entry .p-entry__inner a[target=_blank],
.p-entry .p-entry__body a[target=_blank] {
  display: inline-flex;
  align-items: center;
}
.p-entry .p-entry__inner a[target=_blank]::after,
.p-entry .p-entry__body a[target=_blank]::after {
  display: block;
  width: 17px;
  height: 17px;
  margin-inline: 1px 0.4rem;
  content: "";
  background: url("../img/icon_blank.svg") no-repeat 0 0;
  background-size: 17px auto;
}
.p-entry .p-entry__inner ul:not([class]),
.p-entry .p-entry__inner .wp-block-list,
.p-entry .p-entry__body ul:not([class]),
.p-entry .p-entry__body .wp-block-list {
  margin-top: 2.7em;
  margin-bottom: 2.7em;
  margin-left: 0.3em;
}
.p-entry .p-entry__inner ul:not([class]) > li,
.p-entry .p-entry__inner .wp-block-list > li,
.p-entry .p-entry__body ul:not([class]) > li,
.p-entry .p-entry__body .wp-block-list > li {
  display: flex;
  line-height: 1.4;
  word-break: break-all;
  font-size: 1rem;
}
.p-entry .p-entry__inner ul:not([class]) > li + li,
.p-entry .p-entry__inner .wp-block-list > li + li,
.p-entry .p-entry__body ul:not([class]) > li + li,
.p-entry .p-entry__body .wp-block-list > li + li {
  margin-top: 6px;
}
.p-entry .p-entry__inner ul:not([class]) > li::before,
.p-entry .p-entry__inner .wp-block-list > li::before,
.p-entry .p-entry__body ul:not([class]) > li::before,
.p-entry .p-entry__body .wp-block-list > li::before {
  display: block;
  flex-shrink: 0;
  width: 7px;
  margin-right: 8px;
  content: "・";
  border-radius: 4px;
}
.p-entry .p-entry__inner ul:not([class]) > li > ul,
.p-entry .p-entry__inner .wp-block-list > li > ul,
.p-entry .p-entry__body ul:not([class]) > li > ul,
.p-entry .p-entry__body .wp-block-list > li > ul {
  margin-left: 0.5em;
}
.p-entry .p-entry__inner ul:not([class]) > li > ol,
.p-entry .p-entry__inner .wp-block-list > li > ol,
.p-entry .p-entry__body ul:not([class]) > li > ol,
.p-entry .p-entry__body .wp-block-list > li > ol {
  margin-left: 1.5em;
}
.p-entry .p-entry__inner ol:not([class]),
.p-entry .p-entry__body ol:not([class]) {
  margin-top: 2.7em;
  margin-bottom: 2.7em;
  counter-reset: ol-list;
}
.p-entry .p-entry__inner > h4 + ol:not([class]) {
  margin-top: 0;
}

.p-entry .p-entry__body > h4 + ol:not([class]) {
  margin-top: 0;
}

.p-entry .p-entry__inner ol:not([class]) ::marker,
.p-entry .p-entry__body ol:not([class]) ::marker {
  font-size: 0.875rem;
}
.p-entry .p-entry__inner ol:not([class]) > li,
.p-entry .p-entry__body ol:not([class]) > li {
  position: relative;
  padding-left: 20px;
  line-height: 1.4;
  text-indent: 0;
  letter-spacing: 0.025em;
  font-size: 1rem;
}
.p-entry .p-entry__inner ol:not([class]) > li + li,
.p-entry .p-entry__body ol:not([class]) > li + li {
  margin-top: 6px;
}
.p-entry .p-entry__inner ol:not([class]) > li::before,
.p-entry .p-entry__body ol:not([class]) > li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  line-height: 1;
  content: counter(ol-list);
  counter-increment: ol-list;
  background-color: #aedbef;
  border-radius: 50%;
  font-size: 0.875rem;
}
.p-entry .p-entry__inner > .c-list,
.p-entry .p-entry__body > .c-list {
  margin-left: 1em;
  list-style-type: decimal;
}
.p-entry .p-entry__inner > .c-list > li,
.p-entry .p-entry__body > .c-list > li {
  position: relative;
  letter-spacing: 0.025em;
  line-height: 1.3333333333;
  font-size: 0.9375rem;
}
.p-entry .p-entry__inner > .c-list > li + li,
.p-entry .p-entry__body > .c-list > li + li {
  margin-top: 13px;
}
@media not all and (min-width: 1024px) {
  .p-entry .p-entry__inner > p > img,
  .p-entry .p-entry__body > p > img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
  }
}
@media (min-width: 1024px) {
  .p-entry .p-entry__inner > p > img,
  .p-entry .p-entry__body > p > img {
    width: auto;
  }
}
.p-entry .p-entry__inner > .wp-block-image,
.p-entry .p-entry__body > .wp-block-image {
  margin-top: 30px;
  margin-bottom: 30px;
}
.p-entry .p-entry__inner > .wp-block-image figcaption,
.p-entry .p-entry__body > .wp-block-image figcaption {
  margin-top: 18px;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 180%;
  font-size: 0.875rem;
}
.p-entry .p-entry__inner > .wp-block-image .alignleft,
.p-entry .p-entry__body > .wp-block-image .alignleft {
  margin-right: 38px;
}
.p-entry .p-entry__inner > .wp-block-image .alignright,
.p-entry .p-entry__body > .wp-block-image .alignright {
  margin-right: 38px;
}
.p-entry .p-entry__inner > .wp-block-image img,
.p-entry .p-entry__body > .wp-block-image img {
  border-radius: 11px;
}
.p-entry .p-entry__inner > .wp-block-table,
.p-entry .p-entry__body > .wp-block-table {
  margin-top: 40px;
  margin-bottom: 30px;
  border-color: #FF8F15 !important;
  background-color: #FFEDD9 !important;
}
@media (min-width: 1024px) {
  .p-entry .p-entry__inner > .wp-block-table,
  .p-entry .p-entry__body > .wp-block-table {
    margin-top: 40px;
  }
}
.p-entry .p-entry__inner > .wp-block-table thead,
.p-entry .p-entry__body > .wp-block-table thead {
  border: none;
}
.p-entry .p-entry__inner > .wp-block-table th,
.p-entry .p-entry__body > .wp-block-table th {
  padding: 15px 20px;
  color: #111;
  text-align: left;
  letter-spacing: 0.1em;
  line-height: 180%;
  background-color: #FFB668;
  border-color: #FF8F15 !important;
  font-weight: 700;
  font-size: 0.9375rem;
}
.p-entry .p-entry__inner > .wp-block-table td,
.p-entry .p-entry__body > .wp-block-table td {
  padding: 15px 20px;
  letter-spacing: 0.1em;
  line-height: 180%;
  border-color: #FF8F15 !important;
  font-size: 0.9375rem;
}
@media not all and (min-width: 1024px) {
  .p-entry .p-entry__inner > .wp-block-table th,
  .p-entry .p-entry__inner > .wp-block-table td,
  .p-entry .p-entry__body > .wp-block-table th,
  .p-entry .p-entry__body > .wp-block-table td {
    padding: 15px;
  }
}
.p-entry .p-entry__inner > .wp-block-buttons,
.p-entry .p-entry__body > .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media not all and (min-width: 1024px) {
  .p-entry .p-entry__inner > .wp-block-buttons,
  .p-entry .p-entry__body > .wp-block-buttons {
    justify-content: center;
  }
}
.p-entry .p-entry__inner > .wp-block-buttons .wp-block-button,
.p-entry .p-entry__body > .wp-block-buttons .wp-block-button {
  display: inline-flex;
}
.p-entry .p-entry__inner > .wp-block-buttons .wp-block-button .wp-block-button__link,
.p-entry .p-entry__body > .wp-block-buttons .wp-block-button .wp-block-button__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  background-color: #111;
  transition: background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
}
@media not all and (min-width: 1024px) {
  .p-entry .p-entry__inner > .wp-block-buttons .wp-block-button .wp-block-button__link,
  .p-entry .p-entry__body > .wp-block-buttons .wp-block-button .wp-block-button__link {
    border-radius: 18.9054726368vw;
    height: 12.1890547264vw;
    padding: 0 13.4328358209vw 0 10.447761194vw;
  }
}
@media (min-width: 1024px) {
  .p-entry .p-entry__inner > .wp-block-buttons .wp-block-button .wp-block-button__link,
  .p-entry .p-entry__body > .wp-block-buttons .wp-block-button .wp-block-button__link {
    border-radius: 5.0666666667vw;
    height: 3.2666666667vw;
    padding: 0 3.6vw 0 2.8vw;
  }
}
.p-entry .p-entry__inner > .wp-block-buttons .wp-block-button .wp-block-button__link::after,
.p-entry .p-entry__body > .wp-block-buttons .wp-block-button .wp-block-button__link::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 9px;
  background-color: #fff;
  mask-image: url("../img/arrow.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url("../img/arrow.svg");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}
@media not all and (min-width: 1024px) {
  .p-entry .p-entry__inner > .wp-block-buttons .wp-block-button .wp-block-button__link::after,
  .p-entry .p-entry__body > .wp-block-buttons .wp-block-button .wp-block-button__link::after {
    right: 3.7313432836vw;
  }
}
@media (min-width: 1024px) {
  .p-entry .p-entry__inner > .wp-block-buttons .wp-block-button .wp-block-button__link::after,
  .p-entry .p-entry__body > .wp-block-buttons .wp-block-button .wp-block-button__link::after {
    right: 1vw;
  }
}
@media (any-hover: hover) {
  .p-entry .p-entry__inner > .wp-block-buttons .wp-block-button .wp-block-button__link:hover,
  .p-entry .p-entry__body > .wp-block-buttons .wp-block-button .wp-block-button__link:hover {
    background-color: var(--color-primary);
  }
}
.p-entry .p-entry__inner > .wp-block-buttons .wp-block-button.is-style-outline.is-style-outline--2 .wp-block-button__link,
.p-entry .p-entry__body > .wp-block-buttons .wp-block-button.is-style-outline.is-style-outline--2 .wp-block-button__link {
  color: #111;
  background-color: transparent;
  border: 1px solid #111;
  transition: border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-entry .p-entry__inner > .wp-block-buttons .wp-block-button.is-style-outline.is-style-outline--2 .wp-block-button__link::after,
.p-entry .p-entry__body > .wp-block-buttons .wp-block-button.is-style-outline.is-style-outline--2 .wp-block-button__link::after {
  background-color: #111;
  transition: background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (any-hover: hover) {
  .p-entry .p-entry__inner > .wp-block-buttons .wp-block-button.is-style-outline.is-style-outline--2 .wp-block-button__link:hover,
  .p-entry .p-entry__body > .wp-block-buttons .wp-block-button.is-style-outline.is-style-outline--2 .wp-block-button__link:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
  }
  .p-entry .p-entry__inner > .wp-block-buttons .wp-block-button.is-style-outline.is-style-outline--2 .wp-block-button__link:hover::after,
  .p-entry .p-entry__body > .wp-block-buttons .wp-block-button.is-style-outline.is-style-outline--2 .wp-block-button__link:hover::after {
    background-color: var(--color-primary);
  }
}
.p-entry .p-entry__inner > .wp-block-file,
.p-entry .p-entry__body > .wp-block-file {
  display: flex;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.p-entry .p-entry__inner > .wp-block-file a:first-of-type,
.p-entry .p-entry__body > .wp-block-file a:first-of-type {
  font-size: 1rem;
}
.p-entry .p-entry__inner > .wp-block-file .wp-block-file__button,
.p-entry .p-entry__body > .wp-block-file .wp-block-file__button {
  margin-left: 10px;
  color: #fff;
  background-color: #111;
  transition: background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (any-hover: hover) {
  .p-entry .p-entry__inner > .wp-block-file .wp-block-file__button:hover,
  .p-entry .p-entry__body > .wp-block-file .wp-block-file__button:hover {
    transition: background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    background-color: var(--color-primary);
  }
}
.p-entry .p-entry__inner > .wp-block-video,
.p-entry .p-entry__body > .wp-block-video {
  margin-top: 30px;
  margin-bottom: 30px;
}
.p-entry .p-entry__inner > .wp-block-video video,
.p-entry .p-entry__body > .wp-block-video video {
  width: 100%;
}
.p-entry .p-entry__inner > .wp-block-embed,
.p-entry .p-entry__body > .wp-block-embed {
  margin-top: 30px;
  margin-bottom: 30px;
}
.p-entry .p-entry__inner > .wp-block-embed .wp-block-embed__wrapper,
.p-entry .p-entry__body > .wp-block-embed .wp-block-embed__wrapper {
  text-align: center;
}
.p-entry .p-entry__inner > .wp-block-embed .wp-block-embed__wrapper .twitter-tweet,
.p-entry .p-entry__body > .wp-block-embed .wp-block-embed__wrapper .twitter-tweet {
  margin: 0 auto;
}
.p-entry .p-entry__inner > .wp-block-embed .wp-block-embed__wrapper iframe,
.p-entry .p-entry__body > .wp-block-embed .wp-block-embed__wrapper iframe {
  vertical-align: top;
}
.p-entry .p-entry__inner > .wp-block-quote,
.p-entry .p-entry__inner > .wp-block-pullquote,
.p-entry .p-entry__body > .wp-block-quote,
.p-entry .p-entry__body > .wp-block-pullquote {
  padding: 34px 25px;
  margin-block: 28px;
  text-align: left;
  background: #FFEDD9 !important;
}
.p-entry .p-entry__inner > .wp-block-quote p,
.p-entry .p-entry__inner > .wp-block-pullquote p,
.p-entry .p-entry__body > .wp-block-quote p,
.p-entry .p-entry__body > .wp-block-pullquote p {
  line-height: 180%;
  font-size: 0.9375rem;
  font-weight: 500;
}
.p-entry .p-entry__inner > .wp-block-quote cite,
.p-entry .p-entry__inner > .wp-block-pullquote cite,
.p-entry .p-entry__body > .wp-block-quote cite,
.p-entry .p-entry__body > .wp-block-pullquote cite {
  margin-block-start: 15px;
  color: #727272;
  line-height: 180%;
  letter-spacing: 0.1em;
  font-size: 0.8125rem;
  font-weight: 500;
}
.p-entry .p-entry__inner > .wp-block-pullquote,
.p-entry .p-entry__body > .wp-block-pullquote {
  border: 3px solid #FF6600 !important;
}
.p-entry .p-entry__inner > .wp-block-separator,
.p-entry .p-entry__body > .wp-block-separator {
  margin-top: 40px;
  margin-bottom: 40px;
  border-top: 1px solid #FFB668;
}
.p-entry .p-entry__inner .wp-block-code,
.p-entry .p-entry__body .wp-block-code {
  padding: 34px 25px;
  color: #fff;
  line-height: 180%;
  letter-spacing: 0.1em;
  background-color: #B59573;
  font-size: 0.9375rem;
}
.p-entry .p-entry__inner .wp-block-preformatted,
.p-entry .p-entry__body .wp-block-preformatted {
  padding: 34px 25px;
  margin-block: 28px;
  text-align: left;
  line-height: 180%;
  background-color: #FFEDD9;
  font-size: 0.9375rem;
}
.p-entry .navigation.post-navigation {
  padding-top: 56px;
}
@media (min-width: 1024px) {
  .p-entry .navigation.post-navigation {
    padding-top: 71px;
  }
}
.p-entry .navigation.post-navigation .nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 60.447761194vw;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .p-entry .navigation.post-navigation .nav-links {
    width: 320px;
  }
}
.p-entry .navigation.post-navigation .nav-previous a,
.p-entry .navigation.post-navigation .nav-next a {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  font-size: 0;
  text-decoration: none;
}
.p-entry .navigation.post-navigation .nav-previous a::before,
.p-entry .navigation.post-navigation .nav-next a::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 14px;
  height: 24px;
  background-color: #111;
  mask-image: url("../img/arrow_nav.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url("../img/arrow_nav.svg");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  transition: background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (any-hover: hover) {
  .p-entry .navigation.post-navigation .nav-previous a:hover::before,
  .p-entry .navigation.post-navigation .nav-next a:hover::before {
    background-color: var(--color-primary);
  }
}
.p-entry .navigation.post-navigation .nav-previous a::before {
  transform: scaleX(-1);
}
.p-entry .navigation.post-navigation .nav-list a {
  color: #111;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  font-family: "Lato", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
}
@media (any-hover: hover) {
  .p-entry .navigation.post-navigation .nav-list a:hover {
    color: var(--color-primary);
  }
}

.p-collaborations {
  padding-top: 22.3880597015vw;
}
@media (min-width: 1024px) {
  .p-collaborations {
    padding-top: 120px;
  }
}
.p-collaborations .p-collaborations__lead {
  margin-bottom: 7.4626865672vw;
  line-height: 1.8;
  color: #111;
  letter-spacing: 0;
  font-family: "Noto Sans JP", system-ui;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 0.9375rem;
}
@media (min-width: 1024px) {
  .p-collaborations .p-collaborations__lead {
    margin-bottom: 3.4666666667vw;
    text-align: center;
    font-size: 1rem;
  }
}
.p-collaborations .p-collaborations__list {
  display: flex;
  flex-direction: column;
  gap: 9.9502487562vw;
}
@media (min-width: 1024px) {
  .p-collaborations .p-collaborations__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.3333333333vw;
  }
}
.p-collaborations .p-collaborations__item {
  display: flex;
  flex-direction: column;
  gap: 4.4776119403vw;
}
@media (min-width: 1024px) {
  .p-collaborations .p-collaborations__item {
    gap: 18px;
  }
}
@media (min-width: 1024px) and (any-hover: hover) {
  .p-collaborations .p-collaborations__item .p-collaborations__thumb img {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .p-collaborations .p-collaborations__item .p-collaborations__name {
    transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
}
@media (min-width: 1024px) and (any-hover: hover) {
  .p-collaborations .p-collaborations__item:hover .p-collaborations__thumb img {
    transform: scale(1.05);
  }
  .p-collaborations .p-collaborations__item:hover .p-collaborations__name {
    color: #F8791F;
  }
}
.p-collaborations .p-collaborations__item a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.p-collaborations .p-collaborations__thumb {
  overflow: hidden;
  aspect-ratio: 16/9;
  border-radius: 12px;
  margin-block-end: 2.9850746269vw;
}
@media (min-width: 1024px) {
  .p-collaborations .p-collaborations__thumb {
    margin-block-end: 12px;
  }
}
.p-collaborations .p-collaborations__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-collaborations .p-collaborations__name {
  line-height: 1.6;
  color: #111;
  font-weight: 700;
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.p-company .p-companyAbout {
  display: grid;
  overflow: hidden;
  min-height: 186.0696517413vw;
  margin-inline: calc(50% - var(--clientWidth) / 2);
}
@media (min-width: 1024px) {
  .p-company .p-companyAbout {
    min-height: 994px;
  }
}
.p-company .p-companyAbout .p-companyAbout__bg,
.p-company .p-companyAbout .p-companyAbout__inner {
  grid-area: 1/1/2/2;
}
.p-company .p-companyAbout .p-companyAbout__bg {
  pointer-events: none;
  z-index: 1;
}
.p-company .p-companyAbout .p-companyAbout__bg picture {
  display: block;
  height: 100%;
  width: 100%;
}
.p-company .p-companyAbout .p-companyAbout__bg img {
  display: block;
  height: 179.1044776119vw;
  width: auto;
  margin-inline: auto;
}
@media not all and (min-width: 1024px) {
  .p-company .p-companyAbout .p-companyAbout__bg img {
    margin-block-start: 6.9651741294vw;
  }
}
@media (min-width: 1024px) {
  .p-company .p-companyAbout .p-companyAbout__bg img {
    height: 994px;
  }
}
.p-company .p-companyAbout .p-companyAbout__inner {
  padding-block-start: 62.1890547264vw;
  padding-inline: 6.2189054726vw;
  z-index: 2;
}
@media (min-width: 1024px) {
  .p-company .p-companyAbout .p-companyAbout__inner {
    padding-block-start: 0;
    padding-inline: 0;
    text-align: center;
  }
}
.p-company .p-companyAbout .p-companyAbout__title {
  color: #111;
  letter-spacing: 0.1em;
  line-height: 1.52;
  padding-inline-start: 8.9552238806vw;
  margin-block-start: 8.9552238806vw;
  font-size: 2.5rem;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .p-company .p-companyAbout .p-companyAbout__title {
    font-size: 3.25rem;
    line-height: 2.65;
    padding-inline-start: 0;
    margin-block-start: 25.8666666667vw;
  }
}
.p-company .p-companyAbout .p-companyAbout__text {
  color: #111;
  letter-spacing: 0.1em;
  line-height: 2.65;
  margin-block-start: 8.2089552239vw;
  font-weight: 500;
  font-size: 1rem;
}
@media (min-width: 1024px) {
  .p-company .p-companyAbout .p-companyAbout__text {
    margin-block-start: 0;
  }
}
.p-company .p-companyChannels {
  border-image-source: linear-gradient(#000, #000);
  border-image-slice: fill 0;
  border-image-outset: 0 var(--clientWidth) 0 var(--clientWidth);
}
.p-company .p-companyChannels .p-companyChannels__inner {
  padding-block: 24.6268656716vw 16.6666666667vw;
}
@media (min-width: 1024px) {
  .p-company .p-companyChannels .p-companyChannels__inner {
    padding-block: 126px;
  }
}
.p-company .p-companyChannels .p-companyChannels__head {
  margin-block-end: 13.9303482587vw;
  text-align: center;
}
@media (min-width: 1024px) {
  .p-company .p-companyChannels .p-companyChannels__head {
    margin-block-end: 8vw;
  }
}
.p-company .p-companyChannels .p-companyChannels__title {
  align-items: center;
  color: #fff;
  display: flex;
  flex-direction: column;
}
@media not all and (min-width: 1024px) {
  .p-company .p-companyChannels .p-companyChannels__title {
    align-items: flex-start;
  }
}
.p-company .p-companyChannels .p-companyChannels__title .title__en {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 13.4328358209vw;
  letter-spacing: -0.01em;
}
@media (min-width: 1024px) {
  .p-company .p-companyChannels .p-companyChannels__title .title__en {
    font-size: 3.6vw;
  }
}
.p-company .p-companyChannels .p-companyChannels__title .title__jp {
  font-family: "Noto Sans JP", system-ui;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
  font-size: 3.9800995025vw;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media (min-width: 1024px) {
  .p-company .p-companyChannels .p-companyChannels__title .title__jp {
    font-size: 1.0666666667vw;
  }
}
.p-company .p-companyOutline .p-companyOutline__inner {
  margin-inline: auto;
  max-width: 1140px;
  padding-block: 24.6268656716vw 16.6666666667vw;
}
@media (min-width: 1024px) {
  .p-company .p-companyOutline .p-companyOutline__inner {
    padding-block: 126px 10px;
  }
}
.p-company .p-companyOutline .p-companyOutline__head {
  margin-block-end: 10.447761194vw;
  text-align: center;
}
@media (min-width: 1024px) {
  .p-company .p-companyOutline .p-companyOutline__head {
    margin-block-end: 5.1333333333vw;
  }
}
.p-company .p-companyOutline .p-companyOutline__title {
  align-items: center;
  color: #111;
  display: flex;
  flex-direction: column;
}
@media not all and (min-width: 1024px) {
  .p-company .p-companyOutline .p-companyOutline__title {
    align-items: flex-start;
  }
}
.p-company .p-companyOutline .p-companyOutline__title .title__en {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 13.4328358209vw;
  letter-spacing: -0.01em;
}
@media (min-width: 1024px) {
  .p-company .p-companyOutline .p-companyOutline__title .title__en {
    font-size: 3.6vw;
  }
}
.p-company .p-companyOutline .p-companyOutline__title .title__jp {
  font-family: "Noto Sans JP", system-ui;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
  font-size: 3.9800995025vw;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media (min-width: 1024px) {
  .p-company .p-companyOutline .p-companyOutline__title .title__jp {
    font-size: 1.0666666667vw;
  }
}
.p-company .p-companyOutline .p-companyOutline__table .table__item {
  border-block-end: 1px solid #111;
  display: flex;
  flex-direction: column;
  padding-block: 5.4726368159vw 5.7213930348vw;
}
@media (min-width: 1024px) {
  .p-company .p-companyOutline .p-companyOutline__table .table__item {
    align-items: flex-start;
    flex-direction: row;
    padding-block: 2vw;
  }
}
.p-company .p-companyOutline .p-companyOutline__table .table__item dt {
  font-family: "Noto Sans JP", system-ui;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media (min-width: 1024px) {
  .p-company .p-companyOutline .p-companyOutline__table .table__item dt {
    flex-shrink: 0;
    min-width: 11.1333333333vw;
  }
}
.p-company .p-companyOutline .p-companyOutline__table .table__item dd {
  font-family: "Noto Sans JP", system-ui;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-block-start: 1.7412935323vw;
}
@media (min-width: 1024px) {
  .p-company .p-companyOutline .p-companyOutline__table .table__item dd {
    margin-block-start: 0;
  }
}

.p-contact {
  padding: 62px 18px 117px;
  background: #ebf9ff;
}
@media (min-width: 1024px) {
  .p-contact {
    padding: 100px 0 117px;
  }
}
.p-contact .c-form {
  padding: 68px 20px 72px;
  background: #fff;
}
@media (min-width: 1024px) {
  .p-contact .c-form {
    max-width: 1200px;
    margin: 0 auto;
  }
}

.p-events {
  padding-block-end: 14.9253731343vw;
}
@media (min-width: 1024px) {
  .p-events {
    padding-block-end: 5.3333333333vw;
  }
}

.p-events__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-events__item {
  border-bottom: 1px solid #111;
  padding-block: 5.9701492537vw;
}
@media (min-width: 1024px) {
  .p-events__item {
    padding-block: 2vw;
  }
}

.p-events__link {
  display: block;
  text-decoration: none;
}
@media (any-hover: hover) {
  .p-events__link:hover .p-events__date,
  .p-events__link:hover .p-events__title {
    color: #F8791F;
  }
  .p-events__link:hover .p-events__thumb img {
    transform: scale(1.05);
  }
}
@media (min-width: 1024px) {
  .p-events__link {
    align-items: flex-start;
    display: flex;
    gap: 1.8666666667vw;
  }
}

.p-events__thumb {
  aspect-ratio: 287/170;
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .p-events__thumb {
    flex-shrink: 0;
    width: 19.1333333333vw;
  }
}
.p-events__thumb img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.p-events__body {
  margin-block-start: 3.2338308458vw;
}
@media (min-width: 1024px) {
  .p-events__body {
    flex: 1;
    margin-block-start: 0;
  }
}

.p-events__date {
  color: #111;
  letter-spacing: 0.1em;
  transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  font-size: 1rem;
  font-family: "Lato", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
}

.p-events__title {
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-block-start: 1.9900497512vw;
  font-size: 1rem;
  font-family: "Noto Sans JP", system-ui;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
  color: #111;
  font-weight: 700;
  transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 1024px) {
  .p-events__title {
    font-size: 1.125rem;
    margin-block-start: 0.6666666667vw;
  }
}

.p-topMainVisual {
  position: relative;
  overflow: hidden;
  height: 291.0447761194vw;
}
@media (min-width: 1024px) {
  .p-topMainVisual {
    height: 61.8666666667vw;
  }
}
.p-topMainVisual .p-topMainVisual__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #ffc98f, #fff3e7);
}
.p-topMainVisual .p-topMainVisual__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/top/mv_bg.jpg") no-repeat center;
  background-size: cover;
  pointer-events: none;
}
.p-topMainVisual .p-topMainVisual__bgDeco {
  position: absolute;
  top: 0;
  left: -52.736318408vw;
  width: 363.6815920398vw;
  height: auto;
  pointer-events: none;
  max-width: none;
}
@media (min-width: 1024px) {
  .p-topMainVisual .p-topMainVisual__bgDeco {
    left: 33.6666666667vw;
    width: 77.3333333333vw;
  }
}
.p-topMainVisual .p-topMainVisual__bgDecoR {
  position: absolute;
  left: -211.1940298507vw;
  top: 76.6169154229vw;
  width: 367.4129353234vw;
  height: auto;
  pointer-events: none;
  max-width: none;
}
@media (min-width: 1024px) {
  .p-topMainVisual .p-topMainVisual__bgDecoR {
    left: 0;
    top: 16.2666666667vw;
    width: 78.1333333333vw;
  }
}
.p-topMainVisual .p-topMainVisual__channel {
  position: absolute;
}
.p-topMainVisual .p-topMainVisual__channel a {
  display: block;
  text-decoration: none;
}
.p-topMainVisual .p-topMainVisual__channel .channel__label {
  position: relative;
  z-index: 2;
  display: block;
  width: fit-content;
  padding: 5px 18px;
  border-radius: 5px 5px 0 0;
  color: #fff;
  white-space: nowrap;
  line-height: normal;
  font-size: 0.9375rem;
  font-weight: 700;
}
.p-topMainVisual .p-topMainVisual__channel .channel__frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-style: solid;
  border-width: 6px;
}
.p-topMainVisual .p-topMainVisual__channel .channel__frame img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover";
}
.p-topMainVisual ._ch01 {
  z-index: 1;
  left: 5.9701492537vw;
  top: 27.1144278607vw;
  width: 77.1144278607vw;
}
.p-topMainVisual ._ch01 .channel__label {
  background: #ff1313;
}
.p-topMainVisual ._ch01 .channel__frame {
  height: 43.2835820896vw;
  border-color: #ff1313;
  box-shadow: 0 0 16px 0 #ff9a4b;
}
@media (min-width: 1024px) {
  .p-topMainVisual ._ch01 {
    z-index: 7;
    left: 14.6666666667vw;
    top: 34vw;
    width: 31.4vw;
  }
  .p-topMainVisual ._ch01 .channel__frame {
    height: 17.6666666667vw;
  }
}
.p-topMainVisual ._ch02 {
  z-index: 2;
  left: 32.3383084577vw;
  top: 64.6766169154vw;
  width: 66.4179104478vw;
}
.p-topMainVisual ._ch02 .channel__label {
  background: #111;
}
.p-topMainVisual ._ch02 .channel__frame {
  height: 37.3134328358vw;
  border-color: #111;
  box-shadow: 0 0 16px 0 #ff9a4b;
}
@media (min-width: 1024px) {
  .p-topMainVisual ._ch02 {
    z-index: 5;
    left: 27.5333333333vw;
    top: 18.7333333333vw;
    width: 28.8666666667vw;
  }
  .p-topMainVisual ._ch02 .channel__frame {
    height: 16.2666666667vw;
  }
}
.p-topMainVisual ._ch03 {
  z-index: 3;
  left: 0;
  top: 92.5373134328vw;
  width: 44.776119403vw;
}
.p-topMainVisual ._ch03 .channel__label {
  background: #ff8e99;
}
.p-topMainVisual ._ch03 .channel__frame {
  height: 62.1890547264vw;
  border-color: #ff8e99;
}
@media (min-width: 1024px) {
  .p-topMainVisual ._ch03 {
    z-index: 1;
    left: 2.8666666667vw;
    top: 11.4vw;
    width: 20vw;
  }
  .p-topMainVisual ._ch03 .channel__frame {
    height: 27.8vw;
  }
}
.p-topMainVisual ._ch04 {
  z-index: 4;
  left: 53.2338308458vw;
  top: 114.1791044776vw;
  width: 44.776119403vw;
}
.p-topMainVisual ._ch04 .channel__label {
  background: #fff716;
  color: #111;
}
.p-topMainVisual ._ch04 .channel__frame {
  height: 73.8805970149vw;
  border-color: #fff716;
  box-shadow: 0 0 16px 0 #ff9a4b;
}
@media (min-width: 1024px) {
  .p-topMainVisual ._ch04 {
    z-index: 2;
    left: 58.9333333333vw;
    top: 12.2vw;
    width: 13.2666666667vw;
  }
  .p-topMainVisual ._ch04 .channel__frame {
    height: 21.8666666667vw;
  }
}
.p-topMainVisual ._ch05 {
  z-index: 5;
  left: 3.2338308458vw;
  top: 160.1990049751vw;
  width: 66.4179104478vw;
}
.p-topMainVisual ._ch05 .channel__label {
  background: #fff;
  color: #111;
}
.p-topMainVisual ._ch05 .channel__frame {
  height: 37.3134328358vw;
  border-color: #fff;
  box-shadow: 0 0 16px 0 #ff9a4b;
}
@media (min-width: 1024px) {
  .p-topMainVisual ._ch05 {
    z-index: 3;
    left: 76.1333333333vw;
    top: 14.1333333333vw;
    width: 21.6vw;
  }
  .p-topMainVisual ._ch05 .channel__frame {
    height: 12.2vw;
  }
}
.p-topMainVisual ._ch06 {
  z-index: 6;
  left: 33.8308457711vw;
  top: 196.5174129353vw;
  width: 66.4179104478vw;
}
.p-topMainVisual ._ch06 .channel__label {
  background: #3ba7ff;
}
.p-topMainVisual ._ch06 .channel__frame {
  height: 37.3134328358vw;
  border-color: #3ba7ff;
  box-shadow: 0 0 16px 0 #ff9a4b;
}
@media (min-width: 1024px) {
  .p-topMainVisual ._ch06 {
    z-index: 6;
    left: 70.2vw;
    top: 30.4666666667vw;
    width: 27.8vw;
  }
  .p-topMainVisual ._ch06 .channel__frame {
    height: 15.6666666667vw;
  }
}
.p-topMainVisual ._ch07 {
  z-index: 7;
  left: 3.4825870647vw;
  top: 234.07960199vw;
  width: 66.4179104478vw;
}
.p-topMainVisual ._ch07 .channel__label {
  background: #52bf57;
}
.p-topMainVisual ._ch07 .channel__frame {
  height: 37.3134328358vw;
  border-color: #52bf57;
  box-shadow: 0 0 16px 0 #e66603;
}
@media (min-width: 1024px) {
  .p-topMainVisual ._ch07 {
    z-index: 4;
    left: 47.8666666667vw;
    top: 40.6vw;
    width: 28.5333333333vw;
  }
  .p-topMainVisual ._ch07 .channel__frame {
    height: 16.0666666667vw;
  }
}
@media (min-width: 1024px) and (any-hover: hover) {
  .p-topMainVisual .p-topMainVisual__channel a .channel__frame img {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
}
@media (min-width: 1024px) and (any-hover: hover) {
  .p-topMainVisual .p-topMainVisual__channel a:hover .channel__frame img {
    transform: scale(1.05);
  }
}

.p-top .p-topSection .p-topSection__title {
  line-height: 160%;
  letter-spacing: 0.05em;
  font-size: 1.75rem;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .p-top .p-topSection .p-topSection__title {
    font-size: 2.25rem;
  }
}
.p-top .p-topSection .p-topSection__title::before {
  display: block;
  margin-bottom: 15px;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  content: attr(data-en);
  font-size: 0.875rem;
  line-height: 1.1428571429;
  font-family: "Lato", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}
.p-top .p-topSection._bgGradOrange {
  background: linear-gradient(to bottom, #ffe2c2, #ffbe7b);
}
.p-top .p-topSection._bgOrange {
  background: #ffb668;
}
.p-top .p-topSection._news .p-topSection__colm {
  padding: 24.6268656716vw 5.4726368159vw 19.9004975124vw;
}
@media (min-width: 1024px) {
  .p-top .p-topSection._news .p-topSection__colm {
    display: grid;
    grid-template-columns: 15.7333333333vw 1fr;
    padding: 8vw 8.6666666667vw 8vw 8.6666666667vw;
  }
}
.p-top .p-topSection._news .p-topSection__newsHead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .p-top .p-topSection._news .p-topSection__newsHead {
    display: block;
  }
}
.p-top .p-topSection._news .p-topSection__newsHead .newsHead__title {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}
@media (min-width: 1024px) {
  .p-top .p-topSection._news .p-topSection__newsHead .newsHead__title {
    margin-bottom: 2.2vw;
  }
}
.p-top .p-topSection._news .p-topSection__newsHead .newsHead__en {
  display: block;
  color: #111;
  letter-spacing: -0.01em;
  line-height: normal;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 3.375rem;
}
.p-top .p-topSection._news .p-topSection__newsHead .newsHead__jp {
  display: block;
  color: #111;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: normal;
  font-size: 1rem;
}
@media not all and (min-width: 1024px) {
  .p-top .p-topSection._news .p-topSection__newsList {
    margin-top: 9.9502487562vw;
  }
}
.p-top .p-topSection._video {
  overflow: hidden;
}
.p-top .p-topSection._video .p-topSection__videoHead {
  padding: 24.8756218905vw 0 0 6.2189054726vw;
}
@media (min-width: 1024px) {
  .p-top .p-topSection._video .p-topSection__videoHead {
    padding: 8vw 0 0;
    text-align: center;
  }
}
.p-top .p-topSection._video .p-topSection__videoTitle .headTitle__en {
  color: #111;
  display: block;
  letter-spacing: -0.01em;
  line-height: 1.2;
  font-size: 3.375rem;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}
.p-top .p-topSection._video .p-topSection__videoTitle .headTitle__jp {
  color: #111;
  display: block;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: normal;
  font-size: 1rem;
}
@media (min-width: 1024px) {
  .p-top .p-topSection._video .p-topSection__videoTitle .headTitle__jp {
    margin-top: 0.5333333333vw;
  }
}
.p-top .p-topSection._video .p-topSection__videoSlider {
  margin-top: 14.9253731343vw;
  overflow: visible;
  padding-bottom: 14.9253731343vw;
}
@media (min-width: 1024px) {
  .p-top .p-topSection._video .p-topSection__videoSlider {
    margin-top: 6.8vw;
    padding-bottom: 8vw;
  }
}
.p-top .p-topSection._video .p-topSection__videoSlider .splide__track {
  overflow: visible;
}
.p-top .p-topSection._video .splide__arrow {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  height: 10.447761194vw;
  opacity: 1;
  top: 32.8358208955vw;
  transform: translateY(-50%);
  width: 8.2089552239vw;
}
@media (min-width: 1024px) {
  .p-top .p-topSection._video .splide__arrow {
    height: 3.5333333333vw;
    top: 10vw;
    width: 2.6vw;
  }
}
.p-top .p-topSection._video .splide__arrow svg {
  fill: #111;
  height: 7.4626865672vw;
  transition: fill 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  width: 6.2189054726vw;
}
@media (min-width: 1024px) {
  .p-top .p-topSection._video .splide__arrow svg {
    height: 5.3333333333vw;
    width: 2.3333333333vw;
  }
}
@media (any-hover: hover) {
  .p-top .p-topSection._video .splide__arrow:hover svg {
    fill: #F8791F;
  }
}
.p-top .p-topSection._video .splide__arrow--prev {
  left: 6.9651741294vw;
}
@media (min-width: 1024px) {
  .p-top .p-topSection._video .splide__arrow--prev {
    left: 10.8vw;
  }
}
.p-top .p-topSection._video .splide__arrow--next {
  right: 6.9651741294vw;
}
@media (min-width: 1024px) {
  .p-top .p-topSection._video .splide__arrow--next {
    right: 10.8vw;
  }
}
.p-top .p-topSection._video .p-topSection__videoItem {
  width: 69.6517412935vw;
}
@media (min-width: 1024px) {
  .p-top .p-topSection._video .p-topSection__videoItem {
    width: 33.3333333333vw;
  }
}
.p-top .p-topSection._video .p-topSection__videoItem .item__link {
  display: block;
  padding-top: 11.4427860697vw;
  position: relative;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .p-top .p-topSection._video .p-topSection__videoItem .item__link {
    padding-top: 0;
    position: static;
  }
}
@media (min-width: 1024px) and (any-hover: hover) {
  .p-top .p-topSection._video .p-topSection__videoItem .item__link .item__thumb img {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .p-top .p-topSection._video .p-topSection__videoItem .item__link .item__channel,
  .p-top .p-topSection._video .p-topSection__videoItem .item__link .item__title {
    transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
}
@media (min-width: 1024px) and (any-hover: hover) {
  .p-top .p-topSection._video .p-topSection__videoItem .item__link:hover .item__thumb img {
    transform: scale(1.05);
  }
  .p-top .p-topSection._video .p-topSection__videoItem .item__link:hover .item__channel,
  .p-top .p-topSection._video .p-topSection__videoItem .item__link:hover .item__title {
    color: #F8791F;
  }
}
.p-top .p-topSection._video .p-topSection__videoItem .item__thumb {
  border-radius: 2.9850746269vw;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .p-top .p-topSection._video .p-topSection__videoItem .item__thumb {
    border-radius: 0.8vw;
  }
}
.p-top .p-topSection._video .p-topSection__videoItem .item__thumb img {
  aspect-ratio: 280/158;
  display: block;
  object-fit: cover;
  width: 100%;
}
@media (min-width: 1024px) {
  .p-top .p-topSection._video .p-topSection__videoItem .item__thumb img {
    aspect-ratio: 500/281;
  }
}
.p-top .p-topSection._video .p-topSection__videoItem .item__meta {
  margin-top: 4.7263681592vw;
}
@media (min-width: 1024px) {
  .p-top .p-topSection._video .p-topSection__videoItem .item__meta {
    align-items: flex-start;
    display: flex;
    gap: 1.4666666667vw;
    margin-top: 1.0666666667vw;
  }
}
.p-top .p-topSection._video .p-topSection__videoItem .item__avatar {
  border-radius: 50%;
  height: 19.9004975124vw;
  left: 50%;
  overflow: hidden;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 19.9004975124vw;
  z-index: 1;
}
@media (min-width: 1024px) {
  .p-top .p-topSection._video .p-topSection__videoItem .item__avatar {
    border-radius: 50%;
    flex-shrink: 0;
    height: 5.3333333333vw;
    left: auto;
    overflow: hidden;
    position: static;
    top: auto;
    transform: none;
    width: 5.3333333333vw;
  }
}
.p-top .p-topSection._video .p-topSection__videoItem .item__avatar img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.p-top .p-topSection._video .p-topSection__videoItem .item__channel {
  color: #111;
  letter-spacing: 0.03em;
  line-height: normal;
  font-size: 1.125rem;
  font-weight: 700;
}
.p-top .p-topSection._video .p-topSection__videoItem .item__title {
  color: #111;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: 1.9900497512vw;
  font-size: 1rem;
}
@media (min-width: 1024px) {
  .p-top .p-topSection._video .p-topSection__videoItem .item__title {
    margin-top: 0.5333333333vw;
  }
}
.p-top .p-topSection._collaborations {
  overflow: hidden;
}
.p-top .p-topSection._collaborations .p-topSection__videoHead {
  padding: 24.8756218905vw 0 0 6.2189054726vw;
}
@media (min-width: 1024px) {
  .p-top .p-topSection._collaborations .p-topSection__videoHead {
    padding: 8vw 0 0;
    text-align: center;
  }
}
.p-top .p-topSection._collaborations .p-topSection__videoTitle .headTitle__en {
  color: #111;
  display: block;
  letter-spacing: -0.01em;
  line-height: 1.2;
  font-size: 3.375rem;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}
.p-top .p-topSection._collaborations .p-topSection__videoTitle .headTitle__jp {
  color: #111;
  display: block;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: normal;
  font-size: 1rem;
}
@media (min-width: 1024px) {
  .p-top .p-topSection._collaborations .p-topSection__videoTitle .headTitle__jp {
    margin-top: 0.5333333333vw;
  }
}
.p-top .p-topSection._collaborations .p-topSection__videoSlider {
  margin-top: 7.960199005vw;
  overflow: visible;
  padding-bottom: 14.9253731343vw;
}
@media (min-width: 1024px) {
  .p-top .p-topSection._collaborations .p-topSection__videoSlider {
    margin-top: 4.2vw;
    padding-bottom: 3.0666666667vw;
  }
}
.p-top .p-topSection._collaborations .p-topSection__videoSlider .splide__track {
  overflow: visible;
}
.p-top .p-topSection._collaborations .splide__arrow {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  height: 10.447761194vw;
  opacity: 1;
  top: 19.9004975124vw;
  transform: translateY(-50%);
  width: 8.2089552239vw;
}
@media (min-width: 1024px) {
  .p-top .p-topSection._collaborations .splide__arrow {
    height: 3.5333333333vw;
    top: 10vw;
    width: 2.6vw;
  }
}
.p-top .p-topSection._collaborations .splide__arrow svg {
  fill: #111;
  height: 7.4626865672vw;
  transition: fill 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  width: 6.2189054726vw;
}
@media (min-width: 1024px) {
  .p-top .p-topSection._collaborations .splide__arrow svg {
    height: 5.3333333333vw;
    width: 2.3333333333vw;
  }
}
@media (any-hover: hover) {
  .p-top .p-topSection._collaborations .splide__arrow:hover svg {
    fill: #F8791F;
  }
}
.p-top .p-topSection._collaborations .splide__arrow--prev {
  left: 6.9651741294vw;
}
@media (min-width: 1024px) {
  .p-top .p-topSection._collaborations .splide__arrow--prev {
    left: 10.8vw;
  }
}
.p-top .p-topSection._collaborations .splide__arrow--next {
  right: 6.9651741294vw;
}
@media (min-width: 1024px) {
  .p-top .p-topSection._collaborations .splide__arrow--next {
    right: 10.8vw;
  }
}
.p-top .p-topSection._collaborations .p-topSection__videoItem {
  width: 69.6517412935vw;
}
@media (min-width: 1024px) {
  .p-top .p-topSection._collaborations .p-topSection__videoItem {
    width: 33.3333333333vw;
  }
}
.p-top .p-topSection._collaborations .p-topSection__videoItem .item__link {
  display: block;
  text-decoration: none;
}
@media (min-width: 1024px) and (any-hover: hover) {
  .p-top .p-topSection._collaborations .p-topSection__videoItem .item__link .item__thumb img {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .p-top .p-topSection._collaborations .p-topSection__videoItem .item__link .item__name {
    transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
}
@media (min-width: 1024px) and (any-hover: hover) {
  .p-top .p-topSection._collaborations .p-topSection__videoItem .item__link:hover .item__thumb img {
    transform: scale(1.05);
  }
  .p-top .p-topSection._collaborations .p-topSection__videoItem .item__link:hover .item__name {
    color: #F8791F;
  }
}
.p-top .p-topSection._collaborations .p-topSection__videoItem .item__thumb {
  border-radius: 2.9850746269vw;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .p-top .p-topSection._collaborations .p-topSection__videoItem .item__thumb {
    border-radius: 0.8vw;
  }
}
.p-top .p-topSection._collaborations .p-topSection__videoItem .item__thumb img {
  aspect-ratio: 280/158;
  display: block;
  object-fit: cover;
  width: 100%;
}
@media (min-width: 1024px) {
  .p-top .p-topSection._collaborations .p-topSection__videoItem .item__thumb img {
    aspect-ratio: 500/281;
  }
}
.p-top .p-topSection._collaborations .p-topSection__videoItem .item__meta {
  margin-top: 3.2338308458vw;
}
@media (min-width: 1024px) {
  .p-top .p-topSection._collaborations .p-topSection__videoItem .item__meta {
    margin-top: 1.3333333333vw;
  }
}
.p-top .p-topSection._collaborations .p-topSection__videoItem .item__name {
  color: #111;
  letter-spacing: 0.03em;
  line-height: 1.6;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
}
.p-top .p-topSection._collaborations .p-topSection__collabBtn {
  display: flex;
  justify-content: center;
  padding: 0 0 19.9004975124vw;
}
@media (min-width: 1024px) {
  .p-top .p-topSection._collaborations .p-topSection__collabBtn {
    padding: 0.8vw 8.6666666667vw 13.8vw;
  }
}
.p-top .p-topEventInfo {
  background-color: #000;
}
.p-top .p-topEventInfo .p-topEventInfo__inner {
  padding: 24.8756218905vw 5.4726368159vw 18.407960199vw;
}
@media (min-width: 1024px) {
  .p-top .p-topEventInfo .p-topEventInfo__inner {
    align-items: center;
    column-gap: 1.3333333333vw;
    display: grid;
    grid-template-areas: "head btn" "list list";
    grid-template-columns: 1fr auto;
    padding: 8vw 12.6vw 8vw 8.6666666667vw;
    row-gap: 6.8666666667vw;
  }
}
@media (min-width: 1024px) {
  .p-top .p-topEventInfo .p-topEventInfo__head {
    grid-area: head;
  }
}
@media (min-width: 1024px) {
  .p-top .p-topEventInfo .p-topEventInfo__headTitle {
    align-items: center;
    display: flex;
    gap: 2.7333333333vw;
  }
}
.p-top .p-topEventInfo .p-topEventInfo__headTitle .headTitle__en {
  display: block;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: normal;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 3.375rem;
}
.p-top .p-topEventInfo .p-topEventInfo__headTitle .headTitle__jp {
  display: block;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: normal;
  font-size: 1rem;
}
.p-top .p-topEventInfo .p-topEventInfo__headBtn {
  display: flex;
  justify-content: center;
  margin-top: 12.4378109453vw;
}
@media (min-width: 1024px) {
  .p-top .p-topEventInfo .p-topEventInfo__headBtn {
    grid-area: btn;
    margin-top: 0;
  }
}
.p-top .p-topEventInfo .p-topEventInfo__list {
  list-style: none;
  margin: 0;
  margin-top: 10.9452736318vw;
  padding: 0;
}
@media (min-width: 1024px) {
  .p-top .p-topEventInfo .p-topEventInfo__list {
    column-gap: 4.0666666667vw;
    display: grid;
    grid-area: list;
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
    row-gap: 3.5333333333vw;
  }
}
.p-top .p-topEventInfo .p-topEventInfo__item + .p-topEventInfo__item {
  margin-top: 9.9502487562vw;
}
@media (min-width: 1024px) {
  .p-top .p-topEventInfo .p-topEventInfo__item + .p-topEventInfo__item {
    margin-top: 0;
  }
}
.p-top .p-topEventInfo .p-topEventInfo__item .item__link {
  display: block;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .p-top .p-topEventInfo .p-topEventInfo__item .item__link {
    align-items: flex-start;
    display: flex;
    gap: 1.8666666667vw;
  }
}
@media (min-width: 1024px) and (any-hover: hover) {
  .p-top .p-topEventInfo .p-topEventInfo__item .item__link .item__thumb img {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .p-top .p-topEventInfo .p-topEventInfo__item .item__link .item__date,
  .p-top .p-topEventInfo .p-topEventInfo__item .item__link .item__title {
    transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
}
@media (min-width: 1024px) and (any-hover: hover) {
  .p-top .p-topEventInfo .p-topEventInfo__item .item__link:hover .item__thumb img {
    transform: scale(1.05);
  }
  .p-top .p-topEventInfo .p-topEventInfo__item .item__link:hover .item__date,
  .p-top .p-topEventInfo .p-topEventInfo__item .item__link:hover .item__title {
    color: #F8791F;
  }
}
.p-top .p-topEventInfo .p-topEventInfo__item .item__thumb {
  border-radius: 3.7313432836vw;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .p-top .p-topEventInfo .p-topEventInfo__item .item__thumb {
    border-radius: 1.3333333333vw;
    flex-shrink: 0;
    height: 11.3333333333vw;
    width: 19.1333333333vw;
  }
}
.p-top .p-topEventInfo .p-topEventInfo__item .item__thumb img {
  aspect-ratio: 287/170;
  display: block;
  width: 100%;
  object-fit: cover;
  font-family: "object-fit: cover";
}
@media (min-width: 1024px) {
  .p-top .p-topEventInfo .p-topEventInfo__item .item__thumb img {
    aspect-ratio: auto;
    height: 100%;
  }
}
.p-top .p-topEventInfo .p-topEventInfo__item .item__body {
  display: flex;
  flex-direction: column;
  gap: 3.4825870647vw;
  margin-top: 5.7213930348vw;
}
@media (min-width: 1024px) {
  .p-top .p-topEventInfo .p-topEventInfo__item .item__body {
    gap: 0.9333333333vw;
    margin-top: 0;
  }
}
.p-top .p-topEventInfo .p-topEventInfo__item .item__date {
  color: #fff;
  letter-spacing: 0.1em;
  line-height: normal;
  font-family: "Lato", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
}
.p-top .p-topEventInfo .p-topEventInfo__item .item__title {
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-weight: 700;
  font-size: 1rem;
}

.p-topChannels {
  background-color: #000;
}
.p-topChannels .p-topChannels__inner {
  padding: 24.8756218905vw 6.2189054726vw 19.9004975124vw;
}
@media (min-width: 1024px) {
  .p-topChannels .p-topChannels__inner {
    padding: 8vw 8.6666666667vw 10.5333333333vw;
  }
}
@media (min-width: 1024px) {
  .p-topChannels .p-topChannels__head {
    text-align: center;
  }
}
.p-topChannels .p-topChannels__title {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}
.p-topChannels .title__en {
  color: #fff;
  display: block;
  letter-spacing: -0.01em;
  line-height: 1.2;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 3.375rem;
}
.p-topChannels .title__jp {
  color: #fff;
  display: block;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: normal;
  font-size: 1rem;
}
@media (min-width: 1024px) {
  .p-topChannels .title__jp {
    margin-top: 0.5333333333vw;
  }
}
.p-topChannels .c-channels__list {
  margin-top: 9.9502487562vw;
}
@media (min-width: 1024px) {
  .p-topChannels .c-channels__list {
    margin-top: 8vw;
  }
}

.p-topCompany {
  background: url("../img/top/com_bg_sp.jpg") 50% 71.67%/auto 100% no-repeat;
  background-blend-mode: hard-light, normal;
  background-size: auto 100%;
  min-height: 229.3532338308vw;
}
@media (min-width: 1024px) {
  .p-topCompany {
    background: url("../img/top/com_bg_pc.jpg") 50% 43.89%/auto 100% no-repeat;
    min-height: 54.7333333333vw;
  }
}
.p-topCompany .p-topCompany__inner {
  padding: 65.92039801vw 6.2189054726vw 44.0298507463vw;
}
@media (min-width: 1024px) {
  .p-topCompany .p-topCompany__inner {
    padding-block: 22.7333333333vw 8vw;
    text-align: center;
  }
}
.p-topCompany .p-topCompany__heading {
  color: #111;
  letter-spacing: 0.1em;
  line-height: 1.52;
  margin: 0;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .p-topCompany .p-topCompany__heading {
    font-size: 3.25rem;
    line-height: 2.65;
  }
}
.p-topCompany .p-topCompany__text {
  color: #111;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.65;
  margin-top: 8.9552238806vw;
  font-size: 1rem;
}
@media (min-width: 1024px) {
  .p-topCompany .p-topCompany__text {
    margin-inline: auto;
    margin-top: 0.4vw;
  }
}
.p-topCompany .p-topCompany__btn {
  display: flex;
  justify-content: center;
  margin-top: 15.671641791vw;
}
@media (min-width: 1024px) {
  .p-topCompany .p-topCompany__btn {
    margin-top: 2.7333333333vw;
  }
}

.p-topEventReport {
  background-color: #000;
  padding-bottom: 21.8905472637vw;
}
@media (min-width: 1024px) {
  .p-topEventReport {
    padding-bottom: 2.4vw;
  }
}
.p-topEventReport .p-topEventReport__inner {
  padding: 24.8756218905vw 6.2189054726vw 0;
}
@media (min-width: 1024px) {
  .p-topEventReport .p-topEventReport__inner {
    background-color: #161616;
    border-radius: 1.9333333333vw;
    margin: 0 8.6666666667vw;
    padding: 8vw 4.5333333333vw;
    transform: translateY(-87px);
  }
}
@media (min-width: 1024px) {
  .p-topEventReport .p-topEventReport__head {
    text-align: center;
  }
}
.p-topEventReport .p-topEventReport__title {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}
.p-topEventReport .title__en {
  color: #fff;
  display: block;
  letter-spacing: -0.01em;
  line-height: 1.2;
  font-size: 3.375rem;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}
.p-topEventReport .title__jp {
  color: #fff;
  display: block;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: normal;
  font-size: 1rem;
}
@media (min-width: 1024px) {
  .p-topEventReport .title__jp {
    margin-top: 0.5333333333vw;
  }
}
.p-topEventReport .p-topEventReport__list {
  list-style: none;
  margin: 0;
  margin-top: 16.1691542289vw;
  padding: 0;
}
@media (min-width: 1024px) {
  .p-topEventReport .p-topEventReport__list {
    column-gap: 4.8vw;
    display: grid;
    grid-template-columns: repeat(3, 21.3333333333vw);
    margin-top: 6.6666666667vw;
    row-gap: 3.6666666667vw;
  }
}
.p-topEventReport .p-topEventReport__item + .p-topEventReport__item {
  margin-top: 9.9502487562vw;
}
@media (min-width: 1024px) {
  .p-topEventReport .p-topEventReport__item + .p-topEventReport__item {
    margin-top: 0;
  }
}
.p-topEventReport .p-topEventReport__item .item__link {
  display: block;
  text-decoration: none;
}
@media (min-width: 1024px) and (any-hover: hover) {
  .p-topEventReport .p-topEventReport__item .item__link .item__thumb img {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .p-topEventReport .p-topEventReport__item .item__link .item__title {
    transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
}
@media (min-width: 1024px) and (any-hover: hover) {
  .p-topEventReport .p-topEventReport__item .item__link:hover .item__thumb img {
    transform: scale(1.05);
  }
  .p-topEventReport .p-topEventReport__item .item__link:hover .item__title {
    color: #F8791F;
  }
}
.p-topEventReport .p-topEventReport__item .item__thumb {
  border-radius: 2.9850746269vw;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .p-topEventReport .p-topEventReport__item .item__thumb {
    border-radius: 0.8vw;
  }
}
.p-topEventReport .p-topEventReport__item .item__thumb img {
  aspect-ratio: 16/9;
  display: block;
  object-fit: cover;
  width: 100%;
}
.p-topEventReport .p-topEventReport__item .item__title {
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.6;
  margin-top: 4.2288557214vw;
  font-size: 1rem;
}
@media (min-width: 1024px) {
  .p-topEventReport .p-topEventReport__item .item__title {
    margin-top: 1.3333333333vw;
  }
}
.p-topEventReport .p-topEventReport__btn {
  display: flex;
  justify-content: center;
  margin-top: 25.8706467662vw;
}
@media (min-width: 1024px) {
  .p-topEventReport .p-topEventReport__btn {
    margin-top: 5.3333333333vw;
  }
}

@media (min-width: 1024px) {
  .u-alignleft {
    float: left;
  }
}

@media (min-width: 1024px) {
  img.u-alignleft {
    margin-right: 30px;
    margin-bottom: 35px;
  }
}

@media (min-width: 1024px) {
  span.u-alignleft {
    margin-right: 30px;
  }
}

@media (min-width: 1024px) {
  .u-alignright {
    float: right;
  }
}

@media (min-width: 1024px) {
  img.u-alignright {
    margin-bottom: 35px;
    margin-left: 30px;
  }
}

@media (min-width: 1024px) {
  br.u-brSP {
    display: none;
  }
}
@media not all and (min-width: 1024px) {
  br.u-brPC {
    display: none;
  }
}

@media not all and (min-width: 1024px) {
  .u-hideSP {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .u-hidePC {
    display: none !important;
  }
}

.u-indent {
  margin-left: 1em;
  text-indent: -1em;
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_5 {
    margin-top: 5px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_5 {
    margin-right: 5px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_5 {
    margin-bottom: 5px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_5 {
    margin-left: 5px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_5 {
    margin-top: 5px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_5 {
    margin-right: 5px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_5 {
    margin-bottom: 5px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_5 {
    margin-left: 5px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_10 {
    margin-top: 10px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_10 {
    margin-right: 10px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_10 {
    margin-bottom: 10px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_10 {
    margin-left: 10px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_10 {
    margin-top: 10px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_10 {
    margin-right: 10px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_10 {
    margin-bottom: 10px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_10 {
    margin-left: 10px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_15 {
    margin-top: 15px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_15 {
    margin-right: 15px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_15 {
    margin-bottom: 15px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_15 {
    margin-left: 15px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_15 {
    margin-top: 15px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_15 {
    margin-right: 15px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_15 {
    margin-bottom: 15px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_15 {
    margin-left: 15px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_20 {
    margin-top: 20px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_20 {
    margin-right: 20px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_20 {
    margin-bottom: 20px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_20 {
    margin-left: 20px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_20 {
    margin-top: 20px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_20 {
    margin-right: 20px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_20 {
    margin-bottom: 20px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_20 {
    margin-left: 20px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_25 {
    margin-top: 25px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_25 {
    margin-right: 25px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_25 {
    margin-bottom: 25px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_25 {
    margin-left: 25px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_25 {
    margin-top: 25px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_25 {
    margin-right: 25px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_25 {
    margin-bottom: 25px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_25 {
    margin-left: 25px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_30 {
    margin-top: 30px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_30 {
    margin-right: 30px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_30 {
    margin-bottom: 30px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_30 {
    margin-left: 30px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_30 {
    margin-top: 30px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_30 {
    margin-right: 30px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_30 {
    margin-bottom: 30px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_30 {
    margin-left: 30px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_35 {
    margin-top: 35px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_35 {
    margin-right: 35px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_35 {
    margin-bottom: 35px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_35 {
    margin-left: 35px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_35 {
    margin-top: 35px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_35 {
    margin-right: 35px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_35 {
    margin-bottom: 35px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_35 {
    margin-left: 35px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_40 {
    margin-top: 40px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_40 {
    margin-right: 40px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_40 {
    margin-bottom: 40px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_40 {
    margin-left: 40px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_40 {
    margin-top: 40px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_40 {
    margin-right: 40px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_40 {
    margin-bottom: 40px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_40 {
    margin-left: 40px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_45 {
    margin-top: 45px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_45 {
    margin-right: 45px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_45 {
    margin-bottom: 45px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_45 {
    margin-left: 45px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_45 {
    margin-top: 45px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_45 {
    margin-right: 45px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_45 {
    margin-bottom: 45px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_45 {
    margin-left: 45px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_50 {
    margin-top: 50px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_50 {
    margin-right: 50px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_50 {
    margin-bottom: 50px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_50 {
    margin-left: 50px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_50 {
    margin-top: 50px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_50 {
    margin-right: 50px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_50 {
    margin-bottom: 50px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_50 {
    margin-left: 50px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_55 {
    margin-top: 55px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_55 {
    margin-right: 55px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_55 {
    margin-bottom: 55px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_55 {
    margin-left: 55px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_55 {
    margin-top: 55px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_55 {
    margin-right: 55px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_55 {
    margin-bottom: 55px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_55 {
    margin-left: 55px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_60 {
    margin-top: 60px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_60 {
    margin-right: 60px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_60 {
    margin-bottom: 60px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_60 {
    margin-left: 60px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_60 {
    margin-top: 60px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_60 {
    margin-right: 60px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_60 {
    margin-bottom: 60px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_60 {
    margin-left: 60px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_65 {
    margin-top: 65px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_65 {
    margin-right: 65px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_65 {
    margin-bottom: 65px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_65 {
    margin-left: 65px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_65 {
    margin-top: 65px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_65 {
    margin-right: 65px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_65 {
    margin-bottom: 65px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_65 {
    margin-left: 65px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_70 {
    margin-top: 70px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_70 {
    margin-right: 70px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_70 {
    margin-bottom: 70px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_70 {
    margin-left: 70px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_70 {
    margin-top: 70px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_70 {
    margin-right: 70px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_70 {
    margin-bottom: 70px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_70 {
    margin-left: 70px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_75 {
    margin-top: 75px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_75 {
    margin-right: 75px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_75 {
    margin-bottom: 75px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_75 {
    margin-left: 75px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_75 {
    margin-top: 75px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_75 {
    margin-right: 75px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_75 {
    margin-bottom: 75px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_75 {
    margin-left: 75px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_80 {
    margin-top: 80px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_80 {
    margin-right: 80px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_80 {
    margin-bottom: 80px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_80 {
    margin-left: 80px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_80 {
    margin-top: 80px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_80 {
    margin-right: 80px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_80 {
    margin-bottom: 80px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_80 {
    margin-left: 80px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_85 {
    margin-top: 85px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_85 {
    margin-right: 85px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_85 {
    margin-bottom: 85px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_85 {
    margin-left: 85px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_85 {
    margin-top: 85px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_85 {
    margin-right: 85px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_85 {
    margin-bottom: 85px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_85 {
    margin-left: 85px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_90 {
    margin-top: 90px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_90 {
    margin-right: 90px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_90 {
    margin-bottom: 90px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_90 {
    margin-left: 90px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_90 {
    margin-top: 90px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_90 {
    margin-right: 90px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_90 {
    margin-bottom: 90px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_90 {
    margin-left: 90px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_95 {
    margin-top: 95px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_95 {
    margin-right: 95px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_95 {
    margin-bottom: 95px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_95 {
    margin-left: 95px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_95 {
    margin-top: 95px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_95 {
    margin-right: 95px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_95 {
    margin-bottom: 95px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_95 {
    margin-left: 95px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_100 {
    margin-top: 100px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_100 {
    margin-right: 100px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_100 {
    margin-bottom: 100px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_100 {
    margin-left: 100px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_100 {
    margin-top: 100px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_100 {
    margin-right: 100px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_100 {
    margin-bottom: 100px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_100 {
    margin-left: 100px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_105 {
    margin-top: 105px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_105 {
    margin-right: 105px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_105 {
    margin-bottom: 105px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_105 {
    margin-left: 105px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_105 {
    margin-top: 105px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_105 {
    margin-right: 105px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_105 {
    margin-bottom: 105px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_105 {
    margin-left: 105px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_110 {
    margin-top: 110px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_110 {
    margin-right: 110px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_110 {
    margin-bottom: 110px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_110 {
    margin-left: 110px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_110 {
    margin-top: 110px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_110 {
    margin-right: 110px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_110 {
    margin-bottom: 110px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_110 {
    margin-left: 110px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_115 {
    margin-top: 115px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_115 {
    margin-right: 115px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_115 {
    margin-bottom: 115px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_115 {
    margin-left: 115px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_115 {
    margin-top: 115px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_115 {
    margin-right: 115px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_115 {
    margin-bottom: 115px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_115 {
    margin-left: 115px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_120 {
    margin-top: 120px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_120 {
    margin-right: 120px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_120 {
    margin-bottom: 120px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_120 {
    margin-left: 120px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_120 {
    margin-top: 120px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_120 {
    margin-right: 120px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_120 {
    margin-bottom: 120px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_120 {
    margin-left: 120px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_125 {
    margin-top: 125px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_125 {
    margin-right: 125px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_125 {
    margin-bottom: 125px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_125 {
    margin-left: 125px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_125 {
    margin-top: 125px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_125 {
    margin-right: 125px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_125 {
    margin-bottom: 125px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_125 {
    margin-left: 125px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_130 {
    margin-top: 130px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_130 {
    margin-right: 130px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_130 {
    margin-bottom: 130px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_130 {
    margin-left: 130px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_130 {
    margin-top: 130px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_130 {
    margin-right: 130px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_130 {
    margin-bottom: 130px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_130 {
    margin-left: 130px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_135 {
    margin-top: 135px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_135 {
    margin-right: 135px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_135 {
    margin-bottom: 135px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_135 {
    margin-left: 135px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_135 {
    margin-top: 135px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_135 {
    margin-right: 135px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_135 {
    margin-bottom: 135px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_135 {
    margin-left: 135px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_140 {
    margin-top: 140px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_140 {
    margin-right: 140px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_140 {
    margin-bottom: 140px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_140 {
    margin-left: 140px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_140 {
    margin-top: 140px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_140 {
    margin-right: 140px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_140 {
    margin-bottom: 140px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_140 {
    margin-left: 140px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_145 {
    margin-top: 145px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_145 {
    margin-right: 145px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_145 {
    margin-bottom: 145px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_145 {
    margin-left: 145px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_145 {
    margin-top: 145px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_145 {
    margin-right: 145px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_145 {
    margin-bottom: 145px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_145 {
    margin-left: 145px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_150 {
    margin-top: 150px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_150 {
    margin-right: 150px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_150 {
    margin-bottom: 150px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_150 {
    margin-left: 150px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_150 {
    margin-top: 150px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_150 {
    margin-right: 150px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_150 {
    margin-bottom: 150px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_150 {
    margin-left: 150px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_155 {
    margin-top: 155px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_155 {
    margin-right: 155px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_155 {
    margin-bottom: 155px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_155 {
    margin-left: 155px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_155 {
    margin-top: 155px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_155 {
    margin-right: 155px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_155 {
    margin-bottom: 155px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_155 {
    margin-left: 155px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_160 {
    margin-top: 160px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_160 {
    margin-right: 160px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_160 {
    margin-bottom: 160px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_160 {
    margin-left: 160px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_160 {
    margin-top: 160px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_160 {
    margin-right: 160px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_160 {
    margin-bottom: 160px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_160 {
    margin-left: 160px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_165 {
    margin-top: 165px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_165 {
    margin-right: 165px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_165 {
    margin-bottom: 165px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_165 {
    margin-left: 165px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_165 {
    margin-top: 165px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_165 {
    margin-right: 165px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_165 {
    margin-bottom: 165px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_165 {
    margin-left: 165px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_170 {
    margin-top: 170px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_170 {
    margin-right: 170px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_170 {
    margin-bottom: 170px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_170 {
    margin-left: 170px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_170 {
    margin-top: 170px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_170 {
    margin-right: 170px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_170 {
    margin-bottom: 170px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_170 {
    margin-left: 170px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_175 {
    margin-top: 175px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_175 {
    margin-right: 175px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_175 {
    margin-bottom: 175px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_175 {
    margin-left: 175px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_175 {
    margin-top: 175px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_175 {
    margin-right: 175px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_175 {
    margin-bottom: 175px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_175 {
    margin-left: 175px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_180 {
    margin-top: 180px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_180 {
    margin-right: 180px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_180 {
    margin-bottom: 180px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_180 {
    margin-left: 180px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_180 {
    margin-top: 180px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_180 {
    margin-right: 180px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_180 {
    margin-bottom: 180px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_180 {
    margin-left: 180px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_185 {
    margin-top: 185px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_185 {
    margin-right: 185px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_185 {
    margin-bottom: 185px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_185 {
    margin-left: 185px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_185 {
    margin-top: 185px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_185 {
    margin-right: 185px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_185 {
    margin-bottom: 185px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_185 {
    margin-left: 185px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_190 {
    margin-top: 190px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_190 {
    margin-right: 190px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_190 {
    margin-bottom: 190px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_190 {
    margin-left: 190px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_190 {
    margin-top: 190px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_190 {
    margin-right: 190px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_190 {
    margin-bottom: 190px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_190 {
    margin-left: 190px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_195 {
    margin-top: 195px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_195 {
    margin-right: 195px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_195 {
    margin-bottom: 195px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_195 {
    margin-left: 195px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_195 {
    margin-top: 195px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_195 {
    margin-right: 195px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_195 {
    margin-bottom: 195px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_195 {
    margin-left: 195px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_200 {
    margin-top: 200px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_200 {
    margin-right: 200px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_200 {
    margin-bottom: 200px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_200 {
    margin-left: 200px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_200 {
    margin-top: 200px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_200 {
    margin-right: 200px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_200 {
    margin-bottom: 200px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_200 {
    margin-left: 200px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_205 {
    margin-top: 205px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_205 {
    margin-right: 205px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_205 {
    margin-bottom: 205px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_205 {
    margin-left: 205px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_205 {
    margin-top: 205px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_205 {
    margin-right: 205px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_205 {
    margin-bottom: 205px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_205 {
    margin-left: 205px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_210 {
    margin-top: 210px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_210 {
    margin-right: 210px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_210 {
    margin-bottom: 210px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_210 {
    margin-left: 210px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_210 {
    margin-top: 210px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_210 {
    margin-right: 210px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_210 {
    margin-bottom: 210px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_210 {
    margin-left: 210px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_215 {
    margin-top: 215px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_215 {
    margin-right: 215px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_215 {
    margin-bottom: 215px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_215 {
    margin-left: 215px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_215 {
    margin-top: 215px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_215 {
    margin-right: 215px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_215 {
    margin-bottom: 215px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_215 {
    margin-left: 215px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_220 {
    margin-top: 220px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_220 {
    margin-right: 220px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_220 {
    margin-bottom: 220px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_220 {
    margin-left: 220px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_220 {
    margin-top: 220px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_220 {
    margin-right: 220px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_220 {
    margin-bottom: 220px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_220 {
    margin-left: 220px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_225 {
    margin-top: 225px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_225 {
    margin-right: 225px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_225 {
    margin-bottom: 225px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_225 {
    margin-left: 225px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_225 {
    margin-top: 225px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_225 {
    margin-right: 225px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_225 {
    margin-bottom: 225px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_225 {
    margin-left: 225px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_230 {
    margin-top: 230px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_230 {
    margin-right: 230px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_230 {
    margin-bottom: 230px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_230 {
    margin-left: 230px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_230 {
    margin-top: 230px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_230 {
    margin-right: 230px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_230 {
    margin-bottom: 230px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_230 {
    margin-left: 230px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_235 {
    margin-top: 235px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_235 {
    margin-right: 235px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_235 {
    margin-bottom: 235px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_235 {
    margin-left: 235px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_235 {
    margin-top: 235px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_235 {
    margin-right: 235px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_235 {
    margin-bottom: 235px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_235 {
    margin-left: 235px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_240 {
    margin-top: 240px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_240 {
    margin-right: 240px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_240 {
    margin-bottom: 240px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_240 {
    margin-left: 240px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_240 {
    margin-top: 240px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_240 {
    margin-right: 240px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_240 {
    margin-bottom: 240px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_240 {
    margin-left: 240px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_245 {
    margin-top: 245px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_245 {
    margin-right: 245px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_245 {
    margin-bottom: 245px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_245 {
    margin-left: 245px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_245 {
    margin-top: 245px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_245 {
    margin-right: 245px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_245 {
    margin-bottom: 245px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_245 {
    margin-left: 245px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_250 {
    margin-top: 250px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_250 {
    margin-right: 250px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_250 {
    margin-bottom: 250px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_250 {
    margin-left: 250px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_250 {
    margin-top: 250px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_250 {
    margin-right: 250px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_250 {
    margin-bottom: 250px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_250 {
    margin-left: 250px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_255 {
    margin-top: 255px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_255 {
    margin-right: 255px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_255 {
    margin-bottom: 255px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_255 {
    margin-left: 255px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_255 {
    margin-top: 255px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_255 {
    margin-right: 255px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_255 {
    margin-bottom: 255px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_255 {
    margin-left: 255px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_260 {
    margin-top: 260px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_260 {
    margin-right: 260px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_260 {
    margin-bottom: 260px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_260 {
    margin-left: 260px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_260 {
    margin-top: 260px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_260 {
    margin-right: 260px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_260 {
    margin-bottom: 260px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_260 {
    margin-left: 260px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_265 {
    margin-top: 265px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_265 {
    margin-right: 265px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_265 {
    margin-bottom: 265px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_265 {
    margin-left: 265px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_265 {
    margin-top: 265px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_265 {
    margin-right: 265px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_265 {
    margin-bottom: 265px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_265 {
    margin-left: 265px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_270 {
    margin-top: 270px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_270 {
    margin-right: 270px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_270 {
    margin-bottom: 270px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_270 {
    margin-left: 270px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_270 {
    margin-top: 270px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_270 {
    margin-right: 270px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_270 {
    margin-bottom: 270px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_270 {
    margin-left: 270px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_275 {
    margin-top: 275px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_275 {
    margin-right: 275px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_275 {
    margin-bottom: 275px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_275 {
    margin-left: 275px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_275 {
    margin-top: 275px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_275 {
    margin-right: 275px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_275 {
    margin-bottom: 275px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_275 {
    margin-left: 275px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_280 {
    margin-top: 280px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_280 {
    margin-right: 280px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_280 {
    margin-bottom: 280px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_280 {
    margin-left: 280px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_280 {
    margin-top: 280px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_280 {
    margin-right: 280px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_280 {
    margin-bottom: 280px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_280 {
    margin-left: 280px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_285 {
    margin-top: 285px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_285 {
    margin-right: 285px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_285 {
    margin-bottom: 285px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_285 {
    margin-left: 285px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_285 {
    margin-top: 285px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_285 {
    margin-right: 285px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_285 {
    margin-bottom: 285px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_285 {
    margin-left: 285px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_290 {
    margin-top: 290px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_290 {
    margin-right: 290px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_290 {
    margin-bottom: 290px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_290 {
    margin-left: 290px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_290 {
    margin-top: 290px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_290 {
    margin-right: 290px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_290 {
    margin-bottom: 290px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_290 {
    margin-left: 290px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_295 {
    margin-top: 295px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_295 {
    margin-right: 295px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_295 {
    margin-bottom: 295px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_295 {
    margin-left: 295px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_295 {
    margin-top: 295px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_295 {
    margin-right: 295px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_295 {
    margin-bottom: 295px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_295 {
    margin-left: 295px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_300 {
    margin-top: 300px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_300 {
    margin-right: 300px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_300 {
    margin-bottom: 300px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_300 {
    margin-left: 300px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_300 {
    margin-top: 300px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_300 {
    margin-right: 300px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_300 {
    margin-bottom: 300px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_300 {
    margin-left: 300px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_305 {
    margin-top: 305px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_305 {
    margin-right: 305px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_305 {
    margin-bottom: 305px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_305 {
    margin-left: 305px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_305 {
    margin-top: 305px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_305 {
    margin-right: 305px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_305 {
    margin-bottom: 305px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_305 {
    margin-left: 305px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_310 {
    margin-top: 310px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_310 {
    margin-right: 310px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_310 {
    margin-bottom: 310px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_310 {
    margin-left: 310px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_310 {
    margin-top: 310px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_310 {
    margin-right: 310px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_310 {
    margin-bottom: 310px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_310 {
    margin-left: 310px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_315 {
    margin-top: 315px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_315 {
    margin-right: 315px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_315 {
    margin-bottom: 315px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_315 {
    margin-left: 315px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_315 {
    margin-top: 315px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_315 {
    margin-right: 315px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_315 {
    margin-bottom: 315px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_315 {
    margin-left: 315px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_320 {
    margin-top: 320px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_320 {
    margin-right: 320px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_320 {
    margin-bottom: 320px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_320 {
    margin-left: 320px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_320 {
    margin-top: 320px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_320 {
    margin-right: 320px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_320 {
    margin-bottom: 320px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_320 {
    margin-left: 320px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_325 {
    margin-top: 325px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_325 {
    margin-right: 325px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_325 {
    margin-bottom: 325px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_325 {
    margin-left: 325px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_325 {
    margin-top: 325px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_325 {
    margin-right: 325px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_325 {
    margin-bottom: 325px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_325 {
    margin-left: 325px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_330 {
    margin-top: 330px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_330 {
    margin-right: 330px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_330 {
    margin-bottom: 330px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_330 {
    margin-left: 330px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_330 {
    margin-top: 330px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_330 {
    margin-right: 330px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_330 {
    margin-bottom: 330px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_330 {
    margin-left: 330px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_335 {
    margin-top: 335px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_335 {
    margin-right: 335px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_335 {
    margin-bottom: 335px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_335 {
    margin-left: 335px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_335 {
    margin-top: 335px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_335 {
    margin-right: 335px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_335 {
    margin-bottom: 335px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_335 {
    margin-left: 335px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_340 {
    margin-top: 340px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_340 {
    margin-right: 340px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_340 {
    margin-bottom: 340px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_340 {
    margin-left: 340px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_340 {
    margin-top: 340px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_340 {
    margin-right: 340px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_340 {
    margin-bottom: 340px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_340 {
    margin-left: 340px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_345 {
    margin-top: 345px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_345 {
    margin-right: 345px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_345 {
    margin-bottom: 345px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_345 {
    margin-left: 345px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_345 {
    margin-top: 345px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_345 {
    margin-right: 345px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_345 {
    margin-bottom: 345px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_345 {
    margin-left: 345px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_350 {
    margin-top: 350px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_350 {
    margin-right: 350px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_350 {
    margin-bottom: 350px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_350 {
    margin-left: 350px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_350 {
    margin-top: 350px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_350 {
    margin-right: 350px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_350 {
    margin-bottom: 350px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_350 {
    margin-left: 350px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_355 {
    margin-top: 355px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_355 {
    margin-right: 355px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_355 {
    margin-bottom: 355px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_355 {
    margin-left: 355px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_355 {
    margin-top: 355px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_355 {
    margin-right: 355px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_355 {
    margin-bottom: 355px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_355 {
    margin-left: 355px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_360 {
    margin-top: 360px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_360 {
    margin-right: 360px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_360 {
    margin-bottom: 360px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_360 {
    margin-left: 360px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_360 {
    margin-top: 360px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_360 {
    margin-right: 360px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_360 {
    margin-bottom: 360px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_360 {
    margin-left: 360px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_365 {
    margin-top: 365px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_365 {
    margin-right: 365px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_365 {
    margin-bottom: 365px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_365 {
    margin-left: 365px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_365 {
    margin-top: 365px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_365 {
    margin-right: 365px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_365 {
    margin-bottom: 365px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_365 {
    margin-left: 365px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_370 {
    margin-top: 370px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_370 {
    margin-right: 370px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_370 {
    margin-bottom: 370px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_370 {
    margin-left: 370px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_370 {
    margin-top: 370px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_370 {
    margin-right: 370px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_370 {
    margin-bottom: 370px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_370 {
    margin-left: 370px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_375 {
    margin-top: 375px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_375 {
    margin-right: 375px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_375 {
    margin-bottom: 375px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_375 {
    margin-left: 375px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_375 {
    margin-top: 375px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_375 {
    margin-right: 375px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_375 {
    margin-bottom: 375px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_375 {
    margin-left: 375px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_380 {
    margin-top: 380px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_380 {
    margin-right: 380px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_380 {
    margin-bottom: 380px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_380 {
    margin-left: 380px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_380 {
    margin-top: 380px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_380 {
    margin-right: 380px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_380 {
    margin-bottom: 380px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_380 {
    margin-left: 380px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_385 {
    margin-top: 385px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_385 {
    margin-right: 385px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_385 {
    margin-bottom: 385px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_385 {
    margin-left: 385px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_385 {
    margin-top: 385px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_385 {
    margin-right: 385px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_385 {
    margin-bottom: 385px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_385 {
    margin-left: 385px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_390 {
    margin-top: 390px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_390 {
    margin-right: 390px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_390 {
    margin-bottom: 390px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_390 {
    margin-left: 390px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_390 {
    margin-top: 390px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_390 {
    margin-right: 390px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_390 {
    margin-bottom: 390px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_390 {
    margin-left: 390px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_395 {
    margin-top: 395px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_395 {
    margin-right: 395px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_395 {
    margin-bottom: 395px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_395 {
    margin-left: 395px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_395 {
    margin-top: 395px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_395 {
    margin-right: 395px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_395 {
    margin-bottom: 395px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_395 {
    margin-left: 395px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_400 {
    margin-top: 400px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_400 {
    margin-right: 400px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_400 {
    margin-bottom: 400px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_400 {
    margin-left: 400px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_400 {
    margin-top: 400px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_400 {
    margin-right: 400px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_400 {
    margin-bottom: 400px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_400 {
    margin-left: 400px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_405 {
    margin-top: 405px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_405 {
    margin-right: 405px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_405 {
    margin-bottom: 405px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_405 {
    margin-left: 405px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_405 {
    margin-top: 405px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_405 {
    margin-right: 405px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_405 {
    margin-bottom: 405px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_405 {
    margin-left: 405px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_410 {
    margin-top: 410px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_410 {
    margin-right: 410px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_410 {
    margin-bottom: 410px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_410 {
    margin-left: 410px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_410 {
    margin-top: 410px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_410 {
    margin-right: 410px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_410 {
    margin-bottom: 410px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_410 {
    margin-left: 410px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_415 {
    margin-top: 415px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_415 {
    margin-right: 415px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_415 {
    margin-bottom: 415px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_415 {
    margin-left: 415px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_415 {
    margin-top: 415px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_415 {
    margin-right: 415px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_415 {
    margin-bottom: 415px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_415 {
    margin-left: 415px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_420 {
    margin-top: 420px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_420 {
    margin-right: 420px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_420 {
    margin-bottom: 420px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_420 {
    margin-left: 420px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_420 {
    margin-top: 420px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_420 {
    margin-right: 420px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_420 {
    margin-bottom: 420px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_420 {
    margin-left: 420px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_425 {
    margin-top: 425px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_425 {
    margin-right: 425px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_425 {
    margin-bottom: 425px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_425 {
    margin-left: 425px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_425 {
    margin-top: 425px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_425 {
    margin-right: 425px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_425 {
    margin-bottom: 425px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_425 {
    margin-left: 425px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_430 {
    margin-top: 430px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_430 {
    margin-right: 430px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_430 {
    margin-bottom: 430px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_430 {
    margin-left: 430px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_430 {
    margin-top: 430px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_430 {
    margin-right: 430px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_430 {
    margin-bottom: 430px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_430 {
    margin-left: 430px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_435 {
    margin-top: 435px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_435 {
    margin-right: 435px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_435 {
    margin-bottom: 435px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_435 {
    margin-left: 435px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_435 {
    margin-top: 435px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_435 {
    margin-right: 435px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_435 {
    margin-bottom: 435px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_435 {
    margin-left: 435px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_440 {
    margin-top: 440px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_440 {
    margin-right: 440px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_440 {
    margin-bottom: 440px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_440 {
    margin-left: 440px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_440 {
    margin-top: 440px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_440 {
    margin-right: 440px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_440 {
    margin-bottom: 440px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_440 {
    margin-left: 440px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_445 {
    margin-top: 445px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_445 {
    margin-right: 445px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_445 {
    margin-bottom: 445px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_445 {
    margin-left: 445px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_445 {
    margin-top: 445px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_445 {
    margin-right: 445px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_445 {
    margin-bottom: 445px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_445 {
    margin-left: 445px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_450 {
    margin-top: 450px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_450 {
    margin-right: 450px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_450 {
    margin-bottom: 450px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_450 {
    margin-left: 450px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_450 {
    margin-top: 450px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_450 {
    margin-right: 450px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_450 {
    margin-bottom: 450px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_450 {
    margin-left: 450px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_455 {
    margin-top: 455px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_455 {
    margin-right: 455px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_455 {
    margin-bottom: 455px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_455 {
    margin-left: 455px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_455 {
    margin-top: 455px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_455 {
    margin-right: 455px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_455 {
    margin-bottom: 455px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_455 {
    margin-left: 455px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_460 {
    margin-top: 460px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_460 {
    margin-right: 460px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_460 {
    margin-bottom: 460px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_460 {
    margin-left: 460px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_460 {
    margin-top: 460px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_460 {
    margin-right: 460px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_460 {
    margin-bottom: 460px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_460 {
    margin-left: 460px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_465 {
    margin-top: 465px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_465 {
    margin-right: 465px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_465 {
    margin-bottom: 465px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_465 {
    margin-left: 465px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_465 {
    margin-top: 465px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_465 {
    margin-right: 465px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_465 {
    margin-bottom: 465px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_465 {
    margin-left: 465px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_470 {
    margin-top: 470px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_470 {
    margin-right: 470px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_470 {
    margin-bottom: 470px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_470 {
    margin-left: 470px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_470 {
    margin-top: 470px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_470 {
    margin-right: 470px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_470 {
    margin-bottom: 470px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_470 {
    margin-left: 470px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_475 {
    margin-top: 475px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_475 {
    margin-right: 475px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_475 {
    margin-bottom: 475px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_475 {
    margin-left: 475px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_475 {
    margin-top: 475px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_475 {
    margin-right: 475px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_475 {
    margin-bottom: 475px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_475 {
    margin-left: 475px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_480 {
    margin-top: 480px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_480 {
    margin-right: 480px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_480 {
    margin-bottom: 480px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_480 {
    margin-left: 480px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_480 {
    margin-top: 480px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_480 {
    margin-right: 480px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_480 {
    margin-bottom: 480px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_480 {
    margin-left: 480px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_485 {
    margin-top: 485px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_485 {
    margin-right: 485px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_485 {
    margin-bottom: 485px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_485 {
    margin-left: 485px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_485 {
    margin-top: 485px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_485 {
    margin-right: 485px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_485 {
    margin-bottom: 485px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_485 {
    margin-left: 485px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_490 {
    margin-top: 490px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_490 {
    margin-right: 490px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_490 {
    margin-bottom: 490px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_490 {
    margin-left: 490px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_490 {
    margin-top: 490px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_490 {
    margin-right: 490px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_490 {
    margin-bottom: 490px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_490 {
    margin-left: 490px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_495 {
    margin-top: 495px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_495 {
    margin-right: 495px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_495 {
    margin-bottom: 495px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_495 {
    margin-left: 495px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_495 {
    margin-top: 495px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_495 {
    margin-right: 495px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_495 {
    margin-bottom: 495px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_495 {
    margin-left: 495px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top_500 {
    margin-top: 500px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right_500 {
    margin-right: 500px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom_500 {
    margin-bottom: 500px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left_500 {
    margin-left: 500px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top_500 {
    margin-top: 500px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right_500 {
    margin-right: 500px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom_500 {
    margin-bottom: 500px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left_500 {
    margin-left: 500px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_5 {
    padding-top: 5px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_5 {
    padding-right: 5px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_5 {
    padding-bottom: 5px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_5 {
    padding-left: 5px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_5 {
    padding-top: 5px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_5 {
    padding-right: 5px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_5 {
    padding-bottom: 5px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_5 {
    padding-left: 5px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_10 {
    padding-top: 10px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_10 {
    padding-right: 10px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_10 {
    padding-bottom: 10px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_10 {
    padding-left: 10px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_10 {
    padding-top: 10px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_10 {
    padding-right: 10px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_10 {
    padding-bottom: 10px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_10 {
    padding-left: 10px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_15 {
    padding-top: 15px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_15 {
    padding-right: 15px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_15 {
    padding-bottom: 15px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_15 {
    padding-left: 15px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_15 {
    padding-top: 15px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_15 {
    padding-right: 15px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_15 {
    padding-bottom: 15px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_15 {
    padding-left: 15px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_20 {
    padding-top: 20px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_20 {
    padding-right: 20px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_20 {
    padding-bottom: 20px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_20 {
    padding-left: 20px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_20 {
    padding-top: 20px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_20 {
    padding-right: 20px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_20 {
    padding-bottom: 20px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_20 {
    padding-left: 20px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_25 {
    padding-top: 25px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_25 {
    padding-right: 25px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_25 {
    padding-bottom: 25px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_25 {
    padding-left: 25px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_25 {
    padding-top: 25px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_25 {
    padding-right: 25px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_25 {
    padding-bottom: 25px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_25 {
    padding-left: 25px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_30 {
    padding-top: 30px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_30 {
    padding-right: 30px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_30 {
    padding-bottom: 30px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_30 {
    padding-left: 30px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_30 {
    padding-top: 30px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_30 {
    padding-right: 30px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_30 {
    padding-bottom: 30px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_30 {
    padding-left: 30px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_35 {
    padding-top: 35px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_35 {
    padding-right: 35px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_35 {
    padding-bottom: 35px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_35 {
    padding-left: 35px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_35 {
    padding-top: 35px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_35 {
    padding-right: 35px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_35 {
    padding-bottom: 35px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_35 {
    padding-left: 35px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_40 {
    padding-top: 40px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_40 {
    padding-right: 40px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_40 {
    padding-bottom: 40px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_40 {
    padding-left: 40px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_40 {
    padding-top: 40px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_40 {
    padding-right: 40px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_40 {
    padding-bottom: 40px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_40 {
    padding-left: 40px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_45 {
    padding-top: 45px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_45 {
    padding-right: 45px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_45 {
    padding-bottom: 45px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_45 {
    padding-left: 45px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_45 {
    padding-top: 45px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_45 {
    padding-right: 45px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_45 {
    padding-bottom: 45px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_45 {
    padding-left: 45px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_50 {
    padding-top: 50px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_50 {
    padding-right: 50px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_50 {
    padding-bottom: 50px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_50 {
    padding-left: 50px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_50 {
    padding-top: 50px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_50 {
    padding-right: 50px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_50 {
    padding-bottom: 50px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_50 {
    padding-left: 50px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_55 {
    padding-top: 55px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_55 {
    padding-right: 55px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_55 {
    padding-bottom: 55px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_55 {
    padding-left: 55px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_55 {
    padding-top: 55px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_55 {
    padding-right: 55px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_55 {
    padding-bottom: 55px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_55 {
    padding-left: 55px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_60 {
    padding-top: 60px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_60 {
    padding-right: 60px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_60 {
    padding-bottom: 60px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_60 {
    padding-left: 60px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_60 {
    padding-top: 60px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_60 {
    padding-right: 60px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_60 {
    padding-bottom: 60px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_60 {
    padding-left: 60px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_65 {
    padding-top: 65px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_65 {
    padding-right: 65px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_65 {
    padding-bottom: 65px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_65 {
    padding-left: 65px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_65 {
    padding-top: 65px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_65 {
    padding-right: 65px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_65 {
    padding-bottom: 65px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_65 {
    padding-left: 65px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_70 {
    padding-top: 70px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_70 {
    padding-right: 70px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_70 {
    padding-bottom: 70px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_70 {
    padding-left: 70px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_70 {
    padding-top: 70px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_70 {
    padding-right: 70px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_70 {
    padding-bottom: 70px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_70 {
    padding-left: 70px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_75 {
    padding-top: 75px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_75 {
    padding-right: 75px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_75 {
    padding-bottom: 75px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_75 {
    padding-left: 75px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_75 {
    padding-top: 75px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_75 {
    padding-right: 75px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_75 {
    padding-bottom: 75px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_75 {
    padding-left: 75px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_80 {
    padding-top: 80px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_80 {
    padding-right: 80px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_80 {
    padding-bottom: 80px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_80 {
    padding-left: 80px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_80 {
    padding-top: 80px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_80 {
    padding-right: 80px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_80 {
    padding-bottom: 80px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_80 {
    padding-left: 80px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_85 {
    padding-top: 85px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_85 {
    padding-right: 85px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_85 {
    padding-bottom: 85px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_85 {
    padding-left: 85px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_85 {
    padding-top: 85px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_85 {
    padding-right: 85px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_85 {
    padding-bottom: 85px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_85 {
    padding-left: 85px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_90 {
    padding-top: 90px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_90 {
    padding-right: 90px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_90 {
    padding-bottom: 90px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_90 {
    padding-left: 90px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_90 {
    padding-top: 90px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_90 {
    padding-right: 90px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_90 {
    padding-bottom: 90px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_90 {
    padding-left: 90px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_95 {
    padding-top: 95px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_95 {
    padding-right: 95px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_95 {
    padding-bottom: 95px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_95 {
    padding-left: 95px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_95 {
    padding-top: 95px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_95 {
    padding-right: 95px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_95 {
    padding-bottom: 95px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_95 {
    padding-left: 95px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_100 {
    padding-top: 100px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_100 {
    padding-right: 100px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_100 {
    padding-bottom: 100px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_100 {
    padding-left: 100px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_100 {
    padding-top: 100px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_100 {
    padding-right: 100px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_100 {
    padding-bottom: 100px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_100 {
    padding-left: 100px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_105 {
    padding-top: 105px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_105 {
    padding-right: 105px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_105 {
    padding-bottom: 105px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_105 {
    padding-left: 105px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_105 {
    padding-top: 105px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_105 {
    padding-right: 105px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_105 {
    padding-bottom: 105px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_105 {
    padding-left: 105px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_110 {
    padding-top: 110px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_110 {
    padding-right: 110px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_110 {
    padding-bottom: 110px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_110 {
    padding-left: 110px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_110 {
    padding-top: 110px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_110 {
    padding-right: 110px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_110 {
    padding-bottom: 110px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_110 {
    padding-left: 110px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_115 {
    padding-top: 115px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_115 {
    padding-right: 115px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_115 {
    padding-bottom: 115px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_115 {
    padding-left: 115px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_115 {
    padding-top: 115px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_115 {
    padding-right: 115px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_115 {
    padding-bottom: 115px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_115 {
    padding-left: 115px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_120 {
    padding-top: 120px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_120 {
    padding-right: 120px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_120 {
    padding-bottom: 120px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_120 {
    padding-left: 120px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_120 {
    padding-top: 120px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_120 {
    padding-right: 120px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_120 {
    padding-bottom: 120px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_120 {
    padding-left: 120px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_125 {
    padding-top: 125px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_125 {
    padding-right: 125px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_125 {
    padding-bottom: 125px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_125 {
    padding-left: 125px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_125 {
    padding-top: 125px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_125 {
    padding-right: 125px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_125 {
    padding-bottom: 125px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_125 {
    padding-left: 125px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_130 {
    padding-top: 130px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_130 {
    padding-right: 130px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_130 {
    padding-bottom: 130px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_130 {
    padding-left: 130px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_130 {
    padding-top: 130px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_130 {
    padding-right: 130px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_130 {
    padding-bottom: 130px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_130 {
    padding-left: 130px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_135 {
    padding-top: 135px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_135 {
    padding-right: 135px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_135 {
    padding-bottom: 135px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_135 {
    padding-left: 135px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_135 {
    padding-top: 135px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_135 {
    padding-right: 135px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_135 {
    padding-bottom: 135px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_135 {
    padding-left: 135px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_140 {
    padding-top: 140px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_140 {
    padding-right: 140px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_140 {
    padding-bottom: 140px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_140 {
    padding-left: 140px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_140 {
    padding-top: 140px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_140 {
    padding-right: 140px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_140 {
    padding-bottom: 140px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_140 {
    padding-left: 140px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_145 {
    padding-top: 145px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_145 {
    padding-right: 145px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_145 {
    padding-bottom: 145px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_145 {
    padding-left: 145px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_145 {
    padding-top: 145px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_145 {
    padding-right: 145px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_145 {
    padding-bottom: 145px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_145 {
    padding-left: 145px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_150 {
    padding-top: 150px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_150 {
    padding-right: 150px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_150 {
    padding-bottom: 150px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_150 {
    padding-left: 150px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_150 {
    padding-top: 150px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_150 {
    padding-right: 150px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_150 {
    padding-bottom: 150px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_150 {
    padding-left: 150px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_155 {
    padding-top: 155px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_155 {
    padding-right: 155px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_155 {
    padding-bottom: 155px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_155 {
    padding-left: 155px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_155 {
    padding-top: 155px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_155 {
    padding-right: 155px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_155 {
    padding-bottom: 155px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_155 {
    padding-left: 155px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_160 {
    padding-top: 160px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_160 {
    padding-right: 160px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_160 {
    padding-bottom: 160px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_160 {
    padding-left: 160px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_160 {
    padding-top: 160px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_160 {
    padding-right: 160px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_160 {
    padding-bottom: 160px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_160 {
    padding-left: 160px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_165 {
    padding-top: 165px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_165 {
    padding-right: 165px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_165 {
    padding-bottom: 165px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_165 {
    padding-left: 165px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_165 {
    padding-top: 165px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_165 {
    padding-right: 165px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_165 {
    padding-bottom: 165px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_165 {
    padding-left: 165px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_170 {
    padding-top: 170px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_170 {
    padding-right: 170px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_170 {
    padding-bottom: 170px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_170 {
    padding-left: 170px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_170 {
    padding-top: 170px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_170 {
    padding-right: 170px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_170 {
    padding-bottom: 170px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_170 {
    padding-left: 170px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_175 {
    padding-top: 175px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_175 {
    padding-right: 175px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_175 {
    padding-bottom: 175px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_175 {
    padding-left: 175px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_175 {
    padding-top: 175px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_175 {
    padding-right: 175px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_175 {
    padding-bottom: 175px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_175 {
    padding-left: 175px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_180 {
    padding-top: 180px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_180 {
    padding-right: 180px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_180 {
    padding-bottom: 180px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_180 {
    padding-left: 180px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_180 {
    padding-top: 180px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_180 {
    padding-right: 180px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_180 {
    padding-bottom: 180px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_180 {
    padding-left: 180px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_185 {
    padding-top: 185px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_185 {
    padding-right: 185px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_185 {
    padding-bottom: 185px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_185 {
    padding-left: 185px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_185 {
    padding-top: 185px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_185 {
    padding-right: 185px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_185 {
    padding-bottom: 185px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_185 {
    padding-left: 185px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_190 {
    padding-top: 190px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_190 {
    padding-right: 190px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_190 {
    padding-bottom: 190px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_190 {
    padding-left: 190px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_190 {
    padding-top: 190px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_190 {
    padding-right: 190px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_190 {
    padding-bottom: 190px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_190 {
    padding-left: 190px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_195 {
    padding-top: 195px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_195 {
    padding-right: 195px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_195 {
    padding-bottom: 195px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_195 {
    padding-left: 195px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_195 {
    padding-top: 195px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_195 {
    padding-right: 195px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_195 {
    padding-bottom: 195px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_195 {
    padding-left: 195px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_200 {
    padding-top: 200px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_200 {
    padding-right: 200px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_200 {
    padding-bottom: 200px !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_200 {
    padding-left: 200px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_200 {
    padding-top: 200px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_200 {
    padding-right: 200px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_200 {
    padding-bottom: 200px !important;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_200 {
    padding-left: 200px !important;
  }
}

.u-text_red {
  color: var(--color-red);
}

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

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

.u-uppercase {
  text-transform: uppercase;
}