@charset "UTF-8";
.l-section {
  margin-bottom: 70px;
}

.l-main {
  margin: 0 auto;
  width: 976px;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .l-main {
    width: 100%;
  }
}

/* ステップバー全体の設定 */
.c-stepbar,
.c-stepbar-num {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  /* 横並びにする */
}

.c-stepbar-num__item {
  align-items: center;
  display: flex;
  font-weight: bold;
  justify-content: center;
  padding: 5px 20px;
  text-align: center;
  width: 150px;
}

/* 共通の項目設定 */
.c-stepbar__item {
  align-items: center;
  background-color: #BDBDBD;
  color: #E5E5E5;
  display: flex;
  font-weight: bold;
  justify-content: center;
  line-height: 1.2;
  padding: 10px 20px;
  position: relative;
  text-align: center;
  width: 150px;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .c-stepbar__item {
    padding: 5px 15px;
  }
}
.c-stepbar__item.is-current {
  color: #fff;
}

.c-stepbar__item:first-child {
  clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
}
.c-stepbar__item:first-child.is-current {
  background-color: #0087C3;
}

.c-stepbar__item:not(:first-child):not(:last-child) {
  clip-path: polygon(90% 0%, 100% 50%, 90% 100%, 0% 100%, 10% 50%, 0% 0%);
}
.c-stepbar__item:not(:first-child):not(:last-child).is-current {
  background-color: #C33C00;
}

.c-stepbar__item:last-child {
  clip-path: polygon(90% 0%, 100% 50%, 90% 100%, 0% 100%, 10% 50%, 0% 0%);
}
.c-stepbar__item:last-child.is-current {
  background-color: #00C33C;
}

.c-txt-emphasis {
  font-weight: bold;
}

.p-stepContent__title {
  border-bottom: 1px solid #ddd;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
  padding: 15px 0 5px 0;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-stepContent__title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.p-stepContent__title__note {
  color: #F2172E;
  font-size: 16px;
  padding-left: 10px;
}
.p-stepContent__stepbar-container {
  -moz-column-gap: 20px;
  align-items: end;
  column-gap: 20px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-stepContent__stepbar-container div {
    width: 100%;
  }
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-stepContent__stepbar-container {
    align-items: center;
    flex-direction: column;
  }
}
.p-stepContent__pdflink-container {
  -moz-column-gap: 10px;
  align-items: end;
  column-gap: 10px;
  display: flex;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-stepContent__pdflink-container {
    flex-direction: column;
    margin-top: 10px;
    row-gap: 5px;
  }
}
.p-stepContent__pdflink {
  display: flex;
  font-size: 16px;
  justify-content: center;
  margin-top: 20px;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-stepContent__pdflink {
    margin-top: 0;
  }
}
.p-stepContent__pdflink a {
  -moz-column-gap: 10px;
  align-items: center;
  animation: colorChange 2s ease infinite;
  background: #FFEB3B;
  color: #1F1F1F;
  column-gap: 10px;
  display: flex;
  font-size: 14px;
  font-weight: bold;
  justify-content: center;
  line-height: 1.2;
  padding: 5px 0;
  text-align: center;
  text-decoration: none;
  width: 175px;
}
@keyframes colorChange {
  0% {
    background: #FFEB3B;
    color: #1F1F1F;
  }
  50% {
    background: #F2172E;
  }
  100% {
    background: #FFEB3B;
    color: #1F1F1F;
  }
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-stepContent__pdflink a {
    width: 100%;
  }
}
.p-stepContent__frame {
  border: 4px solid #0087C3;
  line-height: 1.2;
  margin: 40px 0 40px 0;
  padding: 40px 50px;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-stepContent__frame {
    margin: 20px 0 20px 0;
    padding: 20px 25px;
  }
}
.p-stepContent__frame--ng {
  background-color: #EEEEEE;
  border-color: #BDBDBD;
}
.p-stepContent__frame--step1 {
  border-color: #0087C3;
}
.p-stepContent__frame--step1 .p-stepContent__text--emphasis {
  color: #0087C3;
}
.p-stepContent__frame--step1 .p-stepContent__btn {
  background-color: #0087C3;
  color: #fff;
}
.p-stepContent__frame--step1 .p-stepContent__btn--yes {
  background-color: #0087C3;
  color: #fff;
}
.p-stepContent__frame--step1 .p-stepContent__btn--no {
  background-color: #C6DEEB;
}
.p-stepContent__frame--step2 {
  border-color: #C33C00;
}
.p-stepContent__frame--step2 .p-stepContent__text--emphasis {
  color: #C33C00;
}
.p-stepContent__frame--step2 .p-stepContent__btn {
  background-color: #C33C00;
  color: #fff;
}
.p-stepContent__frame--step2 .p-stepContent__btn--yes {
  background-color: #C33C00;
}
.p-stepContent__frame--step2 .p-stepContent__btn--no {
  background-color: #EBD3C6;
}
.p-stepContent__frame--step3 {
  border-color: #00C33C;
}
.p-stepContent__frame--step3 .p-stepContent__text--emphasis {
  color: #00C33C;
}
.p-stepContent__frame--step3 .p-stepContent__btn {
  background-color: #00C33C;
  color: #fff;
}
.p-stepContent__frame--step3 .p-stepContent__btn--yes {
  background-color: #00C33C;
}
.p-stepContent__text {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-stepContent__text {
    font-size: 16px;
    text-align: left;
  }
}
.p-stepContent__text--emphasis {
  font-size: 30px;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-stepContent__text--emphasis {
    font-size: 20px;
  }
}
.p-stepContent__text--ng {
  line-height: 1.5;
}
.p-stepContent__text--small {
  color: #0026c3;
  font-size: 16px;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-stepContent__text--small {
    font-size: 14px;
  }
}
.p-stepContent__title {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-stepContent__title {
    font-size: 16px;
    text-align: left;
  }
}
.p-stepContent__img--container {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-stepContent__img--container {
    margin-top: 10px;
  }
}
.p-stepContent__img {
  height: 350px;
  overflow: hidden;
  position: relative;
  text-align: center;
  width: 550px;
}
.p-stepContent__img--narrow {
  height: 250px;
  width: 500px;
}
.p-stepContent__img--wide {
  height: 260px;
  width: 650px;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-stepContent__img {
    height: 200px;
    padding: 10px 0 0 0;
    width: 100%;
  }
  .p-stepContent__img--narrow {
    height: 150px;
    width: 100%;
  }
  .p-stepContent__img--wide {
    height: 200px;
    width: 100%;
  }
}
.p-stepContent__img img {
  -o-object-fit: contain;
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.p-stepContent__dllist {
  margin-top: 20px;
}
.p-stepContent__dllist__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.p-stepContent__dllist__item dt {
  text-align: right;
}
.p-stepContent__dllist__item dd {
  text-align: left;
}
.p-stepContent__dllist__item dd:before {
  content: "：";
}
.p-stepContent__text-step1-end {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-stepContent__text-step1-end {
    row-gap: 5px;
    text-align: center;
  }
}
.p-stepContent__text-step1-end__03 {
  margin-top: 20px;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-stepContent__text-step1-end__03 {
    margin-top: 10px;
  }
}
.p-stepContent__text-step2-17 {
  align-items: flex-start;
  display: flex;
  font-size: 16px;
  font-weight: normal;
  justify-content: flex-end;
  margin-left: 0;
  text-align: left;
  width: 90%;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-stepContent__text-step2-17 {
    width: 100%;
  }
}
.p-stepContent__text-step2-17 dt {
  color: #C33C00;
}
.p-stepContent__text-step2-end {
  border: 2px solid #00C33C;
  font-size: 16px;
  font-weight: normal;
  margin-top: 20px;
  padding: 10px;
}
.p-stepContent__note {
  font-size: 16px;
  font-weight: normal;
  margin-top: 16px;
}
.p-stepContent__actions {
  -moz-column-gap: 50px;
  column-gap: 50px;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-stepContent__actions {
    -moz-column-gap: 20px;
    column-gap: 20px;
    margin-top: 15px;
  }
}
.p-stepContent__actions--ng {
  align-items: flex-end;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-stepContent__actions--ng {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    row-gap: 20px;
  }
}
.p-stepContent__actions__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-stepContent__actions a {
  color: inherit;
  text-decoration: none;
}
.p-stepContent__actions a.p-stepContent__btn {
  border-radius: 10px;
  display: block;
  font-size: 20px;
  font-weight: bold;
  padding: 20px 0;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s;
  width: 250px;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-stepContent__actions a.p-stepContent__btn {
    font-size: 16px;
    padding: 15px 0;
  }
}
.p-stepContent__actions a.p-stepContent__btn--yes {
  color: #fff;
}
.p-stepContent__actions a.p-stepContent__btn--no {
  color: #666464;
}
.p-stepContent__actions a.p-stepContent__btn--return {
  align-items: center;
  background-color: #1F1F1F;
  color: #fff;
  display: flex;
  height: 64px;
  justify-content: center;
  padding: 0;
}
.p-stepContent__actions a.p-stepContent__btn--link {
  align-items: center;
  background-color: rgba(77, 111, 220, 0.2);
  border: 2px solid #0026c3;
  color: #0026c3;
  display: flex;
  height: 64px;
  justify-content: center;
  margin: 0 auto;
  margin-top: 5px;
  padding: 0;
}
.p-stepContent__actions a.p-stepContent__btn:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.p-stepContent__cta-wrapper {
  margin-top: 50px;
  text-align: center;
}
.p-stepContent__cta-wrapper a {
  color: #0087C3;
  text-decoration: none;
}
.p-stepContent__cta-wrapper a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.p-stepContent__cta-wrapper a:visited {
  color: #0087C3;
  text-decoration: none;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-stepContent__cta-wrapper {
    margin-top: 20px;
  }
}
.p-stepContent__cta {
  background-color: #C6DEEB;
  border-radius: 10px;
  box-sizing: border-box;
  display: block;
  margin: 0 auto;
  max-width: 634px;
  padding: 30px 0 25px 0;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 634px;
}
.p-stepContent__cta:after {
  background-color: #fff;
  border-radius: 50%;
  color: #0087C3;
  content: "\f105";
  display: inline-block;
  font-family: "FontAwesome";
  font-size: 25px;
  font-weight: bold;
  height: 40px;
  line-height: 40px;
  position: absolute;
  right: 20px;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-stepContent__cta:after {
    font-size: 16px;
    height: 20px;
    line-height: 20px;
    right: 10px;
    width: 20px;
  }
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-stepContent__cta {
    padding: 10px 35px 10px 10px;
    width: 100%;
  }
}
.p-stepContent__cta--step2 {
  background-color: #EBD3C6;
  color: #fff;
}
.p-stepContent__cta--step2:after {
  color: #C33C00;
}
.p-stepContent__cta--step3 {
  background-color: #CCF3D8;
  color: #fff;
}
.p-stepContent__cta--step3:after {
  color: #00C33C;
}
.p-stepContent__cta-text {
  color: #0087C3;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
}
.p-stepContent__cta-text--step2 {
  color: #C33C00;
}
.p-stepContent__cta-text--step3 {
  color: #00C33C;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-stepContent__cta-text {
    font-size: 16px;
  }
}
.p-stepContent__sub {
  font-size: 0.5em;
  vertical-align: 0em;
}

a:visited {
  text-decoration: none !important;
}

.p-subuser-top {
  background-color: #C6DEEB;
  padding: 50px 0;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-subuser-top {
    padding: 25px 0;
  }
}
.p-subuser-top__inner {
  background-color: #fff;
  padding: 50px;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-subuser-top__inner {
    padding: 25px;
  }
}
.p-subuser-top__heading {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-subuser-top__heading {
    font-size: 24px;
  }
}
.p-subuser-top__content {
  -moz-column-gap: 40px;
  column-gap: 40px;
  display: flex;
  margin-top: 30px;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-subuser-top__content {
    -moz-column-gap: 0;
    column-gap: 0;
    flex-direction: column;
    justify-content: center;
    row-gap: 20px;
  }
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-subuser-top__image {
    text-align: center;
  }
}
.p-subuser-top__text {
  font-size: 20px;
  line-height: 1.5;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-subuser-top__text {
    font-size: 16px;
    line-height: 1.2;
  }
}
.p-subuser-top__cta-wrapper {
  margin-top: 50px;
  text-align: center;
}
.p-subuser-top__cta-wrapper a {
  color: #0087C3;
  text-decoration: none;
}
.p-subuser-top__cta-wrapper a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.p-subuser-top__cta-wrapper a:visited {
  color: #0087C3;
  text-decoration: none;
}
.p-subuser-top__cta {
  background-color: #C6DEEB;
  border-radius: 10px;
  color: #0087C3;
  display: block;
  margin: 0 auto;
  padding: 30px 0 25px 0;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 634px;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-subuser-top__cta {
    padding: 20px 0 15px 0;
    width: 100%;
  }
}
.p-subuser-top__cta:after {
  background-color: #fff;
  border-radius: 50%;
  color: #0087C3;
  content: "\f105";
  display: inline-block;
  font-family: "FontAwesome";
  font-size: 25px;
  font-weight: bold;
  height: 40px;
  line-height: 40px;
  margin-right: 0.5em;
  position: absolute;
  right: 20px;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) and (max-device-width: 1280px) and (max-width: 640px) {
  .p-subuser-top__cta:after {
    font-size: 16px;
    height: 20px;
    line-height: 20px;
    right: 10px;
    width: 20px;
  }
}
.p-subuser-top__cta-step {
  align-items: center;
  background-color: #0087C3;
  border-radius: 40px;
  color: #fff;
  display: flex;
  font-size: 24px;
  font-weight: bold;
  height: 40px;
  justify-content: center;
  left: 50%;
  padding: 0 25px;
  position: absolute;
  top: -25px;
  transform: translateX(-50%);
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-subuser-top__cta-step {
    border-radius: 25px;
    font-size: 16px;
    height: 25px;
    padding: 0 10px;
    top: -15px;
  }
}
.p-subuser-top__cta-text {
  color: #0087C3;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-subuser-top__cta-text {
    font-size: 16px;
  }
}

.p-step3 a {
  color: #477EEB;
  text-decoration: none !important;
}
.p-step3 a:hover {
  text-decoration: underline;
}
.p-step3 a:visited {
  color: #477EEB;
  text-decoration: none !important;
}
.p-step3__title {
  font-size: 28px;
  font-weight: bold;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-step3__title {
    font-size: 18px;
  }
}
.p-step3__attn {
  background: rgba(242, 23, 46, 0.2);
  border: 2px solid #F2172E;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 30px;
  margin-top: 15px;
  padding: 10px 0;
  text-align: center;
}
.p-step3__attn p {
  margin-top: 10px;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-step3__attn {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.p-step3__link a {
  color: #477EEB;
  font-size: 18px;
  text-decoration: none;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-step3__link a {
    font-size: 16px;
  }
}
.p-step3__link a:hover {
  text-decoration: underline;
}
.p-step3__link a:visited {
  color: #477EEB;
  text-decoration: none;
}
.p-step3__dl {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  row-gap: 25px;
}
.p-step3__dl a {
  text-decoration: none;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-step3__dl {
    row-gap: 15px;
  }
}
.p-step3__dl__item {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-step3__dl__item {
    row-gap: 0;
  }
}
.p-step3__dl__item--number {
  counter-reset: number;
}
.p-step3__dl__item--number .p-step3__dl__cont {
  align-items: center;
  display: flex;
  padding-left: 1.5em;
  position: relative;
}
.p-step3__dl__item--number .p-step3__dl__cont::before {
  align-items: center;
  background: #fff;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: #477EEB;
  content: counter(number);
  counter-increment: number;
  display: flex;
  font-size: 0.8em;
  height: 1em;
  justify-content: center;
  left: 0;
  position: absolute;
  width: 1em;
}
.p-step3__dl__title {
  -moz-column-gap: 5px;
  column-gap: 5px;
  display: flex;
  font-size: 20px;
  font-weight: bold;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-step3__dl__title {
    font-size: 16px;
    margin-bottom: 5px;
  }
}
.p-step3__dl__cont {
  flex-direction: row;
  font-size: 18px;
  row-gap: 10px;
}
.p-step3__dl__cont a {
  color: #477EEB;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .p-step3__dl__cont {
    font-size: 16px;
  }
}

.u-section-sub {
  margin-top: 20px;
}

.u-txt-bold {
  font-weight: bold;
}

.u-txt-attn {
  color: #F2172E;
}

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

.u-txt-large {
  font-size: 20px;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .u-txt-large {
    font-size: 16px;
  }
}

.u-txt-left {
  text-align: left;
}

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

.u-txt-link {
  color: #477EEB;
}

.u-txt-nowrap {
  white-space: nowrap;
}

.u-center {
  margin: auto auto;
}

.u-flex-end {
  justify-content: flex-end;
}

.u-flex {
  display: flex;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .u-flex {
    flex-flow: column;
  }
}
.u-flex.al-center {
  align-items: center;
}

.u-mt-5 {
  margin-top: 5px;
}

.u-mt-10 {
  margin-top: 10px;
}

.u-mt-20 {
  margin-top: 20px;
}

.u-mb-10 {
  margin-bottom: 10px;
}

.u-mb-15 {
  margin-bottom: 15px;
}

.u-mb-20 {
  margin-bottom: 20px;
}

.u-ml-10 {
  margin-left: 10px;
}

.u-ml-5 {
  margin-left: 5px;
}

.u-w-full {
  width: 100%;
}

.u-disc-list {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.u-number-list {
  counter-reset: item;
  list-style: none;
}
.u-number-list li {
  display: flex;
}
.u-number-list li::before {
  content: counter(item) ". ";
  counter-increment: item;
}
.u-number-list li:nth-child(n+2) {
  margin-top: 10px;
}

.u-horizontal-list {
  display: flex;
}
.u-horizontal-list--multiple {
  align-items: flex-start;
}
.u-horizontal-list dd {
  margin: 0;
}

.u-dl-colon-style {
  display: grid;
  grid-template-columns: auto 1fr;
}
.u-dl-colon-style__item {
  display: contents;
}
.u-dl-colon-style__item dt {
  padding-right: 0.5rem;
  white-space: nowrap;
}
.u-dl-colon-style__item dd::before {
  content: "：";
  padding-right: 0.5rem;
}
.u-dl-colon-style__item dd.none::before {
  content: "";
  padding-right: 0.5rem;
}
.u-dl-colon-style__item dd a.external::after {
  content: url(/search/etc/designs/panasonic/basicpage-clientlibs/images/external-link-icon-g.png);
  padding-left: 0.5rem;
}

.u-display-pc {
  display: inline-block;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .u-display-pc {
    display: none;
  }
}

.u-display-sp {
  display: none;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .u-display-sp {
    display: block;
  }
}

@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .u-hidden-sp {
    display: none;
  }
}

.u-scroll-y {
  box-sizing: border-box;
  overflow-y: auto;
}

.u-scroll-x {
  box-sizing: border-box;
  overflow-x: auto;
}

.u-bg-secondary {
  background-color: #F2F2F2;
  padding: 20px;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
  .u-bg-secondary {
    padding: 10px;
  }
}
/*# sourceMappingURL=sourcemaps/style.css.map */