/* Miligram overrides */
body {
  color:#333;
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-weight: 400;
}

.top-nav-links,
.side-nav,
h1, h2, h3, h4, h5, h6 {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    color: #363637;
  letter-spacing: 0.2rem;
}

a {
    color:#1a96d5;
    -webkit-transition:all 0.2s linear;
    transition:all 0.2s linear;
}

a:hover,
a:focus,
a:active  {
    color:#143467;
    -webkit-transition:all 0.2s easeout;
    transition:all 0.2s ease-out;
}

.side-nav a,
.top-nav-links a,
th a,
.actions a {
    color: #606c76;
}

.side-nav a:hover,
.side-nav a:focus,
.actions a:hover,
.actions a:focus {
    color:#2f85ae;
}

/* Utility */
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Main */
body {
    background: #fff;
}
.content {
    padding: 2rem 0;
    background: transparent;
    border-radius: 0.4rem;
}
.actions a {
    font-weight: bold;
    padding: 0 0.4rem;
}
th {
    white-space: nowrap;
}

/* Nav bar */
.top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    padding: 2rem;
    margin: 0 auto 2rem;
  background: #1a96d5;
}
.top-nav-title a {
    font-size: 2.4rem;
    color: #fff;
}
.top-nav-title span {
    color: #404041;
}
.top-nav-links a {
    margin: 0 0.5rem;
}
.top-nav-title a,
.top-nav-links a {
    font-weight: bold;
}

.side-nav-item {
    display: block;
    padding: 0.5rem 0;
}

/* View action */
.view.content .text {
    margin-top: 1.2rem;
}
.related {
    margin-top: 2rem;
}

/* Flash messages */
.message {
    padding: 1rem;

    background: #eff8ff;
    color: #2779bd;

    border-color: #6cb2eb;
    border-width: 1px;
    border-style: solid;
    border-radius: 4px;
    margin-bottom: 2rem;
}
.message.hidden {
    display: none;
}
.message.success {
    background: #e3fcec;
    color: #1f9d55;
    border-color: #51d88a;
}
.message.warning {
    background: #fffabc;
    color: #8d7b00;
    border-color: #d3b800;
}
.message.error {
    background: #fcebea;
    color: #cc1f1a;
    border-color: #ef5753;
}

/* Forms */
.input.radio,
.input.checkbox {
    margin-bottom: 2.0rem;
}
.input.radio input,
.input.checkbox input {
    margin: 0;
}
.input.radio label,
.input.checkbox label {
    margin: 0;
    display: flex;
    align-items: center;
}
.input.radio label > input,
.input.checkbox label > input {
    margin-right: 1.0rem;
}
.input.radio label:first-of-type {
    margin-bottom: 2.0rem;
}

input[type='email'],input[type='number'],input[type='password'],input[type='search'],input[type='tel'],input[type='text'],input[type='url'],input[type='color'],input[type='date'],input[type='month'],input[type='week'],input[type='datetime'],input[type='datetime-local'],input:not([type]),textarea,select{
  background-color:transparent;
  border:0.1rem solid #d1d1d1;
  border-radius:.4rem;
  box-shadow:none;
  box-sizing:inherit;
  height:4.5rem;
  padding:.6rem 1.0rem;
  width:100%
}

textarea {
  height: auto;
}

input[type='text'].input-small, input[type='date'].input-small {
  width: 150px;
}

input[type='text'].input-ml {
  margin-left: 1rem;
}

input[type='text'].input_num, input[type='number'].input_num {
  width: 150px;
}

.error-message {
  color: #b11a07;
  font-size: 1.2rem;
}

/* Paginator */
.paginator {
    text-align: right;
}
.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}
.pagination li {
    margin: 0 0.5rem;
}
.prev.disabled a,
.next.disabled a {
    cursor: not-allowed;
    color: #606c76;
}
.asc:after {
    content: " \2193";
}
.desc:after {
    content: " \2191";
}

/* Error */
.error-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
}

@media screen and (max-width: 640px) {
    .top-nav {
        margin: 0 auto;
    }
    .side-nav {
        margin-bottom: 1rem;
    }
    .heading {
        margin-bottom: 1rem;
    }
    .side-nav-item {
        display: inline;
        margin: 0 1.5rem 0 0;
    }
    .asc:after {
        content: " \2192";
    }
    .desc:after {
        content: " \2190";
    }
}

/*ここから*/
.main-color {
  color: #1a96d5;
}

.container {
  margin:0 auto;
  max-width:100%;
  padding:0 2.0rem;
  position:relative;
  width:100%
}

.nav-side ul {
  list-style: none;
  margin: 2rem 1rem;
}

.nav-side ul li {
  margin: 0;
  padding: 2rem;
  background: #1a96d5;
  border-bottom: 1px dotted #fff;
}

.nav-side ul li a {
  color: #fff;
}

/*Button*/
.button,button,input[type='button'],input[type='reset'],input[type='submit']{
  background-color:#1a96d5;
  border:transparent;
  border-radius:.4rem;color:#fff;
  cursor:pointer;
  display:inline-block;
  font-size:1.6rem;
  font-weight:400;
  height:3.8rem;
  letter-spacing:.2rem;
  line-height:3.8rem;
  padding:0 3.0rem;
  text-align:center;
  text-decoration:none;
  text-transform:uppercase;
  white-space:nowrap
}

.button:focus,.button:hover,button:focus,button:hover,input[type='button']:focus,input[type='button']:hover,input[type='reset']:focus,input[type='reset']:hover,input[type='submit']:focus,input[type='submit']:hover{
  background-color:#d9d9d9;
  border-color:#d9d9d9;
  color:#fff;
  outline:0
}

.button-color-yel {
  background: #f8ac00;
}

/*Form*/
.form-name {
  margin-bottom: 3rem;
  padding: 2rem 1rem;
  font-size: 2rem;
  letter-spacing: 0.2rem;
  background: #1a96d5;
  color: #fff;
  border-radius: 0.4rem;
  /* Thanks Stripe */
  box-shadow: 0 7px 14px 0 rgba(60, 66, 87, 0.1),
      0 3px 6px 0 rgba(0, 0, 0, 0.07);
}

.input-row {
  display: flex;
  width: 100%;
  align-items: baseline;
  margin-bottom: 1rem;
}

.input-row-title {
  padding-left: 1rem;
  font-size: 1.4rem;
}

.input-row-short {
  margin-bottom: 0;
}

.input-group {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 0;
}

.inputarea {
  padding: 1rem;
}

.input.radio label,
.input.checkbox label,
.radio label{
  margin: 0;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 400;
}

.checkbox label{
  margin: 0;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 400;
  padding-right: 2rem;
  margin-right: 1.0rem;
}

.checkbox label > input {
    margin-right: 1.0rem;
}

.checkbox-group {
  display: flex;
  align-content: stretch;
  flex-wrap: wrap;
}

.checkbox-group label{
  margin: 0;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 400;
  padding: 0.2rem 2rem;
  margin-right: 1.0rem;
}

input[type='checkbox'].checkbox-block {
  transform: scale(1.5);
}

.input.radio {
  display: flex;
  padding: 1rem 0 0;
  margin-bottom: -1.5rem;
}

.radio-small {
  padding-right: 2rem;
  margin: 0;
  padding-bottom: 0;
  align-items: baseline;
}

.radio-small:last-child {
  padding-right: 0;
}

::placeholder {
  color: #dbdbdb;
}

.radio-cm {
  padding-right: 2rem;
  margin: 0;
  padding-bottom: 0;
  align-items: baseline;
}

.radio-cm label {
  font-size: 1.8rem!important;
}

.radio-cm input[type='radio']{
  transform: scale(1.5);
}

.labeltext {
  font-size: 1.4rem;
}

.help-text {
  display: block;
  padding: 1rem;
  font-size: 1.2rem;
  background: #fafafa;
  color: #666;
}

.help-text-s {
  display: block;
  padding: 1rem;
  font-size: 1.2rem;
  background: #fafafa;
  color: #666;
  margin: -3rem 1rem 1rem;
}
.required-label {
  display: inline-block;
}

.required-label:after {
  content: '必須';
  background: #E16100;
  color: #fff;
  font-size: 1rem;
  margin-left: 1rem;
  padding: 0.1rem 1rem;
  
}

/*header*/

header {
  box-shadow: 0px 8px 5px -5px rgba(191, 191, 191, 0.1)
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  /*margin-top: 2rem;*/
  padding: 2rem 0;
}

.header-logo img {
  width: 100px;
}

.nav-menu-footer {
  text-align: center;
}

.nav-menu-footer li {
  display: inline-block;
  list-style: none;
  font-size: 1.2rem;
  padding: 0 0.5rem;
}

.copyright {
  padding: 2rem 0;
  text-align: center;
  font-size: 1.2rem;
}

.title {
  padding: 2rem 0;
  text-align: center;
  color: #143467;
  border-bottom: 2px solid #143467;
  position: relative;
  padding-bottom: 1.7rem;
}

.title:before {
  position: absolute;
  bottom: -3px;
  left: 30%;
  width: 40%;
  height: 4px;
  content: '';
  background: #1a96d5;
}

.title-block {
  padding: 1rem 0;
  text-align: center;
  background: #143467;
  color: #fff;
}

.title-en {
  font-size: 1.4rem;
  color: #ccc;
  display: block;
}

.img-small {
  height: 100px;
}

.img-middle {
  height: 150px;
}

/*ボタン*/
.btn-container {
  text-align: center;
  padding: 2rem;
}
.btn-container-sub {
  text-align: center;
  padding: 1rem;
  font-size: 1.2rem;
}
.btn{
  background-color:#1a96d5;
  border:transparent;
  border-radius: 50vh;
  color:#fff;
  cursor:pointer;
  display:inline-block;
  font-size:1.6rem;
  font-weight:500;
  height:5rem;
  letter-spacing:.2rem;
  line-height:5rem;
  padding:0 3.0rem;
  text-align:center;
  text-decoration:none;
  text-transform:uppercase;
  white-space:nowrap;
}
.btn:hover {
  background-color:#97d2ff;
}
.btn-m {
  width: 300px;
}
.btn-s {
  width: 200px;
}

.btn-second {
  background-color: #E16100;
}

.btn-second:hover {
  background-color: #dda073;
}
.btn-square{
  background-color:#E16100;
  border:transparent;
  border-radius: 0;
  color:#fff;
  cursor:pointer;
  display:inline-block;
  font-size:2rem;
  font-weight:500;
  height:5.5rem;
  letter-spacing:.2rem;
  line-height:5.5rem;
  padding:0 3.0rem;
  text-align:center;
  text-decoration:none;
  text-transform:uppercase;
  white-space:nowrap;
  width: 100%;
}

.btn-caption {
  background: #b11a07;
}

.btn-square-sub {
  background-color:#1a96d5;
  border:transparent;
  border-radius: 5px;
  color:#fff;
  cursor:pointer;
  display:inline-block;
  font-size:1.6rem;
  font-weight:500;
  height:4rem;
  margin: 0.2rem 0;
  letter-spacing:.2rem;
  line-height:4rem;
  padding:0 3.0rem;
  text-align:center;
  text-decoration:none;
  text-transform:uppercase;
  white-space:nowrap;
  width: 100%;
}

.btn-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-flex i {
  display: block;
  font-size: 2.6rem;
  padding: 0.5rem 0;
}

.btn-cube {
  background-color:#1a96d5;
  border:transparent;
  border-radius: 5px;
  color:#fff;
  cursor:pointer;
  display:flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size:1.2rem;
  font-weight:500;
  height:100px;
  margin: 0.2rem;
  letter-spacing:.1rem;
  padding:0 .5rem;
  text-align:center;
  text-decoration:none;
  text-transform:uppercase;
  white-space:normal;
  width: 200px;
}

.btn-text-ss {
  font-size: 1.2rem;
  letter-spacing:inherit;
}

.btn-back {
  padding: 2rem 1rem;
  font-size: 1.4rem;
}

.text {
  color: #1a96d5;
}

.text-point {
  color: #E16100;
}

.text-dark {
  color: #143467;
}

.text-warning {
  color: #b11a07
}

.text-white {
  color: #fff;
}

.text-large {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: .2rem;
}

.text-middle {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: .2rem;
}

.text-small-m {
  font-size: 1.4rem;
  line-height: 1.5rem;
}

.text-small {
  font-size: 1.2rem;
  line-height: 1.5rem;
}

.text-canption {
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
  padding: 0.5rem;
}

.text-num-large {
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: .2rem;
}
.text-num-middle {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: .2rem;
}

.text-weight {
  font-weight: 500;
}

.block {
  padding: 2rem 0;
}

.block-pd {
  padding: 2rem;
}

.block-pd-lr {
  padding: 0 2rem;
}

.block-md {
  margin: 2rem 0;
}

.block-border {
  padding: 2rem 0;
  border: 1px solid #f5f5f5;
}

.block-shadow {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.block-center {
  text-align: center;
}

.block-title {
  border-bottom: 2px solid #1a96d5;
  color: #143467;
  padding-bottom: 1rem;
}

.block-subtitle {
  border-bottom: 1px dotted #ccc;
  color: #143467;
  padding-bottom: 1rem;
  margin: 1rem 0;
}

.block-message-small {
  border-top: 1px dotted #ccc;
  border-bottom: 1px dotted #ccc;
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
  margin-bottom: 2rem;
  padding: 2rem;
}

.block-message-gray {
  background: #f5f5f5;
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
  margin-bottom: 2rem;
  padding: 2rem;
}

.block-message-caption {
  background: #F6CB3B;
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
  margin-bottom: 2rem;
  padding: 2rem;
}

.block-border-radius{
  padding: 0;
  border: 1px solid #143467;
  border-radius: 1rem;
}

.block-title-radius {
  background: #143467;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
  padding: 1rem 0;
  border-radius: 1rem 1rem 0 0;
}

.block-step-warp {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px dotted #ccc;
}

.block-step {
  font-size: 1.1rem;
  margin: 0 0.5rem;
  width: 80px;
  height: 80px;
  text-align: center;
  /*background: #f5f5f5;*/
  border-radius: 10px;
  border: 1px dotted #ccc;
  color: #666;
  padding: 0.5rem;
}

.block-step-ac {
  background: #1a96d5;
  color: #fff;
  border: 1px dotted #1a96d5;;
}

.block-step-no {
  font-size: 1.6rem;
  font-weight: 500;
}

.step-text {
}

.i-block{
  display: block;
}

.i-middle {
  width: 25px;
  font-size: 1.2rem;
}

.list, .list-view {
  list-style: none;
}
.list li {
  padding: 1rem 0 0;
  border-bottom: 1px dotted #ccc;
  margin: 0;
  font-size: 1.7rem;
  letter-spacing: .1rem;
  font-weight: 500;
}

.list-f-s li {
  font-size: 1.6rem;
}

.list-f-s li.li-name {
  font-size: 1.7rem;
  border-bottom: 2ps solid #ccc;
  padding-bottom: 1rem;
  font-weight: 500;
}

.list li span.li-title {
  display: inline-block;
  width: 40%;
  margin-right: 1rem;
  padding: 0.3rem;
  font-size: 1.4rem;
  font-weight: 400;
}

.list li span.li-title-block {
  display: block;
}

.list li span.s-text {
  font-size: 1.4rem;
}

.list li span i {
  width: 2rem;
  padding: 0.2rem 0.5rem 0.2rem 0;
}

.list-view li {
  padding: 1rem 0 0;
  border-bottom: 1px dotted #ccc;
  margin: 0;
  font-size: 1.8rem;
  letter-spacing: .1rem;
}

.list-view li span {
  display: block;
  font-size: 1.2rem;
  color: #ccc;
}

.bgcolor-normal {
  background: #1a96d5;
}

.table-small {
  overflow-x:hidden;
  margin: 0;
}

.table-small th {
  font-size: 1.4rem;
  padding: 1rem;
  font-weight: 400;
}

.table-small td {
  font-size: 1.4rem;
  padding: 1rem;
  margin: 0;
}

.p-item {
  padding: 1rem 0;
}

.p-item-s {
  padding: 0.5rem 0;
}

.item-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.item-status {
  background: #f5f5f5;
  font-size: 2rem;
  letter-spacing: 0.2rem;
  font-weight: 500;
  color: #ccc;
  display: inline-block;
  padding: 2rem;
}

.item-status-on {
  color: #1a96d5;
  
}

.link-map a {
  display: inline-block;
  font-size: 1rem;
  background: #1a96d5;
  color: #fff;
  padding: 0 0.5rem;
  border-radius: 5px;
  margin-left: 1rem;
}


.block-sentence {
  padding: 3rem;
  font-size: 1.4rem;
}

.block-sentence p {
  padding: 1rem 0;
}

.line-bottom {
  border-bottom: 1px dotted #ccc;
}
/*　ハンバーガーメニューボタン　*/
.nav-menu-bar {
  display : block;
  position: fixed;
  z-index : 3;
  right : 20px;
  top   : 20px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.nav-menu-bar span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #1a96d5;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.nav-menu-bar span:nth-child(1) {
  top: 10px;
}
.nav-menu-bar span:nth-child(2) {
  top: 20px;
}
.nav-menu-bar span:nth-child(3) {
  top: 30px;
}

/* スマホメニューを開いてる時のボタン */
.nav-menu-bar.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  background :#fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.nav-menu-bar.active span:nth-child(2),
.nav-menu-bar.active span:nth-child(3) {
  top: 16px;
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

/* メニュー背景　*/
nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #fff;
  background: rgba(20, 52, 103, 0.8);
  /*text-align: center;*/
  width: 100%;
  transform: translateX(-100%);
  transition: all 0.6s;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0 2rem;
  margin: 0;
  width: 100%;
  transition: .4s all;
  border-bottom: 1px solid #fff;
  font-weight: 500;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li:hover{
  background :#1a96d5;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration :none;
}

nav.globalMenuSp ul li i {
  padding-right: 2rem;
}

nav.globalMenuSp ul li.menu {
  background: #143467;
  color: #fff;
  padding: 2rem;
}

/* クリックでjQueryで追加・削除 */
nav.globalMenuSp.active {
  opacity: 100;
  display: block;
   transform: translateX(0%);
}

.terms-link {
  font-size: 1.8rem;
  padding: 1rem 0;
}

.terms-check {
  padding: 1rem 3rem;
  margin: 3rem 1rem;
  background: #143467;
  color: #fff;
  display: block;
  border-radius: 10px;
  font-size: 1.4rem;
  height: 50px;
  width: 250px;
  line-height: 2.8rem;
}

.label-terms-check {
  font-size: 1.5rem;
  display: block;
  width: 100%;
  height: 50px;
}

input[type='checkbox'].input-check-b {
  transform: scale(2);
  margin: 0 20px 0 0;
}

.thunder {
  position: absolute; /* 基準位置とする */
  width: 15px;        /* 適当な幅を指定 */
  height: 35px;       /* 適当な高さを指定 */
  left: 50%;
}

.thunder::before,
.thunder::after {
  content: "";  /* 疑似要素に必須 */
  width: 10px;  /* 三角の幅を指定 */
  height: 15px; /* 三角の高さを指定 */
  display: inline-block; /* インラインブロック要素にする */
  position: absolute; /* 相対位置に指定 */
  transform: skewX(-5deg); /* マイナス10度傾ける */
}

.thunder::before {
  background: linear-gradient(to top left, rgba(255,255,255,0) 50%, #143467 50.5%) no-repeat top left/100% 100%; /* 直角三角形を作る */
  bottom: 2px; /* 下から0pxの位置に配置 */
  right: 0;  /* 右から0pxの位置に配置 */
}

.thunder::after {
  background: linear-gradient(to bottom right, rgba(255,255,255,0) 50%, #143467 50.5%) no-repeat top left/100% 100%; /* 直角三角形を作る */
  top: 2px;  /* 上から0pxの位置に配置 */
  left: 0; /* 左から0pxの位置に配置 */
}



.block-information {
  border-bottom: 1px dotted #ccc;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  margin-bottom: 2rem;
  padding: 2rem;
  font-weight: 500;
}

.badge-info {
  background: #E16100;
  font-size: 1rem;
  padding: 0.1rem 1rem;
  margin: 0 1rem;
  color: #fff;
}

.badge-blue {
  background: #143467;
}

.title-info {
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 1rem;
  border-bottom: 1px dotted #ccc;
  color: #143467;
  padding-bottom: 1rem;
  letter-spacing: 0.2rem;
}

.p-info {
  margin: 0 1rem;
  padding: 1rem 0;
}

.p-info-s {
  margin: 0 1rem;
  font-size: 1rem;
  color: #666;
  text-align: right;
  padding: 1rem 0;
}

.block-info-content {
  padding: 2rem;
  line-height: 3.5rem;
  border-bottom: 1px dotted #ccc;
}

/*QA*/
.block-qa {
  margin: 2rem 0;
  padding: 1rem;
}

.block-qabtn {
  border: 1px solid #1a96d5;
  border-radius: 10px;
  padding: 1rem;
  margin: 1rem;
}

.block-qa-category {
  background: #1a96d5;
  color: #fff;
  font-size: 2rem;
  padding: 1rem 2rem;
}

.block-qa-content {
  position: relative;
  display: block;
  padding: 1rem 1rem 1rem 5rem;
  letter-spacing: 0.2rem;
  border-bottom: 1px dotted #ccc;
}

.block-qa-title {
  font-size: 1.8rem;
  color: #143467;
}

.block-qa-q {
  position: absolute;
  font-size: 3rem;
  color: #143467;
  top:0;
  left: 0;
}

.block-qa-a {
  position: absolute;
  font-size: 3rem;
  color: #143467;
  top:0;
  left: 0;
}

a.btn-qa {
}

.block-contact {
  border-bottom: 1px dotted #ccc;
  letter-spacing: 0.2rem;
  margin-bottom: 2rem;
  padding: 2rem;
}

.btn-top {
  position: relative;
  display: flex;
  margin-bottom: 1rem;
}

.btn-lo {
  position: absolute;
  top:0.2rem;
  right: 1rem;
}