@charset "UTF-8";
body.no_scroll {
  overflow: hidden;
}

body h1, body h2, body h3, body h4, body h5, body p, body ul, body li, body a, body span, body th, body td, body dt, body dd {
  color: #323232;
  font-weight: 500;
  font-family: "ヒラギノ角ゴ Pro W3", "Avenir Black", "Helvetica Neue Bold", "clearn", sans-serif;
}
body h2 {
  height: auto;
}
body .m-plus-1 {
  font-family: "A P-OTF タイプラボN+ ProN M", "M PLUS 1", sans-serif;
}
body .m-plus-r1 {
  font-family: "A P-OTF 丸フォーク ProN B", "M PLUS Rounded 1c", sans-serif;
}
body .zen-maru-gothic {
  font-family: "FOT-筑紫A丸ゴシック Std B", "Zen Maru Gothic", serif;
}
body a {
  text-decoration: none !important;
  transition: 0.2s ease;
}
body a:hover {
  opacity: 0.5;
  color: #323232;
  transition: 0.2s ease;
}
body div.breadcrumb {
  padding: 12px 0;
  background: #F0FAFF;
}
body div.breadcrumb ul {
  display: flex;
}
body div.breadcrumb ul li a {
  position: relative;
  font-size: 14px;
  padding-right: 24px;
}
body div.breadcrumb ul li a::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 13px;
  top: 3px;
  right: 0;
  background: url(../images/icon-breadcrumb.svg) no-repeat;
  background-size: 8px;
}
body div.breadcrumb ul li span {
  font-size: 14px;
  padding-left: 16px;
}
body main {
  overflow: hidden;
}
body div.inner {
	width: 1280px;
    margin: 0 auto;
}
body div.pc {
  display: block;
}
body div.sp {
  display: none;
}
body header {
  height: 136px;
  padding: 24px 0 16px;
  border-bottom: #CDCDCD 3px solid;
}
body header div.box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body header div.box a.logo img {
  width: 280px;
}
body header div.box div {
  display: flex;
}
body header div.box div img.img-tel {
  height: 72px;
  margin-right: 24px;
}
body header div.box div a.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 80px;
  border-radius: 8px;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  background: #FF0000;
}
body header nav.gnav {
	display: block;
	width: 100%;
	margin-top: 16px;
}
body header nav.gnav ul {
  display: flex;
  align-items: center;
}
body header nav.gnav ul li {
  border-right: #CDCDCD 2px solid;
  padding: 4px 24px;
}
body header nav.gnav ul li:first-child {
  border-left: #CDCDCD 2px solid;
}
body header nav.gnav ul li a {
	display: block;
	color: #323232;
	font-size: 16px;
}
body header div.hamburger {
  display: none;
}
@media (max-width: 1360px) {
  body div.inner {
    width: 1144px;
    margin: 0 auto;
  }
  body header nav.gnav ul li {
    border-right: #CDCDCD 1px solid;
    padding: 4px 16px;
  }
}
@media (max-width: 1180px) {
  body div.inner {
    width: 90%;
    margin: 0 auto;
  }
  body div.pc {
    display: none;
  }
  body div.sp {
    display: block;
  }
  body header {
    height: 56px;
    border-bottom: #CDCDCD 2px solid;
  }
  body header div.box a.logo img {
    width: 188px;
  }
  body header div.box div {
    display: none;
  }
  body header div.sp-nav {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background: #fff;
    z-index: 9999;
	overflow: auto;
  }
  body header nav.gnav {
    margin-top: 0;
  }
  body header nav.gnav ul {
    display: block;
    margin: 100px auto 0;
  }
  body header nav.gnav ul li {
    border: 0;
    border-bottom: #CDCDCD 2px solid;
    padding: 16px 40px;
  }
  body header nav.gnav ul li:first-child {
    border: 0;
    border-top: #CDCDCD 2px solid;
    border-bottom: #CDCDCD 2px solid;
  }
  body header div.sp img.img-tel {
    position: absolute;
    top: 16px;
    left: 40px;
    height: 64px;
    margin-right: 24px;
  }
  body header div.sp a.btn {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 240px;
    height: 64px;
    top: 16px;
    right: 100px;
    border-radius: 50px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    background: #FF0000;
  }
  body header div.hamburger {
    display: block;
    position: absolute;
    top: 32px;
    right: 32px;
    cursor: pointer;
    width: 32px;
    height: 24px;
    z-index: 9999;
  }
  body header div.hamburger span {
    transition: all 0.3s;
    position: absolute;
    height: 2px;
    background-color: #333;
    width: 100%;
    z-index: 10;
  }
  body header div.hamburger span:nth-child(1) {
    top: 4px;
  }
  body header div.hamburger span:nth-child(2) {
    top: 12px;
  }
  body header div.hamburger span:nth-child(3) {
    top: 20px;
  }
  body header div.hamburger.open span:nth-child(1) {
    top: 10px;
    transform: translateY(6px) rotate(-33deg);
  }
  body header div.hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  body header div.hamburger.open span:nth-child(3) {
    top: 22px;
    transform: translateY(-6px) rotate(33deg);
  }
}
@media (max-width: 768px) {
  body div.inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
  }
  body header nav.gnav ul li {
    padding: 16px 24px;
  }
  body header div.sp img.img-tel {
    position: absolute;
    top: 16px;
    left: 24px;
    height: 64px;
    margin-right: 24px;
  }
  body header div.sp a.btn {
    position: relative;
    width: calc(100% - 48px);
    height: 64px;
    right: 0;
    font-size: 24px;
    margin: 16px auto 0;
  }
}
@media (max-width: 480px) {
  body header nav.gnav ul {
    margin: 48px auto 0;
  }
  body header nav.gnav ul li:first-child {
    border-top: 0;
  }
  body header div.sp img.img-tel {
    position: relative;
    top: 0;
    left: none;
    width: calc(100% - 48px);
    height: auto;
    margin: 24px auto 0;
  }
  body header div.sp a.btn {
    position: relative;
    width: calc(100% - 48px);
    height: 64px;
    right: 0;
    font-size: 24px;
    margin: 16px auto 0;
  }
}
body footer {
  margin-top: 100px;
}
body footer div.box-top {
  padding: 24px 0;
  background: #F0FAFF;
}
body footer div.box-top ul {
  display: flex;
  justify-content: center;
}
body footer div.box-top ul li {
  padding: 0 24px;
}
body footer div.box-top ul li a {
  color: #323232;
  font-size: 16px;
}
body footer div.box-bottom {
  padding: 24px 0;
  background: #004BA3;
}
body footer div.box-bottom ul {
  display: flex;
  justify-content: center;
}
body footer div.box-bottom ul li {
  color: #fff;
  font-size: 14px;
  padding: 0 16px;
}
body footer div.box-bottom small {
  display: block;
  color: #fff;
  font-size: 14px;
  text-align: center;
  margin-top: 8px;
}
@media (max-width: 1200px) {
  body footer div.box-bottom ul {
    display: block;
    text-align: center;
  }
  body footer div.box-bottom ul li {
    padding: 4px 0;
  }
}
@media (max-width: 768px) {
  body footer {
    margin-top: 64px;
  }
  body footer div.box-top ul {
    display: block;
    text-align: center;
  }
  body footer div.box-top ul li {
    padding: 4px 0;
  }
}

main.page-detail div.inner {
	padding-top: 40px;
	padding-right: 6px;
	padding-bottom: 64px;
	padding-left: 13px;
}
main.page-detail div.inner h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 48px;
}
main.page-detail div.inner h3 {
  font-size: 20px;
  font-weight: bold;
  padding: 0 0 1px 12px;
  border-left: 8px #004BA3 solid;
  border-bottom: 3px #004BA3 solid;
  margin: 48px 0 24px;
}
main.page-detail div.inner h3:nth-of-type(1) {
  margin-top: 0;
}
main.page-detail div.inner p.h2-txt {
  font-size: 20px;
  margin: -24px 0 48px;
}
main.page-detail div.inner p.h3-txt {
  font-size: 16px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  main.page-detail div.inner h2 {
    font-size: 28px;
    margin-bottom: 24px;
  }
}

main.top div.mv ul.slider li img {
  width: 100%;
  height: auto;
}
main.top div.mv button.slick-next,
main.top div.mv button.slick-prev {
  content: "";
  width: 40px;
  height: 67px;
  top: 50%;
  font-size: 0;
  z-index: 2;
}
main.top div.mv button.slick-next::before,
main.top div.mv button.slick-prev::before {
  display: none;
}
main.top div.mv button.slick-next {
  right: 13%;
  background: url(../images/icon-slider-right.svg) no-repeat;
}
main.top div.mv button.slick-prev {
  left: 13%;
  background: url(../images/icon-slider-left.svg) no-repeat;
}
@media (max-width: 1280px) {
  main.top div.mv button.slick-next {
    width: 40px;
    height: 40px;
    right: 11%;
    background: url(../images/icon-slider-right.svg) no-repeat;
    background-size: 40px;
  }
  main.top div.mv button.slick-prev {
    width: 40px;
    height: 40px;
    left: 11%;
    background: url(../images/icon-slider-left.svg) no-repeat;
    background-size: 40px;
  }
}
@media (max-width: 800px) {
  main.top div.mv button.slick-next {
    width: 24px;
    height: 40px;
    right: 3%;
    background: url(../images/icon-slider-right.svg) no-repeat;
    background-size: 24px;
  }
  main.top div.mv button.slick-prev {
    width: 24px;
    height: 40px;
    left: 3%;
    background: url(../images/icon-slider-left.svg) no-repeat;
    background-size: 24px;
  }
}
main.top div.top-nav {
  padding: 48px 0;
  background: #fffaf5;
}
main.top div.top-nav ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
main.top div.top-nav ul::after {
  display: block;
  content: "";
  width: 360px;
}
main.top div.top-nav ul li {
  width: 360px;
}
@media (max-width: 1180px) {
  main.top div.top-nav ul {
    justify-content: center;
  }
  main.top div.top-nav ul::after {
    padding: 16px;
  }
  main.top div.top-nav ul li {
    padding: 16px;
  }
}
@media (max-width: 640px) {
  main.top div.top-nav ul::after {
    display: none;
  }
  main.top div.top-nav ul li {
    padding: 8px 0;
  }
  main.top div.top-nav ul li img {
    width: 100%;
  }
}
main.top div.top-info div.inner {
  padding: 48px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 1360px) {
  main.top div.top-info div.inner {
    justify-content: center;
  }
  main.top div.top-info div.inner img {
    padding: 16px;
  }
}
@media (max-width: 640px) {
  main.top div.top-info div.inner {
    padding: 48px 16px;
  }
  main.top div.top-info div.inner img {
    width: 100%;
  }
}
main.top div.btn-box {
  text-align: center;
}
main.top div.btn-box a {
  display: inline-block;
}
@media (max-width: 340px) {
  main.top div.btn-box a img {
    width: 100%;
  }
}

main.simulate > div.inner div.table-box {
  margin-bottom: 12px;
}
main.simulate > div.inner div.table-box table {
  width: 100%;
  border: #CDCDCD 1px solid;
}
main.simulate > div.inner div.table-box table tr:nth-child(2n) td {
  background: #F0FAFF;
}
main.simulate > div.inner div.table-box table th, main.simulate > div.inner div.table-box table td {
  font-size: 22px;
  padding: 4px 12px;
  border: #CDCDCD 1px solid;
  border-collapse: collapse;
}
main.simulate > div.inner div.table-box table th {
  color: #fff;
  background: #004BA3;
}
main.simulate > div.inner p {
  font-size: 14px;
  margin-top: 1px;
}
@media (max-width: 768px) {
  main.simulate > div.inner div.table-box {
    overflow: auto;
  }
  main.simulate > div.inner div.table-box table {
    min-width: 640px;
  }
  main.simulate > div.inner div.table-box table th, main.simulate > div.inner div.table-box table td {
    font-size: 18px;
  }
}

main.service > div.inner div.table-box {
  margin-bottom: 12px;
}
main.service > div.inner div.table-box table {
  width: 100%;
  border: #CDCDCD 1px solid;
}
main.service > div.inner div.table-box table tr:nth-child(2n) td {
  background: #F0FAFF;
}
main.service > div.inner div.table-box table th, main.service > div.inner div.table-box table td {
  font-size: 20px;
  padding: 4px 12px;
  border: #CDCDCD 1px solid;
  border-collapse: collapse;
}
main.service > div.inner div.table-box table th {
  color: #fff;
  background: #004BA3;
}
main.service > div.inner p.service-txt {
  color: #FF0000;
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 24px;
}
main.service > div.inner p.service-txt span.number {
  color: #FF0000;
  font-size: 36px;
  font-weight: bold;
}
main.service > div.inner div.service-table table tr:nth-child(2n) td {
  background: #fff;
}
main.service > div.inner div.service-table table th {
  color: #323232;
  font-size: 16px;
  font-weight: bold;
  background: #F5F5F5;
}
main.service > div.inner div.service-table table td {
  font-size: 16px;
}
main.service > div.inner p.example-txt {
  display: block;
  margin-top: 32px;
  text-align: center;
}
main.service > div.inner p.example-txt span {
  display: inline;
  font-size: 20px;
  font-weight: bold;
  background: linear-gradient(transparent 60%, #FFFF00 40%);
}
main.service > div.inner div.example-table table tr th {
  color: #323232;
  font-size: 22px;
  font-weight: bold;
}
main.service > div.inner div.example-table table tr th:nth-child(1) {
  background: #FFF0BE;
}
main.service > div.inner div.example-table table tr th:nth-child(2) {
  background: #C8E6FA;
}
main.service > div.inner div.example-table table tr th:nth-child(3) {
  background: #FFC8C8;
}
main.service > div.inner div.example-table table tr td {
  font-size: 22px;
}
main.service > div.inner div.example-table table tr:nth-child(2n) td {
  background: #F5F5F5;
}
@media (max-width: 960px) {
  main.service > div.inner div.table-box {
    overflow: auto;
  }
  main.service > div.inner div.table-box table {
    min-width: 640px;
  }
  main.service > div.inner div.table-box table tr th, main.service > div.inner div.table-box table tr td {
    font-size: 16px;
  }
  main.service > div.inner p.service-txt {
    line-height: 1.2;
    font-size: 18px;
  }
  main.service > div.inner p.service-txt span.number {
    font-size: 28px;
  }
  main.service > div.inner p.example-txt span {
    font-size: 18px;
  }
}

main.guide div.guide-box {
  padding: 0 120px;
}
main.guide div.guide-box div.box {
  padding: 16px 32px 32px;
  border: 18px #64AAF0 solid;
  border-radius: 16px;
  text-align: center;
  box-sizing: border-box;
}
main.guide div.guide-box div.box h4 {
  color: #004BA3;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 24px;
}
main.guide div.flow-box {
  display: flex;
  justify-content: space-between;
}
main.guide div.flow-box div.box {
  width: calc((100% - 80px) / 2);
}
main.guide div.flow-box div.box div.img-box {
  margin-bottom: 24px;
}
main.guide div.flow-box div.box img.tel-img {
  margin-top: 16px;
}
main.guide div.flow-box div.box div.txt-box a.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 304px;
  height: 53px;
  border-radius: 53px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  background: #FF0000;
  margin: 0 auto;
}
main.guide div.flow-box div.box div.txt-box span {
  display: block;
  font-size: 18px;
  margin-top: 12px;
}
main.guide div.need-box div.box {
  margin-bottom: 32px;
}
main.guide div.need-box div.box:last-child {
  margin-bottom: 0;
}
main.guide div.need-box div.box div.txt-box .red {
  color: #FF0000;
}
main.guide div.need-box div.box div.txt-box div.need-list {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 24px;
}
main.guide div.need-box div.box div.txt-box div.need-list div span {
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin-top: 8px;
}
main.guide div.need-box div.box div.txt-box p {
  font-size: 16px;
}
main.guide div.need-box div.box div.txt-box p.left-txt {
  text-align: left;
}
main.guide div.need-box div.box div.txt-box div.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main.guide div.need-box div.box div.txt-box div.flex div.list-box {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 298px);
}
main.guide div.need-box div.box div.txt-box div.flex div.list-box ul {
  width: 62%;
}
main.guide div.need-box div.box div.txt-box div.flex div.list-box ul:nth-child(even) {
  width: 38%;
}
main.guide div.need-box div.box div.txt-box div.flex div.list-box ul li {
  position: relative;
  font-size: 18px;
  text-align: left;
  padding-left: 20px;
  box-sizing: border-box;
  margin-bottom: 8px;
}
main.guide div.need-box div.box div.txt-box div.flex div.list-box ul li::before {
  position: absolute;
  content: "●";
  top: 5px;
  left: 0;
  font-size: 10px;
}
main.guide div.need-box div.box div.txt-box div.flex div.list-box ul li span {
  font-weight: 600;
}
@media (max-width: 1360px) {
  main.guide div.guide-box {
    padding: 0;
  }
}
@media (max-width: 1080px) {
  main.guide div.flow-box div.box {
    width: calc((100% - 32px) / 2);
  }
  main.guide div.flow-box div.box img.tel-img {
    width: 100%;
    height: auto;
  }
  main.guide div.flow-box div.box div.txt-box a.btn {
    width: 100%;
    height: 53px;
    font-size: 24px;
  }
  main.guide div.flow-box div.box div.txt-box span {
    font-size: 18px;
  }
  main.guide div.need-box div.box div.txt-box div.need-list div span {
    font-size: 16px;
    margin-top: 4px;
  }
  main.guide div.need-box div.box div.txt-box div.flex div.list-box {
    width: calc(100% - 298px);
  }
  main.guide div.need-box div.box div.txt-box div.flex div.list-box ul li {
    font-size: 16px;
    margin-bottom: 4px;
  }
}
@media (max-width: 880px) {
  main.guide div.guide-box div.box {
    padding: 16px 24px 24px;
    border: 10px #64AAF0 solid;
  }
  main.guide div.guide-box div.box h4 {
    font-size: 24px;
  }
  main.guide div.flow-box div.box {
    width: calc((100% - 24px) / 2);
  }
  main.guide div.flow-box div.box img.tel-img {
    width: 100%;
    height: auto;
  }
  main.guide div.flow-box div.box div.txt-box a.btn {
    width: 100%;
    height: 53px;
    font-size: 24px;
  }
  main.guide div.flow-box div.box div.txt-box span {
    font-size: 18px;
  }
  main.guide div.need-box div.box div.txt-box div.need-list {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  main.guide div.need-box div.box div.txt-box div.need-list div {
    width: 180px;
    margin-bottom: 16px;
  }
  main.guide div.need-box div.box div.txt-box div.need-list div span {
    font-size: 16px;
    margin-top: 4px;
  }
  main.guide div.need-box div.box div.txt-box div.flex {
    flex-wrap: wrap;
  }
  main.guide div.need-box div.box div.txt-box div.flex div.list-box {
    width: 100%;
  }
  main.guide div.need-box div.box div.txt-box div.flex div.list-box ul li {
    font-size: 16px;
    margin-bottom: 4px;
  }
  main.guide div.need-box div.box div.txt-box div.flex div.img-box {
    margin: 24px auto;
  }
}
@media (max-width: 680px) {
  main.guide div.flow-box {
    flex-wrap: wrap;
  }
  main.guide div.flow-box div.box {
    width: 100%;
    margin-bottom: 32px;
  }
  main.guide div.flow-box div.box:last-child {
    margin-bottom: 0;
  }
  main.guide div.flow-box div.box img.tel-img {
    width: auto;
    height: auto;
  }
  main.guide div.flow-box div.box div.txt-box a.btn {
    width: 100%;
    height: 53px;
    font-size: 20px;
  }
  main.guide div.flow-box div.box div.txt-box span {
    font-size: 16px;
  }
  main.guide div.need-box div.box div.txt-box div.flex {
    flex-wrap: wrap;
  }
  main.guide div.need-box div.box div.txt-box div.flex div.list-box {
    width: 100%;
  }
  main.guide div.need-box div.box div.txt-box div.flex div.list-box ul {
    width: 100%;
  }
  main.guide div.need-box div.box div.txt-box div.flex div.list-box ul:nth-child(even) {
    width: 100%;
  }
}
@media (max-width: 480px) {
  main.guide div.guide-box div.box h4 {
    font-size: 20px;
  }
  main.guide div.flow-box div.box img.tel-img {
    width: 100%;
    height: auto;
  }
  main.guide div.need-box div.box div.txt-box div.flex div.img-box img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 360px) {
  main.guide div.flow-box div.box div.img-box img {
    width: 100%;
    height: auto;
  }
}

main.silver h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
}
main.silver div.flow-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
main.silver div.flow-box div.box {
  position: relative;
  width: calc((100% - 150px) / 4);
  padding: 8px;
  border-radius: 15px;
  text-align: center;
  box-sizing: border-box;
}
main.silver div.flow-box div.box::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 40px;
  top: calc(50% - 20px);
  left: -40px;
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
}
main.silver div.flow-box div.box:first-child::before {
  display: none;
}
main.silver div.flow-box div.box span {
  display: block;
  font-size: 30px;
  font-weight: bold;
}
main.silver div.flow-box div.box img {
  margin: 24px auto 16px;
}
main.silver div.flow-box div.box p {
  position: relative;
  font-size: 26px;
  font-weight: bold;
  padding-bottom: 40px;
}
main.silver div.flow-box div.box p::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 12px;
  left: calc((100% - 40px) / 2);
  bottom: 12px;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
}
main.silver div.flow-box div.box p:last-child {
  padding-bottom: 0;
}
main.silver div.flow-box div.box p:last-child::before {
  display: none;
}
main.silver div.flow-box p.small {
  width: 100%;
  font-size: 14px;
  margin-top: 12px;
}
main.silver div.mail-flow div.box {
  border: #00A0FF 3px solid;
}
main.silver div.mail-flow div.box::before {
  background: #00A0FF;
}
main.silver div.mail-flow div.box span {
  color: #00A0FF;
}
main.silver div.mail-flow div.box p::before {
  background: #004BA3;
}
main.silver div.visit-flow div.box {
  border: #FF8223 3px solid;
}
main.silver div.visit-flow div.box::before {
  background: #FF8223;
}
main.silver div.visit-flow div.box span {
  color: #FF8223;
}
main.silver div.visit-flow div.box p::before {
  background: #FF8223;
}
main.silver div.table-box {
  margin-bottom: 12px;
}
main.silver div.table-box table {
  width: 100%;
  border: #CDCDCD 1px solid;
}
main.silver div.table-box table span {
  font-size: 14px;
}
main.silver div.table-box table tr:nth-child(2n) td {
  background: #fff;
}
main.silver div.table-box table th, main.silver div.table-box table td {
  font-size: 20px;
  border: #CDCDCD 1px solid;
  border-collapse: collapse;
}
main.silver div.table-box table th {
  color: #323232;
  font-size: 16px;
  font-weight: bold;
  padding: 16px 16px;
  background: #F5F5F5;
}
main.silver div.table-box table td {
  font-size: 16px;
  padding: 16px 24px;
}
main.silver div.table-box p {
  font-size: 16px;
  margin-top: 12px;
}
main.silver div.form-box {
  text-align: center;
  margin-top: 32px;
}
main.silver div.form-box p {
  font-size: 30px;
  font-weight: 500;
}
main.silver div.form-box div.box {
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  border: #FF0000 3px solid;
  border-radius: 10px;
  padding: 8px 16px;
  margin: 32px 0 24px;
}
main.silver div.form-box div.box::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 18px;
  left: calc((100% - 50px) / 2);
  bottom: -18px;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
  background: #FF0000;
}
main.silver div.form-box a.btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 80px;
  border-radius: 8px;
  color: #fff;
  font-size: 24px;
  background: #FF0000;
  margin: 0 auto 16px;
}
main.silver div.form-box span {
  font-size: 16px;
}
@media (max-width: 1360px) {
  main.silver div.flow-box div.box p {
    font-size: 20px;
  }
}
@media (max-width: 1080px) {
  main.silver div.flow-box div.box {
    width: calc((100% - 80px) / 4);
  }
  main.silver div.flow-box div.box::before {
    width: 12px;
    height: 26px;
    top: calc(50% - 13px);
    left: -21px;
  }
  main.silver div.flow-box div.box span {
    font-size: 24px;
  }
  main.silver div.flow-box div.box img {
    width: 80%;
    height: auto;
  }
  main.silver div.flow-box div.box p {
    font-size: 18px;
  }
}
@media (max-width: 860px) {
  main.silver h4 {
    text-align: center;
  }
  main.silver div.flow-box {
    display: block;
  }
  main.silver div.flow-box div.box {
    width: 320px;
    padding: 8px 8px 16px;
    margin: 0 auto 40px;
  }
  main.silver div.flow-box div.box::before {
    width: 18px;
    height: 36px;
    top: -38px;
    left: calc(50% - 6px);
    transform: rotate(90deg);
  }
  main.silver div.flow-box div.box span {
    font-size: 24px;
  }
  main.silver div.flow-box div.box img {
    width: auto;
    height: auto;
  }
  main.silver div.flow-box div.box p {
    font-size: 20px;
  }
}
@media (max-width: 380px) {
  main.silver div.flow-box div.box {
    width: 100%;
  }
}

main.policy dl dt {
  color: #004BA3;
  font-size: 16px;
  font-weight: bold;
  margin: 24px 0 8px;
}
main.policy dl dd {
  font-size: 16px;
  margin-bottom: 8px;
}
main.policy dl dd ol {
  padding-left: 20px;
}
main.policy dl dd ol li {
  margin-bottom: 8px;
  list-style: decimal;
}
main.policy dl dd div.box {
  border: 6px solid #CDCDCD;
  padding: 24px 32px;
  margin: 32px 0;
}
main.policy dl dd div.box dl dt {
  color: #323232;
  font-size: 20px;
  margin: 0 0 24px;
}
main.policy div.table-box {
  margin-bottom: 24px;
}
main.policy div.table-box table {
  width: 100%;
  border: #CDCDCD 1px solid;
}
main.policy div.table-box table span {
  font-size: 14px;
}
main.policy div.table-box table tr:nth-child(2n) td {
  background: #fff;
}
main.policy div.table-box table th, main.policy div.table-box table td {
  font-size: 20px;
  border: #CDCDCD 1px solid;
  border-collapse: collapse;
}
main.policy div.table-box table th {
  color: #323232;
  font-size: 16px;
  font-weight: bold;
  padding: 16px 16px;
  background: #F5F5F5;
  word-break: auto-phrase;
}
main.policy div.table-box table td {
  font-size: 16px;
  padding: 16px 24px;
}
main.policy div.table-box p {
  font-size: 14px;
  margin-top: 12px;
}
main.policy img {
  margin: 8px 0;
}
main.policy p {
  font-size: 16px;
}
main.policy p.right-txt {
  text-align: right;
  padding: 32px;
}

main.feed div.flex-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
main.feed div.flex-box div {
  width: calc((100% - 100px) / 3);
  text-align: center;
  margin-bottom: 24px;
}
main.feed div.flex-box div span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  font-size: 24px;
  font-weight: bold;
  background: #FFE646;
  margin-bottom: 24px;
}
main.feed div.flex-box div h4 {
  font-size: 20px;
  font-weight: bold;
}
main.feed div.flex-box div img {
  margin: 24px 0 32px;
}
main.feed div.flex-box div h5 {
  padding: 8px;
  font-size: 16px;
  background: #EBF2FA;
  margin-bottom: 12px;
}
main.feed div.flex-box div p {
  font-size: 16px;
  text-align: left;
  margin-bottom: 12px;
}
main.feed div.flex-box div p.small {
  font-size: 14px;
}
main.feed dl {
  margin-bottom: 64px;
}
main.feed dl dt {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 4px;
}
main.feed dl dd {
  font-size: 16px;
  margin-bottom: 24px;
}
main.feed div.box {
  padding-top: 32px;
  border-top: 1px solid #969696;
}
main.feed div.box h4 {
  font-size: 18px;
  border-left: 5px solid #969696;
  padding-left: 16px;
  margin-bottom: 24px;
}
main.feed div.box h5 {
  font-size: 16px;
  font-weight: bold;
}
main.feed div.box p {
  display: block;
  margin-bottom: 24px;
}
main.feed div.box p a {
  display: inline-block;
  font-size: 16px;
}
main.feed div.btn-box {
  display: flex;
  justify-content: center;
  padding: 48px 0;
}
main.feed div.btn-box a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 80px;
  border: 0;
  border-radius: 10px;
  font-size: 24px;
  font-weight: bold;
  margin: 0 16px;
}
main.feed div.btn-box a.btn-no {
  color: #787878;
  border: 2px #787878 solid;
  background: #fff;
}
main.feed div.btn-box a.btn-yes {
  color: #fff;
  background: #FF7800;
}
@media (max-width: 1360px) {
  main.feed div.flex-box div p br {
    display: none;
  }
  main.feed dl dd br {
    display: none;
  }
}
@media (max-width: 1080px) {
  main.feed div.flex-box div {
    width: calc((100% - 50px) / 2);
  }
}
@media (max-width: 768px) {
  main.feed div.flex-box div {
    width: 100%;
  }
}
@media (max-width: 480px) {
  main.feed div.btn-box a {
    height: 64px;
    font-size: 20px;
    margin: 0 8px;
  }
}

main.form div.inner p.h3-txt {
  margin-bottom: 8px;
}
main.form span.req {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 33px;
  height: 18px;
  color: #fff;
  font-size: 12px;
  background: #FF0000;
  margin: 0 8px;
}
main.form div.box {
  border: #323232 3px solid;
  border-radius: 5px;
  padding: 12px 24px;
}
main.form div.box .red {
  color: #FF0000;
}
main.form div.box p.note-txt {
  font-size: 20px;
  padding: 8px 0 8px 48px;
  background: url(../images/icon-form-note.png) no-repeat top 4px left;
  margin-bottom: 8px;
}
main.form div.box div {
  display: flex;
  flex-wrap: wrap;
}
main.form div.box div p {
  font-size: 18px;
  padding-left: 32px;
  margin-right: 40px;
  background: url(../images/icon-form-note-list.png) no-repeat top 2px left;
}
main.form div.box div .strong {
  font-size: 26px;
  font-weight: bold;
  margin-top: 8px;
  background: url(../images/icon-form-note-list.png) no-repeat top 5px left;
}
main.form form h4 {
  font-size: 20px;
  font-weight: bold;
  margin: 40px 0 8px;
}
main.form form table {
  width: 100%;
  border: #CDCDCD 1px solid;
}
main.form form table span {
  font-size: 14px;
}
main.form form table tr:nth-child(2n) td {
  background: #fff;
}
main.form form table th, main.form form table td {
  font-size: 16px;
  padding: 12px;
  border: #CDCDCD 1px solid;
  border-collapse: collapse;
}
main.form form table th {
  width: 200px;
  height: 100%;
  background: #F5F5F5;
  vertical-align: text-top;
}
main.form form table th p {
  display: flex;
  align-items: center;
  color: #323232;
  font-size: 16px;
  font-weight: bold;
  word-break: auto-phrase;
  margin: 0;
}
main.form form table td {
  font-size: 16px;
}
main.form form table td span.title {
  display: block;
  font-size: 16px;
}
main.form form table td label {
  display: flex;
  align-items: center;
  word-break: keep-all;
}
main.form form table td label span {
  font-size: 16px;
  margin: 0 8px;
}
main.form form table td label p {
  font-size: 16px;
}
main.form form table td label input, main.form form table td label select {
  cursor: pointer;
  height: 30px;
  padding: 0 8px;
  border: #CDCDCD 1px solid;
  border-radius: 4px;
}
main.form form table td label select {
  padding: 0 32px 0 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: url(../images/icon-select.png) no-repeat center right 12px;
}
main.form form table td label select::-ms-expand {
  display: none;
}
main.form form table td label.wrap {
  flex-wrap: wrap;
}
main.form form table td label.wrap input.input3 {
  width: calc((100% - 64px) / 3);
}
main.form form table td label.wrap input.input4 {
  width: calc((100% - 104px) / 4);
}
main.form form table td label.wrap input.input3-5 {
  width: calc((100% - 95px) / 4);
}
main.form form table td label.radio {
  margin-right: 16px;
}
main.form form .m-top-8 {
  margin-top: 8px;
}
main.form form .small {
  font-size: 14px;
}
main.form form .red {
  color: #FF0000;
}
main.form form .flex {
  display: flex;
}
main.form form div.btn-box {
  display: flex;
  justify-content: center;
  padding: 48px 0;
}
main.form form div.btn-box input {
  cursor: pointer;
  width: 150px;
  height: 40px;
  border: 0;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  margin: 0 16px;
}
main.form form div.btn-box input.btn-reset {
  color: #787878;
  border: 2px #787878 solid;
  background: #fff;
}
main.form form div.btn-box input.btn-submit {
  color: #fff;
  background: #FF7800;
}
main.form form p.txt {
  display: block;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 786px) {
  main.form form table {
    width: 100%;
  }
  main.form form table tr {
    display: block;
  }
  main.form form table th, main.form form table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
}
@media (max-width: 560px) {
  main.form form h4 {
    font-size: 20px;
  }
  main.form form table span {
    font-size: 14px;
  }
  main.form form table td span.title {
    font-size: 14px;
  }
  main.form form table td label span {
    font-size: 14px;
  }
  main.form form table td label span.sp-width {
    display: block;
    width: 100%;
  }
  main.form form table td label span.sp-width + input {
    width: 100%;
  }
  main.form form table td label input.sp-width,
  main.form form table td label select.sp-width {
    width: 100%;
  }
  main.form form table td label input.sp-width-2 {
    width: calc(100% - 75px);
  }
  main.form form table td p {
    font-size: 14px;
  }
}

main.borrow div.flex-box {
  display: flex;
  justify-content: space-evenly;
}
main.borrow div.flex-box div {
  text-align: center;
}
main.borrow div.flex-box div p {
  line-height: 1.2;
  font-size: 23px;
  margin-top: 12px;
}
main.borrow div.flex-box div p span {
  font-size: 16px;
}
main.borrow div.monthly-table table {
  margin-bottom: 10px;
}
main.borrow div.monthly-table table tr th, main.borrow div.monthly-table table tr td {
  width: 25%;
  padding: 4px 12px;
}
main.borrow div.monthly-table table thead tr:first-child th {
  font-size: 24px;
  font-weight: bold;
  background: #DDEEFF;
  text-align: center;
}
main.borrow div.monthly-table table thead tr th {
  font-size: 20px;
  font-weight: normal;
  background: #FFFFD0;
}
main.borrow div.monthly-table table tbody tr td {
  font-size: 20px;
}
main.borrow .small {
  font-size: 14px;
}
main.borrow ul.list-box {
  margin-bottom: 12px;
}
main.borrow ul.list-box li {
  position: relative;
  font-size: 16px;
  padding-left: 8px;
  margin-bottom: 8px;
}
main.borrow ul.list-box li::before {
  position: relative;
  content: "●";
  top: -2px;
  left: -8px;
  font-size: 10px;
}
main.borrow h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
}
main.borrow div.flow-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
main.borrow div.flow-box div.box {
  position: relative;
  width: calc((100% - 120px) / 5);
  padding: 8px;
  border-radius: 15px;
  text-align: center;
  box-sizing: border-box;
}
main.borrow div.flow-box div.box::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 40px;
  top: calc(50% - 20px);
  left: -27px;
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
}
main.borrow div.flow-box div.box:first-child::before {
  display: none;
}
main.borrow div.flow-box div.box span {
  display: block;
  font-size: 28px;
  font-weight: bold;
}
main.borrow div.flow-box div.box img {
  margin: 24px auto 16px;
}
main.borrow div.flow-box div.box p {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 40px;
}
main.borrow div.flow-box div.box p::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 12px;
  left: calc((100% - 40px) / 2);
  bottom: 12px;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
}
main.borrow div.flow-box div.box p:last-child {
  padding-bottom: 0;
}
main.borrow div.flow-box div.box p:last-child::before {
  display: none;
}
main.borrow div.flow-box p.small {
  width: 100%;
  font-size: 14px;
  margin-top: 12px;
}
main.borrow div.mail-flow div.box {
  border: #00A0FF 3px solid;
}
main.borrow div.mail-flow div.box::before {
  background: #00A0FF;
}
main.borrow div.mail-flow div.box span {
  color: #00A0FF;
}
main.borrow div.mail-flow div.box p::before {
  background: #00A0FF;
}
main.borrow div.visit-flow div.box {
  border: #FF8223 3px solid;
}
main.borrow div.visit-flow div.box::before {
  background: #FF8223;
}
main.borrow div.visit-flow div.box span {
  color: #FF8223;
}
main.borrow div.visit-flow div.box p::before {
  background: #FF8223;
}
main.borrow div.table-box {
  margin-bottom: 12px;
}
main.borrow div.table-box table {
  width: 100%;
  border: #CDCDCD 1px solid;
}
main.borrow div.table-box table span {
  font-size: 14px;
}
main.borrow div.table-box table tr:nth-child(2n) td {
  background: #fff;
}
main.borrow div.table-box table th, main.borrow div.table-box table td {
  font-size: 20px;
  border: #CDCDCD 1px solid;
  border-collapse: collapse;
}
main.borrow div.table-box table th {
  color: #323232;
  font-size: 16px;
  font-weight: bold;
  padding: 16px 16px;
  background: #F5F5F5;
}
main.borrow div.table-box table td {
  font-size: 16px;
  padding: 16px 24px;
}
main.borrow div.table-box p {
  font-size: 16px;
  margin-top: 12px;
}
main.borrow div.form-box {
  text-align: center;
  margin-top: 32px;
}
main.borrow div.form-box p {
  font-size: 30px;
  font-weight: 500;
}
main.borrow div.form-box div.box {
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  border: #FF0000 3px solid;
  border-radius: 10px;
  padding: 8px 16px;
  margin: 32px 0 24px;
}
main.borrow div.form-box div.box::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 18px;
  left: calc((100% - 50px) / 2);
  bottom: -18px;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
  background: #FF0000;
}
main.borrow div.form-box a.btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 80px;
  border-radius: 8px;
  color: #fff;
  font-size: 24px;
  background: #FF0000;
  margin: 0 auto 16px;
}
main.borrow div.form-box span {
  font-size: 16px;
}
@media (max-width: 1280px) {
  main.borrow h4 {
    text-align: center;
  }
  main.borrow div.sp-flex {
    display: flex;
    justify-content: space-evenly;
  }
  main.borrow div.sp-flex div.sp-box {
    width: 320px;
  }
  main.borrow div.flow-box {
    display: block;
  }
  main.borrow div.flow-box div.box {
    width: 320px;
    padding: 8px 8px 16px;
    margin: 0 auto 40px;
  }
  main.borrow div.flow-box div.box::before {
    width: 18px;
    height: 36px;
    top: -38px;
    left: calc(50% - 6px);
    transform: rotate(90deg);
  }
  main.borrow div.flow-box div.box span {
    font-size: 24px;
  }
  main.borrow div.flow-box div.box img {
    width: auto;
    height: auto;
  }
  main.borrow div.flow-box div.box p {
    font-size: 20px;
  }
}
@media (max-width: 960px) {
  main.borrow div.flex-box div p {
    font-size: 20px;
  }
  main.borrow div.flex-box div p span {
    font-size: 14px;
  }
  main.borrow div.flex-box img.img-borrow {
    width: 100%;
    height: auto;
  }
  main.borrow div.monthly-table table thead tr:first-child th {
    font-size: 18px;
  }
  main.borrow div.monthly-table table thead tr th {
    font-size: 18px;
  }
  main.borrow div.monthly-table table tbody tr td {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  main.borrow div.flex-box {
    display: block;
  }
  main.borrow div.flex-box div {
    margin-bottom: 32px;
  }
  main.borrow div.flex-box div p {
    font-size: 20px;
  }
  main.borrow div.flex-box div p span {
    font-size: 16px;
  }
  main.borrow div.monthly-table {
    overflow: auto;
  }
  main.borrow div.monthly-table table {
    min-width: 680px;
  }
  main.borrow div.monthly-table table thead tr:first-child th {
    font-size: 18px;
  }
  main.borrow div.monthly-table table thead tr th {
    font-size: 16px;
  }
  main.borrow div.monthly-table table tbody tr td {
    font-size: 16px;
  }
  main.borrow div.sp-flex {
    display: block;
  }
  main.borrow div.sp-flex div.sp-box {
    margin: 0 auto;
  }
  main.borrow div.flow-box {
    display: block;
  }
}
@media (max-width: 380px) {
  main.borrow div.sp-flex div.sp-box {
    width: 100%;
  }
  main.borrow div.flow-box div.box {
    width: 100%;
  }
}

main.info div.inner h2 {
	color: #000000;
	font-size: 20px;
	margin-bottom: 20px;
	text-align: left;
	font-weight: bold;
	background-color: #FFF0FF;
	padding-top: 4;
	padding-right: 0;
	padding-bottom: 2px;
	padding-left: 12px;
	margin-left: 0px;
	border-top-width: 0;
	border-right-width: 0;
	border-bottom-width: 3px;
	border-left-width: 8px;
	border-bottom-style: solid;
	border-left-style: solid;
	border-bottom-color: #004BA3;
	border-left-color: #004BA3;
	margin-top: 10px;
	margin-right: 0px;
	bottom: 0px;
	line-height: 1.5;
}
main.info div.box {
	margin-top: 20px;
	background-color: #FFFFFF;
	padding-top: 17px;
}
main.info div.box p {
	line-height: 2;
	font-size: 18px;
	font-weight: 500;
	text-align: left;
}
main.info div.box p.strong {
	line-height: 1.5;
	font-size: 24px;
	text-align: left;
	font-weight: bold;
	left: 1px;
	right: 0px;
}
main.info div.box p.strong span {
  color: #FF0000;
  font-weight: bold;
}
main.info div.box p.right-txt {
	line-height: 1.5;
	font-size: 18px;
	text-align: right;
	margin-top: 20px;
	font-weight: 500;
}
main.info div.table-box {
	margin-top: 38px;
	margin-right: 1px;
}
main.info div.table-box div.flex-box {
  display: flex;
  justify-content: space-between;
}
main.info div.table-box div.flex-box table {
  width: calc(100% - 461px);
}
main.info div.table-box div.flex-box table tr:nth-child(odd) {
  background: #F0FAFF;
}
main.info div.table-box div.flex-box table tr th, main.info div.table-box div.flex-box table tr td {
  font-size: 16px;
  padding: 16px 24px;
}
main.info div.table-box div.flex-box table tr th {
  font-weight: bold;
  border-right: 5px #fff solid;
}
main.info div.table-box div.flex-box img {
  width: 425px;
}
@media (max-width: 1080px) {
  main.info div.inner h2 {
    font-size: 32px;
  }
  main.info div.box p {
    font-size: 18px;
  }
  main.info div.box p.strong {
    font-size: 24px;
  }
  main.info div.box p.right-txt {
    font-size: 20px;
  }
  main.info div.table-box div.flex-box table {
    width: calc(100% - 340px);
  }
  main.info div.table-box div.flex-box table tr th, main.info div.table-box div.flex-box table tr td {
    font-size: 16px;
  }
  main.info div.table-box div.flex-box img {
    width: 320px;
  }
}
@media (max-width: 860px) {
  main.info div.inner h2 {
    font-size: 20px;
    margin-bottom: 24px;
  }
  main.info div.box {
    padding: 0px;
  }
  main.info div.box p {
    font-size: 18px;
    margin: 0;
  }
  main.info div.box p.strong {
    font-size: 24px;
  }
  main.info div.box p.right-txt {
    font-size: 18px;
  }
  main.info div.table-box {
    margin-top: 48px;
	padding: 0px;
  }
  main.info div.table-box div.flex-box {
    display: block;
  }
  main.info div.table-box div.flex-box table {
    width: 100%;
  }
  main.info div.table-box div.flex-box table tr:nth-child(odd) {
    background: #F0FAFF;
  }
  main.info div.table-box div.flex-box table tr th, main.info div.table-box div.flex-box table tr td {
    font-size: 16px;
    padding: 16px 24px;
  }
  main.info div.table-box div.flex-box table tr th {
    font-weight: bold;
    border-right: 5px #fff solid;
  }
  main.info div.table-box div.flex-box img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 480px) {
  main.info div.inner h2 {
    font-size: 20px;
    margin-bottom: 24px;
  }
  main.info div.box {
    margin-top: 24px;
  }
  main.info div.box p {
    font-size: 18px;
    margin: 0;
  }
  main.info div.box p.strong {
    font-size: 24px;
  }
  main.info div.box p.right-txt {
    font-size: 18px;
  }
  main.info div.table-box div.flex-box table tr:nth-child(odd) th {
    border: 0;
    border-bottom: 3px solid #fff;
  }
  main.info div.table-box div.flex-box table tr th, main.info div.table-box div.flex-box table tr td {
    display: block;
    font-size: 16px;
    padding: 12px 16px;
  }
  main.info div.table-box div.flex-box table tr th {
    font-weight: bold;
    border: 0;
    border-bottom: 3px solid #F8F8F8;
  }
}/*# sourceMappingURL=style.css.map */
