html, body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-feature-settings: "pkna" 1;
/*   scroll-behavior: smooth; */
}
p, a, li, h1, h2, h3, h4, h5, h6 {
  color: #333;
}
p {
  line-height: 1.4;
}
a {
  text-decoration: none;
  line-height: 1.4;
}
ul li {
  list-style: none;
  line-height: 1.4;
  margin-bottom: .5em;
}
ol {
  margin: 0;
  padding-left: 1.5em;
}
ol li {
  list-style: decimal;
  line-height: 1.4;
  margin-bottom: .5em;
}
h3 {
  font-size: 3em;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  font-family: 'Oswald', sans-serif;
  margin-top: .5em;
  margin-bottom: 0;
  text-transform: uppercase;
}
h4 {
  line-height: 1;
  margin-top: .5em;
  margin-bottom: 0;
}
h3 > img {
  width: 5.5em;
  max-width: 95%;
}

section {
  font-size: 16px;
  display: flex;
  width: 100%;
  padding: 2em 0 2em;
  overflow-x: visible;
  position: relative;
  z-index: 1;
}
section:last-child {
  margin-bottom: 0;
}
header {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
footer {
  margin-top: 0;
  padding: 10em 1em 0;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.table {
  margin: 1em 0;
}
.table th {
  width: 7em;
  padding: 1em .5em .5em 0;
  text-align: right;
  vertical-align: top;
  border-bottom: solid 1px #666;
  border-right:  solid 3px #9f9f9f;
}
.table td {
  padding: 1em .5em .5em;
  vertical-align: top;
  border-bottom: solid 1px #666;
}
.table tr:last-child th,
.table tr:last-child td {
  border-bottom: none;
}
.table p {
  margin-top: 0;
  margin-bottom: .5em;
}
figure {
  width: 100%;
  margin: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
figure > img {
  width: 100%;
  height: auto;
}
figure.half {
  height: 240px;
  overflow: hidden;
}
figure.half img {

}
.color-reverse p,
.color-reverse h1,
.color-reverse h2,
.color-reverse h3,
.color-reverse h4 {
  color: #fff;
}
.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-fit {
  text-align: justify !important;
}
.mb0 {
  margin-bottom: 0 !important;
}
.mb1 {
  margin-bottom: 1em;
}
.mb2 {
  margin-bottom: 2em;
}
.mb3 {
  margin-bottom: 3em;
}
.mt0 {
  margin-top: 0 !important;
}
.mt1 {
  margin-top: 1em !important;
}
.mt2 {
  margin-top: 2em !important;
}
.mt3 {
  margin-top: 3em !important;
}
.btn {
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  margin: 1em 0;
  padding: 1em 2em;
  min-width: 180px;
  display: inline-block;
  border-radius: 4px;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
  transition: ease .2s all;
}
.btn .icon {
  margin-left: .5em;
  margin-top: .225em;
  font-size: 1em;
  position: absolute;
  transition: all .2s ease;
}
.btn-small {
  font-size: 14px !important;
  padding: .7em 1em !important;
}
.btn-primary {
  color: #fff;
  background-color: #0B0084;
}
.btn-light {
  color: rgba(11, 0, 132, 1);
  background-color: #fff;
  box-shadow: 0px 2px 5px .5px rgba(55, 55, 55, 0.6);
}
.btn-dark {
  color: #fff;
  background-color: #222828;
}
.btn:focus,
.btn:hover,
.btn:active {
  box-shadow: 0px 2px 5px .5px rgba(0, 0, 0, 0.6);
}
.btn:focus .icon,
.btn:hover .icon,
.btn:active .icon {
  margin-left: 1em;
}
.btn-primary:hover,
.btn-primary:active {
  background-color: #2c228d;
}
.btn-dark:hover,
.btn-dark:active {
  background-color: #293131;
}
.btn-light:hover,
.btn-light:active {
  background-color: #eef9ff;
  box-shadow: 0px 2px 5px .5px rgba(55, 55, 55, 0.6);
}
.btn-submit {
  color: #fff;
  background-color: #5692ad;
  border-color: #5692ad;
}
.btn-submit:hover,
.btn-submit:active {
  background-color: #159ad7;
  border-color: #159ad7;
}

.bg-shadow {
  background-color: rgba(0, 0, 0, 0.55);
  border-radius: .5em;
}
.bg-stretch {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left 0;
  right: 0;
  overflow: hidden;
  z-index: -1;
}
.bg-stretch img {
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
}
.filter-sepia {
   filter: grayscale(50%) sepia(50%);
}
.filter-hue {
/*    filter: invert(100%) hue-rotate(60deg); */
   animation: hue 10s ease 0s infinite alternate forwards running;
}

@keyframes hue {
  0% {
    filter: invert(0%) hue-rotate(0deg);
  }
  40% {
    filter: invert(0%) hue-rotate(0deg);
  }
  41% {
    filter: invert(80%) hue-rotate(0deg);
  }
  42% {
    filter: invert(0%) hue-rotate(0deg);
  }
  43% {
    filter: invert(90%) hue-rotate(0deg);
  }
  44% {
    filter: invert(0%) hue-rotate(40deg);
  }
  45% {
    filter: invert(95%) hue-rotate(20deg);
  }
  100% {
    filter: invert(100%) hue-rotate(60deg);
  }
}

.container {
  display: flex;
  flex-flow: column nowrap;
  overflow: hidden;
  max-width: 100%;
}
.content {
  padding: 1em;
  margin-right: 1em;
  display: block;
}
.content:last-child {
  margin-right: 0;
}
.flex-container {
  display: flex;
  width: 95%;
  max-width: 1024px;
  margin: 0 auto;
  flex-direction: column;
}
.flex-container.tag-container {
  flex-direction: row;
  padding-left: 1em;
}
achievement .flex-container {
  flex-direction: row;
}
  .column.left { align-items: flex-start; }
  .column.center { align-items: center; }
  .column.right { align-items: flex-end; }
  .row.left { justify-content: flex-start; }
  .row.center { justify-content: center; }
  .row.right { justify-content: flex-end; }
  .column.top { justify-content: flex-start; }
  .column.middle {justify-content: center; }
  .column.bttom { justify-content: flex-end; }
  .row.top { align-items: flex-start; }
  .row.middle { align-items: center; }
  .row.bttom { align-items: flex-end; }
  .column.reverse { flex-direction: column-reverse !important}
  .row.reverse { flex-direction: row-reverse !important}
  .wrap { flex-wrap: wrap !important; }

.fill {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
}
.fill.center-center {
  background-position: center center;
}
.fill.center-bottom {
  background-position: center bottom;
}
.fill.right-bottom {
  background-position: right bottom;
}

.cards {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  padding: 0;
  margin: 2em 0;
}
.achievement .cards {
  margin: 1em 0 0;
}
  .card {
    width: 100%;
    margin: 2em 0 0;
    background-color: #fff;
    border-radius: .1em;
    box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, .2);
    transition: all .2s ease;
    position: relative;
    overflow: hidden;
 }
 .card p { margin-bottom: 0 }
  .card a::after {
    content: "";
    display: block;
    width: 30px;
    border: 15px solid rgba(41, 137, 255, 0.8);
    border-left-color: transparent;
    border-top-color: transparent;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .card:hover {
    box-shadow: 0px 5px 7px 0 rgba(0, 0, 0, .6)
  }
  .card .btn {
    font-size: .8em;
    padding: 3px;
    width: calc( 100% - .8em );
    margin: .4em;
    border: solid .5px rgba(0, 0, 0 , .4);
    box-shadow: none;
  }
  .card .btn::after {
    width: 20px;
    border: 10px solid rgba(41, 137, 255, 0.8);
    border-left-color: transparent;
    border-top-color: transparent;
  }
  .card .btn:first-of-type {
    margin-top: 1.4em;
  }
  .card .btn:last-child {
    margin-bottom: 0;
  }
  .card .label {
    display: inline-block;
    font-size: .7em;
    color: #fff;
    padding: 3px 7px 4px;
    margin: 1em 0 .5em;
    background-color: rgba(25, 25, 25, .9);
    border-radius: .5em;
  }
  .card > a {
    width: 100%;
    height: 100%;
    display: inline-block;
  }
  .card-header {
    height: 207px;
    width: 100%;
    border-top-left-radius: .1em;
    border-top-right-radius: .1em;
  }
  .card-header.fill  {
    background-size: cover;
    background-position: center center;
  }
  .card-title {
    text-align: center;
    line-height: 1.4
  }
  .card-content {
    text-align: justify;
    padding: 0 1em 1em;
  }
  .card-text {
    font-size: .9em;
  }
  .card-text small {
    font-size: 1em;
  }
.text-container {
  margin: 0 -1em;
  padding: 1.2em 1em 1.2em;
}
.text-container p {
  line-height: 1.4;
  margin: 0 0 .6em;
}
.text-container li {
  list-style: disc;
}
.hero {
  height: 100vh;
  max-height: 940px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}
.navbar {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.navbar-logo {
  width: 240px;
  margin: 0;
  position: relative;
  z-index: 100;
}
.navbar-logo img {
  width: 100%;
}
.navbar-left {
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  margin-left: 24px;
}
.navbar-right {
  height: 100%;
  padding-left: 40px;
  padding-right: 20px;
  background-color: #fff;
  border-bottom-left-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.navbar .nav {
  position: absolute;
  width: 100%;
  top: -100%;
  right: 0;
  background-color: #fff;
  opacity: 0;
  transition: all .2s ease-in;
}
.navbar .nav-items {
  display: block;
  margin-bottom: 0;
}
.navbar .nav-items li {
  height: 60px;
  margin: 0 1em;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  border-bottom: 1px solid #666;
}
.navbar .nav-items li:last-child {
  border: none;
}
.navbar .nav-items li a {
  font-size: 14px;
  font-weight: bold;
}
.navbar .nav-items li a .icon {
  font-size: 20px;
  margin-top: 6px;
}
.navbar .nav-items li a span {
/*   display: inline-block; */
}
.footer-menu ul {
  padding: 0;
  margin-top: 0;
  margin-bottom: 4em;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.footer-menu ul li {
  margin: 1em;
}
.footer-menu ul li a {
  color: #fff;
}
.footer-logo {
  width: 8em;
  margin-top: 0;
  margin-bottom: 1em;
}
.footer-logo img {
  width: 100%;
}
.footer-info p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 1em;
  line-height: 1.2;
}
.footer-info p span {
  display: inline-block;
  margin-left: 8px;
}
.copylight {
  color: #fff;
  font-size: 12px;
}
.gotop {
  display: block;
  right: 0;
  position: fixed;
  bottom: 2%;
  z-index: 1000;
  animation: gotop .5s ease 7s 1 normal forwards running;
  opacity: 0;
}
  @keyframes gotop {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 100;
    }
  }

.gotop a {
  display: block;
  position: relative;
}
.gotop a img {
  width: 30px;
  height: auto;
}
.avant {
  font-size: 12px;
  padding: 4em 2em;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  text-align: right;
  position: absolute;
  right: 0;
}
.avant::before,
.avant::after {
  content: "";
  display: block;
  height: 22em;
  width: 22em;
  background-color: rgba(0, 0, 0, .7);
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  opacity: 0;
}
.avant::before {
  background-color: rgba(197, 0, 21, .9);
  animation: anime02 1s ease 1s 1 normal forwards running;
  right: 30%;
}
.avant::after {
  animation: anime01 1s ease .5s 1 normal forwards running;
  right: -20%
}

  @keyframes anime01 {
    0% {
      right: -100%;
      opacity: 0;
    }
    100% {
      right: -20%;
      opacity: 100;
    }
  }
  @keyframes anime02 {
    0% {
      right: -100%;
      opacity: 0;
    }
    100% {
      right: 30%;
      opacity: 100;
    }
  }

.avant-subtitle {
  font-size: 2em;
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
  z-index: 10;
  opacity: 0;
  animation: anime00 1s ease 2s 1 normal forwards running;
}
.avant-subtitle span {
  display: block;
}
.avant-title {
  font-size: 3em;
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
  z-index: 10;
  opacity: 0;
  animation: anime00 1s ease 2.2s 1 normal forwards running;
}
  @keyframes anime00 {
    0% {
      opacity: 0;
      margin-right: -100%;
    }
    100% {
      opacity: 100;
      margin-right: 0;
    }
  }

.header-down {
  height: 60px;
  width: 700px;
  display: block;
  text-align: center;
  background-color: #313131;
  position: absolute;
  bottom: 0;
}
.header-down a {
  color: #fff;
  font-family: 'Oswald', sans-serif;
}
.breadcrumb {
  font-size: 1em;
  display: block;
  width: 100%;
  max-width: 860px;
  margin: 0 auto 1em;
  padding-left: 1em;
  border-radius: 80px;
}
.breadcrumb a {
  font-size: .7em;
  display: block;
  margin-left: -2.4em;
  padding: 1em 3em 1em 1em;
  line-height: 1;
  border-radius: 80px;
  background-color: rgba(210, 210, 210, 0.50);
  box-shadow: 0px 2px 6px 0 rgba(0, 0, 0, .2);
  transition: all .3s ease-in-out;
  float: left;
}
.breadcrumb a:first-child {
  margin-left: 0;
}
.breadcrumb a:active,
.breadcrumb a:hover {
  background-color: rgba(210, 210, 210, 1);
  box-shadow: 0px 2px 6px 0 rgba(0, 0, 0, .5);
}
.breadcrumb span {
  font-size: .7em;
  display: block;
  margin-left: -2.4em;
  padding: 1em;
  line-height: 1;
  border-radius: 80px;
  background-color: #fff;
  position: relative;
  box-shadow: 0px 2px 6px 0 rgba(0, 0, 0, .2);
  float: left;
}
.breadcrumb span::after {
  content: "";
  clear: both;
}
.breadcrumb {
}
.information .info-list {
  margin: 0 auto;
  padding: 0 8px;
  height: 60px;
  width: 700px;
  max-width: 100%;
  display: block;
  text-align: center;
  background-color: #313131;
  position: relative;
  z-index: 10;
}
.information .info-list::before {
  content: "";
  width: 95%;
  display: block;
  margin: 0 auto;
  border-top: 1px solid #fff;
}
.information .info-list {
  position: relative;
  overflow: hidden;
  box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.6);
}
.information .info-list li {
  font-size: 14px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  animation: 30s ease-in-out 0s infinite normal none;
  -webkit-animation: 30s ease-in-out 0s infinite normal none;
}
.information.ticker .info-list li {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
}
.information.ticker .info-list li:nth-child(1) {
  animation-name: news-ticker1;
  -webkit-animation-name: news-ticker1;
}
.information.ticker .info-list li:nth-child(2) {
  animation-name: news-ticker2;
  -webkit-animation-name: news-ticker2;
}
.information.ticker .info-list li:nth-child(3) {
  animation-name: news-ticker3;
  -webkit-animation-name: news-ticker3;
}
@keyframes news-ticker1 {
  0% {
    transform: translateY(-100%);
  }
  25% {
    transform: translateY(-100%);
    opacity: 1;
  }
  35% {
    transform: translateY(-100%);
    opacity: 1;
  }
  50% {
    transform: translateY(-200%);
    opacity: 0;
  }
  75% {
    transform: translateY(0);
    opacity: 0;
  }
  100% {
    transform: translateY(-100%);
    opacity: 1;
  }
}
@keyframes news-ticker2 {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  25% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-100%);
    opacity: 1;
  }
  60% {
    transform: translateY(-100%);
    opacity: 1;
  }
  75% {
    transform: translateY(-200%);
    opacity: 0;
  }
  100% {
    transform: translateY(-200%);
  }
}
@keyframes news-ticker3 {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-100%);
    opacity: 1;
  }
  85% {
    transform: translateY(-100%);
    opacity: 1;
  }
  100% {
    transform: translateY(-200%);
    opacity: 0;
  }
}

.information .info-list li a {
  color: #fff;
}
.information .info-list li .info-title {
  margin: 0;
  color: #fff;
}
.information .info-list li .info-title .info-date {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  margin-right: 2em;
}

.information .info-all {
  margin: 0;
  position: relative;
  z-index: 115;
}
.information .info-all a {
  color: #fff;
  font-size: .8em;
  letter-spacing: .1em;
  font-weight: normal;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 14em;
  max-width: 100vw;
  margin: 0 auto;
  padding: 3px 0 6px;
  background-color: #ff7c2a;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.6);
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  text-align: center;
  z-index: 100;
  transition: all .3s ease;
}
.information .info-all a:focus,
.information .info-all a:active,
.information .info-all a:hover {
  box-shadow: 0px 2px 5px .5px rgba(0, 0, 0, 0.6);
}
.information .info-all a .icon {
  font-size: 1em;
  margin-top: .04em;
  position: absolute;
  left: 11em;
  transition: all .2s ease;
}
.information .info-all a:hover .icon {
  left: 11.2em;
}
.page-title {
  text-align: center;
  margin-top: 6em;
  position: relative;
}
.page-title h2 {
  font-family: Oswald, 'Noto Sans JP', -apple-system, BlinkMacSystemFont, Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-size: 4em;
  text-transform: uppercase;
  margin-bottom: 0;
}
.page-title small {
  display: block;
  font-size: .4em;
  margin-top: -.4em;
}

.contents h3 {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-size: 2em;
  margin-bottom: 2em;
  line-height: 1.3;
  padding-bottom: .2em;
  border-bottom: solid 2px rgba(197, 0, 21, .9);
}
.contents .flex-container {
  flex-direction: column;
}
.contents article {
  font-size: 14px;
  padding: 2em;
  background-color: #fff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .2)
}
.contents article p {
  margin: 0 .5em .5em;
  line-height: 1.5;
}
.contents article p a {
  color: rgba(197, 0, 21, .9);
}
.contents article .content {
  margin: 0;
  padding: 0;
}
.contents article .content img {
  margin: 1em 2em 0 0;
}
.contents article table {
  display: block;
  margin: 0 2em 0 0;
}
.contents article table tr {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding: 0 2em;
}
.contents article table tr td p {
  margin-top: 0;
  margin-bottom: .5em;
}
.contents article table tr td {
  margin: 1em 2em 0 0;
  display: block;
  border: none;
  height: inherit;
  width: inherit;
}
.contents article table tr td img {
  margin: 0 auto 2em;
  display: block;
}
.company section {
  margin: 0 auto;
}
.company section h3 {
  font-size: 1em;
  text-shadow: 1px 1px 3px rgba(210, 210, 210, 0.8);
}
.company section h4 {
  margin-top: 1em;
  font-size: 2.2em;
  text-shadow: 1px 1px 3px rgba(210, 210, 210, 0.8);
}
.company section .content {
  width: 300px;
  margin: 0;
  align-self: flex-start;
}
.company section .content:last-child {
  padding: 0 1em;
  margin-top: 2em;
  width: 100%;
  background-color: rgba(255, 255, 255, .9);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .2);
}
.square {
  display: block;
  width: 300%;
  left: -100%;
  position: absolute;
  transform: rotate(-20deg)
}
#gray-bg {
  height: 150%;
  background-color: rgba(237, 237, 237, .9);
  top: -50%;
  z-index: -100;
}
#purple-bg {
  height: 100%;
  background-color: rgba(99, 94, 173, .9);
  top: 50%;
  z-index: -100;
}
#footer-bg {
  position: fixed;
  height: 200%;
  background-color: rgba(9, 0, 128, .8);
  bottom: -170vh;
  z-index: -1000;
}
.page #gray-bg {
  top: 130%;
}
.page #purple-bg {
  top: -148%;
  height: 200%;
}
.page header {
  background-color: #fff;
}

.mailform {
  width: 100%;
  background-color: #fff;
  padding: 1em;
  display: block;
  margin: 0 auto;
  font-size: 16px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .2);
}
.mailform .form-container {
  text-align: left;
  padding: .5em ;
  font-weight: normal;
}
.mailform .form-container p {
  font-size: 1em;
}
.mailform .form-container span {
  color: red;
}
.mailform .form-container small {
  display: block;
  font-size: .8em;
  color: #999;
  margin: 0;
}
.mailform .form-container label {
  margin-right: 1em;
  margin-left: 6px;
  margin-top: -.5px;
}
.mailform .form-container .btn {
  font-size: 1em;
  margin-right: 1em;
  box-shadow: none !important;
}
.mailform .form-container input[type="text"] {
  width: 15em !important;
  max-width: 100%;
}
.mailform .form-container input[type="email"] {
  width: 20em !important;
  max-width: 100%;
}
.mailform .form-container input[type="number"] {
  width: 10em;
  max-width: 100%;
}
.mailform .form-container textarea {
  width: 20em !important;
  max-width: 100%;
}
/* PC & SP toggle shown */
.sp { display: block; }
.pc { display: none !important; }
.pc-home { display: none; }
.home { display: none; }
.sp-order-1 { order: 1; }
.sp-order-2 { order: 2; }
.sp-menu {
  display: block;
}
.sp-menu .icon {
  font-size: 42px;
  margin-left: -12px;
  position: relative;
  z-index: 100;
}
.sp-menu .icon-close {
  display: none;
}
  #toggle-menu {
    position: absolute;
    top: -1000px;
    z-index: -1;
  }
  #toggle-menu:checked ~ .nav {
    opacity: 100;
    top: 0;
    z-index: 1;
  }
  #toggle-menu:checked ~ .sp-menu > .icon-menu {
    display: none;
  }
  #toggle-menu:checked ~ .sp-menu > .icon-close {
    display: inline-block;
  }

@media screen and (min-width: 748px) {
  .sp { display: none; }
  .pc { display: block !important; }
  .sp-order-1 { order: inherit; }
  .sp-order-2 { order: inherit; }
  .btn {
    font-size: 20px;
    padding: 1em 5em;
    max-width: 360px;
  }

  h3 {
    font-size: 3.6em;
  }
  h4 {
    font-size: 1em;
  }
  section {
    font-size: 20px;
    margin-top: 2em;
    margin-bottom: 8em;
  }
  footer {
    padding: 20em 1em 0;
  }
  figure.half {
    height: auto;
  }
  .card {
    width: 30%;
    min-width: 280px;
    margin-left: 1%;
    margin-right: 1%;
  }
  .card-header.fill  {
    background-size: contain;
  }
  .flex-container{
    width: 100%;
  }
  .flex-container.column {
    flex-direction: column;
  }
  .flex-container.row {
    flex-direction: row;
  }
  .flex-container .content {
    width: 90%;
    margin-left: 5%;
  }
  .flex-container > .half {
    width: 50%;
    margin-left: 0%;
  }
  .contents article {
    max-width: 860px;
    font-size: 18px;
    padding: 2em 3em;
  }
  .contents article p {
    line-height: 1.6;
    margin-bottom: .7em;
  }
  .navbar-logo {
    width: 300px;
  }
  .avant {
    font-size: 24px;
  }
  .avant::before {}
  .avant::after {}
  .avant-subtitle {
    font-size: 2em;
  }
  .avant-title {
    font-size: 3em;
  }
  .breadcrumb {
    padding-left: 3px;
  }
  .gotop a img {
  width: 40px;
  }
  .information .info-list li {
    font-size: 18px;
  }
  .footer-menu ul li a {
    font-size: 18px;
  }
  .information .info-all a {
    font-size: 1em;
  }
  .footer-logo {
    width: 10em;
    margin-bottom: 0;
  }
  .footer-info p {
    font-size: 16px;
    display: inline-block;
    margin: 1em;
  }
 .copylight {
    font-size: 14px;
  }
  .square {
    width: 200%;
    left: -50%;
  }

  .company section .content:last-child {
    width: 60%;
  }

  .mailform {
    width: 740px;
  }
  .mailform .form-container {
    display: flex;
    align-items: center;
  }
    .mailform .form-container p {
    width: 12em;
  }
}

@media screen and (min-width: 900px) {
  .sp { display: none; }
  .sp-menu { display: none; }
  .pc-home { display: inline-block; }
  .navbar {
    background-color: inherit;
  }
  .navbar .nav {
    position: relative;
    opacity: 100;
    top: auto;
  }
  .navbar .nav-items {
    display: flex;
  }
  .navbar .nav-items li {
    border: none;
  }
  .information .info-list::before {
    width: 80%;
  }
}

.nav-input {
  visibility: hidden;
  position: absolute;
  top: -1000%;
}
.nav-child-inner {
  color: #fff;
  border: solid 1px #ddd;
  font-size: 1em;
  margin: 0 .5em .5em 0;
  padding: .2em .5em;
  border-radius: 5px;
}
label.label {
  border: solid 1px #ddd;
  box-shadow: 0 0 0 0 #fff !important;
  transition: all ease .2s ;
  }
.label.c000 { background-color: rgba(197, 0, 21, 1); border-color: rgba(197, 0, 21, 1);}
.label.c001 { background-color: rgba(153, 3, 161, 1); border-color: rgba(153, 3, 161, 1);}
.label.c002 { background-color: rgba(0, 17, 197, 1); border-color: rgba(0, 17, 197, 1);}
.label.c003 { background-color: rgba(0, 197, 184, 1); border-color: rgba(0, 197, 184, 1);}
.label.c004 { background-color: rgba(0, 197, 31, 1); border-color: rgba(0, 197, 31, 1);}
.label.c005 { background-color: rgba(239, 207, 0, 1); border-color: rgba(239, 207, 0, 1);}
.label.c006 { background-color: rgba(184, 109, 51, 1); border-color: rgba(184, 109, 51, 1);}
.label.c007 { background-color: rgba(240, 38, 180, 1); border-color: rgba(240, 38, 180, 1);}
.label.c008 { background-color: rgba(255, 140, 25, 1); border-color: rgba(255, 140, 25, 1);}
.label.c009 { background-color: rgba(255, 160, 25, 1); border-color: rgba(255, 160, 25, 1);}
.label.c010 { background-color: rgba(255, 180, 25, 1); border-color: rgba(255, 180, 25, 1);}
.label.c100 { color: #000; background-color: #fff; border-color: #999; }
input#nav-input-c000:checked ~ .label.c000 ,
input#nav-input-c001:checked ~ .label.c001 ,
input#nav-input-c002:checked ~ .label.c002 ,
input#nav-input-c003:checked ~ .label.c003 ,
input#nav-input-c004:checked ~ .label.c004 ,
input#nav-input-c005:checked ~ .label.c005 ,
input#nav-input-c006:checked ~ .label.c006 ,
input#nav-input-c007:checked ~ .label.c007 ,
input#nav-input-c008:checked ~ .label.c008 ,
input#nav-input-c009:checked ~ .label.c009 ,
input#nav-input-c010:checked ~ .label.c010 ,
input#nav-input-c100:checked ~ .label.c100 {
  box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, .7) !important;
}
#show-all {
  background-color: #ddd;
  color: #000;
}
input#nav-input-all:checked ~ ul li {
  display: block;
  transition: all ease .2s 0 ;
}
input#nav-input-c000:checked ~ ul li:not([data-sort-item="c000"]) {
  display: none;
}
input#nav-input-c001:checked ~ ul li:not([data-sort-item="c001"]) {
  display: none;
}
input#nav-input-c002:checked ~ ul li:not([data-sort-item="c002"]) {
  display: none;
}
input#nav-input-c003:checked ~ ul li:not([data-sort-item="c003"]) {
  display: none;
}
input#nav-input-c004:checked ~ ul li:not([data-sort-item="c004"]) {
  display: none;
}
input#nav-input-c005:checked ~ ul li:not([data-sort-item="c005"]) {
  display: none;
}
input#nav-input-c006:checked ~ ul li:not([data-sort-item="c006"]) {
  display: none;
}
input#nav-input-c007:checked ~ ul li:not([data-sort-item="c007"]) {
  display: none;
}
input#nav-input-c008:checked ~ ul li:not([data-sort-item="c008"]) {
  display: none;
}
input#nav-input-c009:checked ~ ul li:not([data-sort-item="c009"]) {
  display: none;
}
input#nav-input-c010:checked ~ ul li:not([data-sort-item="c010"]) {
  display: none;
}
input#nav-input-c100:checked ~ ul li:not([data-sort-item="c100"]) {
  display: none;
}
