html {
  box-sizing: border-box;
  overflow-y: scroll;
  font-size: 62.5%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

section, article, main, aside, nav, header, footer, figure, figcaption, picture {
  display: block;
}

audio, canvas, video {
  display: inline-block;
}

div, section, article, main, aside, nav, header, footer,
video, canvas, audio,
h1, h2, h3, h4, h5,
p, a, span, address, time,
img, figure, figcaption,
li, dl, dt, dd,
form, fieldset, textarea, input,
iframe, blockquote, q,
table, caption, tbody, tfoot, thead, th, td {
  border: 0;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5 {
  font-weight: normal;
}

body {
  background: #fdf7d7;
  min-height: 100vh;
  margin: 0;
  color: #333333;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Yu Gothic", "YuGothic", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 1.6em;
  line-height: 1;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

figcaption {
  margin-top: 0.25em;
  font-size: 0.875em;
}

fieldset, img {
  border: 0;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

ul[class], ol[class] {
  list-style: none;
}

caption, em, address {
  font-style: normal;
}

small {
  font-size: 100%;
}

sup, sub {
  position: relative;
  margin: 0 1px 0 0;
  font-size: 0.75em;
  line-height: 0;
}

a {
  background: transparent;
  color: #333333;
  text-decoration: none;
  outline: 0;
}
a:hover img {
  opacity: 0.5;
}

header {
  background-color: white;
  width: 100%;
}

.header_inner {
  display: flex;
  align-items: center;
  max-width: 980px;
  height: 48px;
  margin: 0 auto;
  padding: 0 20px;
}
.header_inner h1 {
  width: 96px;
  margin-right: auto;
}
.header_inner p {
  font-size: 1rem;
  letter-spacing: 0.25px;
}
.header_inner p + p {
  border-left: 1px solid #333333;
  margin-left: 1em;
  padding: 0 0.25em 0 0.75em;
  font-size: 1.4rem;
  line-height: 32px;
}

@media screen and (max-width: 1040px) {
body {
  background-color: white;
}	
  .header_inner {
    flex-wrap: wrap;
    width: auto;
    height: 64px;
    padding: 10px 20px;
    color: black;
  }
  .header_inner h1 {
    order: 2;
    width: 78px;
  }
  .header_inner h1 + p {
    order: 1;
    width: 100%;
    padding-bottom: 8px;
    text-align: center;
  }
  .header_inner p + p {
    order: 3;
  }
  .header_inner ul {
    order: 4;
  }
  .header_inner p {
    font-size: 1rem;
  }
  .header_inner p + p {
    font-size: 1.4rem;
    line-height: 25px;
  }
}
header {
  background-color: #f5d942;
  height: 55px;
  z-index: 1;
}
header .inner {
  width: 1040px;
  margin: auto;
  position: relative;
}
header .inner .logo {
  position: absolute;
  left: 0;
  top: 14px;
  width: 81px;
}
header .inner .logo img {
  display: block;
  width: 100%;
}
header .inner .txt {
  position: absolute;
  left: 103px;
  top: 13px;
}
header .inner .txt p {
  font-size: 10px;
  line-height: 1.3;
  color: #333;
  margin: 0;
}
header .inner .txt p.pc {
  display: block;
}
header .inner .txt p.sp {
  display: none;
}
header .inner .right {
  float: right;
  padding-top: 6px;
}
header .inner .right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .inner .right li:first-child {
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  margin-right: 7px;
}
header .inner .right li:first-child p {
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  flex-flow: column;
}
header .inner .right li:nth-child(2) {
  margin-right: 12px;
}
header .inner .right li:nth-child(2) p {
  color: #fff;
  font-size: 14px;
  line-height: 1;
  margin-top: 3px;
}
header .inner .right li:nth-child(2) p span {
  font-size: 23px;
}
header .inner .right li:last-child {
  z-index: 3;
}
header .inner .right li:last-child a {
  width: 170px;
  height: 39px;
  display: block;
  position: relative;
  border-radius: 2px;
  background: #d73600;
  font-size: 15px;
  line-height: 39px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}
header .inner .right li:last-child a:hover {
  background-color: #b91400;
}
header .inner .right li:last-child a:hover::before {
  background: #d73600;
}
header .inner .right li:last-child a::before {
  content: "";
  background: #b91400;
  position: absolute;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 2px;
  z-index: -1;
}
@media screen and (max-width: 1040px) {
  header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2;
    height: 85px;
  }
  header .inner {
    width: 90%;
    height: 100%;
  }
  header .inner .txt {
    top: 50px;
    left: 0;
  }
  header .inner .right {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  header .inner .txt p {
    display: block;
    line-height: 1.4;
    font-size: 9px;
    padding-right: 10px;
  }
}

footer {
  background-color: #f5d942;
  margin-top: 60px;
}
footer .footer_inner {
  display: flex;
  align-items: center;
  width: 1040px;
  height: 80px;
  margin: auto;
}
footer .footer_inner p {
  width: 100%;
  color: #333;
  text-align: center;
  font-size: 1.1rem;
  line-height: 20px;
}

@media screen and (max-width: 1040px) {
  footer {
    padding: 20px 0;
  }
  footer .footer_inner {
    width: 90%;
    height: auto;
  }
  footer .footer_inner p {
    text-align: left;
    font-size: 1rem;
    line-height: 1.6;
  }
}
.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  margin: 30px auto;
}
.menu .memu_logo {
  font-size: 1.3rem;
}
.menu .memu_logo img {
  margin-bottom: 8px;
}
.menu .menu_nav {
  display: flex;
  font-size: 1.5rem;
}
.menu li a {
  position: relative;
  margin-left: 2.5em;
}
.menu li a::before {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -0.75em;
  transform: translateY(-50%);
  content: "";
  border: 8px solid transparent;
  border-left-color: #333333;
}
.menu li.top.current a::before, .menu li.top a:hover::before {
  border-left-color: #f5d941;
}
.menu li.bengo.current a::before, .menu li.bengo a:hover::before {
  border-left-color: #75b5a4;
}
.menu li.zeiri.current a::before, .menu li.zeiri a:hover::before {
  border-left-color: #ec6c81;
}
.menu li.shiho.current a::before, .menu li.shiho a:hover::before {
  border-left-color: #3a719a;
}
.menu li.tochi.current a::before, .menu li.tochi a:hover::before {
  border-left-color: #4d6ab9;
}

@media screen and (max-width: 1040px) {
  .menu {
    display: block;
    width: auto;
    margin: 85px 0 0;
    padding: 30px 0;
  }
  .menu .memu_logo {
    text-align: center;
  }
  .menu .menu_nav {
    display: none;
  }
}
#nav-toggle {
  display: none;
  position: fixed;
  top: 31px;
  right: 15px;
  height: 32px;
}

#nav-toggle > div {
  position: relative;
  width: 32px;
}

#nav-toggle span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #333;
  position: absolute;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}

#nav-toggle span:nth-child(2) {
  top: 11px;
}

#nav-toggle span:nth-child(3) {
  top: 22px;
}

#overlay {
  display: none;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 1040px) {
  #nav-toggle {
    display: block;
  }

  /* nav open */
  .open {
    overflow: hidden;
  }

  .open #overlay {
    display: block;
  }

  .open .spmenu {
    transform: translate3d(-300px, 0, 0);
  }

  /* #nav-toggle close */
  .open #nav-toggle span {
    background: #333333;
  }

  .open #nav-toggle span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
  }

  .open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }

  .open #nav-toggle span:nth-child(3) {
    top: 11px;
    transform: rotate(-45deg);
  }

  /* z-index */
  #overlay {
    z-index: 200;
  }

  #nav-toggle {
    z-index: 400;
  }
}
.spmenu {
  display: none;
}

@media screen and (max-width: 1040px) {
  .spmenu {
    display: block;
    position: fixed;
    right: -300px;
    top: 0;
    background-color: white;
    height: auto;
    height: 100vh;
    width: 300px;
    overflow-y: scroll;
    transition: 0.35s ease-in-out;
    z-index: 300;
  }
  .spmenu .inner {
    padding: 0 15px;
    overflow-y: scroll;
  }
  .spmenu .menu {
    display: block;
    margin: 70px auto;
    padding: 0;
  }
  .spmenu .side {
    display: block;
    float: none;
    width: auto;
  }
  .spmenu .side_title {
    height: 48px;
    font-size: 1.8rem;
  }
  .spmenu .side_nav {
    padding: 20px;
  }
  .spmenu .side_nav li a {
    height: 43px;
    margin-left: 0;
    font-size: 1.6rem;
    line-height: 41px;
  }
  .spmenu .side_nav li a::before {
    top: 50%;
    left: 1em;
    transform: translateY(-45%);
    content: "";
    border: 9px solid transparent;
    border-left-color: #f5d941;
  }
}
.side {
  display: block;
  float: left;
  width: 300px;
}

.side_title {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #005eb7;
  height: 56px;
  color: white;
  font-size: 1.9rem;
}

.side_nav {
  background-color: #f2f2f2;
  margin: 0;
  padding: 20px;
}
.side_nav li {
  margin-top: 10px;
}
.side_nav li:first-child {
  margin-top: 0;
}
.side_nav li a {
  display: block;
  position: relative;
  background-color: white;
  border: 1px solid #333333;
  border-radius: 5px;
  height: 50px;
  padding-left: 2em;
  font-size: 1.9rem;
  line-height: 48px;
}
.side_nav li a::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 1em;
  transform: translateY(-50%);
  content: "";
  border: 10px solid transparent;
  border-left-color: #f5d941;
}
.side_nav li a:hover {
  background-color: #333333;
  color: white;
}
.side_nav li.bengo a::before {
  border-left-color: #75b5a4;
}
.side_nav li.zeiri a::before {
  border-left-color: #ec6c81;
}
.side_nav li.shiho a::before {
  border-left-color: #3a719a;
}
.side_nav li.tochi a::before {
  border-left-color: #4d6ab9;
}

@media screen and (max-width: 1040px) {
  .side {
    display: none;
  }
}
main {
  width: 1040px;
  margin: 0 auto;
}
main::after {
  content: "";
  display: block;
  clear: both;
}

@media screen and (max-width: 1040px) {
  main {
    width: auto;
  }
}
article {
  float: right;
  width: 700px;
  margin-top: 40px;
  padding: 30px;
  background-color: white;
}

@media screen and (max-width: 1040px) {
  article {
    width: auto;
    margin-top: 0;
    padding: 0 15px;
  }
}
.catch_text {
  display: flex;
  justify-content: left;
  align-items: center;
  font-size: 2.2rem;
}
.catch_text span {
  display: inline-block;
  background-color: #f5d941;
  border-radius: 5px;
  padding: 0 1em;
}
.catch_text::before, .catch_text::after {
}
.bengoshi .catch_text span, .zeirishi .catch_text span, .shihoushoshi .catch_text span {
  color: white;
}
.bengoshi .catch_text span, .bengoshi .catch_text::before, .bengoshi .catch_text::after {
  background-color: #4aa88e;
}
.zeirishi .catch_text span, .zeirishi .catch_text::before, .zeirishi .catch_text::after {
  background-color: #ec6c81;
}
.shihoushoshi .catch_text span, .shihoushoshi .catch_text::before, .shihoushoshi .catch_text::after {
  background-color: #3a719a;
}
.tochikatsuyou .catch_text span, .tochikatsuyou .catch_text::before, .tochikatsuyou .catch_text::after {
  background-color: #4d6ab9;
}
.bengoshi .catch_text span,.zeirishi .catch_text span,.shihoushoshi .catch_text span,.tochikatsuyou .catch_text span {
  color: white;
}

@media screen and (max-width: 1040px) {
  .catch_text {
    justify-content: center;	  
    font-size: 1.8rem;
  }
  .catch_text span {
    padding: 0 0.75em;
  }
}
article h1 {
  margin-top: 20px;
  text-align: center;
  font-size: 4rem;
}
article h1 br {
  display: none;
}
article h2 {
  background-color: #333333;
  margin: 60px auto 20px;
  padding: 20px;
  color: white;
  font-size: 2.8rem;
  line-height: 1.357;
}
article h3 {
  border-left: 5px solid #f5d941;
  margin: 36px 0 18px;
  padding-left: 10px;
  font-size: 2.2rem;
}
article h3.number {
  position: relative;
  border: none;
  padding-left: 36px;
}
article h3.number span {
  display: block;
  position: absolute;
  left: 0;
  background-color: #f5d941;
  width: 27px;
  height: 27px;
  text-align: center;
  font-size: 1.8rem;
  line-height: 25px;
}
article p {
  line-height: 1.875;
}
article p + p {
  margin-top: 1.5em;
}
article em {
  color: #e02121;
}
article .uline {
  background-image: linear-gradient(transparent 60%, #ffec84 0%);
}

@media screen and (max-width: 1040px) {
  article h1 {
    font-size: 2.8rem;
    line-height: 1.357;
  }
  article h1 br {
    display: inline;
  }
  article h2 {
    margin: 60px -15px 20px;
    padding: 20px 15px;
    font-size: 2.1rem;
    line-height: 1.48;
  }
  article h3 {
    margin: 30px 0 18px;
    font-size: 1.8rem;
    line-height: 1.4;
  }
  article h3.number {
    position: relative;
    border: none;
    padding-left: 36px;
  }
  article h3.number span {
    display: block;
    position: absolute;
    left: 0;
    background-color: #f5d941;
    width: 27px;
    height: 27px;
    text-align: center;
    font-size: 1.8rem;
    line-height: 25px;
  }
  article p {
    font-size: 1.5rem;
  }
  article p + p {
    margin-top: 1.5em;
  }
  article em {
    color: #e02121;
  }
  article .uline {
    background-image: linear-gradient(transparent 60%, #ffec84 0%);
  }
}
.mainvisual {
  margin: 40px auto;
  text-align: center;
}

@media screen and (max-width: 1040px) {
  .mainvisual {
    margin-top: 20px;
  }
  .mainvisual + h2 {
    margin-top: 40px;
  }
}
.cta {
  margin: 30px auto 0;
  text-align: center;
}

.photo {
  background-color: #f2f2f2;
  margin-top: 24px;
  padding: 20px;
  text-align: center;
}

@media screen and (max-width: 1040px) {
  .photo {
    margin-top: 15px;
    padding: 10px;
  }
}
.service {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 10px;
  padding: 0;
}
.service li {
  width: 310px;
  margin-top: 20px;
}

@media screen and (max-width: 1040px) {
  .service {
    margin-top: -15px;
  }
  .service li {
    width: 49%;
    margin-top: 15px;
  }
  .service li img {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .service li {
    width: 100%;
  }
}
.cost {
  padding: 30px 20px;
}
.cost > div:first-of-type {
  margin-top: 0;
}
.cost.bengo {
  background-color: #e9f8f4;
}
.cost.bengo .cost_box {
  border-color: #83b3a5;
}
.cost.bengo h4 {
  color: #4aa88e;
}
.cost.bengo .number {
  background-color: #4aa88e;
}
.cost.zeiri {
  background-color: #ffeff1;
}
.cost.zeiri .cost_box {
  border-color: #ec6c81;
}
.cost.zeiri h4 {
  color: #ec6c81;
}
.cost.zeiri .number {
  background-color: #ec6c81;
}
.cost.shiho {
  background-color: #f1f7ff;
}
.cost.shiho .cost_box {
  border-color: #477096;
}
.cost.shiho h4 {
  color: #3a719a;
}
.cost.shiho .number {
  background-color: #3a719a;
}

@media screen and (max-width: 1040px) {
  .cost {
    margin-left: -15px;
    margin-right: -15px;
    padding: 20px 15px;
  }
  .cost + h3 {
    margin-top: 36px;
  }
}
h2 + .cost {
  margin-top: 30px;
}

.cost_box {
  display: flex;
  justify-content: space-between;
  background-color: white;
  border: 1px solid #f5d941;
  border-radius: 10px;
  margin-top: 20px;
  padding: 20px 30px 20px 25px;
}
.cost_box > div {
  width: 25%;
  flex-shrink: 0;
}
.cost_box h4 {
  position: relative;
  margin-bottom: 10px;
  padding-left: 30px;
  font-size: 1.8rem;
  color: #f5d941;
  letter-spacing: -1px;
  line-height: 1.3;
}
.cost_box .number {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f5d941;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  color: white;
  text-align: center;
  font-size: 1.3rem;
  letter-spacing: 0;
  line-height: 22px;
}
.cost_box p {
  width: 73%;
  font-size: 1.5rem;
  line-height: 1.667;
}
.cost_box .note {
  font-size: 1rem;
}

@media screen and (max-width: 1040px) {
  .cost_box {
    flex-direction: column;
    margin-top: 10px;
    padding: 20px 14px;
  }
  .cost_box > div {
    width: auto;
    text-align: center;
  }
  .cost_box h4 {
    display: flex;
    justify-content: center;
    position: static;
    padding-left: 0;
    font-size: 2rem;
    letter-spacing: 0;
    line-height: 1;
  }
  .cost_box .number {
    display: inline-block;
    position: static;
    margin-right: 8px;
  }
  .cost_box p {
    width: 100%;
    margin-top: 1em;
  }
  .cost_box .note {
    font-size: 1rem;
  }
}
.list_box {
  border: 5px solid #f5d941;
  margin: 20px 0;
  padding: 20px;
}
.list_box ul {
  margin: 0;
  padding-left: 1.5em;
}
.list_box li {
  font-size: 1.8rem;
  line-height: 1.75;
}

@media screen and (max-width: 1040px) {
  .list_box {
    border-width: 4px;
    padding: 10px;
  }
  .list_box li {
    font-size: 1.6rem;
  }
}
.list_company {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0 0 -12px;
  padding: 0;
}
.list_company li {
  width: 151px;
  margin: 0 0 12px 12px;
}
.list_company span {
  display: block;
  padding: 0 4px;
  font-size: 1.4rem;
  line-height: 1.43;
}
.list_company .company_logo {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #333333;
  border-radius: 5px;
  box-shadow: 0 3px 0 #333333;
  width: 151px;
  height: 90px;
  margin-bottom: 8px;
}

@media screen and (max-width: 1040px) {
  .list_company {
    justify-content: space-between;
    margin: 20px 0 0 0;
    padding: 0;
  }
  .list_company li {
    width: 48%;
    width: clamp(150px, 48%, 225px);
    margin: 0 0 12px 0;
  }
  .list_company .company_logo {
    width: 100%;
    height: 24vw;
    height: clamp(90px, 24vw, 135px);
  }
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  margin-top: 30px;
}

th,
td {
  padding: 10px;
  font-weight: normal;
}

th {
  color: white;
  vertical-align: center;
}

td {
  vertical-align: top;
  line-height: 1.625;
}

thead th {
  background-color: #333333;
  border-left: 1px solid white;
}
thead th:first-child {
  border-left-color: #333333;
  width: 22%;
}
thead th:last-child {
  width: 39%;
}

tbody th,
tbody td {
  border: 1px solid #333333;
}
tbody th {
  width: 6em;
  font-size: 2rem;
}
tbody ul {
  margin: 0;
  padding-left: 1.5em;
}
tbody .bengo th {
  background-color: #75b5a4;
}
tbody .bengo td {
  background-color: #e9f8f4;
}
tbody .zeiri th {
  background-color: #ec6c81;
}
tbody .zeiri td {
  background-color: #ffeff1;
}
tbody .shiho th {
  background-color: #3a719a;
}
tbody .shiho td {
  background-color: #f1f7ff;
}

@media screen and (max-width: 1040px) {
  table {
    font-size: 1.5rem;
  }
  table.tbl_feature {
    width: 100vw;
    margin-left: -15px;
    margin-right: -15px;
    font-size: 1.2rem;
  }
  table.tbl_feature thead th:first-child {
    width: 14%;
    padding-left: 3px;
    padding-right: 3px;
  }
  table.tbl_feature thead th:last-child {
    width: 45%;
  }
  table.tbl_feature tbody th {
    font-size: 1.6rem;
  }

  th,
td {
    padding: 10px 8px;
  }

  td {
    line-height: 1.8;
  }

  tbody th,
tbody td {
    border: 1px solid #333333;
  }
  tbody th {
    width: 6em;
    font-size: 2rem;
  }
  tbody ul {
    margin: 0;
    padding-left: 1.5em;
  }
  tbody .bengo th {
    background-color: #75b5a4;
  }
  tbody .bengo td {
    background-color: #e9f8f4;
  }
  tbody .zeiri th {
    background-color: #ec6c81;
  }
  tbody .zeiri td {
    background-color: #ffeff1;
  }
  tbody .shiho th {
    background-color: #3a719a;
  }
  tbody .shiho td {
    background-color: #f1f7ff;
  }
}
.tochi_katsuyou th,
.tochi_katsuyou td {
  vertical-align: middle;
}
.tochi_katsuyou th {
  background-color: #4d6ab9;
  width: 31%;
  padding-top: 20px;
  padding-bottom: 20px;
}
.tochi_katsuyou td {
  background-color: #f1f7ff;
  padding-top: 15px;
  padding-bottom: 15px;
}
.tochi_katsuyou tr:first-child th {
  background-color: #ec6c81;
}
.tochi_katsuyou tr:first-child td {
  background-color: #ffeff1;
}

@media screen and (max-width: 1040px) {
  .tochi_katsuyou {
    margin-top: 15px;
  }
  .tochi_katsuyou th {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 1.3rem;
    line-height: 1.54;
  }
  .tochi_katsuyou td {
    background-color: #f1f7ff;
  }
  .tochi_katsuyou tr:first-child th {
    background-color: #ec6c81;
  }
  .tochi_katsuyou tr:first-child td {
    background-color: #ffeff1;
  }
}
.banner_side {
  margin-top: 20px;
}
.banner_side a {
  display: block;
}

.clr {
  clear: both;
}

.cf::after {
  content: "";
  display: block;
  clear: both;
}


.sp {
  display: none;	
}
br.sp {
  display: none;
}

br.pc {
  display: inline;
}

@media screen and (max-width: 1040px) {
  .sp {
  display: block;
  }	
  span.pc {
    display: none;
  }

  br.sp {
    display: inline;
  }

  br.pc {
    display: none;
  }
}
.capt {
  font-size: 80%;
}

.fwB {
  font-weight: 700;
}

.taL {
  text-align: left;
}

.taR {
  text-align: right;
}

.taC {
  text-align: center;
}
