html {
  font-size: 62.5%; /* sets the base font to 10px for easier math */
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1;
  font-size: 14px;
  color: #333;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media (min-width: 769px) {
  body {
    font-size: 16px;
  }
}
@media (max-width: 350px) {
  body {
    font-size: 12px;
  }
}

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

p, li, span, dt, dd {
  line-height: 1.7;
}

.t-pb {
  padding-bottom: 20px;
}
@media (min-width: 769px) {
  .t-pb {
    padding-bottom: 30px;
  }
}

.t-mt {
  margin-top: 20px;
}
@media (min-width: 769px) {
  .t-mt {
    margin-top: 30px;
  }
}

.t-right {
  text-align: right;
}

.t-left {
  text-align: left;
}

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

/* -------------------------------------
common
----------------------------------------*/
a {
  color: inherit;
}

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

.ib {
  display: inline-block;
}

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

strong {
  font-weight: 600;
}

.mode_pc,
.mode_pc_ib {
  display: none;
}

.mode_sp {
  display: block;
}

.mode_sp_ib {
  display: inline-block;
}

.tel a, .mail a {
  pointer-events: auto;
  cursor: pointer;
}

.bgImage {
  width: 100%;
  max-width: auto;
  max-width: inherit;
}

.imageContent {
  text-align: center;
}

.bgContent {
  background-color: #F5FBFF;
}

.mover {
  transition: opacity 0.2s ease-out;
  backface-visibility: hidden;
  zoom: 1;
}
.mover:hover {
  opacity: 0.7;
}

.inner {
  padding: 0 4.8%;
}

.contentWrap {
  padding: 58px 0 100px;
}
@media (min-width: 1000px) {
  .contentWrap {
    padding: 80px 0 200px;
  }
}

.textBase {
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.textBase a.link {
  text-decoration: underline;
}
.textBase + .textBase {
  padding-top: 1em;
}

.anchor {
  margin-top: -60px;
  padding-top: 60px;
}

@media (min-width: 768px) {
  .tel a, .mail a {
    pointer-events: none;
  }
  .inner {
    width: 90%;
    max-width: 1080px;
    margin: auto;
    padding: 0;
  }
  .anchor {
    margin-top: -70px;
    padding-top: 70px;
  }
}
@media (min-width: 1000px) {
  .mode_pc {
    display: block;
  }
  .mode_pc_ib {
    display: inline-block;
  }
  .mode_sp,
  .mode_sp_ib {
    display: none;
  }
  .textBase {
    line-height: 1.8;
  }
  .textBase.t-center {
    text-align: center;
  }
}
/*
header
---------------------------*/
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 15px 10px 14px;
  background-color: #fff;
  z-index: 20;
  transition: 0.5s ease;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1607843137);
  /*
  #contentNav
  ---------------------------*/
}
header.is-fixed {
  position: fixed;
  transition: all 1000ms;
  transform: translate(0, -5px);
}
header #headerInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .siteNameBox {
  z-index: 10;
}
header .siteNameBox a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
header .siteNameBox span {
  text-align: left;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-size: 11px;
}
header .siteNameBox img {
  margin-right: 10px;
}
header .siteName {
  width: 160px;
  vertical-align: middle;
}
header.open {
  height: 100%;
}
header .snsLink {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 60px;
}
header .snsLink p + p {
  margin-left: 10px;
}
header .snsLink img {
  width: 20px;
}
header .snsLink .youtube img {
  width: 30px;
}
header #contentNav {
  position: fixed;
  top: 62px;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  background-image: linear-gradient(90deg, #036EB8, #1D2088);
  color: #fff;
  height: 100%;
  overflow-y: auto;
}
header #contentNav .inner {
  height: 100%;
}
header #contentNav .navInner {
  text-align: left;
  padding: 10px 0 20px;
  overflow-y: auto;
}
header #contentNav .navInner .childMenu {
  display: none;
  position: relative;
}
header #contentNav .navInner .childMenu ul {
  padding-bottom: 15px;
}
header #contentNav .navInner .childMenu li {
  padding: 0;
  border-bottom: 1px solid #fff;
}
header #contentNav .navInner .childMenu li a {
  position: relative;
}
header #contentNav .navInner .childMenu li a:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8px;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border: 1px solid;
  background: none;
  border-color: transparent transparent #fff #fff;
  transform: rotate(-135deg);
  margin: auto;
}
header #contentNav .navInner .single {
  display: block;
}
header #contentNav .navInner a {
  cursor: pointer;
  display: block;
  padding: 10px 2%;
}
header #contentNav .navInner .trigger {
  position: relative;
}
header #contentNav .navInner .trigger a {
  position: relative;
  padding-left: 20px;
}
header #contentNav .navInner .trigger a:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border: 1px solid;
  background: none;
  border-color: transparent transparent #fff #fff;
  transform: rotate(-135deg);
  margin: auto;
}
header #contentNav .navInner .trigger a, header #contentNav .navInner .trigger .single {
  font-size: 16px;
  font-weight: 600;
  margin-right: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
}
header #contentNav .navInner .trigger .triggerBtn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 60px;
  height: 60px;
  margin: auto;
  z-index: 2;
}
header #contentNav .navInner .trigger .triggerBtn:after, header #contentNav .navInner .trigger .triggerBtn:before {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  left: auto;
  margin: auto;
  content: "";
  width: 16px;
  height: 1px;
  background-color: #fff;
  transition-duration: 0.4s;
}
header #contentNav .navInner .trigger .triggerBtn:after {
  transform: rotate(90deg);
}
header #contentNav .navInner .open .trigger .triggerBtn:after {
  transform: none;
}
@media (min-width: 1000px) {
  header {
    padding: 18px 20px 17px;
  }
  header.is-fixed {
    position: fixed;
    transition: all 1000ms;
    transform: translate(0, -4px);
  }
  header .siteName {
    width: 250px;
  }
  header #contentNav {
    top: 80px;
    padding-top: 100px;
  }
  header #contentNav .navInner {
    padding-bottom: 100px;
  }
  header #contentNav .navInner a, header #contentNav .navInner .single {
    padding: 20px;
  }
  header #contentNav .navInner > div {
    display: flex;
    justify-content: space-between;
  }
  header #contentNav .navInner > div > div {
    width: calc((100% - 30px) / 2);
  }
  header #contentNav .navInner > div + div {
    padding-top: 100px;
  }
  header #contentNav .navInner > div:last-of-type {
    padding-bottom: 100px;
  }
  header #contentNav .navInner .childMenu {
    display: block !important;
  }
  header #contentNav .navInner .trigger a {
    padding-left: 24px;
  }
  header #contentNav .navInner .trigger a:before {
    width: 12px;
    height: 12px;
    border: 2px solid;
    border-color: transparent transparent #fff #fff;
  }
  header #contentNav .navInner .trigger .single {
    padding-left: 0;
  }
  header #contentNav .navInner .trigger a, header #contentNav .navInner .trigger .single {
    font-size: 24px;
    margin-right: 0;
  }
  header #contentNav .navInner .trigger .triggerBtn {
    display: none;
  }
  header #contentNav .navInner .trigger .triggerBtn:before, header #contentNav .navInner .trigger .triggerBtn:after {
    content: none;
  }
  header .snsLink {
    display: flex;
    justify-content: center;
    padding-right: 90px;
  }
  header .snsLink p + p {
    margin-left: 30px;
  }
  header .snsLink img {
    width: auto;
  }
  header .snsLink .youtube img {
    width: auto;
  }
}

#menu_btn {
  position: absolute;
  top: 0;
  right: 0;
  margin: auto;
  cursor: pointer;
  text-align: center;
  background-image: linear-gradient(90deg, #036EB8, #1D2088);
  width: 58px;
  height: 58px;
  cursor: pointer;
}
#menu_btn p {
  color: #fff;
  font-size: 14px;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}
#menu_btn div {
  position: relative;
  width: 40px;
  height: 10px;
  margin: 12px 10px 5px;
}
#menu_btn span {
  position: absolute;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: #fff;
  transition: all 0.4s;
  margin: auto;
}
#menu_btn span:nth-of-type(1) {
  top: 0;
}
.open #menu_btn span:nth-of-type(1) {
  right: 0;
  width: 30px;
  -webkit-transform: translateY(4px) rotate(-45deg);
  transform: translateY(4px) rotate(-45deg);
}
#menu_btn span:nth-of-type(2) {
  width: 17px;
  top: auto;
  bottom: 0;
}
.open #menu_btn span:nth-of-type(2) {
  right: 0;
  width: 30px;
  -webkit-transform: translateY(-4px) rotate(45deg);
  transform: translateY(-4px) rotate(45deg);
}
@media (min-width: 1000px) {
  #menu_btn {
    width: 80px;
    height: 80px;
  }
  #menu_btn p {
    font-size: 18px;
  }
  #menu_btn div {
    width: 50px;
    height: 15px;
    margin: 25px 15px 5px;
  }
  #menu_btn span {
    position: absolute;
    left: 0;
    width: 50px;
    height: 3px;
  }
  .open #menu_btn span:nth-of-type(1) {
    width: 40px;
    -webkit-transform: translateY(4px) rotate(-45deg);
    transform: translateY(4px) rotate(-45deg);
  }
  #menu_btn span:nth-of-type(2) {
    width: 25px;
  }
  .open #menu_btn span:nth-of-type(2) {
    width: 40px;
    -webkit-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
  }
}

.pagetop {
  display: none;
  position: fixed;
  z-index: 11;
  bottom: 0;
  right: 0;
  background-color: #036EB8;
  opacity: 0.9;
}
.pagetop a {
  display: block;
  width: 40px;
  height: 40px;
}
.pagetop:before {
  content: "";
  width: 15px;
  height: 15px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(-45deg);
  position: absolute;
  bottom: 8px;
  right: 12px;
}

/*
footer
---------------------------*/
footer {
  position: relative;
  background-color: #F5FBFF;
  padding: 30px 4.8%;
}
footer .siteNameBox {
  padding-bottom: 15px;
}
footer .snsLink {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 30px;
}
footer .snsLink p + p {
  margin-left: 15px;
}
footer .snsLink img {
  width: 25px;
}
footer .snsLink .youtube img {
  width: 30px;
}
footer .copy {
  color: #999;
  font-weight: 300;
  font-size: 12px;
  text-align: right;
}
footer .sitemap {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 0;
}
footer .sitemap li {
  width: calc((100% - 10px) / 2);
}
footer .sitemap li a {
  display: block;
  padding: 5px 0;
}
footer .sitemap li:nth-of-type(odd) {
  margin-right: 10px;
}
@media (min-width: 1000px) {
  footer {
    padding: 60px;
  }
  footer .footerInner {
    display: flex;
    justify-content: space-between;
  }
  footer .footerInner > div {
    width: 45%;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
  footer .footerInner > div > * {
    width: 100%;
  }
  footer .siteNameBox {
    padding-bottom: 30px;
  }
  footer .snsLink {
    display: flex;
    justify-content: flex-end;
    padding-top: 0;
  }
  footer .snsLink p + p {
    margin-left: 30px;
  }
  footer .snsLink img {
    width: auto;
  }
  footer .snsLink .youtube img {
    width: auto;
  }
  footer .copyWrap {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }
  footer .copy {
    font-size: 14px;
    transform: none;
  }
  footer .sitemap {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0;
  }
  footer .sitemap li {
    width: calc((100% - 60px) / 3);
  }
  footer .sitemap li a {
    display: block;
    padding: 5px 0;
  }
  footer .sitemap li + li, footer .sitemap li:nth-of-type(odd) {
    margin-right: 30px;
  }
  footer .sitemap li:nth-of-type(3n) {
    margin-right: 0;
  }
}

#lowerContent {
  padding-top: 50px;
}
@media (min-width: 769px) {
  #lowerContent {
    padding-top: 100px;
  }
}

.contentBox + .contentBox {
  padding-top: 50px;
}
@media (min-width: 769px) {
  .contentBox + .contentBox {
    padding-top: 100px;
  }
}

.innerBox + .innerBox {
  padding-top: 30px;
}
@media (min-width: 769px) {
  .innerBox + .innerBox {
    padding-top: 60px;
  }
}

/*
topic
---------------------------*/
#topic {
  position: absolute;
  top: 10px;
  text-align: left;
  z-index: 1;
}
#topic p {
  display: inline-block;
  font-size: 11px;
  line-height: 1;
}
#topic p + p {
  position: relative;
  padding-left: 18px;
  margin-left: 4px;
}
#topic p + p:before {
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  width: 8px;
  height: 8px;
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
}
@media (min-width: 769px) {
  #topic {
    top: 20px;
    margin-bottom: 50px;
  }
  #topic p {
    font-size: 12px;
  }
  #topic p + p {
    padding-left: 22px;
    margin-left: 10px;
  }
}

/*
#mainVisualLower
---------------------------*/
#mainVisualLower {
  background-image: linear-gradient(90deg, #036EB8, #1D2088);
  color: #fff;
}
#mainVisualLower .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  height: 180px;
}
#mainVisualLower h1 {
  position: relative;
  font-size: 26px;
  line-height: 1.4;
  font-weight: 600;
  z-index: 2;
}
#mainVisualLower .designTitle {
  position: absolute;
  right: 4.8%;
  bottom: 0;
  font-family: "Outfit", sans-serif;
  color: rgba(255, 255, 255, 0.3);
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
  z-index: 1;
}
@media (min-width: 1000px) {
  #mainVisualLower .inner {
    height: 360px;
  }
  #mainVisualLower h1 {
    font-size: 41px;
  }
  #mainVisualLower .designTitle {
    right: 0;
    font-size: 120px;
  }
}
@media (max-width: 350px) {
  #mainVisualLower h1 {
    font-size: 24px;
  }
  #mainVisualLower .designTitle {
    font-size: 46px;
  }
}

/*
contentTitle
---------------------------*/
.contentTitle {
  position: relative;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.contentTitle:before, .contentTitle:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
}
.contentTitle:after {
  right: 0;
  margin: auto;
  width: 100%;
  background-color: #ccc;
}
.contentTitle:before {
  width: 50px;
  background-color: #036EB8;
  z-index: 2;
}
.contentTitle .subTitle {
  display: block;
  font-weight: 600;
  font-size: 16px;
  padding-bottom: 5px;
}
@media (min-width: 769px) {
  .contentTitle {
    font-size: 31px;
    padding-bottom: 15px;
    margin-bottom: 30px;
  }
  .contentTitle:before, .contentTitle:after {
    height: 4px;
  }
  .contentTitle:before {
    width: 100px;
  }
  .contentTitle .subTitle {
    font-size: 18px;
  }
}

/*
contentInnerTitle
---------------------------*/
.contentInnerTitle {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  padding-left: 20px;
  margin-bottom: 20px;
}
.contentInnerTitle:before, .contentInnerTitle:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background-color: #036EB8;
  position: absolute;
  top: 0;
  left: 0;
}
.contentInnerTitle:after {
  background-color: #1D2088;
  top: auto;
  bottom: 0;
}
@media (min-width: 769px) {
  .contentInnerTitle {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

/*
contentInnerTitle02
---------------------------*/
.contentInnerTitle02 {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  padding-left: 20px;
  margin-bottom: 15px;
}
.contentInnerTitle02:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background-color: #036EB8;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media (min-width: 769px) {
  .contentInnerTitle02 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

/*
btn
---------------------------*/
.btnWrap {
  text-align: center;
  padding: 20px 0;
}
.btnWrap .btnBase + .btnBase {
  margin-top: 20px;
}
@media (min-width: 1000px) {
  .btnWrap {
    padding: 30px 0;
  }
  .btnWrap.leftType {
    text-align: left;
  }
  .btnWrap .btnBase + .btnBase {
    margin: 0 0 0 30px;
  }
}

.btnBase {
  position: relative;
  display: inline-block;
  background-color: #fff;
  text-align: center;
  min-width: 80%;
  border: 1px solid #333;
  border-radius: 50px;
  transition: all 0.3s ease-out;
}
.btnBase:hover {
  background-color: #1D2088;
  color: #fff;
}
.btnBase:hover:after {
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
}
.btnBase a, .btnBase input {
  display: block;
  font-size: 16px;
  font-weight: 600;
  padding: 10px;
  cursor: pointer;
  width: 100%;
}
.btnBase:after {
  border-top: solid 1px #036EB8;
  border-right: solid 1px #036EB8;
  width: 8px;
  height: 8px;
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 15px;
}
.btnBase.type02 {
  background-color: #999;
  color: #fff;
}
.btnBase.type02:after {
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  width: 8px;
  height: 8px;
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%) rotate(225deg);
  right: auto;
  left: 15px;
}
.btnBase.type02:hover {
  background-color: #fff;
  color: #333;
}
.btnBase.type02:hover:after {
  border-top: solid 1px #333;
  border-right: solid 1px #333;
  border-right: solid 1px #333;
}
@media (min-width: 1000px) {
  .btnBase {
    min-width: 450px;
  }
  .btnBase a, .btnBase input {
    font-size: 18px;
    padding: 20px;
  }
  .btnBase:after {
    width: 10px;
    height: 10px;
    right: 20px;
  }
}

/*
pageNav
---------------------------*/
.pageNav {
  text-align: center;
}
.pageNav .navBtn:after {
  transform: translateY(-50%) rotate(135deg);
  right: 15px;
}
@media (min-width: 1000px) {
  .pageNav {
    display: flex;
    justify-content: space-between;
  }
  .pageNav .navBtn {
    min-width: inherit;
    width: calc((100% - 30px) / 2);
  }
  .pageNav .navBtn:after {
    right: 24px;
  }
  .pageNav.column3 .navBtn {
    width: calc((100% - 60px) / 3);
  }
  .pageNav.column3 .navBtn:after {
    right: 24px;
  }
  .pageNav.column3 .navBtn + .navBtn {
    margin-left: 30px;
  }
}

/*
flexContent
---------------------------*/
.flexContent03 > div {
  width: 80%;
  text-align: center;
  margin: auto;
}
.flexContent03 > div + div {
  padding-top: 20px;
}
.flexContent03 dl {
  padding-top: 10px;
}
.flexContent03 dl dt, .flexContent03 dl dd {
  font-weight: 500;
}
@media (min-width: 1000px) {
  .flexContent03 {
    display: flex;
    flex-wrap: wrap;
  }
  .flexContent03 > div {
    width: calc((100% - 60px) / 3);
    margin: inherit;
    margin-right: 30px;
  }
  .flexContent03 > div + div {
    padding-top: 0;
  }
  .flexContent03 > div:nth-of-type(3n) {
    margin-right: 0;
  }
  .flexContent03 > div:nth-of-type(n + 4) {
    margin-top: 20px;
  }
}

.flexContent02 {
  position: relative;
  z-index: 1;
}
.flexContent02 > div + div {
  padding-top: 20px;
}
.flexContent02.a-center {
  align-items: center;
}
@media (min-width: 1000px) {
  .flexContent02 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .flexContent02 > div {
    width: calc((100% - 30px) / 2);
  }
  .flexContent02 > div + div {
    padding-top: 0;
  }
  .flexContent02 > div:nth-of-type(n + 3) {
    margin-top: 20px;
  }
}

/*
accordionContent
---------------------------*/
.accordionContent {
  padding: 10px 20px;
  border: 1px solid #333;
  border-radius: 10px;
}
.accordionContent .accordionTitleWrap {
  position: relative;
}
.accordionContent .accordionTitleWrap dl {
  position: relative;
  cursor: pointer;
}
.accordionContent .accordionTitleWrap dl:after {
  border-top: solid 1px #036EB8;
  border-right: solid 1px #036EB8;
  width: 12px;
  height: 12px;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  transform: rotate(135deg);
  right: 5px;
  transition: all 0.3s ease-out;
  margin: auto;
}
.accordionContent .accordionTitleWrap dl dt {
  font-weight: 500;
}
.accordionContent .accordionTitleWrap dl dd {
  font-size: 16px;
}
.accordionContent.open .accordionTitleWrap dl {
  position: relative;
}
.accordionContent.open .accordionTitleWrap dl:after {
  transform: rotate(-45deg);
}
.accordionContent.open .accordionDetail {
  display: block;
}
.accordionContent .accordionDetail {
  display: none;
  padding: 30px 0;
  margin-top: 10px;
  border-top: 1px solid #333;
}
@media (min-width: 1000px) {
  .accordionContent .accordionTitleWrap dl dd {
    font-size: 18px;
  }
}

/*
imgWrap
---------------------------*/
.imgWrap {
  text-align: center;
}
.imgWrap.ratioType {
  aspect-ratio: 3/2;
}
.imgWrap.ratioType img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*
contentList
---------------------------*/
.contentList {
  padding-top: 5px;
}
.contentList.pt {
  padding-top: 20px;
}
.contentList.pb {
  padding-bottom: 20px;
}
.contentList li {
  position: relative;
  padding-left: 14px;
}
.contentList li:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #036EB8;
  border-radius: 50px;
  position: absolute;
  top: 9px;
  left: 0;
  margin: auto;
}
.contentList li + li {
  margin-top: 5px;
}
@media (min-width: 1000px) {
  .contentList {
    padding-top: 10px;
  }
  .contentList.pt {
    padding-top: 30px;
  }
  .contentList.pb {
    padding-bottom: 30px;
  }
  .contentList li:before {
    top: 12px;
  }
}

.noList li {
  text-indent: -2em;
  padding-left: 2em;
}
.noList li + li {
  margin-top: 5px;
}

/*
textLink
---------------------------*/
.textLink {
  transition: opacity 0.2s ease-out;
  backface-visibility: hidden;
  zoom: 1;
}
.textLink:hover {
  opacity: 0.7;
}
.textLink a {
  display: inline-block;
  font-weight: 500;
  text-decoration: underline;
  position: relative;
  padding-left: 14px;
}
.textLink a:after {
  position: absolute;
  left: 0;
  top: 8px;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: auto;
  border: 1px solid;
  border-color: #036EB8 #036EB8 transparent transparent;
  transform: rotate(45deg);
  z-index: 1;
}
@media (min-width: 1000px) {
  .textLink a:after {
    top: 11px;
  }
}

a.line {
  transition: opacity 0.2s ease-out;
  backface-visibility: hidden;
  zoom: 1;
  text-decoration: underline;
  font-weight: 600;
}
a.line:hover {
  opacity: 0.7;
}

/*
table
---------------------------*/
.table {
  padding-bottom: 10px;
}
.table table {
  width: 100%;
  border-collapse: collapse;
}
.table th {
  white-space: nowrap;
}
.table th, .table td {
  border: 1px solid #ccc;
  text-align: left;
  vertical-align: middle;
  line-height: 1.7;
  padding: 12px;
}
.table thead th {
  background: #F5FBFF;
}
.table thead tr:first-of-type th {
  background: #F0F0F0;
}
.table tbody th {
  background: #F5FBFF;
}
.table.js-scrollable table {
  width: 800px;
}
.table.centerType th, .table.centerType td {
  text-align: center;
}
.table.centerType .leftCell {
  text-align: center;
}
.table.type02 tbody th {
  background: #F0F0F0;
}
.table.type03 thead th {
  text-align: center;
}
@media (min-width: 1000px) {
  .table.js-scrollable table {
    width: 100%;
  }
}

/*# sourceMappingURL=common.css.map */