@charset "UTF-8";
@keyframes blink {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink02 {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
.js-inview:not(.p-topMainVisual, .js-inviewLiner) {
  opacity: 0;
  transition: 1s;
  transform: translateY(30px);
}

.js-inview.-inview:not(.p-topMainVisual, .js-inviewLiner) {
  opacity: 1;
  transition: 1s;
  transform: translateY(0);
}

/*
.p-topMainVisual.js-inview,
*/
.c-mainVisual.js-inview {
  filter: blur(30px);
  opacity: 0;
  transition: 1s;
  transform: translateY(0);
}

/*
.p-topMainVisual.js-inview.-inview.js-imageloaded,
*/
.c-mainVisual.js-inview.-inview.js-imageloaded {
  filter: blur(0);
  opacity: 1;
  transition: 1s;
  transform: translateY(0);
}

.js-inview.js-inviewLiner {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.js-inview.js-inviewLiner.-inview {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}

.p-topMainVisual::after,
.p-topMainVisual .mainVisual__image01 {
  opacity: 0;
  transition: 1s;
}
.p-topMainVisual .mainVisual__image02 {
  opacity: 0;
  transition: 1s;
}
.p-topMainVisual .p-topMainVisual__lead {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition-delay: 1s;
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.p-topMainVisual .c-buttonWrap {
  opacity: 0;
  transition: 1s;
  transform: translateY(30px);
}
.p-topMainVisual.-inview::after {
  opacity: 1;
  transition: 1.4s;
  transition-delay: 0.2s;
}
.p-topMainVisual.-inview .mainVisual__image01 {
  opacity: 1;
  transition: 1.4s;
  transition-delay: 0.5s;
}
.p-topMainVisual.-inview .mainVisual__image02 {
  opacity: 1;
  transition: 1.4s;
  transition-delay: 0.8s;
}
.p-topMainVisual.-inview .p-topMainVisual__lead {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
  transition-delay: 1.2s;
}
.p-topMainVisual.-inview .c-buttonWrap {
  opacity: 1;
  transition: 1s;
  transition-delay: 1.5s;
  transform: translateY(0);
}

:root {
  --kiosk-navy: #1e3356;
  --kiosk-light-blue: #4793b4;
  --kiosk-ultra-light-blue: #e8f6fd;
  --kiosk-light-gray: #f3f3f3;
  --kiosk-ultra-light-gray: #f5f5f5;
  --kiosk-pink: #e7849b;
  --kiosk-winered: #933a4f;
  --kiosk-base-text: #666;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: var(--kiosk-base-text);
  letter-spacing: 0.025em;
  -webkit-font-smoothing: antialiased;
}

* {
  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 (min-width: 768px) {
  a:hover {
    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] {
  display: none !important;
}

[disabled] {
  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 {
  -webkit-appearance: none;
     -moz-appearance: none;
          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-loading {
  z-index: calc(var(--zindex-header) + 1);
}

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

.c-cta {
  z-index: calc(var(--zindex-header) - 1);
}

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

.p-topMainVisual {
  z-index: calc(var(--zindex-header) - 8);
}

:not(.c-boxDesc) > .c-box__wrap {
  padding: 22px 16px;
}
@media (min-width: 768px) {
  :not(.c-boxDesc) > .c-box__wrap {
    padding: 18px 22px;
  }
}
.c-box__wrap._col {
  padding: 0;
}
@media (min-width: 768px) {
  .c-box__wrap._col {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .c-box__wrap._col > [class^=c-box] {
    flex-basis: calc((100% - 25px) / 2);
    width: calc((100% - 25px) / 2);
    max-width: calc((100% - 25px) / 2);
  }
}
@media not all and (min-width: 768px) {
  .c-box__wrap._col > [class^=c-box]:nth-of-type(n + 2) {
    margin-top: 15px;
  }
}
@media (min-width: 768px) {
  .c-box__wrap._col > [class^=c-box]:nth-of-type(n + 3) {
    margin-top: 24px;
  }
}
.c-box__wrap._col3:not(:root) {
  padding: 0;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .c-box__wrap._col3:not(:root) {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 90px;
  }
}
@media (min-width: 768px) {
  .c-box__wrap._col3:not(:root) > [class^=c-box] {
    flex-basis: calc((100% - 90px) / 3);
    width: calc((100% - 90px) / 3);
    max-width: calc((100% - 90px) / 3);
  }
}
@media not all and (min-width: 768px) {
  .c-box__wrap._col3:not(:root) > [class^=c-box]:nth-of-type(n + 2) {
    margin-top: 25px;
  }
}
@media (min-width: 768px) {
  .c-box__wrap._col3:not(:root) > [class^=c-box]:nth-of-type(n + 4) {
    margin-top: 35px;
  }
}
@media (min-width: 768px) {
  .c-box__wrap._col3:not(:root) > [class^=c-box]:nth-of-type(3n + 2) {
    margin-right: 45px;
    margin-left: 45px;
  }
}
@media (min-width: 768px) {
  .c-box__wrap._row {
    display: flex;
  }
}
.c-box__wrap._row + .c-box__wrap._row {
  margin-top: 27px;
}
@media (min-width: 768px) {
  .c-box__wrap._row + .c-box__wrap._row {
    margin-top: 8px;
  }
}
@media (min-width: 768px) {
  .c-box__wrap._row .c-boxDesc__title {
    flex-basis: 176px;
    width: 176px;
    max-width: 176px;
  }
}
@media (min-width: 768px) {
  .c-box__wrap._row .c-boxDesc__body {
    flex-basis: calc(100% - 176px);
    width: calc(100% - 176px);
    max-width: calc(100% - 176px);
    padding-left: 8px;
  }
}

.c-boxBgGray {
  padding: 42px 25px;
  margin-top: 18px;
  background: var(--kiosk-ultra-light-gray);
}
@media (min-width: 768px) {
  .c-boxBgGray {
    padding: 25px 27px;
    margin-top: 25px;
  }
}
.c-boxBgGray > p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6071428571;
  letter-spacing: 0.01em;
}
@media (min-width: 768px) {
  .c-boxBgGray > p {
    line-height: 2;
    letter-spacing: 0.02em;
  }
}
.c-boxBgGray > p + p {
  margin-top: 1.7em;
}

.c-boxBgGreen {
  padding: 22px 16px;
  background: #e8f8ff;
}
@media (min-width: 768px) {
  .c-boxBgGreen {
    padding: 18px 22px;
  }
}
.c-box__wrap:not(._col) .c-boxBgGreen {
  margin-top: 35px;
}
@media (min-width: 768px) {
  .c-box__wrap:not(._col) .c-boxBgGreen {
    margin-top: 50px;
  }
}
.c-box__wrap:not(._col) .c-boxBgGreen + .c-boxBgGreen {
  margin-top: 30px;
}

.c-boxBorder {
  background: #fff;
  border: 1px solid #ccc;
}
.c-boxBorder._narrow {
  padding: 15px 14px;
}
@media (min-width: 768px) {
  .c-boxBorder._narrow {
    padding: 15px 16px;
  }
}
.c-boxBorder > p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6071428571;
  letter-spacing: 0.01em;
}
@media (min-width: 768px) {
  .c-boxBorder > p {
    line-height: 2;
    letter-spacing: 0.02em;
  }
}
.c-boxBorder > p + p {
  margin-top: 1.7em;
}

.c-boxDot {
  border: 1px dashed #666;
}
.c-boxDot .c-box__wrap {
  padding: 22px 16px;
}
@media (min-width: 768px) {
  .c-boxDot .c-box__wrap {
    padding: 10px 18px;
  }
}
.c-boxDot p {
  letter-spacing: 0.01em;
}
@media (min-width: 768px) {
  .c-boxDot p {
    letter-spacing: 0.02em;
  }
}
.c-boxDot p + p {
  margin-top: 0.5em;
}

.c-boxDesc + .c-boxDesc {
  margin-top: 35px;
}
@media (min-width: 768px) {
  .c-boxDesc + .c-boxDesc {
    margin-top: 32px;
  }
}
@media (min-width: 768px) {
  .c-box__wrap._col .c-boxDesc + .c-boxDesc {
    margin-top: 0;
  }
}

.c-boxDesc .c-boxDesc__title {
  letter-spacing: 0.01em;
}
@media not all and (min-width: 768px) {
  .c-boxDesc .c-boxDesc__title {
    margin-bottom: 3px;
  }
}
@media (min-width: 768px) {
  .c-boxDesc .c-boxDesc__title {
    margin-bottom: 10px;
    letter-spacing: 0.02em;
  }
}
.c-box__wrap:not(._row) {
  line-height: 1.4375;
}
@media (min-width: 768px) {
  .c-box__wrap:not(._row) {
    margin-bottom: 10px;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.2777777778;
  }
}

.c-boxDesc .c-boxDesc__title._brown {
  color: #a25a1a;
}
.c-boxDesc .c-boxDesc__title._green {
  color: #197434;
}
.c-boxDesc .c-boxDesc__body p {
  line-height: 2;
  letter-spacing: 0.01em;
}
@media (min-width: 768px) {
  .c-boxDesc .c-boxDesc__body p {
    letter-spacing: 0.02em;
  }
}
.c-boxDesc .c-boxDesc__body p + p {
  margin-top: 0.5em;
}

.c-box__movie a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
}
@media (min-width: 768px) {
  .c-box__movie a {
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  .c-box__movie a img {
    transition: transform 0.5s ease-in-out;
  }
}
@media (min-width: 768px) and (any-hover: hover) {
  .c-box__movie a:hover img {
    transform: scale(1.05);
  }
}
.c-box__movie a::after {
  position: absolute;
  display: block;
  width: 58px;
  height: 41px;
  content: "";
  background: url("../img/common/btn_play.png") no-repeat 0 0;
  background-size: 58px auto;
}
.c-box__movie .c-box__movieImage {
  width: 100%;
  height: auto;
}
.c-box__movie .c-box__movieTitle {
  margin-top: 15px;
  text-align: center;
}

@media (min-width: 768px) {
  .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 {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  padding: 10px 56px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1.92px;
  background: var(--kiosk-light-blue) url("../img/common/arrow_btn.svg") no-repeat calc(100% - 18px) 50%;
  background-size: 37px auto;
  border: none;
  border-radius: 58px;
}
@media (min-width: 768px) {
  .c-button {
    max-width: 278px;
    cursor: pointer;
    transition: background-color 0.5s ease-in-out;
  }
}
.c-button:visited {
  color: #fff;
}
.c-button._center {
  margin-right: auto;
  margin-left: auto;
}
@media not all and (min-width: 768px) {
  .c-button + .c-button {
    margin-top: 10.1781170483vw;
  }
}
@media (min-width: 768px) {
  .c-button + .c-button {
    margin-left: 43px;
  }
}
@media (min-width: 768px) {
  .c-button._lage {
    max-width: 405px;
    min-height: 85px;
    padding: 10px 66px;
  }
}
.c-button._contact {
  background-color: var(--kiosk-pink);
}
@media (any-hover: hover) {
  .c-button:hover {
    background-color: var(--kiosk-navy);
  }
}
.c-button[target=_blank] {
  background-image: none;
}
.c-button[target=_blank] span {
  display: inline-flex;
  align-items: center;
}
.c-button[target=_blank] span::after {
  display: inline-block;
  width: 21px;
  height: 21px;
  margin-left: 10px;
  content: "";
  background-image: url("../img/common/icon_window.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 21px auto;
}
.c-button._navy {
  background-color: var(--kiosk-navy);
}
@media (any-hover: hover) {
  .c-button._navy:hover {
    background-color: var(--kiosk-light-blue);
  }
}

button.c-button {
  background-color: var(--kiosk-winered);
}

@media not all and (min-width: 768px) {
  .c-caseWrap .c-buttonWrap {
    padding-right: 6.6157760814vw;
    padding-left: 6.6157760814vw;
  }
}
.p-case + .c-caseWrap {
  padding-bottom: 15.2671755725vw;
}
@media (min-width: 768px) {
  .p-case + .c-caseWrap {
    padding-bottom: 116px;
  }
}

@media not all and (min-width: 768px) {
  .c-case {
    padding-right: 9.1603053435vw;
    padding-left: 9.1603053435vw;
  }
}
@media (min-width: 768px) {
  .c-case {
    padding-right: 18px;
    padding-left: 18px;
  }
}
.c-case:not(.u-bgLightBlue, .u-bgGray) {
  padding-top: 20.3562340967vw;
  margin-bottom: 25.4452926209vw;
}
@media (min-width: 768px) {
  .c-case:not(.u-bgLightBlue, .u-bgGray) {
    padding-top: 80px;
    margin-bottom: 107px;
  }
}
.c-case.u-bgLightBlue {
  padding-top: 20.3562340967vw;
  padding-bottom: 19.0839694656vw;
  margin-bottom: 10.941475827vw;
}
@media (min-width: 768px) {
  .c-case.u-bgLightBlue {
    padding-top: 80px;
    padding-bottom: 122px;
    margin-bottom: 107px;
  }
}
.c-case.u-bgGray {
  padding-top: 16.2849872774vw;
  padding-bottom: 14.2493638677vw;
  margin-bottom: 13.4860050891vw;
}
@media (min-width: 768px) {
  .c-case.u-bgGray {
    padding-top: 64px;
    padding-bottom: 83px;
    margin-bottom: 80px;
  }
}
.c-case .c-case__heading {
  margin-bottom: 54px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 31px;
  color: var(--kiosk-navy);
  text-align: center;
  letter-spacing: 2px;
}
@media (min-width: 768px) {
  .c-case .c-case__heading {
    margin-bottom: 59px;
  }
}
@media (min-width: 768px) {
  .c-case .c-case__list {
    display: grid;
    grid-template-columns: repeat(3, 26.6611295681%);
    gap: 9.9667774086%;
  }
}
@media not all and (min-width: 768px) {
  .c-case .c-case__item + .c-case__item {
    margin-top: 39px;
  }
}
.c-case .c-case__itemInner {
  display: flex;
  flex-direction: column-reverse;
  text-decoration: none;
}
@media (min-width: 768px) {
  .c-case .c-case__itemInner {
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  .c-case .c-case__itemInner img {
    transition: transform 0.5s ease-in-out;
  }
}
@media (min-width: 768px) and (any-hover: hover) {
  .c-case .c-case__itemInner:hover img {
    transform: scale(1.05);
  }
}
.c-case .c-case__body {
  margin-top: 19px;
}
@media not all and (min-width: 768px) {
  .c-case .c-case__body {
    text-align: center;
  }
}
.c-case .c-case__name {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 19.5px;
  color: var(--kiosk-light-blue);
  letter-spacing: 1.8px;
}
.c-case .c-case__year {
  font-weight: 500;
  line-height: 240%;
  letter-spacing: 1.92px;
}
.c-case .c-case__image {
  display: block;
  aspect-ratio: 321/235;
  overflow: hidden;
  border-radius: 12px;
}
.c-case .c-case__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
}
@media not all and (min-width: 768px) {
  .c-case + .c-buttonWrap .c-button {
    min-height: 21.6284987277vw;
  }
}

.c-cta {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 1.7811704835vw;
}
@media not all and (min-width: 768px) {
  .c-cta {
    margin-right: 4.0712468193vw;
    margin-left: 4.0712468193vw;
  }
}
@media (min-width: 768px) {
  .c-cta {
    margin-right: 20px;
    margin-left: 20px;
    border-radius: 14px;
  }
}
@media (min-width: 1024px) {
  .c-cta {
    max-width: 980px;
    margin-right: auto;
    margin-left: auto;
  }
}
.c-cta .c-cta__inner {
  display: block;
  aspect-ratio: 362/222;
  padding-top: 2.2900763359vw;
  text-decoration: none;
  background: url("../img/top/top_cta_bg_sp.jpg") no-repeat 50% 50%;
  background-size: cover;
}
@media (min-width: 1024px) {
  .c-cta .c-cta__inner {
    aspect-ratio: 980/275;
    padding-top: 15px;
    background: url("../img/top/top_cta_bg_pc.jpg") no-repeat 50% 50%;
    background-size: cover;
  }
}
@media (any-hover: hover) {
  .c-cta .c-cta__inner {
    transition: opacity 0.5s ease-in-out;
  }
  .c-cta .c-cta__inner:hover {
    opacity: 0.7;
  }
}
.c-cta .c-cta__heading {
  font-size: 9.6px;
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 350%;
  color: #fff;
  text-align: center;
  letter-spacing: 1.938px;
}
@media (min-width: 768px) {
  .c-cta .c-cta__heading {
    font-size: 20px;
    font-size: 1.25rem;
    letter-spacing: 4px;
  }
}
.c-cta .c-cta__text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 157.088%;
  color: #fff;
  text-align: center;
  letter-spacing: 4px;
  word-break: keep-all;
}
@media (min-width: 768px) {
  .c-cta .c-cta__text {
    margin-top: 68px;
    font-size: 32px;
    font-size: 2rem;
    line-height: 218.75%;
    letter-spacing: 6.4px;
  }
}

.c-desc .c-desc__item {
  padding-top: 4.5801526718vw;
  padding-bottom: 5.0890585242vw;
  line-height: 180%;
  letter-spacing: 1.92px;
  border-bottom: 1px solid #ccc;
}
@media (min-width: 768px) {
  .c-desc .c-desc__item {
    display: grid;
    grid-template-columns: 14.4761904762% 1fr;
    gap: 10px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.c-desc .c-desc__title {
  padding-left: 6px;
  font-weight: 700;
}
@media not all and (min-width: 768px) {
  .c-desc .c-desc__title {
    padding-bottom: 5px;
  }
}
.c-desc .c-desc__body {
  font-weight: 500;
}
.c-desc .c-desc__desc .c-desc__descItem + .c-desc__descItem {
  margin-top: 5.5979643766vw;
}
@media (min-width: 768px) {
  .c-desc .c-desc__desc .c-desc__descItem + .c-desc__descItem {
    margin-top: 16px;
  }
}
.c-desc .c-desc__desc .c-desc__descItem > dt {
  font-weight: 700;
}

.c-faq {
  padding: 20.3562340967vw 6.6157760814vw 16.7938931298vw;
}
@media (min-width: 768px) {
  .c-faq {
    padding: 90px 0;
  }
}
@media (min-width: 768px) {
  .c-faq .c-faq__inner {
    width: 100%;
    max-width: 1280px;
    padding-right: 20px;
    padding-left: 20px;
    margin: 0 auto;
  }
}
.c-faq .c-faq__item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 11px 5px rgba(0, 0, 0, 0.1);
}
.c-faq .c-faq__item + .c-faq__item {
  margin-top: 6.106870229vw;
}
@media (min-width: 768px) {
  .c-faq .c-faq__item + .c-faq__item {
    margin-top: 30px;
  }
}
.c-faq .c-faq__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 5.0890585242vw 17.3027989822vw 4.834605598vw 3.3078880407vw;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3333333333;
  color: var(--kiosk-navy);
  text-align: left;
  letter-spacing: 0.025em;
}
@media (min-width: 768px) {
  .c-faq .c-faq__btn {
    padding: 32px 94px 33px 52px;
    transition: color 0.3s ease;
  }
  .c-faq .c-faq__btn:hover {
    color: var(--kiosk-light-blue);
  }
  .c-faq .c-faq__btn:hover::before {
    color: var(--kiosk-light-blue);
  }
  .c-faq .c-faq__btn:hover span {
    background-image: url("../img/icon_arrow_white.svg");
  }
}
.c-faq .c-faq__btn::before {
  display: inline-block;
  align-self: flex-start;
  margin-right: 12px;
  font-family: Lato, sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--kiosk-navy);
  letter-spacing: 2.8px;
  content: "Q.";
  transition: color 0.3s ease;
}
.c-faq .c-faq__btn span {
  position: absolute;
  right: 20px;
  display: block;
  width: 28px;
  height: 28px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .c-faq .c-faq__btn span {
    right: 40px;
  }
}
.c-faq .c-faq__btn span::before, .c-faq .c-faq__btn span::after {
  position: absolute;
  display: block;
  content: "";
  background: var(--kiosk-navy);
}
.c-faq .c-faq__btn span::before {
  top: 50%;
  width: 100%;
  height: 1px;
}
.c-faq .c-faq__btn span::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  transition: transform 0.3s ease;
  transform-origin: center;
}
.c-faq .c-faq__item._open .c-faq__btn span::after {
  transform: rotate(90deg);
  transform-origin: left;
}

.c-faq .c-faq__btn span i {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  border: 0;
}
.c-faq .c-faq__body {
  overflow: hidden;
  transition: height 0.3s ease;
}
.c-faq .c-faq__item:not(._open) .c-faq__body {
  display: none;
}

.c-faq .c-faq__bodyInner {
  padding: 1.0178117048vw 4.0712468193vw 10.1781170483vw;
}
@media (min-width: 768px) {
  .c-faq .c-faq__bodyInner {
    padding: 23px 52px 40px;
  }
}
.c-faq .c-faq__bodyInner .answer {
  display: flex;
  align-items: flex-start;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.92px;
}
.c-faq .c-faq__bodyInner .answer::before {
  display: inline-block;
  flex-shrink: 0;
  margin-right: 12px;
  font-family: Lato, sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  font-weight: 700;
  color: var(--kiosk-light-blue);
  content: "A.";
}
@media (min-width: 768px) {
  .c-faq .c-faq__bodyInner .answer::before {
    margin-top: -0.1em;
    margin-right: 20px;
  }
}
.c-faq .c-faq__bodyInner .answer p em {
  font-style: normal;
  font-weight: 700;
}

.c-form .error {
  padding-top: 5px;
  font-weight: bold;
  color: #f00;
}
.c-form .c-form__lead {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
}
.c-form .c-form__lead + dl {
  margin-top: 40px;
}
.c-form + .c-buttonWrap {
  margin-top: 46px;
}
.c-form .c-form__err {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  color: #d00404;
}
.c-form .c-form__err + dl {
  margin-top: 20px;
}
.c-form .c-form__item {
  padding-top: 6.8702290076vw;
  padding-bottom: 7.3791348601vw;
  border-bottom: 1px solid #ccc;
}
@media (min-width: 768px) {
  .c-form .c-form__item {
    display: grid;
    grid-template-columns: 264px 1fr;
    padding-top: 25px;
    padding-bottom: 21px;
  }
}
.c-form .c-form__item .c-form__err {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}
.c-form .c-form__item dt {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 1.92px;
}
@media not all and (min-width: 768px) {
  .c-form .c-form__item dt {
    margin-bottom: 7px;
  }
}
@media (min-width: 768px) {
  .c-form .c-form__item dt {
    padding-top: 10px;
    padding-left: 7px;
  }
}
.c-form .c-form__item dd label {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 200%;
  color: var(--kiosk-base-text, #666);
  letter-spacing: 1.92px;
}
@media (min-width: 768px) {
  .c-form .c-form__item dd label {
    display: inline-block;
    margin-right: 16px;
  }
}
@media not all and (min-width: 768px) {
  .c-form .c-form__item dd label + label {
    margin-top: 17px;
  }
}
@media (any-hover: hover) {
  .c-form .c-form__item dd label {
    transition: opacity 0.5s ease-in-out;
  }
  .c-form .c-form__item dd label:hover {
    opacity: 0.7;
  }
}
.c-form .c-form__item dd > p {
  padding-top: 8px;
}
.c-form .c-buttonWrap {
  margin-top: 13.9949109415vw;
}
@media not all and (min-width: 768px) {
  .c-form .c-buttonWrap {
    padding-right: 7.6335877863vw;
    padding-left: 7.6335877863vw;
  }
}
@media (min-width: 768px) {
  .c-form .c-buttonWrap {
    margin-top: 53px;
  }
}
.c-form .c-form__agree {
  margin-top: 7.1246819338vw;
}
@media (min-width: 768px) {
  .c-form .c-form__agree {
    margin-top: 42px;
    text-align: center;
  }
}
.c-form .c-form__agree input {
  margin-right: 8px;
}

.c-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 13px;
  margin-left: 14px;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  letter-spacing: 1.44px;
  background: var(--kiosk-pink);
  border-radius: 35px;
}

.c-hamburger {
  position: absolute;
  top: calc(50% - 32px);
  right: 3.8167938931vw;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--kiosk-light-blue);
  filter: drop-shadow(0 0 8px rgba(211, 211, 211, 0.25));
  border: none;
  border-radius: 50%;
}
.c-hamburger .c-hamburger__line {
  position: relative;
  display: block;
  width: 26px;
  height: 1px;
  background-color: #fff;
  transition: color 0.3s ease-in-out;
}
.c-hamburger .c-hamburger__line::before, .c-hamburger .c-hamburger__line::after {
  position: absolute;
  left: 0;
  display: block;
  width: 26px;
  height: 1px;
  content: "";
  background-color: #fff;
  transition: background-color 0.3s ease-in-out;
}
.c-hamburger .c-hamburger__line::before {
  top: -8px;
}
.c-hamburger .c-hamburger__line::after {
  bottom: -8px;
}
.l-header__navigation._open + .c-hamburger .c-hamburger__line {
  background: none;
}
.l-header__navigation._open + .c-hamburger .c-hamburger__line::before, .l-header__navigation._open + .c-hamburger .c-hamburger__line::after {
  background-color: #fff;
}
.l-header__navigation._open + .c-hamburger .c-hamburger__line::before {
  transform: translateY(8px) rotateZ(45deg);
}
.l-header__navigation._open + .c-hamburger .c-hamburger__line::after {
  transform: translateY(-8px) rotateZ(-45deg);
}
@media (min-width: 1250px) {
  .c-hamburger {
    display: none;
  }
}

[class*=c-heading] {
  color: #000;
}
[class*=c-heading]._center {
  text-align: center;
}
[class*=c-heading]._right {
  text-align: right;
}
[class*=c-heading]._left {
  text-align: left;
}
[class*=c-heading]:first-child {
  margin-top: 0;
}

.c-heading01 {
  position: relative;
  margin-bottom: 20.3562340967vw;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 159.3%;
  color: var(--kiosk-navy);
  text-align: center;
  letter-spacing: 0.48px;
}
@media (min-width: 768px) {
  .c-heading01 {
    margin-bottom: 80px;
    font-size: 32px;
    font-size: 2rem;
    letter-spacing: 0.64px;
  }
}
.c-heading01::after {
  display: block;
  width: 111px;
  height: 4px;
  margin: 19px auto 0;
  content: "";
  background: var(--kiosk-light-blue);
}

.c-icon {
  display: inline-block;
  align-self: center;
}
.c-icon._tel {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: url("../img/common/icon_tel.svg") no-repeat 50% 50%;
  background-size: cover;
}

.c-icon__circle {
  display: inline-block;
  width: 4.0712468193vw;
  height: 4.0712468193vw;
  vertical-align: top;
  border-style: solid;
  border-width: 1px;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .c-icon__circle {
    width: 33px;
    height: 33px;
    border-width: 3px;
  }
}
.c-icon__circle span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  border: 0;
}

.c-icon__triangle {
  display: inline-block;
  width: 3.5623409669vw;
  height: 3.0534351145vw;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38.1 33"><path d="M38.1,33H0L19.1,0ZM5.2,30H32.9L19.1,6Z" fill="%2329789b"/></svg>');
  background-size: contain;
}
@media (min-width: 768px) {
  .c-icon__triangle {
    width: 38px;
    height: 33px;
  }
}
.c-icon__triangle span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  border: 0;
}

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;
  width: 100%;
  padding: 5.0890585242vw 12px;
  font-size: 14px;
  font-size: 0.875rem;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
}
@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] {
    max-width: 493px;
    padding: 15px;
  }
}
.c-input input[type=date]::-moz-placeholder, .c-input input[type=email]::-moz-placeholder, .c-input input[type=number]::-moz-placeholder, .c-input input[type=password]::-moz-placeholder, .c-input input[type=tel]::-moz-placeholder, .c-input input[type=text]::-moz-placeholder, .c-input input[type=time]::-moz-placeholder {
  color: #999;
}
.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: #999;
}
.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: 2px solid #007db7;
}
.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: 50%;
}
@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: 13px;
  font-size: 0.8125rem;
}
.c-textarea textarea {
  box-sizing: border-box;
  width: 100%;
  height: 80.1526717557vw;
  min-height: 80px;
  padding: 10px 12px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
}
@media (min-width: 768px) {
  .c-textarea textarea {
    height: 335px;
    padding: 20px;
  }
}
.c-textarea textarea:focus-visible {
  outline: 2px solid #007db7;
}

.c-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 113px;
  min-height: 26px;
  padding: 8px 14px;
  margin-left: 12px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  color: var(--kiosk-navy);
  text-align: center;
  background: var(--kiosk-ultra-light-blue);
  border-radius: 52px;
}
@media (min-width: 768px) {
  .c-label {
    align-self: flex-start;
    padding: 4px;
    margin-left: 20px;
  }
}

.p-services__lead .c-labelList {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .p-services__lead .c-labelList {
    margin-top: 34px;
  }
}
.c-labelList._round {
  text-align: center;
}
.c-labelList._round .c-labelList__item {
  display: inline-flex;
  justify-content: center;
  height: 32px;
  padding: 0 15px;
  margin-right: -0.3em;
  background: #d1f1da;
  border-radius: 16px;
}
@media (min-width: 768px) {
  .c-labelList._round .c-labelList__item {
    display: inline-flex;
    height: 35px;
    padding: 0 20px;
    border-radius: 17px;
  }
}
@media not all and (min-width: 768px) {
  .c-labelList._round .c-labelList__item + .c-labelList__item {
    margin-top: 12px;
  }
}
@media (min-width: 768px) {
  .c-labelList._round .c-labelList__item + .c-labelList__item {
    margin-left: 20px;
  }
}
.c-labelList._round .c-labelList__item span {
  align-self: center;
}

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-list._border .c-list__item {
  padding-bottom: 7.6335877863vw;
  border-bottom: 1px solid #cecece;
}
@media (min-width: 768px) {
  .c-list._border .c-list__item {
    padding-bottom: 32px;
  }
}
.c-list._dot li {
  margin-left: 0.5em;
  text-indent: -0.5em;
}
.c-list._dot li::before {
  display: inline-block;
  content: "・";
}
.c-list._date .c-list__item:not(:first-of-type) {
  margin-top: 22px;
}
@media (min-width: 768px) {
  .c-list._date .c-list__item:not(:first-of-type) {
    margin-top: 45px;
  }
}
@media (min-width: 768px) {
  .c-list._date .c-list__item > a,
  .c-list._date .c-list__item .c-list__itemInner {
    display: flex;
    justify-content: flex-start;
  }
}
.c-list._date .c-list__item > a > .c-list__detail,
.c-list._date .c-list__item .c-list__itemInner > .c-list__detail {
  line-height: 1.875;
}
@media not all and (min-width: 768px) {
  .c-list._date .c-list__item > a > .c-list__detail,
  .c-list._date .c-list__item .c-list__itemInner > .c-list__detail {
    margin-top: 10px;
  }
}
@media (min-width: 768px) {
  .c-list._date .c-list__item > a > .c-list__detail,
  .c-list._date .c-list__item .c-list__itemInner > .c-list__detail {
    flex-basis: calc(100% - (4em + 30px));
    width: calc(100% - (4em + 30px));
    max-width: calc(100% - (4em + 30px));
  }
}
.c-list._date .c-list__item a {
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .c-list._date .c-list__item a:hover {
    color: var(--kiosk-light-blue);
  }
}
.c-list._date .c-list__item .c-list__time {
  display: inline-block;
  font-weight: 500;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .c-list._date .c-list__item .c-list__time {
    display: block;
    flex-shrink: 0;
    width: calc(5em + 47px);
    margin-bottom: 0;
    line-height: 1.875;
    letter-spacing: 1.92px;
  }
}
.c-list._date .c-list__item .c-list__time::before {
  position: relative;
  top: -0.1em;
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  content: "";
  background-color: var(--kiosk-light-blue);
  border-radius: 50%;
}
@media (min-width: 768px) {
  .c-list._date .c-list__item .c-label {
    flex-basis: 120px;
    max-width: 120px;
    margin-top: 0.2em;
    margin-right: 30px;
  }
}
@media (min-width: 768px) {
  .c-list._date .c-list__item .c-label + .c-list__detail {
    flex-basis: calc(100% - (4em + 150px));
    width: calc(100% - (4em + 150px));
    max-width: calc(100% - (4em + 150px));
  }
}

.c-mainVisual {
  position: relative;
  overflow: hidden;
}
.c-mainVisual .c-mainVisual__heading {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 121px;
  padding-right: 4.3256997455vw;
  padding-left: 4.3256997455vw;
  background: var(--kiosk-ultra-light-blue);
}
@media not all and (min-width: 768px) {
  .c-mainVisual .c-mainVisual__heading {
    width: 96.1832061069vw;
  }
}
@media (min-width: 768px) {
  .c-mainVisual .c-mainVisual__heading {
    min-height: 260px;
    padding-right: 20px;
    padding-left: 56px;
  }
}
.c-mainVisual .c-mainVisual__heading .c-mainVisual__headingTitle {
  font-size: 28px;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  color: var(--kiosk-navy);
  letter-spacing: 5.6px;
}
@media (min-width: 768px) {
  .c-mainVisual .c-mainVisual__heading .c-mainVisual__headingTitle {
    font-size: 36px;
    font-size: 2.25rem;
    letter-spacing: 7.2px;
  }
}
.c-mainVisual .c-mainVisual__heading .c-mainVisual__headingTitle::before {
  display: block;
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 120%;
  color: var(--kiosk-light-blue);
  text-transform: uppercase;
  letter-spacing: 2.24px;
  content: attr(data-mainVisual-en);
}
@media (min-width: 768px) {
  .c-mainVisual .c-mainVisual__heading .c-mainVisual__headingTitle::before {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.2;
    letter-spacing: 3.2px;
  }
}
.c-mainVisual .c-mainVisual__image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.c-mainVisual .c-mainVisual__image picture {
  display: block;
  height: 50.8905852417vw;
  margin-left: 4.0712468193vw;
  overflow: hidden;
  border-radius: 4.0712468193vw 0 0 4.0712468193vw;
}
@media (min-width: 768px) {
  .c-mainVisual .c-mainVisual__image picture {
    height: 420px;
    margin-left: 40px;
    border-radius: 20px 0 0 20px;
  }
}
.c-mainVisual .c-mainVisual__image picture img {
  width: 100%;
  height: 100%;
  -o-object-position: left;
     object-position: left;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
}
.c-mainVisual .c-mainVisual__headingLink {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .c-mainVisual .c-mainVisual__headingLink {
    margin-top: 14px;
  }
}
.c-mainVisual .c-mainVisual__headingLink li a {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 240%;
  color: var(--kiosk-light-blue);
  text-decoration: none;
  letter-spacing: 1.92px;
}
@media (any-hover: hover) {
  .c-mainVisual .c-mainVisual__headingLink li a {
    transition: opacity 0.5s ease-in-out;
  }
  .c-mainVisual .c-mainVisual__headingLink li a:hover {
    opacity: 0.7;
  }
}
.c-mainVisual .c-mainVisual__headingLink li a span::before {
  display: inline-block;
  margin-right: 0.4em;
  content: "«";
}
.c-mainVisual .c-mainVisual__headingLink li + li {
  margin-left: 8.3969465649vw;
}
@media (min-width: 768px) {
  .c-mainVisual .c-mainVisual__headingLink li + li {
    margin-left: 33px;
  }
}
@media (min-width: 768px) {
  .c-mainVisual:not(._tiered) {
    min-height: 420px;
  }
}
.c-mainVisual:not(._tiered) .c-mainVisual__heading {
  margin-top: 41.2213740458vw;
  border-radius: 0 20px 20px 0;
}
@media (min-width: 768px) {
  .c-mainVisual:not(._tiered) .c-mainVisual__heading {
    width: 564px;
    margin-top: 227px;
  }
}
.c-mainVisual._tiered .c-mainVisual__heading {
  border-radius: 0 20px 20px 0;
}
@media not all and (min-width: 768px) {
  .c-mainVisual._tiered .c-mainVisual__heading {
    padding-top: 9.1603053435vw;
    padding-bottom: 6.6157760814vw;
  }
}
@media (min-width: 768px) {
  .c-mainVisual._tiered .c-mainVisual__heading {
    padding-top: 50px;
    margin-left: 40px;
    border-radius: 20px 0 0 20px;
  }
}
@media (min-width: 768px) {
  .c-mainVisual._tiered .c-mainVisual__heading .c-mainVisual__headingTitle::before {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) {
  .c-mainVisual._tiered .c-mainVisual__headingLink {
    margin-top: 28px;
  }
}

.c-naviSelect {
  position: relative;
  margin: 35px 18px 0;
}
.l-contents .c-naviSelect {
  margin-right: 0;
  margin-left: 0;
}
.c-naviSelect::after {
  position: absolute;
  top: calc(50% - 5px);
  right: 15px;
  z-index: 2;
  display: block;
  width: 16px;
  height: 10px;
  content: "";
  background: url("../img/common/arrow_select.svg") no-repeat 0 0;
  background-size: cover;
}
.c-naviSelect .c-naviSelect__select {
  width: 100%;
  height: 51px;
  padding: 0 35px 0 15px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff;
  border: 1px solid #999;
  border-radius: 6px;
}
@media not all and (min-width: 768px) {
  .c-naviSelect .c-naviSelect__select {
    height: 15.2671755725vw;
  }
}

.c-pagination {
  text-align: center;
}
.c-pagination._list {
  margin-top: 8.3969465649vw;
}
@media not all and (min-width: 768px) {
  .c-pagination._list {
    position: relative;
  }
}
@media (min-width: 768px) {
  .c-pagination._list {
    margin-top: 103px;
  }
}
.c-pagination._list .wp-pagenavi {
  display: inline-flex;
  justify-content: center;
}
.c-pagination._list .dots {
  display: inline-flex;
  align-items: center;
  height: 40px;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  color: var(--kiosk-light-blue);
  letter-spacing: 2.88px;
}
.c-pagination._list a {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 8px;
  color: var(--kiosk-light-blue);
  text-decoration: none;
}
@media not all and (min-width: 768px) {
  .c-pagination._list a {
    padding: 5px 8px 16px;
  }
}
@media (min-width: 768px) {
  .c-pagination._list a {
    padding-bottom: 20px;
  }
}
.c-pagination._list a.page {
  margin-right: 8px;
  margin-left: 8px;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 2.88px;
  border-bottom: 6px solid transparent;
}
@media (min-width: 768px) {
  .c-pagination._list a.page {
    margin-right: 30px;
    margin-left: 30px;
  }
}
@media (any-hover: hover) {
  .c-pagination._list a.page {
    transition: opacity 0.5s ease-in-out;
  }
  .c-pagination._list a.page:hover {
    opacity: 0.7;
  }
}
.c-pagination._list a.previouspostslink, .c-pagination._list a.nextpostslink {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  color: var(--kiosk-light-blue);
  letter-spacing: 2.88px;
}
.c-pagination._list a.previouspostslink {
  display: flex;
  justify-content: space-between;
  text-transform: capitalize;
}
@media not all and (min-width: 768px) {
  .c-pagination._list a.previouspostslink {
    right: calc(50% + 74px);
  }
}
@media (min-width: 768px) {
  .c-pagination._list a.previouspostslink {
    margin-right: 46px;
  }
}
.c-pagination._list a.nextpostslink {
  display: flex;
  justify-content: space-between;
  text-transform: capitalize;
}
@media not all and (min-width: 768px) {
  .c-pagination._list a.nextpostslink {
    left: calc(50% + 74px);
  }
}
@media (min-width: 768px) {
  .c-pagination._list a.nextpostslink {
    margin-left: 46px;
  }
}
.c-pagination._list .current {
  display: inline-flex;
  align-items: center;
  height: 40px;
  margin-right: 8px;
  margin-left: 8px;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  color: var(--kiosk-light-blue);
  letter-spacing: 2.88px;
  border-bottom: 6px solid var(--kiosk-light-blue);
}
@media not all and (min-width: 768px) {
  .c-pagination._list .current {
    padding: 5px 8px 16px;
  }
}
@media (min-width: 768px) {
  .c-pagination._list .current {
    padding-bottom: 20px;
    margin-right: 30px;
    margin-left: 30px;
  }
}
.c-pagination._detail {
  margin-top: 10.1781170483vw;
  border-top: 1px solid #cecece;
}
@media not all and (min-width: 768px) {
  .c-pagination._detail {
    padding-top: 5.0890585242vw;
    padding-bottom: 1.7811704835vw;
    margin-right: 6.6157760814vw;
    margin-left: 6.6157760814vw;
  }
}
@media (min-width: 768px) {
  .c-pagination._detail {
    max-width: 920px;
    padding-top: 29px;
    margin: 59px auto 0;
  }
}
.c-pagination._detail div[role=navigation] {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 768px) {
  .c-pagination._detail div[role=navigation] {
    width: 37.8260869565%;
    margin-right: auto;
    margin-left: auto;
  }
}
.c-pagination._detail a {
  display: inline-flex;
  padding: 10px;
  text-decoration: none;
}
@media (min-width: 768px) {
  .c-pagination._detail a {
    padding: 10px 0;
  }
}
.c-pagination._detail a.page {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  order: 3;
  width: 70.737913486vw;
  min-height: 58px;
  padding: 10px 56px;
  margin-top: 10.1781170483vw;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1.92px;
  background: var(--kiosk-light-blue) url("../img/common/arrow_btn.svg") no-repeat calc(100% - 18px) 50%;
  background-size: 37px auto;
  border: none;
  border-radius: 58px;
}
@media (min-width: 768px) {
  .c-pagination._detail a.page {
    width: 278px;
    margin-top: 55px;
    cursor: pointer;
    transition: background-color 0.5s ease-in-out;
  }
}
@media (any-hover: hover) {
  .c-pagination._detail a.page:hover {
    background-color: var(--kiosk-navy);
  }
}
.c-pagination._detail a.page:visited {
  color: #fff;
}
.c-pagination._detail a.previouspostslink, .c-pagination._detail a.nextpostslink {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  font-weight: 500;
  line-height: 1;
  color: var(--kiosk-light-blue);
  letter-spacing: 2.16px;
}
.c-pagination._detail a.previouspostslink {
  order: 1;
  margin-right: auto;
  text-transform: capitalize;
}
.c-pagination._detail a.previouspostslink::before {
  display: inline-block;
  margin-right: 0.4em;
  content: "«";
}
.c-pagination._detail a.nextpostslink {
  order: 2;
  margin-left: 20px;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .c-pagination._detail a.nextpostslink {
    margin-left: 46px;
  }
}
.c-pagination._detail a.nextpostslink::after {
  display: inline-block;
  margin-left: 0.4em;
  content: "»";
}

.c-select {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .c-select:hover::after {
    border-color: #007db7;
  }
}
.c-select::before {
  position: absolute;
  top: calc(50% - 10px);
  right: 18px;
  z-index: 2;
  width: 10px;
  height: 21px;
  cursor: pointer;
  content: "";
  background: url("../img/icon_select_arrow.svg") no-repeat 0 0;
  background-size: cover;
}
.c-select select {
  display: block;
  width: 100%;
  height: 50px;
  padding: 10px 60px 10px 24px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 6px;
}
.c-select select[disabled] {
  cursor: not-allowed;
}
.c-select select:focus {
  border-color: #007db7;
  border-width: 2px;
}
.c-select select::-ms-expand {
  display: none;
}

.c-table > table {
  margin-top: 35px;
  margin-bottom: 35px;
  background: #fff;
  border-top: 1px solid #cecece;
  border-right: 1px solid #cecece;
}
@media (min-width: 768px) {
  .c-table > table {
    width: 100%;
    margin-top: 46px;
    margin-bottom: 56px;
  }
}
.c-table > table + table {
  margin-top: 35px;
}
@media (min-width: 768px) {
  .c-table > table + table {
    margin-top: 46px;
  }
}
.c-table th,
.c-table td {
  padding: 15px 14px;
  border-bottom: 1px solid #cecece;
  border-left: 1px solid #cecece;
}
@media (min-width: 768px) {
  .c-table th,
  .c-table td {
    padding: 25px 30px;
  }
}
.c-table th {
  line-height: 1.4285714286;
  text-align: left;
  letter-spacing: 0.01em;
  vertical-align: top;
  background: #e8f8ff;
}
@media (min-width: 768px) {
  .c-table th {
    line-height: 1.75;
    letter-spacing: 0.02em;
  }
}
.c-table td > p {
  line-height: 1.4285714286;
}
@media (min-width: 768px) {
  .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 not all and (min-width: 768px) {
  .p-recruitEmployee .c-table table,
  .p-recruitEmployee .c-table tbody,
  .p-recruitEmployee .c-table tr,
  .p-recruitEmployee .c-table th,
  .p-recruitEmployee .c-table td {
    display: block;
    width: 100%;
  }
}

.l-container {
  padding-top: 98px;
}
@media (min-width: 1024px) {
  .l-container {
    padding-top: 159px;
  }
}

.l-contents {
  width: 100%;
}
@media not all and (min-width: 768px) {
  .l-container:not(.p-top) .l-main .l-contents {
    padding-top: 10.1781170483vw;
  }
}
@media (min-width: 768px) {
  .l-container:not(.p-top) .l-main .l-contents {
    max-width: 1280px;
    padding-right: 20px;
    padding-left: 20px;
    margin: 0 auto;
  }
}

.l-footer {
  position: relative;
  padding: 15.2671755725vw 6.6157760814vw 12.9770992366vw;
  color: #fff;
  background-color: var(--kiosk-navy);
  background-image: url("../img/common/fotter_bg.svg");
  background-repeat: no-repeat;
  background-position: 17.5572519084vw 17.048346056vw;
  background-size: 306px auto;
}
@media (min-width: 768px) {
  .l-footer {
    padding: 62px 20px 30px;
    background-position: 98.46% 0;
    background-size: 475px auto;
  }
}
.p-top .l-footer {
  padding-top: 45.8015267176vw;
  margin-top: -30.7888040712vw;
}
@media (min-width: 768px) {
  .p-top .l-footer {
    padding-top: 169px;
    margin-top: -127px;
  }
}
@media (min-width: 768px) {
  .l-footer .l-footer__logo {
    max-width: 1240px;
    margin: 0 auto;
  }
}
.l-footer .l-footer__logo img {
  width: 66.4122137405vw;
  height: auto;
}
@media (min-width: 768px) {
  .l-footer .l-footer__logo img {
    width: 262px;
  }
}
@media (any-hover: hover) {
  .l-footer .l-footer__logo a {
    transition: opacity 0.5s ease-in-out;
  }
  .l-footer .l-footer__logo a:hover {
    opacity: 0.7;
  }
}
@media (min-width: 768px) {
  .l-footer .l-footer__inner {
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    max-width: 1240px;
    margin: 0 auto;
  }
}
@media not all and (min-width: 768px) {
  .l-footer .l-footer__info {
    display: grid;
    margin-bottom: 13.4860050891vw;
  }
}
@media (min-width: 768px) {
  .l-footer .l-footer__info {
    width: 50%;
  }
}
.l-footer .l-footer__info .info__heading {
  margin-top: 8.6513994911vw;
  font-weight: 700;
  line-height: 1.9375;
  color: #b8e9ff;
  letter-spacing: 1.6px;
}
@media not all and (min-width: 768px) {
  .l-footer .l-footer__info .info__heading {
    margin-bottom: 4.834605598vw;
  }
}
@media (min-width: 768px) {
  .l-footer .l-footer__info .info__heading {
    margin-top: 25px;
  }
}
.l-footer .l-footer__info .info__address {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.68px;
  word-break: keep-all;
}
@media not all and (min-width: 768px) {
  .l-footer .l-footer__info .info__address {
    margin-top: 6.8702290076vw;
  }
}
@media (min-width: 768px) {
  .l-footer .l-footer__info .info__address {
    margin-top: 24px;
  }
}
@media (min-width: 768px) {
  .l-footer .l-footer__info .info__tel {
    margin-top: 11px;
  }
}
.l-footer .l-footer__info .info__tel > dt {
  margin-bottom: 6px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 144.5%;
  letter-spacing: 1.68px;
}
.l-footer .l-footer__info .info__tel > dd {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 144.5%;
  letter-spacing: 2.16px;
}
@media (min-width: 768px) {
  .l-footer .l-footer__info .info__tel > dd {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.l-footer .l-footer__info .info__tel > dd a {
  text-decoration: none;
}
@media (min-width: 768px) {
  .l-footer .l-footer__info .info__tel > dd a {
    pointer-events: none;
  }
}
.l-footer .l-footer__info .info__tel > dd span {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 1.68px;
}
@media not all and (min-width: 768px) {
  .l-footer .l-footer__info .info__tel > dd span {
    width: 100%;
  }
}
.l-footer .l-footer__info .info__tel > dd + dt {
  margin-top: 4.3256997455vw;
}
@media (min-width: 768px) {
  .l-footer .l-footer__info .info__tel > dd + dt {
    margin-top: 23px;
  }
}
@media not all and (min-width: 768px) {
  .l-footer .l-footer__globalNav {
    margin-top: 8.1424936387vw;
  }
}
@media (min-width: 768px) {
  .l-footer .l-footer__globalNav {
    flex-shrink: 0;
    width: 33.5483870968%;
    min-width: 416px;
  }
}
@media not all and (min-width: 768px) {
  .l-footer .l-footer__globalNav .l-footer__globalNavLink {
    margin-top: 2.2900763359vw;
  }
}
.l-footer .l-footer__globalNav .l-footer__globalNavLink a {
  font-size: 12px;
  font-size: 0.75rem;
  text-decoration: none;
}
@media (any-hover: hover) {
  .l-footer .l-footer__globalNav .l-footer__globalNavLink a {
    transition: opacity 0.5s ease-in-out;
  }
  .l-footer .l-footer__globalNav .l-footer__globalNavLink a:hover {
    opacity: 0.6;
  }
}
.l-footer .l-footer__copy {
  display: block;
  margin-top: 18.320610687vw;
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2857142857;
  color: #fff;
  text-align: center;
}
@media (min-width: 768px) {
  .l-footer .l-footer__copy {
    margin-top: 30px;
  }
}

@media not all and (min-width: 768px) {
  .l-header .l-globalNavigation {
    padding: 27.7353689567vw 14.2493638677vw 20px;
  }
}
@media not all and (min-width: 1250px) {
  .l-header .l-globalNavigation {
    width: 100%;
    height: 100%;
    padding: 109px 56px 20px;
    overflow-y: auto;
    background-color: #fff;
  }
}
@media not all and (min-width: 1250px) {
  .l-header .l-globalNavigation .l-globalNavigation__list {
    text-align: center;
  }
}
@media (min-width: 1250px) {
  .l-header .l-globalNavigation .l-globalNavigation__list {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1250px) {
  .l-header .l-globalNavigation .l-globalNavigation__item._top {
    display: none;
  }
}
@media not all and (min-width: 1250px) {
  .l-header .l-globalNavigation .l-globalNavigation__item._info {
    max-width: 400px;
    margin: 24px auto 0;
  }
}
.l-header .l-globalNavigation .l-globalNavigation__item._info .l-globalNavigation__itemLink {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 47px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.125;
  color: #fff;
  text-decoration: none;
  background: var(--kiosk-pink);
  border-radius: 45px;
}
@media not all and (min-width: 768px) {
  .l-header .l-globalNavigation .l-globalNavigation__item._info .l-globalNavigation__itemLink {
    padding: 20px 10px 14px;
  }
}
@media not all and (min-width: 1250px) {
  .l-header .l-globalNavigation .l-globalNavigation__item._info .l-globalNavigation__itemLink {
    height: 60px;
    padding: 0 10px;
    font-size: 16px;
    font-size: 1rem;
    text-align: center;
    border-radius: 30px;
  }
}
@media (min-width: 1250px) {
  .l-header .l-globalNavigation .l-globalNavigation__item._info .l-globalNavigation__itemLink {
    margin-left: 25px;
    transition: opacity 0.3s ease-in-out;
  }
}
@media (any-hover: hover) {
  .l-header .l-globalNavigation .l-globalNavigation__item._info .l-globalNavigation__itemLink:hover {
    opacity: 0.7;
  }
}
.l-header .l-globalNavigation .l-globalNavigation__item:not(._info) .l-globalNavigation__itemLink {
  font-weight: 700;
  color: #000;
  text-decoration: none;
}
@media not all and (min-width: 1250px) {
  .l-header .l-globalNavigation .l-globalNavigation__item:not(._info) .l-globalNavigation__itemLink {
    display: block;
    padding-top: 12px;
    padding-bottom: 11px;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 37px;
    text-align: center;
    letter-spacing: 3.6px;
  }
}
@media (min-width: 1250px) {
  .l-header .l-globalNavigation .l-globalNavigation__item:not(._info) .l-globalNavigation__itemLink {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 10px;
    padding-left: 11px;
    font-size: 16px;
    font-size: 1rem;
    text-align: center;
    word-break: keep-all;
    transition: color 0.3s ease-in-out;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1100px) {
  .l-header .l-globalNavigation .l-globalNavigation__item:not(._info) .l-globalNavigation__itemLink {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (any-hover: hover) {
  .l-header .l-globalNavigation .l-globalNavigation__item:not(._info) .l-globalNavigation__itemLink:hover {
    color: var(--kiosk-light-blue);
  }
}
@media not all and (min-width: 1024px) {
  .l-footer .l-globalNavigation .l-globalNavigation__list {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0.7633587786vw 2.2900763359vw;
  }
}
@media (min-width: 768px) {
  .l-footer .l-globalNavigation .l-globalNavigation__list {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-fill: auto;
         column-fill: auto;
    -moz-column-gap: 16px;
         column-gap: 16px;
    height: 160px;
    margin-top: 35px;
    margin-bottom: 24px;
  }
}
.l-footer .l-globalNavigation .l-globalNavigation__item {
  margin-bottom: 2.5445292621vw;
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
@media (min-width: 768px) {
  .l-footer .l-globalNavigation .l-globalNavigation__item {
    margin-bottom: 10px;
  }
}
.l-footer .l-globalNavigation .l-globalNavigation__item .l-globalNavigation__itemLink {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  letter-spacing: 1.68px;
}
@media (any-hover: hover) {
  .l-footer .l-globalNavigation .l-globalNavigation__item .l-globalNavigation__itemLink {
    transition: opacity 0.5s ease-in-out;
  }
  .l-footer .l-globalNavigation .l-globalNavigation__item .l-globalNavigation__itemLink:hover {
    opacity: 0.6;
  }
}

.l-header {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 98px;
  transition: transform 0.5s ease;
}
@media (min-width: 1250px) {
  .l-header {
    height: 159px;
  }
}
:not(.p-top) > .l-header {
  background-color: #fff;
}
.l-header._disableAnimation:not(:root) {
  transition: none;
}
.l-header._fixed, .l-header._fix {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  box-shadow: 0 0 4px 4px rgba(187, 187, 187, 0.25);
}
@media (min-width: 1250px) {
  .l-header._fixed, .l-header._fix {
    height: 100px;
    padding-top: 19px;
    padding-bottom: 17px;
    box-shadow: 0 4px 4px 0 rgba(209, 209, 209, 0.5);
  }
}
.l-header._fixed {
  transform: translateY(-110px);
}
.l-header._fix {
  transform: translateY(0);
}
.l-header .l-header__inner {
  display: flex;
  align-items: center;
  width: 100%;
}
@media not all and (min-width: 1250px) {
  .l-header .l-header__inner {
    justify-content: space-between;
    padding-left: 16px;
  }
}
@media (min-width: 1250px) {
  .l-header .l-header__inner {
    padding: 45px 37px 50px;
  }
}
.l-header .l-header__logoWrap {
  position: relative;
  z-index: 2;
}
@media not all and (min-width: 1250px) {
  .l-header .l-header__logo {
    height: 46px;
  }
}
@media (any-hover: hover) {
  .l-header .l-header__logo a {
    transition: opacity 0.5s ease-in-out;
  }
  .l-header .l-header__logo a:hover {
    opacity: 0.7;
  }
}
.l-header .l-header__logoImage {
  display: block;
  margin-top: auto;
  margin-bottom: auto;
}
@media not all and (min-width: 1250px) {
  .l-header .l-header__logoImage {
    width: 232px;
    height: 46px;
  }
}
@media (min-width: 1250px) {
  .l-header .l-header__logoImage {
    width: 328px;
    height: 64px;
  }
}
@media not all and (min-width: 1250px) {
  .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;
  }
  .l-header .l-header__navigation._open {
    visibility: visible;
    opacity: 1;
  }
}
@media (min-width: 1250px) {
  .l-header .l-header__navigation {
    margin-left: auto;
  }
}

.l-main {
  width: 100%;
}

.p-about {
  position: relative;
  background: url("../img/top/image_balloon.svg") no-repeat 3.8167938931vw 27.4809160305vw;
  background-size: 61.0687022901vw auto;
}
@media (min-width: 1024px) {
  .p-about {
    padding-top: 107px;
    background-position: 9.8vw 16.8vw;
    background-size: 31.9333333333vw auto;
  }
}
@media (min-width: 1250px) {
  .p-about {
    background-position: 147px 252px;
    background-size: 479px auto;
  }
}
.p-about::before {
  position: absolute;
  z-index: -1;
  display: block;
  aspect-ratio: 121/116;
  pointer-events: none;
  content: "";
  background: url("../img/common/image_dots.svg") no-repeat 50% 50%;
  background-size: cover;
}
@media not all and (min-width: 1024px) {
  .p-about::before {
    display: none;
  }
}
@media (min-width: 1024px) {
  .p-about::before {
    top: 13.3333333333vw;
    right: 16.4vw;
    width: 8.0666666667vw;
  }
}
@media (min-width: 1250px) {
  .p-about::before {
    top: 200px;
    right: 246px;
  }
}
.p-about::after {
  position: absolute;
  top: 142.4936386768vw;
  right: 5.0890585242vw;
  z-index: -1;
  display: block;
  width: 79.3893129771vw;
  aspect-ratio: 604/459;
  pointer-events: none;
  content: "";
  background: url("../img/common/image_circle.svg") no-repeat 50% 50%;
  background-size: cover;
}
@media (min-width: 1024px) {
  .p-about::after {
    top: 53.6vw;
    right: 9.9333333333vw;
    width: 40.2666666667vw;
  }
}
@media (min-width: 1250px) {
  .p-about::after {
    top: 804px;
    right: 149px;
    width: 604px;
  }
}
.p-about .p-about__inner {
  position: relative;
}
.p-about .p-about__inner::before {
  position: absolute;
  z-index: -1;
  display: block;
  aspect-ratio: 155/76;
  pointer-events: none;
  content: "";
  background: url("../img/common/image_wave.svg") no-repeat 50% 50%;
  background-size: cover;
}
@media not all and (min-width: 1024px) {
  .p-about .p-about__inner::before {
    display: none;
  }
}
@media (min-width: 1024px) {
  .p-about .p-about__inner::before {
    top: 77.4666666667vw;
    left: 13.6vw;
    width: 10.3333333333vw;
  }
}
@media (min-width: 1250px) {
  .p-about .p-about__inner::before {
    top: 1162px;
    left: 204px;
    width: 155px;
  }
}
.p-about .p-about__inner::after {
  position: absolute;
  top: 276.3358778626vw;
  left: 0;
  z-index: -1;
  display: block;
  width: 56.9974554707vw;
  aspect-ratio: 346/346;
  pointer-events: none;
  content: "";
  background: #effaff;
  border-radius: 50%;
}
@media (min-width: 1024px) {
  .p-about .p-about__inner::after {
    top: 93.7333333333vw;
    left: 12.4vw;
    width: 23.0666666667vw;
  }
}
@media (min-width: 1250px) {
  .p-about .p-about__inner::after {
    top: 1406px;
    left: 186px;
    width: 346px;
  }
}
.p-about .p-about__lead {
  margin-bottom: 14.7582697201vw;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 159.3%;
  color: var(--kiosk-navy);
  text-align: center;
  letter-spacing: 0.4px;
}
@media (min-width: 768px) {
  .p-about .p-about__lead {
    margin-bottom: 86px;
    font-size: 32px;
    font-size: 2rem;
    letter-spacing: 0.64px;
  }
}
.p-about .p-aboutMission {
  padding-bottom: 13.2315521628vw;
  border-bottom: 1px solid #ccc;
}
@media not all and (min-width: 768px) {
  .p-about .p-aboutMission {
    margin-right: 4.0712468193vw;
    margin-left: 4.0712468193vw;
  }
}
@media (min-width: 768px) {
  .p-about .p-aboutMission {
    max-width: 1050px;
    padding-bottom: 70px;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-about .p-aboutMission .p-aboutMission__heading span {
  display: block;
  margin-bottom: 10.1781170483vw;
  font-family: Lato, sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--kiosk-navy);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2.4px;
}
@media (min-width: 768px) {
  .p-about .p-aboutMission .p-aboutMission__heading span {
    margin-bottom: 45px;
    font-size: 32px;
    font-size: 2rem;
    letter-spacing: 3.2px;
  }
}
.p-about .p-aboutMission .p-aboutMission__heading em {
  display: block;
  font-size: 28px;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 159.3%;
  color: var(--kiosk-navy);
  text-align: center;
  letter-spacing: 5.04px;
}
@media not all and (min-width: 768px) {
  .p-about .p-aboutMission .p-aboutMission__heading em {
    margin-right: -4.0712468193vw;
    margin-left: -1.272264631vw;
  }
}
@media (min-width: 768px) {
  .p-about .p-aboutMission .p-aboutMission__heading em {
    font-size: 54px;
    font-size: 3.375rem;
    letter-spacing: 9.72px;
  }
}
.p-about .p-aboutMission .p-aboutMission__heading em i {
  font-style: normal;
  color: var(--kiosk-light-blue);
}
.p-about .p-aboutMission > p {
  margin-top: 6.106870229vw;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.92px;
}
@media not all and (min-width: 768px) {
  .p-about .p-aboutMission > p {
    padding-right: 2.5445292621vw;
    padding-left: 2.5445292621vw;
  }
}
@media (min-width: 768px) {
  .p-about .p-aboutMission > p {
    margin-top: 29px;
    text-align: center;
  }
}
.p-about .p-aboutVision {
  padding-bottom: 13.2315521628vw;
  border-bottom: 1px solid #ccc;
}
@media not all and (min-width: 768px) {
  .p-about .p-aboutVision {
    padding-top: 15.7760814249vw;
    margin-right: 4.0712468193vw;
    margin-left: 4.0712468193vw;
  }
}
@media (min-width: 768px) {
  .p-about .p-aboutVision {
    max-width: 1050px;
    padding-bottom: 83px;
    margin-top: 107px;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-about .p-aboutVision .p-aboutVision__heading span {
  display: block;
  font-family: Lato, sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 13px;
  color: var(--kiosk-navy);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2.4px;
}
@media (min-width: 768px) {
  .p-about .p-aboutVision .p-aboutVision__heading span {
    font-size: 32px;
    font-size: 2rem;
    letter-spacing: 3.2px;
  }
}
.p-about .p-aboutVision .p-aboutVision__heading em {
  display: block;
  margin-top: 11.1959287532vw;
  font-size: 20px;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  font-weight: 700;
  line-height: 159.3%;
  color: var(--kiosk-navy);
  text-align: center;
  letter-spacing: 3.6px;
}
@media (min-width: 768px) {
  .p-about .p-aboutVision .p-aboutVision__heading em {
    margin-top: 56px;
    font-size: 42px;
    font-size: 2.625rem;
    letter-spacing: 7.56px;
  }
}
.p-about .p-aboutVision .p-aboutVision__heading em i {
  font-style: normal;
  color: var(--kiosk-light-blue);
}
.p-about .p-aboutVision > p {
  margin-top: 9.1603053435vw;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.92px;
}
@media not all and (min-width: 768px) {
  .p-about .p-aboutVision > p {
    padding-right: 2.5445292621vw;
    padding-left: 2.5445292621vw;
  }
}
@media (min-width: 768px) {
  .p-about .p-aboutVision > p {
    margin-top: 29px;
    text-align: center;
  }
}
.p-about .p-aboutValue {
  padding-bottom: 13.2315521628vw;
}
@media not all and (min-width: 768px) {
  .p-about .p-aboutValue {
    padding-top: 15.7760814249vw;
    margin-right: 4.0712468193vw;
    margin-left: 4.0712468193vw;
  }
}
@media (min-width: 768px) {
  .p-about .p-aboutValue {
    max-width: 1050px;
    padding-bottom: 54px;
    margin: 97px auto 0;
  }
}
.p-about .p-aboutValue .p-aboutValue__heading {
  margin-bottom: 10.1781170483vw;
  text-align: center;
}
@media (min-width: 768px) {
  .p-about .p-aboutValue .p-aboutValue__heading {
    margin-bottom: 65px;
  }
}
.p-about .p-aboutValue .p-aboutValue__heading span {
  display: block;
  font-family: Lato, sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 13px;
  color: var(--kiosk-navy);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2.4px;
}
@media (min-width: 768px) {
  .p-about .p-aboutValue .p-aboutValue__heading span {
    font-size: 32px;
    font-size: 2rem;
    letter-spacing: 3.2px;
  }
}
@media (min-width: 768px) {
  .p-about .p-aboutValue .p-aboutValue__detail {
    text-align: center;
  }
}
.p-about .p-aboutValue .p-aboutValue__detail .about__value + .about__value {
  margin-top: 13.7404580153vw;
}
@media (min-width: 768px) {
  .p-about .p-aboutValue .p-aboutValue__detail .about__value + .about__value {
    margin-top: 54px;
  }
}
.p-about .p-aboutValue .p-aboutValue__detail .about__value .about__valueTitle {
  margin-bottom: 6.8702290076vw;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 159.3%;
  color: var(--kiosk-navy);
  text-align: center;
  letter-spacing: 3.24px;
  word-break: keep-all;
}
@media (min-width: 768px) {
  .p-about .p-aboutValue .p-aboutValue__detail .about__value .about__valueTitle {
    margin-bottom: 13px;
    font-size: 24px;
    font-size: 1.5rem;
    letter-spacing: 4.32px;
  }
}
.p-about .p-aboutValue .p-aboutValue__detail .about__value .about__valueTitle em {
  font-style: normal;
  color: var(--kiosk-light-blue);
}
.p-about .p-aboutValue .p-aboutValue__detail .about__value .about__valueDesc {
  font-weight: 500;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.92px;
}
@media not all and (min-width: 768px) {
  .p-about .p-aboutValue .p-aboutValue__detail .about__value .about__valueDesc {
    padding-right: 2.5445292621vw;
    padding-left: 2.5445292621vw;
  }
}
@media not all and (min-width: 768px) {
  .p-about .p-aboutLogo {
    padding-right: 6.6157760814vw;
    padding-bottom: 20.3562340967vw;
    padding-left: 6.6157760814vw;
    margin-top: 19.8473282443vw;
  }
}
@media (min-width: 768px) {
  .p-about .p-aboutLogo {
    padding-bottom: 163px;
    margin-top: 80px;
  }
}
.p-about .p-aboutLogo .p-aboutLogo__image {
  display: block;
  margin: -2.5445292621vw -1.272264631vw 11.7048346056vw -2.5445292621vw;
}
@media (min-width: 768px) {
  .p-about .p-aboutLogo .p-aboutLogo__image {
    max-width: 760px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
  }
}
.p-about .p-aboutLogo .p-aboutLogo__image img {
  width: 100%;
  height: auto;
}
.p-about .p-aboutLogo .p-aboutLogo__text {
  position: relative;
}
.p-about .p-aboutLogo .p-aboutLogo__text::before {
  position: absolute;
  top: 28.7531806616vw;
  left: 4.0712468193vw;
  z-index: -1;
  display: block;
  width: 29.7709923664vw;
  aspect-ratio: 182/182;
  pointer-events: none;
  content: "";
  background: url("../img/common/image_balloon.svg") no-repeat 50% 50%;
  background-size: cover;
}
@media (min-width: 1024px) {
  .p-about .p-aboutLogo .p-aboutLogo__text::before {
    top: 0;
    left: 15px;
    width: 14.6774193548%;
  }
}
.p-about .p-aboutLogo .p-aboutLogo__text::after {
  position: absolute;
  top: 28.7531806616vw;
  right: 7.1246819338vw;
  z-index: -1;
  display: block;
  width: 29.5165394402vw;
  aspect-ratio: 182/182;
  pointer-events: none;
  content: "";
  background: url("../img/common/image_c.svg") no-repeat 50% 50%;
  background-size: cover;
}
@media (min-width: 1024px) {
  .p-about .p-aboutLogo .p-aboutLogo__text::after {
    top: 0;
    left: 27.0161290323%;
    width: 14.6774193548%;
  }
}
.p-about .p-aboutLogo .p-aboutLogo__text .p-aboutLogo__textInner {
  position: relative;
}
.p-about .p-aboutLogo .p-aboutLogo__text .p-aboutLogo__textInner::before {
  position: absolute;
  top: 73.7913486005vw;
  z-index: -1;
  display: block;
  width: 29.7709923664vw;
  aspect-ratio: 183/182;
  pointer-events: none;
  content: "";
  background: url("../img/common/image_heart.svg") no-repeat 50% 50%;
  background-size: cover;
}
@media not all and (min-width: 1024px) {
  .p-about .p-aboutLogo .p-aboutLogo__text .p-aboutLogo__textInner::before {
    left: 4.0712468193vw;
  }
}
@media (min-width: 1024px) {
  .p-about .p-aboutLogo .p-aboutLogo__text .p-aboutLogo__textInner::before {
    top: 0;
    right: 32.3387096774%;
    width: 14.7580645161%;
  }
}
.p-about .p-aboutLogo .p-aboutLogo__text .p-aboutLogo__textInner::after {
  position: absolute;
  top: 73.7913486005vw;
  right: -2.2900763359vw;
  z-index: -1;
  display: block;
  width: 39.1857506361vw;
  aspect-ratio: 240/182;
  pointer-events: none;
  content: "";
  background: url("../img/common/image_circle.svg") no-repeat 50% 50%;
  background-size: cover;
}
@media (min-width: 1024px) {
  .p-about .p-aboutLogo .p-aboutLogo__text .p-aboutLogo__textInner::after {
    top: 0;
    right: 23px;
    width: 19.3548387097%;
  }
}
.p-about .p-aboutLogo .p-aboutLogo__text p {
  font-weight: 700;
  line-height: 232.5%;
  letter-spacing: 1.92px;
}
@media (min-width: 768px) {
  .p-about .p-aboutLogo .p-aboutLogo__text p {
    text-align: center;
  }
}
.p-about .p-aboutLogo .p-aboutLogo__text p + p {
  margin-top: 2.2em;
}
.p-about .p-aboutProfile {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.92px;
}
@media not all and (min-width: 768px) {
  .p-about .p-aboutProfile {
    padding: 20.3562340967vw 6.6157760814vw 18.320610687vw;
  }
}
@media (min-width: 768px) {
  .p-about .p-aboutProfile {
    padding-top: 68px;
    padding-bottom: 196px;
  }
}
@media (min-width: 768px) {
  .p-about .p-aboutProfile .c-desc {
    max-width: 1050px;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-about .p-aboutProfile .c-desc .c-desc__item:first-child {
  padding-top: 0;
}

.p-after {
  padding-bottom: 15.2671755725vw;
}
@media (min-width: 768px) {
  .p-after {
    padding-top: 107px;
    padding-bottom: 116px;
  }
}
.p-after .p-after__lead {
  margin-bottom: 8.6513994911vw;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 159.3%;
  color: var(--kiosk-navy);
  text-align: center;
  letter-spacing: 0.4px;
}
@media (min-width: 768px) {
  .p-after .p-after__lead {
    margin-bottom: 28px;
    font-size: 36px;
    font-size: 2.25rem;
    letter-spacing: 0.72px;
  }
}
@media not all and (min-width: 768px) {
  .p-after .p-afterSupport {
    padding-right: 6.6157760814vw;
    padding-bottom: 17.8117048346vw;
    padding-left: 6.6157760814vw;
  }
}
@media (min-width: 768px) {
  .p-after .p-afterSupport {
    padding-bottom: 107px;
  }
}
.p-after .p-afterSupport .p-afterSupport__text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 159.3%;
  color: var(--kiosk-navy, #1e3356);
  text-align: center;
  letter-spacing: 0.36px;
}
@media (min-width: 768px) {
  .p-after .p-afterSupport .p-afterSupport__text {
    margin-bottom: 72px;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 159.3%;
    letter-spacing: 0.48px;
  }
}
@media not all and (min-width: 768px) {
  .p-after .p-afterSupport .p-afterSupportImage .p-afterSupportImage__logo {
    display: none;
  }
}
@media (min-width: 768px) {
  .p-after .p-afterSupport .p-afterSupportImage .p-afterSupportImage__logo {
    margin-bottom: 46px;
    text-align: center;
  }
}
.p-after .p-afterSupport .p-afterSupportImage .p-afterSupportImage__flow {
  display: block;
  margin-top: 12.213740458vw;
}
@media (min-width: 768px) {
  .p-after .p-afterSupport .p-afterSupportImage .p-afterSupportImage__flow {
    margin-top: 46px;
  }
}
.p-after .p-afterSupport .p-afterSupport__list {
  margin-top: 15.2671755725vw;
}
@media (min-width: 768px) {
  .p-after .p-afterSupport .p-afterSupport__list {
    max-width: 1050px;
    margin-top: 52px;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-after .p-afterSupport .p-afterSupport__list .support {
  padding-top: 6.106870229vw;
  padding-bottom: 8.1424936387vw;
  border-bottom: 1px solid #ccc;
}
@media not all and (min-width: 768px) {
  .p-after .p-afterSupport .p-afterSupport__list .support {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media (min-width: 768px) {
  .p-after .p-afterSupport .p-afterSupport__list .support {
    display: grid;
    grid-template-columns: 15.1428571429% 1fr;
    gap: 2.4761904762%;
    align-items: center;
    padding-top: 27px;
    padding-bottom: 22px;
  }
}
@media (min-width: 768px) {
  .p-after .p-afterSupport .p-afterSupport__list .support .support__body {
    order: 2;
  }
}
.p-after .p-afterSupport .p-afterSupport__list .support .support__body dt {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--kiosk-navy);
  letter-spacing: 2px;
}
@media not all and (min-width: 768px) {
  .p-after .p-afterSupport .p-afterSupport__list .support .support__body dt {
    text-align: center;
  }
}
.p-after .p-afterSupport .p-afterSupport__list .support .support__body dt::after {
  margin-top: 5px;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 108.333%;
  color: var(--kiosk-light-blue);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  content: attr(data-support-en);
}
@media not all and (min-width: 768px) {
  .p-after .p-afterSupport .p-afterSupport__list .support .support__body dt::after {
    display: block;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .p-after .p-afterSupport .p-afterSupport__list .support .support__body dt::after {
    display: inline-block;
    margin-left: 27px;
  }
}
.p-after .p-afterSupport .p-afterSupport__list .support .support__body dd {
  margin-top: 5.5979643766vw;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.92px;
}
@media (min-width: 768px) {
  .p-after .p-afterSupport .p-afterSupport__list .support .support__body dd {
    margin-top: 10px;
  }
}
@media not all and (min-width: 768px) {
  .p-after .p-afterSupport .p-afterSupport__list .support .support__image {
    margin-bottom: 5.0890585242vw;
  }
}
@media (min-width: 768px) {
  .p-after .p-afterSupport .p-afterSupport__list .support .support__image {
    order: 1;
  }
}
@media not all and (min-width: 768px) {
  .p-after .p-afterSupport .p-afterSupport__list .support .support__image img {
    height: 30.7888040712vw;
  }
}
@media not all and (min-width: 768px) {
  .p-after .p-afterSupport .p-afterSupport__list .support .support__image:nth-child(3) img {
    height: 31.5521628499vw;
  }
}

.p-case {
  margin-bottom: 12.4681933842vw;
}
@media (min-width: 768px) {
  .p-case {
    max-width: 920px;
    padding-top: 79px;
    margin-right: auto;
    margin-bottom: 90px;
    margin-left: auto;
  }
}
.p-case .p-caseContent__heading {
  margin-bottom: 6.6157760814vw;
}
@media not all and (min-width: 768px) {
  .p-case .p-caseContent__heading {
    padding-right: 6.6157760814vw;
    padding-left: 6.6157760814vw;
  }
}
@media (min-width: 768px) {
  .p-case .p-caseContent__heading {
    margin-bottom: 53px;
  }
}
.p-case .p-caseContent__heading h2 {
  margin-bottom: 2.5445292621vw;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--kiosk-navy);
  letter-spacing: 2.88px;
}
@media (min-width: 768px) {
  .p-case .p-caseContent__heading h2 {
    margin-bottom: 14px;
    font-size: 36px;
    font-size: 2.25rem;
    letter-spacing: 4.32px;
  }
}
.p-case .p-caseContent__heading p {
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 1.92px;
}
.p-case .p-entry .p-entry__body figure img {
  border-radius: 10px;
}
@media (min-width: 768px) {
  .p-case .p-entry .p-entry__body figure img {
    border-radius: 12px;
  }
}

@media not all and (min-width: 768px) {
  .p-contact {
    padding: 2.5445292621vw 6.6157760814vw 20.3562340967vw;
  }
}
@media (min-width: 768px) {
  .p-contact {
    max-width: 920px;
    padding-top: 107px;
    padding-bottom: 116px;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-contact .p-contact__heading {
  margin-bottom: 8.1424936387vw;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 159.3%;
  color: var(--kiosk-navy);
  text-align: center;
  letter-spacing: 0.48px;
}
@media (min-width: 1024px) {
  .p-contact .p-contact__heading {
    margin-bottom: 32px;
    font-size: 32px;
    font-size: 2rem;
    letter-spacing: 0.64px;
  }
}
.p-contact .p-contact__lead {
  font-weight: 500;
  line-height: 200%;
  text-align: center;
  letter-spacing: 1.92px;
}
.p-contact .c-form {
  margin-top: 9.1603053435vw;
}
@media (min-width: 1024px) {
  .p-contact .c-form {
    margin-top: 52px;
  }
}

@media (min-width: 768px) {
  article.p-entry {
    padding-top: 55px;
  }
}

@media not all and (min-width: 768px) {
  .p-entry {
    padding-right: 6.6157760814vw;
    padding-left: 6.6157760814vw;
  }
}
@media (min-width: 768px) {
  .l-contents > .p-entry {
    max-width: 920px;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-entry .p-entryHeading {
  display: grid;
  margin-bottom: 10.1781170483vw;
}
@media not all and (min-width: 768px) {
  .p-entry .p-entryHeading {
    padding-top: 3.8167938931vw;
  }
}
@media (min-width: 768px) {
  .p-entry .p-entryHeading {
    margin-bottom: 52px;
  }
}
.p-entry .p-entryHeading .p-entryHeading__title {
  order: 2;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 160%;
  color: var(--kiosk-navy);
  letter-spacing: 2.16px;
}
@media (min-width: 768px) {
  .p-entry .p-entryHeading .p-entryHeading__title {
    font-size: 28px;
    font-size: 1.75rem;
    letter-spacing: 3.36px;
  }
}
.p-entry .p-entryHeading .p-entryHeading__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  order: 1;
}
@media (min-width: 768px) {
  .p-entry .p-entryHeading .p-entryHeading__meta {
    margin-bottom: 4px;
  }
}
.p-entry .p-entryHeading .p-entryHeading__meta .p-entryHeading__time {
  position: relative;
  top: -10px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 24px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.025em;
  white-space: nowrap;
}
.p-entry .p-entryHeading .p-entryHeading__meta .p-entryHeading__time::before {
  position: relative;
  top: -0.1em;
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  content: "";
  background-color: var(--kiosk-light-blue);
  border-radius: 50%;
}
.p-entry .p-entryHeading .p-entryHeading__meta .c-label {
  margin-right: 12px;
  margin-bottom: 15px;
  margin-left: 0;
}
@media (min-width: 768px) {
  .p-entry .p-entryHeading .p-entryHeading__meta .c-label {
    margin-right: 15px;
  }
}
.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 > h2,
.p-entry .p-entry__body > h2 {
  font-weight: 700;
  line-height: 200%;
  color: var(--kiosk-base-text);
  letter-spacing: 1.92px;
}
.p-entry .p-entry__inner > h3,
.p-entry .p-entry__body > h3 {
  padding-bottom: 19px;
  margin-top: 44px;
  margin-bottom: 44px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.025em;
  border-bottom: 2px solid #007db7;
}
.p-entry .p-entry__inner > h4,
.p-entry .p-entry__body > h4 {
  display: flex;
  margin-top: 25px;
  margin-bottom: 12px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  color: #007db7;
  letter-spacing: 0.025em;
}
.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: #007db7;
}
.p-entry .p-entry__inner > h5,
.p-entry .p-entry__body > h5 {
  margin-top: 20px;
  margin-bottom: 16px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.025em;
}
.p-entry .p-entry__inner > h6,
.p-entry .p-entry__body > h6 {
  margin-top: 20px;
  margin-bottom: 16px;
  font-size: 16px;
  font-size: 1rem;
  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: 10.1781170483vw 0;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 240%;
  letter-spacing: 1.92px;
  word-wrap: break-word;
}
@media (min-width: 1024px) {
  .p-entry .p-entry__inner > p,
  .p-entry .p-entry__body > p {
    margin: 40px 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: #007db7;
  text-decoration: none;
}
@media (any-hover: hover) {
  .p-entry .p-entry__inner a:hover,
  .p-entry .p-entry__body a:hover {
    text-decoration: underline;
  }
}
.p-entry .p-entry__inner ul:not([class]),
.p-entry .p-entry__body ul:not([class]) {
  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__body ul:not([class]) > li {
  display: flex;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4;
  word-break: break-all;
}
.p-entry .p-entry__inner ul:not([class]) > li + li,
.p-entry .p-entry__body ul:not([class]) > li + li {
  margin-top: 6px;
}
.p-entry .p-entry__inner ul:not([class]) > li::before,
.p-entry .p-entry__body ul:not([class]) > li::before {
  display: block;
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  margin-top: 0.4em;
  margin-right: 8px;
  content: "";
  background-color: #007db7;
  border-radius: 4px;
}
.p-entry .p-entry__inner ul:not([class]) > li > ul,
.p-entry .p-entry__body ul:not([class]) > li > ul {
  margin-left: 0.5em;
}
.p-entry .p-entry__inner ul:not([class]) > li > ol,
.p-entry .p-entry__body ul:not([class]) > 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: 14px;
  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;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4;
  text-indent: 0;
  letter-spacing: 0.025em;
}
.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;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  content: counter(ol-list) ".";
  counter-increment: ol-list;
}
.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;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  letter-spacing: 0.025em;
}
.p-entry .p-entry__inner > .c-list > li + li,
.p-entry .p-entry__body > .c-list > li + li {
  margin-top: 13px;
}
.p-entry .p-entry__inner > figure:not([class]),
.p-entry .p-entry__body > figure:not([class]) {
  margin-top: 10.1781170483vw;
  margin-bottom: 10.1781170483vw;
}
@media (min-width: 768px) {
  .p-entry .p-entry__inner > figure:not([class]),
  .p-entry .p-entry__body > figure:not([class]) {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media not all and (min-width: 768px) {
  .p-entry .p-entry__inner > figure > img,
  .p-entry .p-entry__inner > p > img,
  .p-entry .p-entry__body > figure > img,
  .p-entry .p-entry__body > p > img {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 768px) {
  .p-entry .p-entry__inner > figure > img,
  .p-entry .p-entry__inner > p > img,
  .p-entry .p-entry__body > figure > img,
  .p-entry .p-entry__body > p > img {
    width: auto;
  }
}
.p-entry .p-entry__inner .p-entry__imageRight,
.p-entry .p-entry__inner .p-entry__imageLeft,
.p-entry .p-entry__body .p-entry__imageRight,
.p-entry .p-entry__body .p-entry__imageLeft {
  font-weight: 500;
  line-height: 240%;
  letter-spacing: 1.92px;
  word-wrap: break-word;
}
.p-entry .p-entry__inner .p-entry__imageRight::after,
.p-entry .p-entry__inner .p-entry__imageLeft::after,
.p-entry .p-entry__body .p-entry__imageRight::after,
.p-entry .p-entry__body .p-entry__imageLeft::after {
  display: block;
  clear: both;
  content: "";
}
@media (min-width: 768px) {
  .p-entry .p-entry__inner .p-entry__imageRight figure,
  .p-entry .p-entry__inner .p-entry__imageLeft figure,
  .p-entry .p-entry__body .p-entry__imageRight figure,
  .p-entry .p-entry__body .p-entry__imageLeft figure {
    display: block;
    width: 50%;
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) {
  .p-entry .p-entry__inner .p-entry__imageRight figure,
  .p-entry .p-entry__body .p-entry__imageRight figure {
    float: right;
    margin-left: 52px;
  }
}
@media (min-width: 768px) {
  .p-entry .p-entry__inner .p-entry__imageLeft figure,
  .p-entry .p-entry__body .p-entry__imageLeft figure {
    float: left;
    margin-right: 52px;
  }
}
.p-entry .p-entry__inner > table,
.p-entry .p-entry__body > table {
  margin-top: 10.1781170483vw;
  margin-bottom: 30px;
  border-color: #d5d5d5 !important;
}
@media (min-width: 768px) {
  .p-entry .p-entry__inner > table,
  .p-entry .p-entry__body > table {
    margin-top: 40px;
  }
}
.p-entry .p-entry__inner > table thead,
.p-entry .p-entry__body > table thead {
  border: none;
}
.p-entry .p-entry__inner > table th,
.p-entry .p-entry__body > table th {
  padding: 16px 20px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
  color: #007db7;
  text-align: left;
  letter-spacing: 0.025em;
  background-color: #ebf9ff;
  border-color: #d5d5d5 !important;
}
.p-entry .p-entry__inner > table td,
.p-entry .p-entry__body > table td {
  padding: 20px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.025em;
  border-color: #d5d5d5 !important;
}
@media not all and (min-width: 768px) {
  .p-entry .p-entry__inner > table table,
  .p-entry .p-entry__body > table table {
    border-right: 1px solid #d5d5d5 !important;
    border-bottom: 1px solid #d5d5d5 !important;
    border-left: 1px solid #d5d5d5 !important;
  }
  .p-entry .p-entry__inner > table th,
  .p-entry .p-entry__inner > table td,
  .p-entry .p-entry__body > table th,
  .p-entry .p-entry__body > table td {
    border: none !important;
    border-top: 1px solid #d5d5d5 !important;
  }
}
@media not all and (min-width: 768px) {
  .p-entry .p-entry__inner > table:not(.c-tableCol) table,
  .p-entry .p-entry__inner > table:not(.c-tableCol) thead,
  .p-entry .p-entry__inner > table:not(.c-tableCol) tbody,
  .p-entry .p-entry__inner > table:not(.c-tableCol) tr,
  .p-entry .p-entry__inner > table:not(.c-tableCol) th,
  .p-entry .p-entry__inner > table:not(.c-tableCol) td,
  .p-entry .p-entry__body > table:not(.c-tableCol) table,
  .p-entry .p-entry__body > table:not(.c-tableCol) thead,
  .p-entry .p-entry__body > table:not(.c-tableCol) tbody,
  .p-entry .p-entry__body > table:not(.c-tableCol) tr,
  .p-entry .p-entry__body > table:not(.c-tableCol) th,
  .p-entry .p-entry__body > table:not(.c-tableCol) td {
    display: block;
    width: 100%;
  }
}
@media not all and (min-width: 768px) {
  .p-entry .p-entry__inner > table.c-tableCol thead,
  .p-entry .p-entry__body > table.c-tableCol thead {
    display: none;
  }
  .p-entry .p-entry__inner > table.c-tableCol table,
  .p-entry .p-entry__inner > table.c-tableCol tr,
  .p-entry .p-entry__inner > table.c-tableCol th,
  .p-entry .p-entry__inner > table.c-tableCol td,
  .p-entry .p-entry__body > table.c-tableCol table,
  .p-entry .p-entry__body > table.c-tableCol tr,
  .p-entry .p-entry__body > table.c-tableCol th,
  .p-entry .p-entry__body > table.c-tableCol td {
    display: block;
    width: 100%;
  }
}
.p-entry .p-entryPagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8.6513994911vw;
  border-top: 1px solid #d5d5d5;
}
@media (min-width: 1024px) {
  .p-entry .p-entryPagination {
    padding-top: 34px;
  }
}
.p-entry .p-entryPagination .p-entryPagination__item a {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  line-height: 1.125;
  text-decoration: none;
  transition: color 0.5s ease-in-out;
}
.p-entry .p-entryPagination .p-entryPagination__item a::before {
  position: absolute;
  top: calc(50% - 1.5267175573vw);
  right: 6.8702290076vw;
  flex-shrink: 0;
  width: 1.7811704835vw;
  height: 3.0534351145vw;
  content: "";
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 7.351 11.872"><path d="M906.948,4498.5l5.229,5.229-5.229,5.229" transform="translate(-906.24 -4497.794)" fill="none" stroke="%23007db7" stroke-width="2"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 768px) {
  .p-entry .p-entryPagination .p-entryPagination__item a::before {
    top: calc(50% - 6px);
    right: 27px;
    width: 7px;
    height: 12px;
  }
}
@media (any-hover: hover) {
  .p-entry .p-entryPagination .p-entryPagination__item a:hover {
    color: #007db7;
  }
}
.p-entry .p-entryPagination .p-entryPagination__item._prev a {
  padding-left: 4.3256997455vw;
}
@media (min-width: 1024px) {
  .p-entry .p-entryPagination .p-entryPagination__item._prev a {
    padding-left: 17px;
  }
}
.p-entry .p-entryPagination .p-entryPagination__item._prev a::before {
  left: 0vw;
  margin-right: 2.5445292621vw;
  transform: rotate(-180deg);
}
@media (min-width: 768px) {
  .p-entry .p-entryPagination .p-entryPagination__item._prev a::before {
    left: 0;
    margin-right: 10px;
  }
}
.p-entry .p-entryPagination .p-entryPagination__item._next a {
  padding-right: 4.3256997455vw;
}
@media (min-width: 1024px) {
  .p-entry .p-entryPagination .p-entryPagination__item._next a {
    padding-right: 17px;
  }
}
.p-entry .p-entryPagination .p-entryPagination__item._next a::before {
  right: 0;
  margin-left: 2.5445292621vw;
}
@media (min-width: 768px) {
  .p-entry .p-entryPagination .p-entryPagination__item._next a::before {
    right: 0;
    margin-left: 10px;
  }
}

.p-introduction {
  padding-bottom: 15.2671755725vw;
}
@media (min-width: 768px) {
  .p-introduction {
    padding-top: 102px;
    padding-bottom: 116px;
  }
}
.p-introduction .p-introduction__lead {
  margin-bottom: 13.4860050891vw;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 168.8%;
  color: var(--kiosk-navy);
  text-align: center;
  letter-spacing: 0.4px;
  word-break: keep-all;
}
@media not all and (min-width: 768px) {
  .p-introduction .p-introduction__lead {
    padding-right: 6.6157760814vw;
    padding-left: 6.6157760814vw;
  }
}
@media (min-width: 768px) {
  .p-introduction .p-introduction__lead {
    margin-bottom: 50px;
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 159.3%;
    letter-spacing: 0.72px;
  }
}
@media not all and (min-width: 768px) {
  .p-introduction .p-introductionEx {
    padding-right: 6.6157760814vw;
    padding-left: 6.6157760814vw;
  }
}
.p-introduction .p-introductionEx .p-introductionEx__text {
  margin-bottom: 9.9236641221vw;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 159.3%;
  color: var(--kiosk-navy);
  text-align: center;
  letter-spacing: 0.36px;
}
@media (min-width: 768px) {
  .p-introduction .p-introductionEx .p-introductionEx__text {
    margin-bottom: 52px;
    font-size: 24px;
    font-size: 1.5rem;
    letter-spacing: 0.48px;
  }
}
@media (min-width: 768px) {
  .p-introduction .p-introductionEx .p-introductionEx__list {
    display: grid;
    grid-template-columns: repeat(3, 29.0322580645%);
    gap: 6.4516129032%;
  }
}
.p-introduction .p-introductionEx .p-introductionEx__item {
  display: flex;
  flex-direction: column-reverse;
}
@media not all and (min-width: 768px) {
  .p-introduction .p-introductionEx .p-introductionEx__item + .p-introductionEx__item {
    margin-top: 13.9949109415vw;
  }
}
.p-introduction .p-introductionEx .p-introductionEx__body {
  margin-top: 4.3256997455vw;
}
@media (min-width: 768px) {
  .p-introduction .p-introductionEx .p-introductionEx__body {
    margin-top: 30px;
    margin-bottom: auto;
  }
}
.p-introduction .p-introductionEx .p-introductionEx__body dt {
  margin-bottom: 24px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--kiosk-navy);
  text-align: center;
  letter-spacing: 2px;
}
.p-introduction .p-introductionEx .p-introductionEx__body dd {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.68px;
}
.p-introduction .p-introductionEx .p-introductionEx__image {
  aspect-ratio: 339/180;
  overflow-y: hidden;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .p-introduction .p-introductionEx .p-introductionEx__image {
    aspect-ratio: 1/1;
  }
}
.p-introduction .p-introductionEx .p-introductionEx__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
}
.p-introduction .p-introductionContact {
  display: grid;
  padding-top: 7.1246819338vw;
  padding-bottom: 9.4147582697vw;
  margin-top: 17.3027989822vw;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media not all and (min-width: 768px) {
  .p-introduction .p-introductionContact {
    margin-right: 6.6157760814vw;
    margin-left: 6.6157760814vw;
  }
}
@media (min-width: 768px) {
  .p-introduction .p-introductionContact {
    grid-template-columns: 50% 50%;
    padding-top: 60px;
    padding-bottom: 51px;
    margin-top: 108px;
  }
}
.p-introduction .p-introductionContact .p-introductionContact__body {
  order: 1;
}
@media (min-width: 768px) {
  .p-introduction .p-introductionContact .p-introductionContact__body {
    padding-left: 7.7419354839%;
  }
}
.p-introduction .p-introductionContact .p-introductionContact__body p {
  margin-bottom: 4.834605598vw;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 180%;
  color: var(--kiosk-navy);
  letter-spacing: 0.4px;
}
@media (min-width: 768px) {
  .p-introduction .p-introductionContact .p-introductionContact__body p {
    margin-bottom: 30px;
    font-size: 24px;
    font-size: 1.5rem;
    letter-spacing: 0.48px;
  }
}
@media not all and (min-width: 768px) {
  .p-introduction .p-introductionContact .p-introductionContact__body .c-buttonWrap {
    padding-right: 7.6335877863vw;
    padding-left: 7.6335877863vw;
  }
}
.p-introduction .p-introductionContact .p-introductionContact__image {
  order: 2;
}
@media not all and (min-width: 768px) {
  .p-introduction .p-introductionContact .p-introductionContact__image {
    margin-top: 8.6513994911vw;
  }
}
@media (min-width: 768px) {
  .p-introduction .p-introductionContact .p-introductionContact__image {
    padding-right: 11.1290322581%;
    text-align: right;
  }
}
@media not all and (min-width: 768px) {
  .p-introduction .p-introductionFlowWrap {
    padding-right: 6.6157760814vw;
    padding-left: 6.6157760814vw;
  }
}
.p-introduction .p-introductionFlow {
  padding-top: 20.3562340967vw;
  padding-bottom: 15.7760814249vw;
  margin-top: 21.6284987277vw;
}
@media (min-width: 768px) {
  .p-introduction .p-introductionFlow {
    padding-top: 80px;
    padding-bottom: 106px;
    margin-top: 94px;
  }
}
.p-introduction .p-introductionFlow .p-introductionFlow__list .flow + .flow {
  margin-top: 3.0534351145vw;
}
@media (min-width: 768px) {
  .p-introduction .p-introductionFlow .p-introductionFlow__list .flow + .flow {
    margin-top: 28px;
  }
}
.p-introduction .p-introductionFlow .p-introductionFlow__list .flow + .flow::before {
  display: block;
  width: 40px;
  height: 40px;
  margin: 15px auto 10px;
  content: "";
  background: url("../img/common/arrow_flow.svg") no-repeat 50% 50%;
  background-size: cover;
}
@media (min-width: 768px) {
  .p-introduction .p-introductionFlow .p-introductionFlow__list .flow + .flow::before {
    width: 68px;
    height: 68px;
    margin: 28px auto 0;
  }
}
.p-introduction .p-introductionFlow .p-introductionFlow__list .flow .flow__inner {
  display: grid;
  grid-template-columns: 17.3027989822vw 1fr;
  gap: 4.5801526718vw;
}
@media (min-width: 768px) {
  .p-introduction .p-introductionFlow .p-introductionFlow__list .flow .flow__inner {
    grid-template-columns: 132px 1fr;
    gap: 40px;
    align-items: center;
  }
}
.p-introduction .p-introductionFlow .p-introductionFlow__list .flow .flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 17.3027989822vw;
  height: 17.8117048346vw;
  font-family: Roboto, sans-serif;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
  background: url("../img/introduction_support/image_balloon.svg") no-repeat 50% 50%;
  background-size: cover;
}
@media (min-width: 768px) {
  .p-introduction .p-introductionFlow .p-introductionFlow__list .flow .flow__step {
    width: 132px;
    height: 137px;
  }
}
.p-introduction .p-introductionFlow .p-introductionFlow__list .flow .flow__step span {
  display: block;
  font-size: 9.5px;
  font-size: 0.59375rem;
  letter-spacing: 0.572px;
}
@media (min-width: 768px) {
  .p-introduction .p-introductionFlow .p-introductionFlow__list .flow .flow__step span {
    font-size: 18.4px;
    font-size: 1.15rem;
  }
}
.p-introduction .p-introductionFlow .p-introductionFlow__list .flow .flow__step em {
  display: block;
  font-size: 32.5px;
  font-size: 2.03125rem;
  font-style: normal;
}
@media (min-width: 768px) {
  .p-introduction .p-introductionFlow .p-introductionFlow__list .flow .flow__step em {
    font-size: 62.9px;
    font-size: 3.93125rem;
  }
}
.p-introduction .p-introductionFlow .p-introductionFlow__list .flow .flow__body dt {
  margin-bottom: 3.8167938931vw;
  font-size: 23.3px;
  font-size: 1.45625rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--kiosk-navy);
  letter-spacing: 2.335px;
}
@media (min-width: 768px) {
  .p-introduction .p-introductionFlow .p-introductionFlow__list .flow .flow__body dt {
    margin-bottom: 20px;
    font-size: 28px;
    font-size: 1.75rem;
    letter-spacing: 2.8px;
  }
}
.p-introduction .p-introductionFlow .p-introductionFlow__list .flow .flow__body dd {
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.92px;
}

@media not all and (min-width: 768px) {
  .p-news {
    padding-right: 6.6157760814vw;
    padding-bottom: 15.2671755725vw;
    padding-left: 6.6157760814vw;
  }
}
@media (min-width: 768px) {
  .p-news {
    padding-top: 77px;
    padding-bottom: 104px;
  }
}

@media not all and (min-width: 768px) {
  .p-newsSearch {
    margin: 11.9592875318vw 0 0;
  }
}
@media (min-width: 768px) {
  .p-newsSearch {
    padding-right: 26px;
    padding-left: 26px;
    margin-top: 116px;
  }
}
.p-newsSearch._detail {
  margin-right: 6.6157760814vw;
  margin-bottom: 13.2315521628vw;
  margin-left: 6.6157760814vw;
}
@media (min-width: 768px) {
  .p-newsSearch._detail {
    margin-top: 104px;
    margin-bottom: 105px;
  }
}
.p-newsSearch .p-newsSearch__inner {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 11px 5px rgba(0, 0, 0, 0.1);
}
@media not all and (min-width: 768px) {
  .p-newsSearch .p-newsSearch__inner {
    padding: 8.1424936387vw 8.1424936387vw 9.6692111959vw;
  }
}
@media (min-width: 768px) {
  .p-newsSearch .p-newsSearch__inner {
    display: grid;
    grid-template-columns: 1fr 43.956043956%;
    padding: 44px 48px 26px;
  }
}
@media not all and (min-width: 768px) {
  .p-newsSearch .p-newsSearchList {
    margin-left: -10px;
  }
}
.p-newsSearch .p-newsSearchList__item {
  display: inline-block;
  margin-right: 9px;
  margin-bottom: 16px;
}
.p-newsSearch .p-newsSearchList__item a {
  margin-left: 0;
  color: var(--kiosk-navy);
  text-decoration: none;
}
@media (any-hover: hover) {
  .p-newsSearch .p-newsSearchList__item a {
    transition: opacity 0.5s ease-in-out;
  }
  .p-newsSearch .p-newsSearchList__item a:hover {
    opacity: 0.7;
  }
}
.p-newsSearch .p-newsSearchCategories .p-newsSearchCategories__title {
  margin-bottom: 26px;
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 120%;
  color: var(--kiosk-light-blue);
  text-transform: uppercase;
  letter-spacing: 3.2px;
}
@media (min-width: 768px) {
  .p-newsSearch .p-newsSearchCategories .p-newsSearchCategories__body {
    align-self: center;
  }
}
@media not all and (min-width: 768px) {
  .p-newsSearch .p-newsSearchArchives {
    margin-top: 1.272264631vw;
  }
}
.p-newsSearch .p-newsSearchArchives .p-newsSearchArchives__title {
  margin-bottom: 2.7989821883vw;
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 120%;
  color: var(--kiosk-light-blue);
  text-transform: uppercase;
  letter-spacing: 3.2px;
}
@media (min-width: 768px) {
  .p-newsSearch .p-newsSearchArchives .p-newsSearchArchives__title {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .p-newsSearch .p-newsSearchArchives .p-newsSearchArchives__body {
    align-self: center;
  }
}
.p-newsSearch .p-newsSearchArchives .p-newsSearchArchives__body .c-naviSelect {
  margin-top: 0;
  border-color: #ccc;
  border-radius: 8px;
}
.p-newsSearch .p-newsSearchArchives .p-newsSearchArchives__body .c-naviSelect .c-naviSelect__select {
  font-weight: 500;
  letter-spacing: 1.92px;
}
@media (min-width: 768px) {
  .p-newsSearch .p-newsSearchArchives .p-newsSearchArchives__body .c-naviSelect .c-naviSelect__select {
    height: 59px;
    border-radius: 8px;
  }
}
@media (min-width: 768px) {
  .p-news .c-pagination._detail + .p-newsSearch {
    margin-top: 90px;
  }
}

@media (min-width: 768px) {
  .p-partner {
    padding-top: 107px;
  }
}
@media not all and (min-width: 768px) {
  .p-partner .p-partnerContact {
    padding-top: 2.5445292621vw;
    padding-bottom: 15.7760814249vw;
  }
}
@media (min-width: 768px) {
  .p-partner .p-partnerContact {
    padding-bottom: 76px;
  }
}
.p-partner .p-partnerContact .p-partnerContact__heading {
  margin-bottom: 19.5928753181vw;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 159.3%;
  color: var(--kiosk-navy);
  text-align: center;
  letter-spacing: 0.4px;
}
@media not all and (min-width: 768px) {
  .p-partner .p-partnerContact .p-partnerContact__heading {
    padding-right: 6.6157760814vw;
    padding-left: 6.6157760814vw;
  }
}
@media (min-width: 768px) {
  .p-partner .p-partnerContact .p-partnerContact__heading {
    margin-bottom: 44px;
    font-size: 36px;
    font-size: 2.25rem;
    letter-spacing: 0.72px;
  }
}
.p-partner .p-partnerContact .p-partnerContact__image {
  position: relative;
}
@media (min-width: 768px) {
  .p-partner .p-partnerContact .p-partnerContact__image {
    padding: 0 20px;
  }
}
.p-partner .p-partnerContact .p-partnerContact__image .logo {
  position: absolute;
  top: 17.3027989822vw;
  z-index: 1;
  display: block;
}
@media (min-width: 768px) {
  .p-partner .p-partnerContact .p-partnerContact__image .logo {
    top: 32.183908046%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-partner .p-partnerContact .p-partnerContact__image .staff {
  position: relative;
  z-index: 2;
  display: block;
  width: 93.6386768448vw;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .p-partner .p-partnerContact .p-partnerContact__image .staff {
    max-width: 671px;
  }
}
.p-partner .p-partnerContact .p-partnerContact__text {
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.92px;
}
@media not all and (min-width: 768px) {
  .p-partner .p-partnerContact .p-partnerContact__text {
    padding-right: 6.6157760814vw;
    padding-left: 6.6157760814vw;
    margin-top: 19.0839694656vw;
    margin-bottom: 11.4503816794vw;
  }
}
@media (min-width: 768px) {
  .p-partner .p-partnerContact .p-partnerContact__text {
    margin-top: 53px;
    margin-bottom: 48px;
    text-align: center;
  }
}
@media not all and (min-width: 768px) {
  .p-partner .p-partnerContact .c-buttonWrap {
    margin-right: 6.6157760814vw;
    margin-left: 6.6157760814vw;
  }
  .p-partner .p-partnerContact .c-buttonWrap .c-button {
    min-height: 21.6284987277vw;
  }
}
.p-partner .p-partnerProgram {
  padding-top: 20.3562340967vw;
  padding-bottom: 15.7760814249vw;
}
@media (min-width: 768px) {
  .p-partner .p-partnerProgram {
    padding-top: 91px;
    padding-bottom: 107px;
  }
}
@media not all and (min-width: 768px) {
  .p-partner .p-partnerProgram .c-heading01 {
    margin-bottom: 13.2315521628vw;
  }
}
@media not all and (min-width: 768px) {
  .p-partner .p-partnerProgram .p-partnerProgram__list {
    padding-right: 6.6157760814vw;
    padding-left: 6.6157760814vw;
    margin-bottom: 16.7938931298vw;
  }
}
@media (min-width: 768px) {
  .p-partner .p-partnerProgram .p-partnerProgram__list {
    display: grid;
    grid-template-columns: repeat(3, 31.1418685121%);
    gap: 38px;
    max-width: 1156px;
    margin-right: auto;
    margin-bottom: 98px;
    margin-left: auto;
  }
}
.p-partner .p-partnerProgram .p-partnerProgram__item {
  display: flex;
  flex-direction: column-reverse;
  padding: 8.3969465649vw 6.6157760814vw;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 11px 5px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .p-partner .p-partnerProgram .p-partnerProgram__item {
    padding: 0 37px 63px;
  }
}
@media not all and (min-width: 768px) {
  .p-partner .p-partnerProgram .p-partnerProgram__item + .p-partnerProgram__item {
    margin-top: 8.1424936387vw;
  }
}
.p-partner .p-partnerProgram .p-partnerProgram__body {
  margin-bottom: auto;
}
.p-partner .p-partnerProgram .p-partnerProgram__body dt {
  margin-bottom: 5.8524173028vw;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--kiosk-navy);
  text-align: center;
  letter-spacing: 2px;
}
@media (min-width: 768px) {
  .p-partner .p-partnerProgram .p-partnerProgram__body dt {
    margin-bottom: 23px;
  }
}
.p-partner .p-partnerProgram .p-partnerProgram__body dd {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.68px;
}
.p-partner .p-partnerProgram .p-partnerProgram__image {
  display: block;
  text-align: center;
}
@media not all and (min-width: 768px) {
  .p-partner .p-partnerProgram .p-partnerProgram__image {
    margin-bottom: 7.6335877863vw;
  }
}
@media (min-width: 768px) {
  .p-partner .p-partnerProgram .p-partnerProgram__image {
    box-sizing: border-box;
    height: 228px;
    padding-top: 65px;
  }
}
@media not all and (min-width: 768px) {
  .p-partner .p-partnerProgram .p-partnerProgram__image img {
    width: auto;
    height: 28.7531806616vw;
  }
  .p-partner .p-partnerProgram .p-partnerProgram__image img[src$="img_program_03.svg"] {
    height: 25.9541984733vw;
  }
}
.p-partner .p-partnerProgram .p-partnerProgram__heading {
  margin-bottom: 9.4147582697vw;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 159.3%;
  color: var(--kiosk-navy);
  text-align: center;
  letter-spacing: 0.36px;
}
@media (min-width: 768px) {
  .p-partner .p-partnerProgram .p-partnerProgram__heading {
    margin-bottom: 54px;
    font-size: 28px;
    font-size: 1.75rem;
    letter-spacing: 0.56px;
  }
}
.p-partner .p-partner__table {
  width: 100%;
}
.p-partner .p-partner__table .p-partner__tableRow {
  width: 28.7096774194%;
}
.p-partner .p-partner__table .p-partner__tableCol {
  width: 17.7419354839%;
}
.p-partner .p-partner__table thead th {
  border-left: 1px solid var(--kiosk-ultra-light-blue);
}
.p-partner .p-partner__table thead th span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 27px;
  padding-bottom: 23px;
  overflow: hidden;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 20px;
  color: #fff;
  letter-spacing: 1.8px;
  border-radius: 8px 8px 0 0;
}
.p-partner .p-partner__table thead th:nth-child(2) span {
  background-color: #1b7b83;
}
.p-partner .p-partner__table thead th:nth-child(3) span {
  background-color: #29789b;
}
.p-partner .p-partner__table thead th:nth-child(4) span {
  background-color: #509cbd;
}
.p-partner .p-partner__table thead th:nth-child(5) span {
  background-color: #79b8d3;
}
.p-partner .p-partner__table tbody th,
.p-partner .p-partner__table tbody td {
  border-bottom: 1px solid #a8c9da;
}
.p-partner .p-partner__table tbody th {
  font-weight: 700;
  line-height: 180%;
  text-align: left;
  letter-spacing: 1.92px;
}
.p-partner .p-partner__table tbody td {
  padding: 28px 5px;
  text-align: center;
  background: #fff;
  border-left: 1px solid var(--kiosk-ultra-light-blue);
}
.p-partner .p-partner__table tbody td p {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 180%;
  text-align: center;
}
.p-partner .p-partner__table tbody td:nth-of-type(1) .c-icon__circle {
  border-color: #1b7b83;
}
.p-partner .p-partner__table tbody td:nth-of-type(1) .c-icon__triangle {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38.1 33"><path d="M38.1,33H0L19.1,0ZM5.2,30H32.9L19.1,6Z" fill="%231b7b83"/></svg>');
}
.p-partner .p-partner__table tbody td:nth-of-type(1) p {
  color: #1b7b83;
}
.p-partner .p-partner__table tbody td:nth-of-type(2) .c-icon__circle {
  border-color: #29789b;
}
.p-partner .p-partner__table tbody td:nth-of-type(2) .c-icon__triangle {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38.1 33"><path d="M38.1,33H0L19.1,0ZM5.2,30H32.9L19.1,6Z" fill="%2329789b"/></svg>');
}
.p-partner .p-partner__table tbody td:nth-of-type(2) p {
  color: #29789b;
}
.p-partner .p-partner__table tbody td:nth-of-type(3) .c-icon__circle {
  border-color: #509cbd;
}
.p-partner .p-partner__table tbody td:nth-of-type(3) .c-icon__triangle {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38.1 33"><path d="M38.1,33H0L19.1,0ZM5.2,30H32.9L19.1,6Z" fill="%23509cbd"/></svg>');
}
.p-partner .p-partner__table tbody td:nth-of-type(3) p {
  color: #509cbd;
}
.p-partner .p-partner__table tbody td:nth-of-type(4) .c-icon__circle {
  border-color: #79b8d3;
}
.p-partner .p-partner__table tbody td:nth-of-type(4) .c-icon__triangle {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38.1 33"><path d="M38.1,33H0L19.1,0ZM5.2,30H32.9L19.1,6Z" fill="%2379b8d3"/></svg>');
}
.p-partner .p-partner__table tbody td:nth-of-type(4) p {
  color: #79b8d3;
}
.p-partner .p-partnerRole {
  padding-right: 6.6157760814vw;
  padding-left: 6.6157760814vw;
}
.p-partner .p-partnerRole + .p-partnerRole {
  margin-top: 6.3613231552vw;
}
.p-partner .p-partnerRole .p-partnerRole__item dt {
  padding: 6.3613231552vw 1.272264631vw 5.0890585242vw;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  letter-spacing: 1.8px;
  border-radius: 8px 8px 0 0;
}
.p-partner .p-partnerRole .p-partnerRole__item dd {
  display: grid;
  grid-template-columns: 4.0712468193vw 1fr;
  gap: 3.8167938931vw;
  align-items: center;
  padding: 6.106870229vw 4.5801526718vw 1.5267175573vw;
  background-color: #fff;
}
@media not all and (min-width: 768px) {
  .p-partner .p-partnerRole .p-partnerRole__item dd:last-child {
    padding-bottom: 5.5979643766vw;
  }
}
.p-partner .p-partnerRole .p-partnerRole__item dd + dd {
  padding-top: 2.2900763359vw;
}
.p-partner .p-partnerRole:nth-child(1) dt {
  background-color: #1b7b83;
}
.p-partner .p-partnerRole:nth-child(1) dd .c-icon__circle {
  border-color: #1b7b83;
}
.p-partner .p-partnerRole:nth-child(1) dd .c-icon__triangle {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38.1 33"><path d="M38.1,33H0L19.1,0ZM5.2,30H32.9L19.1,6Z" fill="%231b7b83"/></svg>');
}
.p-partner .p-partnerRole:nth-child(1) dd p {
  color: #1b7b83;
}
.p-partner .p-partnerRole:nth-child(2) dt {
  background-color: #29789b;
}
.p-partner .p-partnerRole:nth-child(2) dd .c-icon__circle {
  border-color: #29789b;
}
.p-partner .p-partnerRole:nth-child(2) dd .c-icon__triangle {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38.1 33"><path d="M38.1,33H0L19.1,0ZM5.2,30H32.9L19.1,6Z" fill="%2329789b"/></svg>');
}
.p-partner .p-partnerRole:nth-child(2) dd p {
  color: #29789b;
}
.p-partner .p-partnerRole:nth-child(3) dt {
  background-color: #509cbd;
}
.p-partner .p-partnerRole:nth-child(3) dd .c-icon__circle {
  border-color: #509cbd;
}
.p-partner .p-partnerRole:nth-child(3) dd .c-icon__triangle {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38.1 33"><path d="M38.1,33H0L19.1,0ZM5.2,30H32.9L19.1,6Z" fill="%23509cbd"/></svg>');
}
.p-partner .p-partnerRole:nth-child(3) dd p {
  color: #509cbd;
}
.p-partner .p-partnerRole:nth-child(4) dt {
  background-color: #79b8d3;
}
.p-partner .p-partnerRole:nth-child(4) dd .c-icon__circle {
  border-color: #79b8d3;
}
.p-partner .p-partnerRole:nth-child(4) dd .c-icon__triangle {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38.1 33"><path d="M38.1,33H0L19.1,0ZM5.2,30H32.9L19.1,6Z" fill="%2379b8d3"/></svg>');
}
.p-partner .p-partnerRole:nth-child(4) dd p {
  color: #79b8d3;
}
.p-partner .p-partnerPointWrap {
  padding-top: 20.3562340967vw;
}
@media (min-width: 768px) {
  .p-partner .p-partnerPointWrap {
    padding-top: 98px;
    padding-bottom: 121px;
  }
}
@media not all and (min-width: 768px) {
  .p-partner .p-partnerPoint .c-heading01 {
    margin-bottom: 15.2671755725vw;
  }
}
@media not all and (min-width: 768px) {
  .p-partner .p-partnerPoint .p-partnerPoint__list {
    padding-right: 6.6157760814vw;
    padding-bottom: 22.1374045802vw;
    padding-left: 6.6157760814vw;
  }
}
@media (min-width: 768px) {
  .p-partner .p-partnerPoint .p-partnerPoint__list {
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 768px) {
  .p-partner .p-partnerPoint .p-partnerPoint__list .point {
    position: relative;
    display: grid;
    grid-template-columns: 9.5% 1fr;
    gap: 3.7%;
    align-items: center;
    min-height: 101px;
  }
}
.p-partner .p-partnerPoint .p-partnerPoint__list .point + .point {
  margin-top: 13.9949109415vw;
}
@media (min-width: 768px) {
  .p-partner .p-partnerPoint .p-partnerPoint__list .point + .point {
    margin-top: 90px;
  }
}
.p-partner .p-partnerPoint .p-partnerPoint__list .point .point__point {
  font-family: Roboto, sans-serif;
  font-weight: 500;
  color: var(--kiosk-light-blue);
}
@media not all and (min-width: 768px) {
  .p-partner .p-partnerPoint .p-partnerPoint__list .point .point__point {
    margin-bottom: 3.8167938931vw;
  }
}
@media (min-width: 768px) {
  .p-partner .p-partnerPoint .p-partnerPoint__list .point .point__point {
    position: relative;
    top: 9px;
  }
}
.p-partner .p-partnerPoint .p-partnerPoint__list .point .point__point span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11.7px;
  font-size: 0.73125rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.703px;
}
@media (min-width: 768px) {
  .p-partner .p-partnerPoint .p-partnerPoint__list .point .point__point span {
    font-size: 15.9px;
    font-size: 0.99375rem;
  }
}
.p-partner .p-partnerPoint .p-partnerPoint__list .point .point__point span::before, .p-partner .p-partnerPoint .p-partnerPoint__list .point .point__point span::after {
  display: inline-block;
  width: 1px;
  height: 13px;
  content: "";
  background-color: var(--kiosk-light-blue);
}
@media (min-width: 768px) {
  .p-partner .p-partnerPoint .p-partnerPoint__list .point .point__point span::before, .p-partner .p-partnerPoint .p-partnerPoint__list .point .point__point span::after {
    height: 17px;
  }
}
.p-partner .p-partnerPoint .p-partnerPoint__list .point .point__point span::before {
  margin-right: 5px;
  transform: rotate(-24deg);
}
@media (min-width: 768px) {
  .p-partner .p-partnerPoint .p-partnerPoint__list .point .point__point span::before {
    margin-right: 10px;
  }
}
.p-partner .p-partnerPoint .p-partnerPoint__list .point .point__point span::after {
  margin-left: 5px;
  transform: rotate(24deg);
}
@media (min-width: 768px) {
  .p-partner .p-partnerPoint .p-partnerPoint__list .point .point__point span::after {
    margin-left: 10px;
  }
}
.p-partner .p-partnerPoint .p-partnerPoint__list .point .point__point em {
  display: block;
  font-family: Roboto, sans-serif;
  font-size: 60.9px;
  font-size: 3.80625rem;
  font-style: normal;
  font-weight: 500;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .p-partner .p-partnerPoint .p-partnerPoint__list .point .point__point em {
    font-size: 82.7px;
    font-size: 5.16875rem;
  }
}
.p-partner .p-partnerPoint .p-partnerPoint__list .point .point__body {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 180%;
  color: var(--kiosk-navy);
  letter-spacing: 2.16px;
}
@media (min-width: 768px) {
  .p-partner .p-partnerPoint .p-partnerPoint__list .point .point__body {
    align-self: center;
    padding-left: 44px;
    font-size: 24px;
    font-size: 1.5rem;
    letter-spacing: 2.88px;
  }
  .p-partner .p-partnerPoint .p-partnerPoint__list .point .point__body::before {
    position: absolute;
    top: 0;
    display: block;
    width: 1px;
    height: 100%;
    margin-left: -44px;
    content: "";
    background-color: #4793b4;
  }
}
.p-partner .p-partnerPoint .p-partnerPoint__list .point .point__body .point__bodyMarker {
  background-image: linear-gradient(#fecad7, #fecad7);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 6px;
  transition: background-size 0.3s ease-out;
}
.p-partner .p-partnerPoint .p-partnerPoint__list .point.-inview .point__body .point__bodyMarker {
  background-position: bottom left;
  background-size: 100% 6px;
  transition-delay: 1s;
}

@media not all and (min-width: 768px) {
  .p-partner .p-partnerAboutWrap {
    padding: 18.320610687vw 6.6157760814vw 20.3562340967vw;
  }
}
@media (min-width: 768px) {
  .p-partner .p-partnerAboutWrap {
    padding-top: 120px;
    padding-bottom: 112px;
  }
}
@media (min-width: 768px) {
  .p-partner .p-partnerAbout .c-heading01 {
    margin-bottom: 36px;
  }
}
.p-partner .p-partnerAbout .p-partnerAbout__lead {
  margin-bottom: 22px;
  font-weight: 500;
  line-height: 240%;
  letter-spacing: 1.92px;
}
@media (min-width: 768px) {
  .p-partner .p-partnerAbout .p-partnerAbout__lead {
    margin-bottom: 53px;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .p-partner .p-partnerAbout .p-partnerAbout__list {
    display: grid;
    grid-template-columns: repeat(3, 30.9544282029%);
    gap: 3.2674118659%;
    max-width: 1163px;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-partner .p-partnerAbout .p-partnerAbout__item {
  padding: 11px 0 34px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 11px 5px rgba(0, 0, 0, 0.1);
}
@media not all and (min-width: 768px) {
  .p-partner .p-partnerAbout .p-partnerAbout__item + .p-partnerAbout__item {
    margin-top: 32px;
  }
}
.p-partner .p-partnerAbout .p-partnerAbout__itemInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media not all and (min-width: 768px) {
  .p-partner .p-partnerAbout .p-partnerAbout__itemInner {
    min-height: 464px;
  }
}
@media (min-width: 768px) {
  .p-partner .p-partnerAbout .p-partnerAbout__itemInner {
    height: 100%;
  }
}
.p-partner .p-partnerAbout .p-partnerAbout__body {
  margin-bottom: 27px;
}
@media (min-width: 768px) {
  .p-partner .p-partnerAbout .p-partnerAbout__body {
    margin-bottom: 27px;
  }
}
.p-partner .p-partnerAbout .p-partnerAbout__name {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 70px;
  color: var(--kiosk-navy);
  text-align: center;
}
.p-partner .p-partnerAbout .p-partnerAbout__name::after {
  display: block;
  width: 0;
  height: 0;
  margin-top: -13px;
  margin-right: auto;
  margin-left: auto;
  content: "";
  border-color: var(--kiosk-light-blue) transparent transparent transparent;
  border-style: solid;
  border-width: 12px 10.5px 0;
}
@media (min-width: 768px) {
  .p-partner .p-partnerAbout .p-partnerAbout__name::after {
    margin-top: -13px;
  }
}
@media not all and (min-width: 768px) {
  .p-partner .p-partnerAbout .p-partnerAbout__image {
    height: auto;
  }
  .p-partner .p-partnerAbout .p-partnerAbout__image._kiosk {
    width: 33.3333333333vw;
  }
  .p-partner .p-partnerAbout .p-partnerAbout__image._desktop {
    width: 60.8142493639vw;
  }
  .p-partner .p-partnerAbout .p-partnerAbout__image._pos {
    width: 61.3231552163vw;
  }
}
.p-partner .p-partnerAbout .c-buttonWrap {
  box-sizing: border-box;
  width: 100%;
  padding: 0 7.6335877863vw;
  margin-top: 7.1246819338vw;
}
@media (min-width: 768px) {
  .p-partner .p-partnerAbout .c-buttonWrap {
    padding: 0 15px;
    margin-top: 28px;
  }
}

.p-policy {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 1.68px;
}
@media not all and (min-width: 768px) {
  .p-policy {
    padding-right: 6.6157760814vw;
    padding-bottom: 15.2671755725vw;
    padding-left: 6.6157760814vw;
  }
}
@media (min-width: 768px) {
  .p-policy {
    padding-top: 68px;
    padding-bottom: 116px;
  }
}
.p-policy > p {
  margin-bottom: 26px;
}
.p-policy .p-policy__section + .p-policy__section {
  margin-top: 34px;
}
.p-policy .p-policy__section > h2 {
  margin-bottom: 7px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 200%;
  color: var(--kiosk-base-text);
  letter-spacing: 1.92px;
}
.p-policy .p-policy__section > p:not(:last-child) {
  margin-bottom: 16px;
}
.p-policy .p-policy__section ul:not([class]) {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0.3em;
}
.p-policy .p-policy__section ul:not([class]) > li {
  display: flex;
  line-height: 1.4;
  word-break: break-all;
}
.p-policy .p-policy__section ul:not([class]) > li + li {
  margin-top: 6px;
}
.p-policy .p-policy__section ul:not([class]) > li::before {
  display: block;
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  margin-top: 0.4em;
  margin-right: 8px;
  content: "";
  background-color: #007db7;
  border-radius: 4px;
}
.p-policy .p-policy__section ul:not([class]) > li > ul {
  margin-left: 0.5em;
}
.p-policy .p-policy__section ul:not([class]) > li > ol {
  margin-left: 1.5em;
}
.p-policy .p-policy__section ol:not([class]) {
  margin-top: 0;
  margin-bottom: 0;
  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-policy .p-policy__section ol:not([class]) > li {
  position: relative;
  padding-left: 20px;
  line-height: 1.4;
  text-indent: 0;
  letter-spacing: 0.025em;
}
.p-policy .p-policy__section ol:not([class]) > li + li {
  margin-top: 6px;
}
.p-policy .p-policy__section 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;
  line-height: 1;
  content: counter(ol-list) ".";
  counter-increment: ol-list;
}
.p-policy .c-boxBgGray {
  margin-bottom: 43px;
}

.p-topMainVisual {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
}
@media not all and (min-width: 1024px) {
  .p-topMainVisual {
    margin-top: -98px;
  }
}
.p-topMainVisual::before {
  position: absolute;
  z-index: 2;
  display: block;
  aspect-ratio: 121/116;
  pointer-events: none;
  content: "";
  background: url("../img/common/image_dots.svg") no-repeat 50% 50%;
  background-size: cover;
  animation: blink02 5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}
@media not all and (min-width: 1024px) {
  .p-topMainVisual::before {
    display: none;
  }
}
@media (min-width: 1024px) {
  .p-topMainVisual::before {
    top: 14.2666666667vw;
    left: 3.5333333333vw;
    width: 8.0666666667vw;
  }
}
.p-topMainVisual::after {
  position: absolute;
  top: 45.2926208651vw;
  left: 22.9007633588vw;
  z-index: 1;
  display: block;
  width: 30.0254452926vw;
  aspect-ratio: 479/497;
  pointer-events: none;
  content: "";
  background: url("../img/top/image_balloon.svg") no-repeat 50% 50%;
  background-size: cover;
}
@media (min-width: 1024px) {
  .p-topMainVisual::after {
    top: 23.6vw;
    left: 6.4vw;
    width: 31.9333333333vw;
  }
}
.p-topMainVisual .p-topMainVisual__body {
  position: relative;
  z-index: 5;
}
@media not all and (min-width: 1024px) {
  .p-topMainVisual .p-topMainVisual__body {
    margin-top: 89.8218829517vw;
  }
}
@media (min-width: 1024px) {
  .p-topMainVisual .p-topMainVisual__body {
    margin-top: 27.3333333333vw;
  }
}
@media (min-width: 1024px) {
  .p-topMainVisual .p-topMainVisual__bodyInner {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 6.4vw;
    padding-left: 52px;
    margin-top: auto;
  }
}
.p-topMainVisual .p-topMainVisual__lead {
  font-size: 6.9333333333vw;
  font-weight: 700;
  line-height: 1;
  color: var(--kiosk-navy);
  letter-spacing: 5.2px;
}
@media not all and (min-width: 1024px) {
  .p-topMainVisual .p-topMainVisual__lead {
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .p-topMainVisual .p-topMainVisual__lead {
    margin-bottom: 2.1333333333vw;
    font-size: 5.4166666667vw;
    letter-spacing: 13px;
  }
}
@media (min-width: 1024px) {
  .p-topMainVisual .p-topMainVisual__lead {
    font-size: 65px;
    font-size: 4.0625rem;
  }
}
.p-topMainVisual .p-topMainVisual__lead em {
  font-style: normal;
  color: var(--kiosk-light-blue);
}
@media not all and (min-width: 1024px) {
  .p-topMainVisual .p-topMainVisual__lead:not([lang=en]) {
    padding-right: 1.272264631vw;
    padding-left: 6.6157760814vw;
    margin-bottom: 3.0534351145vw;
  }
}
.p-topMainVisual .p-topMainVisual__lead[lang=en] {
  font-family: Lato, sans-serif;
  font-size: 3.7333333333vw;
  font-weight: 400;
  line-height: 120%;
  color: var(--kiosk-base-text);
  letter-spacing: 0.91px;
}
@media not all and (min-width: 1024px) {
  .p-topMainVisual .p-topMainVisual__lead[lang=en] {
    padding-right: 6.6157760814vw;
    padding-left: 6.6157760814vw;
    margin-bottom: 7.3791348601vw;
  }
}
@media (min-width: 1024px) {
  .p-topMainVisual .p-topMainVisual__lead[lang=en] {
    margin-bottom: 2.6666666667vw;
    margin-left: 5px;
    font-size: 1.75vw;
    letter-spacing: 1.365px;
  }
}
@media (min-width: 1024px) {
  .p-topMainVisual .p-topMainVisual__lead[lang=en] {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}
@media not all and (min-width: 1024px) {
  .p-topMainVisual .c-buttonWrap {
    width: 70.737913486vw;
    margin: 0 auto;
  }
}
@media not all and (min-width: 1024px) {
  .p-topMainVisual .p-topMainVisual__image {
    position: relative;
    z-index: 4;
  }
}
@media (min-width: 1024px) {
  .p-topMainVisual .p-topMainVisual__image {
    position: absolute;
    top: 0;
    z-index: 4;
    display: grid;
    grid-template-columns: 1fr 56.4666666667%;
    width: 100%;
    pointer-events: none;
  }
}
.p-topMainVisual .p-topMainVisual__image::before {
  position: absolute;
  left: 8.3969465649vw;
  z-index: -1;
  display: block;
  width: 16.5394402036vw;
  aspect-ratio: 129/98;
  pointer-events: none;
  content: "";
  background: url("../img/common/image_circle.svg") no-repeat 50% 50%;
  background-size: cover;
  animation: blink 5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}
@media not all and (min-width: 1024px) {
  .p-topMainVisual .p-topMainVisual__image::before {
    top: 72.7735368957vw;
  }
}
@media (min-width: 1024px) {
  .p-topMainVisual .p-topMainVisual__image::before {
    bottom: 2.4vw;
    left: 38.3333333333vw;
    width: 8.6vw;
  }
}
.p-topMainVisual .p-topMainVisual__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
}
.p-topMainVisual .p-topMainVisual__image .mainVisual__image01 {
  display: inline-block;
  -webkit-clip-path: url("#mv01_sp");
          clip-path: url("#mv01_sp");
}
@media not all and (min-width: 1024px) {
  .p-topMainVisual .p-topMainVisual__image .mainVisual__image01 {
    position: absolute;
    top: 16.5394402036vw;
    right: 0;
    width: 55.9796437659vw;
    aspect-ratio: 216/287;
  }
}
@media (min-width: 1024px) {
  .p-topMainVisual .p-topMainVisual__image .mainVisual__image01 {
    -webkit-clip-path: url("#mv01_pc");
            clip-path: url("#mv01_pc");
  }
}
.p-topMainVisual .p-topMainVisual__image .mainVisual__image02 {
  display: inline-block;
  aspect-ratio: 344/346;
  -webkit-clip-path: url("#mv02");
          clip-path: url("#mv02");
}
@media not all and (min-width: 1024px) {
  .p-topMainVisual .p-topMainVisual__image .mainVisual__image02 {
    position: absolute;
    top: 26.2086513995vw;
    width: 37.9134860051vw;
  }
}
@media (min-width: 1024px) {
  .p-topMainVisual .p-topMainVisual__image .mainVisual__image02 {
    width: 22.9333333333vw;
    margin-top: 10.4vw;
    margin-left: 16.2vw;
  }
}

.p-top .p-topConcept {
  display: grid;
  margin-top: 12.7226463104vw;
  margin-bottom: 31.8066157761vw;
}
@media not all and (min-width: 1024px) {
  .p-top .p-topConcept {
    grid-template-areas: "concept_heading concept_heading" "concept_left concept_right" "concept_lead concept_lead";
    grid-template-rows: auto auto auto;
    grid-template-columns: 50% 50%;
  }
}
@media (min-width: 1024px) {
  .p-top .p-topConcept {
    grid-template-columns: 1fr 44.3548387097% 1fr;
    max-width: 1500px;
    padding-right: 6.8666666667vw;
    padding-left: 6.8666666667vw;
    margin: 74px auto 0;
  }
}
@media not all and (min-width: 1024px) {
  .p-top .p-topConcept .p-topConcept__desc {
    display: contents;
  }
}
@media (min-width: 1024px) {
  .p-top .p-topConcept .p-topConcept__desc {
    order: 2;
  }
}
.p-top .p-topConcept .p-topConcept__heading {
  position: relative;
  padding-top: 7.6335877863vw;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 47.606px;
  color: #000;
  text-align: center;
  letter-spacing: 4.8px;
}
@media not all and (min-width: 1024px) {
  .p-top .p-topConcept .p-topConcept__heading {
    grid-area: concept_heading;
    margin-bottom: 9.1603053435vw;
  }
}
@media (min-width: 1024px) {
  .p-top .p-topConcept .p-topConcept__heading {
    padding-top: 44px;
    font-size: 3vw;
    letter-spacing: 7.2px;
  }
}
@media (min-width: 1250px) {
  .p-top .p-topConcept .p-topConcept__heading {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.p-top .p-topConcept .p-topConcept__heading::before {
  position: absolute;
  top: 0;
  z-index: -1;
  display: block;
  width: 100%;
  font-family: Lato, sans-serif;
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 120%;
  color: var(--kiosk-ultra-light-gray);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 9.6px;
  content: attr(data-heading-en);
}
@media (min-width: 1024px) {
  .p-top .p-topConcept .p-topConcept__heading::before {
    font-size: 7.8333333333vw;
    letter-spacing: 15.04px;
  }
}
@media (min-width: 1250px) {
  .p-top .p-topConcept .p-topConcept__heading::before {
    font-size: 94px;
    font-size: 5.875rem;
  }
}
.p-top .p-topConcept .p-topConcept__heading em {
  font-size: 32px;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 47.606px;
  color: #000;
  letter-spacing: 6.4px;
}
@media (min-width: 1024px) {
  .p-top .p-topConcept .p-topConcept__heading em {
    font-size: 4vw;
    line-height: 70px;
    letter-spacing: 9.6px;
  }
}
@media (min-width: 1250px) {
  .p-top .p-topConcept .p-topConcept__heading em {
    font-size: 48px;
    font-size: 3rem;
  }
}
.p-top .p-topConcept .p-topConcept__heading ._en {
  color: var(--kiosk-light-blue);
}
.p-top .p-topConcept .p-topConcept__lead {
  font-weight: 700;
  line-height: 240%;
  letter-spacing: 1.92px;
}
@media not all and (min-width: 1024px) {
  .p-top .p-topConcept .p-topConcept__lead {
    grid-area: concept_lead;
    padding: 0 6.6157760814vw;
    margin-top: 8.3969465649vw;
  }
}
@media (min-width: 1024px) {
  .p-top .p-topConcept .p-topConcept__lead {
    margin-top: 43px;
    font-size: 1.5vw;
    text-align: center;
    letter-spacing: 2.16px;
  }
}
@media (min-width: 1250px) {
  .p-top .p-topConcept .p-topConcept__lead {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.p-top .p-topConcept .p-topConcept__imageLeft {
  display: block;
}
@media not all and (min-width: 1024px) {
  .p-top .p-topConcept .p-topConcept__imageLeft {
    grid-area: concept_left;
    margin-left: 15.2671755725vw;
  }
  .p-top .p-topConcept .p-topConcept__imageLeft img {
    width: 31.5521628499vw;
  }
}
@media (min-width: 1024px) {
  .p-top .p-topConcept .p-topConcept__imageLeft {
    order: 1;
    margin-top: 19px;
  }
}
.p-top .p-topConcept .p-topConcept__imageright {
  display: block;
  order: 2;
}
@media not all and (min-width: 1024px) {
  .p-top .p-topConcept .p-topConcept__imageright {
    grid-area: concept_right;
    margin-left: 3.0534351145vw;
  }
  .p-top .p-topConcept .p-topConcept__imageright img {
    width: 31.5521628499vw;
  }
}
@media (min-width: 1024px) {
  .p-top .p-topConcept .p-topConcept__imageright {
    margin-top: 19px;
    text-align: right;
  }
}
.p-top .p-topProduct {
  padding-bottom: 19.8473282443vw;
  background: url("../img/top/product_bg_sp.jpg") no-repeat 50% 7.1246819338vw;
  background-size: cover;
}
@media (min-width: 1024px) {
  .p-top .p-topProduct {
    padding: 0 8.6666666667vw 75px;
    margin-top: 100px;
    background: url("../img/top/product_bg_pc.jpg") no-repeat 50% 8.1333333333vw;
    background-size: cover;
  }
}
@media (min-width: 1024px) {
  .p-top .p-topProduct .p-topProduct__inner {
    display: grid;
    grid-template-areas: "kiosk heading heading" "kiosk desktop pos";
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 32.6612903226% auto 33.7096774194%;
    gap: 0 0;
    max-width: 1240px;
    margin: 0 auto;
  }
}
@media not all and (min-width: 1024px) {
  .p-top .p-topProduct .p-topProduct__inner .c-buttonWrap {
    display: flex;
    justify-content: center;
  }
}
@media not all and (min-width: 1024px) {
  .p-top .p-topProduct .p-topProduct__inner .c-button {
    display: inline-flex;
    padding-right: 8.3969465649vw;
    padding-left: 8.3969465649vw;
  }
}
@media (min-width: 1024px) {
  .p-top .p-topProduct .p-topProduct__inner .c-button {
    padding-right: 36px;
    padding-left: 30px;
  }
}
@media (min-width: 1024px) {
  .p-top .p-topProduct .p-topProduct__heading {
    grid-area: heading;
    padding-top: 6.0666666667vw;
  }
}
@media not all and (min-width: 1024px) {
  .p-top .p-topProduct .p-topProduct__logo {
    display: block;
    margin-top: -7.1246819338vw;
    margin-bottom: 7.3791348601vw;
    text-align: center;
  }
  .p-top .p-topProduct .p-topProduct__logo img {
    width: 82.4427480916vw;
    margin-left: -2.7989821883vw;
  }
}
@media (min-width: 1024px) {
  .p-top .p-topProduct .p-topProduct__logo {
    margin-bottom: 37px;
  }
}
.p-top .p-topProduct .p-topProduct__headingLead {
  font-weight: 500;
  line-height: 240%;
  letter-spacing: 1.92px;
}
@media not all and (min-width: 1024px) {
  .p-top .p-topProduct .p-topProduct__headingLead {
    padding-right: 6.6157760814vw;
    padding-left: 6.6157760814vw;
    margin-bottom: 5.0890585242vw;
  }
}
@media not all and (min-width: 1024px) {
  .p-top .p-topProduct .p-topProduct__list {
    padding-right: 6.6157760814vw;
    padding-left: 6.6157760814vw;
  }
}
@media (min-width: 1024px) {
  .p-top .p-topProduct .p-topProduct__list {
    display: contents;
  }
}
@media not all and (min-width: 1024px) {
  .p-top .p-topProduct .p-topProduct__item + .p-topProduct__item {
    margin-top: 16.0305343511vw;
  }
}
.p-top .p-topProduct .p-topProduct__item .p-topProduct__image {
  display: block;
  text-align: center;
}
@media not all and (min-width: 1024px) {
  .p-top .p-topProduct .p-topProduct__item .p-topProduct__image {
    margin: 0 auto 4.3256997455vw;
  }
}
.p-top .p-topProduct .p-topProduct__item .c-button {
  width: auto;
  max-width: none;
}
@media (min-width: 1024px) {
  .p-top .p-topProduct .p-topProduct__item._kiosk {
    grid-area: kiosk;
    padding-right: clamp(10px, 3.1333333333vw, 47px);
  }
}
@media not all and (min-width: 1024px) {
  .p-top .p-topProduct .p-topProduct__item._kiosk .p-topProduct__image {
    width: 36.641221374vw;
  }
}
@media (min-width: 1024px) {
  .p-top .p-topProduct .p-topProduct__item._kiosk .p-topProduct__image {
    margin-bottom: -22px;
    text-align: right;
  }
}
@media (min-width: 1024px) {
  .p-top .p-topProduct .p-topProduct__item._desktop {
    grid-area: desktop;
    padding: 0 clamp(10px, 2vw, 30px);
  }
}
@media not all and (min-width: 1024px) {
  .p-top .p-topProduct .p-topProduct__item._desktop .p-topProduct__image {
    width: 63.1043256997vw;
  }
}
@media (min-width: 1024px) {
  .p-top .p-topProduct .p-topProduct__item._desktop .p-topProduct__image {
    margin-bottom: -12px;
  }
}
@media (min-width: 1024px) {
  .p-top .p-topProduct .p-topProduct__item._pos {
    grid-area: pos;
    padding-right: clamp(10px, 2.4vw, 36px);
    padding-left: clamp(10px, 2vw, 30px);
  }
}
@media not all and (min-width: 1024px) {
  .p-top .p-topProduct .p-topProduct__item._pos .p-topProduct__image {
    width: 63.1043256997vw;
  }
}
@media (min-width: 1024px) {
  .p-top .p-topProduct .p-topProduct__item._pos .p-topProduct__image {
    margin-bottom: -12px;
  }
}
@media (min-width: 1024px) {
  .p-top .p-topProduct .p-topProduct__itemInner {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
  }
}
.p-top .p-topSupport {
  padding-top: 16.0305343511vw;
  padding-bottom: 16.0305343511vw;
  background: linear-gradient(to bottom, var(--kiosk-ultra-light-blue) 0%, var(--kiosk-ultra-light-blue) 181.4249363868vw, #fff 181.4249363868vw, #fff 100%);
}
@media (min-width: 1024px) {
  .p-top .p-topSupport {
    padding-top: 146px;
    padding-bottom: 179px;
    background: linear-gradient(to bottom, var(--kiosk-ultra-light-blue) 0%, var(--kiosk-ultra-light-blue) 74.4666666667%, #fff 74.4666666667%, #fff 100%);
  }
}
.p-top .p-topSupport .p-topSupport__heading {
  position: relative;
  padding-top: 8.9058524173vw;
  margin-bottom: 7.8880407125vw;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 154.167%;
  color: #000;
  text-align: center;
  letter-spacing: 4.8px;
}
@media (min-width: 1024px) {
  .p-top .p-topSupport .p-topSupport__heading {
    padding-top: 42px;
    margin-bottom: 65px;
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 194.444%;
    letter-spacing: 7.2px;
  }
}
.p-top .p-topSupport .p-topSupport__heading::before {
  position: absolute;
  top: 0;
  z-index: 1;
  display: block;
  width: 100%;
  font-family: Lato, sans-serif;
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 120%;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 9.6px;
  content: attr(data-heading-en);
}
@media (min-width: 1024px) {
  .p-top .p-topSupport .p-topSupport__heading::before {
    font-size: 94px;
    font-size: 5.875rem;
    letter-spacing: 15.04px;
  }
}
.p-top .p-topSupport .p-topSupport__heading em {
  position: relative;
  z-index: 2;
  font-style: normal;
}
.p-top .p-topSupport .p-topSupport__lead {
  font-weight: 500;
  line-height: 240%;
  letter-spacing: 1.92px;
}
@media not all and (min-width: 1024px) {
  .p-top .p-topSupport .p-topSupport__lead {
    padding-right: 6.6157760814vw;
    padding-left: 6.6157760814vw;
  }
}
@media (min-width: 1024px) {
  .p-top .p-topSupport .p-topSupport__lead {
    text-align: center;
  }
}
.p-top .p-topSupport .p-topSupport__inner {
  margin-top: 21.1195928753vw;
}
@media not all and (min-width: 1024px) {
  .p-top .p-topSupport .p-topSupport__inner {
    padding-right: 6.6157760814vw;
    padding-left: 6.6157760814vw;
  }
}
@media (min-width: 1024px) {
  .p-top .p-topSupport .p-topSupport__inner {
    margin-top: 94px;
  }
}
@media (min-width: 1024px) {
  .p-top .p-topSupport .p-topSupport__list {
    display: grid;
    grid-template-columns: repeat(2, 46.9945355191%);
    gap: 6.0109289617%;
    max-width: 915px;
    margin: 0 auto;
  }
}
.p-top .p-topSupport .p-topSupport__list .support {
  display: flex;
  flex-direction: column-reverse;
  padding-bottom: 13.4860050891vw;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 11px 5px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1024px) {
  .p-top .p-topSupport .p-topSupport__list .support {
    justify-content: flex-end;
    padding-bottom: 8.3720930233%;
  }
}
@media not all and (min-width: 1024px) {
  .p-top .p-topSupport .p-topSupport__list .support + .support {
    margin-top: 15.5216284987vw;
  }
}
.p-top .p-topSupport .p-topSupport__list .support .support__body {
  padding: 0 6.6157760814vw;
}
@media (min-width: 1024px) {
  .p-top .p-topSupport .p-topSupport__list .support .support__body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 0 8.6046511628%;
  }
}
.p-top .p-topSupport .p-topSupport__list .support .support__desc dt {
  margin-bottom: 5.3435114504vw;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--kiosk-navy);
  text-align: center;
  letter-spacing: 2px;
}
@media (min-width: 1024px) {
  .p-top .p-topSupport .p-topSupport__list .support .support__desc dt {
    margin-bottom: 16px;
  }
}
.p-top .p-topSupport .p-topSupport__list .support .support__desc dd {
  margin-bottom: 3.3078880407vw;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.68px;
}
@media (min-width: 1024px) {
  .p-top .p-topSupport .p-topSupport__list .support .support__desc dd {
    margin-bottom: 24px;
  }
}
@media (min-width: 1024px) {
  .p-top .p-topSupport .p-topSupport__list .support .c-buttonWrap {
    margin-top: auto;
  }
}
.p-top .p-topSupport .p-topSupport__list .support .support__image {
  position: relative;
  display: block;
  text-align: center;
}
@media (min-width: 1024px) {
  .p-top .p-topSupport .p-topSupport__list .support .support__image {
    height: 10.6vw;
    aspect-ratio: 410/159;
  }
}
@media not all and (min-width: 1024px) {
  .p-top .p-topSupport .p-topSupport__list .support .support__image._introduction img {
    width: 33.0788804071vw;
    margin-top: -10.941475827vw;
    margin-bottom: 4.3256997455vw;
    margin-left: 5.0890585242vw;
  }
}
@media (min-width: 1024px) {
  .p-top .p-topSupport .p-topSupport__list .support .support__image._introduction img {
    position: relative;
    top: -57px;
    width: clamp(100px, 9.4666666667vw, 142px);
  }
}
@media not all and (min-width: 1024px) {
  .p-top .p-topSupport .p-topSupport__list .support .support__image._after img {
    width: 79.1348600509vw;
    margin-top: -7.1246819338vw;
    margin-bottom: 13.7404580153vw;
  }
}
@media (min-width: 1024px) {
  .p-top .p-topSupport .p-topSupport__list .support .support__image._after img {
    position: relative;
    top: -52px;
    width: 25.3333333333vw;
    max-width: 380px;
  }
}
.p-top .p-topNews .p-topNews__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 122.1374045802vw;
  aspect-ratio: 393/480;
  background-image: url("../img/top/news_bg_sp.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
@media (min-width: 1024px) {
  .p-top .p-topNews .p-topNews__image {
    height: 32vw;
    aspect-ratio: 1500/480;
    background-image: url("../img/top/news_bg_pc.jpg");
  }
}
.p-top .p-topNews .p-topNews__inner {
  position: relative;
  padding: 18.5750636132vw 6.6157760814vw 12.7226463104vw;
}
@media (min-width: 1024px) {
  .p-top .p-topNews .p-topNews__inner {
    display: grid;
    grid-template-columns: 27.6666666667vw 1fr;
    max-width: 1540px;
    padding: 144px 20px 150px;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-top .p-topNews .p-topNews__inner::before {
  position: absolute;
  z-index: -1;
  display: block;
  aspect-ratio: 155/76;
  pointer-events: none;
  content: "";
  background: url("../img/common/image_wave.svg") no-repeat 50% 50%;
  background-size: cover;
  animation: blink02 5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}
@media (min-width: 1024px) {
  .p-top .p-topNews .p-topNews__inner::before {
    bottom: 27.2vw;
    left: 8.6666666667vw;
    width: 10.3333333333vw;
  }
}
.p-top .p-topNews .p-topNews__inner::after {
  position: absolute;
  z-index: -1;
  display: block;
  aspect-ratio: 379/393;
  pointer-events: none;
  content: "";
  background: url("../img/top/image_balloon.svg") no-repeat 50% 50%;
  background-size: cover;
}
@media (min-width: 1024px) {
  .p-top .p-topNews .p-topNews__inner::after {
    top: 7.7333333333vw;
    right: 2.1333333333vw;
    width: 25.2666666667vw;
  }
}
.p-top .p-topNews .p-topNews__heading {
  position: relative;
  padding-top: 1.2666666667vw;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 291.667%;
  color: #000;
  letter-spacing: 4.8px;
}
@media (min-width: 1024px) {
  .p-top .p-topNews .p-topNews__heading {
    padding-top: 57px;
    padding-left: 4.4vw;
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 194.444%;
    letter-spacing: 7.2px;
  }
}
.p-top .p-topNews .p-topNews__heading::before {
  position: absolute;
  top: 0;
  z-index: -1;
  font-family: Lato, sans-serif;
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 120%;
  color: var(--kiosk-ultra-light-gray);
  text-transform: uppercase;
  letter-spacing: 9.6px;
  content: attr(data-heading-en);
}
@media not all and (min-width: 1024px) {
  .p-top .p-topNews .p-topNews__heading::before {
    top: -3.3078880407vw;
  }
}
@media (min-width: 1024px) {
  .p-top .p-topNews .p-topNews__heading::before {
    font-size: 94px;
    font-size: 5.875rem;
    letter-spacing: 15.04px;
  }
}
@media not all and (min-width: 1024px) {
  .p-top .p-topNews .p-topNews__body {
    margin-top: 6.106870229vw;
  }
}
@media (min-width: 1024px) {
  .p-top .p-topNews .p-topNews__body {
    padding-top: 74px;
    padding-right: 7.3333333333vw;
  }
}
.p-top .p-topNews .c-list {
  margin-bottom: 12.7226463104vw;
}
@media (min-width: 1024px) {
  .p-top .p-topNews .c-list {
    margin-bottom: 53px;
  }
}
@media (min-width: 1024px) {
  .p-top .p-topNews .c-list .c-list__item {
    padding-bottom: 26px;
  }
}
@media not all and (min-width: 1024px) {
  .p-top .p-topNews .c-buttonWrap {
    padding: 0 8.1424936387vw;
  }
}

.u-aligncenter {
  text-align: center;
}

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

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

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

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

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

.u-bgLightBlue {
  border-image-source: linear-gradient(var(--kiosk-ultra-light-blue), var(--kiosk-ultra-light-blue));
  border-image-slice: fill 0;
  border-image-outset: 0 100vw 0 100vw;
}

.u-bgGray {
  border-image-source: linear-gradient(var(--kiosk-ultra-light-gray), var(--kiosk-ultra-light-gray));
  border-image-slice: fill 0;
  border-image-outset: 0 100vw 0 100vw;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media not all and (min-width: 768px) {
  .u-sp_padding_top_5 {
    padding-top: 5px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_5 {
    padding-right: 5px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_5 {
    padding-bottom: 5px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_5 {
    padding-left: 5px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_5 {
    padding-top: 5px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_5 {
    padding-right: 5px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_5 {
    padding-bottom: 5px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_5 {
    padding-left: 5px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_10 {
    padding-top: 10px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_10 {
    padding-right: 10px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_10 {
    padding-bottom: 10px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_10 {
    padding-left: 10px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_10 {
    padding-top: 10px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_10 {
    padding-right: 10px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_10 {
    padding-bottom: 10px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_10 {
    padding-left: 10px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_15 {
    padding-top: 15px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_15 {
    padding-right: 15px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_15 {
    padding-bottom: 15px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_15 {
    padding-left: 15px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_15 {
    padding-top: 15px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_15 {
    padding-right: 15px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_15 {
    padding-bottom: 15px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_15 {
    padding-left: 15px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_20 {
    padding-top: 20px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_20 {
    padding-right: 20px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_20 {
    padding-bottom: 20px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_20 {
    padding-left: 20px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_20 {
    padding-top: 20px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_20 {
    padding-right: 20px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_20 {
    padding-bottom: 20px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_20 {
    padding-left: 20px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_25 {
    padding-top: 25px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_25 {
    padding-right: 25px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_25 {
    padding-bottom: 25px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_25 {
    padding-left: 25px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_25 {
    padding-top: 25px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_25 {
    padding-right: 25px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_25 {
    padding-bottom: 25px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_25 {
    padding-left: 25px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_30 {
    padding-top: 30px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_30 {
    padding-right: 30px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_30 {
    padding-bottom: 30px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_30 {
    padding-left: 30px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_30 {
    padding-top: 30px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_30 {
    padding-right: 30px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_30 {
    padding-bottom: 30px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_30 {
    padding-left: 30px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_35 {
    padding-top: 35px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_35 {
    padding-right: 35px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_35 {
    padding-bottom: 35px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_35 {
    padding-left: 35px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_35 {
    padding-top: 35px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_35 {
    padding-right: 35px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_35 {
    padding-bottom: 35px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_35 {
    padding-left: 35px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_40 {
    padding-top: 40px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_40 {
    padding-right: 40px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_40 {
    padding-bottom: 40px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_40 {
    padding-left: 40px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_40 {
    padding-top: 40px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_40 {
    padding-right: 40px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_40 {
    padding-bottom: 40px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_40 {
    padding-left: 40px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_45 {
    padding-top: 45px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_45 {
    padding-right: 45px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_45 {
    padding-bottom: 45px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_45 {
    padding-left: 45px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_45 {
    padding-top: 45px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_45 {
    padding-right: 45px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_45 {
    padding-bottom: 45px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_45 {
    padding-left: 45px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_50 {
    padding-top: 50px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_50 {
    padding-right: 50px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_50 {
    padding-bottom: 50px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_50 {
    padding-left: 50px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_50 {
    padding-top: 50px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_50 {
    padding-right: 50px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_50 {
    padding-bottom: 50px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_50 {
    padding-left: 50px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_55 {
    padding-top: 55px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_55 {
    padding-right: 55px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_55 {
    padding-bottom: 55px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_55 {
    padding-left: 55px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_55 {
    padding-top: 55px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_55 {
    padding-right: 55px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_55 {
    padding-bottom: 55px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_55 {
    padding-left: 55px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_60 {
    padding-top: 60px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_60 {
    padding-right: 60px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_60 {
    padding-bottom: 60px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_60 {
    padding-left: 60px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_60 {
    padding-top: 60px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_60 {
    padding-right: 60px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_60 {
    padding-bottom: 60px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_60 {
    padding-left: 60px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_65 {
    padding-top: 65px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_65 {
    padding-right: 65px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_65 {
    padding-bottom: 65px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_65 {
    padding-left: 65px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_65 {
    padding-top: 65px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_65 {
    padding-right: 65px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_65 {
    padding-bottom: 65px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_65 {
    padding-left: 65px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_70 {
    padding-top: 70px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_70 {
    padding-right: 70px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_70 {
    padding-bottom: 70px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_70 {
    padding-left: 70px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_70 {
    padding-top: 70px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_70 {
    padding-right: 70px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_70 {
    padding-bottom: 70px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_70 {
    padding-left: 70px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_75 {
    padding-top: 75px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_75 {
    padding-right: 75px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_75 {
    padding-bottom: 75px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_75 {
    padding-left: 75px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_75 {
    padding-top: 75px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_75 {
    padding-right: 75px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_75 {
    padding-bottom: 75px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_75 {
    padding-left: 75px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_80 {
    padding-top: 80px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_80 {
    padding-right: 80px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_80 {
    padding-bottom: 80px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_80 {
    padding-left: 80px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_80 {
    padding-top: 80px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_80 {
    padding-right: 80px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_80 {
    padding-bottom: 80px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_80 {
    padding-left: 80px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_85 {
    padding-top: 85px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_85 {
    padding-right: 85px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_85 {
    padding-bottom: 85px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_85 {
    padding-left: 85px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_85 {
    padding-top: 85px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_85 {
    padding-right: 85px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_85 {
    padding-bottom: 85px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_85 {
    padding-left: 85px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_90 {
    padding-top: 90px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_90 {
    padding-right: 90px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_90 {
    padding-bottom: 90px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_90 {
    padding-left: 90px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_90 {
    padding-top: 90px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_90 {
    padding-right: 90px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_90 {
    padding-bottom: 90px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_90 {
    padding-left: 90px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_95 {
    padding-top: 95px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_95 {
    padding-right: 95px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_95 {
    padding-bottom: 95px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_95 {
    padding-left: 95px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_95 {
    padding-top: 95px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_95 {
    padding-right: 95px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_95 {
    padding-bottom: 95px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_95 {
    padding-left: 95px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_100 {
    padding-top: 100px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_100 {
    padding-right: 100px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_100 {
    padding-bottom: 100px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_100 {
    padding-left: 100px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_100 {
    padding-top: 100px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_100 {
    padding-right: 100px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_100 {
    padding-bottom: 100px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_100 {
    padding-left: 100px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_105 {
    padding-top: 105px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_105 {
    padding-right: 105px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_105 {
    padding-bottom: 105px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_105 {
    padding-left: 105px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_105 {
    padding-top: 105px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_105 {
    padding-right: 105px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_105 {
    padding-bottom: 105px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_105 {
    padding-left: 105px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_110 {
    padding-top: 110px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_110 {
    padding-right: 110px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_110 {
    padding-bottom: 110px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_110 {
    padding-left: 110px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_110 {
    padding-top: 110px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_110 {
    padding-right: 110px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_110 {
    padding-bottom: 110px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_110 {
    padding-left: 110px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_115 {
    padding-top: 115px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_115 {
    padding-right: 115px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_115 {
    padding-bottom: 115px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_115 {
    padding-left: 115px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_115 {
    padding-top: 115px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_115 {
    padding-right: 115px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_115 {
    padding-bottom: 115px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_115 {
    padding-left: 115px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_120 {
    padding-top: 120px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_120 {
    padding-right: 120px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_120 {
    padding-bottom: 120px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_120 {
    padding-left: 120px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_120 {
    padding-top: 120px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_120 {
    padding-right: 120px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_120 {
    padding-bottom: 120px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_120 {
    padding-left: 120px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_125 {
    padding-top: 125px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_125 {
    padding-right: 125px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_125 {
    padding-bottom: 125px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_125 {
    padding-left: 125px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_125 {
    padding-top: 125px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_125 {
    padding-right: 125px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_125 {
    padding-bottom: 125px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_125 {
    padding-left: 125px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_130 {
    padding-top: 130px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_130 {
    padding-right: 130px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_130 {
    padding-bottom: 130px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_130 {
    padding-left: 130px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_130 {
    padding-top: 130px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_130 {
    padding-right: 130px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_130 {
    padding-bottom: 130px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_130 {
    padding-left: 130px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_135 {
    padding-top: 135px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_135 {
    padding-right: 135px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_135 {
    padding-bottom: 135px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_135 {
    padding-left: 135px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_135 {
    padding-top: 135px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_135 {
    padding-right: 135px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_135 {
    padding-bottom: 135px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_135 {
    padding-left: 135px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_140 {
    padding-top: 140px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_140 {
    padding-right: 140px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_140 {
    padding-bottom: 140px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_140 {
    padding-left: 140px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_140 {
    padding-top: 140px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_140 {
    padding-right: 140px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_140 {
    padding-bottom: 140px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_140 {
    padding-left: 140px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_145 {
    padding-top: 145px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_145 {
    padding-right: 145px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_145 {
    padding-bottom: 145px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_145 {
    padding-left: 145px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_145 {
    padding-top: 145px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_145 {
    padding-right: 145px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_145 {
    padding-bottom: 145px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_145 {
    padding-left: 145px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_150 {
    padding-top: 150px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_150 {
    padding-right: 150px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_150 {
    padding-bottom: 150px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_150 {
    padding-left: 150px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_150 {
    padding-top: 150px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_150 {
    padding-right: 150px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_150 {
    padding-bottom: 150px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_150 {
    padding-left: 150px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_155 {
    padding-top: 155px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_155 {
    padding-right: 155px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_155 {
    padding-bottom: 155px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_155 {
    padding-left: 155px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_155 {
    padding-top: 155px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_155 {
    padding-right: 155px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_155 {
    padding-bottom: 155px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_155 {
    padding-left: 155px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_160 {
    padding-top: 160px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_160 {
    padding-right: 160px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_160 {
    padding-bottom: 160px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_160 {
    padding-left: 160px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_160 {
    padding-top: 160px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_160 {
    padding-right: 160px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_160 {
    padding-bottom: 160px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_160 {
    padding-left: 160px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_165 {
    padding-top: 165px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_165 {
    padding-right: 165px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_165 {
    padding-bottom: 165px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_165 {
    padding-left: 165px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_165 {
    padding-top: 165px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_165 {
    padding-right: 165px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_165 {
    padding-bottom: 165px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_165 {
    padding-left: 165px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_170 {
    padding-top: 170px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_170 {
    padding-right: 170px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_170 {
    padding-bottom: 170px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_170 {
    padding-left: 170px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_170 {
    padding-top: 170px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_170 {
    padding-right: 170px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_170 {
    padding-bottom: 170px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_170 {
    padding-left: 170px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_175 {
    padding-top: 175px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_175 {
    padding-right: 175px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_175 {
    padding-bottom: 175px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_175 {
    padding-left: 175px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_175 {
    padding-top: 175px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_175 {
    padding-right: 175px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_175 {
    padding-bottom: 175px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_175 {
    padding-left: 175px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_180 {
    padding-top: 180px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_180 {
    padding-right: 180px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_180 {
    padding-bottom: 180px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_180 {
    padding-left: 180px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_180 {
    padding-top: 180px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_180 {
    padding-right: 180px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_180 {
    padding-bottom: 180px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_180 {
    padding-left: 180px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_185 {
    padding-top: 185px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_185 {
    padding-right: 185px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_185 {
    padding-bottom: 185px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_185 {
    padding-left: 185px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_185 {
    padding-top: 185px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_185 {
    padding-right: 185px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_185 {
    padding-bottom: 185px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_185 {
    padding-left: 185px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_190 {
    padding-top: 190px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_190 {
    padding-right: 190px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_190 {
    padding-bottom: 190px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_190 {
    padding-left: 190px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_190 {
    padding-top: 190px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_190 {
    padding-right: 190px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_190 {
    padding-bottom: 190px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_190 {
    padding-left: 190px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_195 {
    padding-top: 195px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_195 {
    padding-right: 195px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_195 {
    padding-bottom: 195px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_195 {
    padding-left: 195px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_195 {
    padding-top: 195px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_195 {
    padding-right: 195px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_195 {
    padding-bottom: 195px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_195 {
    padding-left: 195px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_top_200 {
    padding-top: 200px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_right_200 {
    padding-right: 200px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_bottom_200 {
    padding-bottom: 200px !important;
  }
}

@media not all and (min-width: 768px) {
  .u-sp_padding_left_200 {
    padding-left: 200px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_top_200 {
    padding-top: 200px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_right_200 {
    padding-right: 200px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_bottom_200 {
    padding-bottom: 200px !important;
  }
}

@media (min-width: 768px) {
  .u-pc_padding_left_200 {
    padding-left: 200px !important;
  }
}

.u-text_red {
  color: #e71818;
}

.u-text_right {
  text-align: right;
}

.u-uppercase {
  text-transform: uppercase;
}