@charset "UTF-8";

/* ====================================
 * reset
==================================== */
*,:after,:before,button {
  box-sizing: border-box
}

abbr,address,article,aside,audio,b,blockquote,body,canvas,caption,cite,code,dd,del,details,dfn,div,dl,dt,em,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video {
  background: transparent;
  border: 0;
  font-size: 100%;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: initial
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%
}

body {
  line-height: 1
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  display: block
}

ol,ul {
  list-style: none
}

blockquote,q {
  quotes: none
}

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

a {
  background: transparent;
  font-size: 100%;
  margin: 0;
  padding: 0;
  text-decoration: none;
  vertical-align: initial
}

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

hr {
  border: 0;
  border-top: 1px solid #ccc;
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0
}

input,select {
  vertical-align: middle
}

img {
  vertical-align: bottom
}

button {
  -webkit-appearance: none;
  appearance: none;
  background-color: initial;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0
}

/* ====================================
 * utility
==================================== */
.u-font_bold {
  font-weight: 600;
}
.u-only_mobile {
  display: block;
}
@media screen and (min-width: 1000px) {
  .u-only_mobile {
    display: none;
  }
}
.u-only_desktop{
  display: none;
}
@media screen and (min-width: 1000px) {
  .u-only_desktop {
    display: block;
  }
}

.u-imgAdjustBox {
  position: relative;
  width: 100%;
  height: auto;
}
.u-imgAdjustBox::before {
  content: "";
  display: block;
}
.u-imgAdjustBox_inner {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ====================================
 * image size
==================================== */
[data-aspect-ratio="1:1"]::before {
  padding-top: 100%;
}

[data-aspect-ratio="3:2"]::before {
  padding-top: calc(2 / 3 * 100%);
}

[data-aspect-ratio="169:60"]::before {
  padding-top: calc(60 / 169 * 100%);
}

@media screen and (max-width: 999px) {
  [data-mobile-aspect-ratio="1:1"]::before {
    padding-top: 100%;
  }

  [data-mobile-aspect-ratio="3:2"]::before {
    padding-top: calc(2 / 3 * 100%);
  }

  [data-mobile-aspect-ratio="75:49"]::before {
    padding-top: calc(49 / 75 * 100%);
  }

  [data-mobile-aspect-ratio="99:115"]::before {
    padding-top: calc(115 / 99 * 100%);
  }
}

@media screen and (min-width: 1000px) {
  [data-desktop-aspect-ratio="8:5"]::before {
    padding-top: calc(5 / 8 * 100%);
  }

  [data-desktop-aspect-ratio="1224:463"]::before {
    padding-top: calc(463 / 1224 * 100%);
  }
}

/* ====================================
 * common
==================================== */
.main {
  position: relative;
  margin: auto;
  display: flex;
  flex-direction: column;
  font-family: Helvetica Neue,Helvetica,Noto Sans JP,sans-serif;
  line-height: 1.6;
  font-weight: 500;
  color: #3C3C43;
  margin-bottom: 60px;
}

@media screen and (min-width: 1000px) {
  .main {
    margin-bottom: 64px;
  }
}

.lazyload,
.lazyloading {
  opacity: 0;
}

.lazyloaded {
  opacity: 1;
  transition: opacity 1s;
}

.u-font_helvetica {
  font-family: Helvetica Neue, Helvetica, sans-serif;
}

@media screen and (min-width: 1000px) {
  .u-font_helvetica-desktop {
    font-family: Helvetica Neue, Helvetica, sans-serif;
  }
}

.u-font_gothicMB {
  font-family: Gothic MB101 Bold, sans-serif;
}

@media screen and (max-width: 999px) {
  .u-font_gothicMB-mobile {
    font-family: Gothic MB101 Bold, sans-serif;
  }
}

@media screen and (min-width: 1000px) {
  .u-font_gothicMB-desktop {
    font-family: Gothic MB101 Bold, sans-serif;
  }
}

@media screen and (max-width: 599px) {
  .u-contents_mobile {
    margin-left: 15px;
    margin-right: 15px
  }
}

@media screen and (min-width: 600px) and (max-width: 999px) {
  .u-contents_tablet {
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px
  }
}

@media screen and (min-width: 1000px) {
  .u-contents_desktop {
    margin-left: auto;
    margin-right: auto;
    max-width: 1352px;
    padding-left: 64px;
    padding-right: 64px
  }
}

/* ====================================
 * パンクズ
==================================== */
.co-breadcrumb {
  max-width: 1384px;
  margin: 20px auto;
  padding-left: 64px;
  padding-right: 64px;
  box-sizing: border-box;
  width: 100%;
}
.co-breadcrumb__list {
  display: flex;
  margin: 0;
  padding: 0;
}
.co-breadcrumb__item {
  align-items: center;
  display: inline-flex;
  position: relative;
}
.co-breadcrumb__itemLink {
  color: #3c3c43;
  display: inline-block;
  font-size: 12px;
  line-height: 1.5;
}
.co-breadcrumb__itemLink.--disable {
  pointer-events: none;
}
.co-breadcrumb__item:last-of-type .co-breadcrumb__itemLink {
  color: #76767B;
}
.co-breadcrumb__item:not(:last-of-type)::after {
  content: "";
  width: 7px;
  height: 14px;
  margin-left: 10px;
  margin-right: 10px;
  background-image: url("../img/icn_breadcrumb_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .co-breadcrumb {
    margin-top: 32px;
    margin-bottom: 80px;
    order: 100;
    padding-left: 8vw;
    padding-right: 8vw;
    width: 100%;
  }
  .co-breadcrumb__list {
    flex-wrap: wrap;
    margin-bottom: 0 !important;
  }
  .co-breadcrumb__item {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}

/* ====================================
 * ファーストビュー
==================================== */
.lead {
  padding-top: 64px;
}

.lead__heading {
  font-size: 16px;
  text-align: center;
}

.lead__heading span.u-font_gothicMB {
  margin-top: 2px;
  display: block;
  font-size: 32px;
}

.lead__heading span.u-font_helvetica {
  font-size: 36px;
}

.lead__text {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 16px;
}

.lead__anchor {
  display: block;
  font-size: 16px;
  font-weight: bold;
  width: fit-content;
  padding-right: 22px;
  position: relative; 
  margin: 24px auto 0;
}

.lead__anchor::after {
  content: "";
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMgNkw4IDExTDEzIDYiIHN0cm9rZT0iIzNDM0M0MyIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==") no-repeat center / contain;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

@media screen and (min-width: 1000px) {
  .lead__text {
    margin-top: 0;
    text-align: center;
  }

  .lead__anchor {
    padding-right: 32px;
    font-size: 18px;
  }

  .lead__anchor .u-font_helvetica {
    font-size: 20px;
  }

  .lead__anchor::after {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxOSAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEuNSA1TDkuNSAxM0wxNy41IDUiIHN0cm9rZT0iIzNDM0M0MyIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==");
    right: 5px;
  }
}

.banner {
  width: 100px;
  position: fixed;
  left: 12px;
  bottom: 31px;
  z-index: 100;
}

.banner__img {
  display: block;
}

@media screen and (min-width: 1000px) {
  .banner {
    width: 143px;
    left: 50px;
  }
}

/* ====================================
 * section共通
==================================== */
.section {
  padding-top: 64px;
}

.section__subHeading {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 4px;
}

.section__heading {
  text-align: center;
  font-weight: bold;
  font-size: 26px;
}

@media screen and (min-width: 1000px) {
  .section {
    padding-top: 96px;
  }

  .section__heading {
    font-size: 32px;
  }

  .section__heading span.u-font_helvetica,
  .section__heading span.u-font_helvetica-desktop {
    font-size: 38px;
  }  
}

/* ====================================
 * service
==================================== */
.service__list {
  margin-top: 24px;
}

.service__item {
  border-bottom: 1px solid #EBEBEC;
  padding: 16px 0;
}

.service__category {
  display: inline-block;
  color: #7F0019;
  border: 1px solid #7F0019;
  background: #fff;
  padding: 1px 7px 3px;
}

.service__itemCategory {
  font-size: 16px;
}

.service__itemDescription {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 8px;
}

.service__annotation {
  font-size: 12px;
  margin-top: 24px;
}

@media screen and (min-width: 1000px) {
  .service__annotation {
    text-align: center;
  }
}

.service__link {
  border: 1px solid #C4C4C6;
  border-radius: 4px;
  color: #3C3C43;
  display: block;
  text-align: center;
  font-weight: bold;
  padding: 20px;
  font-size: 18px;
  margin: 48px auto 0;
  max-width: 370px;
}

@media screen and (min-width: 1000px) {
  .service__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
  }

  .service__category {
    padding: 3px 7px;
  }
  
  .service__item {
    border: none;
    position: relative;
    padding: 20px 24px;
  }

  .service__itemCategory {
    font-size: 18px;
    display: block;
    width: fit-content;
    margin: 0 auto;
  }
  
  .service__item + .service__item::before {
    content: "";
    background: #EBEBEC;
    display: block;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -1px;
    z-index: 10;
  }

  .service__itemDescription {
    margin-top: 24px;
  }

  .service__annotation {
    font-size: 14px;
    line-height: 1.8;
  }

  .service__link {
    margin-top: 64px;
  }
}

.case__price {
  background: #F5F5F5;
  position: relative;
}

.case__price::before {
  content: "";
  background: url("../img/icon-price.svg") no-repeat center / contain;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.case__annotationList {
  font-size: 12px;
  list-style-type: disc;
  margin-top: 24px;
  list-style: none;
}

.case__annotationItem {
  padding-left: 18px; 
  position: relative;
}

.case__annotationItem::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 1000px) {
  .case__annotationList {
    font-size: 14px;
    line-height: 1.8;
  }
}

.mainCase__list {
  margin-top: 48px;
}

.mainCase__item {
  position: relative;
}

.mainCase__item + .mainCase__item {
  margin-top: 40px;
}

.mainCase__itemCategory {
  position: absolute;
  top: 4px;
  left: 4px;
  font-size: 14px;
}

.mainCase__itemName {
  font-size: 22px;
  font-weight: bold;
  margin-top: 16px;
  text-align: center;
}

.mainCase__itemDescription {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 16px;
}

.mainCase__itemPrice {
  padding: 4px 8px 6px 32px;
  font-size: 14px;
  margin-top: 16px;
}

.mainCase__itemPrice::before {
  left: 8px;
}

@media screen and (min-width: 1000px) {
  .mainCase__list {
    margin-top: 64px;
  }

  .mainCase__item {
    align-items: center;
    display: grid;
    grid-template-columns: 49.0196% 1fr;
    gap: 104px;
  }

  .mainCase__item + .mainCase__item {
    margin-top: 48px;
  }

  .mainCase__itemCategory {
    position: relative;
    top: unset;
    left: unset;
  }

  .mainCase__itemName {
    font-size: 26px;
    margin-top: 8px;
    text-align: left;
  }

  .mainCase__itemDescription {
    margin-top: 12px;
  }

  .mainCase__itemPrice {
    padding: 8px 12px 8px 46px;
    font-size: 14px;
    margin-top: 24px;
    display: inline-block;
  }
  
  .mainCase__itemPrice::before {
    width: 22px;
    height: 22px;
    left: 12px;
  }
}

.subCase__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 40px;
}

.subCase__item {
  border-bottom: 1px solid #D8D8D9;
  display: flex;
  flex-direction: column;
}

.subCase__item:nth-of-type(2n+1) {
  padding: 16px 14px 15px 5px;
  border-right: 1px solid #D8D8D9;
}

.subCase__item:nth-of-type(2n) {
  padding: 16px 5px 15px 15px;
}

.subCase__item:nth-of-type(9) {
  border-bottom: none;
}

.subCase__itemCategory {
  font-size: 10px;
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.subCase__itemName {
  margin-top: 12px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

.subCase__itemInclude {
  color: #6D6D72;
  font-size: 12px;
  margin-top: 2px;
  text-align: center;
}

.subCase__price {
  padding: 4px 4px 4px 30px;
  font-size: 14px;
  display: flex;
  align-items: center;
  margin-top: 12px;
  flex: 1;
}

.subCase__item:nth-of-type(1) .subCase__price,
.subCase__item:nth-of-type(4) .subCase__price {
  margin-top: 33px;
}

.subCase__price::before {
  left: 8px;
}

@media screen and (min-width: 1000px) {
  .subCase__list {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 48px;
  }

  .subCase__item {
    align-items: center;
    border-bottom: none;
    border-top: 1px solid #D8D8D9;
    border-right: 1px solid #D8D8D9;
  }

  .subCase__item:nth-of-type(2n+1),
  .subCase__item:nth-of-type(2n) {
    padding: 24px 0 23px;
  }

  .subCase__item:nth-of-type(3n+1) {
    border-left: 1px solid #D8D8D9;
  }
  
  .subCase__price {
    flex: 0;
  }

  .subCase__price::before {
    left: 4px;
    width: 17px;
    height: 17px;
  }

  .subCase__item:nth-of-type(1) .subCase__price,
  .subCase__item:nth-of-type(4) .subCase__price {
    margin-top: 12px;
  }

  .subCase__item:nth-of-type(7),
  .subCase__item:nth-of-type(8),
  .subCase__item:nth-of-type(9) {
    border-bottom: 1px solid #D8D8D9;
  }

  .subCase__itemCategory {
    font-size: 12px;
  }

  .subCase__itemName {
    font-size: 18px;
    margin-top: 20px;
  }

  .subCase__itemInclude {
    font-size: 14px;
  }
}

/* ====================================
 * step
==================================== */
.step__list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px 24px;
}

.step__itemText {
  padding: 13px 15px 0;
}

.step__itemNum {
  color: #7F0019;
  font-size: 27px;
  font-weight: bold;
}

.step__itemHeading {
  font-size: 18px;
  font-weight: bold;
}

.step__itemDescription {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 6px;
}

@media screen and (min-width: 1000px) {
  .step__list {
    grid-template-columns: repeat(3, 1fr);
  }

  .step__itemText {
    padding: 11px 0 0;
  }
}

.area {
  border: 1px solid #EBEBEC;
  padding: 28px 15px;
  max-width: 808px;
  margin: 48px auto 0;
}

.area__heading {
  font-weight: bold;
  font-size: 16px;
  text-align: center;
}

.area__list {
  margin-top: 27px;
}

.area__item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 8px;
  font-size: 14px;
  line-height: 1.8;
}

.area__item + .area__item {
  margin-top: 12px;
}

.area__item dt {
  padding-right: 1rem;
  position: relative;
}

.area__item dt::after {
  content: "：";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}

.area__annotation {
  text-align: right;
  margin-top: 2px;
  font-size: 12px;
}

.area__linkWrap {
  margin-top: 20px;
  text-align: center;
}

.area__link {
  display: inline-block;
  font-size: 14px;
  text-decoration: underline;
  padding-right: 24px;
  position: relative;
}

.area__link::after {
  content: "";
  background: url("../img/icon-arrow-right.svg") no-repeat center / contain;
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

@media screen and (min-width: 1000px) {
  .area {
    padding: 28px 48px;
  }

  .area__annotation {
    font-size: 14px;
  }
}

/* ====================================
 * cta
==================================== */
.cta {
  background: #F5F5F5;
  margin-top: 48px;
  padding: 40px 0;
}

.cta__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  max-width: 1016px;
  margin-inline: auto;
}

.cta__item:first-of-type {
  padding-bottom: 32px;
  position: relative;
}

.cta__item:first-of-type::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #D8D8D9;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}

.cta__item:nth-of-type(2) {
  padding-top: 32px;
}

.cta__head {
  align-items: center;
  display: flex;
  text-align: center;
  justify-content: center;
  gap: 24px;
  font-size: 18px;
  font-weight: bold;
}

.cta__description {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 12px;
}

.cta__link {
  background: #3c3c43;
  border-radius: 4px;
  color: #fff;
  display: block;
  text-align: center;
  width: 240px;
  max-width: 100%;
  margin: 24px auto 0;
  padding: 16px 20px;
}

@media screen and (min-width: 1000px) {
  .cta {
    margin-top: 64px;
    padding: 24px 0;
  }

  .cta__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta__item {
    align-items: center;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 12px;
  }
  
  .cta__item:first-of-type {
    padding: 24px 48px 24px 0;
  }
  
  .cta__item:first-of-type::after {
    content: "";
    width: 1px;
    height: 100%;
    bottom: unset;
    left: unset;
    right: -1px;
    top: 0;
  }
  
  .cta__item:nth-of-type(2) {
    padding: 24px 0 24px 48px;
  }

  .cta__item:nth-of-type(2) .cta__head {
    align-items: flex-start;
    min-height: 40px;
  }

  .cta__description {
    margin-top: 0;
  }

  .cta__link {
    margin-top: auto;
    margin-top: 12px;
  }
}

/* ====================================
 * about
==================================== */
.about__problems {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 15px;
  margin-top: 24px;
  padding-bottom: 64px;
  position: relative;
}

.about__problems::after {
  content: "";
  background: #F5F5F5;
  display: block;
  width: 110px;
  height: 30px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.about__problem {
  font-size: 14px;
  line-height: 1.8;
  position: relative;
  text-align: center;
  width: 165px;
  max-width: calc((100% - 15px) / 2);
}

.about__problem::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.about__problem:nth-of-type(1) {
  background: url("../img/bg1.svg") no-repeat center / contain;
  padding: 36px 20px 24px;
}

.about__problem:nth-of-type(2) {
  background: url("../img/bg2.svg") no-repeat center / contain;
  padding: 24px 20px;
}

.about__problem:nth-of-type(3) {
  background: url("../img/bg3.svg") no-repeat center / contain;
  padding: 36px 20px 24px;
}

.about__concept {
  text-align: center;
  margin-top: 32px;
  font-size: 18px;
  font-weight: bold;
}

.about__img {
  margin-top: 24px;
}

.about__text {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 48px;
}

.about__links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px 24px;
  margin-top: 20px;
}

.about__link {
  border-radius: 4px;
  border: 1px solid #C4C4C6;
  color: #3c3c43;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 19px;
}

.about__link .u-font_helvetica {
  font-size: 20px;
}

@media screen and (min-width: 1000px) {
  .about__problems {
    align-items: flex-end;
    gap: 0 24px;
  }
  
  .about__problem {
    font-size: 16px;
    width: 184px;
    max-width: calc((100% - 48px) / 3);
  }
  
  .about__problem:nth-of-type(1) {
    background: url("../img/bg1-desktop.svg") no-repeat center / contain;
    padding: 40px 24px 24px;
  }
  
  .about__problem:nth-of-type(2) {
    background: url("../img/bg2-desktop.svg") no-repeat center / contain;
    padding: 28px 24px;
  }
  
  .about__problem:nth-of-type(3) {
    background: url("../img/bg3-desktop.svg") no-repeat center / contain;
    padding: 40px 24px 24px;
  } 

  .about__concept {
    font-size: 22px;
    margin-top: 51px;
    line-height: 1.8;
  }

  .about__text {
    text-align: center;
    font-size: 16px;
    margin-top: 64px;
  }

  .about__links {
    grid-template-columns: repeat(2, 1fr);
    max-width: 764px;
    margin: 40px auto 0;
  }
}

.u-pageTop {
  box-sizing: border-box;
  opacity: 0;
  margin: 0 auto;
  max-width: 95%;
  position: fixed;
  right: 2.5%;
  bottom: 50px;
  z-index: 10;
  transition: opacity 0.6s;
}
@media screen and (min-width: 751px) {
  .u-pageTop {
    cursor: pointer;
  }
}
.u-pageTop[data-is-show=false] {
  opacity: 0;
  visibility: hidden;
}
.u-pageTop[data-is-show=true] {
  opacity: 0.6;
  visibility: visible;
}
.u-pageTop[data-is-fixed=true] {
  position: absolute;
  bottom: 0;
}
.u-pageTop_text {
  box-sizing: border-box;
  background: rgb(255, 255, 255);
  border: 1px solid #9D9DA0;
  color: #76767B;
  display: block;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  height: 50px;
  margin-left: auto;
  padding: 24px 8px 4px;
  text-align: center;
  width: 50px;
  position: relative;
}
.u-pageTop_text::before {
  content: "";
  border-top: solid 2px #76767B;
  border-right: solid 2px #76767B;
  height: 10px;
  transform: rotate(-45deg);
  width: 10px;
  position: absolute;
  top: 10px;
  left: 18px;
}
