@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[download] {
	padding: 7px 30px 7px 0;
  background: url(../images/icon_download.gif) right center/21px auto no-repeat;
  color: blue;
}

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

 .warning-temp {
  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;
}

header {
  padding: 5px 15px;
}
.main-products {
  display: flex;
  flex-wrap: wrap;  /* 折り返しを許可 */
  justify-content: space-around; /* 均等に配置 */
  gap: 20px; /* アイテム間の余白 */
  padding: 0px;
  margin-bottom: 20px;
  background-color: eaf4fc;
}
.main-informations {
  display: flex;
  flex-wrap: wrap;  /* 折り返しを許可 */
  justify-content: space-around; /* 均等に配置 */
  gap: 20px; /* アイテム間の余白 */
  padding: 0px;
  background-color: eaf4fc;
}
/* アイテム */
.main-item {
  flex: 1 1 calc(25% - 20px); /* 3列（余白を考慮） */
  max-width: calc(25% - 20px);
  height: 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);
  color: blue;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0px 0px 10px;
  width: 75%;
}
.main-item .item-caption {
  color: black;
}
.main-item figure{
  display: flex;           /* Flexboxを使用 */
  justify-content: center; /* 水平方向に中央揃え */
  align-items: center;     /* 垂直方向に中央揃え */
  text-align: center;      /* figcaption（キャプション）を中央揃え */
  height: auto;           /* 親要素の高さを指定（任意） */
}
.main-item figure img {
  width: 70%;
}
.main-information-item2 {
  flex: 1 1 calc(66.666% - 20px);
  max-width: calc(66.666% - 20px);
  height: auto;
  color: black;
  font-size: 16px;
  display: flex;
  align-items: top;
  justify-content: center;
  padding: 0px;
  width: 75%;

}
.main-information-item {
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  height: auto;
  color: black;
  font-size: 16px;
  display: flex;
  align-items: top;
  justify-content: center;
  padding: 0px;
  width: 75%;

}
.main-image {
  width: 80%;
}

.one_third_container {
  display: flex;
  flex-wrap: wrap; /* 必要に応じて折り返し */
  gap: 10px; /* カラム間の間隔 */
}

 .one_third {
      flex: 1 1 calc(33.333% - 20px); /* 3カラム表示 */
      box-sizing: border-box; /* パディングを含めた幅計算 */
    }

    .one_third ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .one_third li {
      margin-bottom: 10px;
    }

ul.gaussian-list{
  position: relative;
  padding: 0.8em;
  width:100%;
  list-style: none;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2) inset,0 0 4px rgba(0, 0, 0, 0.2) ;
  -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2) inset,0 0 4px rgba(0, 0, 0, 0.2) ;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2) inset,0 0 4px rgba(0, 0, 0, 0.2) ;
}
 
ul.gaussian-list li{
  position:relative;
  color: #333;
  border-bottom:dashed 1px #111;
  border-left: solid 5px #5c9ee7;
  padding:4px 0 4px 2em;
}
ul.gaussian-list li:last-child{
  margin-bottom:5px;
}
ul.gaussian-list li:before{
}
ul.lv2 li {
  border-left: none;
}
.kwit {
  color: #1d3d5e;
  font-weight: bold;
}
pre {
  font-size: 1.2em;
  color: #1D3D5E;
  background-color: #CCD8E5;
}
.bo {
  font-weight: bold;
}
    .grid-container {
      display: grid;
      grid-template-columns: 33% auto; /* 左列と右列の幅を指定 */
      gap: 10px; /* 列間のスペース */
      align-items: start; /* 各行のアイテムを上揃え */
    }

    .outpw {
      font-style: italic;
    }

    .codecomm {
      color: #c00;
      font-style: italic;
    }

    .ital {
      font-style: italic;
    }

    .sytxpl {
      font-weight: bold;
    }
.red {
  color: red;
}
/* 画面が狭くなったら2列に変更 */
@media (max-width: 800px) {
  .main-item {
    flex: 1 1 calc(50% - 20px); /* 2列に変更 */
    max-width: calc(50% - 20px);
  }
  .main-information-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .main-information-item2 {
    flex: 1 1 100%;
    max-width: 100%;
  }
  video {
    width: 95%;
  }
}
/* さらに狭くなったら1列に変更 */
@media (max-width: 600px) {
  .main-item {
    flex: 1 1 100%; /* 1列に変更 */
    max-width: 100%;
  }
}

@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;
  }
        .one_third {
        flex: 1 1 calc(50% - 20px); /* 画面幅が狭い場合は2カラム表示 */
      }

}
    @media (max-width: 480px) {
      .one_third {
        flex: 1 1 100%; /* 画面幅がさらに狭い場合は1カラム表示 */
      }
    }

@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: 35%;
}
#sidebar .side-nav2 dl dd {
  width: 65%;
}
#sidebar .side-nav2 .side-indent {
  padding-left: 0.5em;
}
#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 .side-nav2 .platform-label {
  background-color: #cccccc;
  width: 100%;
  display: none;
  opacity: 0;
}
#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-docking:checked ~ #links-docking 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-dock:checked ~ #links-docking 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-conflex:checked ~ #platform-conflex2,
#sidebar #type-platform-conflex:checked ~ #platform-conflex-label,
#sidebar #type-platform-conflex:checked ~ #platform-conflex-label2,
#sidebar #type-platform-docking:checked ~ #platform-docking,
#sidebar #type-platform-docking:checked ~ #platform-docking2,
#sidebar #type-platform-docking:checked ~ #platform-docking-label,
#sidebar #type-platform-docking:checked ~ #platform-docking-label2,
#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-docking:checked ~ #platform-docking 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;
  justify-content: space-between;
  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: 55%;
}
main .side-by-side ul li {
  width: 100%;
}
main .side-by-side ul li ul {
  width: 100%;
}
main .side-by-side div {
  width: auto;
}
main .side-by-side div ul {
  width: 100%;
}
main .side-by-side div ul li {
  width: 100%;
}
main .side-by-side div ul li ul {
  width: 10%;
}
main .side-by-side img {
  width: 200px;
}
main .text-image-block {
  display: flex;
  height: auto;
  align-items: flex-start;
}
main .text-image-block img {
  width: 20%;
}
main .keywords-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
main .line-container {
  display: flex;
  align-items: center;
  gap: 5px;
  }
main .line-container img {
  width: 20px;
}

@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 .dialog-annotation {
  font-size: 10px;
  padding: 5px;
  margin: 0 10px 0 5px;
  border-radius: 5px;
}
main .dialog-annotation-img {
  width: 10px;
}
main .main-warning {
  color: red;
  margin-left: 20px;
}
main .main-warning-bold {
  color: red;
  font-weight: bold;
  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 div, main .products .card-1 div, main .side-by-side-rev .card-1 div {
  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;
  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 .side-by-side-rev div {
  margin-left: auto;
  width: 45%;
}
main .side-by-side-rev div img {
  margin-left: auto;
  width: 100%
}
main .sticky-menu {
  position: sticky;
  position: -webkit-sticky;
  z-index: 1000;
  top: 0;
  height: 60px;
  background-color: #ecf4fb;

}
main .main-nav ul li {
  padding: 6px;
}

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

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: 35%;
}
main .side-nav2 dl dd {
  width: 65%;
}
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;
}

.side-nav3 .platform-label {
  font-size: 0.9em;
  background-color: #cccccc;
}
.side-nav3 dl {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  font-size: 0.8em;
  padding-left: 0.5em ;
  background-color: #cccccc;
}
.side-nav3 dl dt {
  width: 35%;
}
.side-nav3 dl dd {
  width: 65%;
}
.side-nav3 .side-indent {
  padding-left: 0.5em;
}


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-docking:checked ~ #links-docking 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-dock:checked ~ #links-docking 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-docking:checked ~ #platform-docking,
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-docking:checked ~ #platform-docking 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-gaussian-pricelist {
  width: auto;
  margin-right: auto;
  margin-left: auto;
  border-collapse: collapse;
  border: solid 1px #1e50a2;
}
main .table-gaussian-pricelist th {
  width: auto;
  background-color: #1e50a2;
  color: white;
  padding: 5px;
}
main .table-gaussian-pricelist td {
  width: auto;
  text-align: center;
  border: solid 1px #1e50a2;
}
/*
main .table-gaussian-pricelist th:first-child {
  width: 4em;
} */
main .table-gaussian-pricelist td {
  text-align: center;
}
main .table-gaussian-pricelist {
  width: 95%;
}
main .table-gaussian-pricelist caption {
  text-align: right;
}
main .table-gaussian-pricelist th {
  padding: 5px;
}
main .table-gaussian-pricelist th.table-sub-header {
  font-size: 0.9em;
  font-weight: bold;
  color: #17184b;
  background-color: #c1e4e9;
  border: solid 1px #1e50a2;
}
main .table-gaussian-pricelist button {
  font-size: 0.8em;
  color: #17184b;
  border-radius: 3px;
  background-color: #ffffff;
}
main .table-gaussian-pricelist td {
  padding: 5px;
  font-size: 0.8em;
}
/*
main .table-gaussian-pricelist td:not(:first-of-type) {
  width: 19%;
  text-align: right;
  padding: 0 10px 0 0;
} */

main .table-chemdraw {
  width: 95%;
  margin-bottom: 20px;
  border-collapse: collapse;
}
main .table-chemdraw tr {
  background-color: #ffffff;
}
main .table-chemdraw th {
  background-color: #507ea4;
  color: #ffffff;
  padding: 4px;
  text-align: center;
  border: solid 1px #1e50a2;
}
main .table-chemdraw td {
  background-color: #ffffff;
  padding: 4px;
  border: solid 1px #1e50a2;
}
main .table-chemdraw td:not(:first-child) {
  background-color: #ffffff;
  padding: 4px;
  border: solid 1px #1e50a2;
  text-align: center;
}




main .table-chemdraw th button {
  border-radius: 0px;
  padding: 0px;
  color: white;
  border-color: transparent;
  border-bottom-width: 2px;
  background: transparent;
  cursor: pointer;
}
main .table-chemdraw button {
  border-radius: 0px;
  padding: 0px;
  color: blue;
  text-align: left;
  border-color: transparent;
  border-bottom-width: 2px;
  background: transparent;
  cursor: pointer;
}
main .table-chemdraw button::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: '';
  width: 0;
  height: 2px;
  background-color: #31aae2;
  transition: .3s;
  transform: translateX(-50%);
}

main .table-chemdraw button:hover {
  color: skyblue;
  border-color: transparent;
}

main .table-chemdraw .button-parent {
  margin-left: 2em;
  text-indent: -5em;
}
main .table-chemdraw .button-children {
  background-color: #ffffff;
  padding: 4px 4px 4px 40px;
  border: solid 1px #1e50a2;
  text-align: left;
  font-size: 0.9em;
}



main .table-chemoffice {
  width: 95%;
  margin-bottom: 20px;
}
main .table-chemoffice th {
  background-color: #507ea4;
}
main .table-chemoffice tr {
  background-color: #ffffff;
}
main .table-chemoffice tr td button {
  text-align: left;
}

@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-chemdraw tr:nth-child(odd) td {
    background-color: #e0ebaf;
  }
  main .table-chemdraw td.td-checked::before {
/* Benzene RING with circle*/
   content: "\23e3";
  font-size: 1.1em;
/*    content: "\2714"; Check mark */
  }
  main .table-chemdraw td.td-empty::before {
    content: "-";
  }

  main .table-chemoffice tr:nth-child(odd) td {
    background-color: #e0ebaf;
  }
  main .table-chemoffice td.td-checked::before {
/* Benzene RING with circle*/
    content: "\23e3";
	font-size: 1.1em;
/*    content: "\2714"; Check mark */
  }
  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%/4);
  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,
main #chemdraw:checked ~ #chemdraw-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;
}

.card-calc-2 {
  width: calc((100% - 20px)/2);
}

.left-text-block {
  width: 50%;
}

.right-image-block {
  display: flex;
  max-width: 50%;
  height: auto;
  align-items: stretch;
  margin: 0;
  padding: 0;
}

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

.chemdraw-func {
  text-align: left;
}

.chemdraw-func img {
  width: 400px;
}

.chemdraw-func button {
	position:absolute;
	top: 20px;
	right:20px;
}

.chemdraw-func-1img {
  text-align: left;
}

.chemdraw-func-1img img {
  width: 800px;
}
.chemdraw-func-1img .small-img {
  width: 600px;
}
.chemdraw-func-1img .small-img-500 {
  width: 500px;
}
.chemdraw-func-1img .small-img-400 {
  width: 400px;
}
.chemdraw-func-1img .small-img-300 {
  width: 300px;
}
.chemdraw-func-1img .small-img-200 {
  width: 200px;
}

.chemdraw-func .small-img-200 {
  width: 200px;
}
.chemdraw-func .small-img-300 {
  width: 300px;
}
.chemdraw-func .small-img-400 {
  width: 400px;
}
.chemdraw-func .small-img-500 {
  width: 500px;
}

.chemdraw-func-1img button {
	position:absolute;
	top: 20px;
	right:20px;
}

.chemdraw-container{
  display: flex;
}

.chemdraw-item1 {
  flex: 3;
}

.chemdraw-item2 {
  flex: 1;
}

a.chemdraw-link {
  text-decoration: underline;
	padding: 7px 30px 7px 0;
  background: url("../images/icon_anchor.svg") right center/21px auto no-repeat;
  color: blue;
}

.draw-curve-image {
      padding-left: 30px;
    background: url("../images/ChemDraw/Prime/draw_curve_icon.png") no-repeat left center;
}
.edit-curve-image {
      padding-left: 30px;
    background: url("../images/ChemDraw/Prime/edit_curve_icon.png") no-repeat left center;
}

main .keywords {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 10px;
}
main .keywords .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 .keywords .card-1 a {
  color: blue;
}
main .keywords .card-1 img {
  align-self: flex-start;
}
main .keywords .card-1 div {
  align-self: flex-start;
}
main .keywords .card-1::before {
  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 .keywords .card-1:after {
  left: auto;
  right: 12px;
  transform: skew(5deg) rotate(5deg);
}
main .section {
  scroll-margin-top: 115px; /* 固定メニューの高さ */
}
:target {
  scroll-margin-top: 115px;
}
#toc {
  position: sticky;
  position: -webkit-sticky;
  top: 60px;
  left: 0;
  width: 100%;
  height: auto;
  background: #edf4fa;
  color: blue;
  padding: 15px 20px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  border-bottom: 2px solid blue; /* アンダーラインの色と太さ */
  padding-bottom: 2px; /* テキストとアンダーラインの間隔 */
}
#toc nav ul {
      list-style: none; /* Delete Marker on the List */
      padding: 0;
      margin: 0 auto; /* Centering */
      display: inline-flex; /*　Put side-by-side */
      flex-wrap: wrap; /* Wrap the line if necessary */
      gap: 15px; /* 各項目の間隔を調整 */
}
#toc nav ul li {
  display: inline;
}

    #toc li {
      margin: 0;
    }

    #toc a {
      text-decoration: none;
      font-size: 1.1rem;
      font-weight: bold;
      color: blue;
      padding: 8px 15px;
      border-radius: 5px;
      transition: all 0.3s ease;
      background: #edf4fa;
  border: 2px solid #9da2a6; /* アンダーラインの色と太さ */
    }

    #toc a:hover {
      background: rgba(255, 255, 255, 0.2); /* ホバー時に背景を薄く */
    }

    #toc a.active {
      background: rgba(255, 255, 255, 0.4); /* 現在のリンクを目立たせる */
      color: blue;
      transform: scale(1.1); /* アクティブ時に少し拡大 */
      transition: all 0.3s ease;
    }

.glossaryLink {
  position: relative;
  display: inline-block;
  cursor: default;
}
.glossaryLink .tooltip-text {
  visibility: hidden;
  min-width: 500px; /* 最大幅を設定 */
  color: black;
  background: lightblue;
  text-align: left;
  font-size: 1rem;
  padding: 10px;
  border-radius: 5px;
  position: absolute;
  left: 100%;  /* 文字の右側に配置 */
  top: 50%;
  transform: translateY(-10%);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 10;
  white-space: normal; /* 折り返しを有効化 */
  word-wrap: break-word; /* 長い単語を折り返し */
  box-sizing: border-box;
}
.tooltip-link {
  color: blue;
  font-weight: bold;
}
.glossaryLink .tooltip-text object a {
  color: blue;
  text-decoration: underline;
  opacity: 1.0;
}
        .tooltip-text:hover {
          opacity: 1.0;
        }
       .tooltip-text::after {
            content: "";
            position: absolute;
          opacity: 1;
            top: 50%;
            right: 100%; /* 矢印を左側に配置 */
            margin-top: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: transparent black transparent transparent;

        }

        .glossaryLink:hover .tooltip-text {
            visibility: visible;
            opacity: 1.0;
        }
        /* 画面の右端で吹き出しがはみ出る場合、左側に表示する */
        @media (max-width: 600px) {
            .glossaryLink .tooltip-text {
                left: auto;
                right: 100%; /* 画面端なら左側に表示 */
            }
            .glossaryLink .tooltip-text::after {
                left: 100%;
                right: auto;
                border-color: transparent transparent black black;
            }
        }
