@charset "UTF-8";
/* CSS Document */
/* Body Html Fonts
------------------------------------------------------------*/
html {
  font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
  font-size: 14px;
  background-color: #FFF;
}

@media screen and (max-width: 570px) {
  html {
    font-size: 13px;
  }
}

body {
  display: -moz-inline-box;
  display: inline-block;
  width: 100%;
  overflow-x: hidden;
  height: 100%;
  position: relative;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  color: #2f2f2f;
  line-height: 1.8;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.06em;
}

body.fixed {
  position: fixed;
}

body a {
  color: #0044CC;
  text-decoration: underline;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

body a:hover {
  text-decoration: underline;
}

body a img {
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  backface-visibility: hidden;
}

body a img:hover {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=70);
  opacity: 0.7;
}

body img {
  pointer-events: none;
  max-width: 100%;
  height: auto;
}

body .wrap {
  width: 825px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

body ::selection {
  background: rgba(155, 176, 212, 0.2);
  /* Safari */
}

body ::-moz-selection {
  background: rgba(155, 176, 212, 0.2);
  /* Firefox */
}

/* header
------------------------------------------------------------*/
header .menu, header .sp-menu {
  display: none;
}

@media screen and (max-width: 570px) {
  header .menu {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    top: 0;
    height: 50px;
    width: 50px;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 2;
    cursor: pointer;
  }
  header .menu span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 0 auto;
    background-color: #0044CC;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header .menu span:last-child {
    margin-bottom: 0;
  }
  header .menu span.top {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -o-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  header .menu span.middle {
    margin-top: -2px;
    left: 0;
    position: relative;
  }
  header .menu span.bottom {
    margin-top: -2px;
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    -ms-transform: translateY(8px);
    -o-transform: translateY(8px);
    transform: translateY(8px);
  }
  header .sp-menu {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -ms-filter: "alpha( opacity=$number*100 )";
    filter: alpha(opacity=0);
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 50px;
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    background: #FFF;
    z-index: 2;
    padding-bottom: 15px;
    pointer-events: none;
  }
  header.active .menu .middle {
    -ms-filter: "alpha( opacity=$number*100 )";
    filter: alpha(opacity=0);
    opacity: 0;
    left: 20px;
  }
  header.active .menu .top {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
  }
  header.active .menu .bottom {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
  }
  header.active .sp-menu {
    -ms-filter: "alpha( opacity=$number*100 )";
    filter: alpha(opacity=100);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

/* footer
------------------------------------------------------------*/
footer {
  display: block;
  height: auto;
  background: #1A1A1A;
  padding: 24px 0;
  color: #FFF;
  text-align: center;
  font-size: 13px;
  font-size: 0.9285714286rem;
  font-weight: bold;
  margin-bottom: -20px;
}

footer small {
  font-size: 13px;
  font-size: 0.9285714286rem;
  font-weight: bold;
}

@media screen and (max-width: 570px) {
  footer {
    font-size: 12px;
    font-size: 0.8571428571rem;
    font-weight: bold;
  }
  footer small {
    font-size: 12px;
    font-size: 0.8571428571rem;
    font-weight: bold;
  }
}

/* mainimg
------------------------------------------------------------*/
/* main
------------------------------------------------------------*/
main {
  width: 825px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  padding: 0 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

main .fs_100 {
  font-size: 110%;
}

main .fs_110 {
  font-size: 110%;
}

main .fs_120 {
  font-size: 120%;
}

main .fs_130 {
  font-size: 130%;
}

main .fs_140 {
  font-size: 140%;
}

main .fs_150 {
  font-size: 150%;
}

main .fs_160 {
  font-size: 160%;
}

main .marker_yellow {
  background-color: #FFFF00;
  font-weight: bold;
  padding: 0 3px;
}

main .fc_red {
  color: #ed0000;
}

main .post {
  padding-bottom: 50px;
}

main h1 {
  padding: 20px 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 37px;
  font-size: 2.6428571429rem;
  text-align: center;
  background-color: #58c0f4;
  color: #FFF;
  margin-bottom: 10px;
}

main .date {
  text-align: right;
  padding-bottom: 20px;
  font-size: 12px;
  font-size: 0.8571428571rem;
}

main .page-top {
  text-align: right;
  padding-bottom: 20px;
}

main .content-bottom {
  width: 825px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

main .content-bottom h2 {
  background: #58c0f4;
  padding: 10px;
  font-size: 18px;
  font-size: 1.2857142857rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFF;
}

main .content-bottom ul {
  margin-bottom: 80px;
}

main .content-bottom ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 20px 0;
  border-bottom: solid 1px #2f2f2f;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

main .content-bottom ul li .img {
  width: 170px;
  margin-right: 30px;
  text-decoration: none;
  line-height: 0;
}

main .content-bottom ul li .title {
  -ms-flex: 1 0 auto;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  width: 10px;
}

main .content-bottom ul li a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #2f2f2f;
  font-weight: bold;
  font-size: 27px;
  font-size: 1.9285714286rem;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1.5;
}

main .content-bottom ul li a:hover {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=70);
  opacity: 0.7;
}

main .content-bottom .company {
  text-align: center;
  font-size: 18px;
  font-size: 1.2857142857rem;
}

main .content-bottom .company a {
  color: #58c0f4;
}

main .btn-pc {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

main .btn-pc a {
  display: block;
}

main .btn-pc a.pc {
  display: block;
}

main .btn-pc a.sp {
  display: none;
}

main .btn-sp {
  text-align: center;
  display: none;
  margin-top: 20px;
  margin-bottom: 30px;
}

main .btn-sp a {
  display: block;
}

main .btn-sp a.pc {
  display: block;
}

main .btn-sp a.sp {
  display: block;
}

main .back {
  text-align: center;
  padding-bottom: 20px;
}

@media screen and (min-width: 571px) and (max-width: 825px) {
  /* main
------------------------------------------------------------*/
  main .post {
    padding-left: 10px;
    padding-right: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }
  main .content-bottom {
    padding-left: 20px;
    padding-right: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }
}

/*sp*/
@media screen and (max-width: 570px) {
  /* main
------------------------------------------------------------*/
  main h1 {
    padding: 15px 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 28px;
    font-size: 2rem;
    margin-bottom: 10px;
  }
  main .date {
    padding-left: 20px;
    padding-right: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }
  main .post {
    padding-left: 5px;
    padding-right: 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }
  main .content-bottom {
    padding-left: 20px;
    padding-right: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }
  main .content-bottom h2 {
    font-size: 18px;
    font-size: 1.2857142857rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  main .content-bottom ul {
    margin-bottom: 40px;
  }
  main .content-bottom ul li {
    padding: 15px 0;
  }
  main .content-bottom ul li .img {
    width: 100px;
    margin-right: 20px;
  }
  main .content-bottom ul li a {
    font-size: 18px;
    font-size: 1.2857142857rem;
  }
  main .content-bottom .company {
    text-align: center;
    font-size: 16px;
    font-size: 1.1428571429rem;
  }
  main .btn-pc {
    display: none;
  }
  main .btn-pc a {
    display: none;
  }
  main .btn-pc a.pc {
    display: none;
  }
  main .btn-pc a.sp {
    display: none;
  }
  main .btn-sp {
    display: block;
  }
  main .btn-sp a {
    display: block;
  }
  main .btn-sp a.pc {
    display: block;
  }
  main .btn-sp a.sp {
    display: block;
  }
}

/* padding & margin */
.pd {
  padding: 30px;
}

.mg {
  margin: 30px;
}

.nomb {
  margin-bottom: 0 !important;
}

.nomt {
  margin-top: 0 !important;
}

.nopt {
  padding-top: 0 !important;
}

.nopb {
  padding-bottom: 0 !important;
}

.pt {
  padding-top: 30px;
}

.pt5 {
  padding-top: 5px;
}

.pt10 {
  padding-top: 10px;
}

.pt15 {
  padding-top: 15px;
}

.pt20 {
  padding-top: 20px;
}

.pt25 {
  padding-top: 25px;
}

.pt30 {
  padding-top: 30px;
}

.pt35 {
  padding-top: 35px;
}

.pt40 {
  padding-top: 40px;
}

.pt45 {
  padding-top: 45px;
}

.pt50 {
  padding-top: 50px;
}

.pt60 {
  padding-top: 60px;
}

.pt70 {
  padding-top: 70px;
}

.pt80 {
  padding-top: 80px;
}

.pt90 {
  padding-top: 90px;
}

.pt100 {
  padding-top: 100px;
}

.pt110 {
  padding-top: 110px;
}

.pt120 {
  padding-top: 120px;
}

.pt130 {
  padding-top: 130px;
}

.pt140 {
  padding-top: 140px;
}

.pt150 {
  padding-top: 150px;
}

.pt160 {
  padding-top: 160px;
}

.pt170 {
  padding-top: 170px;
}

.pt180 {
  padding-top: 180px;
}

.pt190 {
  padding-top: 190px;
}

.pt200 {
  padding-top: 200px;
}

.pb {
  padding-bottom: 30px;
}

.pb5 {
  padding-bottom: 5px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb15 {
  padding-bottom: 15px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb25 {
  padding-bottom: 25px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb35 {
  padding-bottom: 35px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb45 {
  padding-bottom: 45px;
}

.pb50 {
  padding-bottom: 50px;
}

.pb60 {
  padding-bottom: 60px;
}

.pb70 {
  padding-bottom: 70px;
}

.pb80 {
  padding-bottom: 80px;
}

.pb90 {
  padding-bottom: 90px;
}

.pb100 {
  padding-bottom: 100px;
}

.pb110 {
  padding-bottom: 110px;
}

.pb120 {
  padding-bottom: 120px;
}

.pb130 {
  padding-bottom: 130px;
}

.pb140 {
  padding-bottom: 140px;
}

.pb150 {
  padding-bottom: 150px;
}

.pb160 {
  padding-bottom: 160px;
}

.pb170 {
  padding-bottom: 170px;
}

.pb180 {
  padding-bottom: 180px;
}

.pb190 {
  padding-bottom: 190px;
}

.pb200 {
  padding-bottom: 200px;
}

.mt {
  margin-top: 30px;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt90 {
  margin-top: 90px;
}

.mt100 {
  margin-top: 100px;
}

.mt110 {
  margin-top: 110px;
}

.mt120 {
  margin-top: 120px;
}

.mt130 {
  margin-top: 130px;
}

.mt140 {
  margin-top: 140px;
}

.mt150 {
  margin-top: 150px;
}

.mt160 {
  margin-top: 160px;
}

.mt170 {
  margin-top: 170px;
}

.mt180 {
  margin-top: 180px;
}

.mt190 {
  margin-top: 190px;
}

.mt200 {
  margin-top: 200px;
}

.mb {
  margin-bottom: 30px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb100 {
  margin-bottom: 100px;
}

.mb110 {
  margin-bottom: 110px;
}

.mb120 {
  margin-bottom: 120px;
}

.mb130 {
  margin-bottom: 130px;
}

.mb140 {
  margin-bottom: 140px;
}

.mb150 {
  margin-bottom: 150px;
}

.mb160 {
  margin-bottom: 160px;
}

.mb170 {
  margin-bottom: 170px;
}

.mb180 {
  margin-bottom: 180px;
}

.mb190 {
  margin-bottom: 190px;
}

.mb200 {
  margin-bottom: 200px;
}

.pl {
  padding-left: 30px;
}

.pl-a {
  padding-left: auto;
}

.pl5 {
  padding-left: 5px;
}

.pl10 {
  padding-left: 10px;
}

.pl15 {
  padding-left: 15px;
}

.pl20 {
  padding-left: 20px;
}

.pl25 {
  padding-left: 25px;
}

.pr {
  padding-right: 30px;
}

.pr-a {
  padding-right: auto;
}

.pr5 {
  padding-right: 5px;
}

.pr10 {
  padding-right: 10px;
}

.pr15 {
  padding-right: 15px;
}

.pr20 {
  padding-right: 20px;
}

.pr25 {
  padding-right: 25px;
}

.ml {
  margin-left: 30px;
}

.ml-a {
  margin-left: auto;
}

.ml5 {
  margin-left: 5px;
}

.ml10 {
  margin-left: 10px;
}

.ml15 {
  margin-left: 15px;
}

.ml20 {
  margin-left: 20px;
}

.ml25 {
  margin-left: 25px;
}

.mr {
  margin-right: 30px;
}

.mr-a {
  margin-right: auto;
}

.mr5 {
  margin-right: 5px;
}

.mr10 {
  margin-right: 10px;
}

.mr15 {
  margin-right: 15px;
}

.mr20 {
  margin-right: 20px;
}

.mr25 {
  margin-right: 25px;
}

@media screen and (max-width: 570px) {
  .pd {
    padding: 20px;
  }
  .mg {
    margin: 20px;
  }
  .pt {
    padding-top: 20px;
  }
  .pt5 {
    padding-top: 3px;
  }
  .pt10 {
    padding-top: 6px;
  }
  .pt15 {
    padding-top: 9px;
  }
  .pt20 {
    padding-top: 12px;
  }
  .pt25 {
    padding-top: 15px;
  }
  .pt30 {
    padding-top: 18px;
  }
  .pt35 {
    padding-top: 21px;
  }
  .pt40 {
    padding-top: 24px;
  }
  .pt45 {
    padding-top: 27px;
  }
  .pt50 {
    padding-top: 30px;
  }
  .pt60 {
    padding-top: 36px;
  }
  .pt70 {
    padding-top: 42px;
  }
  .pt80 {
    padding-top: 48px;
  }
  .pt90 {
    padding-top: 54px;
  }
  .pt100 {
    padding-top: 60px;
  }
  .pt110 {
    padding-top: 66px;
  }
  .pt120 {
    padding-top: 72px;
  }
  .pt130 {
    padding-top: 78px;
  }
  .pt140 {
    padding-top: 84px;
  }
  .pt150 {
    padding-top: 90px;
  }
  .pt160 {
    padding-top: 96px;
  }
  .pt170 {
    padding-top: 102px;
  }
  .pt180 {
    padding-top: 108px;
  }
  .pt190 {
    padding-top: 114px;
  }
  .pt200 {
    padding-top: 120px;
  }
  .pb {
    padding-bottom: 20px;
  }
  .pb5 {
    padding-bottom: 3px;
  }
  .pb10 {
    padding-bottom: 6px;
  }
  .pb15 {
    padding-bottom: 9px;
  }
  .pb20 {
    padding-bottom: 12px;
  }
  .pb25 {
    padding-bottom: 15px;
  }
  .pb30 {
    padding-bottom: 18px;
  }
  .pb35 {
    padding-bottom: 21px;
  }
  .pb40 {
    padding-bottom: 24px;
  }
  .pb45 {
    padding-bottom: 27px;
  }
  .pb50 {
    padding-bottom: 30px;
  }
  .pb55 {
    padding-bottom: 33px;
  }
  .pb60 {
    padding-bottom: 36px;
  }
  .pb65 {
    padding-bottom: 39px;
  }
  .pb70 {
    padding-bottom: 42px;
  }
  .pb75 {
    padding-bottom: 45px;
  }
  .pb80 {
    padding-bottom: 48px;
  }
  .pb85 {
    padding-bottom: 51px;
  }
  .pb90 {
    padding-bottom: 54px;
  }
  .pb95 {
    padding-bottom: 57px;
  }
  .pb100 {
    padding-bottom: 60px;
  }
  .pb60 {
    padding-bottom: 36px;
  }
  .pb70 {
    padding-bottom: 42px;
  }
  .pb80 {
    padding-bottom: 48px;
  }
  .pb90 {
    padding-bottom: 54px;
  }
  .pb100 {
    padding-bottom: 60px;
  }
  .mt {
    margin-top: 20px;
  }
  .mt5 {
    margin-top: 3px;
  }
  .mt10 {
    margin-top: 6px;
  }
  .mt15 {
    margin-top: 9px;
  }
  .mt20 {
    margin-top: 12px;
  }
  .mt25 {
    margin-top: 15px;
  }
  .mt30 {
    margin-top: 18px;
  }
  .mt35 {
    margin-top: 21px;
  }
  .mt40 {
    margin-top: 24px;
  }
  .mt45 {
    margin-top: 27px;
  }
  .mt50 {
    margin-top: 30px;
  }
  .mt55 {
    margin-top: 33px;
  }
  .mt60 {
    margin-top: 36px;
  }
  .mt65 {
    margin-top: 39px;
  }
  .mt70 {
    margin-top: 42px;
  }
  .mt75 {
    margin-top: 45px;
  }
  .mt80 {
    margin-top: 48px;
  }
  .mt85 {
    margin-top: 51px;
  }
  .mt90 {
    margin-top: 54px;
  }
  .mt95 {
    margin-top: 57px;
  }
  .mt100 {
    margin-top: 60px;
  }
  .mt60 {
    margin-top: 36px;
  }
  .mt70 {
    margin-top: 42px;
  }
  .mt80 {
    margin-top: 48px;
  }
  .mt90 {
    margin-top: 54px;
  }
  .mt100 {
    margin-top: 60px;
  }
  .mb {
    margin-bottom: 20px;
  }
  .mb5 {
    margin-bottom: 3px;
  }
  .mb10 {
    margin-bottom: 6px;
  }
  .mb15 {
    margin-bottom: 9px;
  }
  .mb20 {
    margin-bottom: 12px;
  }
  .mb25 {
    margin-bottom: 15px;
  }
  .mb30 {
    margin-bottom: 18px;
  }
  .mb35 {
    margin-bottom: 21px;
  }
  .mb40 {
    margin-bottom: 24px;
  }
  .mb45 {
    margin-bottom: 27px;
  }
  .mb50 {
    margin-bottom: 30px;
  }
  .mb55 {
    margin-bottom: 33px;
  }
  .mb60 {
    margin-bottom: 36px;
  }
  .mb65 {
    margin-bottom: 39px;
  }
  .mb70 {
    margin-bottom: 42px;
  }
  .mb75 {
    margin-bottom: 45px;
  }
  .mb80 {
    margin-bottom: 48px;
  }
  .mb85 {
    margin-bottom: 51px;
  }
  .mb90 {
    margin-bottom: 54px;
  }
  .mb95 {
    margin-bottom: 57px;
  }
  .mb100 {
    margin-bottom: 60px;
  }
  .mb60 {
    margin-bottom: 36px;
  }
  .mb70 {
    margin-bottom: 42px;
  }
  .mb80 {
    margin-bottom: 48px;
  }
  .mb90 {
    margin-bottom: 54px;
  }
  .mb100 {
    margin-bottom: 60px;
  }
  .pl {
    padding-left: 20px;
  }
  .pl5 {
    padding-left: 3px;
  }
  .pl10 {
    padding-left: 6px;
  }
  .pl15 {
    padding-left: 9px;
  }
  .pl20 {
    padding-left: 12px;
  }
  .pl25 {
    padding-left: 15px;
  }
  .pr {
    padding-right: 20px;
  }
  .pr5 {
    padding-right: 3px;
  }
  .pr10 {
    padding-right: 6px;
  }
  .pr15 {
    padding-right: 9px;
  }
  .pr20 {
    padding-right: 12px;
  }
  .pr25 {
    padding-right: 15px;
  }
  .ml {
    margin-left: 20px;
  }
  .ml5 {
    margin-left: 3px;
  }
  .ml10 {
    margin-left: 6px;
  }
  .ml15 {
    margin-left: 9px;
  }
  .ml20 {
    margin-left: 12px;
  }
  .ml25 {
    margin-left: 15px;
  }
  .mr {
    margin-right: 20px;
  }
  .mr5 {
    margin-right: 3px;
  }
  .mr10 {
    margin-right: 6px;
  }
  .mr15 {
    margin-right: 9px;
  }
  .mr20 {
    margin-right: 12px;
  }
  .mr25 {
    margin-right: 15px;
  }
}

/* padding & margin */
/* etc */
.lh0 {
  line-height: 0;
}

.w10 {
  width: 10px;
}

.w20 {
  width: 20px;
}

.w30 {
  width: 30px;
}

.w40 {
  width: 40px;
}

.w50 {
  width: 50px;
}

.w60 {
  width: 60px;
}

.w70 {
  width: 70px;
}

.w80 {
  width: 80px;
}

.w90 {
  width: 90px;
}

.w100 {
  width: 100px;
}

.w110 {
  width: 110px;
}

.w120 {
  width: 120px;
}

.w130 {
  width: 130px;
}

.w140 {
  width: 140px;
}

.w150 {
  width: 150px;
}

.w160 {
  width: 160px;
}

.w170 {
  width: 170px;
}

.w180 {
  width: 180px;
}

.w190 {
  width: 190px;
}

.w200 {
  width: 200px;
}

.w210 {
  width: 210px;
}

.w220 {
  width: 220px;
}

.w230 {
  width: 230px;
}

.w240 {
  width: 240px;
}

.w250 {
  width: 250px;
}

.w260 {
  width: 260px;
}

.w270 {
  width: 270px;
}

.w280 {
  width: 280px;
}

.w290 {
  width: 290px;
}

.w300 {
  width: 300px;
}

@media screen and (max-width: 570px) {
  .w10-sp {
    width: 10px;
  }
}

@media screen and (max-width: 570px) {
  .w20-sp {
    width: 20px;
  }
}

@media screen and (max-width: 570px) {
  .w30-sp {
    width: 30px;
  }
}

@media screen and (max-width: 570px) {
  .w40-sp {
    width: 40px;
  }
}

@media screen and (max-width: 570px) {
  .w50-sp {
    width: 50px;
  }
}

@media screen and (max-width: 570px) {
  .w60-sp {
    width: 60px;
  }
}

@media screen and (max-width: 570px) {
  .w70-sp {
    width: 70px;
  }
}

@media screen and (max-width: 570px) {
  .w80-sp {
    width: 80px;
  }
}

@media screen and (max-width: 570px) {
  .w90-sp {
    width: 90px;
  }
}

@media screen and (max-width: 570px) {
  .w100-sp {
    width: 100px;
  }
}

@media screen and (max-width: 570px) {
  .w110-sp {
    width: 110px;
  }
}

@media screen and (max-width: 570px) {
  .w120-sp {
    width: 120px;
  }
}

@media screen and (max-width: 570px) {
  .w130-sp {
    width: 130px;
  }
}

@media screen and (max-width: 570px) {
  .w140-sp {
    width: 140px;
  }
}

@media screen and (max-width: 570px) {
  .w150-sp {
    width: 150px;
  }
}

@media screen and (max-width: 570px) {
  .w160-sp {
    width: 160px;
  }
}

@media screen and (max-width: 570px) {
  .w170-sp {
    width: 170px;
  }
}

@media screen and (max-width: 570px) {
  .w180-sp {
    width: 180px;
  }
}

@media screen and (max-width: 570px) {
  .w190-sp {
    width: 190px;
  }
}

@media screen and (max-width: 570px) {
  .w200-sp {
    width: 200px;
  }
}

@media screen and (max-width: 570px) {
  .w210-sp {
    width: 210px;
  }
}

@media screen and (max-width: 570px) {
  .w220-sp {
    width: 220px;
  }
}

@media screen and (max-width: 570px) {
  .w230-sp {
    width: 230px;
  }
}

@media screen and (max-width: 570px) {
  .w240-sp {
    width: 240px;
  }
}

@media screen and (max-width: 570px) {
  .w250-sp {
    width: 250px;
  }
}

@media screen and (max-width: 570px) {
  .w260-sp {
    width: 260px;
  }
}

@media screen and (max-width: 570px) {
  .w270-sp {
    width: 270px;
  }
}

@media screen and (max-width: 570px) {
  .w280-sp {
    width: 280px;
  }
}

@media screen and (max-width: 570px) {
  .w290-sp {
    width: 290px;
  }
}

@media screen and (max-width: 570px) {
  .w300-sp {
    width: 300px;
  }
}

.w150 {
  width: 150px;
}

.w200 {
  width: 200px;
}

.w250 {
  width: 250px;
}

.w300 {
  width: 300px;
}

.w350 {
  width: 350px;
}

.w400 {
  width: 400px;
}

.w450 {
  width: 450px;
}

.w500 {
  width: 500px;
}

@media screen and (max-width: 570px) {
  .w150-sp {
    width: 150px;
  }
}

@media screen and (max-width: 570px) {
  .w200-sp {
    width: 200px;
  }
}

@media screen and (max-width: 570px) {
  .w250-sp {
    width: 250px;
  }
}

@media screen and (max-width: 570px) {
  .w300-sp {
    width: 300px;
  }
}

@media screen and (max-width: 570px) {
  .w350-sp {
    width: 350px;
  }
}

@media screen and (max-width: 570px) {
  .w400-sp {
    width: 400px;
  }
}

@media screen and (max-width: 570px) {
  .w450-sp {
    width: 450px;
  }
}

@media screen and (max-width: 570px) {
  .w500-sp {
    width: 500px;
  }
}

.w5p {
  width: 5%;
}

.w10p {
  width: 10%;
}

.w15p {
  width: 15%;
}

.w20p {
  width: 20%;
}

.w25p {
  width: 25%;
}

.w30p {
  width: 30%;
}

.w35p {
  width: 35%;
}

.w40p {
  width: 40%;
}

.w45p {
  width: 45%;
}

.w50p {
  width: 50%;
}

.w55p {
  width: 55%;
}

.w60p {
  width: 60%;
}

.w65p {
  width: 65%;
}

.w70p {
  width: 70%;
}

.w75p {
  width: 75%;
}

.w80p {
  width: 80%;
}

.w85p {
  width: 85%;
}

.w90p {
  width: 90%;
}

.w95p {
  width: 95%;
}

.w100p {
  width: 100%;
}

@media screen and (max-width: 570px) {
  .w5p-sp {
    width: 5%;
  }
}

@media screen and (max-width: 570px) {
  .w10p-sp {
    width: 10%;
  }
}

@media screen and (max-width: 570px) {
  .w15p-sp {
    width: 15%;
  }
}

@media screen and (max-width: 570px) {
  .w20p-sp {
    width: 20%;
  }
}

@media screen and (max-width: 570px) {
  .w25p-sp {
    width: 25%;
  }
}

@media screen and (max-width: 570px) {
  .w30p-sp {
    width: 30%;
  }
}

@media screen and (max-width: 570px) {
  .w35p-sp {
    width: 35%;
  }
}

@media screen and (max-width: 570px) {
  .w40p-sp {
    width: 40%;
  }
}

@media screen and (max-width: 570px) {
  .w45p-sp {
    width: 45%;
  }
}

@media screen and (max-width: 570px) {
  .w50p-sp {
    width: 50%;
  }
}

@media screen and (max-width: 570px) {
  .w55p-sp {
    width: 55%;
  }
}

@media screen and (max-width: 570px) {
  .w60p-sp {
    width: 60%;
  }
}

@media screen and (max-width: 570px) {
  .w65p-sp {
    width: 65%;
  }
}

@media screen and (max-width: 570px) {
  .w70p-sp {
    width: 70%;
  }
}

@media screen and (max-width: 570px) {
  .w75p-sp {
    width: 75%;
  }
}

@media screen and (max-width: 570px) {
  .w80p-sp {
    width: 80%;
  }
}

@media screen and (max-width: 570px) {
  .w85p-sp {
    width: 85%;
  }
}

@media screen and (max-width: 570px) {
  .w90p-sp {
    width: 90%;
  }
}

@media screen and (max-width: 570px) {
  .w95p-sp {
    width: 95%;
  }
}

@media screen and (max-width: 570px) {
  .w100p-sp {
    width: 100%;
  }
}

@media screen and (max-width: 825px) {
  br.pc {
    display: none;
  }
}

br.tablet {
  display: none;
}

@media screen and (min-width: 571px) and (max-width: 825px) {
  br.tablet {
    display: inline;
  }
}

br.sp {
  display: none;
}

@media screen and (max-width: 570px) {
  br.sp {
    display: inline;
  }
}

/* etc */
/* btn */
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.btn a, .btn input, .btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  max-width: 100%;
  height: 50px;
  padding-left: 10px;
  padding-right: 10px;
  background: #0044CC;
  font-size: 18px;
  font-size: 1.2857142857rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  border: none;
  color: #FFF;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  top: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 400px;
  margin: 0 auto;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn a:hover, .btn input:hover, .btn span:hover {
  text-decoration: none;
  background-color: #004de6;
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=70);
  opacity: 0.7;
}

.btn a.gray, .btn input.gray, .btn span.gray {
  background-color: #aaaaaa;
}

@media screen and (max-width: 570px) {
  .btn a, .btn input, .btn span {
    width: 100%;
  }
}

.btn.sp {
  display: none;
}

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

.btn.red a {
  background-color: #cb1b1b;
}

.btn.green a {
  background-color: #3a9e37;
}

.btn.orange a {
  background-color: #fca308;
}

.btn.pink a {
  background-color: #e87eb8;
}

.btn input {
  display: -moz-inline-box;
  display: inline-block;
}

.btn.tac a, .btn.tac input, .btn.tac span {
  margin-left: auto;
  margin-right: auto;
}

.btn-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0 -10px -15px;
}

.btn-block > * {
  margin: 0 10px 15px;
}

/* btn */
/* form */
input[type="text"], input[type="email"], input[type="tel"], input[type="password"] {
  -webkit-appearance: none;
  height: 40px;
  line-height: 40px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #b3b3b3;
  font-size: 14px;
  font-size: 1rem;
  position: relative;
  padding-left: 10px;
  background: #FFF;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="password"]:focus {
  background-color: #FFF;
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
  -ms-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
  -o-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
}

input[type="text"].lg, input[type="email"].lg, input[type="tel"].lg, input[type="password"].lg {
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  font-size: 1.2857142857rem;
}

textarea {
  -webkit-appearance: none;
  height: 250px;
  max-width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  resize: vertical;
  border: 1px solid #b3b3b3;
  background: #FFF;
  font-size: 14px;
  font-size: 1rem;
  padding: 10px;
}

textarea:focus {
  background-color: #FFF;
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
  -ms-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
  -o-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
}

textarea.h100 {
  height: 100px;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]:checked + .checkbox:after {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=100);
  opacity: 1;
  visibility: visible;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
}

input[type="radio"] {
  display: none;
}

input[type="radio"]:checked + .radio:after {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=100);
  opacity: 1;
  visibility: visible;
}

label.checkbox {
  padding-left: 30px;
  min-height: 20px;
  cursor: pointer;
  margin: 0;
  display: -moz-inline-box;
  display: inline-block;
  font-weight: normal;
  position: relative;
}

label.checkbox.single {
  width: 20px;
  padding-left: 0;
}

label.checkbox:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -11px;
  display: -moz-inline-box;
  display: inline-block;
  width: 21px;
  height: 21px;
  background-color: #FFF;
  border: 1px solid #b3b3b3;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}

label.checkbox:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 8px;
  margin-top: -7px;
  display: block;
  width: 5px;
  height: 10px;
  border-right: 2px solid #2f2f2f;
  border-bottom: 2px solid #2f2f2f;
  -webkit-transform: rotate(60deg);
  -moz-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  -o-transform: rotate(60deg);
  transform: rotate(60deg);
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
  z-index: 1;
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

label.radio {
  padding-left: 30px;
  min-height: 24px;
  cursor: pointer;
  margin: 0;
  display: -moz-inline-box;
  display: inline-block;
  font-weight: normal;
  position: relative;
}

label.radio.single {
  width: 20px;
  padding-left: 0;
}

label.radio:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -12px;
  display: -moz-inline-box;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #b3b3b3;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #FFF;
  -webkit-border-radius: 50% 50% 50% 50%;
  -moz-border-radius: 50% 50% 50% 50%;
  -ms-border-radius: 50% 50% 50% 50%;
  -o-border-radius: 50% 50% 50% 50%;
  border-radius: 50% 50% 50% 50%;
}

label.radio:after {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -8px;
  left: 4px;
  display: block;
  width: 12px;
  height: 12px;
  background-color: #b3b3b3;
  -webkit-border-radius: 50% 50% 50% 50%;
  -moz-border-radius: 50% 50% 50% 50%;
  -ms-border-radius: 50% 50% 50% 50%;
  -o-border-radius: 50% 50% 50% 50%;
  border-radius: 50% 50% 50% 50%;
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.check-radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-bottom: -5px;
}

.check-radios li {
  margin: 0 15px 5px 0;
}

label.select {
  position: relative;
  display: block;
  background-color: #FFF;
  max-width: 100%;
}

label.select:after {
  position: absolute;
  content: "";
  display: block;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #b3b3b3 transparent transparent transparent;
  right: 10px;
  top: 50%;
  margin-top: -3px;
  pointer-events: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 40px;
  width: 100%;
  line-height: 40px;
  max-width: 100%;
  padding: 0 40px 0 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #b3b3b3;
  outline: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-size: 1rem;
  font-weight: normal;
  position: relative;
}

select option {
  padding: 8px;
  border: none;
}

select.lg {
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  font-size: 1.2857142857rem;
}

select::-ms-expand {
  display: none;
}

/* form */
/* table */
table {
  width: 513px;
  background-color: #FFF;
  margin: 50px auto;
}

table th, table td {
  padding: 7px 20px;
  border: 1px solid #b3b3b3;
  vertical-align: middle;
  font-size: 12px;
  font-size: 0.8571428571rem;
}

table th {
  background-color: #F4F1EB;
  color: #2f2f2f;
}

table td {
  font-weight: normal;
  text-align: left;
  color: #2f2f2f;
}

table thead th {
  background-color: #b3b3b3;
  color: #FFF;
}

/* table */
/* text */
.heading, .heading-lv01, .heading-lv02, .heading-lv03 {
  margin-bottom: 20px;
}

.heading-lv01 {
  font-size: 24px;
  font-size: 1.7142857143rem;
}

.heading-lv02 {
  font-size: 20px;
  font-size: 1.4285714286rem;
}

.heading-lv03 {
  font-size: 17px;
  font-size: 1.2142857143rem;
}

.fs11 {
  font-size: 11px;
  font-size: 0.7857142857rem;
}

.fs12 {
  font-size: 12px;
  font-size: 0.8571428571rem;
}

.fs13 {
  font-size: 13px;
  font-size: 0.9285714286rem;
}

.fs14 {
  font-size: 14px;
  font-size: 1rem;
}

.fs15 {
  font-size: 15px;
  font-size: 1.0714285714rem;
}

.fs16 {
  font-size: 16px;
  font-size: 1.1428571429rem;
}

.fs17 {
  font-size: 17px;
  font-size: 1.2142857143rem;
}

.fs18 {
  font-size: 18px;
  font-size: 1.2857142857rem;
}

.fs19 {
  font-size: 19px;
  font-size: 1.3571428571rem;
}

.fs20 {
  font-size: 20px;
  font-size: 1.4285714286rem;
}

.fs21 {
  font-size: 21px;
  font-size: 1.5rem;
}

.fs22 {
  font-size: 22px;
  font-size: 1.5714285714rem;
}

.fs23 {
  font-size: 23px;
  font-size: 1.6428571429rem;
}

.fs24 {
  font-size: 24px;
  font-size: 1.7142857143rem;
}

.fs25 {
  font-size: 25px;
  font-size: 1.7857142857rem;
}

.fs26 {
  font-size: 26px;
  font-size: 1.8571428571rem;
}

.fs27 {
  font-size: 27px;
  font-size: 1.9285714286rem;
}

.fs28 {
  font-size: 28px;
  font-size: 2rem;
}

.fs29 {
  font-size: 29px;
  font-size: 2.0714285714rem;
}

.fs30 {
  font-size: 30px;
  font-size: 2.1428571429rem;
}

.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.red {
  color: #ef4a36;
}

.bold {
  font-weight: bold;
}

/* text */
.post {
  /* h1{
  @extend .h;
  @include remb(27);
  border-left: 3px solid $green;
  padding: 5px 0 5px 15px;
} */
}

.post .thumb {
  text-align: center;
  margin-bottom: 10px !important;
}

.post .thumb.mb {
  padding-top: 20px;
}

.post ul:not(:last-child) {
  margin-bottom: 30px;
}

.post ul li {
  list-style-type: none;
  text-indent: -1em;
  padding-left: 1em;
}

.post ul li:before {
  content: "\0030fb";
  margin-right: 0.5em;
}

.post ol {
  padding-left: 1.5em;
}

.post ol:not(:last-child) {
  margin-bottom: 30px;
}

.post ol li {
  list-style-type: decimal;
  padding-bottom: 5px;
}

.post ol li:last-child {
  padding-bottom: 0;
}

.post strong {
  font-weight: bold;
}

.post em {
  font-style: italic;
}

.post del {
  text-decoration: line-through;
  color: #f2f2f2;
}

.post blockquote {
  display: block;
  padding: 20px;
  -webkit-border-radius: 6px 6px 6px 6px;
  -moz-border-radius: 6px 6px 6px 6px;
  -ms-border-radius: 6px 6px 6px 6px;
  -o-border-radius: 6px 6px 6px 6px;
  border-radius: 6px 6px 6px 6px;
  border: 2px solid #b3b3b3;
  text-align: center;
}

.post blockquote:not(:last-child) {
  margin-bottom: 30px;
}

.post .h, .post h5 {
  line-height: 1.3;
  letter-spacing: 0.1em;
}

.post .h:not(:first-child), .post h5:not(:first-child) {
  margin-top: 30px;
}

.post .h:not(:last-child), .post h5:not(:last-child) {
  margin-bottom: 15px;
}

.post h2 {
  font-size: 22px;
  font-size: 1.5714285714rem;
  font-weight: bold;
  text-align: center;
  padding-bottom: 5px;
  line-height: 1.4;
  margin-bottom: 10px;
  color: #58c0f4;
  border-bottom: 1px solid #58c0f4;
}

.post h3 {
  font-size: 20px;
  font-size: 1.4285714286rem;
  font-weight: bold;
  background: #58c0f4;
  color: #fff;
  font-weight: bold;
  position: relative;
  padding: 15px 10px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  position: relative;
  margin-bottom: 30px;
  line-height: 1.3;
}

.post h3.radius {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}

.post h3.frame {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  padding: 8px;
}

.post h3.frame span {
  padding: 8px;
  border: solid 1px #FFF;
  display: block;
}

.post h3.border {
  padding: 0 0 0 15px;
  position: relative;
  background-color: #FFF;
  color: #2f2f2f;
  border-left: solid 5px #58c0f4;
}

.post h3.border.color {
  color: #58c0f4;
}

.post h3.underline {
  background-color: transparent;
  text-align: center;
  color: #2f2f2f;
  padding: 0 0 0 15px;
  border-bottom: solid 4px #eee;
  line-height: 1.7;
}

.post h4 {
  background: #58c0f4;
  padding: 10px;
  font-size: 18px;
  font-size: 1.2857142857rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFF;
}

.post h5 {
  font-size: 17px;
  font-size: 1.2142857143rem;
  font-weight: bold;
}

.post iframe {
  max-width: 100%;
}

.post .aligncenter {
  text-align: center;
  display: block;
  margin: 30px auto 0;
}

.post .alignright {
  text-align: right;
  float: right;
  display: block;
  margin: 0 0 10px 15px;
}

.post .alignleft {
  text-align: left;
  float: left;
  margin: 0 15px 10px 0;
}

.post .wp-caption:not(:last-child) {
  margin-bottom: 30px;
}

.post p:not(:last-child) {
  margin-bottom: 30px;
}

.post table:not(:last-child) {
  margin-bottom: 15px;
}

.post table td p {
  padding-bottom: 15px;
  line-height: 1.5;
}

.post table td p:last-child {
  padding-bottom: 0;
}

.post cite {
  border: 1px solid #b3b3b3;
  margin-top: 15px;
  padding: 10px;
  display: -moz-inline-box;
  display: inline-block;
}

.post cite:before, .post cite:after {
  content: "\00201d";
}

.post small {
  font-size: 12px;
  font-size: 0.8571428571rem;
}

.post .video-container {
  max-width: 640px;
  margin: 30px auto 0;
}

.post .box {
  width: 100%;
  margin: 0 auto;
  background: #d3f8ff;
  padding: 15px;
  line-height: 1.5em;
  letter-spacing: 0.03em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 18px;
  font-size: 1.2857142857rem;
  margin-bottom: 40px;
}

.post .box li:not(:last-child) {
  padding-bottom: 10px;
}

.post .box.blue {
  background: #d3f8ff;
}

.post .box.beige {
  background: #fffaf0;
}

.post .box.aqua {
  background: #d3f8ff;
}

.post .box.pink {
  background: #ffe4e1;
}

.post .box.gray {
  background: #f5f5f5;
}

.post .box p:not(:last-child) {
  margin-bottom: 10px;
}

.post .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.post .video iframe, .post .video object, .post .video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.post .left_talk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.post .icon_left {
  margin: 0 0.5em 0 0;
  line-height: 0;
  margin-bottom: 0 !important;
}

.post .icon_left img {
  width: 74px;
}

.post .balloon1-left {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin: 0.5em 0 0.5em 15px;
  padding: 1em 1.3em;
  min-width: 120px;
  max-width: 100%;
  /*-ms-flex: 1 0 auto;
  -webkit-flex-grow: 1;
  flex-grow: 1;*/
  min-height: 75px;
  color: #555;
  font-size: 16px;
  background: #f1f1f1;
  border-radius: 15px;
  width: auto;
  max-width:600px;
}

.post .balloon1-left:before {
  content: "";
  position: absolute;
  top: 40%;
  left: -30px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #f1f1f1;
}

.post .balloon1-left:after {
  display: none;
  content: "";
  position: absolute;
  top: 40%;
  left: -27px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #fff;
}

.post .balloon1-left.pink {
  background: #f5e5e8;
}

.post .balloon1-left.pink:before {
  border-right: 15px solid #f5e5e8;
}

.post .balloon1-left.aqua {
  background: #e5eef5;
}

.post .balloon1-left.aqua:before {
  border-right: 15px solid #e5eef5;
}

.post .balloon1-left.border {
  background: transparent;
  border: solid 2px #0094de;
}

.post .balloon1-left.border:before {
  border-right: 15px solid #0094de;
}

.post .balloon1-left.border:after {
  display: block;
}

.post .balloon1-left.border.pink {
  border: solid 2px #f19ca6;
}

.post .balloon1-left.border.pink:before {
  border-right: 15px solid #f19ca6;
}

.post .balloon1-left.border.green {
  border: solid 2px #93d2d3;
}

.post .balloon1-left.border.green:before {
  border-right: 15px solid #93d2d3;
}

.post .balloon1-left.border.yellow {
  border: solid 2px #fdca69;
}

.post .balloon1-left.border.yellow:before {
  border-right: 15px solid #fdca69;
}

.post .balloon1-left.border.gray {
  border: solid 2px #b5b6b6;
}

.post .balloon1-left.border.gray:before {
  border-right: 15px solid #b5b6b6;
}

.post .balloon1-left p {
  margin: 0 auto;
  padding: 0;
}

.post .right_talk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  flex-direction: row-reverse;
}

.post .icon_right {
  margin: 0  0 0 0.5em;
  line-height: 0;
  margin-bottom: 0 !important;
}

.post .icon_right img {
  width: 74px;
}

.post .balloon1-right {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin: 0.5em 15px 0.5em 0;
  padding: 1em 1.3em;
  min-width: 120px;
  max-width: 100%;
  min-height: 75px;
  color: #555;
  font-size: 16px;
  background: #f1f1f1;
  border-radius: 15px;
}

.post .balloon1-right:before {
  content: "";
  position: absolute;
  top: 40%;
  left: 100%;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 15px solid #f1f1f1;
}

.post .balloon1-right:after {
  display: none;
  content: "";
  position: absolute;
  top: 40%;
  left: 100%;
  margin-left: -3px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 15px solid #fff;
}

.post .balloon1-right.pink {
  background: #f5e5e8;
}

.post .balloon1-right.pink:before {
  border-left: 15px solid #f5e5e8;
}

.post .balloon1-right.aqua {
  background: #e5eef5;
}

.post .balloon1-right.aqua:before {
  border-left: 15px solid #e5eef5;
}

.post .balloon1-right.border {
  background: transparent;
  border: solid 2px #0094de;
}

.post .balloon1-right.border:before {
  border-left: 15px solid #0094de;
}

.post .balloon1-right.border:after {
  display: block;
}

.post .balloon1-right.border.pink {
  border: solid 2px #f19ca6;
}

.post .balloon1-right.border.pink:before {
  border-left: 15px solid #f19ca6;
}

.post .balloon1-right.border.green {
  border: solid 2px #93d2d3;
}

.post .balloon1-right.border.green:before {
  border-left: 15px solid #93d2d3;
}

.post .balloon1-right.border.yellow {
  border: solid 2px #fdca69;
}

.post .balloon1-right.border.yellow:before {
  border-left: 15px solid #fdca69;
}

.post .balloon1-right.border.gray {
  border: solid 2px #b5b6b6;
}

.post .balloon1-right.border.gray:before {
  border-left: 15px solid #b5b6b6;
}

.post .balloon1-right p {
  margin: 0 auto;
  padding: 0;
}

.post a.pc {
  display: inline;
}

.post a.pc img {
  display: block;
}

.post a.sp {
  display: none;
}

.post a.sp img {
  display: none;
}

@media screen and (max-width: 570px) {
  .post .alignright {
    max-width: 160px;
    height: auto;
    margin: 0 0 10px 10px;
  }
  .post .alignleft {
    max-width: 160px;
    height: auto;
    margin: 0 10px 10px 0;
  }
  .post a.pc {
    display: none;
  }
  .post a.pc img {
    display: none;
  }
  .post a.sp {
    display: inline;
  }
  .post a.sp img {
    display: block;
  }
}

.iv {
  opacity: 0;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* floating */
@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(30%);
  }
  100% {
    transform: translateY(0%);
  }
}

@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(30%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes flipIn {
  0% {
    opacity: 0;
    -webkit-transform: perspective(2000px) rotateY(90deg);
    transform: perspective(2000px) rotateY(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: perspective(2000px) rotateY(0);
    transform: perspective(2000px) rotateY(0);
  }
}

@keyframes flipIn {
  0% {
    opacity: 0;
    -webkit-transform: perspective(2000px) rotateY(90deg);
    -ms-transform: perspective(2000px) rotateY(90deg);
    transform: perspective(2000px) rotateY(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: perspective(2000px) rotateY(0);
    -ms-transform: perspective(2000px) rotateY(0);
    transform: perspective(2000px) rotateY(0);
  }
}

.flipIn {
  -webkit-animation-name: flipIn;
  animation-name: flipIn;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

/* AddQuicktag
------------------------------------------------------------*/
/* 左右レイアウト */
.layout-img-text:after {
	clear: both;
	content: '';
	display: block;
	margin-bottom: 1.5em;
}
.left_talk div[id*="attachment"] {
/*   	width: 45%; */
  	margin-right: 5%;
  	float: left;
	max-width: initial; 
}

.right_talk div[id*="attachment"] {
/*   	width: 45%; */
  	margin-right: 5%;
	float: right;
	max-width: initial; 
}
.left_talk div[id*="attachment"] img ,
.right_talk div[id*="attachment"] img{
	max-width: initial; 
}
.post .icon_left img ,
.post .icon_right img{
  max-width: initial;
}
@media screen and (max-width:400px){
.left_talk.taik_icon_b div[id*="attachment"] img{
  	width: 106px;
  	margin-right: 5%;
  	float: left;
	max-width: initial; 
}

.right_talk.taik_icon_b div[id*="attachment"] img{
  	width: 106px;
  	margin-right: 5%;
	float: right;
	max-width: initial; 
}
	.left_talk.taik_icon_b img {
		width: 350px;
	}
}
/*================================================
   チェックボックス
=================================================*/

.check-box {
	width: 90%;
	padding: 2% 5%;
}
input[type=radio], input[type=checkbox] {
	display: none;
}
.ad-checkbox {
	width: 100%;
	box-sizing: border-box;
	position: relative;
	display: inline-block;
	margin: 0 0 0;
	padding: 8px 12px 8px 42px;
	border-radius: 8px;
	vertical-align: middle;
	cursor: pointer;
}
.ad-checkbox:after {
	position: absolute;
	top: 50%;
	left: 15px;
	display: block;
	margin-top: -10px;
	width: 16px;
	height: 16px;
	border-radius: 6px;
	content: '';
}
.ad-checkbox:before {
	position: absolute;
	top: 50%;
	left: 21px;
	display: block;
	margin-top: -7px;
	width: 5px;
	height: 9px;
	content: '';
	opacity: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
input[type=checkbox]:checked + .ad-checkbox:before {
	opacity: 1;
}
.checkbox-g {
	background-color: #f6f7f8;
}
.checkbox-g:hover {
	background-color: #DFDFDF;
}
.checkbox-g:hover:after {
	border-color: #fff;
}
.checkbox-g:after {
	border: 2px solid #bbb;
}
.checkbox-g:before {
	border-right: 3px solid #555;
	border-bottom: 3px solid #555;
}
.checkbox-bl {
	background-color: #cceaf1;
}
.checkbox-bl:hover {
	background-color: #a8e2f1;
}
.checkbox-bl:hover:after {
	border-color: #fff;
}
.checkbox-bl:after {
	border: 2px solid #59d3f1;
}
.checkbox-bl:before {
	border-right: 3px solid #24c8f1;
	border-bottom: 3px solid #24c8f1;
}
.checkbox-pk {
	background-color: #ffecf5;
}
.checkbox-pk:hover {
	background-color: #ffdeee;
}
.checkbox-pk:hover:after {
	border-color: #fff;
}
.checkbox-pk:after {
	border: 2px solid #ff92c8;
}
.checkbox-pk:before {
	border-right: 3px solid #ff88c3;
	border-bottom: 3px solid #ff88c3;
}
.checkbox-pp {
	background-color: #e8e5ff;
}
.checkbox-pp:hover {
	background-color: #d5cfff;
}
.checkbox-pp:hover:after {
	border-color: #fff;
}
.checkbox-pp:after {
	border: 2px solid #b0a5ff;
}
.checkbox-pp:before {
	border-right: 3px solid #9789ff;
	border-bottom: 3px solid #9789ff;
}
.checkbox-gr {
	background-color: #d8f2db;
}
.checkbox-gr:hover {
	background-color: #b2e3b2;
}
.checkbox-gr:hover:after {
	border-color: #fff;
}
.checkbox-gr:after {
	border: 2px solid #88d89c;
}
.checkbox-gr:before {
	border-right: 3px solid #53ba6b;
	border-bottom: 3px solid #53ba6b;
}
.checkbox-or {
	background-color: #fff3c1;
}
.checkbox-or:hover {
	background-color: #ffeb99;
}
.checkbox-or:hover:after {
	border-color: #fff;
}
.checkbox-or:after {
	border: 2px solid #ffc065;
}
.checkbox-or:before {
	border-right: 3px solid #ffb040;
	border-bottom: 3px solid #ffb040;
}
/*====== 見出しパターン1 センタリング・背景ベタ ======*/
h3.title-01 {
	line-height: 1.7em;
  color: #000 !important;
}
h3.title-bg {
	background: #cccccc !important;
	text-align: center;
	margin-bottom: 3%;
	padding: 1% 0;
}
h3.title-bg-blue {
	background: #88D7FF !important;
	text-align: center;
	margin-bottom: 3%;
	padding: 1% 0;
}
h3.title-bg-pink {
	background: #FFB8DB !important;
	text-align: center;
	margin-bottom: 3%;
	padding: 1% 0;
}
h3.title-bg-purple {
	background: #C0ACFF !important;
	text-align: center;
	margin-bottom: 3%;
	padding: 1% 0;
}
h3.title-bg-green {
	background: #BAF08A !important;
	text-align: center;
	margin-bottom: 3%;
	padding: 1% 0;
}
h3.title-bg-orange {
	background: #FFBE51 !important;
	text-align: center;
	margin-bottom: 3%;
	padding: 1% 0;
}
/*====== 見出しパターン2 センタリング・アンダーライン ======*/
h3.title-borerb, h3.title-borerb-blue, h3.title-borerb-pink, h3.title-borerb-purple, h3.title-borerb-green, h3.title-borerb-orange {
	text-align: center;
	margin-bottom: 3%;
  background-color: #fff !important;
}
h3.title-borerb span.pattern2 {
	border-bottom: 1px solid #000 !important;
  color: #000 !important;
	padding-bottom: 1%;
}
h3.title-borerb-blue span.pattern2 {
	border-bottom: 1px solid #3b9cd4 !important;
	color: #3b9cd4 !important;
	padding-bottom: 1%;
}
h3.title-borerb-pink span.pattern2 {
	border-bottom: 1px solid #f277b4 !important;
	color: #f277b4;
	padding-bottom: 1%;
}
h3.title-borerb-purple span.pattern2 {
	border-bottom: 1px solid #9780e3 !important;
	color: #9780e3 !important;
	padding-bottom: 1%;
}
h3.title-borerb-green span.pattern2 {
	border-bottom: 1px solid #95d160 !important;
	color: #95d160 !important;
	padding-bottom: 1%;
}
h3.title-borerb-orange span.pattern2 {
	border-bottom: 1px solid #f2ad35 !important;
	color: #f2ad35 !important;
	padding-bottom: 1%;
}

/*====== 見出しパターン3 両サイドにラインを入れる ======*/
h3.title-border-black, h3.title-border-blue, h3.title-border-pink, h3.title-border-purple, h3.title-border-green, h3.title-border-orange {
	font-size: 140%;
	text-align: center;
	margin-bottom: 2%;
  background-color: #fff !important;
}

h3.title-border-black {
	color: #444;
	display: flex;
	align-items: center;
}
h3.title-border-black:before, h3.title-border-black:after {
	content: "";
	flex-grow: 1;
	height: 3px;
	background: #444;
	display: block;
}
h3.title-border-blue {
	color: #3b9cd4;
	display: flex;
	align-items: center;
}
h3.title-border-blue:before, h3.title-border-blue:after {
	content: "";
	flex-grow: 1;
	height: 3px;
	background: #3b9cd4;
	display: block;
}
h3.title-border-pink {
	color: #f277b4;
	display: flex;
	align-items: center;
}
h3.title-border-pink:before, h3.title-border-pink:after {
	content: "";
	flex-grow: 1;
	height: 3px;
	background: #f277b4;
	display: block;
}
h3.title-border-purple {
	color: #9780e3;
	display: flex;
	align-items: center;
}
h3.title-border-purple:before, h3.title-border-purple:after {
	content: "";
	flex-grow: 1;
	height: 3px;
	background: #9780e3;
	display: block;
}
h3.title-border-green {
	color: #95d160;
	display: flex;
	align-items: center;
}
h3.title-border-green:before, h3.title-border-green:after {
	content: "";
	flex-grow: 1;
	height: 3px;
	background: #95d160;
	display: block;
}
h3.title-border-orange {
	color: #f2ad35;
	display: flex;
	align-items: center;
}
h3.title-border-orange:before, h3.title-border-orange:after {
	content: "";
	flex-grow: 1;
	height: 3px;
	background: #f2ad35;
	display: block;
}
h3.title-border-black:before, h3.title-border-blue:before, h3.title-border-pink:before, h3.title-border-purple:before, h3.title-border-green:before, h3.title-border-orange:before {
	margin-right: .4em;
}
h3.title-border-black:after, h3.title-border-blue:after, h3.title-border-pink:after, h3.title-border-purple:after, h3.title-border-green:after, h3.title-border-orange:after {
	margin-left: .4em;
}
/*====== 見出しパターン4  見出し付きBOX ======*/
.h_box {
	width: 95%;
	margin: 0 auto;
	margin-bottom: 3%;
}
.h_box-gray {
	border: 1px solid #ccc;
}
.h_box-blue {
	border: 1px solid #3b9cd4;
}
.h_box-pink {
	border: 1px solid #f277b4;
}
.h_box-purple {
	border: 1px solid #9780e3;
}
.h_box-green {
	border: 1px solid #95d160;
}
.h_box-orange {
	border: 1px solid #f2ad35;
}

p.pattern-text {
  margin-bottom: 2.5rem;
  padding: 0 4%;
}
/*====== スクロール追加 ======*/
.scrollable-table table{
  border-collapse: collapse;
  margin: 0 auto 0;
  max-width: 100%;
}

.scrollable-table th{
  background-color: #eee;
  font-weight: bold;
}

.scrollable-table th.st_bg_p{
    background-color: #ffebff;
}

.scrollable-table th.st_bg_g{
    background-color: #d3f1d3;
}

.scrollable-table th.st_bg_b{
    background-color: #ebf2de;
}

.scrollable-table th.st_bg_o{
    background-color: #ffeeb7;
}

.scrollable-table td.st_text_y{
    color: #ffc000;
}

.scrollable-table th,
.scrollable-table td{
  border: solid 1px #030303;
  padding: 5px 1em;
  white-space: nowrap;
  text-align: center;
}

.scrollable-table {
  overflow-x: auto;
  max-width: 770px;
  margin: 0 auto 2em;
}

.scrollable-table::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #666;
}
.scrollable-table::-webkit-scrollbar{
  height: 15px;
}