@charset "UTF-8";
/* //////////////////////////////////////////////////

  サイトで共有するパーツのスタイル

////////////////////////////////////////////////// */
/* inview */
.inview {
  opacity: 0;
  transition: all .5s;
  transform: translateY(10px);
}
.inview.view {
  opacity: 1;
  transform: none;
}

/* page title */
.pagettl {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 145px;
  background: #1453A1;
  color: #fff;
  line-height: 1.2;
}
.pagettl .en {
  font-family: 'Roboto', sans-serif;
  font-size: 3.5rem;
  letter-spacing: 0.05em;
}
.pagettl .ja {
  margin-top: 0.3em;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .pagettl {
    height: 70px;
  }
  .pagettl .en {
    font-size: 3rem;
  }
  .pagettl .ja {
    margin-top: 0.1em;
    font-size: 1.4rem;
  }
}

/* title */
.ttl {
  margin-bottom: 0.9em;
  background: url("../img/common/mrk_title.png") no-repeat left center;
  background-size: 22px;
  padding-left: 28px;
  color: #1453A1;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .ttl {
    background-size: 16px;
    padding-left: 20px;
  }
}

.h3 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 210px;
  height: 35px;
  padding: 0 30px;
  background: #1453A1;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .h3 {
    min-width: 160px;
    height: 30px;
  }
}

/* table */
.table {
  width: 100%;
}
.table th, .table td {
  padding: 15px 20px;
  border: 1px solid #D8D8D8;
}
.table th {
  background: #1453A1;
  color: #fff;
  text-align-last: justify;
  text-justify: inter-ideograph;
  white-space: nowrap;
}
.table tr:nth-child(odd) td {
  background: #FAFAFA;
}
@media screen and (max-width: 768px) {
  .table th, .table td {
    padding: 15px;
  }
}

.table_wrap {
  overflow-x: auto;
}
.table_wrap .table tr:nth-child(odd) td {
  background: #fff;
}
.table_wrap .table tr td:nth-child(even) {
  background: #FAFAFA;
}

/* SQ x 4C */
#sq4c {
  padding-top: 40px;
  padding-bottom: 40px;
  background: linear-gradient(105deg, #1453A1 50%, #F2F2F2 0);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
#sq4c > div {
  width: 42%;
}
#sq4c .blue {
  color: #fff;
}
#sq4c h3 {
  position: relative;
  margin-bottom: 1.45em;
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.2;
}
#sq4c h3::after {
  position: absolute;
  bottom: -.75em;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 50px;
  height: 1px;
  background: #fff;
}
#sq4c .txt {
  margin-bottom: 50px;
  font-size: 2.3rem;
  line-height: 1.6;
}
#sq4c ul li {
  display: flex;
  align-items: center;
  padding: 20px 0;
  text-align: left;
}
#sq4c ul li + li {
  border-top: 1px dotted #666;
}
#sq4c ul li .en {
  width: 50%;
  color: #1453A1;
  font-size: 4.2rem;
  font-family: 'Roboto', sans-serif;
  line-height: 1.1;
  letter-spacing: 0.05em;
}
#sq4c ul li .ja {
  width: 50%;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  #sq4c {
    padding-bottom: 25px;
    background: linear-gradient(170deg, #1453A1 47.5%, #F2F2F2 0);
    flex-direction: column;
  }
  #sq4c > div {
    width: 100%;
  }
  #sq4c .blue {
    margin-bottom: 80px;
  }
  #sq4c h3::after {
    width: 40px;
  }
  #sq4c .txt {
    margin-bottom: 40px;
  }
  #sq4c ul {
    display: inline-block;
    min-width: 360px;
  }
  #sq4c ul li {
    padding: 15px 0;
  }
  #sq4c ul li .en {
    font-size: 3.6rem;
  }
  #sq4c ul li .ja {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 560px) {
  #sq4c {
    background: linear-gradient(170deg, #1453A1 44%, #F2F2F2 0);
  }
  #sq4c .txt {
    margin-bottom: 30px;
  }
  #sq4c ul {
    display: inline-block;
    min-width: 280px;
  }
}


