details {
  display:none;
}

.documents-container {
    overflow: visible;
}
.integrations-card1 {
    font-size: 12px;
    background: #cee1f2;
    border-radius: 6px;
    height: 2em;
    padding: 2px;
}
.integrations-card2 {
    font-size: 12px;
    background: #d4e8c6;
    border-radius: 6px;
    height: 2em;
    padding: 2px;
}
.integrations-card3 {
    font-size: 12px;
    background: #f9d8c1;
    border-radius: 6px;
    height: 2em;
    padding: 2px;
}
.integrations-card4 {
    font-size: 12px;
    background: #ffecb2;
    border-radius: 6px;
    height: 2em;
    padding: 2px;
}
.integrations-gallery-card {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-around;
    box-shadow: 1px 3px 2px 1px #d4d4d4;
    border-radius: 10px;
    padding: 10px;
}
.integrations-documents-gallery {
    width: 100%;
    display: grid;
    max-width: 1110px;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}
.documents-menu p {
    margin-bottom: 12px;
}
.documents-menu {
    position: sticky;
    top: 20%;
}
.documents-container16 {
    padding-top: var(--dl-space-space-tripleunit);
    justify-content: space-between;
}
.documents-side {
    align-content: flex-start;
    align-items: flex-start;
    flex: none;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0 20px 0 0;
    padding-top: var(--dl-space-space-tripleunit);
    width: 260px;
    max-width: 100%;
}
.integrations-text {
    height: auto;
    align-self: center;
    margin-right: 0.2rem;
    margin-bottom: 10px;
}
.integrations-menu-text{
    height: auto;
    align-self: center;
    margin-right: 0.2rem;
    margin-bottom: 10px;
    position: absolute;
    left:40%;
    font-size: 3rem;
}

.integrations-gallery-card1-text {
  flex: 6.5;
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.integrations-gallery-card1-text2 {
  flex: 6.5;
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  text-align: center;
}
@media(min-width:768px){
  .integrations-gallery-card1-text.pe-4_pc span{
    padding-right: 2rem;
  }
}

.integrations-main {
    padding-bottom:0px;
}

    .documents-text_pc {
        display: block;
        position: absolute;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 10px;
        text-align:center;
    }

    .documents-text_sp {
        display: none;
    }

.nav{
    display:none;
}

.parent {
  flex: 3.5;
  width: 100px;
  height: 40px;
  overflow: hidden;
  position: relative;
}

.child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
}

.br-sp {
    display: none;
}

.integrations-documents-gallery {
  margin-bottom:50px;
}

.integrations-gallery {
    width: 100%;
    display: grid;
    grid-gap: 1rem;
    max-width: 1110px;
    grid-template-columns: minmax(10px, 95px) minmax(10px, 95px);
    grid-template-rows: minmax(10px, 95px) minmax(10px, 95px);
    padding: 6px;
    text-align: center;
    height: 5em;
}
.documents-container15 {
    display: flex;
    margin-bottom: 32px;
    justify-content: normal;
}

.integrations-main {
    flex: 1;
    width: 100%;
    height: 10vh;
    display: flex;
    align-items: center;
    padding-top: 0px;
    flex-direction: row;
    /* padding-bott */
}

.documents-features2 {
    width: 100%;
    display: flex;
    position: relative;
    max-width: 1110px;
    flex-direction: column;
}

.documents-container01 {
    width: 100%;
    display: flex;
    margin-bottom: 4rem;
    flex-direction: column;
}

.documents-features2 {
    width: 100%;
    display: flex;
    position: relative;
    max-width: 1110px;
    flex-direction: column;
}

.headerfixed {
    width: 100%;
    display: flex;
    max-width: 1110px;
    align-items: center;
    padding-top: 32px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 32px;
    justify-content: space-between;
}

@media screen and (max-width: 767px) {
.headerfixed {
    padding-left: 32px;
    padding-right: 32px;
}

details {
    display: block;
    position: fixed;
    padding: 0 5%;
    top: 5px;
}

.wrapper {
  max-width: 640px;
  border-bottom: 1px solid #ddd;
}

/* defaultの▼アイコンを消す */
summary {
  display: block;
}
summary::-webkit-details-marker {
  display: none;
}

/* アコーディオン */
.summary_content {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
  color: #000;
}
.details_content {
  background: #eee;
  padding: 24px 16px;
  margin-left: 0px;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
  position:fixed;
  right:0px
}

/* アコーディオンオープン・アニメーション */
details[open] .details_content {
  animation: fadeIn 0.85s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-12px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

/* 三角ボタン */
.toggle_button {
  display: block;
  position: relative;
  width: 20px;
  margin-left: 8px;
  flex-shrink: 0;
  transform-origin: center 45%;
  transition: transform 0.75s;
}
.toggle_button::before,
.toggle_button::after {
  content: "";
  position: absolute;
  display: block;
  width: 12px;
  height: 2px;
  background-color: #763f49;
}
.toggle_button::before {
  left: 0;
  transform: rotate(45deg);
}
.toggle_button::after {
  right: 0;
  transform: rotate(-45deg);
}
/* 三角ボタン切り替え */
details[open] .toggle_button {
  transform: rotate(180deg);
}



.documents-container16 {
    padding-top: 0;
}

.documents-container {
    align-items: center;
}
.documents-main {
    position: sticky;
    top: 0px;
    padding-top: 120px;
    background:white;
    z-index:2;
}
.integrations-card1 {
    font-size: 8px;
    background: #cee1f2;
    border-radius: 3px;
    height: 2em;
    padding: 1px;
}
.integrations-card2 {
    font-size: 8px;
    background: #d4e8c6;
    border-radius: 3px;
    height: 2em;
    padding: 1px;
}
.integrations-card3 {
    font-size: 8px;
    background: #f9d8c1;
    border-radius: 3px;
    height: 2em;
    padding: 1px;
}
.integrations-card4 {
    font-size: 8px;
    background: #ffecb2;
    border-radius: 3px;
    height: 2em;
    padding: 1px;
}

.integrations-gallery-card {
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 8fr;
    align-items: center;
    margin-bottom: 0;
    flex-direction: row;
    justify-content: flex-start;
    box-shadow: none;
    border-radius: 10px;
    padding: 15px 0 15px 45px;
    height: 7em;
}
.integrations-documents-gallery {
    width: 100%;
    display: grid;
    grid-gap: 0;
    max-width: 1110px;
    grid-template-columns: 1fr;
}
.documents-side {
    display: none;
}

.footer-container {
    z-index:0;
}

.integrations-gallery {
    display: grid;
    grid-gap: 4px;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto auto;
    padding: 5px;
    text-align: center;
    height: auto;
}

.br-sp {
    display: block;
}

.parent {
  width: auto;
  height: auto;
  overflow: visible;
  position: static;
}

.child {
  position: static;
  top: auto;
  left: auto;
  transform: none;
  max-width: auto;
  max-height: auto;
  margin-bottom: var(--dl-space-space-unit);
}


.integrations-menu-text{
    display:none;
}
.integrations-main {
    padding-top: 0px;
    padding-bottom:0px;
}
.nav{
    display:flex;
    padding-left:20px;
}

.documents-text{
  font-size: 1.5rem;
  margin-left: 16px;
}


.integrations-main {
    position: fixed;
    bottom: 0;
    background: white;
    z-index: 1;
    width: auto;
}

.integrations-menu{
    display:flex;
    padding: 5px;
    margin-right: 10px;
    box-shadow: 3px 3px 3px rgba(0,0,0,0.3);
    border-radius: 10px 10px 10px 10px;
}

.nav_item{
    margin-bottom: 16px;
}

.nav_list{
    font-weight: 600;
}

.integrations-gallery-card1-text {
  height: 2rem;
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
}


}



.logo {
  font-size: 24px;
}
.drawer_hidden {
  display: none;
}
.drawer_open {
  display: grid;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;
  width:360px;
  cursor: pointer;
}
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #333;
  transition: 0.5s;
  position: absolute;
}
.drawer_open span:before {
  bottom: 8px;
}
.drawer_open span:after {
  top: 8px;
}
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 205px;
  right: 100%;
  z-index: 99;
  background: #fff;
  transition: .5s;
  padding-left:25px;
}
.nav_list {
  list-style: none;
}
#drawer_input:checked ~ .nav_content {
  right: 0;
}

@media (max-width: 767px) {

    details {
        display: block;
        position: relative;
    }
    details[open] .details-content {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #f9f9f9; /* 任意の背景色 */
        padding: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1;
    }
    details .details-content {
        display: none;
    }
    .documents-main ul {
        display: flex;
        flex-wrap: wrap;
        padding: 0;
        margin: 0;
    }
    .documents-main li {
        width: 50%; /* 2列表示 */
        list-style: none;
        padding: 10px;
        box-sizing: border-box;
    }
}


.documents-main {
    display: block;
}

/* メニューのトグルボタンを非表示 */
.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
}

/* 3本線のスタイル（初期状態は黒） */
.menu-icon span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #000;
    background-color: #FFF;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* 3本線の間隔を適切に調整 */
.menu-icon span:nth-child(1) {
    transform: translateY(-8px);
}

.menu-icon span:nth-child(2) {
    opacity: 1;
}

.menu-icon span:nth-child(3) {
    transform: translateY(8px);
}

/* メニューのスタイル（デフォルトは非表示） */
.menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    transition: left 0.3s;
    padding-top: 60px;
    z-index: 1000;
}

.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu li {
    text-align: center;
    margin: 8px 0;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 10px;
}

/* メニュー表示時（チェックボックスONで開く） */
.menu-toggle:checked ~ .menu {
    left: 0;
}

/* タップ後の色変更（赤色） */
.menu-toggle:checked + .menu-icon span {
    background-color: #fff;
}

/* ハンバーガーメニューを × に変形 */
.menu-toggle:checked + .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(1px, 1px);
}

.menu-toggle:checked + .menu-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle:checked + .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* スマホサイズ対応 */
@media screen and (max-width: 767px) {
.menu {
        width: 98%;
}
.integrations-gallery-card1-text, .integrations-gallery-card1-text2 {
  font-size: 1rem;
}

/* ハンバーガーアイコン */
.menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 30px;
    cursor: pointer;
    position: fixed;
    top: 44px;
    right: 20px;
    z-index: 1100;
    padding: 10px;
    border-radius: 5px;
}

}