@charset "utf-8";

/* 背景色 */
.u-bgClr--white {
  background-color: #fff;
}

.u-bgClr--gray {
  background-color: #89898975;
}

/* 文字色 */
.u-txtClr--white {
  color: #fff;
}

/* flex */
.u-flx {
  display: -webkit-flex !important;
  display: flex !important;
  -webkit-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}
.u-flxRev {
  display: -webkit-flex !important;
  display: flex !important;
  -webkit-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
  -webkit-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}
.u-flxSta {
  display: -webkit-flex !important;
  display: flex !important;
  -webkit-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
  -webkit-align-items: flex-start !important;
  align-items: flex-start !important;
}
.u-flxCnt {
  display: -webkit-flex !important;
  display: flex !important;
  -webkit-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
  -webkit-justify-content: center !important;
  justify-content: center !important;
}
.u-flxMid {
  display: -webkit-flex !important;
  display: flex !important;
  -webkit-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
  -webkit-align-items: center;
  align-items: center;
}
.u-flxNoWrap {
  -webkit-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}
.u-flxAro {
  display: -webkit-flex !important;
  display: flex !important;
  -webkit-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
  -webkit-justify-content: space-around !important;
  justify-content: space-around !important;
}
.u-flxBet {
  display: -webkit-flex !important;
  display: flex !important;
  -webkit-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
  -webkit-justify-content: space-between !important;
  justify-content: space-between !important;
}
.u-flxEnd {
  display: -webkit-flex !important;
  display: flex !important;
  -webkit-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
  -webkit-justify-content: flex-end !important;
  justify-content: flex-end !important;
}
.u-flxScr {
  display: flex;
  display: -webkit-flex;
  overflow-y: hidden;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}
.u-flxAEnd {
  display: -webkit-flex !important;
  display: flex !important;
  -webkit-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
  -webkit-align-items: flex-end !important;
  align-items: flex-end !important;
}
.u-flxDirCol {
  display: -webkit-flex !important;
  display: flex !important;
  -webkit-flex-direction: column !important;
  flex-direction: column !important;
}
.u-flxDirColR {
  -webkit-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}
.u-inFlx {
  display: -webkit-inline-flex !important;
  display: inline-flex !important;
  -webkit-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}
.u-jusConCen {
  justify-content: center;
}
.u-aConfSta {
  align-content: flex-start;
}
.u-aConCen {
  align-content: center;
}
.u-aItemCen {
  align-items: center;
}
.u-aSelfSta {
  align-self: flex-start;
}
.u-aItemSta {
  align-items: flex-start;
}
.u-aSelfEnd {
  align-self: flex-end;
}
.u-aItemEnd {
  align-items: flex-end;
}
.u-aItemBas {
  align-items: baseline;
}
.u-aSelfBas {
  align-self: baseline;
}

/* margin */
.u-m0 {
  margin: 0rem !important;
}
.u-m025 {
  margin: 0.25rem !important;
}
.u-m05 {
  margin: 0.5rem !important;
}
.u-m075 {
  margin: 0.75rem !important;
}
.u-m1 {
  margin: 1rem !important;
}
.u-m15 {
  margin: 1.5rem !important;
}
.u-m2 {
  margin: 2rem !important;
}
.u-m25 {
  margin: 2.5rem !important;
}
.u-m3 {
  margin: 3rem !important;
}

.u-mT05 {
  margin-top: 0.5rem;
}
.u-mT075 {
  margin-top: 0.75rem;
}
.u-mT1 {
  margin-top: 1rem;
}
.u-mT15 {
  margin-top: 1.5rem;
}
.u-mT2 {
  margin-top: 2rem;
}
.u-mT3 {
  margin-top: 3rem;
}
.u-mT4 {
  margin-top: 4rem;
}
.u-mT5 {
  margin-top: 5rem;
}
.u-mT6 {
  margin-top: 6rem;
}
.u-mT7 {
  margin-top: 7rem;
}
.u-mT8 {
  margin-top: 8rem;
}
.u-mT9 {
  margin-top: 9rem;
}
.u-mT10 {
  margin-top: 10rem;
}

.u-mB1 {
  margin-bottom: 1rem;
}
.u-mB2 {
  margin-bottom: 2rem;
}
.u-mB3 {
  margin-bottom: 3rem;
}
.u-mB4 {
  margin-bottom: 4rem;
}
.u-mB5 {
  margin-bottom: 5rem;
}
.u-mB6 {
  margin-bottom: 6rem;
}
.u-mB7 {
  margin-bottom: 7rem;
}
.u-mB8 {
  margin-bottom: 8rem;
}
.u-mB9 {
  margin-bottom: 9rem;
}
.u-mB10 {
  margin-bottom: 10rem;
}

.u-mL05 {
  margin-left: 0.5rem;
}

.u-mL1 {
  margin-left: 1rem;
}
.u-mR1 {
  margin-right: 1rem;
}

.u-mW1 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.u-mA {
  margin: auto !important;
}
.u-mWA {
  margin-left: auto !important;
  margin-right: auto !important;
}
.u-mW5 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}
.u-mAT {
  margin-top: auto !important;
}
.u-mAB {
  margin-bottom: auto !important;
}
.u-mAL {
  margin-left: auto !important;
}
.u-mAR {
  margin-right: auto !important;
}

/* padding */
.u-p0 {
  padding: 0 !important;
}
.u-p025 {
  padding: 0.25rem !important;
}
.u-p05 {
  padding: 0.5rem !important;
}
.u-p075 {
  padding: 0.75rem !important;
}
.u-p1 {
  padding: 1rem !important;
}
.u-p15 {
  padding: 1.5rem !important;
}
.u-p2 {
  padding: 2rem !important;
}
.u-p25 {
  padding: 2.5rem !important;
}
.u-p3 {
  padding: 3rem !important;
}
.u-p4 {
  padding: 4rem !important;
}
.u-p5 {
  padding: 5rem !important;
}

.u-pT0 {
  padding-top: 0 !important;
}
.u-pT025 {
  padding-top: 0.25rem !important;
}
.u-pT05 {
  padding-top: 0.5rem !important;
}
.u-pT075 {
  padding-top: 0.75rem !important;
}
.u-pT1 {
  padding-top: 1rem !important;
}
.u-pT15 {
  padding-top: 1.5rem !important;
}
.u-pT2 {
  padding-top: 2rem !important;
}
.u-pT25 {
  padding-top: 2.5rem !important;
}
.u-pT3 {
  padding-top: 3rem !important;
}
.u-pT4 {
  padding-top: 4rem !important;
}
.u-pT5 {
  padding-top: 5rem !important;
}
.u-pT6 {
  padding-top: 6rem !important;
}
.u-pT7 {
  padding-top: 7rem !important;
}
.u-pT8 {
  padding-top: 8rem !important;
}
.u-pT9 {
  padding-top: 9rem !important;
}
.u-pT10 {
  padding-top: 10rem !important;
}
.u-pT11 {
  padding-top: 11rem !important;
}
.u-pT12 {
  padding-top: 12rem !important;
}

.u-pB0 {
  padding-bottom: 0 !important;
}
.u-pB025 {
  padding-bottom: 0.25rem !important;
}
.u-pB05 {
  padding-bottom: 0.5rem !important;
}
.u-pB075 {
  padding-bottom: 0.75rem !important;
}
.u-pB0 {
  padding-bottom: 0rem !important;
}
.u-pB1 {
  padding-bottom: 1rem !important;
}
.u-pB15 {
  padding-bottom: 1.5rem !important;
}
.u-pB2 {
  padding-bottom: 2rem !important;
}
.u-pB25 {
  padding-bottom: 2.5rem !important;
}
.u-pB3 {
  padding-bottom: 3rem !important;
}
.u-pB4 {
  padding-bottom: 4rem !important;
}
.u-pB5 {
  padding-bottom: 5rem !important;
}
.u-pB6 {
  padding-bottom: 6rem !important;
}
.u-pB7 {
  padding-bottom: 7rem !important;
}
.u-pB8 {
  padding-bottom: 8rem !important;
}
.u-pB9 {
  padding-bottom: 9rem !important;
}
.u-pB10 {
  padding-bottom: 10rem !important;
}
.u-pB11 {
  padding-bottom: 11rem !important;
}
.u-pB12 {
  padding-bottom: 12rem !important;
}

.u-pLR0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
} /*追加*/

.u-pL0 {
  padding-left: 0 !important;
}
.u-pL025 {
  padding-left: 0.25rem !important;
}
.u-pL05 {
  padding-left: 0.5rem !important;
}
.u-pL075 {
  padding-left: 0.75rem !important;
}
.u-pL1 {
  padding-left: 1rem !important;
}
.u-pL15 {
  padding-left: 1.5rem !important;
}
.u-pL2 {
  padding-left: 2rem !important;
}
.u-pL25 {
  padding-left: 2.5rem !important;
}
.u-pL3 {
  padding-left: 3rem !important;
}
.u-pL4 {
  padding-left: 4rem !important;
}
.u-pL5 {
  padding-left: 5rem !important;
}
.u-pL6 {
  padding-left: 6rem !important;
}
.u-pL7 {
  padding-left: 7rem !important;
}
.u-pL8 {
  padding-left: 8rem !important;
}
.u-pL9 {
  padding-left: 9rem !important;
}
.u-pL10 {
  padding-left: 10rem !important;
}
.u-pL11 {
  padding-left: 11rem !important;
}
.u-pL12 {
  padding-left: 12rem !important;
}

.u-pR0 {
  padding-right: 0 !important;
}
.u-pR025 {
  padding-right: 0.25rem !important;
}
.u-pR05 {
  padding-right: 0.5rem !important;
}
.u-pR075 {
  padding-right: 0.75rem !important;
}
.u-pR1 {
  padding-right: 1rem !important;
}
.u-pR15 {
  padding-right: 1.5rem !important;
}
.u-pR2 {
  padding-right: 2rem !important;
}
.u-pR25 {
  padding-right: 2.5rem !important;
}
.u-pR3 {
  padding-right: 3rem !important;
}
.u-pR4 {
  padding-right: 4rem !important;
}
.u-pR5 {
  padding-right: 5rem !important;
}
.u-pR6 {
  padding-right: 6rem !important;
}
.u-pR7 {
  padding-right: 7rem !important;
}
.u-pR8 {
  padding-right: 8rem !important;
}
.u-pR9 {
  padding-right: 9rem !important;
}
.u-pR10 {
  padding-right: 10rem !important;
}
.u-pR11 {
  padding-right: 11rem !important;
}
.u-pR12 {
  padding-right: 12rem !important;
}

.u-pW025 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}
.u-pW05 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}
.u-pW075 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}
.u-pW1 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.u-pW15 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
.u-pW2 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}
.u-pW25 {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}
.u-pW3 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}
.u-pW4 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}
.u-pW5 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}
.u-pW6 {
  padding-left: 6rem !important;
  padding-right: 6rem !important;
}
.u-pW7 {
  padding-left: 7rem !important;
  padding-right: 7rem !important;
}
.u-pW8 {
  padding-left: 8rem !important;
  padding-right: 8rem !important;
}
.u-pW9 {
  padding-left: 9rem !important;
  padding-right: 9rem !important;
}
.u-pW10 {
  padding-left: 10rem !important;
  padding-right: 10rem !important;
}

.u-pTB0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.u-pTB025 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.u-pTB05 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.u-pTB075 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}
.u-pTB1 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.u-pTB15 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.u-pTB2 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
.u-pTB25 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}
.u-pTB3 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.u-pTB4 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}
.u-pTB5 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}
.u-pTB6 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}
.u-pTB7 {
  padding-top: 7rem !important;
  padding-bottom: 7rem !important;
}
.u-pTB8 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}
.u-pTB9 {
  padding-top: 9rem !important;
  padding-bottom: 9rem !important;
}
.u-pTB10 {
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
}

/* u-w* 幅 */
.u-wA {
  width: auto !important;
}
.u-wAuto {
  width: auto !important;
}
.u-w5 {
  width: 5% !important;
}
.u-w10 {
  width: 10% !important;
}
.u-w15 {
  width: 15% !important;
}
.u-w18 {
  width: 18% !important;
}
.u-w20 {
  width: 20% !important;
}
.u-w25 {
  width: 25% !important;
}
.u-w30 {
  width: 30% !important;
}
.u-w31 {
  width: 31% !important;
}
.u-w32 {
  width: 32% !important;
}
.u-w33 {
  width: 33.33% !important;
}
.u-w35 {
  width: 35% !important;
}
.u-w40 {
  width: 40% !important;
}
.u-w45 {
  width: 45% !important;
}
.u-w48 {
  width: 48% !important;
}
.u-w49 {
  width: 49% !important;
}
.u-w50 {
  width: 50% !important;
}
.u-w55 {
  width: 55% !important;
}
.u-w60 {
  width: 60% !important;
}
.u-w65 {
  width: 65% !important;
}
.u-w66 {
  width: 66.6% !important;
}
.u-w70 {
  width: 70% !important;
}
.u-w75 {
  width: 75% !important;
}
.u-w80 {
  width: 80% !important;
}
.u-w85 {
  width: 85% !important;
}
.u-w90 {
  width: 90% !important;
}
.u-w95 {
  width: 95% !important;
}
.u-w97 {
  width: 97% !important;
}
.u-w100 {
  width: 100% !important;
}
.u-w100vw {
  width: 100vw !important;
}

/* u-mxW* max-width */
.u-mxW10 {
  max-width: 10% !important;
}
.u-mxW20 {
  max-width: 20% !important;
}
.u-mxW30 {
  max-width: 30% !important;
}
.u-mxW40 {
  max-width: 40% !important;
}
.u-mxW50 {
  max-width: 50% !important;
}
.u-mxW60 {
  max-width: 60% !important;
}
.u-mxW70 {
  max-width: 70% !important;
}
.u-mxW80 {
  max-width: 80% !important;
}
.u-mxW90 {
  max-width: 90% !important;
}
.u-mxW100 {
  max-width: 100% !important;
}

/* u-txt　テキストアライン　*/
.u-txtC {
  text-align: center !important;
}
.u-txtR {
  text-align: right !important;
}
.u-txtL {
  text-align: left !important;
}

/* u-fos フォントサイズ（2021年7月～） */
.u-fos3L {
  font-size: 2.4rem;
}
.u-fos2L {
  font-size: 2rem;
}
.u-fosL {
  font-size: 1.6rem;
}
.u-fosM {
  font-size: 1.4rem;
}
.u-fosS {
  font-size: 1.3rem;
}
.u-fos2S {
  font-size: 1.2rem;
}
.u-fos3S {
  font-size: 1.1rem;
}

/* u-fs フォントサイズ（旧） */
.u-fs9L {
  font-size: 3rem !important;
}
.u-fs8L {
  font-size: 2.8rem;
}
.u-fs7L {
  font-size: 2.6rem;
}
.u-fs6L {
  font-size: 2.5rem !important;
}
.u-fs12L {
  font-size: 2.4rem !important;
}
.u-fs5L {
  font-size: 2.3rem !important;
}
.u-fs4L {
  font-size: 2.1rem !important;
}
.u-fs3L {
  font-size: 1.9rem !important;
}
.u-fs2L {
  font-size: 1.5rem !important;
}
.u-fsL {
  font-size: 1.5rem !important;
}
.u-fsM {
  font-size: 1.4rem !important;
}
.u-fsS {
  font-size: 1.2rem !important;
}
.u-fs2S {
  font-size: 1.1rem !important;
}
.u-fs3S {
  font-size: 1rem !important;
}
.u-fs4S {
  font-size: 0.8rem !important;
}
.u-fs5S {
  font-size: 0.75rem !important;
}


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

/* text-align */
.u-txtC {
  text-align: center;
}
.u-txtL {
  text-align: left;
}
.u-txtR {
  text-align: right;
}

ul > li {
  list-style: none;
}

a {
  text-decoration: none;
}

/* position */
.u-posRel {
  position: relative;
}

.u-posAbs {
  position: absolute;
}

.u-posSta {
  position: static;
}

.u-verA--top {
  vertical-align: top;
}

/* border-radius */
.u-borRad {
  border-radius: 5px;
}

.u-borRad--circle {
  border-radius: 23rem;
}

/* 非表示系 */
.u-overflow--hidden {
  overflow: hidden;
}

.u-hidden {
  display: none;
}

.u-blk{
  display: block;
}

/* 行間 */
.u-lh15{
  line-height: 1.5;
}