@charset "UTF-8";
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

:root {
  --main-text: #333;
  --main-bg: #fff;
  --subcolor: #F0F4F8;
  --subcolor2: #0071B7;
  --subcolor3: #4094C7;
  --wcolor: #fff;
  --sub-bg: #fff;
}

:root[data-theme-mode='light'] {
  --main-text: #333;
  --main-bg: #fff;
  --subcolor: #F0F4F8;
  --subcolor2: #0071B7;
  --subcolor3: #4094C7;
  --wcolor: #fff;
  --sub-bg: #fff;
}

:root[data-theme-mode='dark'] {
  --main-text: #ddd;
  --main-bg: #1c1c1c;
  --subcolor: #282828;
  --subcolor2: #0071B7;
  --subcolor3: #4094C7;
  --wcolor: #ddd;
  --sub-bg: #333;
}

:root[data-theme-mode='dark'] img {
  filter: grayscale(30%);
}

body {
  transition: .5s;
  margin: 0;
  font-family: 'Poppins', '游ゴシック体', YuGothic, '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic', sans-serif;
  font-size: 16px;
  overflow: scroll;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  background: var(--main-bg);
  color: var(--main-text);
  transition-duration: .3s;
  transition-property: color, background-color;
  position: relative;
}

body::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}

/*tablet*/
@media screen and (max-width: 900px) {
  body {
    font-size: 14px;
  }
}

/*mobile*/
@media screen and (max-width: 600px) {
  body {
    font-size: 13px;
  }
}

header {
  height: 52px;
  width: 100%;
  position: fixed;
  top: 0px;
  z-index: 10;
  padding: 0px 15px;
  position: fixed;
  background: var(--main-bg);
}

#brand {
  float: left;
  padding: 6px 0;
}

#brand a {
  display: block;
  width: 200px;
  height: 40px;
  font-size: 0;
  background: url(../images/logo.png) left top/200px auto no-repeat;
}

#kv-wrap {
  margin: 0 auto;
  max-width: 960px;
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

#kv-wrap .kv-text {
  position: absolute;
  z-index: 3;
}

#kv-wrap .kv-text h1 {
  font-size: 2.2em;
  margin-bottom: 0.3em;
  white-space: nowrap;
}

#kv-wrap .kv-text ul li {
  list-style: none;
  display: flex;
  margin-bottom: 0.3em;
}

#kv-wrap .kv-text ul li span {
  color: var(--subcolor2);
  font-weight: bold;
}

#kv-wrap .kv-text ul li p {
  margin-left: 0.2em;
}

#kv-wrap .kv-img {
  margin: 0 0 0 auto;
  width: 500px;
  height: 300px;
  background-size: cover;
}

#kv-wrap .kv-img img {
  max-width: 100%;
}

#menu {
  display: block;
}

#menu-btn {
  display: none;
}

#menu-content {
  margin: 0;
  list-style-type: none;
}

#menu-inner {
  display: flex;
  align-items: center;
}

#menu-content > li {
  position: relative;
  float: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  display: block;
}

#menu-content > li > a {
  display: inline-flex;
  font-size: 15px;
  text-decoration: none;
  padding: 0.3em 0.8em;
}

#menu-content > li > label {
  margin: 0.4em 0.8em;
}

#menu-content > li:last-child a {
  background: #0071b7;
  color: var(--wcolor);
  margin-left: 0.7em;
  padding: 0.3em 0.8em 0.3em 0.4em;
}

#menu-content > li:last-child span {
  margin-right: 0.3em;
}

#menu-content > li > ul.second-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  padding-left: 0;
  list-style-type: none;
  -webkit-box-shadow: 1px 1px 7px #bbb;
  box-shadow: 1px 1px 7px #bbb;
  background: var(--main-bg);
}

#menu-content > li:hover > ul.second-content {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.2s, visibility 0.2s;
  transition: opacity 0.2s, visibility 0.2s;
}

#menu-content > li > ul.second-content > li {
  text-align: left;
  width: 160px;
}

#menu-content > li > ul.second-content > li > a {
  display: block;
  line-height: 35px;
  font-size: 12px;
  text-decoration: none;
  white-space: nowrap;
  padding-left: 1.4em;
}

#menu-content > li > ul.second-content > li > a:hover {
  background: #eee;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media screen and (max-width: 960px) {
  nav {
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    width: 60%;
    background: var(--main-bg);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 3;
    opacity: 0;
  }
  .open nav {
    left: 0;
    opacity: 1;
  }
  nav .inner {
    padding: 25px;
  }
  nav .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  nav .inner ul li {
    position: relative;
    margin: 0;
  }
  nav .inner ul li a {
    display: block;
    font-size: 14px;
    text-decoration: none;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
  }
  .toggle_btn {
    display: block;
    position: fixed;
    top: 10px;
    right: 15px;
    width: 30px;
    height: 30px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    z-index: 3;
  }
  .toggle_btn span {
    position: absolute;
    left: 0;
    width: 30px;
    height: 1px;
    background: #ABB0B2;
    border-radius: 4px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .toggle_btn span:nth-child(1) {
    top: 4px;
  }
  .toggle_btn span:nth-child(2) {
    top: 14px;
  }
  .toggle_btn span:nth-child(3) {
    bottom: 4px;
  }
  .open .toggle_btn span {
    background: var(--main-text);
  }
  .open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-45deg);
  }
  .open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }
  .open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(45deg);
  }
  #mask {
    display: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main-bg);
    opacity: 0.5;
    z-index: 2;
    cursor: pointer;
  }
  #menu-content > li {
    width: 100%;
    margin-bottom: 15px;
  }
  #menu-content > li:hover {
    background: none;
  }
  #menu-content > li > a {
    height: 100%;
    padding: 0px;
    font-size: 100%;
    border-bottom: 1px solid var(--subcolor2);
    line-height: 2.4em;
    display: block;
  }
  #menu-content > li > a > span.material-symbols-outlined {
    display: none;
  }
  #menu-content > li:last-child a {
    background: var(--subcolor2);
    color: var(--wcolor);
    margin-left: 0;
    padding: 0.3em 0.8em;
    border-bottom: none;
    margin-top: 1em;
  }
  #menu-content > li:last-child a:hover {
    background: var(--subcolor3);
  }
  #menu-content > li > ul.second-content {
    visibility: visible;
    opacity: 1;
    width: 100%;
    position: relative;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-top: 0.5em;
  }
  #menu-content > li > ul.second-content > li {
    width: 100%;
    text-align-last: left;
    padding-left: 0;
  }
  #menu-content > li > ul.second-content > li > a {
    padding-left: 0;
    line-height: 30px;
  }
  #menu-content > li > ul.second-content > li > a:hover {
    background: none;
  }
}

/*# sourceMappingURL=style.css.map */
.switch__label {
  width: 37px;
  position: relative;
  display: inline-block;
  padding-top: 3px;
}

.switch__content {
  display: block;
  cursor: pointer;
  position: relative;
  border-radius: 7px;
  height: 14px;
  background: #dde1e2;
  -webkit-transition: all .1s .4s;
  -moz-transition: all .1s .4s;
  -ms-transition: all .1s .4s;
  -o-transition: all .1s .4s;
  transition: all .1s .4s;
  overflow: hidden;
}

.switch__content:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 7px;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.switch__input {
  display: none;
}

.switch__circle {
  display: block;
  top: -1px;
  left: 0px;
  position: absolute;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #F1F1F1;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.switch__input:checked ~ .switch__circle {
  left: 18px;
  background: var(--main-text);
}

.switch__input:checked ~ .switch__content {
  border-color: transparent;
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
}

.switch__input:checked ~ .switch__content:after {
  background: var(--subcolor2);
  width: 100%;
}

.menu-color {
  color: var(--main-text);
  transform: 0.3s;
}

.menu-color:hover {
  color: #ABB0B2;
}

.space {
  padding-top: 5em;
}

@media screen and (max-width: 970px) {
  .space {
    padding: 6em 3em 0;
  }
}

/*tablet*/
@media screen and (max-width: 900px) {
  #kv-wrap {
    flex-direction: column;
    margin: 0 auto;
    display: block;
  }
}

/*mobile*/
@media screen and (max-width: 500px) {
  #kv-wrap {
    display: flex;
    flex-direction: column;
  }
  #kv-wrap .kv-text {
    position: static;
    order: 2;
  }
  #kv-wrap .kv-text h1 {
    font-size: 2em;
    margin-top: 0.5em;
  }
  #kv-wrap .kv-img {
    max-width: 100%;
    height: 295px;
    margin: 0 auto;
    order: 1;
    justify-content: center;
  }
}

@media screen and (max-width: 500px) {
  #kv-wrap .kv-text h1 {
    margin-top: 0.2em;
  }
  #kv-wrap .kv-img {
    max-width: 100%;
    height: 255px;
  }
}

@media screen and (max-width: 468px) {
  #kv-wrap .kv-text h1 {
    margin-top: -0.5em;
    font-size: 1.7em;
  }
  #kv-wrap .kv-img {
    max-width: 100%;
    height: 225px;
  }
}

@media screen and (max-width: 426px) {
  #kv-wrap .kv-text h1 {
    margin-top: 0.2em;
    font-size: 1.5em;
  }
  #kv-wrap .kv-img {
    max-width: 100%;
    height: 205px;
  }
}

@media screen and (max-width: 385px) {
  #kv-wrap .kv-img {
    max-width: 100%;
    height: 195px;
  }
}

@media screen and (max-width: 378px) {
  #kv-wrap .kv-img {
    max-width: 100%;
    height: 180px;
  }
}

@media screen and (max-width: 350px) {
  #kv-wrap .kv-img {
    max-width: 100%;
    height: 160px;
  }
}

/*card*/
#features_wrap h1 {
  text-align: center;
  margin-bottom: 1.7em;
  font-size: 1.8em;
  color: var(--main-text);
}

#features_wrap #cardlayout-wrap {
  display: flex;
}

#features_wrap #cardlayout-wrap .card-list {
  color: var(--main-text);
  background: var(--sub-bg);
}

#features_wrap #cardlayout-wrap .card-list .card-figure {
  margin: -3em auto 0;
}

#features_wrap #cardlayout-wrap .card-list .card-figure img {
  margin: 0 auto;
  max-width: 9em;
}

#features_wrap a {
  text-decoration: none;
}

#features_wrap a button {
  text-decoration: none;
  appearance: button;
  background: var(--subcolor2);
  border: 1px solid var(--subcolor2);
  box-sizing: border-box;
  cursor: pointer;
  line-height: 1.15;
  overflow: visible;
  padding: 0.7em 4em;
  position: relative;
  text-align: center;
  text-transform: none;
  transition: all 80ms ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: fit-content;
  margin: 0 auto;
  display: block;
  transform: 0.5s;
  letter-spacing: 2px;
  margin-bottom: 6em;
  color: var(--wcolor);
}

#features_wrap a button:hover {
  background: var(--subcolor3);
  border: 1px solid var(--subcolor3);
}

#cardlayout-wrap {
  display: flex;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  margin: 0 auto;
  max-width: 960px;
  width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

a.card-link {
  text-decoration: none;
}

#cardlayout-wrap img {
  display: block;
  max-width: 100%;
  height: auto;
}

.card-figure {
  margin: 0;
  padding: 0;
}

.card-title {
  margin: 0.6em 0 0;
  text-align: center;
  font-size: 1.3em;
}

.card-text-tax {
  margin: 0;
  padding: 0.5em 2em 2em;
}

.card-list {
  margin: 2.5em auto;
  padding: 0;
  width: 96%;
  box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.1);
  min-width: 200px;
}

@media all and (min-width: 768px) {
  .card-list {
    margin: 2em 0;
    width: calc(96% / 2);
    /* 96%幅を2で割るという指定 */
  }
}

@media all and (min-width: 992px) {
  .card-list {
    width: calc(96% / 3);
    /* 96%幅を3で割るという指定 */
  }
  #cardlayout-wrap::after {
    content: "";
    display: block;
    width: calc(96% / 3);
  }
}

#products_wrap {
  background: var(--subcolor);
  padding-bottom: 5em;
}

#products_wrap h1 {
  text-align: center;
  margin-bottom: 1.7em;
  font-size: 1.8em;
  color: var(--main-text);
}

#products_wrap .products_text {
  display: flex;
  vertical-align: middle;
  max-width: 960px;
  margin: 0 auto 2em;
}

#products_wrap .products_text .light {
  display: block;
}

#products_wrap .products_text .light img {
  max-width: 300px;
  height: 80px;
  margin: 0 auto;
  display: block;
  margin-bottom: 2em;
}

#products_wrap .products_text .dark {
  display: none;
}

#products_wrap .products_text .dark img {
  max-width: 300px;
  height: 100%;
}

#products_wrap .products_text p {
  padding-left: 1em;
  color: var(--main-text);
}

#products_wrap #cardlayout-wrap {
  display: flex;
}

#products_wrap #cardlayout-wrap .card-list {
  background: var(--main-bg);
  color: var(--main-text);
}

#products_wrap #cardlayout-wrap .card-list .card-figure {
  margin: -3em auto 0;
}

#products_wrap #cardlayout-wrap .card-list .card-figure img {
  margin: 0 auto;
  max-width: 9em;
}

#products_wrap #cardlayout-wrap .card-list .card-title {
  color: var(--main-text);
}

#products_wrap #cardlayout-wrap .card-list .card-title span {
  color: var(--subcolor2);
}

#products_wrap #cardlayout-wrap .card-list .card-text-tax {
  color: var(--main-text);
}

#products_wrap a {
  text-decoration: none;
}

#products_wrap a button {
  text-decoration: none;
  appearance: button;
  background: var(--subcolor2);
  border: 1px solid var(--subcolor2);
  box-sizing: border-box;
  color: var(--wcolor);
  cursor: pointer;
  line-height: 1.15;
  overflow: visible;
  padding: 0.7em 4em;
  position: relative;
  text-align: center;
  text-transform: none;
  transition: all 80ms ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: fit-content;
  margin: 0 auto;
  display: block;
  transform: 0.5s;
  letter-spacing: 2px;
}

#products_wrap a button:hover {
  background: var(--subcolor3);
  border: 1px solid var(--subcolor3);
}

#products_wrap #products_list {
  margin: 2em auto 0;
  border-top: 1px solid var(--subcolor3);
  max-width: 960px;
  padding-top: 3em;
}

#products_wrap #products_list #cardlayout-wrap {
  display: flex;
}

#products_wrap #products_list #cardlayout-wrap .card-list {
  background: var(--main-bg);
}

#products_wrap #products_list #cardlayout-wrap .card-list .card-figure {
  margin: -3em auto 0;
}

#products_wrap #products_list #cardlayout-wrap .card-list .card-figure img {
  margin: 0 auto;
  max-width: 12em;
}

#products_wrap #products_list #cardlayout-wrap .card-list .card-title span {
  color: var(--subcolor2);
}

@media all and (max-width: 768px) {
  #products_wrap .products_text {
    background: #0071b7;
    display: contents;
    vertical-align: middle;
    max-width: 960px;
    margin: 0 auto 2em;
  }
  #products_wrap .products_text .img_light img {
    margin: 0 auto 0.5em;
    display: block;
  }
  #products_wrap .products_text .img_dark img {
    margin: 0 auto 0.5em;
    display: block;
    max-width: 100%;
  }
  #products_wrap .products_text p {
    padding-left: 0;
    margin-bottom: 1em;
  }
}

#news_wrap {
  max-width: 960px;
  display: block;
  margin: 0 auto;
  padding-bottom: 5em;
}

#news_wrap h1 {
  text-align: center;
  margin-bottom: 1.7em;
  font-size: 1.8em;
  color: var(--main-text);
}

#news_wrap .tw_light {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

#news_wrap .tw_dark {
  display: none;
  max-width: 100%;
  margin: 0 auto;
}

#contact_wrap {
  display: block;
  margin: 0 auto;
  padding: 3em 0;
  background: var(--subcolor2);
  color: var(--main-text);
}

#contact_wrap h1 {
  text-align: center;
  font-size: 1.8em;
  margin-bottom: 0.5em;
  color: var(--wcolor);
}

#contact_wrap .mail {
  text-decoration: underline;
  color: var(--wcolor);
}

#contact_wrap a {
  text-decoration: none;
}

#contact_wrap a button {
  text-decoration: none;
  appearance: button;
  border: 1px solid var(--wcolor);
  box-sizing: border-box;
  color: var(--subcolor2);
  cursor: pointer;
  line-height: 1.15;
  overflow: visible;
  padding: 0.7em 4em;
  position: relative;
  text-align: center;
  text-transform: none;
  transition: all 80ms ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: fit-content;
  margin: 0 auto;
  display: block;
  transform: 0.5s;
  font-weight: bold;
  margin-bottom: 1em;
}

#contact_wrap a button:hover {
  background: #e0e0e0;
  border: 1px solid #e0e0e0;
}

#contact_wrap a {
  text-align: center;
  color: var(--main-text);
  display: block;
  font-size: 0.8em;
}

footer {
  display: block;
  margin: 3em auto;
}

footer .footer_logo img {
  width: 250px;
  display: block;
  margin: 0 auto;
}

footer .sns_link {
  text-align: center;
}

footer .sns_link li a {
  color: var(--main-text);
  padding: 1em 0.2em 0em;
  font-size: 1.2em;
}

footer ul {
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

footer ul li {
  list-style: none;
  padding: 0 0.7em 1em;
}

footer ul li a {
  text-decoration: none;
  color: var(--main-text);
}

footer p {
  text-align: center;
  font-size: 0.5em;
  color: var(--main-text);
}

/*sns*/
.cp_snslink {
  position: fixed;
  top: 50%;
  right: 0;
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

.cp_snslink .cp_link a {
  position: relative;
  font-family: 'FontAwesome';
  display: block;
  width: 40px;
  height: 40px;
  padding: 10px;
  -webkit-transition: background 0.5s ease 0.3ms;
  transition: background 0.5s ease 0.3ms;
  text-align: center;
  text-decoration: none;
  color: var(--wcolor);
  background: var(--subcolor2);
  display: table-cell;
  vertical-align: middle;
}

.cp_snslink .facebook a:hover {
  background: #3b5998;
}

.cp_snslink .twitter a:hover {
  background: #00acee;
}

.cp_snslink .linkedin a:hover {
  background: #0a66c2;
}

.cp_snslink .youtube a:hover {
  background: #FF0000;
}

.cp_snslink .instagram a:hover {
  background: linear-gradient(45deg, #fdf497, #fd5949, #d6249f, #285aeb);
}

.cp_snslink .cp_link:first-child a {
  border-radius: 0 0 0 0;
}

.cp_snslink .cp_link a:hover span {
  visibility: visible;
  transform: rotateY(0);
  opacity: 1;
}

@media all and (max-width: 340px) {
  .cp_snslink {
    display: none;
  }
}

#kv-wrap2 {
  padding-top: 2em;
  margin-bottom: 2em;
  position: relative;
}

#kv-wrap2 .kv-text2 {
  z-index: 3;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  text-align: center;
}

#kv-wrap2 .kv-text2 h1 {
  font-size: 2em;
}

#kv-wrap2 .kv-text2 p {
  color: var(--subcolor2);
}

#kv-wrap2 .kv3 {
  max-width: 100%;
  display: block;
}

#kv-wrap2 .kv2 {
  display: none;
}

@media screen and (max-width: 970px) {
  #kv-wrap2 {
    padding: 4em 0 0;
  }
  #kv-wrap2 .kv3 {
    display: none;
  }
  #kv-wrap2 .kv2 {
    display: block;
    max-width: 100%;
  }
}

@media screen and (max-width: 468px) {
  #kv-wrap2 {
    margin-top: 3em;
    margin-bottom: 5em;
  }
  #kv-wrap2 .kv-text2 h1 {
    font-size: 1.7em;
    padding-top: 2em;
  }
}

#research_wrap {
  padding-top: 0;
  margin: -3em 0 3em;
}

#research_wrap h1 {
  text-align: left;
  margin-bottom: 1.7em;
  font-size: 1.8em;
}

#research_wrap #cardlayout-wrap {
  display: flex;
}

#research_wrap #cardlayout-wrap .card-list2 {
  box-shadow: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

#research_wrap #cardlayout-wrap .card-list2 .card-figure {
  margin: 0 auto;
}

#research_wrap #cardlayout-wrap .card-list2 .card-figure img {
  margin: 0 auto;
  border: solid 1px #DDDDDD;
  background: var(--wcolor);
}

#research_wrap #cardlayout-wrap .card-list2 .card-title {
  text-align: left;
}

#research_wrap #cardlayout-wrap .card-list2 .card-text-tax {
  padding: 0.5em 0 1em;
}

#research_wrap a {
  text-decoration: none;
  display: block;
  width: 100%;
  margin-top: auto;
}

#research_wrap a button {
  text-decoration: none;
  appearance: button;
  background: var(--subcolor2);
  border: 1px solid var(--subcolor2);
  box-sizing: border-box;
  color: var(--wcolor);
  cursor: pointer;
  line-height: 1.15;
  overflow: visible;
  position: relative;
  text-align: center;
  text-transform: none;
  transition: all 80ms ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: fit-content;
  margin: 0 auto;
  display: block;
  transform: 0.5s;
  letter-spacing: 2px;
  margin-bottom: 3em;
  padding-top: 0.7em;
  padding-bottom: 0.7em;
  width: 100%;
}

#research_wrap a button:hover {
  background: var(--subcolor3);
  border: 1px solid var(--subcolor3);
}

@media screen and (max-width: 970px) {
  .space2 {
    padding: 6em 5em 0;
  }
}

@media all and (min-width: 768px) {
  .card-list2 {
    width: calc(90% / 2);
    /* 96%幅を2で割るという指定 */
  }
}

@media all and (min-width: 992px) {
  .card-list2 {
    width: calc(90% / 3);
    /* 96%幅を3で割るという指定 */
  }
}

@media all and (max-width: 767px) {
  .card-list2 {
    width: calc(90% / 2);
    /* 96%幅を2で割るという指定 */
  }
}

@media all and (max-width: 500px) {
  .card-list2 {
    margin: 0 auto;
    width: calc(90% / 1);
    /* 96%幅を2で割るという指定 */
  }
  .card-list2 .card-figure img {
    width: 100%;
  }
  .card-list2 .card-title {
    text-align: center;
  }
}

/*about*/
#vision-wrap {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  margin-top: -4em;
  color: var(--main-text);
}

#vision-wrap .title3 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--main-text);
}

#vision-wrap .title3 h1 {
  font-size: 1.7em;
}

#vision-wrap .title3 p {
  font-size: 0.8em;
  position: relative;
  color: var(--main-text);
}

#vision-wrap .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: var(--subcolor2);
}

#vision-wrap p {
  margin-bottom: 2em;
}

#vision-wrap .logomark {
  background: var(--subcolor);
  padding: 2em;
  display: flex;
}

#vision-wrap .logomark img {
  width: 100px;
  height: 100px;
  margin-right: 1em;
}

#vision-wrap .logomark p {
  display: block;
}

#member_wrap .title3 {
  text-align: center;
  margin-bottom: 3em;
  color: var(--main-text);
}

#member_wrap .title3 h1 {
  font-size: 1.7em;
}

#member_wrap .title3 p {
  font-size: 0.8em;
  position: relative;
}

#member_wrap .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: var(--subcolor2);
}

#member_wrap #cardlayout-wrap {
  display: flex;
}

#member_wrap #cardlayout-wrap .card-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  background: var(--sub-bg);
}

#member_wrap #cardlayout-wrap .card-list .card-figure {
  margin: -3em auto 0;
}

#member_wrap #cardlayout-wrap .card-list .card-figure img {
  margin: 0 auto;
  width: 160px;
  height: 160px;
}

#member_wrap #cardlayout-wrap .card-list h2 {
  text-align: center;
}

#member_wrap #cardlayout-wrap .card-list h4 {
  text-align: center;
  font-size: 0.8em;
}

#member_wrap a {
  text-decoration: none;
}

#member_wrap a button {
  text-decoration: none;
  appearance: button;
  background: var(--subcolor2);
  border: 1px solid var(--subcolor2);
  box-sizing: border-box;
  color: var(--wcolor);
  cursor: pointer;
  line-height: 1.15;
  overflow: visible;
  padding: 0.7em 4em;
  position: relative;
  text-align: center;
  text-transform: none;
  transition: all 80ms ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: fit-content;
  margin: 0 auto;
  display: block;
  transform: 0.5s;
  letter-spacing: 2px;
  margin-bottom: 6em;
}

#member_wrap a button:hover {
  background: var(--subcolor3);
  border: 1px solid var(--subcolor3);
}

#agent-wrap {
  text-align: center;
}

#agent-wrap .title3 {
  text-align: center;
  margin-bottom: 3em;
  color: var(--main-text);
}

#agent-wrap .title3 h1 {
  font-size: 1.7em;
  color: var(--main-text);
}

#agent-wrap .title3 p {
  font-size: 0.8em;
  position: relative;
  color: var(--main-text);
}

#agent-wrap .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: var(--subcolor2);
}

#agent-wrap p {
  font-size: 0.8em;
  margin-bottom: 2em;
  color: var(--main-text);
}

#agent-wrap h3 {
  color: var(--main-text);
}

#agent-wrap a {
  text-decoration: none;
}

#agent-wrap a button {
  text-decoration: none;
  appearance: button;
  background: var(--subcolor2);
  border: 1px solid var(--subcolor2);
  box-sizing: border-box;
  color: var(--wcolor);
  cursor: pointer;
  line-height: 1.15;
  overflow: visible;
  padding: 0.7em 4em;
  position: relative;
  text-align: center;
  text-transform: none;
  transition: all 80ms ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: fit-content;
  margin: 0 auto;
  display: block;
  transform: 0.5s;
  letter-spacing: 2px;
  margin-bottom: 6em;
}

#agent-wrap a button:hover {
  background: var(--subcolor3);
  border: 1px solid var(--subcolor3);
}

/*Product information*/
#productmain_wrap {
  padding-top: 0;
  margin: -3em 0 2em;
}

#productmain_wrap h1 {
  text-align: left;
  margin-bottom: 1.7em;
  font-size: 1.8em;
}

#productmain_wrap #cardlayout-wrap {
  display: flex;
}

#productmain_wrap #cardlayout-wrap .card-list3 {
  box-shadow: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

#productmain_wrap #cardlayout-wrap .card-list3 .card-figure {
  margin: 0 auto;
}

#productmain_wrap #cardlayout-wrap .card-list3 .card-figure img {
  margin: 0 auto;
  border: solid 1px #DDDDDD;
  background: var(--wcolor);
}

#productmain_wrap #cardlayout-wrap .card-list3 .card-update {
  border: 1px solid var(--subcolor2);
  padding: 0.3em 0.5em;
  display: inline-table;
  color: var(--subcolor2);
  margin: 1em 0 0.6em;
  width: fit-content;
}

#productmain_wrap #cardlayout-wrap .card-list3 .card-title {
  text-align: left;
  margin: 0;
}

#productmain_wrap #cardlayout-wrap .card-list3 .card-text-tax {
  padding: 0 0 1em;
}

#productmain_wrap a {
  text-decoration: none;
  display: block;
  width: 100%;
  margin-top: auto;
}

#productmain_wrap a button {
  text-decoration: none;
  appearance: button;
  background: var(--subcolor2);
  border: 1px solid var(--subcolor2);
  box-sizing: border-box;
  color: var(--wcolor);
  cursor: pointer;
  line-height: 1.15;
  overflow: visible;
  position: relative;
  text-align: center;
  text-transform: none;
  transition: all 80ms ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: fit-content;
  margin: 0 auto;
  display: block;
  transform: 0.5s;
  letter-spacing: 2px;
  margin-bottom: 3em;
  padding-top: 0.7em;
  padding-bottom: 0.7em;
  width: 100%;
}

#productmain_wrap a button:hover {
  background: var(--subcolor3);
  border: 1px solid var(--subcolor3);
}

@media all and (min-width: 768px) {
  .card-list3 {
    width: calc(90% / 2);
    /* 96%幅を2で割るという指定 */
  }
}

@media all and (min-width: 992px) {
  .card-list3 {
    width: calc(90% / 2);
    /* 96%幅を3で割るという指定 */
  }
}

@media all and (max-width: 767px) {
  .card-list3 {
    width: calc(90% / 2);
    /* 96%幅を2で割るという指定 */
  }
}

@media all and (max-width: 500px) {
  .card-list3 {
    margin: 0 auto;
    width: calc(90% / 1);
    /* 96%幅を2で割るという指定 */
  }
  .card-list3 .card-figure img {
    width: 100%;
  }
  .card-list3 .card-title {
    text-align: center;
  }
}

@media all and (max-width: 470px) {
  #productmain_wrap {
    margin-top: 0;
  }
  #research_wrap {
    margin-top: 0;
  }
}

#productmain_wrap_2 {
  margin: -6em 0 3em;
}

#productmain_wrap_2 h1 {
  text-align: left;
  margin-bottom: 1.7em;
  font-size: 1.8em;
}

#productmain_wrap_2 #cardlayout-wrap {
  display: flex;
  border-top: 1px solid #DDDDDD;
  padding-top: 3em;
}

#productmain_wrap_2 #cardlayout-wrap .card-list2 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  box-shadow: none;
}

#productmain_wrap_2 #cardlayout-wrap .card-list2 .card-figure {
  margin: 0 auto;
}

#productmain_wrap_2 #cardlayout-wrap .card-list2 .card-figure img {
  margin: 0 auto;
  border: solid 1px #DDDDDD;
  background: var(--wcolor);
}

#productmain_wrap_2 #cardlayout-wrap .card-list2 .card-update {
  border: 1px solid var(--subcolor2);
  padding: 0.3em 0.5em;
  display: inline-table;
  color: var(--subcolor2);
  margin: 1em 0 0.6em;
  width: fit-content;
}

#productmain_wrap_2 #cardlayout-wrap .card-list2 .card-title {
  margin: 0;
  text-align: left;
}

#productmain_wrap_2 #cardlayout-wrap .card-list2 .card-text-tax {
  padding: 0 0 1em;
}

#productmain_wrap_2 a {
  text-decoration: none;
  display: block;
  width: 100%;
  margin-top: auto;
}

#productmain_wrap_2 a button {
  text-decoration: none;
  appearance: button;
  background: var(--subcolor2);
  border: 1px solid var(--subcolor2);
  box-sizing: border-box;
  color: var(--wcolor);
  cursor: pointer;
  line-height: 1.15;
  overflow: visible;
  position: relative;
  text-align: center;
  text-transform: none;
  transition: all 80ms ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: fit-content;
  margin: 0 auto;
  display: block;
  transform: 0.5s;
  letter-spacing: 2px;
  margin-bottom: 3em;
  padding-top: 0.7em;
  padding-bottom: 0.7em;
  width: 100%;
}

#productmain_wrap_2 a button:hover {
  background: var(--subcolor3);
  border: 1px solid var(--subcolor3);
}

#GenomeEnhancer-wrap1 {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  margin-top: -4em;
  padding-bottom: 5em;
}

#GenomeEnhancer-wrap1 .gene_img2 {
  margin: 0 auto;
  display: block;
  max-width: 20em;
}

#GenomeEnhancer-wrap1 h1 {
  text-align: center;
  margin: 1em 0;
  color: var(--main-text);
}

#GenomeEnhancer-wrap1 p {
  color: var(--main-text);
}

#GenomeEnhancer-wrap1 .gene_img1 {
  margin-top: 1.5em;
  width: 100%;
}

#GenomeEnhancer-wrap2 {
  background: var(--subcolor);
}

#GenomeEnhancer-wrap2 .doc {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  padding-bottom: 5em;
  color: var(--main-text);
}

#GenomeEnhancer-wrap2 .doc .text {
  margin-right: 2em;
}

#GenomeEnhancer-wrap2 .doc img {
  min-width: 450px;
  width: 100%;
}

@media screen and (max-width: 800px) {
  #GenomeEnhancer-wrap2 .doc {
    display: block;
  }
  #GenomeEnhancer-wrap2 .doc .text {
    margin-right: 0;
  }
  #GenomeEnhancer-wrap2 .doc img {
    width: 70%;
    display: block;
    margin: 0 auto;
    padding-top: 1em;
  }
}

#GenomeEnhancer-wrap3 {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding-bottom: 5em;
}

#GenomeEnhancer-wrap3 .title3 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--main-text);
}

#GenomeEnhancer-wrap3 .title3 h1 {
  font-size: 1.7em;
  color: var(--main-text);
}

#GenomeEnhancer-wrap3 .title3 p {
  color: var(--main-text);
  font-size: 0.8em;
  position: relative;
}

#GenomeEnhancer-wrap3 .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: #0071b7;
}

#GenomeEnhancer-wrap3 ul li {
  padding-bottom: 0.3em;
  list-style-type: none;
  position: relative;
  padding-left: 0.6em;
}

#GenomeEnhancer-wrap3 ul ::before {
  border-radius: 50%;
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  left: 0;
  top: 0.6em;
  content: "";
  background: #0071b7;
}

#GenomeEnhancer-wrap4 {
  background: var(--subcolor);
}

#GenomeEnhancer-wrap4 .title3 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--main-text);
}

#GenomeEnhancer-wrap4 .title3 h1 {
  font-size: 1.7em;
}

#GenomeEnhancer-wrap4 .title3 p {
  color: var(--main-text);
  font-size: 0.8em;
  position: relative;
}

#GenomeEnhancer-wrap4 .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: #0071b7;
}

#GenomeEnhancer-wrap4 .doc {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  padding-bottom: 5em;
  color: var(--main-text);
}

#GenomeEnhancer-wrap4 .doc .text {
  margin-right: 2em;
}

#GenomeEnhancer-wrap4 .doc img {
  min-width: 450px;
  width: 100%;
}

@media screen and (max-width: 800px) {
  #GenomeEnhancer-wrap4 .doc {
    display: block;
  }
  #GenomeEnhancer-wrap4 .doc .text {
    margin-right: 0;
  }
  #GenomeEnhancer-wrap4 .doc img {
    width: 70%;
    display: block;
    margin: 0 auto;
    padding-top: 1em;
  }
}

#GenomeEnhancer-wrap5 {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  align-items: flex-start;
  padding-bottom: 5em;
}

#GenomeEnhancer-wrap5 .title3 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--main-text);
}

#GenomeEnhancer-wrap5 .title3 h1 {
  font-size: 1.7em;
}

#GenomeEnhancer-wrap5 .title3 p {
  color: var(--main-text);
  font-size: 0.8em;
  position: relative;
}

#GenomeEnhancer-wrap5 .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: #0071b7;
}

#GenomeEnhancer-wrap5 ul {
  padding: 0;
}

#GenomeEnhancer-wrap5 ul li {
  list-style-type: none;
}

#GenomeEnhancer-wrap5 ul li .icon {
  color: var(--wcolor);
}

#GenomeEnhancer-wrap5 ul li dl dd {
  margin-left: 0;
}

#GenomeEnhancer-wrap5 .conclusion {
  color: var(--main-text);
  margin-top: 5em;
  border-top: 1px solid #b9b9b9;
  padding-top: 2em;
}

@media screen and (max-width: 670px) {
  #GenomeEnhancer-wrap5 .flow {
    display: block;
  }
  #GenomeEnhancer-wrap5 .flow li dl dd {
    text-align: center;
  }
}

.flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}

.flow > li {
  -ms-flex-preferred-size: 22%;
  flex-basis: 22%;
  list-style-type: none;
}

.flow > li .icon {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 50px;
  width: 50px;
  color: var(--main-text);
  background: var(--subcolor2);
  margin: 0 auto;
  display: block;
  border-radius: 50%;
  text-align: center;
  position: relative;
  letter-spacing: 2px;
}

.flow > li .icon::before {
  content: "";
  border: solid transparent;
  border-width: 8px;
  border-top-color: var(--subcolor2);
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.flow > li dl {
  margin: 0;
  position: relative;
  height: 200px;
}

.flow > li:not(:last-child) dl::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-right: 10px;
  display: inline-block;
  border-top: 4px solid #A4CCE5;
  border-right: 4px solid #A4CCE5;
  position: absolute;
  top: calc(50% - 14px);
  left: 104%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.flow > li dl dt {
  font-size: 20px;
  font-weight: 600;
  color: #6b90db;
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  margin-bottom: 1vh;
  text-align: center;
}

.flow > li dl dt img {
  width: 135px;
}

#GenomeEnhancer-wrap6 {
  background: var(--subcolor);
}

#GenomeEnhancer-wrap6 .doc {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  color: var(--main-text);
}

#GenomeEnhancer-wrap6 .doc p {
  text-align: center;
  margin-bottom: 1em;
}

#GenomeEnhancer-wrap6 .doc table {
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 1em;
}

#GenomeEnhancer-wrap6 .doc table tr {
  border-top: var(--subcolor2) 1.5px solid;
}

#GenomeEnhancer-wrap6 .doc table tr th {
  text-align: left;
  border-top: var(--subcolor2) 1.5px solid;
  padding: 1em;
}

#GenomeEnhancer-wrap6 .doc table tr td {
  border-top: var(--subcolor2) 1.5px solid;
  padding: 1em;
}

#GenomeEnhancer-wrap6 .doc table tr .last_th {
  border-bottom: var(--subcolor2) 1.5px solid;
}

#GenomeEnhancer-wrap6 .doc table tr .last_td {
  border-bottom: var(--subcolor2) 1.5px solid;
}

#GenomeEnhancer-wrap6 .doc .conclusion {
  margin-bottom: 5em;
}

#GenomeEnhancer-wrap6 .title3 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--main-text);
}

#GenomeEnhancer-wrap6 .title3 h1 {
  font-size: 1.7em;
}

#GenomeEnhancer-wrap6 .title3 p {
  font-size: 0.8em;
  position: relative;
}

#GenomeEnhancer-wrap6 .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: #0071b7;
}

#GenomeEnhancer-wrap7 .title3 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--main-text);
}

#GenomeEnhancer-wrap7 .title3 h1 {
  font-size: 1.7em;
}

#GenomeEnhancer-wrap7 .title3 p {
  color: var(--main-text);
  font-size: 0.8em;
  position: relative;
}

#GenomeEnhancer-wrap7 .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: var(--subcolor2);
}

#GenomeEnhancer-wrap7 #cardlayout-wrap {
  display: flex;
  margin: 4em auto;
}

#GenomeEnhancer-wrap7 #cardlayout-wrap .card-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  background: var(--sub-bg);
  color: var(--main-text);
}

#GenomeEnhancer-wrap7 #cardlayout-wrap .card-list .card-figure img {
  margin: -4em auto -2em;
  max-width: 9em;
}

#GenomeEnhancer-wrap8 {
  background: var(--subcolor);
}

#GenomeEnhancer-wrap8 .doc {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  color: var(--main-text);
}

#GenomeEnhancer-wrap8 .doc .title3 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--main-text);
}

#GenomeEnhancer-wrap8 .doc .title3 h1 {
  font-size: 1.7em;
}

#GenomeEnhancer-wrap8 .doc .title3 p {
  color: var(--main-text);
  font-size: 0.8em;
  position: relative;
}

#GenomeEnhancer-wrap8 .doc .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: #0071b7;
}

#GenomeEnhancer-wrap8 .doc p {
  text-align: center;
  margin-bottom: 1em;
}

#GenomeEnhancer-wrap8 .doc table {
  border-collapse: separate;
  border-spacing: 0;
  padding-bottom: 5em;
}

#GenomeEnhancer-wrap8 .doc table tr {
  border-top: var(--subcolor2) 1.5px solid;
}

#GenomeEnhancer-wrap8 .doc table tr th {
  background: #0071b7;
  color: var(--wcolor);
  text-align: left;
  border-top: var(--subcolor2) 1.5px solid;
  padding: 1em;
}

#GenomeEnhancer-wrap8 .doc table tr .first_td {
  border-top: none;
}

#GenomeEnhancer-wrap8 .doc table tr td {
  border-top: #C9DBE6 1.5px solid;
  padding: 1em;
}

#GenomeEnhancer-wrap8 .doc table tr td a {
  color: var(--subcolor2);
}

#GenomeEnhancer-wrap8 .doc table tr .last_td {
  border-bottom: var(--subcolor2) 1.5px solid;
}

#GenomeEnhancer-wrap8 .doc a {
  text-decoration: none;
}

#GenomeEnhancer-wrap8 .doc a button {
  text-decoration: none;
  appearance: button;
  background: #0071b7;
  border: 1px solid var(--subcolor2);
  box-sizing: border-box;
  color: var(--main-text);
  cursor: pointer;
  line-height: 1.15;
  overflow: visible;
  padding: 0.7em 4em;
  position: relative;
  text-align: center;
  text-transform: none;
  transition: all 80ms ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: fit-content;
  margin: 0 auto;
  display: block;
  transform: 0.5s;
  letter-spacing: 2px;
  margin-bottom: 6em;
}

#GenomeEnhancer-wrap8 .doc a button:hover {
  background: var(--subcolor3);
  border: 1px solid var(--subcolor3);
}

#GenomeEnhancer-wrap9 {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  align-items: flex-start;
  padding-bottom: 5em;
}

#GenomeEnhancer-wrap9 .doc {
  text-align: center;
  color: var(--main-text);
}

#GenomeEnhancer-wrap9 .title3 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--main-text);
}

#GenomeEnhancer-wrap9 .title3 h1 {
  font-size: 1.7em;
}

#GenomeEnhancer-wrap9 .title3 p {
  color: var(--main-text);
  font-size: 0.8em;
  position: relative;
}

#GenomeEnhancer-wrap9 .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: #0071b7;
}

#GenomeEnhancer-wrap9 ul {
  margin-top: 1em;
  border-bottom: var(--subcolor3) 1.5px solid;
  list-style: none;
}

#GenomeEnhancer-wrap9 ul li {
  width: 100%;
  padding: 1em;
  border-top: var(--subcolor3) 1.5px solid;
}

#GenomeEnhancer-wrap9 ul li a {
  color: var(--main-text);
}

#GenomeEnhancer-wrap9 ul li a span {
  color: var(--subcolor2);
  vertical-align: -6px;
}

#GenomeEnhancer-wrap9 ul li a .movie_icon {
  padding-right: 0.5em;
}

#GenomeEnhancer-wrap9 ul li a .link_out {
  float: right;
}

#GenomeEnhancer-wrap10 {
  background: var(--subcolor);
}

#GenomeEnhancer-wrap10 .doc {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  align-items: flex-start;
  padding-bottom: 5em;
  color: var(--main-text);
}

#GenomeEnhancer-wrap10 .doc p {
  text-align: center;
}

#GenomeEnhancer-wrap10 .doc .title3 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--main-text);
}

#GenomeEnhancer-wrap10 .doc .title3 h1 {
  font-size: 1.7em;
}

#GenomeEnhancer-wrap10 .doc .title3 p {
  color: var(--main-text);
  font-size: 0.8em;
  position: relative;
}

#GenomeEnhancer-wrap10 .doc .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: #0071b7;
}

#GenomeEnhancer-wrap10 .doc ul {
  margin-top: 1em;
}

#GenomeEnhancer-wrap10 .doc ul .first_references {
  border-top: var(--subcolor3) 1.5px solid;
}

#GenomeEnhancer-wrap10 .doc ul li {
  display: inline-flex;
  width: 100%;
  padding: 1em;
  border-bottom: var(--subcolor3) 1.5px solid;
}

#GenomeEnhancer-wrap10 .doc ul li span {
  color: var(--subcolor2);
  padding-right: 0.5em;
}

#GenomeEnhancer-wrap11 {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  align-items: flex-start;
  padding-bottom: 5em;
}

#GenomeEnhancer-wrap11 p {
  color: var(--main-text);
}

#GenomeEnhancer-wrap11 .title3 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--main-text);
}

#GenomeEnhancer-wrap11 .title3 h1 {
  font-size: 1.7em;
}

#GenomeEnhancer-wrap11 .title3 p {
  color: var(--main-text);
  font-size: 0.8em;
  position: relative;
}

#GenomeEnhancer-wrap11 .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: #0071b7;
}

#geneXplainPlatform-wrap1 {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  align-items: flex-start;
  margin-top: -4em;
}

#geneXplainPlatform-wrap1 p {
  color: var(--main-text);
}

#geneXplainPlatform-wrap1 .logo_gene {
  margin: 0 auto;
  display: block;
  width: 200px;
}

#geneXplainPlatform-wrap1 .genebutton {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  margin: 2em 0 1em;
}

#geneXplainPlatform-wrap1 .genebutton a {
  text-decoration: underline;
  text-decoration: none;
  color: var(--main-text);
  margin: 0 2em;
}

#geneXplainPlatform-wrap1 .genebutton a img {
  margin: 0 auto;
  width: 6em;
  display: block;
}

#geneXplainPlatform-wrap1 .genebutton a h5 {
  text-align: center;
  margin-top: -1em;
  text-decoration: none;
}

#geneXplainPlatform-wrap1 .genebutton a h5 p {
  padding: 1em 0 0;
}

#geneXplainPlatform-wrap1 .genebutton a h5 span {
  color: var(--subcolor2);
  vertical-align: -6px;
}

#geneXplainPlatform-wrap1 p {
  padding: 1em 0;
}

#geneXplainPlatform-wrap1 img {
  width: 100%;
}

#geneXplainPlatform-wrap1 .conclusion {
  text-align: center;
}

@media screen and (max-width: 970px) {
  #geneXplainPlatform-wrap1 {
    margin-top: -10em;
  }
}

@media screen and (max-width: 720px) {
  #geneXplainPlatform-wrap1 .genebutton a {
    margin: 0 1em;
  }
  #geneXplainPlatform-wrap1 .genebutton a h5 p {
    display: none;
  }
  #geneXplainPlatform-wrap1 .genebutton a h5 span {
    padding-top: 0.2em;
    display: block;
  }
}

#geneXplainPlatform-wrap2 {
  margin: 0 auto;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  align-items: flex-start;
}

#geneXplainPlatform-wrap2 p {
  text-align: center;
}

#geneXplainPlatform-wrap2 .title3 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--main-text);
}

#geneXplainPlatform-wrap2 .title3 h1 {
  font-size: 1.7em;
}

#geneXplainPlatform-wrap2 .title3 p {
  color: var(--main-text);
  font-size: 0.8em;
  position: relative;
}

#geneXplainPlatform-wrap2 .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: var(--subcolor2);
}

#geneXplainPlatform-wrap2 #cardlayout-wrap {
  display: flex;
  margin: 4em auto;
}

#geneXplainPlatform-wrap2 #cardlayout-wrap .card-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  color: var(--main-text);
  background: var(--sub-bg);
}

#geneXplainPlatform-wrap2 #cardlayout-wrap .card-list .card-figure img {
  margin: -4em auto -1em;
  max-width: 9em;
}

#geneXplainPlatform-wrap3 {
  background: var(--subcolor);
  padding-top: 5em;
}

#geneXplainPlatform-wrap3 .doc {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  color: var(--main-text);
}

#geneXplainPlatform-wrap3 .doc .title3 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--main-text);
}

#geneXplainPlatform-wrap3 .doc .title3 h1 {
  font-size: 1.7em;
}

#geneXplainPlatform-wrap3 .doc .title3 p {
  color: var(--main-text);
  font-size: 0.8em;
  position: relative;
}

#geneXplainPlatform-wrap3 .doc .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: #0071b7;
}

#geneXplainPlatform-wrap3 .doc h5 {
  font-size: 1.4em;
  margin: 1em 0 0.3em;
}

#geneXplainPlatform-wrap3 .doc ul li {
  padding-bottom: 0.3em;
  list-style-type: none;
  position: relative;
  padding-left: 0.6em;
}

#geneXplainPlatform-wrap3 .doc ul ::before {
  border-radius: 50%;
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  left: 0;
  top: 0.6em;
  content: "";
  background: #0071b7;
}

#geneXplainPlatform-wrap4 {
  background: var(--subcolor);
  padding-top: 5em;
  padding-bottom: 5em;
}

#geneXplainPlatform-wrap4 .doc {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  color: var(--main-text);
}

#geneXplainPlatform-wrap4 .doc .title3 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--main-text);
}

#geneXplainPlatform-wrap4 .doc .title3 h1 {
  font-size: 1.7em;
}

#geneXplainPlatform-wrap4 .doc .title3 p {
  color: var(--main-text);
  font-size: 0.8em;
  position: relative;
}

#geneXplainPlatform-wrap4 .doc .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: #0071b7;
}

#geneXplainPlatform-wrap4 .doc h5 {
  font-size: 1.4em;
  margin: 1em 0 0.3em;
}

#geneXplainPlatform-wrap4 .doc .list {
  display: flex;
}

#geneXplainPlatform-wrap4 .doc .list .first_section {
  padding-right: 2em;
}

#geneXplainPlatform-wrap4 .doc .list ul li {
  padding-bottom: 0.3em;
  list-style-type: none;
  position: relative;
  padding-left: 0.6em;
}

#geneXplainPlatform-wrap4 .doc .list ul ::before {
  border-radius: 50%;
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  left: 0;
  top: 0.6em;
  content: "";
  background: #0071b7;
}

#geneXplainPlatform-wrap5 {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  align-items: flex-start;
  padding-bottom: 5em;
}

#geneXplainPlatform-wrap5 .doc {
  text-align: center;
  color: var(--main-text);
}

#geneXplainPlatform-wrap5 .title3 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--main-text);
}

#geneXplainPlatform-wrap5 .title3 h1 {
  font-size: 1.7em;
}

#geneXplainPlatform-wrap5 .title3 p {
  color: var(--main-text);
  font-size: 0.8em;
  position: relative;
}

#geneXplainPlatform-wrap5 .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: #0071b7;
}

#geneXplainPlatform-wrap5 ul {
  margin-top: 1em;
  border-bottom: var(--subcolor3) 1.5px solid;
  list-style: none;
}

#geneXplainPlatform-wrap5 ul li {
  width: 100%;
  padding: 1em;
  border-top: var(--subcolor3) 1.5px solid;
}

#geneXplainPlatform-wrap5 ul li a {
  color: var(--main-text);
}

#geneXplainPlatform-wrap5 ul li a span {
  color: var(--subcolor2);
  vertical-align: -6px;
}

#geneXplainPlatform-wrap5 ul li a .movie_icon {
  padding-right: 0.5em;
}

#geneXplainPlatform-wrap5 ul li a .link_out {
  float: right;
}

#transfac-wrap1 {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  align-items: flex-start;
  padding-bottom: 5em;
  margin-top: -5em;
}

#transfac-wrap1 img {
  margin: auto;
  display: block;
  width: 230px;
}

#transfac-wrap1 p {
  padding-top: 1em;
  color: var(--main-text);
}

#transfac-wrap2 {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  align-items: flex-start;
  padding-bottom: 5em;
  padding-top: 5em;
  margin-top: -5em;
}

#transfac-wrap2 .title3 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--main-text);
}

#transfac-wrap2 .title3 h1 {
  font-size: 1.7em;
}

#transfac-wrap2 .title3 p {
  color: var(--main-text);
  font-size: 0.8em;
  position: relative;
}

#transfac-wrap2 .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: #0071b7;
}

#transfac-wrap2 .doc {
  display: flex;
  color: var(--main-text);
}

#transfac-wrap2 .doc p {
  margin-right: 2em;
}

#transfac-wrap2 .doc img {
  max-width: 30em;
}

@media screen and (max-width: 800px) {
  #transfac-wrap2 .doc {
    display: block;
  }
  #transfac-wrap2 .doc p {
    margin-right: 0;
  }
  #transfac-wrap2 img {
    width: 70%;
    display: block;
    margin: 0 auto;
    padding-top: 1em;
  }
}

#transfac-wrap3 {
  background: var(--subcolor);
  padding-bottom: 5em;
  padding-top: 5em;
}

#transfac-wrap3 .doc {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  color: var(--main-text);
}

#transfac-wrap3 .doc .title3 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--main-text);
}

#transfac-wrap3 .doc .title3 h1 {
  font-size: 1.7em;
}

#transfac-wrap3 .doc .title3 p {
  color: var(--main-text);
  font-size: 0.8em;
  position: relative;
}

#transfac-wrap3 .doc .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: #0071b7;
}

#transfac-wrap3 .doc h5 {
  font-size: 1.4em;
  margin: 1em 0 0.3em;
  text-align: center;
}

#transfac-wrap4 {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  align-items: flex-start;
  padding-bottom: 5em;
  padding-top: 5em;
  color: var(--main-text);
}

#transfac-wrap4 .title3 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--main-text);
}

#transfac-wrap4 .title3 h1 {
  font-size: 1.7em;
}

#transfac-wrap4 .title3 p {
  color: var(--main-text);
  font-size: 0.8em;
  position: relative;
}

#transfac-wrap4 .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: #0071b7;
}

#transfac-wrap5 {
  background: var(--subcolor);
  padding-bottom: 5em;
  padding-top: 5em;
}

#transfac-wrap5 .doc {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  color: var(--main-text);
}

#transfac-wrap5 .doc .title3 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--main-text);
}

#transfac-wrap5 .doc .title3 h1 {
  font-size: 1.7em;
}

#transfac-wrap5 .doc .title3 p {
  color: var(--main-text);
  font-size: 0.8em;
  position: relative;
}

#transfac-wrap5 .doc .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: #0071b7;
}

#transfac-wrap5 .doc p {
  text-align: center;
}

#transfac-wrap5 .doc ul {
  margin-top: 1em;
  list-style: none;
  border-bottom: var(--subcolor3) 1.5px solid;
}

#transfac-wrap5 .doc ul li {
  width: 100%;
  padding: 1em;
  border-top: var(--subcolor3) 1.5px solid;
}

#transfac-wrap5 .doc ul li a {
  color: var(--main-text);
}

#transfac-wrap5 .doc ul li a .download_icon {
  float: right;
  color: var(--subcolor3);
}

#transfac-wrap6 {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  align-items: flex-start;
  padding-bottom: 5em;
}

#transfac-wrap6 p {
  text-align: center;
}

#transfac-wrap6 .title3 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--main-text);
}

#transfac-wrap6 .title3 h1 {
  font-size: 1.7em;
}

#transfac-wrap6 .title3 p {
  color: var(--main-text);
  font-size: 0.8em;
  position: relative;
}

#transfac-wrap6 .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: #0071b7;
}

#transfac-wrap6 ul {
  margin-top: 1em;
  list-style: none;
}

#transfac-wrap6 ul li {
  width: 100%;
  padding: 1em;
  border-top: var(--subcolor3) 1.5px solid;
}

#transfac-wrap6 ul li a {
  color: var(--main-text);
}

#transfac-wrap6 ul li a span {
  color: var(--subcolor2);
  vertical-align: -6px;
}

#transfac-wrap6 ul li a .movie_icon {
  padding-right: 0.5em;
}

#transfac-wrap6 ul li a .link_out {
  float: right;
}

#transfac-wrap6 ul .last_list {
  border-bottom: var(--subcolor3) 1.5px solid;
}

#transpath-wrap1 {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  align-items: flex-start;
  padding-bottom: 5em;
  margin-top: -4em;
}

#transpath-wrap1 img {
  margin: 0 auto;
  display: block;
  width: 250px;
}

#transpath-wrap1 .genebutton {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  margin-bottom: 2em;
}

#transpath-wrap1 .genebutton a {
  text-decoration: underline;
  text-decoration: none;
  color: var(--main-text);
}

#transpath-wrap1 .genebutton a p {
  text-align: center;
  margin-top: -1em;
  text-decoration: none;
}

#transpath-wrap1 .genebutton a p span {
  color: var(--subcolor2);
  vertical-align: -6px;
}

#transpath-wrap1 p {
  padding: 1em 0;
  color: var(--main-text);
}

#transpath-wrap2 {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  align-items: flex-start;
  padding-bottom: 5em;
  padding-top: 5em;
  margin-top: -5em;
}

#transpath-wrap2 .title3 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--main-text);
}

#transpath-wrap2 .title3 h1 {
  font-size: 1.7em;
}

#transpath-wrap2 .title3 p {
  color: var(--main-text);
  font-size: 0.8em;
  position: relative;
}

#transpath-wrap2 .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: #0071b7;
}

#transpath-wrap2 .doc {
  display: flex;
  color: var(--main-text);
}

#transpath-wrap2 .doc img {
  max-height: 30em;
}

#transpath-wrap2 .doc .text {
  margin-left: 2em;
}

#transpath-wrap2 .doc .text ul {
  margin-top: 2em;
}

#transpath-wrap2 .doc .text ul li {
  padding-bottom: 0.3em;
  list-style-type: none;
  position: relative;
  padding-left: 0.6em;
}

#transpath-wrap2 .doc .text ul ::before {
  border-radius: 50%;
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  left: 0;
  top: 0.6em;
  content: "";
  background: #0071b7;
}

@media screen and (max-width: 800px) {
  #transpath-wrap2 .doc {
    display: block;
  }
  #transpath-wrap2 .doc .text {
    margin-left: 0;
  }
  #transpath-wrap2 .doc img {
    width: 70%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
    padding: 1em 0 2em;
  }
}

#transpath-wrap3 {
  background: var(--subcolor);
  padding-top: 5em;
}

#transpath-wrap3 .doc {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  color: var(--main-text);
}

#transpath-wrap3 .doc .title3 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--main-text);
}

#transpath-wrap3 .doc .title3 h1 {
  font-size: 1.7em;
}

#transpath-wrap3 .doc .title3 p {
  color: var(--main-text);
  font-size: 0.8em;
  position: relative;
}

#transpath-wrap3 .doc .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: #0071b7;
}

#transpath-wrap4 {
  background: var(--subcolor);
  padding-bottom: 5em;
  padding-top: 5em;
}

#transpath-wrap4 .doc {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  color: var(--main-text);
}

#transpath-wrap4 .doc .title3 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--main-text);
}

#transpath-wrap4 .doc .title3 h1 {
  font-size: 1.7em;
}

#transpath-wrap4 .doc .title3 p {
  color: var(--main-text);
  font-size: 0.8em;
  position: relative;
}

#transpath-wrap4 .doc .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: #0071b7;
}

#transpath-wrap5 {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  align-items: flex-start;
  padding-bottom: 5em;
  padding-top: 5em;
}

#transpath-wrap5 p {
  text-align: center;
}

#transpath-wrap5 .title3 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--main-text);
}

#transpath-wrap5 .title3 h1 {
  font-size: 1.7em;
}

#transpath-wrap5 .title3 p {
  color: var(--main-text);
  font-size: 0.8em;
  position: relative;
}

#transpath-wrap5 .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: #0071b7;
}

#transpath-wrap5 ul {
  margin-top: 1em;
  list-style: none;
}

#transpath-wrap5 ul li {
  width: 100%;
  padding: 1em;
  border-top: var(--subcolor3) 1.5px solid;
}

#transpath-wrap5 ul li a {
  color: var(--main-text);
}

#transpath-wrap5 ul li a span {
  color: var(--subcolor2);
  vertical-align: -6px;
}

#transpath-wrap5 ul li a .movie_icon {
  padding-right: 0.5em;
}

#transpath-wrap5 ul li a .link_out {
  float: right;
}

#transpath-wrap5 ul .last_list {
  border-bottom: var(--subcolor3) 1.5px solid;
}

#humanpsd-wrap1 {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  align-items: flex-start;
  margin-top: -5em;
}

#humanpsd-wrap1 img {
  margin: auto;
  display: block;
  width: 230px;
}

#humanpsd-wrap1 p {
  padding-top: 1em;
  color: var(--main-text);
}

#humanpsd-wrap2 {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  align-items: flex-start;
}

#humanpsd-wrap2 img {
  width: 100%;
}

#humanpsd-wrap2 .title3 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--main-text);
}

#humanpsd-wrap2 .title3 h1 {
  font-size: 1.7em;
}

#humanpsd-wrap2 .title3 p {
  color: var(--main-text);
  font-size: 0.8em;
  position: relative;
}

#humanpsd-wrap2 .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: #0071b7;
}

#humanpsd-wrap2 table {
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 1em;
}

#humanpsd-wrap2 table tr {
  border-top: var(--subcolor2) 1.5px solid;
}

#humanpsd-wrap2 table tr th {
  text-align: left;
  border-top: var(--subcolor2) 1.5px solid;
  padding: 1em;
}

#humanpsd-wrap2 table tr td {
  border-top: var(--subcolor2) 1.5px solid;
  padding: 1em;
}

#humanpsd-wrap2 table tr .last_th {
  border-bottom: var(--subcolor2) 1.5px solid;
}

#humanpsd-wrap2 table tr .last_td {
  border-bottom: var(--subcolor2) 1.5px solid;
}

#humanpsd-wrap3 {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  align-items: flex-start;
  padding-bottom: 5em;
}

#humanpsd-wrap3 p {
  color: var(--main-text);
}

#humanpsd-wrap3 img {
  width: 100%;
}

#humanpsd-wrap3 .conclusion {
  text-align: center;
}

#humanpsd-wrap3 .title3 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--main-text);
}

#humanpsd-wrap3 .title3 h1 {
  font-size: 1.7em;
}

#humanpsd-wrap3 .title3 p {
  color: var(--main-text);
  font-size: 0.8em;
  position: relative;
}

#humanpsd-wrap3 .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: #0071b7;
}

#humanpsd-wrap4 {
  background: var(--subcolor);
  padding-top: 5em;
}

#humanpsd-wrap4 .doc {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  color: var(--main-text);
}

#humanpsd-wrap4 .doc .title3 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--main-text);
}

#humanpsd-wrap4 .doc .title3 h1 {
  font-size: 1.7em;
}

#humanpsd-wrap4 .doc .title3 p {
  color: var(--main-text);
  font-size: 0.8em;
  position: relative;
}

#humanpsd-wrap4 .doc .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: #0071b7;
}

#humanpsd-wrap4 .doc ul li {
  padding-bottom: 0.3em;
  list-style-type: none;
  position: relative;
  padding-left: 0.6em;
}

#humanpsd-wrap4 .doc ul ::before {
  border-radius: 50%;
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  left: 0;
  top: 0.6em;
  content: "";
  background: #0071b7;
}

#humanpsd-wrap5 {
  background: var(--subcolor);
  padding-bottom: 5em;
  padding-top: 5em;
}

#humanpsd-wrap5 .doc {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  color: var(--main-text);
}

#humanpsd-wrap5 .doc .title3 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--main-text);
}

#humanpsd-wrap5 .doc .title3 h1 {
  font-size: 1.7em;
}

#humanpsd-wrap5 .doc .title3 p {
  color: var(--main-text);
  font-size: 0.8em;
  position: relative;
}

#humanpsd-wrap5 .doc .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: #0071b7;
}

#brenda-wrap1 {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  align-items: flex-start;
  padding-bottom: 5em;
  margin-top: -5em;
}

#brenda-wrap1 .logo_brenda {
  margin: auto;
  display: block;
  width: 250px;
}

#brenda-wrap1 p {
  padding-top: 1em;
  color: var(--main-text);
}

#brenda-wrap1 h4 {
  padding: 2em 0;
  text-align: center;
  font-weight: normal;
  color: var(--main-text);
}

#brenda-wrap1 h4 a {
  color: var(--subcolor2);
  text-decoration: solid;
}

#brenda-wrap1 .conclusion {
  text-align: center;
}

#brenda-wrap1 img {
  width: 100%;
}

#brenda-wrap2 {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  align-items: flex-start;
  padding-top: 0;
  padding-bottom: 5em;
}

#brenda-wrap2 p {
  color: var(--main-text);
}

#brenda-wrap2 img {
  width: 100%;
  padding-bottom: 1em;
}

#brenda-wrap2 .title3 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--main-text);
}

#brenda-wrap2 .title3 h1 {
  font-size: 1.7em;
}

#brenda-wrap2 .title3 p {
  font-size: 0.8em;
  position: relative;
}

#brenda-wrap2 .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: var(--subcolor2);
}

#brenda-wrap3 {
  background: var(--subcolor);
  padding-top: 5em;
}

#brenda-wrap3 .doc {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  color: var(--main-text);
}

#brenda-wrap3 .doc ul {
  padding-top: 1em;
}

#brenda-wrap3 .doc ul li {
  padding-bottom: 0.3em;
  list-style-type: none;
  position: relative;
  padding-left: 0.6em;
}

#brenda-wrap3 .doc ul ::before {
  border-radius: 50%;
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  left: 0;
  top: 0.6em;
  content: "";
  background: #0071b7;
}

#brenda-wrap3 .doc .title3 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--main-text);
}

#brenda-wrap3 .doc .title3 h1 {
  font-size: 1.7em;
}

#brenda-wrap3 .doc .title3 p {
  color: var(--main-text);
  font-size: 0.8em;
  position: relative;
}

#brenda-wrap3 .doc .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: #0071b7;
}

#brenda-wrap4 {
  background: var(--subcolor);
  padding-bottom: 5em;
  padding-top: 5em;
}

#brenda-wrap4 .doc {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  color: var(--main-text);
}

#brenda-wrap4 .doc .title3 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--main-text);
}

#brenda-wrap4 .doc .title3 h1 {
  font-size: 1.7em;
}

#brenda-wrap4 .doc .title3 p {
  color: var(--main-text);
  font-size: 0.8em;
  position: relative;
}

#brenda-wrap4 .doc .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: #0071b7;
}

#brenda-wrap5 {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  align-items: flex-start;
  padding-top: 5em;
  padding-bottom: 5em;
}

#brenda-wrap5 p {
  text-align: center;
}

#brenda-wrap5 .title3 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--main-text);
}

#brenda-wrap5 .title3 h1 {
  font-size: 1.7em;
}

#brenda-wrap5 .title3 p {
  color: var(--main-text);
  font-size: 0.8em;
  position: relative;
}

#brenda-wrap5 .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: #0071b7;
}

#brenda-wrap5 ul {
  margin-top: 1em;
  list-style: none;
}

#brenda-wrap5 ul li {
  width: 100%;
  padding: 1em;
  border-top: var(--subcolor3) 1.5px solid;
}

#brenda-wrap5 ul li a {
  color: var(--main-text);
}

#brenda-wrap5 ul li a span {
  color: var(--subcolor2);
  vertical-align: -6px;
}

#brenda-wrap5 ul li a .download_icon {
  float: right;
}

#brenda-wrap5 ul .last_list {
  border-bottom: var(--subcolor3) 1.5px solid;
}

#brenda-wrap6 {
  background: var(--subcolor);
  padding-top: 0;
}

#brenda-wrap6 .doc {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  align-items: flex-start;
  padding-top: 5em;
  padding-bottom: 5em;
  color: var(--main-text);
}

#brenda-wrap6 .doc p {
  text-align: center;
}

#brenda-wrap6 .doc .title3 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--main-text);
}

#brenda-wrap6 .doc .title3 h1 {
  font-size: 1.7em;
}

#brenda-wrap6 .doc .title3 p {
  color: var(--main-text);
  font-size: 0.8em;
  position: relative;
}

#brenda-wrap6 .doc .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: #0071b7;
}

#brenda-wrap6 .doc ul {
  margin-top: 1em;
  list-style: none;
  border-bottom: var(--subcolor3) 1.5px solid;
}

#brenda-wrap6 .doc ul li {
  width: 100%;
  padding: 1em;
  border-top: var(--subcolor3) 1.5px solid;
}

#brenda-wrap6 .doc ul li a {
  color: var(--main-text);
  display: flex;
}

#brenda-wrap6 .doc ul li a p {
  text-align: left;
  display: block;
}

#brenda-wrap6 .doc ul li a .link_out {
  float: right;
  color: var(--subcolor2);
  vertical-align: -6px;
  margin: 0 0 0 auto;
}

#brenda-wrap7 {
  margin: 0 auto;
  max-width: 960px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  align-items: flex-start;
  padding-top: 5em;
  padding-bottom: 5em;
}

#brenda-wrap7 p {
  text-align: center;
}

#brenda-wrap7 .title3 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--main-text);
}

#brenda-wrap7 .title3 h1 {
  font-size: 1.7em;
}

#brenda-wrap7 .title3 p {
  color: var(--main-text);
  font-size: 0.8em;
  position: relative;
}

#brenda-wrap7 .title3 p::before {
  content: '';
  width: 56px;
  height: 2px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -1em;
  background: #0071b7;
}

#brenda-wrap7 ul {
  margin-top: 1em;
  list-style: none;
  border-bottom: var(--subcolor3) 1.5px solid;
}

#brenda-wrap7 ul li {
  width: 100%;
  padding: 1em;
  border-top: var(--subcolor3) 1.5px solid;
}

#brenda-wrap7 ul li p {
  text-align: left;
}

#brenda-wrap7 ul li a {
  color: var(--main-text);
  display: flex;
}

#brenda-wrap7 ul li a p {
  text-align: left;
  display: block;
}

#brenda-wrap7 ul li a .link_out {
  float: right;
  color: var(--subcolor2);
  vertical-align: -6px;
  margin: 0 0 0 auto;
}

/* モード切り替えボタン */
input[type="checkbox"] {
  display: none;
}

.switch {
  top: 1em;
  right: 2em;
  margin-left: auto;
  margin-right: 2em;
}

.switch label {
  cursor: pointer;
}

.switch svg {
  height: 24px;
  width: 24px;
  color: var(--color);
  transition: .3s;
  position: absolute;
  transform: translate(-50%, -50%);
}

#switch-mode-dark svg {
  transform: scale(-1, 1);
  position: absolute;
  transform: translate(-50%, -50%);
}

#switch-mode-dark {
  display: none;
}

#js_mode_toggle:checked ~ label #switch-mode-dark {
  display: initial;
}

#js_mode_toggle:checked ~ label #switch-mode-light {
  display: none;
}

#header {
  background-color: var(--brand);
}

#header-text {
  color: var(--lightcolor);
}

.search-box-form {
  background: var(--bg2);
}

.mrp-post {
  background: var(--bg2) !important;
}

.dark {
  display: block;
}

.light {
  display: none;
}

@media (prefers-color-scheme: light) {
  .dark {
    display: none;
  }
  .light {
    display: block;
  }
}

@media (prefers-color-scheme: dark) {
  .dark {
    display: block;
  }
  .light {
    display: none;
  }
}

@media screen and (max-width: 900px) {
  .switch {
    margin-right: 5em;
  }
}
