@charset "UTF-8";
/* --------------------------
color
-------------------------- */
/* --------------------------
spacing
-------------------------- */
/* --------------------------
font
-------------------------- */
/* --------------------------
contents width
-------------------------- */
/* --------------------------
z-index order
-------------------------- */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  line-height: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 500;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: border-box;
}

img,
embed,
object,
audio,
video {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
  max-width: 100%;
}

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

td,
th {
  padding: 0;
  text-align: left;
}

strong {
  font-weight: bold;
}

html {
  font-size: 16px;
}
html.nooverflow {
  overflow-y: hidden;
}

.loading {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 1000000;
}
.loading-image {
  width: 632px;
  padding: 30px;
  max-width: 100%;
}

body {
  font-family: "Open Sans", YakuHanJP, "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #272727;
  letter-spacing: 0.01em;
}

a {
  color: #272727;
  text-decoration: none;
  transition: all 0.2s;
}
a:hover {
  opacity: 0.6;
}

p {
  margin-bottom: 1em;
  line-height: 1.8em;
  font-size: 4.2666666667cqw;
}
p:last-child {
  margin-bottom: 0;
}

h3,
h4 {
  line-height: 1.5;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
}

div[aria-hidden=true] {
  display: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dots {
  position: absolute;
  bottom: -5.3333333333cqw;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 2.4cqw;
  width: 2.4cqw;
  margin: 0 2cqw;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: #fff;
  display: block;
  height: 2.4cqw;
  width: 2.4cqw;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.g01-plan-panel--basic .slick-dots li.slick-active button, .l01-plan-panel--basic .slick-dots li.slick-active button, .n01_01-plan-panel--basic .slick-dots li.slick-active button, .n01_02-plan-panel--basic .slick-dots li.slick-active button {
  background-color: #0060A7;
}
.g01-plan-panel--regular .slick-dots li.slick-active button, .l01-plan-panel--regular .slick-dots li.slick-active button, .n01_01-plan-panel--regular .slick-dots li.slick-active button, .n01_02-plan-panel--regular .slick-dots li.slick-active button {
  background-color: #E55480;
}

html, body {
  height: 100%;
}

.c-section-container,
.c-section-container-middle {
  padding: 0 4.2666666667cqw;
}

sup {
  font-size: 0.5em;
}

.diagnosis {
  background: #FFFEF7 url(../images/diagnosis/blueback.png) center top repeat;
  background-size: cover;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .diagnosis {
    height: auto;
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.diagnosis-main {
  container-type: inline-size;
  max-width: 100%;
  width: 460px;
  margin: 0 auto;
  background-color: #E8E8E8;
  padding: 0;
}
@media screen and (max-width: 1023px) {
  .diagnosis-main {
    margin: 0;
    max-width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .diagnosis-main {
    max-width: 100%;
    width: 100%;
  }
}
.diagnosis-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4.2666666667cqw;
  height: 24cqw;
}
.diagnosis-logo-service {
  width: 42.6666666667cqw;
}
.diagnosis-logo-museum {
  width: 32cqw;
}
.diagnosis-button {
  position: relative;
  font-size: 5.0666666667cqw;
  line-height: 7.4666666667cqw;
  font-weight: 700;
  display: block;
  text-align: center;
  background-color: #3F9FEB;
  padding: 3.2cqw 0;
  border: 1px solid #fff;
  border-radius: 0.5333333333cqw;
  box-shadow: 0 1.6cqw 1.6cqw rgba(177, 162, 123, 0.5);
  color: #fff;
  overflow: hidden;
  width: 100%;
}
.diagnosis .spiner {
  content: "";
  width: 14.9333333333cqw;
  height: 14.9333333333cqw;
  border-radius: 50%;
  background: conic-gradient(rgba(0, 0, 0, 0) 10%, #2E6A48);
  -webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 9px), #000 0);
  animation: spinner-zp9dbg 1s infinite linear;
  display: none;
  position: absolute;
  top: calc(50% - 7.4666666667cqw);
  left: calc(50% - 7.4666666667cqw);
}
@keyframes spinner-zp9dbg {
  to {
    transform: rotate(1turn);
  }
}
.diagnosis .slick-slider {
  transition: opacity 0.3s;
}
.diagnosis .slick-track {
  height: 100%;
}
.diagnosis .slick-slide {
  margin: 0;
}
.diagnosis-start-copy {
  text-align: center;
  font-size: 5.8666666667cqw;
  margin: 2.6666666667cqw 0 5.3333333333cqw;
  line-height: 1.5;
  font-weight: bold;
}
.diagnosis-start-copy span {
  background: linear-gradient(transparent 80%, rgba(63, 159, 235, 0.8) 80%);
}
.diagnosis-start-list {
  margin: 8cqw 0 8cqw 5.3333333333cqw;
  list-style: none;
}
.diagnosis-start-list > li {
  padding-left: 8cqw;
  position: relative;
  margin: 4.2666666667cqw 0;
  font-size: 4.2666666667cqw;
}
.diagnosis-start-list > li::before {
  content: "";
  width: 6.4cqw;
  height: 6.4cqw;
  border: 1px solid #272727;
  background-color: #fff;
  position: absolute;
  top: -1.0666666667cqw;
  left: 0;
}
.diagnosis-start-list > li::after {
  content: "";
  width: 2.1333333333cqw;
  height: 4.2666666667cqw;
  border-right: 2px solid #3F9FEB;
  border-bottom: 2px solid #3F9FEB;
  transform: rotate(45deg);
  position: absolute;
  top: -0.5333333333cqw;
  left: 2.1333333333cqw;
}
.diagnosis-start-image {
  position: relative;
}
.diagnosis-start-image img {
  width: 42.6666666667cqw;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
.diagnosis-start-comment {
  position: absolute;
  top: 0;
  left: 2.6666666667cqw;
  background-color: #fff;
  display: inline-block;
  padding: 2.1333333333cqw 5.3333333333cqw;
  border-radius: 26.6666666667cqw;
  line-height: 1.5;
  font-size: 4.2666666667cqw;
}
.diagnosis-panel {
  background-color: #E8E8E8;
  padding: 0 5.3333333333cqw 2.1333333333cqw;
  position: relative;
  height: 100%;
  overflow: auto;
  min-height: calc(100svh - 24cqw);
}
.diagnosis-panel--question {
  background: #E8E8E8 url(../images/diagnosis/sano.png) right bottom no-repeat;
  background-size: 37.3333333333cqw;
  min-height: 155cqw;
}
.diagnosis-panel--question::after {
  content: "気軽に答えてね";
  position: absolute;
  bottom: 24cqw;
  right: 30.6666666667cqw;
  background-color: #fff;
  display: inline-block;
  padding: 2.1333333333cqw 5.3333333333cqw;
  border-radius: 26.6666666667cqw;
  line-height: 1.5;
  font-size: 4.2666666667cqw;
}
.diagnosis-question-number {
  font-size: 8.5333333333cqw;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  margin-bottom: 2.6666666667cqw;
}
.diagnosis-question-text {
  font-size: 5.0666666667cqw;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 4cqw;
  margin-top: 5.3333333333cqw;
}
.diagnosis-question-counter {
  position: absolute;
  bottom: 10.6666666667cqw;
  left: 0;
  background-color: #3F9FEB;
  color: #fff;
  font-size: 5.8666666667cqw;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  padding: 2.1333333333cqw 5.3333333333cqw 2.1333333333cqw 2.6666666667cqw;
  border-radius: 0 26.6666666667cqw 26.6666666667cqw 0;
  width: 21.3333333333cqw;
  text-align: center;
}
.diagnosis-answer {
  padding: 0 5.3333333333cqw;
}
.diagnosis-result-panel {
  padding: 0 8cqw 13.3333333333cqw;
}
.diagnosis-result-balloon {
  background-color: #ffff66;
  text-align: center;
  font-size: 4.2666666667cqw;
  font-weight: 700;
  position: relative;
  border-radius: 4.2666666667cqw;
  padding: 0.5333333333cqw 0;
  width: 72cqw;
  margin: 2.6666666667cqw auto 3.7333333333cqw;
}
.diagnosis-result-balloon::after {
  content: "";
  border-top: 2.6666666667cqw solid #ffff66;
  border-left: 2.6666666667cqw solid transparent;
  border-right: 2.6666666667cqw solid transparent;
  position: absolute;
  bottom: -2.4cqw;
  left: calc(50% - 2.6666666667cqw);
}
.diagnosis-result-card {
  padding: 4cqw;
  box-shadow: 1.0666666667cqw 1.0666666667cqw 1.6cqw rgba(0, 0, 0, 0.16);
  margin-bottom: 6.4cqw;
  position: relative;
}
.diagnosis-result-card--humanist {
  border: 1.6cqw solid #f19149;
  background: linear-gradient(-45deg, #FCE4CC, #fff, #FCE4CC);
}
.diagnosis-result-card--humanist span {
  background-color: #f19149;
}
.diagnosis-result-card--humanist span::after {
  border-top: 5.3333333333cqw solid #f19149;
}
.diagnosis-result-card--connector {
  border: 1.6cqw solid #00A0E9;
  background: linear-gradient(-45deg, #E5F5FF, #fff, #E5F5FF);
}
.diagnosis-result-card--connector span {
  background-color: #00A0E9;
}
.diagnosis-result-card--connector span::after {
  border-top: 5.3333333333cqw solid #00A0E9;
}
.diagnosis-result-card--professor {
  border: 1.6cqw solid #DC3B3B;
  background: linear-gradient(-45deg, #f8ebed, #fff, #f8ebed);
}
.diagnosis-result-card--professor span {
  background-color: #DC3B3B;
}
.diagnosis-result-card--professor span::after {
  border-top: 5.3333333333cqw solid #DC3B3B;
}
.diagnosis-result-card--challenger {
  border: 1.6cqw solid #82cf4f;
  background: linear-gradient(-45deg, #f2faed, #fff, #f2faed);
}
.diagnosis-result-card--challenger span {
  background-color: #82cf4f;
}
.diagnosis-result-card--challenger span::after {
  border-top: 5.3333333333cqw solid #82cf4f;
}
.diagnosis-result-card-label {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 3.2cqw;
  display: inline-block;
  padding: 0 1.6cqw 1.6cqw 1.6cqw;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  height: 4.8cqw;
  font-style: italic;
}
.diagnosis-result-card-label::after {
  content: "";
  border-right: 2.1333333333cqw solid transparent;
  position: absolute;
  bottom: 0;
  right: -1.8666666667cqw;
}
.diagnosis-result-type {
  font-size: 6.4cqw;
  color: #272727;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 3.2cqw;
  margin-top: 3.2cqw;
}
.diagnosis-result-type small {
  font-size: 4.2666666667cqw;
  display: block;
  margin-bottom: 1.3333333333cqw;
}
.diagnosis-result-profile {
  margin-top: 2.6666666667cqw;
}
.diagnosis-result-description {
  font-size: 4.2666666667cqw;
  line-height: 7.4666666667cqw;
  margin-bottom: 3.2cqw;
}
.diagnosis-result-image {
  width: 100%;
  padding: 0 8cqw;
  margin: 0 auto 1.0666666667cqw;
  background-color: #fff;
  box-shadow: 1.0666666667cqw 1.0666666667cqw 0 rgba(0, 0, 0, 0.2);
}
.diagnosis-result-shout {
  margin-top: 10.6666666667cqw;
  font-size: 5.8666666667cqw;
  margin-bottom: 4.2666666667cqw;
  text-align: center;
  font-weight: 700;
}
.diagnosis-result-shout span {
  background: linear-gradient(transparent 80%, rgba(63, 159, 235, 0.8) 80%);
}
.diagnosis-result-page {
  display: block;
  text-decoration: none;
  background-color: #fff;
  padding: 2.6666666667cqw;
}
.diagnosis-result-page-image {
  margin-bottom: 2.6666666667cqw;
}
.diagnosis-result-page-title {
  font-size: 4.8cqw;
  text-align: center;
}
.diagnosis-result-page-description {
  font-size: 3.4666666667cqw;
  line-height: 1.3;
  margin-top: 2.6666666667cqw;
}
.diagnosis-museum-title {
  margin-top: 10.6666666667cqw;
  font-size: 5.8666666667cqw;
  margin-bottom: 4.2666666667cqw;
  text-align: center;
  font-weight: bold;
}
.diagnosis-museum-title span {
  background: linear-gradient(transparent 80%, rgba(63, 159, 235, 0.8) 80%);
}
.diagnosis-museum-image {
  margin-bottom: 2.6666666667cqw;
}
.diagnosis-museum-image img {
  width: 100%;
}
.diagnosis-museum-copy {
  font-weight: 700;
  margin-bottom: 1.0666666667cqw;
  font-size: 4.8cqw;
}
.diagnosis-museum-description {
  font-size: 3.7333333333cqw;
}
.diagnosis-access-title {
  margin-top: 10.6666666667cqw;
  font-size: 5.8666666667cqw;
  margin-bottom: 4.2666666667cqw;
  text-align: center;
  font-weight: 700;
}
.diagnosis-access-title span {
  background: linear-gradient(transparent 80%, rgba(63, 159, 235, 0.8) 80%);
}
.diagnosis-access-text {
  margin: 2.6666666667cqw 0;
}
.diagnosis-access-method {
  font-size: 4.8cqw;
  font-weight: 700;
  margin: 4.2666666667cqw 0 1.0666666667cqw;
}
.diagnosis-access-method::before {
  content: "◎ ";
}
.diagnosis-access-list {
  list-style: disc;
  padding-left: 5.3333333333cqw;
}
.diagnosis-access-list > li {
  margin: 2.1333333333cqw 0;
  position: relative;
  line-height: 1.5;
}
.diagnosis-sns-title {
  margin: 8cqw 0 5.3333333333cqw -5.3333333333cqw;
  display: inline-block;
  background-color: #3F9FEB;
  color: #fff;
  font-size: 4.8cqw;
  padding: 1.0666666667cqw 5.3333333333cqw;
  font-weight: 700;
}
.diagnosis-sns-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 10.6666666667cqw;
  margin-bottom: 8cqw;
}
.diagnosis-sns-list img {
  width: 10.6666666667cqw;
}
.diagnosis-radioblock-input {
  display: none;
}
.diagnosis-radioblock-input:checked + .diagnosis-radioblock-span {
  background-color: #fff;
  opacity: 1;
  color: #3F9FEB;
  border: 1px solid #3F9FEB;
}
.diagnosis-radioblock-span {
  position: relative;
  font-size: 5.0666666667cqw;
  line-height: 7.4666666667cqw;
  font-weight: 700;
  display: block;
  text-align: center;
  background-color: #3F9FEB;
  padding: 3.2cqw 0;
  border: 1px solid #fff;
  border-radius: 0.5333333333cqw;
  box-shadow: 0 1.6cqw 1.6cqw rgba(177, 162, 123, 0.5);
  color: #fff;
  overflow: hidden;
}
.diagnosis-radioblock-span.large {
  font-size: 5.3333333333cqw;
  padding: 5.8666666667cqw 0;
}
.diagnosis-mb15 {
  margin-bottom: 4cqw;
}
.diagnosis-mt25 {
  margin-top: 6.6666666667cqw;
}

/* --------------------------
テキスト整列
-------------------------- */
.u-align-left {
  text-align: left;
}

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

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

.u-align-justify {
  text-align: justify;
  text-justify: inter-ideograph;
  word-wrap: break-word;
}

@media screen and (min-width: 768px) {
  .u-align-left--pc {
    text-align: left;
  }
  .u-align-right--pc {
    text-align: right;
  }
  .u-align-center--pc {
    text-align: center;
  }
  .u-align-justify--pc {
    text-align: justify;
    text-justify: inter-ideograph;
    word-wrap: break-word;
  }
}
@media screen and (max-width: 1023px) {
  .u-align-left--tab {
    text-align: left;
  }
  .u-align-right--tab {
    text-align: right;
  }
  .u-align-center--tab {
    text-align: center;
  }
  .u-align-justify--tab {
    text-align: justify;
    text-justify: inter-ideograph;
    word-wrap: break-word;
  }
}
@media screen and (min-width: 1024px) {
  .u-align-left--overtab {
    text-align: left;
  }
  .u-align-right--overtab {
    text-align: right;
  }
  .u-align-center--overtab {
    text-align: center;
  }
  .u-align-justify--overtab {
    text-align: justify;
    text-justify: inter-ideograph;
    word-wrap: break-word;
  }
}
@media screen and (max-width: 767px) {
  .u-align-left--sp {
    text-align: left;
  }
  .u-align-right--sp {
    text-align: right;
  }
  .u-align-center--sp {
    text-align: center;
  }
  .u-align-justify--sp {
    text-align: justify;
    text-justify: inter-ideograph;
    word-wrap: break-word;
  }
}
/* --------------------------
背景色
-------------------------- */
.u-bg-light {
  background-color: #F5F5F5;
}

.u-bg-white {
  background-color: #fff;
}

.u-bg-green {
  background-color: #f2faed;
}

.u-bg-blue {
  background-color: #E5F5FF;
}

.u-bg-blue-dark {
  background-color: #096DAE;
}

.u-bg-red {
  background-color: #f8ebed;
}

/* --------------------------
枠線
-------------------------- */
.u-border-bottom {
  border-bottom: 3px solid #00A0E9;
  padding-bottom: 10px;
}
.u-border-top {
  border-top: 3px solid #00A0E9;
  padding-top: 10px;
}
.u-border-right {
  border-right: 3px solid #00A0E9;
  padding-right: 10px;
}
.u-border-left {
  border-left: 3px solid #00A0E9;
  padding-left: 10px;
}
.u-border--white {
  border-color: #fff;
}
.u-border-clear-top {
  border-top: 0;
}
.u-border-clear-left {
  border-left: 0;
}
.u-border-clear-right {
  border-right: 0;
}
.u-border-clear-bottom {
  border-bottom: 0;
}

/* --------------------------
Float解除
-------------------------- */
.u-clearfix::after {
  content: "";
  clear: both;
  font-size: 0;
  height: 0;
  display: block;
  visibility: hidden;
}

/* --------------------------
グリッド
-------------------------- */
.u-row {
  margin: -15px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .u-row {
    margin: -10px;
  }
}
.u-row--align-center {
  align-items: center;
}
.u-row--align-end {
  align-items: flex-end;
}
.u-row--reverse {
  flex-direction: row-reverse;
}
.u-row--nomargin {
  margin: 0;
}
@media screen and (max-width: 1023px) {
  .u-row--nomargin-tab {
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .u-row--nomargin-sp {
    margin: 0;
  }
}
.u-row--narrow {
  margin: -10px;
}
@media screen and (max-width: 1023px) {
  .u-row--narrow-tab {
    margin: -2px;
  }
}
@media screen and (max-width: 767px) {
  .u-row--narrow-sp {
    margin: -6px;
  }
}

.u-col-offset-0,
.u-col-offset-0--pc,
.u-col-offset-0--tab,
.u-col-offset-0--sp {
  margin-left: 0;
}

.u-col-1 {
  width: 8.3333333333%;
  padding: 15px;
}
@media screen and (max-width: 767px) {
  .u-col-1 {
    padding: 10px;
  }
}

.u-col-offset-1 {
  margin-left: 8.3333333333%;
}

.u-row--nomargin > .u-col-1 {
  padding: 0;
}

.u-row--narrow > .u-col-1 {
  padding: 10px;
}

.u-col-2 {
  width: 16.6666666667%;
  padding: 15px;
}
@media screen and (max-width: 767px) {
  .u-col-2 {
    padding: 10px;
  }
}

.u-col-offset-2 {
  margin-left: 16.6666666667%;
}

.u-row--nomargin > .u-col-2 {
  padding: 0;
}

.u-row--narrow > .u-col-2 {
  padding: 10px;
}

.u-col-3 {
  width: 25%;
  padding: 15px;
}
@media screen and (max-width: 767px) {
  .u-col-3 {
    padding: 10px;
  }
}

.u-col-offset-3 {
  margin-left: 25%;
}

.u-row--nomargin > .u-col-3 {
  padding: 0;
}

.u-row--narrow > .u-col-3 {
  padding: 10px;
}

.u-col-4 {
  width: 33.3333333333%;
  padding: 15px;
}
@media screen and (max-width: 767px) {
  .u-col-4 {
    padding: 10px;
  }
}

.u-col-offset-4 {
  margin-left: 33.3333333333%;
}

.u-row--nomargin > .u-col-4 {
  padding: 0;
}

.u-row--narrow > .u-col-4 {
  padding: 10px;
}

.u-col-5 {
  width: 41.6666666667%;
  padding: 15px;
}
@media screen and (max-width: 767px) {
  .u-col-5 {
    padding: 10px;
  }
}

.u-col-offset-5 {
  margin-left: 41.6666666667%;
}

.u-row--nomargin > .u-col-5 {
  padding: 0;
}

.u-row--narrow > .u-col-5 {
  padding: 10px;
}

.u-col-6 {
  width: 50%;
  padding: 15px;
}
@media screen and (max-width: 767px) {
  .u-col-6 {
    padding: 10px;
  }
}

.u-col-offset-6 {
  margin-left: 50%;
}

.u-row--nomargin > .u-col-6 {
  padding: 0;
}

.u-row--narrow > .u-col-6 {
  padding: 10px;
}

.u-col-7 {
  width: 58.3333333333%;
  padding: 15px;
}
@media screen and (max-width: 767px) {
  .u-col-7 {
    padding: 10px;
  }
}

.u-col-offset-7 {
  margin-left: 58.3333333333%;
}

.u-row--nomargin > .u-col-7 {
  padding: 0;
}

.u-row--narrow > .u-col-7 {
  padding: 10px;
}

.u-col-8 {
  width: 66.6666666667%;
  padding: 15px;
}
@media screen and (max-width: 767px) {
  .u-col-8 {
    padding: 10px;
  }
}

.u-col-offset-8 {
  margin-left: 66.6666666667%;
}

.u-row--nomargin > .u-col-8 {
  padding: 0;
}

.u-row--narrow > .u-col-8 {
  padding: 10px;
}

.u-col-9 {
  width: 75%;
  padding: 15px;
}
@media screen and (max-width: 767px) {
  .u-col-9 {
    padding: 10px;
  }
}

.u-col-offset-9 {
  margin-left: 75%;
}

.u-row--nomargin > .u-col-9 {
  padding: 0;
}

.u-row--narrow > .u-col-9 {
  padding: 10px;
}

.u-col-10 {
  width: 83.3333333333%;
  padding: 15px;
}
@media screen and (max-width: 767px) {
  .u-col-10 {
    padding: 10px;
  }
}

.u-col-offset-10 {
  margin-left: 83.3333333333%;
}

.u-row--nomargin > .u-col-10 {
  padding: 0;
}

.u-row--narrow > .u-col-10 {
  padding: 10px;
}

.u-col-11 {
  width: 91.6666666667%;
  padding: 15px;
}
@media screen and (max-width: 767px) {
  .u-col-11 {
    padding: 10px;
  }
}

.u-col-offset-11 {
  margin-left: 91.6666666667%;
}

.u-row--nomargin > .u-col-11 {
  padding: 0;
}

.u-row--narrow > .u-col-11 {
  padding: 10px;
}

.u-col-12 {
  width: 100%;
  padding: 15px;
}
@media screen and (max-width: 767px) {
  .u-col-12 {
    padding: 10px;
  }
}

.u-col-offset-12 {
  margin-left: 100%;
}

.u-row--nomargin > .u-col-12 {
  padding: 0;
}

.u-row--narrow > .u-col-12 {
  padding: 10px;
}

@media screen and (min-width: 768px) {
  .u-col-1--pc {
    width: 8.3333333333%;
    padding: 15px;
  }
  .u-col-offset-1--pc {
    margin-left: 8.3333333333%;
  }
  .u-row--nomargin > .u-col-1--pc {
    padding: 0;
  }
  .u-row--narrow > .u-col-1--pc {
    padding: 10px;
  }
  .u-col-2--pc {
    width: 16.6666666667%;
    padding: 15px;
  }
  .u-col-offset-2--pc {
    margin-left: 16.6666666667%;
  }
  .u-row--nomargin > .u-col-2--pc {
    padding: 0;
  }
  .u-row--narrow > .u-col-2--pc {
    padding: 10px;
  }
  .u-col-3--pc {
    width: 25%;
    padding: 15px;
  }
  .u-col-offset-3--pc {
    margin-left: 25%;
  }
  .u-row--nomargin > .u-col-3--pc {
    padding: 0;
  }
  .u-row--narrow > .u-col-3--pc {
    padding: 10px;
  }
  .u-col-4--pc {
    width: 33.3333333333%;
    padding: 15px;
  }
  .u-col-offset-4--pc {
    margin-left: 33.3333333333%;
  }
  .u-row--nomargin > .u-col-4--pc {
    padding: 0;
  }
  .u-row--narrow > .u-col-4--pc {
    padding: 10px;
  }
  .u-col-5--pc {
    width: 41.6666666667%;
    padding: 15px;
  }
  .u-col-offset-5--pc {
    margin-left: 41.6666666667%;
  }
  .u-row--nomargin > .u-col-5--pc {
    padding: 0;
  }
  .u-row--narrow > .u-col-5--pc {
    padding: 10px;
  }
  .u-col-6--pc {
    width: 50%;
    padding: 15px;
  }
  .u-col-offset-6--pc {
    margin-left: 50%;
  }
  .u-row--nomargin > .u-col-6--pc {
    padding: 0;
  }
  .u-row--narrow > .u-col-6--pc {
    padding: 10px;
  }
  .u-col-7--pc {
    width: 58.3333333333%;
    padding: 15px;
  }
  .u-col-offset-7--pc {
    margin-left: 58.3333333333%;
  }
  .u-row--nomargin > .u-col-7--pc {
    padding: 0;
  }
  .u-row--narrow > .u-col-7--pc {
    padding: 10px;
  }
  .u-col-8--pc {
    width: 66.6666666667%;
    padding: 15px;
  }
  .u-col-offset-8--pc {
    margin-left: 66.6666666667%;
  }
  .u-row--nomargin > .u-col-8--pc {
    padding: 0;
  }
  .u-row--narrow > .u-col-8--pc {
    padding: 10px;
  }
  .u-col-9--pc {
    width: 75%;
    padding: 15px;
  }
  .u-col-offset-9--pc {
    margin-left: 75%;
  }
  .u-row--nomargin > .u-col-9--pc {
    padding: 0;
  }
  .u-row--narrow > .u-col-9--pc {
    padding: 10px;
  }
  .u-col-10--pc {
    width: 83.3333333333%;
    padding: 15px;
  }
  .u-col-offset-10--pc {
    margin-left: 83.3333333333%;
  }
  .u-row--nomargin > .u-col-10--pc {
    padding: 0;
  }
  .u-row--narrow > .u-col-10--pc {
    padding: 10px;
  }
  .u-col-11--pc {
    width: 91.6666666667%;
    padding: 15px;
  }
  .u-col-offset-11--pc {
    margin-left: 91.6666666667%;
  }
  .u-row--nomargin > .u-col-11--pc {
    padding: 0;
  }
  .u-row--narrow > .u-col-11--pc {
    padding: 10px;
  }
  .u-col-12--pc {
    width: 100%;
    padding: 15px;
  }
  .u-col-offset-12--pc {
    margin-left: 100%;
  }
  .u-row--nomargin > .u-col-12--pc {
    padding: 0;
  }
  .u-row--narrow > .u-col-12--pc {
    padding: 10px;
  }
}
@media screen and (max-width: 1023px) {
  .u-col-1--tab {
    width: 8.3333333333%;
    padding: 15px;
  }
  .u-col-offset-1--tab {
    margin-left: 8.3333333333%;
  }
  .u-row--nomargin-tab > .u-col-1--tab {
    padding: 0;
  }
  .u-row--narrow > .u-col-1--tab {
    padding: 10px;
  }
  .u-row--narrow-tab > .u-col-1--tab {
    padding: 2px;
  }
  .u-col-2--tab {
    width: 16.6666666667%;
    padding: 15px;
  }
  .u-col-offset-2--tab {
    margin-left: 16.6666666667%;
  }
  .u-row--nomargin-tab > .u-col-2--tab {
    padding: 0;
  }
  .u-row--narrow > .u-col-2--tab {
    padding: 10px;
  }
  .u-row--narrow-tab > .u-col-2--tab {
    padding: 2px;
  }
  .u-col-3--tab {
    width: 25%;
    padding: 15px;
  }
  .u-col-offset-3--tab {
    margin-left: 25%;
  }
  .u-row--nomargin-tab > .u-col-3--tab {
    padding: 0;
  }
  .u-row--narrow > .u-col-3--tab {
    padding: 10px;
  }
  .u-row--narrow-tab > .u-col-3--tab {
    padding: 2px;
  }
  .u-col-4--tab {
    width: 33.3333333333%;
    padding: 15px;
  }
  .u-col-offset-4--tab {
    margin-left: 33.3333333333%;
  }
  .u-row--nomargin-tab > .u-col-4--tab {
    padding: 0;
  }
  .u-row--narrow > .u-col-4--tab {
    padding: 10px;
  }
  .u-row--narrow-tab > .u-col-4--tab {
    padding: 2px;
  }
  .u-col-5--tab {
    width: 41.6666666667%;
    padding: 15px;
  }
  .u-col-offset-5--tab {
    margin-left: 41.6666666667%;
  }
  .u-row--nomargin-tab > .u-col-5--tab {
    padding: 0;
  }
  .u-row--narrow > .u-col-5--tab {
    padding: 10px;
  }
  .u-row--narrow-tab > .u-col-5--tab {
    padding: 2px;
  }
  .u-col-6--tab {
    width: 50%;
    padding: 15px;
  }
  .u-col-offset-6--tab {
    margin-left: 50%;
  }
  .u-row--nomargin-tab > .u-col-6--tab {
    padding: 0;
  }
  .u-row--narrow > .u-col-6--tab {
    padding: 10px;
  }
  .u-row--narrow-tab > .u-col-6--tab {
    padding: 2px;
  }
  .u-col-7--tab {
    width: 58.3333333333%;
    padding: 15px;
  }
  .u-col-offset-7--tab {
    margin-left: 58.3333333333%;
  }
  .u-row--nomargin-tab > .u-col-7--tab {
    padding: 0;
  }
  .u-row--narrow > .u-col-7--tab {
    padding: 10px;
  }
  .u-row--narrow-tab > .u-col-7--tab {
    padding: 2px;
  }
  .u-col-8--tab {
    width: 66.6666666667%;
    padding: 15px;
  }
  .u-col-offset-8--tab {
    margin-left: 66.6666666667%;
  }
  .u-row--nomargin-tab > .u-col-8--tab {
    padding: 0;
  }
  .u-row--narrow > .u-col-8--tab {
    padding: 10px;
  }
  .u-row--narrow-tab > .u-col-8--tab {
    padding: 2px;
  }
  .u-col-9--tab {
    width: 75%;
    padding: 15px;
  }
  .u-col-offset-9--tab {
    margin-left: 75%;
  }
  .u-row--nomargin-tab > .u-col-9--tab {
    padding: 0;
  }
  .u-row--narrow > .u-col-9--tab {
    padding: 10px;
  }
  .u-row--narrow-tab > .u-col-9--tab {
    padding: 2px;
  }
  .u-col-10--tab {
    width: 83.3333333333%;
    padding: 15px;
  }
  .u-col-offset-10--tab {
    margin-left: 83.3333333333%;
  }
  .u-row--nomargin-tab > .u-col-10--tab {
    padding: 0;
  }
  .u-row--narrow > .u-col-10--tab {
    padding: 10px;
  }
  .u-row--narrow-tab > .u-col-10--tab {
    padding: 2px;
  }
  .u-col-11--tab {
    width: 91.6666666667%;
    padding: 15px;
  }
  .u-col-offset-11--tab {
    margin-left: 91.6666666667%;
  }
  .u-row--nomargin-tab > .u-col-11--tab {
    padding: 0;
  }
  .u-row--narrow > .u-col-11--tab {
    padding: 10px;
  }
  .u-row--narrow-tab > .u-col-11--tab {
    padding: 2px;
  }
  .u-col-12--tab {
    width: 100%;
    padding: 15px;
  }
  .u-col-offset-12--tab {
    margin-left: 100%;
  }
  .u-row--nomargin-tab > .u-col-12--tab {
    padding: 0;
  }
  .u-row--narrow > .u-col-12--tab {
    padding: 10px;
  }
  .u-row--narrow-tab > .u-col-12--tab {
    padding: 2px;
  }
}
@media screen and (max-width: 767px) {
  .u-col-1--sp {
    width: 8.3333333333%;
    padding: 15px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .u-col-1--sp {
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .u-col-offset-1--sp {
    margin-left: 8.3333333333%;
  }
  .u-row--nomargin-sp > .u-col-1--sp {
    padding: 0;
  }
  .u-row--narrow > .u-col-1--sp {
    padding: 10px;
  }
  .u-row--narrow-sp > .u-col-1 {
    padding: 6px;
  }
  .u-row--narrow-sp > .u-col-1--sp {
    padding: 6px;
  }
  .u-col-2--sp {
    width: 16.6666666667%;
    padding: 15px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .u-col-2--sp {
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .u-col-offset-2--sp {
    margin-left: 16.6666666667%;
  }
  .u-row--nomargin-sp > .u-col-2--sp {
    padding: 0;
  }
  .u-row--narrow > .u-col-2--sp {
    padding: 10px;
  }
  .u-row--narrow-sp > .u-col-2 {
    padding: 6px;
  }
  .u-row--narrow-sp > .u-col-2--sp {
    padding: 6px;
  }
  .u-col-3--sp {
    width: 25%;
    padding: 15px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .u-col-3--sp {
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .u-col-offset-3--sp {
    margin-left: 25%;
  }
  .u-row--nomargin-sp > .u-col-3--sp {
    padding: 0;
  }
  .u-row--narrow > .u-col-3--sp {
    padding: 10px;
  }
  .u-row--narrow-sp > .u-col-3 {
    padding: 6px;
  }
  .u-row--narrow-sp > .u-col-3--sp {
    padding: 6px;
  }
  .u-col-4--sp {
    width: 33.3333333333%;
    padding: 15px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .u-col-4--sp {
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .u-col-offset-4--sp {
    margin-left: 33.3333333333%;
  }
  .u-row--nomargin-sp > .u-col-4--sp {
    padding: 0;
  }
  .u-row--narrow > .u-col-4--sp {
    padding: 10px;
  }
  .u-row--narrow-sp > .u-col-4 {
    padding: 6px;
  }
  .u-row--narrow-sp > .u-col-4--sp {
    padding: 6px;
  }
  .u-col-5--sp {
    width: 41.6666666667%;
    padding: 15px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .u-col-5--sp {
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .u-col-offset-5--sp {
    margin-left: 41.6666666667%;
  }
  .u-row--nomargin-sp > .u-col-5--sp {
    padding: 0;
  }
  .u-row--narrow > .u-col-5--sp {
    padding: 10px;
  }
  .u-row--narrow-sp > .u-col-5 {
    padding: 6px;
  }
  .u-row--narrow-sp > .u-col-5--sp {
    padding: 6px;
  }
  .u-col-6--sp {
    width: 50%;
    padding: 15px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .u-col-6--sp {
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .u-col-offset-6--sp {
    margin-left: 50%;
  }
  .u-row--nomargin-sp > .u-col-6--sp {
    padding: 0;
  }
  .u-row--narrow > .u-col-6--sp {
    padding: 10px;
  }
  .u-row--narrow-sp > .u-col-6 {
    padding: 6px;
  }
  .u-row--narrow-sp > .u-col-6--sp {
    padding: 6px;
  }
  .u-col-7--sp {
    width: 58.3333333333%;
    padding: 15px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .u-col-7--sp {
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .u-col-offset-7--sp {
    margin-left: 58.3333333333%;
  }
  .u-row--nomargin-sp > .u-col-7--sp {
    padding: 0;
  }
  .u-row--narrow > .u-col-7--sp {
    padding: 10px;
  }
  .u-row--narrow-sp > .u-col-7 {
    padding: 6px;
  }
  .u-row--narrow-sp > .u-col-7--sp {
    padding: 6px;
  }
  .u-col-8--sp {
    width: 66.6666666667%;
    padding: 15px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .u-col-8--sp {
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .u-col-offset-8--sp {
    margin-left: 66.6666666667%;
  }
  .u-row--nomargin-sp > .u-col-8--sp {
    padding: 0;
  }
  .u-row--narrow > .u-col-8--sp {
    padding: 10px;
  }
  .u-row--narrow-sp > .u-col-8 {
    padding: 6px;
  }
  .u-row--narrow-sp > .u-col-8--sp {
    padding: 6px;
  }
  .u-col-9--sp {
    width: 75%;
    padding: 15px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .u-col-9--sp {
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .u-col-offset-9--sp {
    margin-left: 75%;
  }
  .u-row--nomargin-sp > .u-col-9--sp {
    padding: 0;
  }
  .u-row--narrow > .u-col-9--sp {
    padding: 10px;
  }
  .u-row--narrow-sp > .u-col-9 {
    padding: 6px;
  }
  .u-row--narrow-sp > .u-col-9--sp {
    padding: 6px;
  }
  .u-col-10--sp {
    width: 83.3333333333%;
    padding: 15px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .u-col-10--sp {
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .u-col-offset-10--sp {
    margin-left: 83.3333333333%;
  }
  .u-row--nomargin-sp > .u-col-10--sp {
    padding: 0;
  }
  .u-row--narrow > .u-col-10--sp {
    padding: 10px;
  }
  .u-row--narrow-sp > .u-col-10 {
    padding: 6px;
  }
  .u-row--narrow-sp > .u-col-10--sp {
    padding: 6px;
  }
  .u-col-11--sp {
    width: 91.6666666667%;
    padding: 15px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .u-col-11--sp {
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .u-col-offset-11--sp {
    margin-left: 91.6666666667%;
  }
  .u-row--nomargin-sp > .u-col-11--sp {
    padding: 0;
  }
  .u-row--narrow > .u-col-11--sp {
    padding: 10px;
  }
  .u-row--narrow-sp > .u-col-11 {
    padding: 6px;
  }
  .u-row--narrow-sp > .u-col-11--sp {
    padding: 6px;
  }
  .u-col-12--sp {
    width: 100%;
    padding: 15px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .u-col-12--sp {
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .u-col-offset-12--sp {
    margin-left: 100%;
  }
  .u-row--nomargin-sp > .u-col-12--sp {
    padding: 0;
  }
  .u-row--narrow > .u-col-12--sp {
    padding: 10px;
  }
  .u-row--narrow-sp > .u-col-12 {
    padding: 6px;
  }
  .u-row--narrow-sp > .u-col-12--sp {
    padding: 6px;
  }
}
/* --------------------------
非表示切り替え
-------------------------- */
@media screen and (min-width: 768px) {
  .u-hide-pc {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .u-hide-overtab {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .u-hide-tab {
    display: none;
  }
}
@media screen and (max-width: 1180px) {
  .u-hide-laptop {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-hide-sp {
    display: none;
  }
}
/* --------------------------
margin、padding指定
-------------------------- */
.u-mt0 {
  margin-top: 0cqw !important;
}

.u-mr0 {
  margin-right: 0cqw !important;
}

.u-ml0 {
  margin-left: 0cqw !important;
}

.u-mb0 {
  margin-bottom: 0cqw !important;
}

.u-pt0 {
  padding-top: 0cqw !important;
}

.u-pr0 {
  padding-right: 0cqw !important;
}

.u-pl0 {
  padding-left: 0cqw !important;
}

.u-pb0 {
  padding-bottom: 0cqw !important;
}

.u-mt5 {
  margin-top: 1.3333333333cqw !important;
}

.u-mr5 {
  margin-right: 1.3333333333cqw !important;
}

.u-ml5 {
  margin-left: 1.3333333333cqw !important;
}

.u-mb5 {
  margin-bottom: 1.3333333333cqw !important;
}

.u-pt5 {
  padding-top: 1.3333333333cqw !important;
}

.u-pr5 {
  padding-right: 1.3333333333cqw !important;
}

.u-pl5 {
  padding-left: 1.3333333333cqw !important;
}

.u-pb5 {
  padding-bottom: 1.3333333333cqw !important;
}

.u-mt10 {
  margin-top: 2.6666666667cqw !important;
}

.u-mr10 {
  margin-right: 2.6666666667cqw !important;
}

.u-ml10 {
  margin-left: 2.6666666667cqw !important;
}

.u-mb10 {
  margin-bottom: 2.6666666667cqw !important;
}

.u-pt10 {
  padding-top: 2.6666666667cqw !important;
}

.u-pr10 {
  padding-right: 2.6666666667cqw !important;
}

.u-pl10 {
  padding-left: 2.6666666667cqw !important;
}

.u-pb10 {
  padding-bottom: 2.6666666667cqw !important;
}

.u-mt15 {
  margin-top: 4cqw !important;
}

.u-mr15 {
  margin-right: 4cqw !important;
}

.u-ml15 {
  margin-left: 4cqw !important;
}

.u-mb15 {
  margin-bottom: 4cqw !important;
}

.u-pt15 {
  padding-top: 4cqw !important;
}

.u-pr15 {
  padding-right: 4cqw !important;
}

.u-pl15 {
  padding-left: 4cqw !important;
}

.u-pb15 {
  padding-bottom: 4cqw !important;
}

.u-mt20 {
  margin-top: 5.3333333333cqw !important;
}

.u-mr20 {
  margin-right: 5.3333333333cqw !important;
}

.u-ml20 {
  margin-left: 5.3333333333cqw !important;
}

.u-mb20 {
  margin-bottom: 5.3333333333cqw !important;
}

.u-pt20 {
  padding-top: 5.3333333333cqw !important;
}

.u-pr20 {
  padding-right: 5.3333333333cqw !important;
}

.u-pl20 {
  padding-left: 5.3333333333cqw !important;
}

.u-pb20 {
  padding-bottom: 5.3333333333cqw !important;
}

.u-mt25 {
  margin-top: 6.6666666667cqw !important;
}

.u-mr25 {
  margin-right: 6.6666666667cqw !important;
}

.u-ml25 {
  margin-left: 6.6666666667cqw !important;
}

.u-mb25 {
  margin-bottom: 6.6666666667cqw !important;
}

.u-pt25 {
  padding-top: 6.6666666667cqw !important;
}

.u-pr25 {
  padding-right: 6.6666666667cqw !important;
}

.u-pl25 {
  padding-left: 6.6666666667cqw !important;
}

.u-pb25 {
  padding-bottom: 6.6666666667cqw !important;
}

.u-mt30 {
  margin-top: 8cqw !important;
}

.u-mr30 {
  margin-right: 8cqw !important;
}

.u-ml30 {
  margin-left: 8cqw !important;
}

.u-mb30 {
  margin-bottom: 8cqw !important;
}

.u-pt30 {
  padding-top: 8cqw !important;
}

.u-pr30 {
  padding-right: 8cqw !important;
}

.u-pl30 {
  padding-left: 8cqw !important;
}

.u-pb30 {
  padding-bottom: 8cqw !important;
}

.u-mt35 {
  margin-top: 9.3333333333cqw !important;
}

.u-mr35 {
  margin-right: 9.3333333333cqw !important;
}

.u-ml35 {
  margin-left: 9.3333333333cqw !important;
}

.u-mb35 {
  margin-bottom: 9.3333333333cqw !important;
}

.u-pt35 {
  padding-top: 9.3333333333cqw !important;
}

.u-pr35 {
  padding-right: 9.3333333333cqw !important;
}

.u-pl35 {
  padding-left: 9.3333333333cqw !important;
}

.u-pb35 {
  padding-bottom: 9.3333333333cqw !important;
}

.u-mt40 {
  margin-top: 10.6666666667cqw !important;
}

.u-mr40 {
  margin-right: 10.6666666667cqw !important;
}

.u-ml40 {
  margin-left: 10.6666666667cqw !important;
}

.u-mb40 {
  margin-bottom: 10.6666666667cqw !important;
}

.u-pt40 {
  padding-top: 10.6666666667cqw !important;
}

.u-pr40 {
  padding-right: 10.6666666667cqw !important;
}

.u-pl40 {
  padding-left: 10.6666666667cqw !important;
}

.u-pb40 {
  padding-bottom: 10.6666666667cqw !important;
}

.u-mt45 {
  margin-top: 12cqw !important;
}

.u-mr45 {
  margin-right: 12cqw !important;
}

.u-ml45 {
  margin-left: 12cqw !important;
}

.u-mb45 {
  margin-bottom: 12cqw !important;
}

.u-pt45 {
  padding-top: 12cqw !important;
}

.u-pr45 {
  padding-right: 12cqw !important;
}

.u-pl45 {
  padding-left: 12cqw !important;
}

.u-pb45 {
  padding-bottom: 12cqw !important;
}

.u-mt50 {
  margin-top: 13.3333333333cqw !important;
}

.u-mr50 {
  margin-right: 13.3333333333cqw !important;
}

.u-ml50 {
  margin-left: 13.3333333333cqw !important;
}

.u-mb50 {
  margin-bottom: 13.3333333333cqw !important;
}

.u-pt50 {
  padding-top: 13.3333333333cqw !important;
}

.u-pr50 {
  padding-right: 13.3333333333cqw !important;
}

.u-pl50 {
  padding-left: 13.3333333333cqw !important;
}

.u-pb50 {
  padding-bottom: 13.3333333333cqw !important;
}

.u-mt55 {
  margin-top: 14.6666666667cqw !important;
}

.u-mr55 {
  margin-right: 14.6666666667cqw !important;
}

.u-ml55 {
  margin-left: 14.6666666667cqw !important;
}

.u-mb55 {
  margin-bottom: 14.6666666667cqw !important;
}

.u-pt55 {
  padding-top: 14.6666666667cqw !important;
}

.u-pr55 {
  padding-right: 14.6666666667cqw !important;
}

.u-pl55 {
  padding-left: 14.6666666667cqw !important;
}

.u-pb55 {
  padding-bottom: 14.6666666667cqw !important;
}

.u-mt60 {
  margin-top: 16cqw !important;
}

.u-mr60 {
  margin-right: 16cqw !important;
}

.u-ml60 {
  margin-left: 16cqw !important;
}

.u-mb60 {
  margin-bottom: 16cqw !important;
}

.u-pt60 {
  padding-top: 16cqw !important;
}

.u-pr60 {
  padding-right: 16cqw !important;
}

.u-pl60 {
  padding-left: 16cqw !important;
}

.u-pb60 {
  padding-bottom: 16cqw !important;
}

.u-mt65 {
  margin-top: 17.3333333333cqw !important;
}

.u-mr65 {
  margin-right: 17.3333333333cqw !important;
}

.u-ml65 {
  margin-left: 17.3333333333cqw !important;
}

.u-mb65 {
  margin-bottom: 17.3333333333cqw !important;
}

.u-pt65 {
  padding-top: 17.3333333333cqw !important;
}

.u-pr65 {
  padding-right: 17.3333333333cqw !important;
}

.u-pl65 {
  padding-left: 17.3333333333cqw !important;
}

.u-pb65 {
  padding-bottom: 17.3333333333cqw !important;
}

.u-mt70 {
  margin-top: 18.6666666667cqw !important;
}

.u-mr70 {
  margin-right: 18.6666666667cqw !important;
}

.u-ml70 {
  margin-left: 18.6666666667cqw !important;
}

.u-mb70 {
  margin-bottom: 18.6666666667cqw !important;
}

.u-pt70 {
  padding-top: 18.6666666667cqw !important;
}

.u-pr70 {
  padding-right: 18.6666666667cqw !important;
}

.u-pl70 {
  padding-left: 18.6666666667cqw !important;
}

.u-pb70 {
  padding-bottom: 18.6666666667cqw !important;
}

.u-mt75 {
  margin-top: 20cqw !important;
}

.u-mr75 {
  margin-right: 20cqw !important;
}

.u-ml75 {
  margin-left: 20cqw !important;
}

.u-mb75 {
  margin-bottom: 20cqw !important;
}

.u-pt75 {
  padding-top: 20cqw !important;
}

.u-pr75 {
  padding-right: 20cqw !important;
}

.u-pl75 {
  padding-left: 20cqw !important;
}

.u-pb75 {
  padding-bottom: 20cqw !important;
}

.u-mt80 {
  margin-top: 21.3333333333cqw !important;
}

.u-mr80 {
  margin-right: 21.3333333333cqw !important;
}

.u-ml80 {
  margin-left: 21.3333333333cqw !important;
}

.u-mb80 {
  margin-bottom: 21.3333333333cqw !important;
}

.u-pt80 {
  padding-top: 21.3333333333cqw !important;
}

.u-pr80 {
  padding-right: 21.3333333333cqw !important;
}

.u-pl80 {
  padding-left: 21.3333333333cqw !important;
}

.u-pb80 {
  padding-bottom: 21.3333333333cqw !important;
}

.u-mt85 {
  margin-top: 22.6666666667cqw !important;
}

.u-mr85 {
  margin-right: 22.6666666667cqw !important;
}

.u-ml85 {
  margin-left: 22.6666666667cqw !important;
}

.u-mb85 {
  margin-bottom: 22.6666666667cqw !important;
}

.u-pt85 {
  padding-top: 22.6666666667cqw !important;
}

.u-pr85 {
  padding-right: 22.6666666667cqw !important;
}

.u-pl85 {
  padding-left: 22.6666666667cqw !important;
}

.u-pb85 {
  padding-bottom: 22.6666666667cqw !important;
}

.u-mt90 {
  margin-top: 24cqw !important;
}

.u-mr90 {
  margin-right: 24cqw !important;
}

.u-ml90 {
  margin-left: 24cqw !important;
}

.u-mb90 {
  margin-bottom: 24cqw !important;
}

.u-pt90 {
  padding-top: 24cqw !important;
}

.u-pr90 {
  padding-right: 24cqw !important;
}

.u-pl90 {
  padding-left: 24cqw !important;
}

.u-pb90 {
  padding-bottom: 24cqw !important;
}

.u-mt95 {
  margin-top: 25.3333333333cqw !important;
}

.u-mr95 {
  margin-right: 25.3333333333cqw !important;
}

.u-ml95 {
  margin-left: 25.3333333333cqw !important;
}

.u-mb95 {
  margin-bottom: 25.3333333333cqw !important;
}

.u-pt95 {
  padding-top: 25.3333333333cqw !important;
}

.u-pr95 {
  padding-right: 25.3333333333cqw !important;
}

.u-pl95 {
  padding-left: 25.3333333333cqw !important;
}

.u-pb95 {
  padding-bottom: 25.3333333333cqw !important;
}

.u-mt100 {
  margin-top: 26.6666666667cqw !important;
}

.u-mr100 {
  margin-right: 26.6666666667cqw !important;
}

.u-ml100 {
  margin-left: 26.6666666667cqw !important;
}

.u-mb100 {
  margin-bottom: 26.6666666667cqw !important;
}

.u-pt100 {
  padding-top: 26.6666666667cqw !important;
}

.u-pr100 {
  padding-right: 26.6666666667cqw !important;
}

.u-pl100 {
  padding-left: 26.6666666667cqw !important;
}

.u-pb100 {
  padding-bottom: 26.6666666667cqw !important;
}

@media screen and (min-width: 768px) {
  .u-mt0--pc {
    margin-top: 0cqw !important;
  }
  .u-mr0--pc {
    margin-right: 0cqw !important;
  }
  .u-ml0--pc {
    margin-left: 0cqw !important;
  }
  .u-mb0--pc {
    margin-bottom: 0cqw !important;
  }
  .u-pt0--pc {
    padding-top: 0cqw !important;
  }
  .u-pr0--pc {
    padding-right: 0cqw !important;
  }
  .u-pl0--pc {
    padding-left: 0cqw !important;
  }
  .u-pb0--pc {
    padding-bottom: 0cqw !important;
  }
  .u-mt5--pc {
    margin-top: 1.3333333333cqw !important;
  }
  .u-mr5--pc {
    margin-right: 1.3333333333cqw !important;
  }
  .u-ml5--pc {
    margin-left: 1.3333333333cqw !important;
  }
  .u-mb5--pc {
    margin-bottom: 1.3333333333cqw !important;
  }
  .u-pt5--pc {
    padding-top: 1.3333333333cqw !important;
  }
  .u-pr5--pc {
    padding-right: 1.3333333333cqw !important;
  }
  .u-pl5--pc {
    padding-left: 1.3333333333cqw !important;
  }
  .u-pb5--pc {
    padding-bottom: 1.3333333333cqw !important;
  }
  .u-mt10--pc {
    margin-top: 2.6666666667cqw !important;
  }
  .u-mr10--pc {
    margin-right: 2.6666666667cqw !important;
  }
  .u-ml10--pc {
    margin-left: 2.6666666667cqw !important;
  }
  .u-mb10--pc {
    margin-bottom: 2.6666666667cqw !important;
  }
  .u-pt10--pc {
    padding-top: 2.6666666667cqw !important;
  }
  .u-pr10--pc {
    padding-right: 2.6666666667cqw !important;
  }
  .u-pl10--pc {
    padding-left: 2.6666666667cqw !important;
  }
  .u-pb10--pc {
    padding-bottom: 2.6666666667cqw !important;
  }
  .u-mt15--pc {
    margin-top: 4cqw !important;
  }
  .u-mr15--pc {
    margin-right: 4cqw !important;
  }
  .u-ml15--pc {
    margin-left: 4cqw !important;
  }
  .u-mb15--pc {
    margin-bottom: 4cqw !important;
  }
  .u-pt15--pc {
    padding-top: 4cqw !important;
  }
  .u-pr15--pc {
    padding-right: 4cqw !important;
  }
  .u-pl15--pc {
    padding-left: 4cqw !important;
  }
  .u-pb15--pc {
    padding-bottom: 4cqw !important;
  }
  .u-mt20--pc {
    margin-top: 5.3333333333cqw !important;
  }
  .u-mr20--pc {
    margin-right: 5.3333333333cqw !important;
  }
  .u-ml20--pc {
    margin-left: 5.3333333333cqw !important;
  }
  .u-mb20--pc {
    margin-bottom: 5.3333333333cqw !important;
  }
  .u-pt20--pc {
    padding-top: 5.3333333333cqw !important;
  }
  .u-pr20--pc {
    padding-right: 5.3333333333cqw !important;
  }
  .u-pl20--pc {
    padding-left: 5.3333333333cqw !important;
  }
  .u-pb20--pc {
    padding-bottom: 5.3333333333cqw !important;
  }
  .u-mt25--pc {
    margin-top: 6.6666666667cqw !important;
  }
  .u-mr25--pc {
    margin-right: 6.6666666667cqw !important;
  }
  .u-ml25--pc {
    margin-left: 6.6666666667cqw !important;
  }
  .u-mb25--pc {
    margin-bottom: 6.6666666667cqw !important;
  }
  .u-pt25--pc {
    padding-top: 6.6666666667cqw !important;
  }
  .u-pr25--pc {
    padding-right: 6.6666666667cqw !important;
  }
  .u-pl25--pc {
    padding-left: 6.6666666667cqw !important;
  }
  .u-pb25--pc {
    padding-bottom: 6.6666666667cqw !important;
  }
  .u-mt30--pc {
    margin-top: 8cqw !important;
  }
  .u-mr30--pc {
    margin-right: 8cqw !important;
  }
  .u-ml30--pc {
    margin-left: 8cqw !important;
  }
  .u-mb30--pc {
    margin-bottom: 8cqw !important;
  }
  .u-pt30--pc {
    padding-top: 8cqw !important;
  }
  .u-pr30--pc {
    padding-right: 8cqw !important;
  }
  .u-pl30--pc {
    padding-left: 8cqw !important;
  }
  .u-pb30--pc {
    padding-bottom: 8cqw !important;
  }
  .u-mt35--pc {
    margin-top: 9.3333333333cqw !important;
  }
  .u-mr35--pc {
    margin-right: 9.3333333333cqw !important;
  }
  .u-ml35--pc {
    margin-left: 9.3333333333cqw !important;
  }
  .u-mb35--pc {
    margin-bottom: 9.3333333333cqw !important;
  }
  .u-pt35--pc {
    padding-top: 9.3333333333cqw !important;
  }
  .u-pr35--pc {
    padding-right: 9.3333333333cqw !important;
  }
  .u-pl35--pc {
    padding-left: 9.3333333333cqw !important;
  }
  .u-pb35--pc {
    padding-bottom: 9.3333333333cqw !important;
  }
  .u-mt40--pc {
    margin-top: 10.6666666667cqw !important;
  }
  .u-mr40--pc {
    margin-right: 10.6666666667cqw !important;
  }
  .u-ml40--pc {
    margin-left: 10.6666666667cqw !important;
  }
  .u-mb40--pc {
    margin-bottom: 10.6666666667cqw !important;
  }
  .u-pt40--pc {
    padding-top: 10.6666666667cqw !important;
  }
  .u-pr40--pc {
    padding-right: 10.6666666667cqw !important;
  }
  .u-pl40--pc {
    padding-left: 10.6666666667cqw !important;
  }
  .u-pb40--pc {
    padding-bottom: 10.6666666667cqw !important;
  }
  .u-mt45--pc {
    margin-top: 12cqw !important;
  }
  .u-mr45--pc {
    margin-right: 12cqw !important;
  }
  .u-ml45--pc {
    margin-left: 12cqw !important;
  }
  .u-mb45--pc {
    margin-bottom: 12cqw !important;
  }
  .u-pt45--pc {
    padding-top: 12cqw !important;
  }
  .u-pr45--pc {
    padding-right: 12cqw !important;
  }
  .u-pl45--pc {
    padding-left: 12cqw !important;
  }
  .u-pb45--pc {
    padding-bottom: 12cqw !important;
  }
  .u-mt50--pc {
    margin-top: 13.3333333333cqw !important;
  }
  .u-mr50--pc {
    margin-right: 13.3333333333cqw !important;
  }
  .u-ml50--pc {
    margin-left: 13.3333333333cqw !important;
  }
  .u-mb50--pc {
    margin-bottom: 13.3333333333cqw !important;
  }
  .u-pt50--pc {
    padding-top: 13.3333333333cqw !important;
  }
  .u-pr50--pc {
    padding-right: 13.3333333333cqw !important;
  }
  .u-pl50--pc {
    padding-left: 13.3333333333cqw !important;
  }
  .u-pb50--pc {
    padding-bottom: 13.3333333333cqw !important;
  }
  .u-mt55--pc {
    margin-top: 14.6666666667cqw !important;
  }
  .u-mr55--pc {
    margin-right: 14.6666666667cqw !important;
  }
  .u-ml55--pc {
    margin-left: 14.6666666667cqw !important;
  }
  .u-mb55--pc {
    margin-bottom: 14.6666666667cqw !important;
  }
  .u-pt55--pc {
    padding-top: 14.6666666667cqw !important;
  }
  .u-pr55--pc {
    padding-right: 14.6666666667cqw !important;
  }
  .u-pl55--pc {
    padding-left: 14.6666666667cqw !important;
  }
  .u-pb55--pc {
    padding-bottom: 14.6666666667cqw !important;
  }
  .u-mt60--pc {
    margin-top: 16cqw !important;
  }
  .u-mr60--pc {
    margin-right: 16cqw !important;
  }
  .u-ml60--pc {
    margin-left: 16cqw !important;
  }
  .u-mb60--pc {
    margin-bottom: 16cqw !important;
  }
  .u-pt60--pc {
    padding-top: 16cqw !important;
  }
  .u-pr60--pc {
    padding-right: 16cqw !important;
  }
  .u-pl60--pc {
    padding-left: 16cqw !important;
  }
  .u-pb60--pc {
    padding-bottom: 16cqw !important;
  }
  .u-mt65--pc {
    margin-top: 17.3333333333cqw !important;
  }
  .u-mr65--pc {
    margin-right: 17.3333333333cqw !important;
  }
  .u-ml65--pc {
    margin-left: 17.3333333333cqw !important;
  }
  .u-mb65--pc {
    margin-bottom: 17.3333333333cqw !important;
  }
  .u-pt65--pc {
    padding-top: 17.3333333333cqw !important;
  }
  .u-pr65--pc {
    padding-right: 17.3333333333cqw !important;
  }
  .u-pl65--pc {
    padding-left: 17.3333333333cqw !important;
  }
  .u-pb65--pc {
    padding-bottom: 17.3333333333cqw !important;
  }
  .u-mt70--pc {
    margin-top: 18.6666666667cqw !important;
  }
  .u-mr70--pc {
    margin-right: 18.6666666667cqw !important;
  }
  .u-ml70--pc {
    margin-left: 18.6666666667cqw !important;
  }
  .u-mb70--pc {
    margin-bottom: 18.6666666667cqw !important;
  }
  .u-pt70--pc {
    padding-top: 18.6666666667cqw !important;
  }
  .u-pr70--pc {
    padding-right: 18.6666666667cqw !important;
  }
  .u-pl70--pc {
    padding-left: 18.6666666667cqw !important;
  }
  .u-pb70--pc {
    padding-bottom: 18.6666666667cqw !important;
  }
  .u-mt75--pc {
    margin-top: 20cqw !important;
  }
  .u-mr75--pc {
    margin-right: 20cqw !important;
  }
  .u-ml75--pc {
    margin-left: 20cqw !important;
  }
  .u-mb75--pc {
    margin-bottom: 20cqw !important;
  }
  .u-pt75--pc {
    padding-top: 20cqw !important;
  }
  .u-pr75--pc {
    padding-right: 20cqw !important;
  }
  .u-pl75--pc {
    padding-left: 20cqw !important;
  }
  .u-pb75--pc {
    padding-bottom: 20cqw !important;
  }
  .u-mt80--pc {
    margin-top: 21.3333333333cqw !important;
  }
  .u-mr80--pc {
    margin-right: 21.3333333333cqw !important;
  }
  .u-ml80--pc {
    margin-left: 21.3333333333cqw !important;
  }
  .u-mb80--pc {
    margin-bottom: 21.3333333333cqw !important;
  }
  .u-pt80--pc {
    padding-top: 21.3333333333cqw !important;
  }
  .u-pr80--pc {
    padding-right: 21.3333333333cqw !important;
  }
  .u-pl80--pc {
    padding-left: 21.3333333333cqw !important;
  }
  .u-pb80--pc {
    padding-bottom: 21.3333333333cqw !important;
  }
  .u-mt85--pc {
    margin-top: 22.6666666667cqw !important;
  }
  .u-mr85--pc {
    margin-right: 22.6666666667cqw !important;
  }
  .u-ml85--pc {
    margin-left: 22.6666666667cqw !important;
  }
  .u-mb85--pc {
    margin-bottom: 22.6666666667cqw !important;
  }
  .u-pt85--pc {
    padding-top: 22.6666666667cqw !important;
  }
  .u-pr85--pc {
    padding-right: 22.6666666667cqw !important;
  }
  .u-pl85--pc {
    padding-left: 22.6666666667cqw !important;
  }
  .u-pb85--pc {
    padding-bottom: 22.6666666667cqw !important;
  }
  .u-mt90--pc {
    margin-top: 24cqw !important;
  }
  .u-mr90--pc {
    margin-right: 24cqw !important;
  }
  .u-ml90--pc {
    margin-left: 24cqw !important;
  }
  .u-mb90--pc {
    margin-bottom: 24cqw !important;
  }
  .u-pt90--pc {
    padding-top: 24cqw !important;
  }
  .u-pr90--pc {
    padding-right: 24cqw !important;
  }
  .u-pl90--pc {
    padding-left: 24cqw !important;
  }
  .u-pb90--pc {
    padding-bottom: 24cqw !important;
  }
  .u-mt95--pc {
    margin-top: 25.3333333333cqw !important;
  }
  .u-mr95--pc {
    margin-right: 25.3333333333cqw !important;
  }
  .u-ml95--pc {
    margin-left: 25.3333333333cqw !important;
  }
  .u-mb95--pc {
    margin-bottom: 25.3333333333cqw !important;
  }
  .u-pt95--pc {
    padding-top: 25.3333333333cqw !important;
  }
  .u-pr95--pc {
    padding-right: 25.3333333333cqw !important;
  }
  .u-pl95--pc {
    padding-left: 25.3333333333cqw !important;
  }
  .u-pb95--pc {
    padding-bottom: 25.3333333333cqw !important;
  }
  .u-mt100--pc {
    margin-top: 26.6666666667cqw !important;
  }
  .u-mr100--pc {
    margin-right: 26.6666666667cqw !important;
  }
  .u-ml100--pc {
    margin-left: 26.6666666667cqw !important;
  }
  .u-mb100--pc {
    margin-bottom: 26.6666666667cqw !important;
  }
  .u-pt100--pc {
    padding-top: 26.6666666667cqw !important;
  }
  .u-pr100--pc {
    padding-right: 26.6666666667cqw !important;
  }
  .u-pl100--pc {
    padding-left: 26.6666666667cqw !important;
  }
  .u-pb100--pc {
    padding-bottom: 26.6666666667cqw !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt0--sp {
    margin-top: 0cqw !important;
  }
  .u-mr0--sp {
    margin-right: 0cqw !important;
  }
  .u-ml0--sp {
    margin-left: 0cqw !important;
  }
  .u-mb0--sp {
    margin-bottom: 0cqw !important;
  }
  .u-pt0--sp {
    padding-top: 0cqw !important;
  }
  .u-pr0--sp {
    padding-right: 0cqw !important;
  }
  .u-pl0--sp {
    padding-left: 0cqw !important;
  }
  .u-pb0--sp {
    padding-bottom: 0cqw !important;
  }
  .u-mt5--sp {
    margin-top: 1.3333333333cqw !important;
  }
  .u-mr5--sp {
    margin-right: 1.3333333333cqw !important;
  }
  .u-ml5--sp {
    margin-left: 1.3333333333cqw !important;
  }
  .u-mb5--sp {
    margin-bottom: 1.3333333333cqw !important;
  }
  .u-pt5--sp {
    padding-top: 1.3333333333cqw !important;
  }
  .u-pr5--sp {
    padding-right: 1.3333333333cqw !important;
  }
  .u-pl5--sp {
    padding-left: 1.3333333333cqw !important;
  }
  .u-pb5--sp {
    padding-bottom: 1.3333333333cqw !important;
  }
  .u-mt10--sp {
    margin-top: 2.6666666667cqw !important;
  }
  .u-mr10--sp {
    margin-right: 2.6666666667cqw !important;
  }
  .u-ml10--sp {
    margin-left: 2.6666666667cqw !important;
  }
  .u-mb10--sp {
    margin-bottom: 2.6666666667cqw !important;
  }
  .u-pt10--sp {
    padding-top: 2.6666666667cqw !important;
  }
  .u-pr10--sp {
    padding-right: 2.6666666667cqw !important;
  }
  .u-pl10--sp {
    padding-left: 2.6666666667cqw !important;
  }
  .u-pb10--sp {
    padding-bottom: 2.6666666667cqw !important;
  }
  .u-mt15--sp {
    margin-top: 4cqw !important;
  }
  .u-mr15--sp {
    margin-right: 4cqw !important;
  }
  .u-ml15--sp {
    margin-left: 4cqw !important;
  }
  .u-mb15--sp {
    margin-bottom: 4cqw !important;
  }
  .u-pt15--sp {
    padding-top: 4cqw !important;
  }
  .u-pr15--sp {
    padding-right: 4cqw !important;
  }
  .u-pl15--sp {
    padding-left: 4cqw !important;
  }
  .u-pb15--sp {
    padding-bottom: 4cqw !important;
  }
  .u-mt20--sp {
    margin-top: 5.3333333333cqw !important;
  }
  .u-mr20--sp {
    margin-right: 5.3333333333cqw !important;
  }
  .u-ml20--sp {
    margin-left: 5.3333333333cqw !important;
  }
  .u-mb20--sp {
    margin-bottom: 5.3333333333cqw !important;
  }
  .u-pt20--sp {
    padding-top: 5.3333333333cqw !important;
  }
  .u-pr20--sp {
    padding-right: 5.3333333333cqw !important;
  }
  .u-pl20--sp {
    padding-left: 5.3333333333cqw !important;
  }
  .u-pb20--sp {
    padding-bottom: 5.3333333333cqw !important;
  }
  .u-mt25--sp {
    margin-top: 6.6666666667cqw !important;
  }
  .u-mr25--sp {
    margin-right: 6.6666666667cqw !important;
  }
  .u-ml25--sp {
    margin-left: 6.6666666667cqw !important;
  }
  .u-mb25--sp {
    margin-bottom: 6.6666666667cqw !important;
  }
  .u-pt25--sp {
    padding-top: 6.6666666667cqw !important;
  }
  .u-pr25--sp {
    padding-right: 6.6666666667cqw !important;
  }
  .u-pl25--sp {
    padding-left: 6.6666666667cqw !important;
  }
  .u-pb25--sp {
    padding-bottom: 6.6666666667cqw !important;
  }
  .u-mt30--sp {
    margin-top: 8cqw !important;
  }
  .u-mr30--sp {
    margin-right: 8cqw !important;
  }
  .u-ml30--sp {
    margin-left: 8cqw !important;
  }
  .u-mb30--sp {
    margin-bottom: 8cqw !important;
  }
  .u-pt30--sp {
    padding-top: 8cqw !important;
  }
  .u-pr30--sp {
    padding-right: 8cqw !important;
  }
  .u-pl30--sp {
    padding-left: 8cqw !important;
  }
  .u-pb30--sp {
    padding-bottom: 8cqw !important;
  }
  .u-mt35--sp {
    margin-top: 9.3333333333cqw !important;
  }
  .u-mr35--sp {
    margin-right: 9.3333333333cqw !important;
  }
  .u-ml35--sp {
    margin-left: 9.3333333333cqw !important;
  }
  .u-mb35--sp {
    margin-bottom: 9.3333333333cqw !important;
  }
  .u-pt35--sp {
    padding-top: 9.3333333333cqw !important;
  }
  .u-pr35--sp {
    padding-right: 9.3333333333cqw !important;
  }
  .u-pl35--sp {
    padding-left: 9.3333333333cqw !important;
  }
  .u-pb35--sp {
    padding-bottom: 9.3333333333cqw !important;
  }
  .u-mt40--sp {
    margin-top: 10.6666666667cqw !important;
  }
  .u-mr40--sp {
    margin-right: 10.6666666667cqw !important;
  }
  .u-ml40--sp {
    margin-left: 10.6666666667cqw !important;
  }
  .u-mb40--sp {
    margin-bottom: 10.6666666667cqw !important;
  }
  .u-pt40--sp {
    padding-top: 10.6666666667cqw !important;
  }
  .u-pr40--sp {
    padding-right: 10.6666666667cqw !important;
  }
  .u-pl40--sp {
    padding-left: 10.6666666667cqw !important;
  }
  .u-pb40--sp {
    padding-bottom: 10.6666666667cqw !important;
  }
  .u-mt45--sp {
    margin-top: 12cqw !important;
  }
  .u-mr45--sp {
    margin-right: 12cqw !important;
  }
  .u-ml45--sp {
    margin-left: 12cqw !important;
  }
  .u-mb45--sp {
    margin-bottom: 12cqw !important;
  }
  .u-pt45--sp {
    padding-top: 12cqw !important;
  }
  .u-pr45--sp {
    padding-right: 12cqw !important;
  }
  .u-pl45--sp {
    padding-left: 12cqw !important;
  }
  .u-pb45--sp {
    padding-bottom: 12cqw !important;
  }
  .u-mt50--sp {
    margin-top: 13.3333333333cqw !important;
  }
  .u-mr50--sp {
    margin-right: 13.3333333333cqw !important;
  }
  .u-ml50--sp {
    margin-left: 13.3333333333cqw !important;
  }
  .u-mb50--sp {
    margin-bottom: 13.3333333333cqw !important;
  }
  .u-pt50--sp {
    padding-top: 13.3333333333cqw !important;
  }
  .u-pr50--sp {
    padding-right: 13.3333333333cqw !important;
  }
  .u-pl50--sp {
    padding-left: 13.3333333333cqw !important;
  }
  .u-pb50--sp {
    padding-bottom: 13.3333333333cqw !important;
  }
  .u-mt55--sp {
    margin-top: 14.6666666667cqw !important;
  }
  .u-mr55--sp {
    margin-right: 14.6666666667cqw !important;
  }
  .u-ml55--sp {
    margin-left: 14.6666666667cqw !important;
  }
  .u-mb55--sp {
    margin-bottom: 14.6666666667cqw !important;
  }
  .u-pt55--sp {
    padding-top: 14.6666666667cqw !important;
  }
  .u-pr55--sp {
    padding-right: 14.6666666667cqw !important;
  }
  .u-pl55--sp {
    padding-left: 14.6666666667cqw !important;
  }
  .u-pb55--sp {
    padding-bottom: 14.6666666667cqw !important;
  }
  .u-mt60--sp {
    margin-top: 16cqw !important;
  }
  .u-mr60--sp {
    margin-right: 16cqw !important;
  }
  .u-ml60--sp {
    margin-left: 16cqw !important;
  }
  .u-mb60--sp {
    margin-bottom: 16cqw !important;
  }
  .u-pt60--sp {
    padding-top: 16cqw !important;
  }
  .u-pr60--sp {
    padding-right: 16cqw !important;
  }
  .u-pl60--sp {
    padding-left: 16cqw !important;
  }
  .u-pb60--sp {
    padding-bottom: 16cqw !important;
  }
  .u-mt65--sp {
    margin-top: 17.3333333333cqw !important;
  }
  .u-mr65--sp {
    margin-right: 17.3333333333cqw !important;
  }
  .u-ml65--sp {
    margin-left: 17.3333333333cqw !important;
  }
  .u-mb65--sp {
    margin-bottom: 17.3333333333cqw !important;
  }
  .u-pt65--sp {
    padding-top: 17.3333333333cqw !important;
  }
  .u-pr65--sp {
    padding-right: 17.3333333333cqw !important;
  }
  .u-pl65--sp {
    padding-left: 17.3333333333cqw !important;
  }
  .u-pb65--sp {
    padding-bottom: 17.3333333333cqw !important;
  }
  .u-mt70--sp {
    margin-top: 18.6666666667cqw !important;
  }
  .u-mr70--sp {
    margin-right: 18.6666666667cqw !important;
  }
  .u-ml70--sp {
    margin-left: 18.6666666667cqw !important;
  }
  .u-mb70--sp {
    margin-bottom: 18.6666666667cqw !important;
  }
  .u-pt70--sp {
    padding-top: 18.6666666667cqw !important;
  }
  .u-pr70--sp {
    padding-right: 18.6666666667cqw !important;
  }
  .u-pl70--sp {
    padding-left: 18.6666666667cqw !important;
  }
  .u-pb70--sp {
    padding-bottom: 18.6666666667cqw !important;
  }
  .u-mt75--sp {
    margin-top: 20cqw !important;
  }
  .u-mr75--sp {
    margin-right: 20cqw !important;
  }
  .u-ml75--sp {
    margin-left: 20cqw !important;
  }
  .u-mb75--sp {
    margin-bottom: 20cqw !important;
  }
  .u-pt75--sp {
    padding-top: 20cqw !important;
  }
  .u-pr75--sp {
    padding-right: 20cqw !important;
  }
  .u-pl75--sp {
    padding-left: 20cqw !important;
  }
  .u-pb75--sp {
    padding-bottom: 20cqw !important;
  }
  .u-mt80--sp {
    margin-top: 21.3333333333cqw !important;
  }
  .u-mr80--sp {
    margin-right: 21.3333333333cqw !important;
  }
  .u-ml80--sp {
    margin-left: 21.3333333333cqw !important;
  }
  .u-mb80--sp {
    margin-bottom: 21.3333333333cqw !important;
  }
  .u-pt80--sp {
    padding-top: 21.3333333333cqw !important;
  }
  .u-pr80--sp {
    padding-right: 21.3333333333cqw !important;
  }
  .u-pl80--sp {
    padding-left: 21.3333333333cqw !important;
  }
  .u-pb80--sp {
    padding-bottom: 21.3333333333cqw !important;
  }
  .u-mt85--sp {
    margin-top: 22.6666666667cqw !important;
  }
  .u-mr85--sp {
    margin-right: 22.6666666667cqw !important;
  }
  .u-ml85--sp {
    margin-left: 22.6666666667cqw !important;
  }
  .u-mb85--sp {
    margin-bottom: 22.6666666667cqw !important;
  }
  .u-pt85--sp {
    padding-top: 22.6666666667cqw !important;
  }
  .u-pr85--sp {
    padding-right: 22.6666666667cqw !important;
  }
  .u-pl85--sp {
    padding-left: 22.6666666667cqw !important;
  }
  .u-pb85--sp {
    padding-bottom: 22.6666666667cqw !important;
  }
  .u-mt90--sp {
    margin-top: 24cqw !important;
  }
  .u-mr90--sp {
    margin-right: 24cqw !important;
  }
  .u-ml90--sp {
    margin-left: 24cqw !important;
  }
  .u-mb90--sp {
    margin-bottom: 24cqw !important;
  }
  .u-pt90--sp {
    padding-top: 24cqw !important;
  }
  .u-pr90--sp {
    padding-right: 24cqw !important;
  }
  .u-pl90--sp {
    padding-left: 24cqw !important;
  }
  .u-pb90--sp {
    padding-bottom: 24cqw !important;
  }
  .u-mt95--sp {
    margin-top: 25.3333333333cqw !important;
  }
  .u-mr95--sp {
    margin-right: 25.3333333333cqw !important;
  }
  .u-ml95--sp {
    margin-left: 25.3333333333cqw !important;
  }
  .u-mb95--sp {
    margin-bottom: 25.3333333333cqw !important;
  }
  .u-pt95--sp {
    padding-top: 25.3333333333cqw !important;
  }
  .u-pr95--sp {
    padding-right: 25.3333333333cqw !important;
  }
  .u-pl95--sp {
    padding-left: 25.3333333333cqw !important;
  }
  .u-pb95--sp {
    padding-bottom: 25.3333333333cqw !important;
  }
  .u-mt100--sp {
    margin-top: 26.6666666667cqw !important;
  }
  .u-mr100--sp {
    margin-right: 26.6666666667cqw !important;
  }
  .u-ml100--sp {
    margin-left: 26.6666666667cqw !important;
  }
  .u-mb100--sp {
    margin-bottom: 26.6666666667cqw !important;
  }
  .u-pt100--sp {
    padding-top: 26.6666666667cqw !important;
  }
  .u-pr100--sp {
    padding-right: 26.6666666667cqw !important;
  }
  .u-pl100--sp {
    padding-left: 26.6666666667cqw !important;
  }
  .u-pb100--sp {
    padding-bottom: 26.6666666667cqw !important;
  }
}
@media screen and (max-width: 1023px) {
  .u-mt0--tab {
    margin-top: 0cqw !important;
  }
  .u-mr0--tab {
    margin-right: 0cqw !important;
  }
  .u-ml0--tab {
    margin-left: 0cqw !important;
  }
  .u-mb0--tab {
    margin-bottom: 0cqw !important;
  }
  .u-pt0--tab {
    padding-top: 0cqw !important;
  }
  .u-pr0--tab {
    padding-right: 0cqw !important;
  }
  .u-pl0--tab {
    padding-left: 0cqw !important;
  }
  .u-pb0--tab {
    padding-bottom: 0cqw !important;
  }
  .u-mt5--tab {
    margin-top: 1.3333333333cqw !important;
  }
  .u-mr5--tab {
    margin-right: 1.3333333333cqw !important;
  }
  .u-ml5--tab {
    margin-left: 1.3333333333cqw !important;
  }
  .u-mb5--tab {
    margin-bottom: 1.3333333333cqw !important;
  }
  .u-pt5--tab {
    padding-top: 1.3333333333cqw !important;
  }
  .u-pr5--tab {
    padding-right: 1.3333333333cqw !important;
  }
  .u-pl5--tab {
    padding-left: 1.3333333333cqw !important;
  }
  .u-pb5--tab {
    padding-bottom: 1.3333333333cqw !important;
  }
  .u-mt10--tab {
    margin-top: 2.6666666667cqw !important;
  }
  .u-mr10--tab {
    margin-right: 2.6666666667cqw !important;
  }
  .u-ml10--tab {
    margin-left: 2.6666666667cqw !important;
  }
  .u-mb10--tab {
    margin-bottom: 2.6666666667cqw !important;
  }
  .u-pt10--tab {
    padding-top: 2.6666666667cqw !important;
  }
  .u-pr10--tab {
    padding-right: 2.6666666667cqw !important;
  }
  .u-pl10--tab {
    padding-left: 2.6666666667cqw !important;
  }
  .u-pb10--tab {
    padding-bottom: 2.6666666667cqw !important;
  }
  .u-mt15--tab {
    margin-top: 4cqw !important;
  }
  .u-mr15--tab {
    margin-right: 4cqw !important;
  }
  .u-ml15--tab {
    margin-left: 4cqw !important;
  }
  .u-mb15--tab {
    margin-bottom: 4cqw !important;
  }
  .u-pt15--tab {
    padding-top: 4cqw !important;
  }
  .u-pr15--tab {
    padding-right: 4cqw !important;
  }
  .u-pl15--tab {
    padding-left: 4cqw !important;
  }
  .u-pb15--tab {
    padding-bottom: 4cqw !important;
  }
  .u-mt20--tab {
    margin-top: 5.3333333333cqw !important;
  }
  .u-mr20--tab {
    margin-right: 5.3333333333cqw !important;
  }
  .u-ml20--tab {
    margin-left: 5.3333333333cqw !important;
  }
  .u-mb20--tab {
    margin-bottom: 5.3333333333cqw !important;
  }
  .u-pt20--tab {
    padding-top: 5.3333333333cqw !important;
  }
  .u-pr20--tab {
    padding-right: 5.3333333333cqw !important;
  }
  .u-pl20--tab {
    padding-left: 5.3333333333cqw !important;
  }
  .u-pb20--tab {
    padding-bottom: 5.3333333333cqw !important;
  }
  .u-mt25--tab {
    margin-top: 6.6666666667cqw !important;
  }
  .u-mr25--tab {
    margin-right: 6.6666666667cqw !important;
  }
  .u-ml25--tab {
    margin-left: 6.6666666667cqw !important;
  }
  .u-mb25--tab {
    margin-bottom: 6.6666666667cqw !important;
  }
  .u-pt25--tab {
    padding-top: 6.6666666667cqw !important;
  }
  .u-pr25--tab {
    padding-right: 6.6666666667cqw !important;
  }
  .u-pl25--tab {
    padding-left: 6.6666666667cqw !important;
  }
  .u-pb25--tab {
    padding-bottom: 6.6666666667cqw !important;
  }
  .u-mt30--tab {
    margin-top: 8cqw !important;
  }
  .u-mr30--tab {
    margin-right: 8cqw !important;
  }
  .u-ml30--tab {
    margin-left: 8cqw !important;
  }
  .u-mb30--tab {
    margin-bottom: 8cqw !important;
  }
  .u-pt30--tab {
    padding-top: 8cqw !important;
  }
  .u-pr30--tab {
    padding-right: 8cqw !important;
  }
  .u-pl30--tab {
    padding-left: 8cqw !important;
  }
  .u-pb30--tab {
    padding-bottom: 8cqw !important;
  }
  .u-mt35--tab {
    margin-top: 9.3333333333cqw !important;
  }
  .u-mr35--tab {
    margin-right: 9.3333333333cqw !important;
  }
  .u-ml35--tab {
    margin-left: 9.3333333333cqw !important;
  }
  .u-mb35--tab {
    margin-bottom: 9.3333333333cqw !important;
  }
  .u-pt35--tab {
    padding-top: 9.3333333333cqw !important;
  }
  .u-pr35--tab {
    padding-right: 9.3333333333cqw !important;
  }
  .u-pl35--tab {
    padding-left: 9.3333333333cqw !important;
  }
  .u-pb35--tab {
    padding-bottom: 9.3333333333cqw !important;
  }
  .u-mt40--tab {
    margin-top: 10.6666666667cqw !important;
  }
  .u-mr40--tab {
    margin-right: 10.6666666667cqw !important;
  }
  .u-ml40--tab {
    margin-left: 10.6666666667cqw !important;
  }
  .u-mb40--tab {
    margin-bottom: 10.6666666667cqw !important;
  }
  .u-pt40--tab {
    padding-top: 10.6666666667cqw !important;
  }
  .u-pr40--tab {
    padding-right: 10.6666666667cqw !important;
  }
  .u-pl40--tab {
    padding-left: 10.6666666667cqw !important;
  }
  .u-pb40--tab {
    padding-bottom: 10.6666666667cqw !important;
  }
  .u-mt45--tab {
    margin-top: 12cqw !important;
  }
  .u-mr45--tab {
    margin-right: 12cqw !important;
  }
  .u-ml45--tab {
    margin-left: 12cqw !important;
  }
  .u-mb45--tab {
    margin-bottom: 12cqw !important;
  }
  .u-pt45--tab {
    padding-top: 12cqw !important;
  }
  .u-pr45--tab {
    padding-right: 12cqw !important;
  }
  .u-pl45--tab {
    padding-left: 12cqw !important;
  }
  .u-pb45--tab {
    padding-bottom: 12cqw !important;
  }
  .u-mt50--tab {
    margin-top: 13.3333333333cqw !important;
  }
  .u-mr50--tab {
    margin-right: 13.3333333333cqw !important;
  }
  .u-ml50--tab {
    margin-left: 13.3333333333cqw !important;
  }
  .u-mb50--tab {
    margin-bottom: 13.3333333333cqw !important;
  }
  .u-pt50--tab {
    padding-top: 13.3333333333cqw !important;
  }
  .u-pr50--tab {
    padding-right: 13.3333333333cqw !important;
  }
  .u-pl50--tab {
    padding-left: 13.3333333333cqw !important;
  }
  .u-pb50--tab {
    padding-bottom: 13.3333333333cqw !important;
  }
  .u-mt55--tab {
    margin-top: 14.6666666667cqw !important;
  }
  .u-mr55--tab {
    margin-right: 14.6666666667cqw !important;
  }
  .u-ml55--tab {
    margin-left: 14.6666666667cqw !important;
  }
  .u-mb55--tab {
    margin-bottom: 14.6666666667cqw !important;
  }
  .u-pt55--tab {
    padding-top: 14.6666666667cqw !important;
  }
  .u-pr55--tab {
    padding-right: 14.6666666667cqw !important;
  }
  .u-pl55--tab {
    padding-left: 14.6666666667cqw !important;
  }
  .u-pb55--tab {
    padding-bottom: 14.6666666667cqw !important;
  }
  .u-mt60--tab {
    margin-top: 16cqw !important;
  }
  .u-mr60--tab {
    margin-right: 16cqw !important;
  }
  .u-ml60--tab {
    margin-left: 16cqw !important;
  }
  .u-mb60--tab {
    margin-bottom: 16cqw !important;
  }
  .u-pt60--tab {
    padding-top: 16cqw !important;
  }
  .u-pr60--tab {
    padding-right: 16cqw !important;
  }
  .u-pl60--tab {
    padding-left: 16cqw !important;
  }
  .u-pb60--tab {
    padding-bottom: 16cqw !important;
  }
  .u-mt65--tab {
    margin-top: 17.3333333333cqw !important;
  }
  .u-mr65--tab {
    margin-right: 17.3333333333cqw !important;
  }
  .u-ml65--tab {
    margin-left: 17.3333333333cqw !important;
  }
  .u-mb65--tab {
    margin-bottom: 17.3333333333cqw !important;
  }
  .u-pt65--tab {
    padding-top: 17.3333333333cqw !important;
  }
  .u-pr65--tab {
    padding-right: 17.3333333333cqw !important;
  }
  .u-pl65--tab {
    padding-left: 17.3333333333cqw !important;
  }
  .u-pb65--tab {
    padding-bottom: 17.3333333333cqw !important;
  }
  .u-mt70--tab {
    margin-top: 18.6666666667cqw !important;
  }
  .u-mr70--tab {
    margin-right: 18.6666666667cqw !important;
  }
  .u-ml70--tab {
    margin-left: 18.6666666667cqw !important;
  }
  .u-mb70--tab {
    margin-bottom: 18.6666666667cqw !important;
  }
  .u-pt70--tab {
    padding-top: 18.6666666667cqw !important;
  }
  .u-pr70--tab {
    padding-right: 18.6666666667cqw !important;
  }
  .u-pl70--tab {
    padding-left: 18.6666666667cqw !important;
  }
  .u-pb70--tab {
    padding-bottom: 18.6666666667cqw !important;
  }
  .u-mt75--tab {
    margin-top: 20cqw !important;
  }
  .u-mr75--tab {
    margin-right: 20cqw !important;
  }
  .u-ml75--tab {
    margin-left: 20cqw !important;
  }
  .u-mb75--tab {
    margin-bottom: 20cqw !important;
  }
  .u-pt75--tab {
    padding-top: 20cqw !important;
  }
  .u-pr75--tab {
    padding-right: 20cqw !important;
  }
  .u-pl75--tab {
    padding-left: 20cqw !important;
  }
  .u-pb75--tab {
    padding-bottom: 20cqw !important;
  }
  .u-mt80--tab {
    margin-top: 21.3333333333cqw !important;
  }
  .u-mr80--tab {
    margin-right: 21.3333333333cqw !important;
  }
  .u-ml80--tab {
    margin-left: 21.3333333333cqw !important;
  }
  .u-mb80--tab {
    margin-bottom: 21.3333333333cqw !important;
  }
  .u-pt80--tab {
    padding-top: 21.3333333333cqw !important;
  }
  .u-pr80--tab {
    padding-right: 21.3333333333cqw !important;
  }
  .u-pl80--tab {
    padding-left: 21.3333333333cqw !important;
  }
  .u-pb80--tab {
    padding-bottom: 21.3333333333cqw !important;
  }
  .u-mt85--tab {
    margin-top: 22.6666666667cqw !important;
  }
  .u-mr85--tab {
    margin-right: 22.6666666667cqw !important;
  }
  .u-ml85--tab {
    margin-left: 22.6666666667cqw !important;
  }
  .u-mb85--tab {
    margin-bottom: 22.6666666667cqw !important;
  }
  .u-pt85--tab {
    padding-top: 22.6666666667cqw !important;
  }
  .u-pr85--tab {
    padding-right: 22.6666666667cqw !important;
  }
  .u-pl85--tab {
    padding-left: 22.6666666667cqw !important;
  }
  .u-pb85--tab {
    padding-bottom: 22.6666666667cqw !important;
  }
  .u-mt90--tab {
    margin-top: 24cqw !important;
  }
  .u-mr90--tab {
    margin-right: 24cqw !important;
  }
  .u-ml90--tab {
    margin-left: 24cqw !important;
  }
  .u-mb90--tab {
    margin-bottom: 24cqw !important;
  }
  .u-pt90--tab {
    padding-top: 24cqw !important;
  }
  .u-pr90--tab {
    padding-right: 24cqw !important;
  }
  .u-pl90--tab {
    padding-left: 24cqw !important;
  }
  .u-pb90--tab {
    padding-bottom: 24cqw !important;
  }
  .u-mt95--tab {
    margin-top: 25.3333333333cqw !important;
  }
  .u-mr95--tab {
    margin-right: 25.3333333333cqw !important;
  }
  .u-ml95--tab {
    margin-left: 25.3333333333cqw !important;
  }
  .u-mb95--tab {
    margin-bottom: 25.3333333333cqw !important;
  }
  .u-pt95--tab {
    padding-top: 25.3333333333cqw !important;
  }
  .u-pr95--tab {
    padding-right: 25.3333333333cqw !important;
  }
  .u-pl95--tab {
    padding-left: 25.3333333333cqw !important;
  }
  .u-pb95--tab {
    padding-bottom: 25.3333333333cqw !important;
  }
  .u-mt100--tab {
    margin-top: 26.6666666667cqw !important;
  }
  .u-mr100--tab {
    margin-right: 26.6666666667cqw !important;
  }
  .u-ml100--tab {
    margin-left: 26.6666666667cqw !important;
  }
  .u-mb100--tab {
    margin-bottom: 26.6666666667cqw !important;
  }
  .u-pt100--tab {
    padding-top: 26.6666666667cqw !important;
  }
  .u-pr100--tab {
    padding-right: 26.6666666667cqw !important;
  }
  .u-pl100--tab {
    padding-left: 26.6666666667cqw !important;
  }
  .u-pb100--tab {
    padding-bottom: 26.6666666667cqw !important;
  }
}
@media screen and (max-width: 1180px) {
  .u-mr30--laptop {
    margin-right: 30px im !important;
  }
}
.u-position-relative {
  position: relative;
}

/* --------------------------
テキスト装飾
-------------------------- */
.u-text-accent {
  color: #3F9FEB;
}

.u-text-important {
  color: #DC3B3B;
}

.u-text-inverse {
  color: #fff;
}

.u-text-sub {
  color: #ccc;
}

.u-text-black {
  color: #272727;
}

.u-text-serif {
  font-family: "Times New Roman", Times, serif;
}

.u-text-bold {
  font-weight: 700;
}

.u-text-regular {
  font-weight: 500;
}

.u-text-normal {
  font-weight: 500;
}

.u-text-highlight {
  background: linear-gradient(transparent 70%, #3F9FEB 70%);
}

.u-text-underline {
  text-decoration: underline;
}

.u-text-x-large {
  font-size: 7.4666666667cqw;
}

.u-text-large {
  font-size: 5.8666666667cqw;
}

.u-text-bit-large {
  font-size: 5.3333333333cqw;
}

.u-text-medium {
  font-size: 4.8cqw;
}

.u-text-default {
  font-size: 3.84cqw;
}

.u-text-bit-small {
  font-size: 3.4666666667cqw;
}

.u-text-small {
  font-size: 3.7333333333cqw;
}

.u-text-x-small {
  font-size: 2.9333333333cqw;
}

/* --------------------------
幅指定
-------------------------- */
.u-w100 {
  width: 100%;
}