@charset "UTF-8";
:root {
  --ff-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, "Segoe UI",
    "acumin-pro", system-ui, -apple-system, Roboto, sans-serif;
  --ff-base-en: "acumin-pro", system-ui, -apple-system, Roboto, sans-serif;
  --ff-base-ja: "Noto Sans JP", "Segoe UI", Meiryo, sans-serif;
}

@-webkit-keyframes scroll-border {
  0%,
  1% {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: 0 50%;
  }

  41.6% {
    opacity: 1;
    transform: none;
    transform-origin: 0 50%;
  }

  58.3% {
    opacity: 1;
    transform: none;
    transform-origin: 100% 50%;
  }

  100%,
  99% {
    opacity: 1;
    transform: scaleX(0);
    transform-origin: 100% 50%;
  }
}

@keyframes scroll-border {
  0%,
  1% {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: 0 50%;
  }

  41.6% {
    opacity: 1;
    transform: none;
    transform-origin: 0 50%;
  }

  58.3% {
    opacity: 1;
    transform: none;
    transform-origin: 100% 50%;
  }

  100%,
  99% {
    opacity: 1;
    transform: scaleX(0);
    transform-origin: 100% 50%;
  }
}

@-webkit-keyframes scroll_circle {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes scroll_circle {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@-webkit-keyframes scroll_circle_shift {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  77.3% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0);
  }

  100% {
    opacity: 0;
  }
}

@keyframes scroll_circle_shift {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  77.3% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0);
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes scroll_circleFill {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0);
  }

  41.6% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1.2);
  }

  83.3% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(2.4);
  }

  100% {
    opacity: 0;
  }
}

@keyframes scroll_circleFill {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0);
  }

  41.6% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1.2);
  }

  83.3% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(2.4);
  }

  100% {
    opacity: 0;
  }
}

:root {
  /* サイト全体の“ゆったり度”をここで調整 */
  --lh-body: 1.8;
  --ls-body: 0.02em;
  --lh-h: 1.55;
  --ls-h: 0.02em;
}

body {
  margin: 0;
  padding: 0;
  background-color: #f7f7f7;
  color: #333;
  font-family: var(--ff-base-en);
  font-weight: 300;
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  font-family: var(--ff-base-ja);
  font-size: 16px;
}

* {
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

::after,
::before {
  box-sizing: inherit;
}

p,
li {
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
}

/* 見出し（必要に応じて個別に微調整） */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-base-en);
  line-height: var(--lh-h);
  letter-spacing: var(--ls-h);
  font-family: var(--ff-base-ja);
}

/* 小さい文字は少しだけ広めに（脚注・注記） */
.small {
  font-size: 0.7rem;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
.small-note {
  font-size: 0.875rem;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

/* 細め和文フォントで“詰まって”見える時の救済 */
.relaxed {
  line-height: 1.9;
  letter-spacing: 0.03em;
}

a,
abbr,
address,
article,
aside,
audio,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
iframe,
img,
ins,
label,
legend,
li,
main,
mark,
nav,
ol,
p,
pre,
q,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
video {
  padding: 0;
  margin: 0;
  letter-spacing: 0.04em;
  border: 0;
}

a {
  outline: 0;
  -webkit-touch-callout: none;
}

a:hover,
a:active {
  color: #2e5c99;
  text-decoration: none;
}

:focus,
a:focus {
  outline: 0;
}

a,
a:visited {
  color: inherit;
}

article,
aside,
footer,
header,
main,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

img,
video {
  max-width: 100%;
}

img {
  height: auto;
  vertical-align: top;
  border-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
  content: none;
}

[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: 0;
}

input[type="date"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="tel"],
input[type="text"],
input[type="time"],
textarea {
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}

textarea {
  display: block;
}

fieldset {
  margin: 0;
  border: none;
}

legend {
  display: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

.pageTransition {
  position: fixed;
  z-index: 100000;
  width: 100%;
  height: 100%;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 1s linear;
}

.pageTransition::after,
.pageTransition::before {
  position: fixed;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0;
}

.pageTransition::before {
  background: url(../../img/common/transition_alpha.png) no-repeat 0 0;
  background-size: 100% 100%;
  transition: opacity 1s cubic-bezier(0.5, 1, 0.89, 1) 0.1666666667s;
}

.pageTransition::after {
  background-color: #fff;
  transition: opacity 0.3333333333s linear;
}

body:not(.ready) .pageTransition {
  visibility: visible;
  transition-duration: 0.25s;
}

body:not(.ready) .pageTransition::after,
body:not(.ready) .pageTransition::before {
  opacity: 1;
}

body:not(.ready) .pageTransition::before {
  transition-delay: 0.25s;
}

body:not(.ready) .pageTransition::after {
  transition-duration: 0.25s;
}

.l-header {
  position: relative;
  z-index: 1000 !important;
  max-width: 1920px !important;
  margin-right: auto;
  margin-left: auto;
}

.c-modalWrap {
  z-index: 1100;
}

.c-accordion {
  margin-bottom: 120px;
}

p:not([class]) + .c-accordion {
  margin-top: 25px;
}

@media (min-width: 1024px) {
  p:not([class]) + .c-accordion {
    margin-top: 34px;
  }
}

.c-accordion .c-accordion__title {
  margin-bottom: 26px;
  font-family: var(--ff-base-en);
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .c-accordion .c-accordion__title {
    -webkit-font-smoothing: antialiased;
  }
}

.c-accordion .c-accordion__item {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  -ms-overflow-style: none;
  transform: translateZ(0);
}

.c-accordion .c-accordion__item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.c-accordion .c-accordion__item p:not([class]) {
  font-size: 0.8125rem;
  line-height: 1.8461538462;
}

@media (min-width: 1024px) {
  .c-accordion .c-accordion__item p:not([class]) {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.c-accordion .c-accordion__item p:not([class]):first-of-type {
  margin-top: 0;
}

.c-accordion .c-accordion__item p:not([class]) + p:not([class]) {
  margin-top: 8px;
}

.c-accordion .c-accordion__link {
  display: block;
  padding-top: 55px;
  padding-bottom: 55px;
  font-size: 1rem;
  line-height: 2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

@media not all and (min-width: 1024px) {
  .c-accordion .c-accordion__link {
    padding-right: 2px;
  }

  .c-accordion .c-accordion__link:active {
    color: #2e5c99;
  }

  .c-accordion .c-accordion__link:active._arrow::after {
    transform: translateY(-50%) rotateZ(45deg);
  }

  @media (min-width: 1024px) {
    .c-accordion .c-accordion__link:active._arrow::after {
      transform: translateY(-50%) rotateZ(45deg);
    }
  }
}

@media (min-width: 1024px) {
  .c-accordion .c-accordion__link:not(._open):hover {
    color: #2e5c99;
  }

  .c-accordion .c-accordion__link:not(._open):hover._arrow::after {
    transform: translateY(-50%) rotateZ(45deg);
  }
}

@media (min-width: 1024px) and (min-width: 1024px) {
  .c-accordion .c-accordion__link:not(._open):hover._arrow::after {
    transform: translateY(-50%) rotateZ(45deg);
  }
}

.c-accordion .c-accordion__link._open .c-accordion__btn::after {
  transform: translate(-50%, -50%) rotateZ(-90deg);
}

.c-accordion .c-accordion__link:not(._open) + .c-accordion__child {
  display: none;
}

.c-accordion .c-accordion__link._arrow {
  position: relative;
}

.c-accordion .c-accordion__link._arrow::after {
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 8px;
  height: 8px;
  content: "";
  border-top: 2px solid #2e5c99;
  border-right: 2px solid #2e5c99;
  transition: transform 0.2s ease-out;
  transform: translateY(-50%) rotateZ(45deg);
}

.c-accordion .c-accordion__link span:not([class]) {
  flex: 1 1 0;
  transition: transform 0.2s ease-out;
}

.c-accordion .c-accordion__link .c-accordion__linkInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.c-accordion .c-accordion__btn {
  position: relative;
  z-index: 2;
  display: block;
  width: 15px;
  height: 15px;
  border: none;
  transition: transform 0.2s ease-out;
}

@media (min-width: 1024px) {
  .c-accordion .c-accordion__btn {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    margin-right: 2px;
  }
}

.c-accordion .c-accordion__btn::after,
.c-accordion .c-accordion__btn::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  content: "";
  background-color: #2e5c99;
  transform: translate(-50%, -50%);
}

.c-accordion .c-accordion__btn::before {
  width: 15px;
  height: 1px;
}

@media (min-width: 1024px) {
  .c-accordion .c-accordion__btn::before {
    width: 18px;
    height: 2px;
  }
}

.c-accordion .c-accordion__btn::after {
  width: 1px;
  height: 15px;
  transition: transform 0.2s ease-out;
}

@media (min-width: 1024px) {
  .c-accordion .c-accordion__btn::after {
    width: 2px;
    height: 18px;
  }
}

.c-accordion .c-accordion__child {
  position: relative;
  z-index: 1;
  overflow-x: hidden;
  transition: height 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  scrollbar-width: none;
}

.c-accordion .c-accordion__child::-webkit-scrollbar {
  display: none;
}

.c-accordion .c-accordion__child .c-card._half {
  margin-bottom: 60px;
}

.c-accordion .c-accordion__childList {
  padding-bottom: 18px;
}

@media (min-width: 1024px) {
  .c-accordion .c-accordion__childList {
    padding-top: 0;
    padding-bottom: 26px;
  }
}

.c-accordion .c-accordion__childLink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  line-height: 1.8461538462;
  text-decoration: none;
}

@media (min-width: 1024px) {
  .c-accordion .c-accordion__childLink {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.c-accordion .c-accordion__childLink[v-cloak] {
  display: none;
}

.c-accordion .c-accordion__childText {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  line-height: 1.8461538462;
}

@media (min-width: 1024px) {
  .c-accordion .c-accordion__childText {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.c-accordion .c-accordion__childText + .c-accordion__childText {
  margin-top: 8px;
}

.c-accordion__list {
  list-style: none !important;
  padding: 10px;
}

.c-accordion {
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .c-accordion {
    width: 70%;
  }
}

/* 開いている時は確実に表示（!important で初期 display:none を上書き） */
.c-accordion .c-accordion__child {
  overflow: hidden;
  transition: height 0.45s ease;
}

.c-accordion .c-accordion__link._open + .c-accordion__child {
  display: block !important;
}

@media (min-width: 1024px) {
  br.c-brSP {
    display: none;
  }
}

@media not all and (min-width: 1024px) {
  br.c-brPC {
    display: none;
  }
}

.c-buttonWrap {
  display: flex;
  margin-bottom: 60px;
}

.c-buttonWrap._left {
  justify-content: flex-start;
}

.c-buttonWrap._center {
  justify-content: center;
}

.c-buttonWrap._right {
  justify-content: flex-end;
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  padding: 0 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  border-radius: 4px;
}

@media not all and (min-width: 1024px) {
  .c-button {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .c-button {
    min-width: 450px;
    -webkit-font-smoothing: antialiased;
  }
}

.c-button._full {
  width: 100%;
  min-width: auto;
}

.c-button._h50 {
  min-height: 50px;
}

.c-button._blue {
  color: #fff;
  background: #2e5c99;
}

@media (min-width: 1024px) {
  .c-button._blue {
    transition: opacity 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }

  .c-button._blue:hover {
    opacity: 0.5;
  }
}

.c-button._blueLine {
  color: #2e5c99;
  border: 1px solid rgba(46, 92, 153, 0.7);
  transition: background-color 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955),
    border-color 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955),
    color 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@media (min-width: 1024px) {
  .c-button._blueLine:hover {
    color: #fff;
    background: #2e5c99;
    border-color: #2e5c99;
  }
}

.c-button._black {
  min-height: 50px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955),
    border-color 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955),
    color 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@media (min-width: 1024px) {
  .c-button._black:hover {
    color: #fff;
    background: #000;
    border-color: #000;
  }
}

.c-button + .c-button {
  margin-left: 10px;
}

@media (min-width: 1024px) {
  .c-card {
    display: flex;
    align-items: center;
  }
}

.c-card a {
  text-decoration: none;
}

@media (min-width: 1024px) {
  .c-card a:hover .c-card__image {
    opacity: 0.5;
  }
}

.c-card._full {
  margin-bottom: 110px;
}

@media (min-width: 1024px) {
  .c-card._full {
    margin-bottom: 120px;
  }
}

@media (min-width: 1024px) {
  .c-card._full .c-card__image {
    flex: 1 1 69.8%;
    max-width: none;
  }

  .c-card._full .c-card__image > img {
    max-width: none;
  }
}

.c-card._full .c-card__textBlock {
  width: auto;
}

@media (min-width: 1024px) {
  .c-card._full .c-card__description,
  .c-card._full .c-card__title {
    width: 320px;
  }
}

.c-card._full .c-card__description {
  margin-top: 15px;
  font-size: 0.9375rem;
  line-height: 2;
}

.c-card._half {
  margin-bottom: 90px;
}

@media (min-width: 1024px) {
  .c-card._half .c-card__image {
    max-width: none;
    padding-right: 30px;
  }

  .c-card._half .c-card__textBlock {
    margin-left: 30px;
  }
}

.p-technology__technology .c-card._half:nth-last-of-type(1) {
  margin-bottom: 0;
}

.p-technology__technology .c-card._half .c-card__title {
  font-family: var(--ff-base-en);
  font-size: 1.5rem;
  line-height: 1.02;
}

@media not all and (min-width: 1024px) {
  .p-technology__technology .c-card._half .c-card__title {
    margin-top: 30px;
  }
}

@media (min-width: 1024px) {
  .p-technology__technology .c-card._half .c-card__title {
    margin-top: 23px;
  }
}

.p-technology__technology .c-card._half .c-card__description {
  margin-top: 22px;
  font-size: 0.9375rem;
  line-height: 2;
}

@media (min-width: 1024px) {
  .p-technology__technology .c-card._half .c-card__description {
    margin-top: 26px;
  }
}

@media (min-width: 1024px) {
  .p-technology__technology .c-card._half:nth-of-type(odd) {
    flex-direction: row-reverse;
  }

  .p-technology__technology .c-card._half:nth-of-type(odd) .c-card__image {
    padding-right: 0;
    padding-left: 60px;
  }

  .p-technology__technology .c-card._half:nth-of-type(odd) .c-card__textBlock {
    margin-left: 0;
  }

  .p-technology__technology .c-card._half:nth-of-type(even) .c-card__image {
    padding-right: 60px;
    padding-left: 0;
  }

  .p-technology__technology .c-card._half:nth-of-type(even) .c-card__textBlock {
    margin-left: 0;
  }
}

.c-card .c-card__image {
  display: block;
  width: 100%;
}

@media (min-width: 1024px) {
  .c-card .c-card__image {
    flex: 1 1 50%;
    max-width: 480px;
    transition: opacity 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.c-card .c-card__image > img {
  width: 100%;
  height: auto;
  opacity: 1;
}

.c-card .c-card__textBlock {
  width: 100%;
}

@media (min-width: 1024px) {
  .c-card .c-card__textBlock {
    flex: 1 1 calc(50% - 60px);
    margin-left: 60px;
  }
}

.c-card .c-card__info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 21px;
}

@media (min-width: 1024px) {
  .c-card .c-card__info {
    margin-top: 5px;
  }
}

.c-card .c-card__category {
  padding: 5px 6px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  color: #4d5b66;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.p-top .c-card .c-card__category {
  border-color: rgba(77, 91, 102, 0.1);
}

.c-card .c-card__date {
  margin-left: 10px;
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5);
}

.p-top .c-card .c-card__date {
  color: #4d5b66;
}

.c-card .c-card__title {
  margin-top: 18px;
  font-family: var(--ff-base-en);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.7;
}

.c-card .c-card__title._bold:not(:root) {
  font-weight: 600;
}

@media (min-width: 1024px) {
  .c-card .c-card__title._bold:not(:root) {
    -webkit-font-smoothing: antialiased;
  }
}

.c-card .c-card__description {
  margin-top: 5px;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 2;
  color: grey;
}

.p-about .c-card .c-card__description {
  padding-right: 35px;
}

.c-card .c-moreLinkButton {
  margin-top: 19px;
}

.c-card._vertical {
  flex-direction: column;
}

.c-card._vertical .c-card__image {
  flex: auto;
  max-width: 100%;
}

.c-card._vertical .c-card__textBlock {
  flex: auto;
  margin-left: 0;
}

.c-card._vertical .c-card__info {
  margin-top: 15px;
}

.c-card._vertical .c-card__title {
  margin-top: 10px;
  font-family: var(--ff-base-en);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 2;
}

.c-card._vertical .c-card__title._bold {
  font-size: 0.9375rem;
  line-height: 2;
}

@media not all and (min-width: 1024px) {
  .c-cardFull .c-card._full:nth-of-type(odd) {
    margin-right: 60px;
  }

  .c-cardFull .c-card._full:nth-of-type(odd) .c-card__textBlock {
    margin-left: 30px;
  }
}

@media not all and (min-width: 1024px) {
  .c-cardFull .c-card._full:nth-of-type(even) {
    margin-left: 60px;
  }

  .c-cardFull .c-card._full:nth-of-type(even) .c-card__textBlock {
    margin-right: 30px;
  }
}

@media (min-width: 1024px) {
  .c-cardFull .c-card._full:nth-of-type(even) {
    flex-direction: row-reverse;
  }

  .c-cardFull .c-card._full:nth-of-type(even) .c-card__textBlock {
    margin-right: 60px;
    margin-left: 0;
  }

  .c-cardFull .c-card._full:nth-of-type(even) .c-card__description,
  .c-cardFull .c-card._full:nth-of-type(even) .c-card__title {
    margin-left: auto;
  }
}

@media not all and (min-width: 1024px) {
  .c-cardFull .c-card__title {
    margin-top: 28px;
  }
}

@media not all and (min-width: 1024px) {
  .c-cardFull .c-card__description {
    margin-top: 20px;
  }
}

@media (min-width: 1024px) {
  .c-cardList {
    display: flex;
    justify-content: space-between;
  }
}

.c-cardList + .c-buttonWrap {
  margin-top: 80px;
}

@media (min-width: 1024px) {
  .c-cardList + .c-buttonWrap {
    margin-top: 120px;
  }
}

.c-cardBar {
  margin-bottom: 80px;
}

.c-cardBar:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .c-cardList .c-cardBar {
    flex-basis: 50%;
    width: 50%;
  }
}

.c-cardList .c-cardBar:nth-of-type(odd) {
  text-align: right;
}

@media not all and (min-width: 1024px) {
  .c-cardList .c-cardBar:nth-of-type(odd) .c-cardBar__image {
    margin-right: 60px;
  }

  .c-cardList .c-cardBar:nth-of-type(odd) figcaption {
    margin-right: -60px;
  }

  .c-cardList .c-cardBar:nth-of-type(odd) .c-cardBar__imageText {
    padding: 0 30px 0 60px;
  }
}

@media (min-width: 1024px) {
  .c-cardList .c-cardBar:nth-of-type(odd) .c-cardBar__image {
    margin-right: 30px;
  }

  .c-cardList .c-cardBar:nth-of-type(odd) figcaption {
    margin-right: -30px;
  }

  .c-cardList .c-cardBar:nth-of-type(odd) .c-cardBar__imageText {
    padding: 0 30px;
  }
}

@media not all and (min-width: 1024px) {
  .c-cardList .c-cardBar:nth-of-type(even) .c-cardBar__image {
    margin-left: 60px;
  }

  .c-cardList .c-cardBar:nth-of-type(even) figcaption {
    margin-left: -60px;
  }

  .c-cardList .c-cardBar:nth-of-type(even) .c-cardBar__imageText {
    padding: 0 60px 0 30px;
  }
}

@media (min-width: 1024px) {
  .c-cardList .c-cardBar:nth-of-type(even) {
    margin-top: 147px;
  }

  .c-cardList .c-cardBar:nth-of-type(even) .c-cardBar__image {
    margin-left: 30px;
  }

  .c-cardList .c-cardBar:nth-of-type(even) figcaption {
    margin-left: -30px;
  }

  .c-cardList .c-cardBar:nth-of-type(even) .c-cardBar__imageText {
    padding: 0 30px;
  }
}

.c-cardList .c-cardBar .c-cardBar__imageCaption,
.c-cardList .c-cardBar figcaption {
  padding-left: 30px;
}

.c-cardBar .c-cardBar__image img {
  width: 100%;
}

.c-cardBar .c-cardBar__imageCaption,
.c-cardBar figcaption {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 80px;
  padding-right: 30px;
  margin-top: -0.6em;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.7;
  background: transparent;
  -webkit-transform: translateZ(0);
  -webkit-perspective: 1000;
  -webkit-backface-visibility: hidden;
}

@media (min-width: 1024px) {
  .c-cardBar .c-cardBar__imageCaption,
  .c-cardBar figcaption {
    -webkit-font-smoothing: antialiased;
  }
}

@media not all and (min-width: 1024px) {
  .c-cardBar .c-cardBar__imageCaption,
  .c-cardBar figcaption {
    padding-left: 30px;
  }
}

.c-cardBar .c-cardBar__imageText {
  font-size: 0.9375rem;
  line-height: 2;
}

.p-top__about .c-cardBar .c-cardBar__imageText {
  font-size: 0.875rem;
  line-height: 2;
  color: grey;
}

@media not all and (min-width: 1024px) {
  .c-cardBar .c-cardBar__body .c-button {
    margin-top: 20px;
  }
}

@media (min-width: 1024px) {
  .c-cardBar .c-cardBar__body {
    display: flex;
    justify-content: space-between;
  }

  .c-cardBar .c-cardBar__body .c-cardBar__imageText {
    flex-basis: calc(100% - 300px);
    width: calc(100% - 300px);
  }

  .c-cardBar .c-cardBar__body .c-button {
    width: 280px;
    height: 50px;
  }
}

@media (min-width: 1024px) and (min-width: 1024px) {
  .c-cardBar .c-cardBar__body .c-button {
    margin-top: -10px;
  }
}

@media (min-width: 1024px) {
  .c-card2colList {
    display: flex;
    justify-content: space-between;
  }
}

@media not all and (min-width: 1024px) {
  .c-card2col:nth-of-type(even) {
    margin-top: 53px;
  }
}

@media (min-width: 1024px) {
  .c-card2colList .c-card2col {
    flex-basis: calc(50% - 15px);
    width: calc(50% - 15px);
  }
}

@media not all and (min-width: 1024px) {
  .c-card2col._full:nth-of-type(even) {
    margin-top: 80px;
  }
}

@media (min-width: 1024px) {
  .c-card2col._full {
    flex-basis: calc(50% - 30px);
    width: calc(50% - 30px);
  }

  .c-card2col._full:nth-of-type(odd) .c-card__textBlock {
    margin-left: auto;
  }

  .c-card2col._full:nth-of-type(even) {
    margin-top: 120px;
  }
}

@media not all and (min-width: 1024px) {
  .c-card2col._full .c-card__textBlock {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media (min-width: 1024px) {
  .c-card2col._full .c-card__textBlock {
    max-width: 450px;
  }
}

.c-card2col a {
  display: block;
  text-decoration: none;
}

.c-card2col a[target="_blank"] .c-card__title {
  display: inline-flex;
  align-items: center;
}

.c-card2col a[target="_blank"] .c-card__title::after {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 5px;
  content: "";
  background: url(../../img/common/icon_link_external.svg) no-repeat 50%;
  background-size: 20px auto;
}

.p-technology .c-card2col a[target="_blank"] .c-card__title {
  color: #4d5566;
}

@media (min-width: 1024px) {
  .c-card2col a .c-card__image img {
    transition: opacity 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }

  .c-card2col a .c-card__image img:hover {
    opacity: 0.5;
  }
}

.c-card2col .c-card__image img {
  width: 100%;
  max-width: none;
}

.c-card2col .c-card__title {
  margin-top: 18px;
  font-family: var(--ff-base-en);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 2;
}

.p-technology .c-card2col .c-card__title {
  color: #4d5566;
}

.p-technology__technologyLage .c-card2col .c-card__title {
  margin-top: 22px;
  font-size: 1.5rem;
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .p-technology__technologyLage .c-card2col .c-card__title {
    margin-top: 25px;
  }
}

.c-card2col .c-card__title._bold {
  font-weight: 600;
}

@media (min-width: 1024px) {
  .c-card2col .c-card__title._bold {
    -webkit-font-smoothing: antialiased;
  }
}

.c-card2col .c-card__description {
  margin-top: 5px;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 2;
}

.p-technology__technologyLage .c-card2col .c-card__description {
  margin-top: 15px;
  font-size: 0.9375rem;
  line-height: 2;
}

.c-card3colList {
  margin-bottom: 90px;
}

@media (min-width: 1024px) {
  .c-card3colList {
    display: flex;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .c-card3colList .c-card3col {
    flex-basis: calc(33.3% - 8px);
    width: calc(33.3% - 8px);
  }
}

@media not all and (min-width: 1024px) {
  .c-card3colList .c-card3col:not(:first-child) {
    margin-top: 20px;
  }
}

@media (min-width: 1024px) {
  .c-card3colList .c-card3col:not(:first-child) {
    margin-left: 17px;
  }
}

.c-card3colList .c-card3col._gray {
  padding: 30px 30px 48px;
  background: #f8f8f8;
}

.c-card3colList .c-card__title {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .c-card3colList .c-card__title {
    -webkit-font-smoothing: antialiased;
  }
}

.c-card3colList .c-card__description {
  margin-top: 20px;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 2;
  color: grey;
}

.c-contact {
  padding: 60px 30px;
  background: #edf5fc;
}

@media (min-width: 1024px) {
  .c-contact {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

@media (min-width: 1024px) {
  .c-contact .c-contact__body {
    display: flex;
    align-items: center;
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
  }
}

.c-contact .c-contact__body .c-contact__text {
  flex: 1 1 50%;
  font-size: 0.9375rem;
  font-weight: 300;
}

@media not all and (min-width: 1024px) {
  .c-contact .c-contact__body .c-contact__text {
    margin-bottom: 30px;
  }
}

.c-contact .c-contact__body .c-contact__button {
  flex: 1 1 50%;
}

@media (min-width: 1024px) {
  .c-contact .c-contact__body .c-contact__button {
    padding-left: 30px;
  }
}

.c-hamburger {
  position: relative;
  z-index: 100;
  width: 50px;
  height: 50px;
  pointer-events: auto;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .c-hamburger {
    width: 66px;
    height: 66px;
  }
}

@media (min-width: 1024px) {
  .c-hamburger button.c-hamburger {
    transition: opacity 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
  .c-hamburger button.c-hamburger:hover {
    opacity: 0.5;
  }
}
.c-hamburger button.c-hamburger::before {
  position: absolute;
  display: inline-block;
  content: "";
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@media not all and (min-width: 1024px) {
  .c-hamburger button.c-hamburger::before {
    top: 10px;
    right: 5px;
  }
}

@media (min-width: 1024px) {
  .c-hamburger button.c-hamburger::before {
    top: 20px;
    right: 20px;
  }
}

.c-hamburger .bottom,
.c-hamburger .middle,
.c-hamburger .top {
  display: block;
  width: 40px;
  height: 1px;
  margin-right: auto;
  margin-left: auto;
  background: #000;
  opacity: 1;
  transition: opacity 0.2s ease;
}

@media (min-width: 1024px) {
  .c-hamburger .bottom,
  .c-hamburger .middle,
  .c-hamburger .top {
    width: 56px;
  }
}

._kv .c-hamburger .bottom,
._kv .c-hamburger .middle,
._kv .c-hamburger .top {
  background: #fff;
}

._kv._scroll .c-hamburger .bottom,
._kv._scroll .c-hamburger .middle,
._kv._scroll .c-hamburger .top {
  background: #000;
}

.c-hamburger .top {
  transform: translateY(-6px);
}

@media (min-width: 1024px) {
  .c-hamburger .top {
    transform: translateY(-9px);
  }
}

.c-hamburger .bottom {
  transform: translateY(6px);
}

@media (min-width: 1024px) {
  .c-hamburger .bottom {
    transform: translateY(9px);
  }
}

.l-header._open .c-hamburger button.c-hamburger::before {
  content: "Close";
  opacity: 1;
  text-decoration: line-through;
}

.l-header._open .c-hamburger .bottom,
.l-header._open .c-hamburger .middle,
.l-header._open .c-hamburger .top {
  opacity: 0;
}

[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 {
  font-family: var(--ff-base-en);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  text-align: center;
}

.c-heading01::after {
  display: block;
  width: 50px;
  height: 3px;
  margin-top: 11px;
  margin-right: auto;
  margin-left: auto;
  content: "";
  background: #2e5c99;
}

.c-heading02 {
  margin-top: 0;
  margin-bottom: 80px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .c-heading02 {
    -webkit-font-smoothing: antialiased;
  }
}

.c-heading03 {
  margin-top: 2em;
  margin-bottom: 0.5em;
  font-size: 0.875rem;
}

.c-heading04 {
  margin-top: 2em;
  margin-bottom: 0.5em;
  font-size: 1.375rem;
}

.c-heading05 {
  margin-top: 2em;
  margin-bottom: 0.5em;
  font-size: 1.125rem;
}

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: 0 0 17px;
  margin-bottom: 1px;
  font-size: 0.9375rem;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  transition: border-color 0.3s ease;
}

@media (min-width: 1024px) {
  .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"] {
    font-size: 1rem;
  }
}

.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: #ccc;
}

.c-input input[type="date"]::placeholder,
.c-input input[type="email"]::placeholder,
.c-input input[type="number"]::placeholder,
.c-input input[type="password"]::placeholder,
.c-input input[type="tel"]::placeholder,
.c-input input[type="text"]::placeholder,
.c-input input[type="time"]::placeholder {
  color: #ccc;
}

.c-input input[type="date"]:focus,
.c-input input[type="email"]:focus,
.c-input input[type="number"]:focus,
.c-input input[type="password"]:focus,
.c-input input[type="tel"]:focus,
.c-input input[type="text"]:focus,
.c-input input[type="time"]:focus {
  margin-bottom: 0;
  border-color: #2e5c99;
  border-width: 2px;
}

.js-invalid .c-input input[type="date"],
.js-invalid .c-input input[type="email"],
.js-invalid .c-input input[type="number"],
.js-invalid .c-input input[type="password"],
.js-invalid .c-input input[type="tel"],
.js-invalid .c-input input[type="text"],
.js-invalid .c-input input[type="time"] {
  margin-bottom: 0;
  border-color: #cb4545;
  border-width: 2px;
}

.c-input._narrow {
  width: 30%;
}

.c-kv {
  position: relative;
  /*  margin-bottom: 120px */
}

.c-kv img {
  width: 100%;
  height: auto;
}

.c-kv .c-kv__inner {
  position: relative;
  overflow: hidden;
}

.c-kv .c-kv__movie {
  position: relative;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  background-color: #000;
}

.c-kv .c-kv__movie::before {
  position: absolute;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
}

.c-kv .c-kv__movie video {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s linear;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-kv .c-kv__movie video:not(.ready) {
  opacity: 0;
}

.c-kv .c-kv__title {
  position: absolute;
  top: 50%;
  z-index: 99999;
  width: 100%;
  font-family: var(--ff-base-en);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  font-weight: 300;
  color: #fff;
  text-align: center;
  transform: translateY(-50%);
  -webkit-perspective: 1000;
  -webkit-backface-visibility: hidden;
}

.c-kv .c-kv__top {
  position: absolute;
  top: 50%;
  left: 60px;
  z-index: 3;
  color: #fff;
  transform: translateY(-50%);
}

@media not all and (min-width: 1024px) {
  .c-kv .c-kv__top {
    margin-top: 25px;
  }
}

@media (min-width: 1024px) {
  .c-kv .c-kv__top {
    left: 240px;
  }
}

.c-kv .c-kv__top .c-kv__topText {
  margin-bottom: 28px;
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .c-kv .c-kv__top .c-kv__topText {
    -webkit-font-smoothing: antialiased;
  }
}

@media (min-width: 1024px) {
  .c-kv .c-kv__top .c-kv__topText {
    margin-bottom: 25px;
    font-size: 3rem;
    line-height: 1.5;
  }
}

.c-kv .c-kv__top .c-kv__topModal {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  font-family: var(--ff-base-en);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: 2.7;
  text-decoration: none;
}

@media (min-width: 1024px) {
  .c-kv .c-kv__top .c-kv__topModal {
    padding-bottom: 4px;
    cursor: pointer;
  }
}

@media (min-width: 1024px) and (min-width: 1024px) {
  @supports (
    (-webkit-appearance: none) or (-moz-appearance: none) or (appearance: none)
  ) {
    .c-kv .c-kv__top .c-kv__topModal {
      background: linear-gradient(#fff, #fff) right bottom 0/0 2px no-repeat;
      transition: background-size 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .c-kv .c-kv__top .c-kv__topModal:hover {
      background-position: left bottom 0;
      background-size: 100% 2px;
    }
  }
}

.c-kv .c-kv__top .c-kv__topModal::before {
  display: inline-block;
  width: 49px;
  height: 40px;
  content: "";
  background: url(../../img/common/icon_play.svg) no-repeat 0 50%;
  background-size: 40px auto;
}

.c-modalWrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: #fff;
}

.c-modalWrap:not(.is-open) {
  display: none;
}

.c-modalWrap[aria-hidden="false"] {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.c-modalWrap[aria-hidden="true"] {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.c-modal.modal {
  position: static;
  width: 100%;
  padding: 0;
  background: 0 0;
  box-shadow: none;
}

@media (min-width: 1024px) {
  .c-modal.modal {
    width: 61%;
    max-width: 1440px;
  }
}

.c-modal.modal a.close-modal {
  display: none;
}

.c-modal .c-modal__body {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.c-modal .c-modal__body iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.c-modal .c-modal__close {
  display: block;
}

@media (min-width: 1024px) {
  .c-modal .c-modal__close {
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
  }
}

.c-modal button {
  position: relative;
  margin-top: 24px;
}

.c-modal button::after {
  position: absolute;
  top: calc(50% + 1px);
  left: -8px;
  display: block;
  width: 56px;
  height: 1px;
  content: "";
  background-color: transparent;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955),
    background 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@media (min-width: 1024px) {
  .c-modal button:hover::after {
    background-color: #2e5c99;
    opacity: 1;
  }
}

@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.c-moreLinkButton {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-right: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #2e5c99;
  text-decoration: none;
  opacity: 1;
  transition: transform 0.2s ease-out;
}

@media (min-width: 1024px) {
  .c-moreLinkButton {
    -webkit-font-smoothing: antialiased;
  }

  .c-moreLinkButton:hover::before {
    transform: translateX(5px);
  }

  .c-moreLinkButton:hover::after {
    transform: rotate(45deg) translateX(3px) translateY(-3px);
  }
}

.c-moreLinkButton:visited {
  color: #2e5c99;
}

.c-moreLinkButton::after,
.c-moreLinkButton::before {
  display: block;
  flex: none;
  content: "";
}

@media (min-width: 1024px) {
  .c-moreLinkButton::after,
  .c-moreLinkButton::before {
    transition: transform 0.2s ease-out;
  }
}

.c-moreLinkButton::before {
  order: 2;
  width: 34px;
  height: 1px;
  margin-right: -7px;
  margin-left: 10px;
  background: #2e5c99;
}

.c-moreLinkButton::after {
  order: 3;
  width: 7px;
  height: 7px;
  border-top: 1px solid #2e5c99;
  border-right: 1px solid #2e5c99;
  transform: rotate(45deg);
}

.c-moreReadButton {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  background: 0 0;
  border: none;
}

.c-moreReadButton > span {
  position: relative;
  display: block;
  padding-left: 40px;
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
}

.c-moreReadButton > span::before {
  position: absolute;
  top: 0;
  bottom: 5px;
  left: 3px;
  width: 10px;
  height: 10px;
  margin: auto;
  content: "";
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(135deg);
}

.p-technology .c-overview {
  margin-top: 2px;
  color: #4d5b66;
}

.c-overview input {
  display: none;
}

.c-overview label {
  cursor: pointer;
}

.c-overview label::before {
  padding-right: 23px;
  font-family: var(--ff-base-en);
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 600;
  font-weight: 300;
  white-space: nowrap;
  content: "View More";
  background: url(../../img/common/icon_plus.svg) no-repeat 100% 50%;
  background-size: 15px auto;
}

.c-overview .c-overview__wrap {
  height: 0;
  max-height: 8em;
  overflow: hidden;
  transition: all 0.5s;
}

.c-overview .c-overview__wrap p {
  font-size: 0.9375rem;
  line-height: 2;
}

.c-overview input:checked + label {
  display: none;
}

.c-overview input:checked + label {
  background: inherit;
}

.c-overview input:checked ~ .c-overview__wrap {
  height: auto;
  max-height: 100em;
  transition: all 0.5s;
}

.c-scroll {
  position: absolute;
  bottom: 70px;
  left: calc(50% - 50px);
  z-index: 3;
  width: 103px;
  transform: rotate(90deg) translateZ(0);
}
@media (max-width: 800px) {
  .c-scroll {
    display: none;
  }
}

@media (min-width: 1024px) {
  .c-scroll:hover {
    cursor: pointer;
  }
}

.c-scroll::before {
  position: relative;
  top: 0;
  left: 2px;
  z-index: 2;
  display: block;
  flex-basis: 37px;
  width: 37px;
  height: 37px;
  content: "";
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 1s cubic-bezier(0.5, 1, 0.89, 1);
  transform: translate3d(0, 0, 0) scale(1.2);
  -webkit-animation: scroll_circleFill 1s linear 0s infinite;
  animation: scroll_circleFill 1s linear 0s infinite;
}

.c-scroll::after {
  position: absolute;
  top: 13px;
  left: 15px;
  z-index: 3;
  display: block;
  flex-basis: 11px;
  width: 11px;
  height: 11px;
  content: "";
  background: #fff;
  border-radius: 50%;
  transform: translate3d(0, 0, 0) cubic-bezier(0.5, 1, 0.89, 1);
  -webkit-animation: scroll_circle 0.25s cubic-bezier(0.5, 1, 0.89, 1) 0s
      infinite,
    scroll_circle_shift 1s cubic-bezier(0.11, 0, 0.5, 0) 0.25s infinite;
  animation: scroll_circle 0.25s cubic-bezier(0.5, 1, 0.89, 1) 0s infinite,
    scroll_circle_shift 1s cubic-bezier(0.11, 0, 0.5, 0) 0.25s infinite;
}

.c-scroll span {
  position: absolute;
  top: 18px;
  right: 0;
  z-index: 3;
  display: inline-block;
  width: 80px;
  vertical-align: middle;
  border-top: 1px solid #fff;
  -webkit-animation: scroll-border 1s cubic-bezier(0.45, 0, 0.55, 1) 0s infinite;
  animation: scroll-border 1s cubic-bezier(0.45, 0, 0.55, 1) 0s infinite;
  will-change: animation;
}

.c-select {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .c-select {
    margin-top: -10px;
  }

  .c-select:hover::after {
    border-color: #2e5c99;
  }
}

.c-select::after {
  position: absolute;
  top: 10px;
  right: 0;
  width: 10px;
  height: 10px;
  cursor: pointer;
  content: "";
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transition: border-color 0.3s ease;
  transform: rotateZ(45deg);
}

@media (min-width: 1024px) {
  .c-select::after {
    right: 5px;
    width: 9px;
    height: 9px;
  }
}

.c-select select {
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 30px 14px 0;
  padding-bottom: 1px;
  font-size: 1rem;
  line-height: 2;
  cursor: pointer;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.c-select select[disabled] {
  cursor: not-allowed;
}

.c-select select:focus {
  padding-bottom: 0;
  border-color: #2e5c99;
  border-width: 2px;
}

.js-invalid .c-select select {
  padding-bottom: 0;
  border-color: #cb4545;
  border-width: 2px;
}

.c-select select::-ms-expand {
  display: none;
}

.c-tab {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

@media (min-width: 1024px) {
  .c-tab {
    margin-bottom: 80px;
  }
}

.c-tab .c-tab__item {
  display: block;
  flex-basis: 50%;
  width: 50%;
  max-width: 50%;
  padding: 15px 10px 20px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 2;
  color: grey;
  text-align: center;
  text-decoration: none;
  background: #fff;
  border-bottom: 3px solid rgba(46, 92, 153, 0.1);
}

@media (min-width: 1024px) {
  .c-tab .c-tab__item {
    padding: 0 10px 20px;
    -webkit-font-smoothing: antialiased;
    transition: color 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955),
      border-color 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }

  .c-tab .c-tab__item:hover {
    color: #2e5c99;
    border-color: #2e5c99;
  }
}

.c-tab .c-tab__item._current {
  color: #2e5c99;
  border-color: #2e5c99;
}

.c-textarea textarea {
  box-sizing: border-box;
  width: 100%;
  min-height: 80px;
  padding: 0 0 22px;
  margin-bottom: 1px;
  font-size: 1rem;
  line-height: 2;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 0;
}

.c-textarea textarea::-moz-placeholder {
  color: #ccc;
}

.c-textarea textarea::placeholder {
  color: #ccc;
}

.c-textarea textarea:focus {
  margin-bottom: 0;
  border-color: #2e5c99;
  border-width: 2px;
}

.js-invalid .c-textarea textarea {
  margin-bottom: 0;
  border-color: #cb4545;
  border-width: 2px;
}

/* .c-wrap__full._gap {
    margin-right: -30px;
    margin-left: -30px;
    padding-right: 30px;
    padding-left: 30px;
}

@media (min-width:1024px) {
    .c-wrap__full._gap {
        margin-right: 0;
        margin-left: 0;
        padding-right: 0;
        padding-left:0;
    }
} */

.js-tab-content {
  position: relative;
  transition: height 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.js-tab-content > * {
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),
    visibility 0.5s linear;
}

.js-tab-content > ._current {
  position: relative;
  z-index: 1;
  transition-delay: 0.5s;
}

.js-tab-content > :not(._current) {
  position: absolute;
  top: 0;
  z-index: 0;
  width: 100%;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}

.l-breadcrumb {
  width: 100%;
  margin: 20px auto;
}

.l-breadcrumb .l-breadcrumb__list {
  display: flex;
}

.l-breadcrumb .l-breadcrumb__item:nth-child(n + 2)::before {
  color: grey;
  content: "＞";
}

.l-breadcrumb .l-breadcrumb__item a {
  text-decoration: none;
}

@media (min-width: 1024px) {
  .l-breadcrumb .l-breadcrumb__item a {
    transition: opacity 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }

  .l-breadcrumb .l-breadcrumb__item a:hover {
    opacity: 0.5;
  }
}

.l-contents {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .l-contents {
    box-sizing: content-box;
  }
}

.l-contents._entry {
  width: 80%;
}

.l-contents._maxNarrow {
  max-width: 960px;
}

.l-contents._maxWide {
  max-width: 1280px;
}

.l-footer {
  width: 100%;
  position: relative;
 /* padding-top: 30px;  子ページをNavに追加される場合 */
  margin-left: auto;
  margin-right: auto;
/*  background-color: #e6e6e6; */
}

.l-footer .l-footer__nav {
  padding: 30px 30px 30px;
/*  margin-bottom: 70px;  子ページをNavに追加される場合 */
}

@media (min-width: 1024px) {
  .l-footer .l-footer__nav {
    padding: 40px 160px;
  }
}

@media (min-width: 1024px) {
  .l-footer .l-footer__main .l-footer__mainList {
    display: flex;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .l-footer .l-footer__main .l-footer__mainItem {
    flex-basis: calc(100% - 16px);
    width: calc(100% - 16px);
  }
}

@media not all and (min-width: 1024px) {
  .l-footer .l-footer__main .l-footer__mainItem:not(:first-of-type) {
    margin-top: 10px;
  }
}

@media (min-width: 1024px) {
  .l-footer .l-footer__main .l-footer__mainItem:not(:first-of-type) {
    margin-left: 16px;
  }
}

.l-footer .l-footer__main .l-footer__mainItem a {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-height: 100px;
  min-height: 100px;
  padding: 20px 40px 20px 30px;
  text-decoration: none;
  background: #f8f8f8;
  border-radius: 4px;
}

@media (min-width: 1024px) {
  .l-footer .l-footer__main .l-footer__mainItem a {
    min-height: 80px;
  }

  .l-footer
    .l-footer__main
    .l-footer__mainItem
    a:hover
    .l-footer__mainArrow::before {
    transform: rotate(45deg) translateY(-4px) translateX(4px);
  }
}

.l-footer .l-footer__main .l-footer__mainItem .l-footer__mainWrap {
  flex-basis: calc(100% - 34px);
  width: calc(100% - 34px);
}

.l-footer .l-footer__main .l-footer__mainItem .l-footer__mainTitle {
  font-family: var(--ff-base-en);
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
}

.l-footer .l-footer__main .l-footer__mainItem .l-footer__mainText {
  margin-top: 5px;
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.5);
}

.l-footer .l-footer__main .l-footer__mainItem .l-footer__mainArrow {
  flex-basis: 10px;
  width: 10px;
  height: 8px;
}

.l-footer .l-footer__main .l-footer__mainItem .l-footer__mainArrow::before {
  display: block;
  width: 10px;
  height: 10px;
  content: "";
  border-top: 1px solid grey;
  border-right: 1px solid grey;
  transition: transform 0.2s cubic-bezier(0, 0, 0.58, 1);
  transform: rotate(45deg);
}

.l-footer .l-footer__sub {
  margin-top: 60px;
}

@media (min-width: 1024px) {
  .l-footer .l-footer__sub {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
  }
}

.l-footer .l-footer__sub .l-footer__subItem {
  display: inline-block;
  margin-right: 13px;
  /*  text-transform: uppercase; */
}

@media (min-width: 1024px) {
  .l-footer .l-footer__sub .l-footer__subItem {
    padding-top: 10px;
    margin-right: 14px;
  }
}

.l-footer .l-footer__sub .l-footer__subItem a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.875rem;
  text-decoration: none;
}

@media (min-width: 1024px) {
  .l-footer .l-footer__sub .l-footer__subItem a {
    transition: opacity 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }

  .l-footer .l-footer__sub .l-footer__subItem a:hover {
    opacity: 0.5;
  }
}

@media not all and (min-width: 1024px) {
  .l-footer .l-footer__sub .l-footer__contact {
    display: flex;
    justify-content: space-between;
    margin-top: 46px;
  }
}

@media (min-width: 1024px) {
  .l-footer .l-footer__sub .l-footer__contact {
    display: inline-flex;
    justify-content: flex-end;
  }
}

.l-footer .l-footer__sub .l-footer__sns {
  display: inline-flex;
  align-items: center;
}

@media (min-width: 1024px) {
  .l-footer .l-footer__sub .l-footer__sns a {
    transition: opacity 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }

  .l-footer .l-footer__sub .l-footer__sns a:hover {
    opacity: 0.5;
  }
}

.l-footer .l-footer__sub .l-footer__sns .l-footer__snsItem {
  flex-basis: 32px;
  width: 32px;
}

@media (min-width: 1024px) {
  .l-footer .l-footer__sub .l-footer__sns .l-footer__snsItem {
    flex-basis: 24px;
    width: 24px;
  }
}

.l-footer .l-footer__sub .l-footer__sns .l-footer__snsItem:not(:first-of-type) {
  margin-left: 15px;
}

@media (min-width: 1024px) {
  .l-footer
    .l-footer__sub
    .l-footer__sns
    .l-footer__snsItem:not(:first-of-type) {
    margin-left: 20px;
  }
}

.l-footer .l-footer__sub .l-footer__sns .l-footer__snsItem img {
  width: 32px;
  height: 32px;
}

@media (min-width: 1024px) {
  .l-footer .l-footer__sub .l-footer__sns .l-footer__snsItem img {
    width: 24px;
    height: 24px;
  }
}

.l-footer .l-footer__sub .l-footer__contactBtn {
  display: block;
  margin-left: 20px;
}

.l-footer .l-footer__sub .l-footer__contactBtn a {
  background-color: transparent !important;
  border: 1px solid #4d5566;
}

.l-footer .l-footer__sub .l-footer__contactBtn a:hover {
  color: #4d5566 !important;
  background-color: transparent !important;
}

@media not all and (min-width: 1024px) {
  .l-footer .l-footer__sub .l-footer__contactBtn {
    flex-basis: calc(100% - 156px);
    width: calc(100% - 156px);
    margin-left: 32px;
  }
}

@media (min-width: 1024px) {
  .l-footer .l-footer__sub .l-footer__contactBtn {
    width: 130px;
    margin-left: 30px;
  }
}

.l-footer .l-footer__sub .l-footer__contactBtn a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

@media (min-width: 1024px) {
  .l-footer .l-footer__sub .l-footer__contactBtn a {
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955),
      border-color 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955),
      color 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }

  .l-footer .l-footer__sub .l-footer__contactBtn a:hover {
    color: #fff;
    background: #000;
    border-color: #000;
  }
}

.l-footer .l-footer__info {
  margin-top: 20px;
  padding: 60px 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
  .l-footer .l-footer__info {
    padding-right: 160px;
    padding-left: 160px;
  }
}

@media (min-width: 1024px) {
  .l-footer .l-footer__info .l-footer__infoInner {
    display: inline-flex;
    align-items: center;
  }
}

@media not all and (min-width: 1024px) {
  .l-footer .l-footer__info .l-footer__infoItem:not(:first-of-type) {
    margin-top: 13px;
    margin-left: 5px;
  }
}

@media (min-width: 1024px) {
  .l-footer .l-footer__info .l-footer__infoItem {
    margin-right: 30px;
  }
}

.l-footer .l-footer__info .l-footer__infoItem a {
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
}

@media (min-width: 1024px) {
  .l-footer .l-footer__info .l-footer__infoItem a {
    transition: opacity 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }

  .l-footer .l-footer__info .l-footer__infoItem a:hover {
    opacity: 0.5;
  }
}

.l-footer .l-footer__info .l-footer__infoItem._copy {
  display: block;
  margin-top: 15px;
  margin-left: 5px;
  font-size: 0.625rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.5);
}

@media (min-width: 1024px) {
  .l-footer .l-footer__info .l-footer__infoItem._copy {
    margin-top: 0.4em;
    margin-left: 0;
  }
}

.l-gnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 20px 0;
  text-align: center;
  visibility: hidden;
  background: #fff !important;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955),
    visibility 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@media not all and (min-width: 1024px) {
  .l-gnav {
    padding-top: 120px;
    padding-right: 60px;
    padding-left: 60px;
  }
}

@media (min-width: 1024px) {
  .l-gnav {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.l-gnav a {
  pointer-events: auto;
}

.l-header._open .l-gnav {
  visibility: visible;
  opacity: 1;
}

.l-gnav .l-gnav__inner {
  display: flex;
}

@media not all and (min-width: 1024px) {
  .l-gnav .l-gnav__inner {
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  .l-gnav .l-gnav__inner {
    justify-content: space-between;
    width: 680px;
  }
}

.l-gnav .l-gnav__main {
  text-align: left;
}

@media (min-width: 1024px) {
  .l-gnav .l-gnav__main {
    flex-basis: 284px;
    width: 284px;
  }
}

.l-gnav .l-gnav__mainItem {
  font-family: var(--ff-base-en);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: 2.7;
  /*  text-transform: uppercase; */
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.l-gnav .l-gnav__mainItem a {
  display: block;
  text-decoration: none;
  background: url(../../img/common/icon_arrow.svg) no-repeat calc(100% - 8px)
    50%;
  transition: background-position 0.1s cubic-bezier(0, 0, 0.58, 1);
}

@media (min-width: 1024px) {
  .l-gnav .l-gnav__mainItem a:hover {
    background-position: 100% 50%;
  }
}

.l-header._open .l-gnav .l-gnav__mainItem {
  opacity: 1;
}

.l-header._open .l-gnav .l-gnav__mainItem:nth-of-type(1) {
  transition-delay: 0.39s;
}

.l-header._open .l-gnav .l-gnav__mainItem:nth-of-type(2) {
  transition-delay: 0.48s;
}

.l-header._open .l-gnav .l-gnav__mainItem:nth-of-type(3) {
  transition-delay: 0.57s;
}

.l-header._open .l-gnav .l-gnav__mainItem:nth-of-type(4) {
  transition-delay: 0.66s;
}

.l-header._open .l-gnav .l-gnav__mainItem:nth-of-type(5) {
  transition-delay: 0.75s;
}

@media not all and (min-width: 1024px) {
  .l-gnav .l-gnav__subWrap {
    margin-top: 60px;
  }
}

@media (min-width: 1024px) {
  .l-gnav .l-gnav__subWrap {
    display: flex;
    flex-basis: 280px;
    flex-direction: column;
    width: 280px;
  }
}

.l-gnav .l-gnav__subWrap .c-buttonWrap {
  margin-top: 10px;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@media (min-width: 1024px) {
  .l-gnav .l-gnav__subWrap .c-buttonWrap {
    margin-top: auto;
    margin-bottom: 20px;
  }
}

.l-header._open .l-gnav .l-gnav__subWrap .c-buttonWrap {
  opacity: 1;
  transition-delay: 1.29s;
}

.l-gnav .l-gnav__subWrap .c-button {
  width: 100%;
  min-width: auto;
}

.l-gnav .l-gnav__sub {
  text-align: left;
}

.l-gnav .l-gnav__subItem {
  font-size: 0.9375rem;
  line-height: 2;
  /*   text-transform: uppercase; */
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

@media not all and (min-width: 1024px) {
  .l-gnav .l-gnav__subItem {
    display: inline-block;
    margin-right: 10px;
  }
}

@media (min-width: 1024px) {
  .l-gnav .l-gnav__subItem {
    margin-bottom: 12px;
  }
}

.l-header._open .l-gnav .l-gnav__subItem {
  opacity: 1;
}

.l-header._open .l-gnav .l-gnav__subItem:nth-of-type(1) {
  transition-delay: 0.93s;
}

.l-header._open .l-gnav .l-gnav__subItem:nth-of-type(2) {
  transition-delay: 1.02s;
}

.l-header._open .l-gnav .l-gnav__subItem:nth-of-type(3) {
  transition-delay: 1.11s;
}

.l-header._open .l-gnav .l-gnav__subItem:nth-of-type(4) {
  transition-delay: 1.2s;
}

.l-gnav .l-gnav__subItem a {
  display: block;
  text-decoration: none;
}

@media (min-width: 1024px) {
  .l-gnav .l-gnav__subItem a {
    transition: opacity 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }

  .l-gnav .l-gnav__subItem a:hover {
    opacity: 0.5;
  }
}

.l-header {
  position: fixed;
  top: 0;
  width: 100%;
  pointer-events: none;
}

.l-header .l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding-right: 15px;
  padding-left: 20px;
}

@media (min-width: 1024px) {
  .l-header .l-header__inner {
    height: 120px;
    padding-right: 35px;
    padding-left: 40px;
  }
}

.l-header .l-header__siteLogo {
  position: relative;
  z-index: 100;
}

@media (min-width: 1024px) {
  .l-header .l-header__siteLogo {
    transition: opacity 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }

  .l-header .l-header__siteLogo:hover {
    opacity: 0.5;
  }
}

.l-header .l-header__siteLogo a {
  pointer-events: auto;
}

.l-header .l-header__siteLogo svg {
  width: 80px;
  height: 18px;
}

@media (min-width: 1024px) {
  .l-header .l-header__siteLogo svg {
    width: 118px;
    height: 26px;
  }
}

.l-header._kv svg {
  fill: #fff;
}

.l-header._kv._open svg,
.l-header._kv._scroll svg {
  fill: #000;
}

.l-pagetop {
  position: absolute;
  top: 0;
  right: 0;
  width: 46px;
  height: 46px;
}

@media not all and (min-width: 1024px) {
  .l-pagetop {
    display: none;
  }
}

.l-pagetop .l-pagetop__link {
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
}

.l-sub {
  width: 280px;
  padding: 20px;
  margin-left: 20px;
  background: #f8f8f8;
}

.l-sub .l-sub__title {
  font-family: var(--ff-base-en);
  font-size: 1rem;
}

.l-sub .l-sub__list {
  margin-top: 5px;
  margin-left: 10px;
}

.l-wrap {
  position: relative;
  max-width: 1920px !important;
  margin-right: auto;
  margin-left: auto;
  background: #fff;
}

.p-404 {
  margin-top: 80px;
}

.p-404 p {
  text-align: center;
  margin-top: 1.74rem;
  font-size: 1rem;
  line-height: 1.99;
}

.p-404 .c-buttonWrap {
  margin-top: 20px;
}

.p-404 .c-buttonWrap .c-button {
  min-width: 130px;
  min-height: 40px;
}

@media (min-width: 1024px) {
  .p-about {
    padding-bottom: 30px;
  }
}

.p-about .p-aboutMain {
  margin-bottom: 87px;
}

@media (min-width: 1024px) {
  .p-about .p-aboutMain {
    margin-bottom: 110px;
  }
}

.p-about .p-aboutMain .p-aboutMain__lead {
  margin-top: -10px;
  margin-bottom: 48px;
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .p-about .p-aboutMain .p-aboutMain__lead {
    -webkit-font-smoothing: antialiased;
  }
}

.p-about .p-aboutMain .p-aboutMain__text {
  font-size: 0.9375rem;
  line-height: 2.2;
}

@media not all and (min-width: 1024px) {
  .p-about .p-aboutMain .p-aboutMain__text br {
    display: none;
  }

  .p-about .p-aboutMain .p-aboutMain__text p:not(:first-child) {
    margin-top: 2.1em;
  }
}

@media (min-width: 1024px) {
  .p-about .p-aboutMain .p-aboutMain__text {
    max-width: 480px;
  }
}

.p-about .p-slider {
  margin-bottom: 110px;
}

@media not all and (min-width: 1024px) {
  .p-about .c-cardBar {
    margin-right: -30px;
    margin-left: -30px;
  }

  @media (min-width: 1024px) {
    .p-about .c-cardBar {
      margin-right: -160px;
      margin-left: -160px;
    }
  }

  .p-about .c-cardBar figcaption {
    padding-left: 30px;
  }

  .p-about .c-cardBar .c-cardBar__body {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media not all and (min-width: 1024px) {
  .p-business {
    padding-top: 10px;
    margin-top: -30px;
  }
}

.p-business .p-businessResult {
  padding-top: 90px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.p-business .p-businessStep {
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media not all and (min-width: 1024px) {
  .p-business .p-businessStep {
    padding-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .p-business .p-businessStep {
    margin-bottom: 56px;
  }
}

.p-business .p-businessStep .p-businessStep__title {
  margin-bottom: 50px;
  font-family: var(--ff-base-en);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .p-business .p-businessStep .p-businessStep__title {
    margin-bottom: 55px;
    -webkit-font-smoothing: antialiased;
  }
}

.p-business .p-businessStep .p-businessStep__list {
  counter-reset: step;
}

@media (min-width: 1024px) {
  .p-business .p-businessStep .p-businessStep__list {
    display: flex;
    justify-content: space-between;
  }
}

@media not all and (min-width: 1024px) {
  .p-business .p-businessStep .p-businessStep__item:not(:first-child) {
    margin-top: 40px;
  }
}

@media (min-width: 1024px) {
  .p-business .p-businessStep .p-businessStep__item {
    flex-basis: 29.1%;
    width: 29.1%;
    margin-bottom: 45px;
  }

  .p-business
    .p-businessStep
    .p-businessStep__item:nth-child(3n + 2):last-child {
    margin-right: calc(29.1% + ((100% - 29.1% * 3) / 2));
  }
}

.p-business .p-businessStep .p-businessStep__item figure {
  display: flex;
  flex-direction: column-reverse;
}

.p-business .p-businessStep .p-businessStep__item figure img {
  width: 100%;
  max-width: none;
}

.p-business .p-businessStep .p-businessStep__item figcaption {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  padding-left: 63px;
}

.p-business .p-businessStep .p-businessStep__item figcaption span {
  flex: 1 1 calc(100% - 63px);
  font-size: 0.9375rem;
  line-height: 2;
}

.p-business .p-businessStep .p-businessStep__item figcaption::before {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex: 1 1 48px;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-family: var(--ff-base-en);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1px;
  color: #fff;
  content: counter(step);
  counter-increment: step;
  background: #2e5c99;
  border-radius: 50%;
}

.p-business .p-businessProduct {
  margin-bottom: 90px;
}

.p-business .p-businessProduct .p-businessProduct__title {
  margin-bottom: 50px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .p-business .p-businessProduct .p-businessProduct__title {
    -webkit-font-smoothing: antialiased;
  }
}

.p-business .p-businessProduct .p-businessProduct__image {
  margin-bottom: 60px;
}

@media (min-width: 1024px) {
  .p-business .p-businessProduct .p-businessProduct__image {
    display: flex;
    justify-content: space-between;
  }
}

@media not all and (min-width: 1024px) {
  .p-business
    .p-businessProduct
    .p-businessProduct__image
    .p-businessProduct__imageImg
    + .p-businessProduct__imageImg {
    margin-top: 5px;
  }
}

@media (min-width: 1024px) {
  .p-business
    .p-businessProduct
    .p-businessProduct__image
    .p-businessProduct__imageImg {
    flex-basis: calc(50% - 3px);
    width: calc(50% - 3px);
  }
}

.p-business
  .p-businessProduct
  .p-businessProduct__image
  .p-businessProduct__imageImg
  img {
  width: 100%;
  max-width: none;
}

.p-business .p-businessProduct__detail {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.p-business .p-businessProduct__item {
  padding-top: 27px;
  padding-bottom: 26px;
  font-size: 0.9375rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
  .p-business .p-businessProduct__item {
    display: flex;
    align-items: center;
  }
}

.p-business .p-businessProduct__item dt {
  flex-basis: 120px;
  width: 120px;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .p-business .p-businessProduct__item dt {
    -webkit-font-smoothing: antialiased;
  }
}

.p-business .p-businessProduct__item dd {
  flex-basis: calc(100% - 120px);
  width: calc(100% - 120px);
}

.p-cardList {
  display: flex;
  flex-direction: column;
}

.p-cardList > .c-card {
  padding-bottom: 55px;
  margin-bottom: 61px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
  .p-cardList > .c-card {
    padding-bottom: 59px;
    margin-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .p-cardList .c-card__image {
    transition: opacity 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }

  .p-cardList .c-card__image:hover {
    opacity: 0.5;
  }
}

.p-entry {
  margin-bottom: 30px;
}

.p-entry._partition {
  padding-bottom: 80px;
  margin-bottom: 90px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
  .p-entry._partition {
    padding-bottom: 90px;
    margin-bottom: 96px;
  }
}

.p-entry > :first-child {
  margin-top: 0 !important;
}

.p-entry > :last-child {
  margin-bottom: 0 !important;
}

.p-entry p {
  margin-bottom: 1.74rem;
  font-size: 1rem;
  line-height: 1.99;
}

.p-entry a {
  color: #2e5c99;
  text-decoration: underline;
  transition: opacity 0.2s ease-in-out;
}

@media (min-width: 1024px) {
  .p-entry a {
    transition: opacity 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }

  .p-entry a:hover {
    opacity: 0.5;
  }
}

.p-entry .wp-block-image {
  margin-top: 80px;
  margin-bottom: 75px;
}

.p-entry .wp-block-image img {
  width: 100%;
  height: auto;
}

.p-entry .wp-block-image figcaption {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 2;
  color: grey;
}

.p-entry ol,
.p-entry ul {
  padding-left: 1.1em;
  margin-top: 90px;
}

.p-entry ol {
  list-style-type: decimal;
}

.p-entry ul {
  list-style-type: disc;
}

.p-entry li {
  line-height: 2.4;
}

.p-entry li:first-child {
  margin-top: 0;
}

.p-entry li ol,
.p-entry li ul {
  padding-left: 1.3em;
  margin-top: 11px;
}

.p-entry dl::after {
  display: block;
  clear: both;
  content: "";
}

.p-entry dl dt {
  float: left;
  margin-top: 3px;
  margin-right: 1em;
  clear: left;
}

.p-entry dl dt:first-child {
  margin-top: 0;
}

.p-entry .p-entry__title {
  margin-top: 5px;
  margin-bottom: 90px;
  font-family: var(--ff-base-en);
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1.7;
}

.p-entry .p-entry__info {
  display: flex;
  align-items: center;
}

.p-entry .p-entry__category {
  display: block;
  padding: 5px 6px;
  margin-right: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  color: #666;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.p-entry .p-entry__date {
  display: block;
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5);
}

.l-contents._entry .p-entry._faq {
  margin-bottom: 0;
}

.p-entry._faq .wp-block-columns {
  display: flex;
  flex-direction: column;
  padding-top: 60px;
  margin-top: 60px;
}

.p-entry._faq .wp-block-columns:first-child {
  padding-top: 0;
  margin-top: 0;
}

.p-entry._faq .wp-block-columns:not(:first-child) {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
  .p-entry._faq .wp-block-columns {
    flex-direction: row;
    align-items: center;
  }
}

.p-entry._faq h2 {
  margin-top: 0;
  font-size: 1.25rem;
  font-weight: 300;
}

.p-entry._faq p {
  margin-bottom: 1.74rem;
  font-size: 1rem;
  line-height: 1.99;
  font-weight: 300;
}

.p-entry._faq figure {
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
}

@media not all and (min-width: 1024px) {
  .p-entry._faq figure {
    margin-top: 30px;
  }
}

@media (min-width: 1024px) {
  .p-entry._faq figure {
    margin-left: 30px;
  }
}

.p-entry._faq figure img {
  height: auto;
}

.p-entry._privacy {
  margin-top: 90px;
  text-align: left;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 1024px) {
  .p-entry._privacy {
    padding-left: calc(100% * 0.15);
    padding-right: calc(100% * 0.15);
  }
}

.p-entry._privacy h2 {
  margin-top: 50px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.7;
}

.p-entry._privacy p {
  margin-bottom: 1.74rem;
  font-size: 1rem;
  line-height: 1.99;
}

.p-entry._privacy ol,
.p-entry._privacy ul {
  margin-top: 20px;
  margin-left: 20px;
}

.p-entry .p-entry__box {
  padding: 35px 30px 30px;
  margin-top: 80px;
  background: #f8f8f8;
}

.p-entry .p-entry__box .p-entry__boxTitle {
  font-family: var(--ff-base-en);
  margin-top: 0;
  margin-bottom: 1em;
}

.p-entry .p-entry__box p {
  margin-top: 2em;
  font-size: 0.875rem;
  line-height: 2;
}

.p-entry .p-entry__box p:first-of-type {
  margin-top: 0;
}

.p-entryList {
    clear:both;
  width: 100%;
  margin-top: 90px;
  padding-bottom:100px;
  margin-left: auto;
  margin-right: auto;
}
@media screen(min-width:1024px) {
  .p-entryList {
    width: 80%;
  }
}

.l-contents._entry .p-entryList {
  margin-bottom: 0;
}

.p-entryList a {
  text-decoration: none;
}

.p-entryList .p-entryList__heading {
  margin-bottom: 30px;
  font-family: var(--ff-base-en);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  font-weight: 300;
}

.p-entryList .p-entryList__group {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: left;
}

.p-top .p-entryList .p-entryList__group {
  border-color: rgba(77, 91, 102, 0.1);
}

.p-entryList .p-entryList__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.p-top .p-entryList .p-entryList__item {
  border-color: rgba(77, 91, 102, 0.1);
}

.p-entryList .p-entryList__item a {
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
  transition: opacity 0.3s ease-in-out;
}

@media (min-width: 1024px) {
  .p-entryList .p-entryList__item a {
    display: flex;
    align-items: flex-start;
  }

  .p-entryList._wide .p-entryList__item a {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .p-entryList .p-entryList__item a:hover {
    opacity: 0.5;
  }
}

.p-entryList .p-entryList__date {
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.5);
}

@media (min-width: 1024px) {
  .p-entryList .p-entryList__date {
    flex: none;
    width: 100%;
    max-width: 140px;
    padding-top: 7px;
  }
}

.p-top .p-entryList .p-entryList__date {
  color: #4d5b66;
}

.p-entryList .p-entryList__title {
  font-family: var(--ff-base-en);
  font-weight: 300;
  line-height: 2;
}

.p-entryList .p-entryList__footer {
  margin-top: 30px;
  text-align: right;
}

.p-form__sec:not(:root) {
  padding-top: 70px;
}

@media (min-width: 1024px) {
  .p-form__sec:not(:root) {
    padding-top: 110px;
  }
}

@media (min-width: 1024px) {
  .p-form__sec:not(:root) .c-heading01 + p {
    margin-top: 40px;
  }
}

.p-form__sec:not(:root) .c-btnWrap._center {
  margin-top: 36px;
}

@media (min-width: 1024px) {
  .p-form__sec:not(:root) .c-btnWrap._center {
    margin-top: 60px;
  }
}

.p-form {
  margin-top: 20px;
}

@media (min-width: 1024px) {
  .p-form {
    margin-top: 30px;
  }
}

.p-form h3 {
  margin: 0 0 12px;
}

.p-form form {
  margin-top: 90px;
}

@media (min-width: 1024px) {
  .p-form form {
    margin-top: 107px;
  }
}

.js-invalid .p-form__invalid {
  margin-top: 8px;
  font-size: 0.875rem;
  line-height: 2;
  color: #cb4545;
}

.js-valid .p-form__invalid {
  display: none;
}

.p-form__label::after {
  position: absolute;
  display: inline-block;
  margin-left: -2em;
  color: #2e5c99;
  content: "";
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.js-valid .p-form__label::after {
  content: "OK";
  opacity: 1;
}

.p-form__required {
  margin-left: 0.5em;
  font-weight: 400;
  color: #cb4545;
  opacity: 1;
  transition: opacity 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.js-valid .p-form__required {
  visibility: hidden;
  opacity: 0;
}

.p-form__column {
  width: 100%;
}

@media (min-width: 1024px) {
  .p-form__column {
    display: flex;
  }
}

.p-form__column:not(:first-of-type) {
  margin-top: 60px;
}

@media (min-width: 1024px) {
  .p-form__column:not(:first-of-type) {
    margin-top: 77px;
  }
}

.p-form__column .p-form__columnTitle {
  margin-bottom: 10px;
  font-family: var(--ff-base-en);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 30/14;
}

@media (min-width: 1024px) {
  .p-form__column .p-form__columnTitle {
    flex-basis: 280px;
    width: 280px;
  }
}

@media (min-width: 1024px) {
  .p-form__column .p-form__columnBody {
    flex-basis: calc(100% - 280px);
    width: calc(100% - 280px);
  }
}

.p-form__column .p-form__note {
  margin-top: 8px;
  font-size: 0.875rem;
  line-height: 2;
  color: grey;
}

.p-form__btnWrap {
  margin: 60px 0 40px;
  text-align: center;
}

@media (min-width: 1024px) {
  .p-form__btnWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 280px;
  }
}

.p-form__btnWrap p:not([class]) {
  margin-left: auto;
}

.p-form__btnWrap .c-button {
  width: 100%;
  min-width: auto;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 1024px) {
  .p-form__btnWrap .c-button {
    width: 280px;
    margin-right: 0;
    margin-left: 0;
  }
}

.p-form__btnWrap .c-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.p-form__btnWrap .c-button:not([value="送信しました"]):disabled {
  color: #2e5c99;
  background: #fff;
  border: 1px solid #2e5c99;
}

@media (min-width: 1024px) {
  .p-form__btnWrap .c-button:not([value="送信しました"]):disabled:hover {
    opacity: 1;
  }
}

.p-form__btnWrap .p-form_default,
.p-form__btnWrap .p-form_err,
.p-form__btnWrap .p-form_message {
  font-size: 0.9375rem;
  line-height: 2;
  text-align: left;
}

@media not all and (min-width: 1024px) {
  .p-form__btnWrap .p-form_default,
  .p-form__btnWrap .p-form_err,
  .p-form__btnWrap .p-form_message {
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .p-form__btnWrap .p-form_default,
  .p-form__btnWrap .p-form_err,
  .p-form__btnWrap .p-form_message {
    margin-right: 30px;
  }
}

.p-form__btnWrap .p-form_err {
  font-weight: 600;
  color: #cb4545;
}

.p-form__btnWrap .p-form_message {
  color: #2e5c99;
}

.js-wpcf7-validation [aria-hidden="true"] {
  display: none;
}

.p-form__download {
  padding: 30px;
  margin-top: 60px;
  background: #edf5fc;
}

@media (min-width: 1024px) {
  .p-form__download {
    padding: 60px;
  }
}

@media (min-width: 1024px) {
  .p-form__download .p-form__downloadWrap {
    display: flex;
    align-items: center;
  }
}

.p-form__download .p-form__downloadText {
  font-size: 0.9375rem;
  line-height: 2;
}

@media (min-width: 1024px) {
  .p-form__download .p-form__downloadText {
    flex-basis: calc(100% - 280px);
    width: calc(100% - 280px);
  }
}

.p-form__download .p-form__downloadText dt {
  font-weight: 600;
}

@media not all and (min-width: 1024px) {
  .p-form__download .p-form__downloadBtn {
    margin-top: 20px;
  }
}

@media (min-width: 1024px) {
  .p-form__download .p-form__downloadBtn {
    flex-basis: 280px;
    width: 280px;
  }

  .p-form__download .p-form__downloadBtn .c-button {
    width: 100%;
    min-width: auto;
  }
}

.wpcf7 form div.wpcf7-response-output {
  display: none;
}

.wpcf7 .ajax-loader {
  position: absolute;
  top: calc(50% - 12px);
}

.p-kv {
  position: relative;
  height: 240px;
}

@media (min-width: 1024px) {
  .p-kv {
    height: 420px;
  }
}

.p-kv .p-kv__inner {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 10;
  width: 100%;
  transform: translateY(-50%);
}

.p-kv .p-kv__title {
  line-height: 1.4;
  color: #fff;
  text-align: center;
}

.p-kv .p-kv__title .jp {
  font-size: 1.5rem;
}

.p-kv .p-kv__title .en {
  margin-top: 10px;
  font-size: 1rem;
}

.p-kv .p-kv__title span {
  display: block;
}

.p-kv .p-kv__bg {
  width: 100%;
  height: inherit;
}

@media (min-width: 1024px) {
  .p-kv .p-kv__bg {
    height: 420px;
  }
}

.p-kv .p-kv__bg img {
  display: block;
  width: 100%;
  height: 100%;
}

.p-salon .p-salon__lead {
  margin-top: 80px;
  margin-bottom: 20px;
  font-size: 0.9375rem;
  line-height: 2;
  text-align: center;
}

@media (min-width: 1024px) {
  .p-salon .p-salon__lead {
    margin-bottom: 35px;
  }
}

.p-salon .p-salonMap {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: calc(422 / 316 * 100%);
  overflow: hidden;
  margin-bottom: -54px;
  background: #f8f8f8;
}

@media (min-width: 1024px) {
  .p-salon .p-salonMap {
    padding-top: calc(480 / 640 * 100%);
  }
}

.p-salon .p-salonMap::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: url(../../img/common/loading.svg) no-repeat 50%;
}

.p-salon .p-salonMap::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-top: 58px;
  font-size: 0.9375rem;
  line-height: 2;
  color: #999;
  content: "マップを読み込み中です";
}

.p-salon .p-salonMap iframe {
  position: absolute;
  top: -54px;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  margin-bottom: -54px;
}

@media not all and (min-width: 1024px) {
  .p-slider {
    overflow: initial !important;
  }
}

.p-about .p-slider {
  margin-left: -30px;
}

@media (min-width: 1024px) {
  .p-about .p-slider {
    margin-right: -160px;
    margin-left: -160px;
  }
}

.p-slider .p-slider__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.p-about .p-slider .p-slider__header {
  margin-left: 30px;
}

@media (min-width: 1024px) {
  .p-about .p-slider .p-slider__header {
    margin-right: 160px;
    margin-left: 160px;
  }
}

.p-slider .p-slider__footer {
  margin-top: 30px;
  text-align: right;
}

@media (min-width: 1024px) {
  .p-slider .p-slider__footer {
    margin-top: 20px;
  }
}

.p-slider .p-slider__title,
.c-future__title,
.p-entry h2 {
  font-family: var(--ff-base-en);
  font-size: 1.75rem;
  font-weight: 300;
  margin-bottom: 1.4em;
}

@media (min-width: 1024px) {
  .p-slider .p-slider__title,
  .c-future__title,
  .p-entry h2 {
    -webkit-font-smoothing: antialiased;
  }
}

.p-slider .p-slider__title[data-lang="en"],
.c-future__title[data-lang="en"],
.p-entry h2[data-lang="en"] {
  font-family: var(--ff-base-en);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  font-weight: 300;
}

@media (min-width: 1024px) {
  .p-slider .p-slider__title,
  .c-future__title {
    margin-top: -8px;
  }
}

.p-slider .p-slider__navigation {
  display: flex;
  align-items: center;
}

.p-slider .p-slider__navigationBorder {
  display: block;
  width: 30px;
  height: 1px;
  margin-right: 10px;
  margin-left: 10px;
  background: #2e5c99;
}

.p-slider.swiper-container {
  opacity: 0;
  transition: opacity 0.1s linear;
}

.p-slider.swiper-container.swiper-container-initialized {
  opacity: 1;
}

.p-slider .swiper-slide {
  width: 90% !important;
}

@media (min-width: 1024px) {
  .p-slider .swiper-slide {
    width: 29% !important;
  }

  .l-contents._entry .p-slider .swiper-slide,
  .p-about .p-slider .swiper-slide {
    width: 41% !important;
  }
}

.p-slider .swiper-button-next,
.p-slider .swiper-button-prev {
  position: static;
  width: auto;
  height: auto;
  padding-bottom: 3px;
  margin-top: initial;
  font-size: 0.75rem;
  font-weight: 600;
  color: #2e5c99;
}

.p-slider .swiper-button-next::after,
.p-slider .swiper-button-next::before,
.p-slider .swiper-button-prev::after,
.p-slider .swiper-button-prev::before {
  content: none;
}

@media (min-width: 1024px) {
  @supports (
    (-webkit-appearance: none) or (-moz-appearance: none) or (appearance: none)
  ) {
    .p-slider .swiper-button-prev {
      background: linear-gradient(#2e5c99, #2e5c99) left bottom 0/0 2px
        no-repeat;
      transition: background-size 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .p-slider .swiper-button-prev:hover {
      background-position: right bottom 0;
      background-size: 100% 2px;
    }
  }
}

@media (min-width: 1024px) {
  @supports (
    (-webkit-appearance: none) or (-moz-appearance: none) or (appearance: none)
  ) {
    .p-slider .swiper-button-next {
      background: linear-gradient(#2e5c99, #2e5c99) right bottom 0/0 2px
        no-repeat;
      transition: background-size 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .p-slider .swiper-button-next:hover {
      background-position: left bottom 0;
      background-size: 100% 2px;
    }
  }
}

.p-slider .swiper-button-disabled {
  color: rgba(0, 0, 0, 0.3);
  opacity: 1 !important;
}

.p-technologyMain__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

@media not all and (min-width: 1024px) {
  .p-technologyMain__bg {
    display: none;
  }
}

.p-technologyMain {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  color: #4d5566;
}

@media not all and (min-width: 1024px) {
  .p-technologyMain {
    padding: 90px 0;
  }
}

@media (min-width: 1024px) {
  .p-technologyMain {
    align-items: center;
    height: 100vh;
  }
}

.p-technologyMain .p-technologyMain__inner {
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .p-technologyMain .p-technologyMain__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 960px;
  }
}

.p-technologyMain .p-technologyMain__inner .p-technologyMain__image {
  display: block;
  text-align: center;
}

@media not all and (min-width: 1024px) {
  .p-technologyMain .p-technologyMain__inner .p-technologyMain__image {
    margin-bottom: 70px;
  }
}

@media not all and (min-width: 1024px) {
  .p-technologyMain .p-technologyMain__inner .p-technologyMain__image img {
    width: 110px;
    height: 116px;
  }
}

@media (min-width: 1024px) {
  .p-technologyMain .p-technologyMain__inner .p-technologyMain__image img {
    margin-right: 30px;
  }
}

@media (min-width: 1024px) {
  .p-technologyMain .p-technologyMain__inner .p-technologyMain__image {
    flex: 1 1 480px;
    min-width: 480px;
  }
}
.p-technologyMain .p-technologyMain__inner .p-technologyMain__body {
  padding: 0 20px;
}

@media (min-width: 1024px) {
  .p-technologyMain .p-technologyMain__inner .p-technologyMain__body {
    flex: 1 1 480px;
    min-width: 480px;
  }
}

.p-technologyMain .p-technologyMain__inner .p-technologyMain__lead {
  margin-bottom: 40px;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .p-technologyMain .p-technologyMain__inner .p-technologyMain__lead {
    -webkit-font-smoothing: antialiased;
  }
}

@media (min-width: 1024px) {
  .p-technologyMain .p-technologyMain__inner .p-technologyMain__lead br {
    display: none;
  }
}

.p-technologyMain .p-technologyMain__inner .p-technologyMain__text {
  font-size: 0.9375rem;
  line-height: 2.2;
}

@media not all and (min-width: 1024px) {
  .p-technologyMain
    .p-technologyMain__inner
    .p-technologyMain__text
    p:not(:first-child) {
    margin-top: 2em;
  }
}

@media not all and (min-width: 1024px) {
  .p-technology {
    background: url(../../img/technology/technology_main_img_sp@2x.jpg)
      no-repeat 0 0;
    background-size: 100% auto;
  }
}

.p-technology .c-heading02 {
  color: #6095be;
  text-align: center;
}

.p-technology .p-technology__technology {
  position: relative;
  z-index: 99;
  height: 100%;
  padding-top: 90px;
  padding-bottom: 172px;
  margin-top: 90px;
}

@media (min-width: 1024px) {
  .p-technology .p-technology__technology {
    z-index: 0;
    padding-top: 180px;
    padding-bottom: 180px;
    margin-top: 0;
    transform: translateY(-60px);
  }
}

.p-technology .p-technology__technology .p-technology__technologyBg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: block;
  width: 235px;
  height: 100%;
  background: #f5f9ff;
}

@media (min-width: 1024px) {
  .p-technology .p-technology__technology .p-technology__technologyBg {
    top: 0;
    width: 81%;
  }
}

@media (min-width: 1024px) {
  .p-technology .p-technologyHistory {
    margin-top: 30px;
    margin-bottom: 120px;
  }
}

.p-technology .p-technologyHistory .p-technologyHistory__wrap {
  display: flex;
}

@media not all and (min-width: 1024px) {
  .p-technology .p-technologyHistory .p-technologyHistory__wrap {
    flex-direction: column-reverse;
  }
}

@media (min-width: 1024px) {
  .p-technology .p-technologyHistory .p-technologyHistory__wrap {
    justify-content: space-between;
  }
}

@media not all and (min-width: 1024px) {
  .p-technology .p-technologyHistory .p-technologyHistory__inner {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media (min-width: 1024px) {
  .p-technology .p-technologyHistory .p-technologyHistory__inner {
    box-sizing: border-box;
    flex: 1 1 50%;
    padding-right: 30px;
    padding-left: 160px;
  }
}

.p-technology .p-technologyHistory .p-technologyHistory__inner .c-heading02 {
  margin-top: 50px;
  margin-bottom: 70px;
  color: #6095be;
  text-align: left;
}

@media (min-width: 1024px) {
  .p-technology .p-technologyHistory .p-technologyHistory__inner .c-heading02 {
    margin-top: 120px;
    margin-bottom: 62px;
  }
}

.p-technology
  .p-technologyHistory
  .p-technologyHistory__item:not(:last-child)
  .p-technologyHistory__itemInner
  .p-technologyHistory__body {
  padding-bottom: 70px;
  border-left: 1px solid rgba(96, 149, 190, 0.3);
}

@media (min-width: 1024px) {
  .p-technology
    .p-technologyHistory
    .p-technologyHistory__item:not(:last-child)
    .p-technologyHistory__itemInner
    .p-technologyHistory__body {
    padding-bottom: 63px;
  }
}

.p-technology .p-technologyHistory .p-technologyHistory__head {
  position: relative;
  margin-bottom: 40px;
  font-family: var(--ff-base-en);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  color: #6095be;
}

@media (min-width: 1024px) {
  .p-technology .p-technologyHistory .p-technologyHistory__head {
    margin-bottom: 38px;
  }
}

.p-technology .p-technologyHistory .p-technologyHistory__head::before {
  position: absolute;
  top: -0.3em;
  left: -38px;
  display: block;
  width: 15px;
  height: 15px;
  overflow: hidden;
  content: "";
  background-color: #6095be;
  border: 2px solid #fff;
  border-radius: 50%;
}

@media (min-width: 1024px) {
  .p-technology .p-technologyHistory .p-technologyHistory__head::before {
    top: -0.1em;
  }
}

.p-technology .p-technologyHistory .p-technologyHistory__head span {
  display: block;
  line-height: 0;
}

.p-technology .p-technologyHistory .p-technologyHistory__body {
  padding-bottom: 10px;
  padding-left: 30px;
}

.p-technology .p-technologyHistory .p-technologyHistory__title {
  font-family: var(--ff-base-en);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 2;
  color: #4d5566;
}

.p-technology .p-technologyHistory .p-technologyHistory__text {
  font-size: 0.9375rem;
  line-height: 2;
  color: #4d5566;
}

@media (min-width: 1024px) {
  .p-technology .p-technologyHistory .p-technologyHistory__image {
    flex: 1 1 50%;
    padding-left: 30px;
  }
}

.p-technology .p-technologyHistory .p-technologyHistory__image img {
  width: 100%;
  max-width: none;
}

.p-technology .p-technologyBrand {
  padding-top: 90px;
  padding-bottom: 90px;
  background: #edf5fc;
}

.p-technology .p-technologyBrand .c-heading02 {
  margin-bottom: 50px;
  color: #6095be;
}

@media (min-width: 1024px) {
  .p-technology .p-technologyBrand .c-heading02 {
    margin-bottom: 45px;
  }
}
.p-technology .p-technologyBrand .c-card2colList {
  padding: 20px;
}

@media not all and (min-width: 1024px) {
  .p-technology .p-technologyBrand .c-card2col .c-card__title {
    margin-top: 10px;
  }
}
.p-technology__technology .c-card__textBlock {
  padding: 0 20px;
}
.p-technology .p-technologyBrand .c-card2col .c-card__description {
  margin-top: 0;
}

.p-top .p-top__kv {
  position: relative;
  margin-bottom: 110px;
  text-align: center;
}

@media (min-width: 1024px) {
  .p-top .p-top__kv {
    padding-top: 5%;
  }
}

.p-top .p-top__kv .p-top__kvBg {
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
  text-align: center;
}

@media not all and (min-width: 1024px) {
  .p-top .p-top__kv .p-top__kvBg {
    bottom: 18%;
  }
}

@media (min-width: 1024px) {
  .p-top .p-top__kv .p-top__kvBg {
    top: 0;
  }
}

.p-top .p-top__kv .p-top__kvBg img {
  width: 100%;
}

@media (min-width: 1024px) {
  .p-top .p-top__kv .p-top__kvBg img {
    width: 36.6%;
  }
}

.p-top .p-top__kv .p-top__kvImage {
  position: relative;
  z-index: 2;
  margin-right: auto;
  margin-left: auto;
}

@media not all and (min-width: 1024px) {
  .p-top .p-top__kv .p-top__kvImage {
    width: 56.2%;
  }
}

@media (min-width: 1024px) {
  .p-top .p-top__kv .p-top__kvImage {
    width: 62.5%;
  }
}

.p-top .p-top__kv .p-top__kvImage img {
  display: inline-block;
  width: 100%;
  max-width: none;
  height: auto;
}

.p-top .p-top__kv .p-top__kvText {
  position: relative;
  z-index: 2;
  margin-top: 9%;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .p-top .p-top__kv .p-top__kvText {
    -webkit-font-smoothing: antialiased;
  }
}

@media (min-width: 1024px) {
  .p-top .p-top__kv .p-top__kvText {
    margin-top: 35px;
  }
}

.p-top .p-top__about {
  margin-bottom: 90px;
}

@media (min-width: 1024px) {
  .p-top .p-top__about {
    margin-bottom: 120px;
  }
}

@media not all and (min-width: 1024px) {
  .p-top .p-top__about .c-buttonWrap {
    margin-right: 30px;
    margin-left: 30px;
  }
}

.p-top .p-top__technology {
  margin-bottom: 90px;
}

@media (min-width: 1024px) {
  .p-top .p-top__technology {
    margin-bottom: 120px;
  }
}

.p-top .p-top__technology .p-top__technologyImage {
  position: relative;
  margin-right: -30px;
  margin-bottom: 90px;
  margin-left: -30px;
}

@media (min-width: 1024px) {
  .p-top .p-top__technology .p-top__technologyImage {
    margin-right: -160px;
    margin-bottom: 110px;
    margin-left: -160px;
  }
}

.p-top .p-top__technology .p-top__technologyImage picture img {
  width: 100%;
}

.p-top .p-top__technology .p-top__technologyImage .p-top__technologyLogo {
  position: absolute;
  top: calc(50% - 60px);
  left: calc(50% - 60px);
  z-index: 2;
  display: block;
}

@media (min-width: 1024px) {
  .p-top .p-top__technology .p-top__technologyImage .p-top__technologyLogo {
    top: calc(50% - 79px);
    left: calc(50% - 79px);
  }
}

.p-top .p-top__technology .p-top__technologyImage .p-top__technologyLogo img {
  width: 120px;
}

@media (min-width: 1024px) {
  .p-top .p-top__technology .p-top__technologyImage .p-top__technologyLogo img {
    width: 150px;
  }
}

@media (min-width: 1024px) {
  .p-top .p-top__technology .p-top__technologyBody {
    display: flex;
    align-items: flex-end;
  }
}

.p-top .p-top__technology .p-top__technologyBody dl {
  margin-bottom: 30px;
}

@media (min-width: 1024px) {
  .p-top .p-top__technology .p-top__technologyBody dl {
    flex-basis: 50%;
    width: 50%;
    padding-bottom: 10px;
    margin-bottom: 0;
  }
}

.p-top .p-top__technology .p-top__technologyBody dt {
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .p-top .p-top__technology .p-top__technologyBody dt {
    -webkit-font-smoothing: antialiased;
  }
}

@media (min-width: 1024px) {
  .p-top .p-top__technology .p-top__technologyBody dt {
    margin-bottom: 24px;
  }
}

.p-top .p-top__technology .p-top__technologyBody dd {
  font-size: 0.875rem;
  line-height: 2;
  color: grey;
}

.p-top .p-top__technology .p-top__technologyBody .p-top__technologyBtn {
  text-align: right;
}

@media (min-width: 1024px) {
  .p-top .p-top__technology .p-top__technologyBody .p-top__technologyBtn {
    flex-basis: 50%;
    width: 50%;
  }
}

.p-top .p-top__contents {
  padding-top: 90px;
  padding-bottom: 90px;
  background: #edf5fc;
}

.p-top .p-top__news .p-top__newsTitle {
  margin-bottom: 30px;
  font-family: var(--ff-base-en);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  font-weight: 400;
}

.p-top .p-top__news .p-entryList__group {
  margin-bottom: 30px;
}

.p-top .p-top__salon {
  margin-top: 0;
}

@media (min-width: 1024px) {
  .p-top .p-top__salon {
    margin-top: 90px;
  }
}

.p-top .p-top__salon .p-top__salonInner {
  display: flex;
}

@media not all and (min-width: 1024px) {
  .p-top .p-top__salon .p-top__salonInner {
    flex-direction: column-reverse;
  }
}

@media (min-width: 1024px) {
  .p-top .p-top__salon .p-top__salonInner {
    align-items: flex-start;
    justify-content: space-between;
  }
}

.p-top .p-top__salon .p-top__salonTitle {
  margin-bottom: 30px;
  font-family: var(--ff-base-en);
  font-size: 1.25rem;
  font-style: normal;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

@media (min-width: 1024px) {
  .p-top .p-top__salon .p-top__salonTitle {
    display: none;
  }
}

@media (min-width: 1024px) {
  .p-top .p-top__salon .p-top__salonBody {
    box-sizing: border-box;
    flex-basis: 35.5%;
    width: 35.5%;
    padding-right: 60px;
  }
}

.p-top .p-top__salon .p-top__salonBody .p-top__salonText dt {
  font-family: var(--ff-base-en);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.7;
  padding-bottom: 30px;
  text-align: center;;
}

@media not all and (min-width: 1024px) {
  .p-top .p-top__salon .p-top__salonBody .p-top__salonText dt {
    display: none;
  }
}

.p-top .p-top__salon .p-top__salonBody .p-top__salonText dd {
  font-size: 0.9375rem;
  line-height: 2;
  padding-bottom: 30px;
}

@media (min-width: 1024px) {
  .p-top .p-top__salon .p-top__salonBody .p-top__salonText dd {
    margin-top: 15px;
  }
}

.p-top .p-top__salon .p-top__salonBody .c-button {
  width: 100%;
  min-width: auto;
  min-height: 50px;
  margin-top: 20px;
}

@media not all and (min-width: 1024px) {
  .p-top .p-top__salon .swiper-container {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .p-top .p-top__salon .swiper-container {
    flex-basis: 64.5%;
    width: 64.5%;
  }
}

.p-top .p-top__salon .swiper-container .swiper-slide::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 50%;
  content: "";
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.p-top .p-top__salon .swiper-container .swiper-slide img {
  width: 100%;
}

.p-top .p-top__salon .swiper-container .swiper__text {
  position: absolute;
  bottom: 33px;
  left: 20px;
  z-index: 3;
  font-size: 0.75rem;
  line-height: 2.0833333333;
  color: #fff;
}

@media (min-width: 1024px) {
  .p-top .p-top__salon .swiper-container .swiper__text {
    bottom: 44px;
  }
}

.p-top .p-top__salon .swiper-container .swiper__text span {
  margin-right: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.8;
}

.p-top .p-top__salon .swiper-container :not(:root).swiper-pagination-bullets {
  bottom: 0;
  left: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 20px;
}

.p-top .p-top__salon .swiper-container :not(:root).swiper-pagination-bullet {
  position: relative;
  flex: 1 1 0%;
  height: 30px;
  margin: 0 2px;
  background: 0 0;
  border-radius: 0;
  opacity: 1;
}

@media (min-width: 1024px) {
  .p-top .p-top__salon .swiper-container :not(:root).swiper-pagination-bullet {
    height: 40px;
  }
}

.p-top
  .p-top__salon
  .swiper-container
  :not(:root).swiper-pagination-bullet
  span {
  position: absolute;
  bottom: 20px;
  left: 0;
  display: inline-block;
  width: 0;
  height: 3px;
  background: #fff;
}

@media (min-width: 1024px) {
  .p-top
    .p-top__salon
    .swiper-container
    :not(:root).swiper-pagination-bullet
    span {
    height: 4px;
  }
}

.p-top
  .p-top__salon
  .swiper-container
  :not(:root).swiper-pagination-bullet::before {
  position: absolute;
  bottom: 20px;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  content: "";
  background: rgba(255, 255, 255, 0.2);
}

@media (min-width: 1024px) {
  .p-top
    .p-top__salon
    .swiper-container
    :not(:root).swiper-pagination-bullet::before {
    height: 4px;
  }
}

.p-top
  .p-top__salon
  .swiper-container
  :not(:root).swiper-pagination-bullet-active
  span {
  -webkit-animation: barAnimation 6s linear 0s 1 normal none running;
  animation: barAnimation 6s linear 0s 1 normal none running;
}

@-webkit-keyframes barAnimation {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@keyframes barAnimation {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@media not all and (min-width: 1024px) {
  .u-hideSP {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .u-hidePC {
    display: none !important;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top5 {
    margin-top: 5px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right5 {
    margin-right: 5px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom5 {
    margin-bottom: 5px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left5 {
    margin-left: 5px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top5 {
    margin-top: 5px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right5 {
    margin-right: 5px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom5 {
    margin-bottom: 5px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left5 {
    margin-left: 5px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top10 {
    margin-top: 10px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right10 {
    margin-right: 10px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom10 {
    margin-bottom: 10px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left10 {
    margin-left: 10px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top10 {
    margin-top: 10px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right10 {
    margin-right: 10px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom10 {
    margin-bottom: 10px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left10 {
    margin-left: 10px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top15 {
    margin-top: 15px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right15 {
    margin-right: 15px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom15 {
    margin-bottom: 15px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left15 {
    margin-left: 15px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top15 {
    margin-top: 15px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right15 {
    margin-right: 15px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom15 {
    margin-bottom: 15px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left15 {
    margin-left: 15px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top20 {
    margin-top: 20px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right20 {
    margin-right: 20px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom20 {
    margin-bottom: 20px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left20 {
    margin-left: 20px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top20 {
    margin-top: 20px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right20 {
    margin-right: 20px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom20 {
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left20 {
    margin-left: 20px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top25 {
    margin-top: 25px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right25 {
    margin-right: 25px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom25 {
    margin-bottom: 25px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left25 {
    margin-left: 25px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top25 {
    margin-top: 25px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right25 {
    margin-right: 25px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom25 {
    margin-bottom: 25px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left25 {
    margin-left: 25px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top30 {
    margin-top: 30px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right30 {
    margin-right: 30px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom30 {
    margin-bottom: 30px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left30 {
    margin-left: 30px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top30 {
    margin-top: 30px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right30 {
    margin-right: 30px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom30 {
    margin-bottom: 30px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left30 {
    margin-left: 30px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top35 {
    margin-top: 35px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right35 {
    margin-right: 35px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom35 {
    margin-bottom: 35px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left35 {
    margin-left: 35px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top35 {
    margin-top: 35px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right35 {
    margin-right: 35px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom35 {
    margin-bottom: 35px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left35 {
    margin-left: 35px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top40 {
    margin-top: 40px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right40 {
    margin-right: 40px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom40 {
    margin-bottom: 40px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left40 {
    margin-left: 40px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top40 {
    margin-top: 40px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right40 {
    margin-right: 40px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom40 {
    margin-bottom: 40px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left40 {
    margin-left: 40px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top45 {
    margin-top: 45px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right45 {
    margin-right: 45px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom45 {
    margin-bottom: 45px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left45 {
    margin-left: 45px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top45 {
    margin-top: 45px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right45 {
    margin-right: 45px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom45 {
    margin-bottom: 45px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left45 {
    margin-left: 45px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top50 {
    margin-top: 50px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right50 {
    margin-right: 50px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom50 {
    margin-bottom: 50px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left50 {
    margin-left: 50px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top50 {
    margin-top: 50px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right50 {
    margin-right: 50px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom50 {
    margin-bottom: 50px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left50 {
    margin-left: 50px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top55 {
    margin-top: 55px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right55 {
    margin-right: 55px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom55 {
    margin-bottom: 55px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left55 {
    margin-left: 55px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top55 {
    margin-top: 55px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right55 {
    margin-right: 55px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom55 {
    margin-bottom: 55px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left55 {
    margin-left: 55px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top60 {
    margin-top: 60px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right60 {
    margin-right: 60px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom60 {
    margin-bottom: 60px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left60 {
    margin-left: 60px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top60 {
    margin-top: 60px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right60 {
    margin-right: 60px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom60 {
    margin-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left60 {
    margin-left: 60px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top65 {
    margin-top: 65px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right65 {
    margin-right: 65px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom65 {
    margin-bottom: 65px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left65 {
    margin-left: 65px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top65 {
    margin-top: 65px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right65 {
    margin-right: 65px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom65 {
    margin-bottom: 65px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left65 {
    margin-left: 65px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top70 {
    margin-top: 70px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right70 {
    margin-right: 70px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom70 {
    margin-bottom: 70px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left70 {
    margin-left: 70px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top70 {
    margin-top: 70px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right70 {
    margin-right: 70px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom70 {
    margin-bottom: 70px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left70 {
    margin-left: 70px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top75 {
    margin-top: 75px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right75 {
    margin-right: 75px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom75 {
    margin-bottom: 75px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left75 {
    margin-left: 75px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top75 {
    margin-top: 75px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right75 {
    margin-right: 75px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom75 {
    margin-bottom: 75px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left75 {
    margin-left: 75px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top80 {
    margin-top: 80px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right80 {
    margin-right: 80px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom80 {
    margin-bottom: 80px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left80 {
    margin-left: 80px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top80 {
    margin-top: 80px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right80 {
    margin-right: 80px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom80 {
    margin-bottom: 80px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left80 {
    margin-left: 80px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top85 {
    margin-top: 85px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right85 {
    margin-right: 85px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom85 {
    margin-bottom: 85px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left85 {
    margin-left: 85px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top85 {
    margin-top: 85px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right85 {
    margin-right: 85px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom85 {
    margin-bottom: 85px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left85 {
    margin-left: 85px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top90 {
    margin-top: 90px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right90 {
    margin-right: 90px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom90 {
    margin-bottom: 90px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left90 {
    margin-left: 90px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top90 {
    margin-top: 90px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right90 {
    margin-right: 90px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom90 {
    margin-bottom: 90px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left90 {
    margin-left: 90px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top95 {
    margin-top: 95px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right95 {
    margin-right: 95px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom95 {
    margin-bottom: 95px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left95 {
    margin-left: 95px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top95 {
    margin-top: 95px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right95 {
    margin-right: 95px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom95 {
    margin-bottom: 95px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left95 {
    margin-left: 95px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top100 {
    margin-top: 100px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right100 {
    margin-right: 100px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom100 {
    margin-bottom: 100px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left100 {
    margin-left: 100px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top100 {
    margin-top: 100px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right100 {
    margin-right: 100px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom100 {
    margin-bottom: 100px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left100 {
    margin-left: 100px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top105 {
    margin-top: 105px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right105 {
    margin-right: 105px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom105 {
    margin-bottom: 105px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left105 {
    margin-left: 105px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top105 {
    margin-top: 105px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right105 {
    margin-right: 105px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom105 {
    margin-bottom: 105px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left105 {
    margin-left: 105px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top110 {
    margin-top: 110px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right110 {
    margin-right: 110px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom110 {
    margin-bottom: 110px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left110 {
    margin-left: 110px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top110 {
    margin-top: 110px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right110 {
    margin-right: 110px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom110 {
    margin-bottom: 110px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left110 {
    margin-left: 110px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top115 {
    margin-top: 115px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right115 {
    margin-right: 115px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom115 {
    margin-bottom: 115px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left115 {
    margin-left: 115px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top115 {
    margin-top: 115px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right115 {
    margin-right: 115px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom115 {
    margin-bottom: 115px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left115 {
    margin-left: 115px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top120 {
    margin-top: 120px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right120 {
    margin-right: 120px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom120 {
    margin-bottom: 120px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left120 {
    margin-left: 120px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top120 {
    margin-top: 120px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right120 {
    margin-right: 120px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom120 {
    margin-bottom: 120px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left120 {
    margin-left: 120px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top125 {
    margin-top: 125px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right125 {
    margin-right: 125px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom125 {
    margin-bottom: 125px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left125 {
    margin-left: 125px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top125 {
    margin-top: 125px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right125 {
    margin-right: 125px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom125 {
    margin-bottom: 125px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left125 {
    margin-left: 125px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top130 {
    margin-top: 130px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right130 {
    margin-right: 130px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom130 {
    margin-bottom: 130px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left130 {
    margin-left: 130px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top130 {
    margin-top: 130px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right130 {
    margin-right: 130px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom130 {
    margin-bottom: 130px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left130 {
    margin-left: 130px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top135 {
    margin-top: 135px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right135 {
    margin-right: 135px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom135 {
    margin-bottom: 135px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left135 {
    margin-left: 135px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top135 {
    margin-top: 135px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right135 {
    margin-right: 135px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom135 {
    margin-bottom: 135px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left135 {
    margin-left: 135px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top140 {
    margin-top: 140px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right140 {
    margin-right: 140px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom140 {
    margin-bottom: 140px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left140 {
    margin-left: 140px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top140 {
    margin-top: 140px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right140 {
    margin-right: 140px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom140 {
    margin-bottom: 140px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left140 {
    margin-left: 140px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top145 {
    margin-top: 145px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right145 {
    margin-right: 145px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom145 {
    margin-bottom: 145px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left145 {
    margin-left: 145px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top145 {
    margin-top: 145px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right145 {
    margin-right: 145px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom145 {
    margin-bottom: 145px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left145 {
    margin-left: 145px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top150 {
    margin-top: 150px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right150 {
    margin-right: 150px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom150 {
    margin-bottom: 150px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left150 {
    margin-left: 150px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top150 {
    margin-top: 150px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right150 {
    margin-right: 150px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom150 {
    margin-bottom: 150px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left150 {
    margin-left: 150px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top155 {
    margin-top: 155px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right155 {
    margin-right: 155px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom155 {
    margin-bottom: 155px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left155 {
    margin-left: 155px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top155 {
    margin-top: 155px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right155 {
    margin-right: 155px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom155 {
    margin-bottom: 155px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left155 {
    margin-left: 155px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top160 {
    margin-top: 160px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right160 {
    margin-right: 160px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom160 {
    margin-bottom: 160px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left160 {
    margin-left: 160px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top160 {
    margin-top: 160px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right160 {
    margin-right: 160px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom160 {
    margin-bottom: 160px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left160 {
    margin-left: 160px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top165 {
    margin-top: 165px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right165 {
    margin-right: 165px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom165 {
    margin-bottom: 165px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left165 {
    margin-left: 165px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top165 {
    margin-top: 165px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right165 {
    margin-right: 165px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom165 {
    margin-bottom: 165px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left165 {
    margin-left: 165px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top170 {
    margin-top: 170px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right170 {
    margin-right: 170px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom170 {
    margin-bottom: 170px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left170 {
    margin-left: 170px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top170 {
    margin-top: 170px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right170 {
    margin-right: 170px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom170 {
    margin-bottom: 170px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left170 {
    margin-left: 170px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top175 {
    margin-top: 175px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right175 {
    margin-right: 175px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom175 {
    margin-bottom: 175px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left175 {
    margin-left: 175px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top175 {
    margin-top: 175px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right175 {
    margin-right: 175px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom175 {
    margin-bottom: 175px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left175 {
    margin-left: 175px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top180 {
    margin-top: 180px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right180 {
    margin-right: 180px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom180 {
    margin-bottom: 180px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left180 {
    margin-left: 180px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top180 {
    margin-top: 180px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right180 {
    margin-right: 180px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom180 {
    margin-bottom: 180px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left180 {
    margin-left: 180px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top185 {
    margin-top: 185px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right185 {
    margin-right: 185px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom185 {
    margin-bottom: 185px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left185 {
    margin-left: 185px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top185 {
    margin-top: 185px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right185 {
    margin-right: 185px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom185 {
    margin-bottom: 185px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left185 {
    margin-left: 185px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top190 {
    margin-top: 190px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right190 {
    margin-right: 190px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom190 {
    margin-bottom: 190px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left190 {
    margin-left: 190px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top190 {
    margin-top: 190px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right190 {
    margin-right: 190px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom190 {
    margin-bottom: 190px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left190 {
    margin-left: 190px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top195 {
    margin-top: 195px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right195 {
    margin-right: 195px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom195 {
    margin-bottom: 195px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left195 {
    margin-left: 195px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top195 {
    margin-top: 195px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right195 {
    margin-right: 195px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom195 {
    margin-bottom: 195px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left195 {
    margin-left: 195px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_top200 {
    margin-top: 200px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_right200 {
    margin-right: 200px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_bottom200 {
    margin-bottom: 200px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_margin_left200 {
    margin-left: 200px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_top200 {
    margin-top: 200px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_right200 {
    margin-right: 200px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_bottom200 {
    margin-bottom: 200px;
  }
}

@media (min-width: 1024px) {
  .u-pc_margin_left200 {
    margin-left: 200px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_5 {
    padding-top: 5px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_5 {
    padding-right: 5px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_5 {
    padding-bottom: 5px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_5 {
    padding-left: 5px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_5 {
    padding-top: 5px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_5 {
    padding-right: 5px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_5 {
    padding-bottom: 5px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_5 {
    padding-left: 5px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_10 {
    padding-top: 10px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_10 {
    padding-right: 10px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_10 {
    padding-bottom: 10px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_10 {
    padding-left: 10px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_10 {
    padding-top: 10px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_10 {
    padding-right: 10px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_10 {
    padding-bottom: 10px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_10 {
    padding-left: 10px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_15 {
    padding-top: 15px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_15 {
    padding-right: 15px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_15 {
    padding-bottom: 15px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_15 {
    padding-left: 15px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_15 {
    padding-top: 15px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_15 {
    padding-right: 15px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_15 {
    padding-bottom: 15px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_15 {
    padding-left: 15px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_20 {
    padding-top: 20px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_20 {
    padding-right: 20px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_20 {
    padding-bottom: 20px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_20 {
    padding-left: 20px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_20 {
    padding-top: 20px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_20 {
    padding-right: 20px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_20 {
    padding-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_20 {
    padding-left: 20px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_25 {
    padding-top: 25px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_25 {
    padding-right: 25px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_25 {
    padding-bottom: 25px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_25 {
    padding-left: 25px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_25 {
    padding-top: 25px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_25 {
    padding-right: 25px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_25 {
    padding-bottom: 25px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_25 {
    padding-left: 25px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_30 {
    padding-top: 30px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_30 {
    padding-right: 30px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_30 {
    padding-bottom: 30px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_30 {
    padding-left: 30px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_30 {
    padding-top: 30px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_30 {
    padding-right: 30px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_30 {
    padding-bottom: 30px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_30 {
    padding-left: 30px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_35 {
    padding-top: 35px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_35 {
    padding-right: 35px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_35 {
    padding-bottom: 35px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_35 {
    padding-left: 35px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_35 {
    padding-top: 35px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_35 {
    padding-right: 35px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_35 {
    padding-bottom: 35px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_35 {
    padding-left: 35px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_40 {
    padding-top: 40px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_40 {
    padding-right: 40px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_40 {
    padding-bottom: 40px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_40 {
    padding-left: 40px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_40 {
    padding-top: 40px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_40 {
    padding-right: 40px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_40 {
    padding-bottom: 40px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_40 {
    padding-left: 40px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_45 {
    padding-top: 45px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_45 {
    padding-right: 45px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_45 {
    padding-bottom: 45px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_45 {
    padding-left: 45px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_45 {
    padding-top: 45px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_45 {
    padding-right: 45px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_45 {
    padding-bottom: 45px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_45 {
    padding-left: 45px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_50 {
    padding-top: 50px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_50 {
    padding-right: 50px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_50 {
    padding-bottom: 50px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_50 {
    padding-left: 50px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_50 {
    padding-top: 50px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_50 {
    padding-right: 50px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_50 {
    padding-bottom: 50px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_50 {
    padding-left: 50px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_55 {
    padding-top: 55px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_55 {
    padding-right: 55px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_55 {
    padding-bottom: 55px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_55 {
    padding-left: 55px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_55 {
    padding-top: 55px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_55 {
    padding-right: 55px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_55 {
    padding-bottom: 55px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_55 {
    padding-left: 55px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_60 {
    padding-top: 60px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_60 {
    padding-right: 60px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_60 {
    padding-bottom: 60px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_60 {
    padding-left: 60px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_60 {
    padding-top: 60px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_60 {
    padding-right: 60px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_60 {
    padding-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_60 {
    padding-left: 60px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_65 {
    padding-top: 65px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_65 {
    padding-right: 65px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_65 {
    padding-bottom: 65px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_65 {
    padding-left: 65px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_65 {
    padding-top: 65px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_65 {
    padding-right: 65px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_65 {
    padding-bottom: 65px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_65 {
    padding-left: 65px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_70 {
    padding-top: 70px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_70 {
    padding-right: 70px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_70 {
    padding-bottom: 70px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_70 {
    padding-left: 70px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_70 {
    padding-top: 70px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_70 {
    padding-right: 70px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_70 {
    padding-bottom: 70px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_70 {
    padding-left: 70px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_75 {
    padding-top: 75px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_75 {
    padding-right: 75px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_75 {
    padding-bottom: 75px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_75 {
    padding-left: 75px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_75 {
    padding-top: 75px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_75 {
    padding-right: 75px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_75 {
    padding-bottom: 75px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_75 {
    padding-left: 75px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_80 {
    padding-top: 80px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_80 {
    padding-right: 80px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_80 {
    padding-bottom: 80px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_80 {
    padding-left: 80px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_80 {
    padding-top: 80px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_80 {
    padding-right: 80px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_80 {
    padding-bottom: 80px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_80 {
    padding-left: 80px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_85 {
    padding-top: 85px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_85 {
    padding-right: 85px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_85 {
    padding-bottom: 85px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_85 {
    padding-left: 85px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_85 {
    padding-top: 85px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_85 {
    padding-right: 85px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_85 {
    padding-bottom: 85px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_85 {
    padding-left: 85px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_90 {
    padding-top: 90px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_90 {
    padding-right: 90px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_90 {
    padding-bottom: 90px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_90 {
    padding-left: 90px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_90 {
    padding-top: 90px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_90 {
    padding-right: 90px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_90 {
    padding-bottom: 90px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_90 {
    padding-left: 90px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_95 {
    padding-top: 95px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_95 {
    padding-right: 95px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_95 {
    padding-bottom: 95px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_95 {
    padding-left: 95px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_95 {
    padding-top: 95px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_95 {
    padding-right: 95px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_95 {
    padding-bottom: 95px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_95 {
    padding-left: 95px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_100 {
    padding-top: 100px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_100 {
    padding-right: 100px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_100 {
    padding-bottom: 100px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_100 {
    padding-left: 100px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_100 {
    padding-top: 100px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_100 {
    padding-right: 100px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_100 {
    padding-bottom: 100px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_100 {
    padding-left: 100px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_105 {
    padding-top: 105px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_105 {
    padding-right: 105px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_105 {
    padding-bottom: 105px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_105 {
    padding-left: 105px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_105 {
    padding-top: 105px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_105 {
    padding-right: 105px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_105 {
    padding-bottom: 105px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_105 {
    padding-left: 105px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_110 {
    padding-top: 110px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_110 {
    padding-right: 110px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_110 {
    padding-bottom: 110px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_110 {
    padding-left: 110px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_110 {
    padding-top: 110px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_110 {
    padding-right: 110px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_110 {
    padding-bottom: 110px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_110 {
    padding-left: 110px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_115 {
    padding-top: 115px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_115 {
    padding-right: 115px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_115 {
    padding-bottom: 115px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_115 {
    padding-left: 115px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_115 {
    padding-top: 115px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_115 {
    padding-right: 115px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_115 {
    padding-bottom: 115px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_115 {
    padding-left: 115px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_120 {
    padding-top: 120px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_120 {
    padding-right: 120px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_120 {
    padding-bottom: 120px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_120 {
    padding-left: 120px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_120 {
    padding-top: 120px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_120 {
    padding-right: 120px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_120 {
    padding-bottom: 120px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_120 {
    padding-left: 120px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_125 {
    padding-top: 125px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_125 {
    padding-right: 125px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_125 {
    padding-bottom: 125px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_125 {
    padding-left: 125px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_125 {
    padding-top: 125px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_125 {
    padding-right: 125px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_125 {
    padding-bottom: 125px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_125 {
    padding-left: 125px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_130 {
    padding-top: 130px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_130 {
    padding-right: 130px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_130 {
    padding-bottom: 130px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_130 {
    padding-left: 130px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_130 {
    padding-top: 130px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_130 {
    padding-right: 130px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_130 {
    padding-bottom: 130px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_130 {
    padding-left: 130px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_135 {
    padding-top: 135px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_135 {
    padding-right: 135px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_135 {
    padding-bottom: 135px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_135 {
    padding-left: 135px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_135 {
    padding-top: 135px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_135 {
    padding-right: 135px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_135 {
    padding-bottom: 135px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_135 {
    padding-left: 135px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_140 {
    padding-top: 140px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_140 {
    padding-right: 140px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_140 {
    padding-bottom: 140px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_140 {
    padding-left: 140px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_140 {
    padding-top: 140px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_140 {
    padding-right: 140px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_140 {
    padding-bottom: 140px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_140 {
    padding-left: 140px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_145 {
    padding-top: 145px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_145 {
    padding-right: 145px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_145 {
    padding-bottom: 145px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_145 {
    padding-left: 145px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_145 {
    padding-top: 145px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_145 {
    padding-right: 145px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_145 {
    padding-bottom: 145px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_145 {
    padding-left: 145px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_150 {
    padding-top: 150px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_150 {
    padding-right: 150px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_150 {
    padding-bottom: 150px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_150 {
    padding-left: 150px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_150 {
    padding-top: 150px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_150 {
    padding-right: 150px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_150 {
    padding-bottom: 150px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_150 {
    padding-left: 150px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_155 {
    padding-top: 155px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_155 {
    padding-right: 155px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_155 {
    padding-bottom: 155px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_155 {
    padding-left: 155px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_155 {
    padding-top: 155px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_155 {
    padding-right: 155px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_155 {
    padding-bottom: 155px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_155 {
    padding-left: 155px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_160 {
    padding-top: 160px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_160 {
    padding-right: 160px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_160 {
    padding-bottom: 160px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_160 {
    padding-left: 160px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_160 {
    padding-top: 160px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_160 {
    padding-right: 160px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_160 {
    padding-bottom: 160px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_160 {
    padding-left: 160px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_165 {
    padding-top: 165px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_165 {
    padding-right: 165px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_165 {
    padding-bottom: 165px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_165 {
    padding-left: 165px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_165 {
    padding-top: 165px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_165 {
    padding-right: 165px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_165 {
    padding-bottom: 165px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_165 {
    padding-left: 165px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_170 {
    padding-top: 170px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_170 {
    padding-right: 170px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_170 {
    padding-bottom: 170px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_170 {
    padding-left: 170px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_170 {
    padding-top: 170px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_170 {
    padding-right: 170px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_170 {
    padding-bottom: 170px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_170 {
    padding-left: 170px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_175 {
    padding-top: 175px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_175 {
    padding-right: 175px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_175 {
    padding-bottom: 175px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_175 {
    padding-left: 175px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_175 {
    padding-top: 175px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_175 {
    padding-right: 175px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_175 {
    padding-bottom: 175px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_175 {
    padding-left: 175px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_180 {
    padding-top: 180px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_180 {
    padding-right: 180px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_180 {
    padding-bottom: 180px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_180 {
    padding-left: 180px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_180 {
    padding-top: 180px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_180 {
    padding-right: 180px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_180 {
    padding-bottom: 180px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_180 {
    padding-left: 180px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_185 {
    padding-top: 185px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_185 {
    padding-right: 185px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_185 {
    padding-bottom: 185px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_185 {
    padding-left: 185px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_185 {
    padding-top: 185px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_185 {
    padding-right: 185px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_185 {
    padding-bottom: 185px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_185 {
    padding-left: 185px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_190 {
    padding-top: 190px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_190 {
    padding-right: 190px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_190 {
    padding-bottom: 190px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_190 {
    padding-left: 190px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_190 {
    padding-top: 190px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_190 {
    padding-right: 190px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_190 {
    padding-bottom: 190px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_190 {
    padding-left: 190px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_195 {
    padding-top: 195px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_195 {
    padding-right: 195px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_195 {
    padding-bottom: 195px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_195 {
    padding-left: 195px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_195 {
    padding-top: 195px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_195 {
    padding-right: 195px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_195 {
    padding-bottom: 195px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_195 {
    padding-left: 195px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_top_200 {
    padding-top: 200px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_right_200 {
    padding-right: 200px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_bottom_200 {
    padding-bottom: 200px;
  }
}

@media not all and (min-width: 1024px) {
  .u-sp_padding_left_200 {
    padding-left: 200px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_top_200 {
    padding-top: 200px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_right_200 {
    padding-right: 200px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_bottom_200 {
    padding-bottom: 200px;
  }
}

@media (min-width: 1024px) {
  .u-pc_padding_left_200 {
    padding-left: 200px;
  }
}

.u-uppercase {
  text-transform: uppercase;
}

.c-speed-block {
  position: relative;
}

.o-image_wrapper {
  position: relative;
  overflow: hidden;
}

.c-kv .o-image {
  margin-top: -2.1%;
}

.p-slider .o-image {
  position: relative;
  height: 0;
  padding-top: calc(210 / 280 * 100%);
}

@media (min-width: 1024px) {
  .p-slider .o-image {
    padding-top: calc(399 / 533 * 100%);
  }
}

.p-slider .o-image::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
}

.p-slider .o-image img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.p-about .c-cardBar .o-image {
  position: relative;
  height: 0;
  padding-top: calc(281 / 375 * 100%);
}

@media (min-width: 1024px) {
  .p-about .c-cardBar .o-image {
    padding-top: calc(670 / 1077 * 100%);
  }
}

.p-about .c-cardBar .o-image::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
}

.p-about .c-cardBar .o-image img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 1024px) {
  .o-image {
    margin-top: -15px;
    margin-bottom: -15px;
  }

  .p-top__kvImage .o-image {
    margin-top: -30px;
    margin-bottom: -30px;
  }
}

.o-image img {
  width: 100%;
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  transform: scale(1);
  will-change: transform;
}

.o-image.is-inview img {
  opacity: 1;
  transition-delay: 0.6s;
}

.o-block-up {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translateY(60px);
}

.o-block-up.is-inview {
  opacity: 1;
  transition-delay: 0.4s;
  transform: translateY(0);
}

.pagination {
  padding: 20px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination li {
  margin-right: 10px;
  font-family: var(--ff-base-en);
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  font-weight: 400;
}

.pagination li.next,
.pagination li.previous {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}

.pagination li.next a[href],
.pagination li.previous a[href] {
  color: #2e5c99;
}

.pagination li.previous {
  margin-right: 20px;
}

.pagination li.next {
  margin-right: 0;
  margin-left: 10px;
}

.pagination li a {
  display: block;
  text-decoration: none;
}

.pagination li.current a,
.pagination li:not([class]) a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  border: 1px solid transparent;
  border-radius: 50%;
}

@media (min-width: 1024px) {
  .pagination li:not([class]) a {
    transition: all 0.3s ease-in-out;
  }

  .pagination li:not([class]) a:hover {
    color: #2e5c99;
    border-color: #2e5c99;
  }
}

.pagination li.current a {
  color: #fff;
  background: #2e5c99;
  border-color: #2e5c99;
}

.p-entry.__contents {
  margin-top: 20px;
  text-align: left;
}
@media (min-width: 1024px) {
  .p-entry.__contents {
    margin-top: 40px;
  }
}

.e-con.e-flex > .e-con-inner {
  margin: 0;
  padding: 0;
}

.products-list__title {
  /*   text-transform: uppercase */
}

.products-list__title:after {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 11px;
  margin-right: auto;
  margin-left: auto;
  content: "";
  background: #000;
}

.hide__title,
.hide_button {
  display: none !important;
}

.swiper-wrapper {
  height: auto !important;
}

/*# sourceMappingURL=maps/style.min.css.map */

/* Fallback when Swiper CSS is missing */
/* Swiper CSS が欠けても最低限の横並びとサイズ維持を保証 */
.p-about .js-swiper-gap .swiper-wrapper {
  display: flex;
}

.p-about .js-swiper-gap .swiper-slide {
  flex: 0 0 auto;
  width: auto;
}

/* 画像の暴走対策 */
.p-about .p-slider .c-card__image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-about .swiper-wrapper {
  margin-top: 30px;
}

.p-about .c-card._vertical.swiper-slide {
  margin-left: 3px !important;
  margin-right: -80px !important;
  padding-left: 3px !important;
}

.p-about .c-card._vertical.swiper-slide img {
  width: calc(100% - 80px) !important;
  height: auto !important;
}

.p-about .c-card._vertical .c-card__textBlock {
  text-align: left !important;
  display: inline-block;
  width: calc(100% - 80px) !important;
  padding: 0.4em 1.2em 0.4em 0 !important;
  margin-left: -1.2em !important;
}
