@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&family=Noto+Sans+JP:wght@400;700&display=swap");
html {
  font-size: 62.5%;
}

body {
  font-family: "Cairo", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #222222;
}
@media (min-width: 768px) {
  body {
    line-height: 1.6;
  }
}
body.ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
}

img {
  max-width: 100%;
  display: block;
}

a,
a:link {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
a.link,
a:link.link {
  display: inline;
  color: #DD1C1A;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  border: 0;
  background: transparent;
  border-radius: 0;
  text-align: inherit;
}
button:hover {
  cursor: pointer;
}

ul.list,
ol.list {
  margin: 0.5em 3em 3em 4em;
}
ul.list li,
ol.list li {
  margin-bottom: 1em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

h1,
h2,
h3,
h4 {
  text-transform: uppercase;
}

h5 {
  color: #18aace;
  font-weight: 600;
  font-size: 1.2em;
}

iframe {
  width: 100%;
  height: 50rem;
}

strong {
  font-weight: 700;
}

.container {
  max-width: 100rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem 7rem;
  box-sizing: border-box;
}

.flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .flex {
    flex-direction: row;
  }
}

.short {
  max-width: 75rem;
  width: 95%;
  margin: 0 auto 2em;
}
.short .list {
  margin-left: 2em;
  margin-right: 0;
}
@media (min-width: 768px) {
  .short .list {
    margin-left: 3em;
  }
}

.iblock {
  display: inline-block;
}

.icon--open {
  position: relative;
}
.icon--open span {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  right: 1em;
  top: 0;
}
@media (min-width: 768px) {
  .icon--open span {
    justify-content: space-evenly;
  }
}
.icon--open .fa-play {
  font-size: 1.2rem;
}
.icon--open:hover .fa-play {
  transform: rotate(90deg);
}

a.bt {
  max-width: 30rem;
  width: 70%;
  padding: 1rem;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
  background-color: #18aace;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 3px 5px 7px -3px #ccc;
  border: 1px solid #fff;
}
a.bt:hover {
  background-color: #2e7ed2;
}
a.bt--contact {
  width: 15rem;
  padding: 1rem;
  text-align: center;
  background-color: #DD1C1A;
  box-shadow: none;
  border-color: #ff9b9b;
}
a.bt--contact:hover {
  background-color: #ff9300;
}

.bg {
  background-color: #cbf3ff;
}

.big {
  font-size: 1.2em;
}

.header {
  position: fixed;
  width: 100vw;
  height: 6rem;
  top: 0;
  left: 0;
  background-color: #011627;
  color: #fff;
  z-index: 100000000;
}
@media (min-width: 992px) {
  .header {
    height: 5.3rem;
  }
}
.header a {
  color: #fff;
}
.header .container {
  max-width: 1900px;
  height: 100%;
  padding-bottom: 0;
}
.header .container.flex {
  flex-direction: row;
}
.header .menu {
  display: none;
  position: relative;
  text-transform: uppercase;
  transform: translateX(130%);
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
  flex-direction: column;
}
@media (min-width: 992px) {
  .header .menu {
    display: block;
    transform: translateX(0);
    max-width: 60rem;
    margin-right: 10rem;
    height: auto;
  }
}
.header .menu li {
  list-style: none;
}
.header .menu span {
  padding: 1.5rem 0.5em;
}
.header .menu a {
  display: block;
  padding: 1.5rem 1em;
}
.header .menu__block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 992px) {
  .header .menu__block {
    flex-direction: row;
  }
}
.header .menu__block > li {
  width: 80%;
  margin: 0 auto;
  border-top: 1px solid rgba(253, 253, 253, 0.2);
  font-size: 0.9em;
}
.header .menu__block > li.has-sub {
  border-top: none;
}
.header .menu__block > li.has-sub span i {
  padding-left: 0.7rem;
}
@media (min-width: 992px) {
  .header .menu__block > li {
    width: calc((100% - 19rem) / 4);
    border-top: none;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
  }
  .header .menu__block > li:first-child {
    padding: 0 1rem;
    box-sizing: content-box;
  }
  .header .menu__block > li.contact {
    width: 17rem;
    text-align: center;
  }
  .header .menu__block > li.has-sub {
    opacity: 1;
  }
  .header .menu__block > li:hover {
    background-color: #18aace;
  }
  .header .menu__block > li:hover .submenu__block {
    visibility: visible;
    transform: translateY(0);
    transition: 0.2s;
  }
  .header .menu__block > li.active:not(.has-sub), .header .menu__block > li.active.has-sub {
    background-color: #cbf3ff;
  }
  .header .menu__block > li.active:not(.has-sub) a:not(.submenu__block a),
  .header .menu__block > li.active:not(.has-sub) span,
  .header .menu__block > li.active:not(.has-sub) i, .header .menu__block > li.active.has-sub a:not(.submenu__block a),
  .header .menu__block > li.active.has-sub span,
  .header .menu__block > li.active.has-sub i {
    color: #011627;
  }
}
.header .submenu__block {
  margin: -1rem 0 1rem;
}
.header .submenu__block li {
  margin: 0.2rem 0 0 2rem;
  box-sizing: border-box;
}
.header .submenu__block li a,
.header .submenu__block li span {
  padding: 1.5rem 2rem;
}
.header .submenu__block li a:hover,
.header .submenu__block li span:hover {
  background-color: rgba(0, 0, 0, 0.3);
}
@media (min-width: 992px) {
  .header .submenu__block {
    position: absolute;
    top: 6rem;
    left: 0;
    background-color: #cbf3ff;
    width: 320px;
    visibility: hidden;
    transform: translateY(-50%);
    box-sizing: border-box;
    padding: 0.5rem;
  }
  .header .submenu__block li {
    background-color: rgba(24, 170, 206, 0.7);
    border-left: 3px solid;
    margin: 0.2rem 0 0 0;
    border-left: 3px none;
  }
}
.header .icon--open i {
  display: none;
}
.header .icon--hamburger {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  padding: 0;
}
.header .btn-line {
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: relative;
  transition: 0.2s;
}
.header .btn-line::before, .header .btn-line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: 0.2s;
}
.header .btn-line::before {
  transform: translateY(-10px);
}
.header .btn-line::after {
  transform: translateY(10px);
}
@media (max-width: 992px) {
  .header .open .menu {
    display: block;
    transform: translateX(0%);
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 7rem;
    background-color: rgba(1, 22, 39, 0.9);
    z-index: -1;
  }
  .header .open .icon--hamburger {
    transform: rotate(180deg);
  }
  .header .open .btn-line {
    background-color: transparent;
  }
  .header .open .btn-line::before, .header .open .btn-line::after {
    background-color: #fff;
    transition: 0.2s;
  }
  .header .open .btn-line::before {
    transform: rotate(135deg);
  }
  .header .open .btn-line::after {
    transform: rotate(-135deg);
  }
}
.header.opacity {
  background-color: rgba(1, 22, 39, 0.5);
}
.header.opacity .menu__block > li.active {
  background-color: rgba(203, 243, 255, 0.8);
}
@media (min-width: 992px) {
  .header .icon--open i {
    display: block;
  }
  .header .icon--hamburger {
    display: none;
  }
}

.header__headering {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 21rem;
}
.header__headering .logo {
  width: 12rem;
}
@media (min-width: 992px) {
  .header__headering .logo {
    width: 15rem;
  }
}
.header__headering .lang {
  width: 8rem;
  font-size: 1.4rem;
  display: flex;
  justify-content: space-evenly;
}
@media (min-width: 992px) {
  .header__headering .lang {
    position: absolute;
    right: 20px;
  }
}
.header__headering .lang a {
  width: 50%;
  height: 100%;
  text-align: center;
  background-color: #707070;
  opacity: 0.5;
}
.header__headering .lang a:hover {
  opacity: 1;
  background-color: #2e7ed2;
}
.header__headering .lang a.active {
  opacity: 1;
  background-color: #18aace;
}
.header__headering .lang a:nth-of-type(1) {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.header__headering .lang a:nth-of-type(2) {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

main .container__block {
  max-width: 90rem;
  width: 100%;
  margin: 0 auto 2em;
  box-sizing: border-box;
  text-align: center;
}
main .container__block img {
  border-radius: 2rem;
}
main .intro {
  margin-bottom: 7rem;
}
main .intro strong {
  font-size: 1.8em;
  padding-right: 0.3em;
}
main .intro strong .seo-mean {
  font-size: 1.6rem;
  padding-left: 1rem;
}
main .intro .short {
  margin-bottom: 0;
}
main .intro img {
  margin-bottom: 2em;
}
main .intro p {
  text-align: left;
  font-size: 1.1em;
}
main .intro.nospace--bottom {
  margin-bottom: 2em;
}
main .intro.nospace--bottom img {
  margin: 2em 0;
}
@media (min-width: 768px) {
  main .intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3em 0;
  }
  main .intro strong {
    font-size: 2em;
  }
  main .intro.nospace--bottom {
    padding-top: 0;
    padding-bottom: 0;
  }
  main .intro.nospace--bottom img {
    margin: 0;
  }
  main .intro img {
    padding: 0;
    width: 45%;
    box-sizing: border-box;
  }
  main .intro p {
    width: 50%;
  }
  main .intro p.short {
    margin-right: 0;
    margin-left: 0;
  }
}
main .subpage__block {
  border: 1px solid #18aace;
  border-left: 5px solid #18aace;
  padding: 1em;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  margin-top: 6em;
}
@media (min-width: 768px) {
  main .subpage__block {
    margin-top: 4em;
    max-width: 76rem;
  }
}
main .subpage__block--headering {
  font-weight: 700;
  font-size: 1.2em;
  color: #18aace;
  border-left: 5px solid;
  padding-top: 0.5em;
  padding-left: 1em;
  margin: -4rem 0 2rem -2.1rem;
  background-color: #fff;
  width: 50%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  main .subpage__block--headering {
    width: 20rem;
  }
}
main .subpage__block--headering.long {
  line-height: 1.2;
}
main .subpage__block--body {
  margin: 0rem 0.5rem 0 1rem;
}
@media (min-width: 768px) {
  main .subpage__block--body {
    margin: 2rem;
  }
  main .subpage__block--body.flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
main .subpage__block--body .list {
  margin: 0.5em 1em 1em 1.5em;
}
main .subpage__block--body .list li {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  main .subpage__block--body .list {
    margin: 1.5em 1em 1.5em 2em;
  }
}
main .subpage__block--bottom {
  text-align: center;
}
@media (min-width: 768px) {
  main .subpage__block--bottom {
    padding-top: 2em;
  }
}
main .subpage__block--bottom .bt--contact {
  width: 30rem;
  margin: 1em auto 5em;
}
main .subpage__block .block--item {
  width: 25rem;
  padding: 1rem;
  margin: 1rem;
  text-align: center;
  border: 1px solid #ccc;
}
@media (min-width: 768px) {
  main .subpage__block .block--item {
    width: auto;
  }
}
main .subpage__block .block--item img {
  margin: 0 auto 0.5rem;
  height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
}
main .subpage__block.careers .long {
  width: 80%;
}
@media (min-width: 768px) {
  main .subpage__block.careers .long {
    width: 50rem;
  }
}
main .subpage__block.seo {
  margin-top: 5em;
}
main .subpage__block.seo .long {
  width: 95%;
}
@media (min-width: 768px) {
  main .subpage__block.seo .long {
    width: 55rem;
  }
}
main .subpage__block.tools, main .subpage__block.affiliate {
  margin-top: 5em;
}
main .subpage__block.tools .long, main .subpage__block.affiliate .long {
  width: 90%;
}
@media (min-width: 768px) {
  main .subpage__block.tools .long, main .subpage__block.affiliate .long {
    width: 40rem;
  }
}
main .about .subpage__block:not(:last-child) {
  margin-bottom: 5em;
}
main .about .subpage__block .long {
  width: 80%;
}
@media (min-width: 768px) {
  main .about .subpage__block .long {
    width: 28rem;
  }
}
main .about .subpage__block--body p {
  margin-bottom: 2em;
}
main .contact .address {
  border: 1px solid #18aace;
  text-align: center;
  margin: 4em auto 1em;
  padding: 3rem 2rem 3rem;
  max-width: 50rem;
  width: 90%;
  box-sizing: border-box;
  position: relative;
}
main .contact .address::before {
  content: "Please Contact Us";
  position: absolute;
  width: 50%;
  top: -1.1rem;
  left: 25%;
  background-color: #fff;
  text-transform: uppercase;
  color: #18aace;
}
@media (min-width: 768px) {
  main .contact .address::before {
    top: -1.5rem;
  }
}
main .contact .address dt {
  font-weight: 700;
  margin-bottom: 0.5em;
}
main .tools p {
  margin-bottom: 1em;
}
main .email p {
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  main .email.list {
    margin-left: 1.5em;
    margin-right: 1em;
  }
}
main .email.list strong {
  padding-left: 0.5em;
  display: block;
}
main .products .short2 {
  width: 100%;
}
main .products__item:not(:last-child) {
  margin-bottom: 2em;
}
main .products__item .text__block h2 {
  position: relative;
}
main .products__item .text__block h2 span {
  display: block;
  background-color: #18aace;
  color: #fff;
  padding: 0 1em;
}
@media (min-width: 768px) {
  main .products__item .text__block h2 {
    width: 90%;
    margin: 0 auto 1em;
  }
  main .products__item .text__block h2 span {
    max-width: 30rem;
  }
  main .products__item .text__block h2 span::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    border-bottom: 2px solid #18aace;
    top: 50%;
    left: 0;
    z-index: -1;
  }
}
main .products__item .text__block p:last-child {
  margin-bottom: 0;
}
main .products .hide-item table {
  display: none;
}

.ja main .subpage__block--headering {
  margin-left: -1.9rem;
}
.ja main .intro strong {
  font-size: 1.3em;
}
@media (min-width: 768px) {
  .ja main .intro strong {
    font-size: 1.7em;
  }
}

footer {
  position: relative;
  background-color: #011627;
  color: #ccc;
  padding-top: 3em;
  font-size: 1.4rem;
}
footer .container {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 2em;
  }
}
footer .company-info__title {
  font-weight: bold;
  font-size: 1.6rem;
}
footer .company-info__text {
  padding-top: 0.5em;
}
footer .menu {
  max-width: 335px;
  width: 70%;
  padding: 2em 0 1em;
  box-sizing: border-box;
  margin: 0 auto;
  text-align: right;
}
@media (min-width: 768px) {
  footer .menu {
    padding: 0;
    margin-right: 0;
  }
}
footer .menu__block {
  display: flex;
  justify-content: flex-end;
}
footer .menu__block li {
  list-style: none;
  padding: 0 1em;
  text-align: left;
}
footer .menu__block li:last-child {
  width: 51%;
  border-left: 1px solid;
  box-sizing: border-box;
}
footer .menu__block a {
  color: #fff;
}
footer .menu__block a:hover {
  text-decoration: underline;
}
footer .bt--contact {
  position: absolute;
  top: -2rem;
  right: 2rem;
  color: #fff;
}
footer .copyright {
  display: block;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.2rem;
  background-color: #000;
  padding: 3rem 0;
}

.cover {
  width: 100%;
  height: 12rem;
  background-color: #cbf3ff;
  margin-bottom: 3rem;
}
.cover .container {
  position: relative;
  height: 100%;
}
.cover h1 {
  position: absolute;
  bottom: -1.3rem;
  font-size: 4.7rem;
  left: 2rem;
  color: #fff;
}
@media (min-width: 992px) {
  .cover {
    height: 15rem;
    margin-bottom: 5rem;
  }
  .cover h1 {
    bottom: -3.5rem;
    left: 0;
    font-size: 8rem;
  }
}

.top .cover {
  position: relative;
  background-image: url(../../images/top.webp);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #000;
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
}
.top .cover .background {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.6;
}
.top .cover .container {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-top: 30%;
}
.top .cover .container p {
  text-align: center;
  font-size: 1.6em;
  line-height: 1.2;
  color: #fff;
}
@media (min-width: 576px) {
  .top .cover .container {
    padding-top: 15%;
  }
  .top .cover .container p {
    font-size: 1.8em;
  }
}
.top .cover .scroll {
  position: relative;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 1rem;
  padding-top: 6em;
}
.top .cover .scroll span {
  transform: rotate(180deg) scale(2);
  display: block;
  margin: 1em auto 0;
  width: 8em;
}
.top .cover.ja .container p {
  font-size: 1.4em;
  line-height: 1.5;
}

.top header {
  background-color: rgba(1, 22, 39, 0.3);
}
.top section {
  position: relative;
}
.top section .container {
  padding-top: 5em;
}
@media (min-width: 768px) {
  .top section .container {
    padding-bottom: 15rem;
  }
}
.top .section--headering {
  margin-top: -12.8rem;
  font-size: 5rem;
  padding-bottom: 5rem;
  max-width: 25rem;
  width: 100%;
}
@media (min-width: 768px) {
  .top .section--headering {
    margin-top: -16.5rem;
    margin-left: -5rem;
    font-size: 9rem;
    max-width: 50rem;
  }
}
.top .section--headering .title {
  color: #fff;
  line-height: 1.2;
}
.top .section--headering .subtitle {
  width: 90%;
  color: #18aace;
  font-weight: 600;
  font-size: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top .section--headering .subtitle::before {
  content: "";
  background-color: #18aace;
  width: 90%;
  height: 4px;
  display: block;
  margin-right: 1em;
  box-sizing: border-box;
}
.top main .about .container {
  padding-top: 0;
}
.top main .about .container__block {
  width: 80%;
}
.top main .solutions .section--headering .title,
.top main .news .section--headering .title {
  color: #cbf3ff;
}
.top main .solutions__block {
  position: relative;
  max-width: 55rem;
  width: 100%;
  margin: 0 auto 3em;
  margin-bottom: 3em;
  box-shadow: 12px 7px 25px -19px;
}
.top main .solutions__block:last-child {
  margin-bottom: 0;
}
.top main .solutions__block .article {
  max-width: 55rem;
  width: 100%;
  box-sizing: border-box;
  padding: 2rem;
  background-color: #fff;
}
.top main .solutions__block .article__title {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 0.5em;
  color: #18aace;
}
.top main .solutions__block .article .bt {
  margin: 1em auto;
  color: #fff;
}
.top main .solutions__block img {
  max-width: 55rem;
  width: 100%;
  border-radius: 20px 20px 0 0;
}
@media (min-width: 768px) {
  .top main .solutions__block {
    max-width: 100rem;
    box-shadow: none;
    justify-content: center;
  }
  .top main .solutions__block .article {
    max-width: 40rem;
    box-shadow: 12px 7px 25px -19px;
    margin-left: -2em;
    padding: 2rem 2em;
  }
  .top main .solutions__block .article .bt {
    max-width: 150px;
    margin-right: 0;
  }
  .top main .solutions__block:nth-of-type(odd) {
    flex-direction: row-reverse;
  }
  .top main .solutions__block:nth-of-type(odd) .article {
    margin-left: 0;
    margin-right: -2em;
    z-index: 10;
  }
  .top main .solutions__block img {
    border-radius: 20px;
  }
}
.top main .products .container {
  max-width: 85rem;
}
.top main .products .container__block {
  margin-bottom: 4rem;
}
.top main .products .bt {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .top main .products .bt {
    margin-top: 4rem;
  }
}
.top main .products__block {
  background-size: 11rem 11rem;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 12rem 0 5rem;
}
@media (min-width: 768px) {
  .top main .products__block {
    padding: 3rem 0 3rem 16rem;
    background-position: left center;
  }
}
.top main .products__block.security {
  background-image: url(../../images/svg/secuity.svg);
}
.top main .products__block.power {
  background-image: url(../../images/svg/power.svg);
}
.top main .products__block.equipment {
  background-image: url(../../images/svg/equipment.svg);
}
.top main .products__block.network {
  background-image: url(../../images/svg/network.svg);
  background-size: 12rem 12rem;
  padding: 15rem 0 3rem;
}
@media (min-width: 768px) {
  .top main .products__block.network {
    padding: 3rem 0 3rem 16rem;
  }
}
.top main .products__block dt {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1em;
}
.top main .news .container {
  padding-bottom: 7rem;
}
@media (min-width: 768px) {
  .top main .news .container {
    padding-bottom: 15rem;
  }
}
.top main .news .article {
  width: 100%;
  margin: 0 auto 3em;
}
@media (min-width: 768px) {
  .top main .news .article {
    width: 85%;
  }
}
.top main .news .article:last-child {
  margin-bottom: 0;
}
.top main .news .article a {
  font-weight: 600;
  text-decoration: underline;
}
.top main .news .article__headering {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid;
  border-left: 5px solid;
  padding: 0 1rem 0.5rem;
  margin: 0 0 1rem;
  line-height: 1.2;
}
.top main .news .article__headering .title {
  font-weight: 600;
}
.top main .news .article__headering .date {
  font-size: 1.2rem;
  padding: 0 0.5rem;
  margin-left: 4em;
}
.top main .news .article__body {
  padding: 0 1.5rem;
}

.text__block {
  padding-top: 2em;
}
.text__block.center {
  text-align: center;
}
.text__block h1 {
  font-size: 1.2em;
  font-weight: 700;
  padding: 0 0 2em;
  text-align: center;
}
.text__block h2 {
  font-weight: 700;
  margin-bottom: 0.5em;
}
.text__block h3 {
  margin-left: 1em;
  font-weight: 600;
}
.text__block p {
  margin-bottom: 2em;
}
@media (min-width: 768px) {
  .text__block h1 {
    font-size: 2em;
    font-weight: 600;
    padding-top: 2em;
  }
  .text__block h2 {
    font-size: 1.2em;
  }
  .text__block p {
    margin-bottom: 3em;
  }
}

.table {
  margin: 0 auto 2rem;
  border: 1px solid #ccc;
  border-top: none;
}
@media (min-width: 768px) {
  .table {
    border-left: none;
    align-items: stretch;
  }
  .table.flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.table dt,
.table dd {
  padding: 1rem;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}
@media (min-width: 768px) {
  .table dt,
  .table dd {
    width: 70%;
  }
}
.table dt {
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
  background-color: rgba(204, 204, 204, 0.3);
  text-transform: uppercase;
  font-size: 0.9em;
}
@media (min-width: 768px) {
  .table dt {
    width: 30%;
    padding: 1rem;
    font-size: 0.8em;
    border-top: 1px solid #fff;
  }
  .table dt:first-of-type {
    border-top-color: #cbf3ff;
  }
}
@media (min-width: 768px) {
  .table dd {
    border-top: 1px solid #cbf3ff;
    text-align: left;
    padding-left: 3rem;
  }
}

.table__block {
  max-width: 80rem;
  width: 100%;
  margin: 1em auto;
}
.table__block--title {
  font-weight: 700;
}
.table__block table {
  width: 100%;
  font-size: 1.2rem;
  text-align: center;
}
.table__block th,
.table__block td {
  border: 1px solid #ccc;
  padding: 0.5rem;
  box-sizing: border-box;
  vertical-align: middle;
}
.table__block th {
  font-weight: 600;
}
.table__block tr:nth-of-type(even) {
  background-color: rgba(203, 243, 255, 0.1);
}
.table__block tr.label--top {
  background-color: rgba(203, 243, 255, 0.5);
}
.table__block button {
  cursor: auto;
  background-color: rgba(112, 112, 112, 0.3);
  color: #fff;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  display: block;
  margin: 0.5em auto;
  width: 6rem;
}
@media (min-width: 768px) {
  .table__block button {
    width: 8rem;
    padding: 0.3rem 0.5rem;
  }
}

.table__block--sub .title {
  padding: 1em 1em 0.5em;
  text-align: right;
  cursor: pointer;
  font-size: 1.4rem;
}
.table__block--sub th {
  width: 30%;
}
.table__block--sub:not(.show) .icon--open .fa-play {
  transform: rotate(0);
}
.table__block--sub:not(.show).show .icon--open .fa-play {
  transform: rotate(90deg);
}

/*動きのきっかけの起点となるクラス名 はじめは非表示に*/
.fadeInUpTrigger,
.fadeInLeftTrigger,
.fadeInRightTrigger {
  opacity: 0;
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time {
  animation-delay: 0.5s;
}/*# sourceMappingURL=style.css.map */