<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/*===================================================
タイトル
===================================================*/
header {
  padding: 25px 0 5px 0;
}

header h1 {
  font-size: .22rem;
  line-height: 1;
  font-weight: 600;
}

/*
header h1 span {
  margin-left: -.3em;
}
*/
header h1 b {
  font-weight: 600;
}

.PTBOX header h1 span:first-child:after {
  content: "PT";
}
.PTBOX header h1 b {
  color: #00a0e9;
}
.OTBOX header h1 span:first-child:after {
  content: "OT";
}
.OTBOX header h1 b {
  color: #f39800;
}
.STBOX header h1 span:first-child:after {
  content: "ST";
}
.STBOX header h1 b {
  color: #22ac38;
}

header p,
header h2 {
  font-size: .15rem;
  line-height: 1;
  margin-top: 10px;
}

header h2 {
  position: relative;
  width: 80%;
  margin: 10px auto 0 auto;
}
header h2:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #333;
  z-index: 0;
}

header h2 span {
  position: relative;
  background-color: #fff;
  padding: 0 10px;
  z-index: 1;
}


/*===================================================
フッター
===================================================*/
footer {
  position: fixed;
  background-color: #fff;
  padding-top: 10px;
  z-index: 10;
}

#footerBox {
  box-sizing: border-box;
  width: 100%;
  max-width: 1020px;
  padding: 0 10px;
  margin: 0 auto;
}

footer nav {
  display: block;
  width: 100%;
  margin: 0 auto 10px auto;
}

footer nav li {
  float: left;
  width: calc((100% - 8px) / 5);
}
footer nav li+li {
  margin-left: 2px;
}
footer nav li:nth-of-type(n+6) {
  display: none;
}

footer nav li a {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 30px;
  font-size: .1rem;
  line-height: 1;
  font-weight: 500;
  background-color: #0068b7;
  border-radius: 2px;
}

footer nav li a,
footer nav li a:visited,
footer nav li a:hover{
  color: #fff;
  text-decoration : none;
}
footer nav li a:hover {
  opacity: 0.5;
}


/*===================================================
アニメーション
===================================================*/
#wrapper .animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}</pre></body></html>