/*hotzone*/
/*fixed spacing*/
/*spacing*/
/*line-height*/
#menu-toggle {
  display: none;
}

header #nav-area .nav-block ul {
  align-items: center;
}
header #nav-area .nav-block ul li a {
  font-family: "Roboto Condensed", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  color: #333333;
  font-weight: 300;
}

@media screen and (min-width: 768px) {
  header #nav-area .nav-block ul {
    width: 90%;
    min-width: 650px;
    max-width: 1366px;
  }
}
@media screen and (max-width: 767.98px) {
  header {
    position: static;
    margin: 0 auto;
  }
  header #nav-area .nav-block .menu-trigger {
    position: fixed;
    top: 30px;
    left: 20px;
    width: 28px;
    height: 28px;
    z-index: 1001;
    cursor: pointer;
  }
  header #nav-area .nav-block .menu-trigger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 4px;
    background-color: #CE3A3A;
    transition: 0.3s;
  }
  header #nav-area .nav-block .menu-trigger span:nth-child(1) {
    top: 0;
  }
  header #nav-area .nav-block .menu-trigger span:nth-child(2) {
    top: 5px;
  }
  header #nav-area .nav-block .menu-trigger span:nth-child(3) {
    bottom: 0;
  }
  header #nav-area .nav-block #menu-toggle {
    display: none;
  }
  header #nav-area .nav-block #menu-toggle:checked ~ #nav-gnav {
    right: 0;
    width: 100%;
  }
  header #nav-area .nav-block #nav-gnav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    background: #606060;
    transition: 0.3s;
    padding-top: 60px;
    z-index: 5;
  }
  header #nav-area .nav-block #nav-gnav .gnav_list {
    list-style: none;
    padding: 0;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    margin: 5rem auto;
  }
  header #nav-area .nav-block #nav-gnav .gnav_list .gnav_list-item:first-child {
    display: none;
  }
  header #nav-area .nav-block #nav-gnav .gnav_list .gnav_list-item:first-child::after {
    display: none;
  }
  header #nav-area .nav-block #nav-gnav .gnav_list .gnav_list-item a {
    text-decoration: none;
    color: white;
    font-size: 18px !important;
    display: block;
  }
  header #nav-area .nav-block .menu-trigger span {
    transition: 0.3s;
  }
  header #nav-area .nav-block .menu-trigger span:nth-child(1) {
    top: 0;
  }
  header #nav-area .nav-block .menu-trigger span:nth-child(2) {
    top: 13px;
  }
  header #nav-area .nav-block .menu-trigger span:nth-child(3) {
    bottom: 0;
  }
  header #nav-area .nav-block #menu-toggle:checked ~ .menu-trigger span:nth-child(1) {
    background-color: white;
    transform: translateY(11px) rotate(45deg);
  }
  header #nav-area .nav-block #menu-toggle:checked ~ .menu-trigger span:nth-child(2) {
    opacity: 0;
  }
  header #nav-area .nav-block #menu-toggle:checked ~ .menu-trigger span:nth-child(3) {
    background-color: white;
    transform: translateY(-15px) rotate(-45deg);
  }
}
@media screen and (min-width: 768px) {
  html#top body header {
    position: relative;
    width: 100%;
    margin: 40px auto;
  }
  html#top body header li.logo {
    display: block;
  }
  html#top #nav-area .nav-block ul {
    width: 90%;
    min-width: 650px;
    max-width: 1366px;
  }
}
@media screen and (max-width: 767.98px) {
  html#top body header {
    margin: 0 auto;
  }
}
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #CE3A3A;
  color: #fff;
  padding: 10px 8px;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.back-to-top i {
  display: flex;
  justify-content: center;
  font-size: 20px;
}
.back-to-top span {
  font-size: 10px;
  display: block;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (max-width: 767.98px) {
  .back-to-top {
    right: 10px;
    bottom: 10px;
  }
}
@media screen and (max-width: 767.98px) {
  #sp-top-area {
    display: block;
    width: auto;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #sp-top-area .scroll {
    position: absolute;
    font-size: 13px;
    writing-mode: vertical-rl;
    top: 500px;
    left: 20px;
  }
  #sp-top-area .scroll::before {
    animation: scroll 2s infinite;
    background-color: #000;
    bottom: -115px;
    content: "";
    height: 100px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
    z-index: 2;
  }
  #sp-top-area .scroll::after {
    background-color: #ccc;
    bottom: -115px;
    content: "";
    height: 100px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
  }
  @keyframes scroll {
    0% {
      transform: scale(1, 0);
      transform-origin: 0 0;
    }
    50% {
      transform: scale(1, 1);
      transform-origin: 0 0;
    }
    51% {
      transform: scale(1, 1);
      transform-origin: 0 100%;
    }
    100% {
      transform: scale(1, 1);
      transform-origin: 0 100%;
    }
  }
}
@media screen and (min-width: 768px) {
  #sp-top-area {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  #top-gallery-area .grid-wrapper .grid .grid-item {
    height: auto;
  }
  #top-gallery-area .grid-wrapper .grid .grid-item a {
    position: relative;
    display: block;
    overflow: hidden;
  }
  #top-gallery-area .grid-wrapper .grid .grid-item a img {
    display: block;
    width: 100%;
    height: auto;
    transition: filter 0.3s ease;
  }
  #top-gallery-area .grid-wrapper .grid .grid-item a h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90%;
    margin: 0.5rem;
    padding: 0 0.5em;
    color: #fff;
    font-size: 12px;
    text-align: left;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  #top-gallery-area .grid-wrapper .grid .grid-item a:hover img {
    filter: brightness(30%);
  }
  #top-gallery-area .grid-wrapper .grid .grid-item a:hover h3 {
    opacity: 1;
  }
}
@media screen and (max-width: 1023.98px) {
  #top-gallery-area .grid-wrapper .grid .grid-item a img {
    height: auto;
  }
  #top-gallery-area .grid-wrapper .grid .grid-item a h3 {
    position: relative;
    font-size: 12px;
    text-align: left;
    margin-top: 0.5rem;
  }
}
@media screen and (min-width: 1024px) {
  section#single-area h2.main-ttl::before {
    top: 3px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.98px) {
  section#single-area h2.main-ttl {
    white-space: wrap;
  }
  section#single-area h2.main-ttl::before {
    top: 3px;
  }
}
@media screen and (max-width: 767.98px) {
  section#single-area h2.main-ttl {
    font-size: 20px;
    padding-left: 15px;
    white-space: wrap;
  }
  section#single-area h2.main-ttl::before {
    top: 0;
  }
}
@media screen and (max-width: 511.98px) {
  section#single-area #contents-container.single-block {
    padding: 20px;
  }
  section#single-area #contents-container.single-block .eyecatch-block img {
    margin: 0 auto 20px auto;
  }
  section#single-area iframe {
    width: 100%;
  }
}
@media screen and (max-width: 767.98px) {
  section#creator-area .creator-block ul li .description {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0);
  }
  section#creator-area .creator-block ul li .description a {
    display: flex;
    justify-content: flex-end;
  }
  section#creator-area .creator-block ul li .description a .description-box {
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    width: 100%;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 767.98px) {
  .info-work-block .work-description .work-titlename .work-title {
    background-origin: padding-box;
  }
  .info-work-block a {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .info-work-block a .work-description .work-titlename .work-title {
    font-size: 13px !important;
  }
  .info-work-block a .work-description .responsible_number {
    line-height: 1.5;
  }
  section#single-creator-area #contents-container .single-creator-block#works-block img {
    width: 80%;
  }
}
@media screen and (max-width: 767.98px) {
  section#single-creator-area #contents-container .single-creator-block#works-block .works-block-child .page-tab-child ul.tabs-child {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }
  section#single-creator-area #contents-container .single-creator-block#works-block .works-block-child .page-tab-child ul.tabs-child li {
    display: block;
    margin-right: 0;
  }
  section#single-creator-area #contents-container .single-creator-block#works-block .works-block-child .page-tab-child ul.tabs-child li a {
    padding: 3px 8px;
  }
}
@media screen and (max-width: 767.98px) {
  section#studio-area .swiper-container {
    width: 90%;
    padding-top: 20px;
  }
}
section#studio-area .studio-block-container .studio-block#studio-block-equipments .page-tab-child ul.tabs-child {
  position: relative;
  display: flex;
  justify-content: center;
}
section#studio-area .studio-block-container .studio-block#studio-block-equipments .page-tab-child ul.tabs-child li {
  position: relative;
  width: 18%;
}
section#studio-area .studio-block-container .studio-block#studio-block-equipments .page-tab-child ul.tabs-child li::after {
  position: absolute;
  left: 95%;
  bottom: 10px;
  content: "";
  width: 1px;
  margin: 0 1rem;
  height: 50%;
  background-color: #C0C0C0;
}
section#studio-area .studio-block-container .studio-block#studio-block-equipments .page-tab-child ul.tabs-child li:last-child::after {
  content: none;
}
section#studio-area .studio-block-container .studio-block#studio-block-equipments .page-tab-child ul.tabs-child li a {
  background-color: inherit;
  color: #333333;
  font-size: 16px;
  font-weight: 300;
}
section#studio-area .studio-block-container .studio-block#studio-block-equipments .page-tab-child ul.tabs-child li.active a {
  background-color: inherit;
  color: #CE3A3A;
}

@media screen and (min-width: 768px) and (max-width: 1023.98px) {
  section#studio-area .studio-block-container .studio-block#studio-block-equipments .page-tab-child ul.tabs-child li {
    width: 20%;
  }
  section#studio-area .studio-block-container .studio-block#studio-block-equipments .page-tab-child ul.tabs-child li a {
    font-size: 16px;
  }
}
@media screen and (max-width: 767.98px) {
  section#studio-area .studio-block-container .studio-block#studio-block-equipments .page-tab-child ul.tabs-child {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  section#studio-area .studio-block-container .studio-block#studio-block-equipments .page-tab-child ul.tabs-child li {
    width: 45%;
  }
  section#studio-area .studio-block-container .studio-block#studio-block-equipments .page-tab-child ul.tabs-child li:nth-child(2)::after {
    content: none;
  }
  section#studio-area .studio-block-container .studio-block#studio-block-equipments .page-tab-child ul.tabs-child li a {
    font-size: 14px;
  }
}
section#studio-area .studio-block-container .studio-block#studio-block-equipments #equipments-c #equipments-area .equipments-block.table table tr th.cat {
  color: #ffffff;
  text-align: center;
  font-weight: 500;
  background-color: #CE3A3A;
}
section#studio-area .studio-block-container .studio-block#studio-block-equipments #equipments-c #equipments-area .equipments-block.table table tr:first-child {
  border-bottom: none;
}
section#studio-area .studio-block-container .studio-block#studio-block-equipments #equipments-c #equipments-area .equipments-block.table table tr td {
  line-height: 2.5rem;
}
section#studio-area .studio-block-container .studio-block#studio-block-equipments #equipments-c #equipments-area .equipments-block.table table tr ul li {
  line-height: 2.5rem;
}

@media screen and (max-width: 767.98px) {
  section#studio-area .studio-block-container .studio-block#studio-block-equipments #equipments-c #equipments-area {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
  }
}
section#studio-area .studio-block-container .studio-block#studio-block-equipments #plugins-c #plugins-area .plugins-block.table table tr td {
  line-height: 2.5rem;
}
section#studio-area .studio-block-container .studio-block#studio-block-equipments #plugins-c #plugins-area .plugins-block.table table tr ul li {
  line-height: 2.5rem;
}

@media screen and (max-width: 767.98px) {
  section#studio-area .studio-block-container .studio-block#studio-block-equipments #plugins-c #plugins-area {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
  }
}
@media screen and (min-width: 1024px) {
  section#studio-area .studio-block-container .studio-block#studio-block-equipments #floormap-c #floormap-area .floormap-block img {
    margin: 40px auto;
  }
}
@media screen and (max-width: 767.98px) {
  section#studio-area .studio-block-container .studio-block#studio-block-equipments #floormap-c #floormap-area {
    padding: 20px 0;
  }
  section#studio-area .studio-block-container .studio-block#studio-block-equipments #floormap-c #floormap-area .floormap-block img {
    margin: 20px auto;
  }
}
@media screen and (max-width: 1023.98px) {
  section#access-area #access .access-block .access-grid {
    display: block;
  }
  section#access-area #access .access-block .access-grid .access-block-child {
    padding: 0 10px;
  }
}
@media screen and (max-width: 767.98px) {
  section#access-area #contents-container {
    padding-bottom: 20px;
    padding-top: 5px;
  }
  section#access-area #contents-container #access .access-block .access-way {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
  }
}
section#company-area #company .company-block table tr td a.access-tab {
  width: fit-content;
  margin-top: 5px;
  padding: 3px 10px;
  color: #333;
  background: #e3e3e3;
  border-radius: 4px;
}
section#company-area #company .company-block table tr td a.access-tab i {
  margin-left: 3px;
}

@media screen and (max-width: 767.98px) {
  section#company-area #company .company-block {
    padding: 10px 0 30px 0;
  }
  section#company-area #company .company-block table tr th {
    width: 25%;
  }
  section#company-area #company .company-block table tr.company-business td {
    padding-left: 1em;
    text-indent: -1em;
  }
}
@media screen and (min-width: 1024px) {
  section#contact-area #contents-container {
    padding: 40px 70px;
  }
}
@media screen and (max-width: 767.98px) {
  section#contact-area #contents-container {
    padding: 30px 0 0 0;
  }
  section#contact-area #contents-container .contact-block form input.wpcf7-submit {
    width: 100%;
  }
}
html body footer {
  padding: 20px 0;
  background: #C0C0C0;
}
html body footer p {
  margin-bottom: inherit;
}

footer {
  background: #C0C0C0;
  text-align: center;
  padding: 20px 0;
  margin-top: 80px;
}
footer p {
  color: #333;
  margin-bottom: inherit;
}

html {
  scroll-behavior: smooth;
}

#wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

#main-area {
  flex: 1;
}

body {
  font-family: "Roboto Condensed", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  color: #333333;
  background-image: none;
  background-image: linear-gradient(150deg, rgb(255, 255, 255), rgb(235, 235, 235));
}

p {
  color: #333333;
}

@media screen and (min-width: 768px) {
  section#main-area {
    width: 90%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.98px) {
  section .container #contents-container {
    margin: 0;
    padding: 20px;
  }
}
@media screen and (max-width: 767.98px) {
  section .container #contents-container {
    margin: 5px 20px 20px 20px;
    padding: 0;
  }
}
section .container h2.main-ttl,
section .container h2.main-ttl-flex {
  position: relative;
  font-size: 32px;
  border-bottom: none;
  margin: 40px 0;
  padding-left: 20px;
}
section .container h2.main-ttl::before,
section .container h2.main-ttl-flex::before {
  position: absolute;
  background-color: #CE3A3A;
  content: "";
  left: 0%;
  top: 8px;
  width: 5px;
  height: 35px;
}
section .container h2.main-ttl::after,
section .container h2.main-ttl-flex::after {
  content: none;
}

@media screen and (max-width: 767.98px) {
  section .container h2.main-ttl,
  section .container h2.main-ttl-flex {
    margin: 80px 20px 20px 20px;
    font-size: 26px;
    padding-left: 15px;
  }
  section .container h2.main-ttl::before,
  section .container h2.main-ttl-flex::before {
    top: 5px;
    height: 30px;
  }
}
section .container h3.sub-ttl,
section .container h3.sub-ttl-flex {
  position: relative;
  display: flex;
  align-items: baseline;
  margin-left: 0;
  text-align: left;
  font-size: 24px;
  border-bottom: none;
  padding-left: 20px;
  color: #333333;
  /*&::before{
    position: absolute;
    background-color: v.$main-color;
    content: "";
    left: 5px;
    top: 5px;
    width: 2px;
    height: 30px;
  }*/
}
section .container h3.sub-ttl span,
section .container h3.sub-ttl-flex span {
  font-size: 16px;
  margin-left: 1rem;
}
section .container h3.sub-ttl i.fa-solid.fa-print,
section .container h3.sub-ttl-flex i.fa-solid.fa-print {
  font-size: 18px;
  margin-left: 2rem;
  cursor: pointer;
  margin-left: auto;
}

@media screen and (max-width: 1023.98px) {
  section .container h3.sub-ttl,
  section .container h3.sub-ttl-flex {
    font-size: 20px;
    padding-left: 1.5rem;
  }
  section .container h3.sub-ttl i.fa-solid.fa-print,
  section .container h3.sub-ttl-flex i.fa-solid.fa-print {
    font-size: 13px;
    margin-right: 1.5rem;
  }
  section .container h3.sub-ttl span,
  section .container h3.sub-ttl-flex span {
    font-size: 14px;
  }
  section .container h3.sub-ttl::before,
  section .container h3.sub-ttl-flex::before {
    top: 0;
    height: 25px;
  }
}
@media screen and (max-width: 767.98px) {
  section .container h3.sub-ttl,
  section .container h3.sub-ttl-flex {
    padding-left: 0;
    margin-left: 40px;
    margin-bottom: 5px;
    font-size: 18px;
  }
  section .container h3.sub-ttl::before,
  section .container h3.sub-ttl-flex::before {
    top: 0;
  }
  section .container h3.sub-ttl span,
  section .container h3.sub-ttl-flex span {
    font-size: 12px;
    margin-left: 0.5rem;
  }
  section .container h3.sub-ttl::before,
  section .container h3.sub-ttl-flex::before {
    top: 0;
  }
}
@media screen and (min-width: 1024px) {
  section#top-gallery-area .grid-wrapper {
    margin: 0 auto;
    overflow: hidden;
  }
  section#top-gallery-area .grid-wrapper .grid {
    max-width: 1366px;
    width: 100%;
    margin: 0 auto;
  }
  section#top-gallery-area .grid-wrapper .grid::after {
    content: "";
    display: block;
    clear: both;
  }
  section#top-gallery-area .grid-wrapper .grid .grid-item {
    width: calc((100% - 80px) / 5);
    margin-bottom: 20px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  }
  section#top-gallery-area .grid-wrapper .grid .grid-item img {
    width: 100%;
    height: auto;
    display: block;
  }
}
@media screen and (max-width: 1023.98px) {
  section#top-gallery-area .grid-wrapper .grid {
    width: 95%;
    margin: 0 auto;
  }
  section#top-gallery-area .grid-wrapper .grid-item {
    width: calc((100% - 40px) / 3);
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767.98px) {
  section#top-gallery-area {
    margin: 50px auto 0 auto;
  }
  section#top-gallery-area .grid-wrapper .grid {
    width: 95%;
    margin: 0 auto;
  }
  section#top-gallery-area .grid-wrapper .grid-item {
    width: calc((100% - 10px) / 2);
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 512px) {
  section#creator-area .creator-block ul li .box {
    margin: 5px;
  }
}
@media screen and (max-width: 511.98px) {
  section#creator-area .creator-block ul {
    width: 100%;
  }
  section#creator-area .creator-block ul li {
    width: 100%;
  }
}
@media screen and (max-width: 767.98px) {
  section#single-creator-area #contents-container .single-creator-block#profile-block {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  section#single-creator-area #contents-container .single-creator-block#profile-block .profile-block-child {
    margin: 20px;
  }
  section#single-creator-area #contents-container .single-creator-block#profile-block .profile-block-child.left {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: flex-end;
    gap: 5px;
  }
  section#single-creator-area #contents-container .single-creator-block#profile-block .profile-block-child.left img {
    width: 70%;
  }
}

/*# sourceMappingURL=style-override.css.map */
