header{
  position: fixed;
  width: 100px;
  height: 100px;
  top: 0;
  left: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 1000;
}
  header a{
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
    header a img{
      width: 100%;
      height: auto;
    }

main{
  width: calc(100dvw - 100px);
  margin-left: 100px;
}
.control{
  position: relative;
  top: 0;
  left: 0;

  width: 100%;
  height: 150px;
}
  .control .wrapper{
    position: absolute;
    top: 25px;
    right: 36px;

    height: 50px;
  }
    .control button{
      height: 50px;
      width: auto;
    }
      .control button span{
        height: 30px;
        width: 30px;
      }
  .control .name{
    position: absolute;
    top: 75px;
    padding-top: 25px;
    height: 50px;
    display: flex;
    align-items: end;
  }
    .control .name h1{
      font-size: var(--title-font-size);
    }
      .control .name h1 a{
        cursor: pointer;
      }
        .control .name h1 img{
          height: 30px;
        }
.gallery{
  width: 100%;
  height: auto;
}
  .gallery .container{
    display: none;
  }
  .gallery .container.active{
    display: flex;
    flex-direction: column;
    gap: 20px;

    padding-top: 10px;
  }
    .info-box{
      display: flex;
      flex-direction: column;
      gap: 5px;
      height: 100px;
    }
      .info-box .info-box-left{
        display: block;
        width: 100%;
      }
      .info-box .info-box-right{
        display: none;
      }
        .info-box h4{
          font-size: var(--accent-font-size);
          font-weight: normal;
        }
        .info-box p{
          font-size: var(--desc-font-size);
        }
    .content-box{
      width: 100%;
      display: flex;
      justify-content: space-between;
    }
      .content-box .image-list{
        max-width: 1170px;
        min-width: 400px;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 30px;
      }
        .content-box .image-list .image-box{
          aspect-ratio: 5 / 2;
          width: 100%;
          height: auto;
        }
          .content-box .image-list .image-box img{
            width: 100%;
            height: auto;
          }
      .content-box .logo-box{
        position: sticky;
        top: 140px;
        
        box-sizing: border-box;
        max-width: 400px;
        min-width: 200px;
        width: 100%;
        height: calc(100dvh - 280px);

        padding-right: 7%;
        margin-left: 7%;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }
        .content-box .logo-box img{
          width: 100%;
          height: auto;
        }
.logo-box.sp{
  display: none;
}

@media screen and (max-width: 1200px){
}

@media screen and (max-width: 767px){

header{
  position: fixed;
  width: 80px;
  height: 80px;
  top: 0;
  left: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  background-color: var(--color-white);
}
  header a{
    width: 35px;
    height: auto;
    cursor: pointer;
  }
main{
  width: 100dvw;
  margin-left: 0;
}
.control{
  width: 100%;
  height: 80px;
}
  .control .wrapper{
    position: absolute;
    top: 15px;
    right: 15px;

    height: 30px;
  }
    .control button{
      height: 30px;
      width: auto;
    }
      .control button span{
        height: 20px;
        width: 20px;
      }
  .control .name{
    box-sizing: border-box;
    position: absolute;
    top: 75px;
    padding: 25px 16px 0;
    width: 100%;
    height: 55px;
  }
    .control .name h1{
      font-size: var(--subtitle-font-size);
      height: 30px;
    }
      .control .name h1 img{
        height: 25px;
      }
.gallery{
  margin-top: 55px;
}
    .info-box{
      box-sizing: border-box;
      padding: 0 16px;
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0;
      height: auto;
    }
      .info-box .info-box-left{
        max-width: 70%;
        width: 100%;
      }
      .info-box .info-box-right{
        display: block;
        max-width: 30%;
        width: 100%;
        height: 80px;
      }
        .info-box .info-box-right .logo-box{
          box-sizing: border-box;
          width: 100%;
          height: 80px;
        }
          .info-box .info-box-right .logo-box img{
            object-fit: contain;
            width: 100%;
            height: 80px;
          }
        .info-box h4{
          font-family: sans-serif;
          font-size: var(--accent-font-size);
          font-weight: normal;
          line-height: 20px;
        }
        .info-box p{
          font-family: sans-serif;
          font-size: var(--desc-font-size);
          line-height: 20px;
        }
    .content-box{
      width: 100%;
      display: flex;
      justify-content: space-between;
    }
      .content-box .image-list{
        max-width: 1170px;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 30px;
      }
        .content-box .image-list .image-box{
          aspect-ratio: 5 / 2;
          width: 100%;
          height: auto;
        }
          .content-box .image-list .image-box img{
            width: 100%;
            height: auto;
          }
.logo-box.pc{
  display: none;
}
.logo-box.sp{
  display: block;
}

}