@charset "UTF-8";
body {
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  opacity: 0.6;
}

.container {
  margin: 0 auto;
  background-color: #eaf4fc;
  max-width: 1280px;
  vertical-align: middle;
}

header {
  padding: 5px 15px;
}

@media only screen and (max-width: 768px) {
  header .title-box {
    display: flex;
    justify-content: center;
  }

  header .title-logo {
    display: inline-block;
    color: #2ca9e1;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    background-image: url("../images/Conflex_LOGO.gif");
    background-repeat: no-repeat;
    height: 75px;
    width: 160px;
  }

  header .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    z-index: 99;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    display: flex;
    justify-content: center;
    align-items: stretch;
    /* 左からスライド */
    opacity: 0.9;
    transition: left 0.5s;
    /* Navigation Menu (Open) */
  }

  .open header .nav-menu {
    left: 0;
    z-index: 99;
  }

  header .nav-menu ul {
    font-size: 24px;
    padding-top: 100px;
    list-style: none;
  }

  header .nav-menu li:not(:last-child) {
    margin-bottom: 30px;
  }

  header .nav-menu a {
    color: white;
  }
}
@media only screen and (min-width: 769px) {
  header {
    background-image: url("../images/header_conflex.png");
    background-repeat: no-repeat;
    background-size: cover;
  }

  header .title-box {
    display: flex;
    align-items: flex-end;
    padding: 10px;
  }

  header .nav-menu {
    margin-left: auto;
  }

  header .nav-menu ul {
    display: flex;
    font-size: 14px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.5);
    list-style-type: none;
    list-style-position: outside;
    justify-content: space-between;
    padding: 0 15px;
  }

  header .nav-menu ul li {
    margin: 10px 5px 10px 5px;
    color: white;
  }

  body#home header .nav-menu ul li:nth-child(1) {
    border-bottom: 3px solid #eaf4fc;
  }

  body#product header .nav-menu ul li:nth-child(2) {
    border-bottom: 3px solid #eaf4fc;
  }

  body#news header .nav-menu ul li:nth-child(3) {
    border-bottom: 3px solid #eaf4fc;
  }

  body#order header .nav-menu ul li:nth-child(4) {
    border-bottom: 3px solid #eaf4fc;
  }

  body#contact header .nav-menu ul li:nth-child(5) {
    border-bottom: 3px solid #eaf4fc;
  }

  body#about header .nav-menu ul li:nth-child(6) {
    border-bottom: 3px solid #eaf4fc;
  }

  header .nav-menu ul li:last-child {
    margin-left: 15px;
  }

  header .nav-menu ul li:hover {
    border-bottom: 3px solid #84a2d4;
  }
}
.home-header {
  background-image: linear-gradient(to right, #eaf4fc, #bbbcde);
}

.home-header .title-logo {
  color: rgba(0, 0, 0, 0);
  background-image: url("../images/Conflex_LOGO.gif");
  background-repeat: no-repeat;
  height: 75px;
  width: 160px;
}

.hero {
  background-image: url("../images/crystal_hero.png");
  background-size: cover;
  background-position: center;
  object-fit: cover;
  height: 156px;
  padding: 15px;
  box-sizing: border-box;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hero h1 {
  color: lightcyan;
  font-size: 48px;
  text-shadow: 0 0 10px #222222;
  text-align: center;
}

.hero p {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 0 10px #222222;
  margin-top: 0;
}

#nav-button {
  z-index: 100;
  position: fixed;
  top: 15px;
  left: 15px;
  padding: 0;
  outline: none;
  border: none;
  background: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.5);
  /* Navigation Button (Close) */
}

#nav-button::before, #nav-button::after {
  content: '';
  display: block;
  height: 2px;
  background-color: #333333;
  transform: translateY(10px);
  transition: 0.3s ease-in-out;
}

#nav-button::before {
  transform: translateY(-10px);
  box-shadow: 0 10px #333333;
}

.open #nav-button {
  z-index: 100;
  background-color: gray;
}

.open #nav-button::before {
  transform: rotate(-45deg);
  box-shadow: none;
}

.open #nav-button::after {
  transform: rotate(45deg);
  box-shadow: none;
}

@media only screen and (min-width: 769px) {
  #nav-button {
    display: none;
  }
}
@media only screen and (min-width: 769px) {
  .pane2 {
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
  }
}
body #sidebar {
  margin: 0 auto;
}

@media only screen and (min-width: 769px) {
  body #sidebar {
    width: 250px;
  }
}
#sidebar .sticky-menu {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
}

#sidebar .side-nav label, #sidebar .side-nav2 label {
  display: block;
  position: relative;
  margin: 0 0 4px 0;
  padding: 10px;
  line-height: 1;
  font-size: 14px;
  font-weight: bold;
  color: white;
  background: #1e50a2;
  cursor: pointer;
}

#sidebar .side-nav label::after, #sidebar .side-nav2 label::after {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 3em;
  height: 3em;
  line-height: 3;
  text-align: center;
  -webkit-transition: all .35s;
  -o-transition: all .35s;
  transition: all .35s;
}

#sidebar .side-nav input[type=radio], #sidebar .side-nav2 input[type=radio] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

#sidebar .side-nav input[type=radio] + label::after, #sidebar .side-nav2 input[type=radio] + label::after {
  content: "\25BC";
}

#sidebar .side-nav input[type=radio]:checked + label::after, #sidebar .side-nav2 input[type=radio]:checked + label::after {
  display: none;
}

#sidebar .side-nav input[type=checkbox], #sidebar .side-nav2 input[type=checkbox] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

#sidebar .side-nav input[type=checkbox] + label::after, #sidebar .side-nav2 input[type=checkbox] + label::after {
  content: "\25BC";
}

#sidebar .side-nav input[type=checkbox]:checked + label::after, #sidebar .side-nav2 input[type=checkbox]:checked + label::after {
  display: none;
}

#sidebar .side-nav ul, #sidebar .side-nav2 ul {
  margin: 0;
  padding: 0 0 0 20px;
  background-color: lightgray;
  list-style: none;
}

#sidebar .side-nav li, #sidebar .side-nav2 li {
  font-size: 14px;
  height: 0;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

#sidebar .side-nav2 label {
  background-color: #f6ad49;
}

#sidebar .side-nav2 ul li a[href$=".pdf"] {
  background: url("../images/PDF_24.png") no-repeat 100% 50%;
  padding-right: 29px;
}

#sidebar .side-nav2 dl {
  width: 100%;
  display: none;
  flex-wrap: wrap;
  font-size: 0.8em;
  margin: 0 auto;
  background-color: #cccccc;
  opacity: 0;
}

#sidebar .side-nav2 dl dt {
  padding-left: 10px;
  width: 40%;
}

#sidebar .side-nav2 dl dd {
  width: 60%;
}

#sidebar .side-nav2 dl dd ul li {
  position: relative;
  padding-right: 0;
  color: #1e50a2;
  text-decoration: none;
}

#sidebar .side-nav2 dl dd ul li::after, #sidebar .side-nav2 dl dd ul li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  right: 5px;
  top: 6px;
}

#sidebar .side-nav2 dl dd ul li::after {
  border-top: 2px solid #006e54;
  border-right: 2px solid #006e54;
}

#sidebar .side-nav2 dl dd ul li::before {
  width: 16px;
  border-bottom: 2px solid #006e54;
  transform: rotate(-45deg);
}

#sidebar .side-nav2 dl dd ul li a[href$=".pdf"] {
  background: none;
}

#sidebar .main-nav .ac-check {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

#sidebar .main-nav .ac-check:checked + .ac-label {
  color: white;
  background: blue;
}

#sidebar .main-nav .ac-check:checked + .ac-label + .ac-content {
  height: auto;
  opacity: 1;
  padding: 5px 10px;
  display: block;
}

#sidebar .main-nav .ac-label {
  display: block;
  position: block;
  margin: 0 0 4px 0;
  padding: 10px;
  line-height: 1;
  font-size: 14px;
  font-weight: bold;
  color: #17184b;
  background: #ebf6f7;
  border: 1px solid #4c6cb3;
  border-radius: 5px;
  cursor: pointer;
  z-index: 10;
}

#sidebar .main-nav .ac-content {
  border: 1px solid #4c6cb3;
  background-color: #ebf6f7;
  height: 0;
  opacity: 0;
  display: none;
  transition: opacity 0.5s;
  z-index: 1;
}

#sidebar .main-nav ol, #sidebar .main-nav ul {
  height: auto;
  background-color: #ebf6f7;
  z-index: 1;
}

#sidebar .main-nav ol li, #sidebar .main-nav ul li {
  height: auto;
  background-color: #ebf6f7;
  z-index: 1;
}

#sidebar .details-nav summary {
  display: block;
  position: block;
  margin: 0 0 4px 0;
  padding: 10px;
  line-height: 1;
  font-size: 14px;
  font-weight: bold;
  color: #17184b;
  background: #ebf6f7;
  border: 1px solid #4c6cb3;
  border-radius: 5px;
  cursor: pointer;
  z-index: 10;
}

#sidebar .details-nav summary::-webkit-details-marker {
  display: none;
}

#sidebar .details-nav div {
  border: 1px solid #4c6cb3;
}

#sidebar .details-nav details {
  background-color: #ebf6f7;
  margin: 5px;
  z-index: 1;
}

#sidebar .details-nav details[open] summary {
  color: white;
  background: blue;
}

#sidebar .warning {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 0.9em;
  color: red;
  background-color: lightgray;
  overflow-y: visible;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

#sidebar #type-conflex:checked ~ #links-conflex li,
#sidebar #type-amber:checked ~ #links-amber li,
#sidebar #type-chemoffice:checked ~ #links-chemoffice li,
#sidebar #type-gaussian:checked ~ #links-gaussian li,
#sidebar #type-support:checked ~ #links-support li,
#sidebar #type-seminar:checked ~ #links-seminar li,
#sidebar #type-manuals:checked ~ #links-manuals li,
#sidebar #type-reference:checked ~ #links-reference li,
#sidebar #type-catalog:checked ~ #links-catalog li {
  height: 2em;
  opacity: 1;
}

#sidebar #type-conflex:checked ~ .warning {
  height: 2em;
  opacity: 1;
}

#sidebar #type-platform-conflex:checked ~ #platform-conflex,
#sidebar #type-platform-gaussian:checked ~ #platform-gaussian,
#sidebar #type-platform-amber:checked ~ #platform-amber,
#sidebar #type-platform-chemoffice:checked ~ #platform-chemoffice {
  display: flex;
  opacity: 1;
}

#sidebar #type-platform-conflex:checked ~ #platform-conflex li,
#sidebar #type-platform-gaussian:checked ~ #platform-gaussian li,
#sidebar #type-platform-amber:checked ~ #platform-amber li,
#sidebar #type-platform-chemoffice:checked ~ #platform-chemoffice li {
  height: auto;
}

@media only screen and (min-width: 769px) {
  #sidebar .nav-menu ul li:nth-child(2) {
    border-bottom: 3px solid #0095d9;
  }
}
main {
  flex: 1;
  padding: 10px;
  /*タブ切り替え全体のスタイル*/
  /*タブのスタイル*/
  /*ラジオボタンを全て消す*/
  /*タブ切り替えの中身のスタイル*/
  /*選択されているタブのスタイルを変える*/
  /*選択されているタブのコンテンツのみを表示*/
  /*選択されているタブのスタイルを変える*/
  /*必須、任意タグ*/
}

main h1 {
  width: 100%;
  height: auto;
  color: #2ca9e1;
  font-weight: bold;
  text-align: center;
}

main .command-name {
  font-family: "Courier New",sans-serif;
}

main .pwd {
  display: flex;
}

main .pwd li {
  color: #2ca9e1;
  font-size: 24px;
  font-weight: bold;
  list-style-type: none;
  padding: 10px 10px;
}

main .pwd li:not(:last-child) {
  border-right: solid 3px #2ca9e1;
}

@media only screen and (max-width: 768px) {
  main .pwd {
    justify-content: center;
  }
}
main p {
  width: 100%;
  padding-left: 10px;
  margin: 10px 0;
}

main p a {
  color: blue;
  font-weight: bold;
  position: relative;
  display: inline-block;
  transition: .3s;
}

main p a::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: '';
  width: 0;
  height: 2px;
  background-color: #31aae2;
  transition: .3s;
  transform: translateX(-50%);
}

main p a:hover::after {
  width: 100%;
}

main .main-title {
  color: #2ca9e1;
}

main .page-header {
  width: auto;
  color: #2ca9e1;
  border-bottom: solid 3px #0095d9;
  margin: 10px;
}

main ol li a {
  color: blue;
  font-weight: bold;
  position: relative;
  display: inline-block;
  transition: .3s;
}

main ol li a::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: '';
  width: 0;
  height: 2px;
  background-color: #31aae2;
  transition: .3s;
  transform: translateX(-50%);
}

main ol li a:hover::after {
  width: 100%;
}

main .side-by-side {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 5px 10px;
}

main .side-by-side dt {
  width: 30%;
  margin: 5px 5px;
  padding: 5px;
  border-left: solid 3px #2ca9e1;
}

main .side-by-side dd {
  width: 60%;
}

main .side-by-side ul {
  width: 45%;
}

main .side-by-side img {
  width: 45%;
}

main .text-image-block {
  display: flex;
  height: auto;
  align-items: flex-start;
}

main .text-image-block img {
  width: 20%;
}

@media only screen and (max-width: 768px) {
  main .text-image-block {
    display: block;
  }

  main .text-image-block img {
    width: 95%;
  }
}
main dt {
  font-size: 1.1em;
  margin: 5px;
  padding: 5px;
  border-left: solid 3px #2ca9e1;
  border-bottom: solid 1px #2ca9e1;
}

main dd {
  margin: 10px;
}

main .annotation {
  font-size: 10px;
  padding: 5px;
  color: #fff;
  margin: 0 10px 0 5px;
  border-radius: 5px;
  background-color: #e95295;
}

main .main-warning {
  color: red;
  margin-left: 20px;
}

main .panels {
  margin: 20px auto;
}

main .panels h1 {
  color: #2ca9e1;
  font-weight: bold;
  text-align: center;
}

main .panels .card-row {
  display: flex;
}

main .panels .panel-conflex {
  color: white;
  position: relative;
  margin: 1px;
}

main .panels .panel-conflex figcaption {
  width: 100%;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  text-shadow: 0 0 15px #000;
}

@media only screen and (max-width: 768px) {
  main .panels .card-row {
    margin-bottom: 10px;
    flex-direction: column;
  }

  main .panels .card-row a {
    width: 100%;
  }

  main .panels .panel-conflex {
    background-repeat: no-repeat;
    background-size: contain;
    flex-direction: row-reverse;
    padding: 0;
  }
}
@media only screen and (min-width: 769px) {
  main .panels .card-row {
    flex-wrap: wrap;
  }

  main .panels .card-row a {
    width: 24.5%;
  }

  main .panels .panel-conflex img {
    width: 100%;
  }
}
main .information-cards {
  display: flex;
}

main .flex-wrap, main .products, main .side-by-side-rev {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 10px;
}

main .flex-wrap .card-1, main .products .card-1, main .side-by-side-rev .card-1 {
  display: flex;
  position: relative;
  width: 100%;
  padding: 10px;
  margin: 0 auto 10px auto;
  background-color: white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.8), inset 0 0 50px rgba(0, 0, 0, 0.1);
}

main .flex-wrap .card-1 a, main .products .card-1 a, main .side-by-side-rev .card-1 a {
  color: blue;
}

main .flex-wrap .card-1 img, main .products .card-1 img, main .side-by-side-rev .card-1 img {
  align-self: flex-start;
}

main .flex-wrap .card-1::before, main .products .card-1::before, main .side-by-side-rev .card-1::before, main .flex-wrap .card-1::after, main .products .card-1::after, main .side-by-side-rev .card-1::after {
  position: absolute;
      width: 40%;
  height: 10px;
  content: ' ';
  left: 12px;
  bottom: 12px;
  background: transparent;
  transform: skew(-5deg) rotate(-5deg);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.8);
  z-index: -1;
}

main .flex-wrap .card-1:after, main .products .card-1:after, main .side-by-side-rev .card-1:after {
  left: auto;
  right: 12px;
  transform: skew(5deg) rotate(5deg);
}

main .flex-wrap .card-2, main .products .card-2, main .side-by-side-rev .card-2 {
  display: flex;
  position: relative;
  width: 50%;
  padding: 10px;
  margin: 0 auto 10px auto;
  background-color: white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.8), inset 0 0 50px rgba(0, 0, 0, 0.1);
}

main .flex-wrap .card-2 a, main .products .card-2 a, main .side-by-side-rev .card-2 a {
  color: blue;
}

main .flex-wrap .card-2 img, main .products .card-2 img, main .side-by-side-rev .card-2 img {
  align-self: flex-start;
}

main .flex-wrap .card-2::before, main .products .card-2::before, main .side-by-side-rev .card-2::before, main .flex-wrap .card-2::after, main .products .card-2::after, main .side-by-side-rev .card-2::after {
  position: absolute;
      width: 40%;
  height: 10px;
  content: ' ';
  left: 12px;
  bottom: 12px;
  background: transparent;
  transform: skew(-5deg) rotate(-5deg);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.8);
  z-index: -1;
}

main .flex-wrap .card-2:after, main .products .card-2:after, main .side-by-side-rev .card-2:after {
  left: auto;
  right: 12px;
  transform: skew(5deg) rotate(5deg);
}

main .flex-wrap .card-3, main .products .card-3, main .side-by-side-rev .card-3 {
  display: flex;
  position: relative;
  width: 33.3333333333%;
  padding: 10px;
  margin: 0 auto 10px auto;
  background-color: white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.8), inset 0 0 50px rgba(0, 0, 0, 0.1);
}

main .flex-wrap .card-3 a, main .products .card-3 a, main .side-by-side-rev .card-3 a {
  color: blue;
}

main .flex-wrap .card-3 img, main .products .card-3 img, main .side-by-side-rev .card-3 img {
  align-self: flex-start;
}

main .flex-wrap .card-3::before, main .products .card-3::before, main .side-by-side-rev .card-3::before, main .flex-wrap .card-3::after, main .products .card-3::after, main .side-by-side-rev .card-3::after {
  position: absolute;
      width: 40%;
  height: 10px;
  content: ' ';
  left: 12px;
  bottom: 12px;
  background: transparent;
  transform: skew(-5deg) rotate(-5deg);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.8);
  z-index: -1;
}

main .flex-wrap .card-3:after, main .products .card-3:after, main .side-by-side-rev .card-3:after {
  left: auto;
  right: 12px;
  transform: skew(5deg) rotate(5deg);
}

main .flex-wrap .card-4, main .products .card-4, main .side-by-side-rev .card-4 {
  display: flex;
  flex-flow: column;
  position: relative;
  width: 25%;
  padding: 10px;
  margin: 0 auto 10px auto;
  background-color: white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.8), inset 0 0 50px rgba(0, 0, 0, 0.1);
}

main .flex-wrap .card-4 a, main .products .card-4 a, main .side-by-side-rev .card-4 a {
  color: blue;
}

main .flex-wrap .card-4 img, main .products .card-4 img, main .side-by-side-rev .card-4 img {
  align-self: flex-start;
}

main .flex-wrap .card-4::before, main .products .card-4::before, main .side-by-side-rev .card-4::before, main .flex-wrap .card-4::after, main .products .card-4::after, main .side-by-side-rev .card-4::after {
  position: absolute;
      width: 40%;
  height: 10px;
  content: ' ';
  left: 12px;
  bottom: 12px;
  background: transparent;
  transform: skew(-5deg) rotate(-5deg);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.8);
  z-index: -1;
}

main .flex-wrap .card-4:after, main .products .card-4:after, main .side-by-side-rev .card-4:after {
  left: auto;
  right: 12px;
  transform: skew(5deg) rotate(5deg);
}

main .side-by-side-rev {
  align-items: flex-start;
}

main .side-by-side-rev img {
  margin-left: auto;
  width: 45%;
}

main .sticky-menu {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
}

main .side-nav label, main #sidebar .side-nav2 label, #sidebar main .side-nav2 label, main .side-nav2 label {
  display: block;
  position: relative;
  margin: 0 0 4px 0;
  padding: 10px;
  line-height: 1;
  font-size: 14px;
  font-weight: bold;
  color: white;
  background: #1e50a2;
  cursor: pointer;
}

main .side-nav label::after, main #sidebar .side-nav2 label::after, #sidebar main .side-nav2 label::after, main .side-nav2 label::after {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 3em;
  height: 3em;
  line-height: 3;
  text-align: center;
  -webkit-transition: all .35s;
  -o-transition: all .35s;
  transition: all .35s;
}

main .side-nav input[type=radio], main #sidebar .side-nav2 input[type=radio], #sidebar main .side-nav2 input[type=radio], main .side-nav2 input[type=radio] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

main .side-nav input[type=radio] + label::after, main #sidebar .side-nav2 input[type=radio] + label::after, #sidebar main .side-nav2 input[type=radio] + label::after, main .side-nav2 input[type=radio] + label::after {
  content: "\25BC";
}

main .side-nav input[type=radio]:checked + label::after, main #sidebar .side-nav2 input[type=radio]:checked + label::after, #sidebar main .side-nav2 input[type=radio]:checked + label::after, main .side-nav2 input[type=radio]:checked + label::after {
  display: none;
}

main .side-nav input[type=checkbox], main #sidebar .side-nav2 input[type=checkbox], #sidebar main .side-nav2 input[type=checkbox], main .side-nav2 input[type=checkbox] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

main .side-nav input[type=checkbox] + label::after, main #sidebar .side-nav2 input[type=checkbox] + label::after, #sidebar main .side-nav2 input[type=checkbox] + label::after, main .side-nav2 input[type=checkbox] + label::after {
  content: "\25BC";
}

main .side-nav input[type=checkbox]:checked + label::after, main #sidebar .side-nav2 input[type=checkbox]:checked + label::after, #sidebar main .side-nav2 input[type=checkbox]:checked + label::after, main .side-nav2 input[type=checkbox]:checked + label::after {
  display: none;
}

main .side-nav ul, main #sidebar .side-nav2 ul, #sidebar main .side-nav2 ul, main .side-nav2 ul {
  margin: 0;
  padding: 0 0 0 20px;
  background-color: lightgray;
  list-style: none;
}

main .side-nav li, main #sidebar .side-nav2 li, #sidebar main .side-nav2 li, main .side-nav2 li {
  font-size: 14px;
  height: 0;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

main .side-nav2 label {
  background-color: #f6ad49;
}

main .side-nav2 ul li a[href$=".pdf"] {
  background: url("../images/PDF_24.png") no-repeat 100% 50%;
  padding-right: 29px;
}

main .side-nav2 dl {
  width: 100%;
  display: none;
  flex-wrap: wrap;
  font-size: 0.8em;
  margin: 0 auto;
  background-color: #cccccc;
  opacity: 0;
}

main .side-nav2 dl dt {
  padding-left: 10px;
  width: 40%;
}

main .side-nav2 dl dd {
  width: 60%;
}

main .side-nav2 dl dd ul li {
  position: relative;
  padding-right: 0;
  color: #1e50a2;
  text-decoration: none;
}

main .side-nav2 dl dd ul li::after, main .side-nav2 dl dd ul li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  right: 5px;
  top: 6px;
}

main .side-nav2 dl dd ul li::after {
  border-top: 2px solid #006e54;
  border-right: 2px solid #006e54;
}

main .side-nav2 dl dd ul li::before {
  width: 16px;
  border-bottom: 2px solid #006e54;
  transform: rotate(-45deg);
}

main .side-nav2 dl dd ul li a[href$=".pdf"] {
  background: none;
}

main .main-nav .ac-check {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

main .main-nav .ac-check:checked + .ac-label {
  color: white;
  background: blue;
}

main .main-nav .ac-check:checked + .ac-label + .ac-content {
  height: auto;
  opacity: 1;
  padding: 5px 10px;
  display: block;
}

main .main-nav .ac-label {
  display: block;
  position: block;
  margin: 0 0 4px 0;
  padding: 10px;
  line-height: 1;
  font-size: 14px;
  font-weight: bold;
  color: #17184b;
  background: #ebf6f7;
  border: 1px solid #4c6cb3;
  border-radius: 5px;
  cursor: pointer;
  z-index: 10;
}

main .main-nav .ac-content {
  border: 1px solid #4c6cb3;
  background-color: #ebf6f7;
  height: 0;
  opacity: 0;
  display: none;
  transition: opacity 0.5s;
  z-index: 1;
}

main .main-nav ol, main .main-nav ul {
  height: auto;
  background-color: #ebf6f7;
  z-index: 1;
}

main .main-nav ol li, main .main-nav ul li {
  height: auto;
  background-color: #ebf6f7;
  z-index: 1;
}

main .details-nav summary {
  display: block;
  position: block;
  margin: 0 0 4px 0;
  padding: 10px;
  line-height: 1;
  font-size: 14px;
  font-weight: bold;
  color: #17184b;
  background: #ebf6f7;
  border: 1px solid #4c6cb3;
  border-radius: 5px;
  cursor: pointer;
  z-index: 10;
}

main .details-nav summary::-webkit-details-marker {
  display: none;
}

main .details-nav div {
  border: 1px solid #4c6cb3;
}

main .details-nav details {
  background-color: #ebf6f7;
  margin: 5px;
  z-index: 1;
}

main .details-nav details[open] summary {
  color: white;
  background: blue;
}

main .warning {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 0.9em;
  color: red;
  background-color: lightgray;
  overflow-y: visible;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

main #type-conflex:checked ~ #links-conflex li,
main #type-amber:checked ~ #links-amber li,
main #type-chemoffice:checked ~ #links-chemoffice li,
main #type-gaussian:checked ~ #links-gaussian li,
main #type-support:checked ~ #links-support li,
main #type-seminar:checked ~ #links-seminar li,
main #type-manuals:checked ~ #links-manuals li,
main #type-reference:checked ~ #links-reference li,
main #type-catalog:checked ~ #links-catalog li {
  height: 2em;
  opacity: 1;
}

main #type-conflex:checked ~ .warning {
  height: 2em;
  opacity: 1;
}

main #type-platform-conflex:checked ~ #platform-conflex,
main #type-platform-gaussian:checked ~ #platform-gaussian,
main #type-platform-amber:checked ~ #platform-amber,
main #type-platform-chemoffice:checked ~ #platform-chemoffice {
  display: flex;
  opacity: 1;
}

main #type-platform-conflex:checked ~ #platform-conflex li,
main #type-platform-gaussian:checked ~ #platform-gaussian li,
main #type-platform-amber:checked ~ #platform-amber li,
main #type-platform-chemoffice:checked ~ #platform-chemoffice li {
  height: auto;
}

@media only screen and (min-width: 769px) {
  main .nav-menu ul li:nth-child(2) {
    border-bottom: 3px solid #0095d9;
  }
}
main .table, main .table-horizontal, main .table-pricelist, main .table-chemoffice, main .table-about {
  width: auto;
  margin-right: auto;
  margin-left: auto;
  border-collapse: collapse;
  border: solid 1px #1e50a2;
}

main .table th, main .table-horizontal th, main .table-pricelist th, main .table-chemoffice th, main .table-about th {
  width: auto;
  background-color: #1e50a2;
  color: white;
  padding: 5px;
}

main .table td, main .table-horizontal td, main .table-pricelist td, main .table-chemoffice td, main .table-about td {
  width: auto;
  text-align: center;
  border: solid 1px #1e50a2;
}

main .table-horizontal th:first-child {
  width: 4em;
}

main .table-horizontal td {
  text-align: center;
}

main .table-pricelist {
  width: 95%;
}

main .table-pricelist caption {
  text-align: right;
}

main .table-pricelist th {
  padding: 5px;
}

main .table-pricelist th.table-sub-header {
  font-size: 0.9em;
  font-weight: bold;
  color: #17184b;
  background-color: #c1e4e9;
  border: solid 1px #1e50a2;
}

main .table-pricelist button {
  font-size: 0.8em;
  color: #17184b;
  border-radius: 3px;
  background-color: #ffffff;
}

main .table-pricelist td {
  padding: 5px;
  font-size: 0.8em;
}

main .table-pricelist td:not(:first-of-type) {
  width: 19%;
  text-align: right;
  padding: 0 10px 0 0;
}

main .table-chemoffice {
  width: 95%;
  margin-bottom: 20px;
}

main .table-chemoffice th {
  background-color: #507ea4;
}

main .table-chemoffice tr {
  background-color: #ffffff;
}

@media only screen and (max-width: 768px) {
  main .table-chemoffice td, main .table-chemoffice th {
    display: block;
    width: 100%;
  }

  main .table-chemoffice th:not(:first-of-type) {
    display: none;
  }

  main .table-chemoffice td:first-child {
    background-color: #e0ebaf;
  }

  main .table-chemoffice td:nth-child(3)::before {
    content: "ChemDraw Prime";
  }

  main .table-chemoffice td:nth-child(4)::before {
    content: "ChemDraw Pro";
  }

  main .table-chemoffice td:nth-child(5)::before {
    content: "ChemOffice+ Cloud";
  }

  main .table-chemoffice td.td-empty {
    display: none;
  }
}
@media only screen and (min-width: 769px) {
  main .table-chemoffice tr:nth-child(odd) td {
    background-color: #e0ebaf;
  }

  main .table-chemoffice td.td-checked::before {
    content: "\2714";
  }

  main .table-chemoffice td.td-empty::before {
    content: "-";
  }
}
main .table-footnote {
  margin-left: 20px;
}

main .table-footnote ul {
  counter-reset: my-counter;
  list-style: disk;
  padding: 0;
  margin: 10px;
}

main .table-footnote ul li {
  font-size: 0.8em;
  text-indent: -1.5em;
  padding-left: 1.5em;
  position: relative;
}

main .table-footnote ol {
  counter-reset: my-counter;
  list-style: none;
  padding: 0;
  margin: 10px;
}

main .table-footnote ol ul {
  padding-left: 0;
}

main .table-footnote ol li {
  font-size: 0.8em;
  text-indent: -1.5em;
  padding-left: 1.5em;
  position: relative;
}

main .table-footnote ol li::before {
  content: "*" counter(my-counter) ".";
  counter-increment: my-counter;
  padding-right: 0.5em;
}

main .table-about {
  margin: 20px;
}

main .table-about tr {
  padding: 0;
}

main .table-about td {
  background-color: white;
  text-align: left;
  padding: 5px;
}

main .table-about td:first-child {
  width: 20%;
  background-color: #e0ebaf;
}

main .map-icon {
  color: #000;
  position: absolute;
  margin-left: 4px;
  margin-top: 2px;
  width: 12px;
  height: 12px;
  border: solid 1px currentColor;
  border-radius: 7px 7px 7px 0;
  background-color: currentColor;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

main .map-icon:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 4px;
  height: 4px;
  color: white;
  border: solid 1px currentColor;
  border-radius: 3px;
  background-color: currentColor;
}

main .slideshow {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

main .slideshow img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
  opacity: 0;
  animation: slide 96s linear infinite;
}

main .slideshow img:nth-child(2) {
  animation-delay: 8s;
}

main .slideshow img:nth-child(3) {
  animation-delay: 16s;
}

main .slideshow img:nth-child(4) {
  animation-delay: 24s;
}

main .slideshow img:nth-child(5) {
  animation-delay: 32s;
}

main .slideshow img:nth-child(6) {
  animation-delay: 40s;
}

main .slideshow img:nth-child(7) {
  animation-delay: 48s;
}

main .slideshow img:nth-child(8) {
  animation-delay: 56s;
}

main .slideshow img:nth-child(9) {
  animation-delay: 64s;
}

main .slideshow img:nth-child(10) {
  animation-delay: 72s;
}

main .slideshow img:nth-child(11) {
  animation-delay: 80s;
}

main .slideshow img:last-child {
  animation-delay: 88s;
}

@keyframes slide {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  10% {
    opacity: 1;
  }
  15% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
main .revb {
  font-size: 0.9em;
  font-weight: bold;
  color: #007b43;
}

main span.keyword {
  color: #d700a3;
  font-weight: bold;
}

main span.keyword-option {
  color: #007bbb;
  font-weight: bold;
}

main span.variable {
  color: #69821b;
}

main .tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 95%;
  margin: 0 auto;
}

main .tab_item {
  width: calc(100%/3);
  height: 50px;
  border-bottom: 3px solid #5ab4bd;
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 14px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  font-weight: bold;
  transition: all 0.2s ease;
}

@media only screen and (min-width: 769px) {
  main .tab_item {
    width: calc(100%/6);
  }
}
main .tab_item:hover {
  opacity: 0.75;
}

main input[name="tab_item"] {
  display: none;
}

main input[name="tab-item"] {
  display: none;
}

main .tab_content {
  display: none;
  padding: 10px 10px 0;
  clear: both;
  overflow: hidden;
}

main .tab_content h3, main .tab_content dt {
  font-size: 1.5em;
  font-weight: bold;
  color: #715c1f;
}

main .tab_content dd {
  margin: 10px 10px 20px 10px;
}

main .tab-content {
  display: none;
  padding: 10px 10px 0;
  clear: both;
  overflow: hidden;
  align-items: flex-start;
}

main .tab-content h3 {
  font-size: 1.5em;
  font-weight: bold;
  color: #715c1f;
}

main .tab-content .text-block {
  width: 49%;
}

main .tab-content .image-block {
  width: 49%;
}

main .tab-item {
  width: calc(100%/3);
  height: 50px;
  border-bottom: 3px solid #5ab4bd;
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 14px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  font-weight: bold;
  transition: all 0.2s ease;
}

main .tab-item:hover {
  opacity: 0.75;
}

main .tabs input:checked + .tab-item {
  background-color: #5ab4bd;
  color: #fff;
}

main table.defrt {
  border-collapse: collapse;
  font-size: 14px;
}

main table.defrt th {
  white-space: nowrap;
  background: skyblue;
}

main table.defrt tr {
  border-bottom: 1px darkcyan solid;
}

main table.defrt td {
  border: none;
  color: darkcyan;
}

main #new-c:checked ~ #new-c_content,
main #mod-c:checked ~ #mod-c_content,
main #gpu:checked ~ #gpu_content,
main #para:checked ~ #para_content,
main #ccsd:checked ~ #ccsd_content,
main #link0:checked ~ #link0_content {
  display: block;
}

main #conflex:checked ~ #conflex-content,
main #gaussian:checked ~ #gaussian-content,
main #amber:checked ~ #amber-content {
  display: flex;
}

main .tabs input:checked + .tab_item {
  background-color: #5ab4bd;
  color: #fff;
}

main .timeline {
  list-style: none;
}

main .timeline > li {
  margin-bottom: 60px;
}

@media only screen and (min-width: 769px) {
  main .timeline > li {
    overflow: hidden;
    margin: 0;
    position: relative;
    display: flex;
    align-items: flex-start;
  }

  main .timeline-date {
    width: 110px;
    margin-top: 20px;
    padding: 0;
  }

  main .timeline-content {
    width: 75%;
    margin-top: 10px;
    padding: 0;
    border-left: 3px #e5e5d1 solid;
    padding-left: 30px;
  }

  main .timeline-content::before {
    content: '';
    width: 12px;
    height: 12px;
    background: #6fc173;
    position: absolute;
    left: 106px;
    top: 24px;
    border-radius: 100%;
  }
}
main .order-product {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

main .order-product li:nth-child(n+3) {
  border-left: solid 3px blue;
}

main .contact-product {
  display: block;
  list-style: none;
}

main .customer-info {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

main .radio-vertical label {
  display: block;
  padding: 0 15px 5px 10px;
}

main .radio-vertical label input {
  margin-right: 6px;
}

main .require {
  font-size: 10px;
  padding: 5px;
  color: white;
  margin: 0 10px 0 5px;
  border-radius: 5px;
  background-color: #e95295;
}

main .customer-info dt {
  background: #dddddd;
  width: 25%;
  padding: 10px;
  box-sizing: border-box;
  border-top: 1px solid #cccccc;
}

main .customer-info dd {
  padding: 10px;
  margin: 0;
  border-left: 1px solid #cccccc;
  border-top: 1px solid #cccccc;
  width: 70%;
  background: white;
  box-sizing: border-box;
}

main .submit-button {
  border: 1px solid #008899;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 16px;
  background: linear-gradient(0deg, #008899, #bce2e8);
  color: white;
  font-weight: bold;
}

main input[type="submit"]:hover {
  background: linear-gradient(0deg, #2792c3, #eaf4fc);
}

main input[type="submit"]:active {
  background: linear-gradient(0deg, #008899, #bce2e8);
}

@media screen and (max-device-width: 768px) {
  main .customer-info dl {
    flex-flow: column nowrap;
  }

  main .customer-info dt,
  main dd {
    width: 100%;
  }

  main .customer-info dd {
    border-left: none;
  }
}
footer {
  margin: 0 auto 0 auto;
  color: white;
  padding: 15px;
  background: #4d4398;
}
