/* ======================================================================

 utility.css

====================================================================== */
/* =================================
 layout
================================= */
.u_cf:after {
  display: block;
  clear: both;
  content: "";
}

@media screen and (min-width: 768px) {
  .u_pc {
    display: block;
  }
  .u_pc_i {
    display: inline;
  }
  .u_pc_ib {
    display: inline-block;
  }
  .u_pc_f {
    display: flex;
  }
  .u_pc_if {
    display: inline-flex;
  }
  .u_tb {
    display: block;
  }
  .u_sp {
    display: none;
  }
  .u_sp_i, .u_sp_ib, .u_sp_f, .u_sp_if {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .u_tb {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u_pc {
    display: none;
  }
  .u_pc_i, .u_pc_ib, .u_pc_f, .u_pc_if {
    display: none;
  }
  .u_sp {
    display: block;
  }
  .u_sp_i {
    display: inline;
  }
  .u_sp_ib {
    display: inline-block;
  }
  .u_sp_f {
    display: flex;
  }
  .u_sp_if {
    display: inline-flex;
  }
}
/* =================================
 content_size
================================= */
.u_content_size {
  padding: 0;
  margin: 0 auto;
  width: 1100px;
}

.u_content_2 {
  padding: 0 63px;
}

.u_content_3 {
  padding: 0;
  margin: 0 auto;
  width: 1200px;
}

.u_content_4 {
  padding: 0;
  margin: 0 auto;
  width: 780px;
}

.u_content_5 {
  padding: 0;
  margin: 0 auto;
  width: 1060px;
}

.u_content_6 {
  padding: 0;
  width: 850px;
}

.u_content_7 {
  padding: 0;
  margin: 0 auto;
  width: 900px;
}

@media screen and (max-width: 1200px) {
  .u_content_3 {
    width: 100%;
    padding: 0 20px;
  }
  .u_content_4 {
    width: 100%;
  }
}
@media screen and (max-width: 1100px) {
  .u_content_size {
    width: 100%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 1060px) {
  .u_content_5 {
    width: 100%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 900px) {
  .u_content_7 {
    width: 100%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .u_content_size {
    width: 100%;
    padding: 0 20px;
  }
}
/* =================================
 text weight
================================= */
.u_lighter {
  font-weight: lighter;
}

.u_bold {
  font-weight: bold;
}

/* =================================
 text set
================================= */
.u_txt_1 {
  font-size: 16px;
  line-height: 2;
}
.u_txt_1 .highlight {
  font-weight: var(--font-bold);
}

/* =================================
 hover animation
================================= */
.u_link_1,
.u_link_1:link,
.u_link_1:visited {
  display: inline-flex;
  align-items: center;
  color: var(--color-accounting-sub);
  border-bottom: 1px solid var(--color-accounting-sub);
  line-height: 1;
}
.u_link_1::after,
.u_link_1:link::after,
.u_link_1:visited::after {
  content: "";
  display: block;
  position: relative;
  width: 12px;
  height: 12px;
  margin: 0 0 0 4px;
  background-image: url("../../assets/img/common/icon_outlink.svg");
  background-size: cover;
  background-repeat: no-repeat;
  transition: background 0.3s;
}

@media screen and (min-width: 768px) {
  .u_link_1:hover {
    border-bottom: 1px solid transparent;
  }
}
.u_link_2,
.u_link_2:link,
.u_link_2:visited {
  color: var(--color-accounting-sub);
  border-bottom: 1px solid var(--color-accounting-sub);
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .u_link_2:hover,
  .u_link_2:link:hover,
  .u_link_2:visited:hover {
    border-bottom: none;
  }
}
/* =================================
 text align
================================= */
.u_ta_c {
  text-align: center;
}

.u_ta_r {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .u_ta_cl {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .u_ta_lc {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .u_ta_cr {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .u_ta_cr {
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .u_ta_rc {
    text-align: right;
  }
}
@media screen and (min-width: 768px) {
  .u_ta_rc {
    text-align: center;
  }
}
/* =================================
 hover animation
================================= */
.u_hover_1 {
  transition: opacity 0.3s;
}

@media screen and (min-width: 1025px) {
  .u_hover_1:hover {
    opacity: 0.7;
  }
}