@charset "utf-8";

/* Layout Widths */

.w1000 {
  max-width: 1000px;
}

.w800 {
  max-width: 800px;
}

.w600 {
  max-width: 600px;
}

.w200 {
  max-width: 200px;
}

.w120 {
  max-width: 120px;
}

/* Layout height */

.h40 {
  height: 40px;
}

/* Font Sizes */

.font80 {
  font-size: 80%;
}

.font92 {
  font-size: 92%;
}

.font120,
.font140,
.font160 {
  font-weight: 500;
}

.font120 {
  font-size: 120%;
}

.font140 {
  font-size: 140%;
}

.font160 {
  font-size: 160%;
}

.font180 {
  font-size: 180%;
  font-weight: 600;
}

/* letter spacing */

.ja_spacing {
  letter-spacing: 1em;
}

.ja_spacing_reset {
  letter-spacing: 0;
}


/* Margin & Padding Utilities */

.m_top_0 {
  margin-top: 0;
}

.m_top_10 {
  margin-top: 10px;
}

.m_top_20 {
  margin-top: 20px;
}

.m_top_40 {
  margin-top: 40px;
}

.m_top_80 {
  margin-top: 80px;
}

.m_bottom_12 {
  margin-bottom: 12px;
}

.m_bottom_20 {
  margin-bottom: 20px;
}

.m_bottom_40 {
  margin-bottom: 40px;
}

.m_bottom_80 {
  margin-bottom: 80px;
}

.m_20 {
  margin: 20px;
}

.m_reset {
  margin: 0;
}

.p_top_0 {
  padding-top: 0;
}

.p_top_20 {
  padding-top: 20px;
}

.p_reset {
  padding: 0;
}

/* Box Layouts */

.box_30,
.box_50,
.box_70,
.box_80 {
  text-align: justify;
}

.box_30 {
  width: 30%;
  padding: 20px;
}

.box_50 {
  width: 50%;
}

.box_70 {
  width: 70%;
  padding: 20px;
}

.box_80 {
  width: 80%;
  padding: 20px;
  margin: auto;
}

.box_prof {
  width: 200px;
  margin: 0 auto;
}

.box_prof2 {
  width: calc(100% - 200px);
}

/* Responsive Images */

.box_20 img,
.box_30 img,
.box_50 img,
.box_70 img,
.box_prof img {
  max-width: 100%;
  height: auto;
}

/* color */

.bk {
  color: #000;
}

/* Media Queries */

@media screen and (max-width: 500px) {
  .w_narrow {
    max-width: 420px;
  }
}

@media screen and (max-width: 600px) {
  .w600 {
    width: 80%;
  }
}

@media screen and (max-width: 860px) {
  .w800 {
    width: 100%;
  }
}

@media screen and (max-width: 1000px) {
  .box_30 {
    width: 100%;
    text-align: center;
  }

  .box_30 img {
    width: 68%;
  }

  .box_70 {
    width: 100%;
    margin: 20px 0 0;
  }

  .box_50,
  .box_prof2 {
    width: 100%;
  }
}