@charset "UTF-8";
:root {
  --spt-font-gothic:Poppins, 游ゴシック体, YuGothic, 游ゴシック, "Yu Gothic", メイリオ, sans-serif;
  --spt-font-gothic_only: 游ゴシック体, YuGothic, 游ゴシック, "Yu Gothic", メイリオ, sans-serif;
}

::-moz-selection {
  background: #ceba9f;
  color: #fff;
}

::selection {
  background: #ceba9f;
  color: #fff;
}

html, body {
  position: relative;
  z-index: 0;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: auto;
  word-break: break-word;
  font-display: swap;
  font-size: 16px;
  font-size: 62.5%;
  font-weight: 500;
  min-height: 100vh;
  letter-spacing: 0.02em;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}

#body {
  font-family: Poppins, Noto Sans JP, 游ゴシック体, YuGothic, 游ゴシック, "Yu Gothic", メイリオ, sans-serif;
  font-display: swap;
  font-size: 1.35rem;
  line-height: 1.9;
  background: #F6F1EB;
  color: #3f3f3f;
}
@media screen and (min-width: 480px) {
  #body {
    font-size: 1.5rem;
  }
}
#body:lang(en) {
  font-weight: 400;
}
#body:lang(ja) {
  font-weight: 500;
}
#body::before {
  content: "";
  position: absolute;
  width: 70vw;
  height: 30vw;
  background: rgba(206, 186, 159, 0.5);
  z-index: -1;
  transform: skew(-70deg, 0deg);
  transform-origin: top left;
}
@media screen and (min-width: 768px) {
  #body::before {
    width: 40vw;
    transform: skew(-73deg, 0deg);
  }
}

#_header {
  position: sticky;
  top: 0;
  transition: 0.5s ease-in-out;
  z-index: 9999;
}
@media screen and (min-width: 480px) {
  #_header {
    position: relative;
  }
}
#_header.deformation {
  padding: 0.5em 2.5% 0;
}
#_header.deformation .header_wrap {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 5px;
  padding: 1rem 5% 1rem;
}
@media screen and (min-width: 480px) {
  #_header.deformation {
    padding: 0;
  }
  #_header.deformation .header_wrap {
    background: unset;
    border-radius: 0;
    padding: 2rem 5% 1rem;
  }
}

.header_wrap {
  display: grid;
  align-items: center;
  grid-auto-rows: initial;
  gap: 2rem 1rem;
  grid-template-columns: 100%;
  grid-template-columns: 30px auto 50px;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  padding: 2rem 5% 1rem;
  transition: 0.5s ease-in-out;
}
@media screen and (min-width: 480px) {
  .header_wrap {
    gap: 2rem 0;
    grid-template-columns: 100%;
  }
}
@media screen and (min-width: 768px) {
  .header_wrap {
    min-height: 150px;
    grid-template-columns: 1fr auto 1fr;
  }
}

.trigger__fullscreen {
  cursor: pointer;
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  max-width: 30px;
  max-height: 20px;
  grid-row: 1;
  grid-column: 3;
  justify-self: self-end;
}
.trigger__fullscreen > span {
  position: absolute;
  right: 0;
  display: inline-block;
  height: 1px;
  background: #3f3f3f;
  transition: 0.4s ease-in-out;
}
.trigger__fullscreen > span:nth-child(1) {
  top: 0;
  width: 100%;
}
.trigger__fullscreen > span:nth-child(2) {
  width: 85%;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
.trigger__fullscreen > span:nth-child(3) {
  bottom: 0;
  width: 70%;
}
.trigger__fullscreen.active > span {
  transform-origin: right;
}
.trigger__fullscreen.active > span:nth-child(1) {
  width: 27px;
  transform: rotate(-45deg);
}
.trigger__fullscreen.active > span:nth-child(2) {
  width: 0;
}
.trigger__fullscreen.active > span:nth-child(3) {
  width: 27px;
  transform: rotate(45deg);
}
@media screen and (min-width: 480px) {
  .trigger__fullscreen {
    display: none;
  }
}

.custom-logo-link {
  display: inline-flex;
  align-self: center;
  justify-self: center;
  transition: 0.5s ease-in-out;
  grid-column: 1;
  grid-row: 1;
}
@media screen and (min-width: 480px) {
  .custom-logo-link {
    display: inline-block;
    align-self: self-end;
    grid-column: unset;
    grid-row: auto;
  }
}
.custom-logo-link > img {
  width: 100%;
  max-width: 90px;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

#header__menu {
  align-self: self-start;
  justify-self: center;
  /*
  position: fixed;
  background: #fff;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  padding: 10rem 7.5% 2rem;
  */
  opacity: 0;
  z-index: -50;
  position: fixed;
  transition: 0.3s ease-in-out;
  top: -20%;
  visibility: hidden;
  left: 0;
  padding: 10rem 7.5% 1rem;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(to bottom, #F6F1EB 0%, #F6F1EB 50%, #F6F1EB 90%, rgba(246, 241, 235, 0.5) 100%);
}
#header__menu.active {
  visibility: visible;
  opacity: 1;
  z-index: -1;
  top: 0;
}
@media screen and (min-width: 480px) {
  #header__menu {
    opacity: 1;
    z-index: auto;
    margin: 1rem auto 0;
    position: relative;
    top: auto;
    left: auto;
    grid-column: unset;
    display: block;
    padding: 0;
    width: auto;
    visibility: visible;
    min-height: auto;
  }
}
@media screen and (min-width: 768px) {
  #header__menu {
    justify-self: self-end;
    margin: 0;
  }
}
#header__menu #menu__container {
  display: flex;
  flex-flow: column nowrap;
  gap: 3rem 0;
}
#header__menu #menu__container .menu-item > a {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0 2rem;
  width: 100%;
  font-size: 2rem;
  white-space: nowrap;
}
@media screen and (min-width: 480px) {
  #header__menu #menu__container .menu-item > a {
    font-size: 1.5rem;
  }
}
#header__menu #menu__container .menu-item > a::after {
  display: inline-block;
  font-weight: 400;
  font-size: 0.7em;
  content: attr(data-desc);
  order: 2;
  white-space: nowrap;
  font-weight: 600;
}
#header__menu #menu__container .menu-item > a::before {
  display: inline-block;
  height: 1px;
  width: 100%;
  content: "";
  background: #ceba9f;
  order: 1;
}
#header__menu #menu__container .menu-item > a.current {
  color: #ceba9f;
}
@media screen and (min-width: 480px) {
  #header__menu #menu__container {
    display: flex;
    flex-flow: row wrap;
    gap: 3rem;
  }
  #header__menu #menu__container .menu-item > a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 1.4;
  }
  #header__menu #menu__container .menu-item > a::before {
    display: block;
    font-weight: 400;
    font-size: 1rem;
    content: attr(data-desc);
    height: auto;
    background: unset;
  }
  #header__menu #menu__container .menu-item > a.current {
    color: unset;
  }
  #header__menu #menu__container .menu-item > a.current::after {
    position: absolute;
    content: "";
    height: 2px;
    width: 100%;
    left: 0;
    bottom: -2px;
    border-radius: 5px;
    background: linear-gradient(to right, #ceba9f 0%, #ceba9f 50%, #665f55 50%, #665f55 100%);
  }
}

.header__site_summary {
  align-self: self-start;
  justify-self: elf-start;
  text-align: left;
  grid-column: 2;
  line-height: 1.4;
}
@media screen and (min-width: 480px) {
  .header__site_summary {
    text-align: center;
    justify-self: center;
    grid-column: unset;
    line-height: unset;
  }
}
@media screen and (min-width: 768px) {
  .header__site_summary {
    text-align: left;
    justify-self: self-start;
  }
}
.header__site_summary .site_summary__name {
  font-size: 1.1rem;
}
@media screen and (min-width: 480px) {
  .header__site_summary .site_summary__name {
    font-size: 1.5rem;
  }
}
.header__site_summary .site_summary__copy {
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (min-width: 480px) {
  .header__site_summary .site_summary__copy {
    font-size: 1.2rem;
    font-weight: unset;
  }
}

#_footer {
  background: #3f3f3f;
}

.footer_wrap {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.cw {
  font-size: 1.4rem;
  color: #fff;
}

.main__wrap {
  position: relative;
}

.wrap__upper {
  position: relative;
}

#kw.kw_container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 1.5rem 2.5rem;
  line-height: 1;
  margin: 1rem 0 1rem 3rem;
}
#kw.kw_container .kw__design {
  font-size: clamp(10rem, 13vw, 20rem);
  filter: drop-shadow(0.06em 0.07em 0 #ceba9f);
  grid-row: 1/5;
  font-weight: 800;
  align-self: self-end;
  justify-self: self-end;
  writing-mode: vertical-rl;
}
#kw.kw_container .kw__design br {
  display: none;
}
#kw.kw_container .kw__power {
  font-size: clamp(5rem, 6.5vw, 10rem);
  font-weight: 800;
  align-self: self-end;
  justify-self: self-start;
  grid-row: 2;
}
#kw.kw_container .kw__excited {
  font-size: clamp(5.5rem, 5.83vw, 9rem);
  filter: drop-shadow(0.1em 0.1em 0 #ceba9f);
  padding: 1rem 2rem 2rem 1.5rem;
  background: #3f3f3f;
  color: #fff;
  font-family: DotGothic16, 游ゴシック体, YuGothic, 游ゴシック, "Yu Gothic", メイリオ, sans-serif;
  font-weight: 600;
  align-self: center;
  justify-self: self-start;
  grid-row: 3;
}
#kw.kw_container .kw__everyday {
  font-size: clamp(5rem, 6.5vw, 10rem);
  font-weight: 800;
  align-self: center;
  justify-self: self-start;
  grid-row: 4;
}
@media screen and (min-width: 480px) {
  #kw.kw_container {
    transform: rotate(-5deg);
    -webkit-transform: rotate(-5deg);
  }
}
@media screen and (min-width: 768px) {
  #kw.kw_container {
    transform: rotate(-10deg);
    -webkit-transform: rotate(-10deg);
    transform-origin: left center;
    margin: 2vw 0 0;
    min-width: auto;
  }
  #kw.kw_container .kw__design {
    grid-row: 1;
    writing-mode: unset;
    grid-row: auto;
  }
  #kw.kw_container .kw__design br {
    display: inline;
  }
  #kw.kw_container .kw__power {
    grid-row: auto;
  }
  #kw.kw_container .kw__excited {
    justify-self: self-end;
    font-size: clamp(4.5rem, 5.83vw, 9rem);
    padding: 1rem 2rem 2.5rem;
    grid-row: auto;
  }
  #kw.kw_container .kw__excited br {
    display: none;
  }
  #kw.kw_container .kw__everyday {
    grid-row: auto;
  }
}

#top-summary {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  gap: 3rem;
  width: 100%;
  max-width: 90%;
}
@media screen and (min-width: 768px) {
  #top-summary {
    max-width: 70%;
    align-items: center;
    text-align: center;
  }
  #top-summary .sec__more {
    margin: 0 auto;
  }
}
#top-summary .kw__en_write {
  display: inline-block;
  font-weight: 800;
  font-size: clamp(5rem, 6.5vw, 10rem);
  line-height: 1;
  max-width: 10em;
}
#top-summary .kw__content {
  width: 100%;
  gap: 0;
}
#top-summary .kw__content br {
  display: none;
}
@media screen and (min-width: 1080px) {
  #top-summary .kw__content br {
    display: inline;
  }
}
#top-summary .sec__more {
  margin: 0 auto;
}

#top-works {
  display: flex;
  flex-flow: column nowrap;
  gap: 3rem 5rem;
  width: 100%;
  max-width: 100%;
  padding: 0 10% 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  #top-works {
    gap: 5rem;
  }
}
@media screen and (min-width: 768px) {
  #top-works {
    max-width: 100%;
    padding: 0 15%;
  }
}
#top-works .works--ttl {
  display: flex;
  background: #3f3f3f;
  color: #fff;
  padding: 1.5rem 2rem 2rem;
  font-family: DotGothic16, 游ゴシック体, YuGothic, 游ゴシック, "Yu Gothic", メイリオ, sans-serif;
  border: 2px solid #fff;
  line-height: 1;
  filter: drop-shadow(-1rem 1rem 0 #ceba9f);
  margin: 0 0 1rem;
}
@media screen and (min-width: 768px) {
  #top-works .works--ttl {
    flex-flow: row nowrap;
    align-items: baseline;
    padding: 1.5rem 5rem 2rem;
  }
}
#top-works .works--ttl_large {
  font-size: clamp(4rem, 7vw, 7rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
#top-works .slider__works {
  width: calc(100% + 15vw);
  position: relative;
  overflow: hidden;
  border-left: 2px solid;
  padding: 2rem 0 1rem 2rem;
}
#top-works .works__posts {
  position: relative;
  width: 100%;
}
#top-works .works__posts .posts__items {
  position: relative;
  width: 100%;
}
#top-works .works__posts .posts__items img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 0;
     object-position: 0 0;
  filter: drop-shadow(0.5em 0.5em 0 #ceba9f);
  border: 2px solid #3f3f3f;
}
#top-works .works__posts .posts__items .item__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: row wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
  font-size: 1.2rem;
  padding: 0 0 0 2%;
}
#top-works .works__posts .posts__items .post__tags {
  background: #665f55;
  color: #fff;
  padding: 0.25em 0.75em 0.25em;
  font-family: DotGothic16, 游ゴシック体, YuGothic, 游ゴシック, "Yu Gothic", メイリオ, sans-serif;
  border: 2px solid #fff;
  font-size: 1rem;
}

.dn {
  display: none !important;
}

.dummy-block {
  position: relative;
  display: inline-block;
  width: 350px;
  height: auto;
  aspect-ratio: 3/2;
  background: lightgray;
  background: rgb(203, 203, 198);
  border-radius: 5px;
  z-index: 0;
  filter: drop-shadow(0.5rem 0.5rem 0.5rem rgba(63, 63, 63, 0.5));
  display: grid;
  grid-template-columns: 100%;
  margin: 0 2rem 0 0;
}
.dummy-block::before, .dummy-block::after {
  position: absolute;
  bottom: 4%;
  content: "";
  width: 2.5%;
  aspect-ratio: 1/1;
  background: rgba(128, 128, 128, 0.5);
  border-radius: 9999px;
}
.dummy-block::before {
  left: 3%;
}
.dummy-block::after {
  right: 3%;
}
.dummy-block > * {
  grid-column: 1;
  grid-row: 1;
  position: relative;
}
.dummy-block .seal {
  width: 85%;
  margin: 5% auto 0;
  height: auto;
  max-height: 40%;
  aspect-ratio: 3/1;
  background: #fff;
  border-radius: 1rem;
  z-index: 5;
  border: solid 2px gray;
  display: grid;
  grid-template-columns: auto 25%;
  grid-template-columns: 100%;
  background: rgb(232, 232, 48);
  background: #e50303;
  font-size: 1rem;
  color: #fff;
  background-image: url(../img/sample/20220131_88efd5.jpg);
  background-image: url(https://tetra-works.com/wp-content/uploads/2023/06/20e655_37dcd785bd304edd97af7c8d2ae5d428.jpg);
  background-size: contain;
  background-position: 90% 50%;
  background-repeat: no-repeat;
}
.dummy-block .seal > * {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  padding: 0.7em;
}
.dummy-block .seal .cw {
  color: gray;
  font-size: 0.8rem;
  align-self: self-start;
  justify-self: self-end;
}
.dummy-block .seal .tags {
  display: flex;
  flex-flow: column nowrap;
  max-height: 100%;
  gap: 0.5rem;
}
.dummy-block .seal .tags .tags--head {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 0.5em;
}
.dummy-block .seal .tags .site-logo {
  display: inline-block;
  position: relative;
  width: 1.5em;
  height: 1.5em;
  background: #3f3f3f;
}
.dummy-block .seal .tags .site-logo::before {
  position: absolute;
  content: "";
  top: 2.5%;
  left: 2.5%;
  width: 95%;
  height: 95%;
  background-image: url(../img/logo/logo_brown_1280.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  filter: brightness(500%);
}
.dummy-block .seal .tags .post-name {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  height: 100%;
  width: auto;
  max-width: 55%;
  background: #3f3f3f;
  color: #fff;
  font-family: DotGothic16, 游ゴシック体, YuGothic, 游ゴシック, "Yu Gothic", メイリオ, sans-serif;
  border: 1px solid #fff;
}
.dummy-block .seal::after {
  position: absolute;
  bottom: -35%;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 65%;
  aspect-ratio: 20/1;
  background: rgba(128, 128, 128, 0.5);
  border-radius: 9999px;
}
.dummy-block .square {
  width: 70%;
  height: 100%;
  margin: 0 auto;
  border-left: solid 2px gray;
  border-right: solid 2px gray;
  z-index: 1;
}
.dummy-block .grip {
  margin: 5% 0 0;
  width: 100%;
  height: 15%;
  border-left: solid 4px rgba(128, 128, 128, 0.5);
  border-right: solid 4px rgba(128, 128, 128, 0.5);
}

#top-about {
  display: flex;
  flex-flow: column nowrap;
  gap: 3rem 5rem;
  width: 100%;
  max-width: 100%;
  padding: 5rem 10% 5rem;
  background: #3f3f3f;
  color: #fff;
}
@media screen and (min-width: 768px) {
  #top-about {
    gap: 5rem;
  }
}
@media screen and (min-width: 768px) {
  #top-about {
    max-width: 100%;
    padding: 7.5rem 15% 5rem;
  }
}
#top-about .about--ttl {
  display: flex;
  background: #3f3f3f;
  color: #fff;
  padding: 1.5rem 2rem 2rem;
  font-family: DotGothic16, 游ゴシック体, YuGothic, 游ゴシック, "Yu Gothic", メイリオ, sans-serif;
  border: 2px solid #fff;
  line-height: 1;
  filter: drop-shadow(-1rem 1rem 0 #ceba9f);
  margin: 0 0 1rem;
}
@media screen and (min-width: 768px) {
  #top-about .about--ttl {
    flex-flow: row nowrap;
    align-items: baseline;
    padding: 1.5rem 5rem 2rem;
  }
}
#top-about .about--ttl_large {
  font-size: clamp(4rem, 7vw, 7rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
#top-about .about--content {
  display: flex;
  flex-flow: column nowrap;
  gap: 3rem 5rem;
  font-weight: 400;
}
#top-about .about--content br {
  display: none;
}
@media screen and (min-width: 768px) {
  #top-about .about--content br {
    display: inline;
  }
}
#top-about .about--contetnt__prof {
  font-size: 1.35rem;
}
@media screen and (min-width: 768px) {
  #top-about .about--contetnt__prof {
    font-size: 1.5rem;
  }
}
#top-about .about--contetnt__prof strong {
  font-weight: unset;
  font-family: unset;
  display: inline-block;
  margin: 0 0.5em 0 0;
  font-size: 1.2em;
}

.sec__more {
  position: relative;
  font-size: clamp(3rem, 7vw, 4rem);
  font-family: DotGothic16, 游ゴシック体, YuGothic, 游ゴシック, "Yu Gothic", メイリオ, sans-serif;
  letter-spacing: 0.1em;
  padding: 0 0 0 1.2em;
  border-bottom: 2px solid;
}
.sec__more::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  content: "▶";
  font-size: 0.7em;
}

.sec .sec__more {
  margin: 0 0 0 auto;
  text-align: right;
  justify-self: self-end;
}
.is_home .upps {
  padding: 3rem 0 0;
}
@media screen and (min-width: 768px) {
  .is_home .upps {
    padding: 7.5rem 0 0;
  }
}

.upps {
  position: relative;
  display: grid;
  grid-template-columns: 100%;
  align-items: center;
  justify-items: center;
  justify-content: center;
  gap: 7.5rem 0;
  padding: 3.5rem 0 7.5rem;
  /*> * {
      width: 90%;
  }*/
}
@media screen and (min-width: 480px) {
  .upps {
    gap: 7.5rem 0;
    padding: 7.5rem 0;
  }
}
@media screen and (min-width: 1080px) {
  .upps {
    gap: 10rem 0;
  }
  .upps::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60vh;
    z-index: -1;
  }
}

.upps__page_ttl {
  align-self: center;
  justify-self: center;
  text-align: center;
  line-height: 1.4;
  font-family: DotGothic16, 游ゴシック体, YuGothic, 游ゴシック, "Yu Gothic", メイリオ, sans-serif;
}
.upps__page_ttl .page_ttl__main {
  font-size: clamp(2rem, 4vw, 2rem);
  letter-spacing: 0.1em;
}
.upps__page_ttl .page_ttl__large {
  font-size: clamp(4rem, 7vw, 7rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.tax-works-cat .page_ttl__main {
  color: #ceba9f;
}
.tax-works-cat .page_ttl__main > span {
  color: #665f55;
}

.single-works {
  /*.upps {
      margin: 0 0 10vh;
  }*/
}
.single-works .upps > * {
  max-width: 90%;
}
@media screen and (min-width: 1080px) {
  .single-works .upps > * {
    max-width: 75%;
  }
}
.single-works .upps__page_ttl {
  display: flex;
  flex-flow: row nowrap;
  align-items: baseline;
  justify-content: space-between;
  width: 95%;
  padding: 0 0 0 1rem;
  color: #ceba9f;
  border-bottom: solid 2px #665f55;
}
.single-works .upps__page_ttl .page_ttl__large {
  font-size: clamp(1.7rem, 4vw, 2rem);
  align-self: self-end;
  text-align: left;
  padding: 0 0 0.5rem;
}
@media screen and (min-width: 480px) {
  .single-works .upps__page_ttl .page_ttl__large {
    align-self: center;
    padding: unset;
  }
}
.single-works .upps__page_ttl::after {
  content: "WORKS";
  font-size: clamp(1.5rem, 4vw, 1rem);
  color: #fff;
  background: #665f55;
  padding: 1rem 0.25rem 1rem;
  border-radius: 3px 3px 0 0;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 480px) {
  .single-works .upps__page_ttl::after {
    font-size: clamp(2rem, 4vw, 3rem);
    padding: 0.25rem 1.5rem 0.25rem;
    writing-mode: unset;
  }
}
.single-works .wp-element-caption {
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.5rem);
}
@media screen and (min-width: 768px) {
  .single-works .wp-element-caption {
    text-align: right;
  }
}
.single-works .wp-block-embed {
  width: 100%;
}
.single-works .wp-block-embed .wp-block-embed__wrapper {
  margin: 0 auto;
}
.single-works .wp-block-embed iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.single-works .is-layout-flex {
  gap: 2.5rem;
  flex-flow: column nowrap;
}
@media screen and (min-width: 768px) {
  .single-works .is-layout-flex {
    flex-flow: row nowrap;
  }
}
.single-works .is-layout-flex img {
  width: 100%;
  height: auto;
}

#profile.profile__container {
  position: relative;
  display: grid;
  grid-template-columns: 100%;
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
  width: 100%;
  max-width: 95%;
}
@media screen and (min-width: 768px) {
  #profile.profile__container {
    gap: 3rem 5rem;
    align-items: stretch;
    grid-template-columns: 35% auto;
    max-width: 750px;
  }
}
#profile.profile__container .profile__img {
  width: 100%;
  max-width: 120px;
  height: 100%;
  max-height: 120px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  overflow: hidden;
  border: 2px solid #fff;
}
@media screen and (min-width: 768px) {
  #profile.profile__container .profile__img {
    justify-self: self-end;
  }
}
#profile.profile__container .profile__img > img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#profile.profile__container .profile__content_container {
  display: flex;
  flex-flow: column nowrap;
  gap: 0.75em;
  background: #3f3f3f;
  color: #fff;
  padding: 1.5rem 2rem;
  border-radius: 3px;
  font-family: DotGothic16, 游ゴシック体, YuGothic, 游ゴシック, "Yu Gothic", メイリオ, sans-serif;
  border: 2px solid #fff;
  max-width: 90%;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  #profile.profile__container .profile__content_container {
    padding: 3rem 5rem;
    font-size: 1.5rem;
    width: 100%;
    max-width: 100%;
  }
}
#profile.profile__container .container__command_select {
  display: flex;
  flex-flow: column nowrap;
  gap: 0.75em;
  margin: 1rem 0 0;
}
#profile.profile__container .container__command_select > * {
  position: relative;
  padding: 0 0 0 2rem;
  cursor: pointer;
}
#profile.profile__container .container__command_select > *.is-select::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  content: "▶";
  font-size: 0.8em;
}

.upps__works_filter {
  width: 95%;
}
@media screen and (min-width: 1080px) {
  .upps__works_filter {
    margin: 2.5rem auto 0;
    width: 90%;
  }
}
.upps__works_filter .filter_navi {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}
@media screen and (min-width: 480px) {
  .upps__works_filter .filter_navi {
    gap: 2rem 4.5rem;
  }
}
.upps__works_filter .filter_navi__items .items__href {
  line-height: 1.4;
  display: inline-block;
  font-size: 1.2rem;
  padding: 0.5rem 1.5rem;
  border-radius: 3px;
}
@media screen and (min-width: 480px) {
  .upps__works_filter .filter_navi__items .items__href {
    font-size: 1.75rem;
  }
}
.upps__works_filter .filter_navi__items .items__href.current {
  background: #3f3f3f;
  color: #fff;
  border: 2px solid #fff;
  pointer-events: none;
}
.upps__works_filter .filter_navi__items .items__href .items__name,
.upps__works_filter .filter_navi__items .items__href .items__slug {
  display: block;
  text-align: center;
}
.upps__works_filter .filter_navi__items .items__href .items__name {
  font-size: 0.6em;
  font-weight: 400;
}
.upps__works_filter .filter_navi__items .items__href .items__slug {
  letter-spacing: 0.1em;
  font-family: DotGothic16, 游ゴシック体, YuGothic, 游ゴシック, "Yu Gothic", メイリオ, sans-serif;
  text-transform: uppercase;
}

.upps__item_container__works {
  display: grid;
  grid-template-columns: 100%;
  gap: 3.5rem;
  width: 90%;
  max-width: 1400px;
}
@media screen and (min-width: 480px) {
  .upps__item_container__works {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem 5%;
  }
}
@media screen and (min-width: 1080px) {
  .upps__item_container__works {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1680px) {
  .upps__item_container__works {
    grid-template-columns: repeat(4, 1fr);
    gap: 5rem 3%;
  }
}
.upps__item_container__works .works__items {
  align-self: center;
  justify-self: center;
  width: 100%;
}
.upps__item_container__works .works__items__inner {
  display: grid;
  grid-template-columns: 100%;
  gap: 1rem;
}
.upps__item_container__works .works__img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 5px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 0%;
  object-position: 50% 0%;
  background: #fff;
}
.upps__item_container__works .works__img.is_not_found {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: DotGothic16, 游ゴシック体, YuGothic, 游ゴシック, "Yu Gothic", メイリオ, sans-serif;
  font-size: 2rem;
}
.upps__item_container__works .works__ttl {
  position: relative;
  align-self: center;
  justify-self: center;
  font-size: 1.2rem;
  padding: 0 0 0.5rem;
}
.upps__item_container__works .works__ttl::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  left: 0;
  bottom: -5px;
  border-radius: 5px;
}

.upps__form {
  display: flex;
  flex-flow: column nowrap;
  gap: 0;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .upps__form {
    width: 70%;
    max-width: 900px;
  }
}

.form__tetra .button {
  display: block;
  background: #3f3f3f;
  color: #fff;
  padding: 1em 2em;
  width: 90%;
  max-width: 300px;
  text-align: center;
  margin: 5rem auto 0;
}
.form__tetra .bacK_href {
  display: block;
  margin: 1.5rem auto 0;
  text-align: center;
  justify-self: center;
  width: 300px;
}

.group__input_adds {
  display: grid;
  grid-template-columns: 100%;
  gap: 0 2rem;
  padding: 0;
  width: 90%;
  margin: 0 auto 3rem;
}
@media screen and (min-width: 1080px) {
  .group__input_adds {
    grid-template-columns: minmax(250px, 25%) auto;
    padding: 0 0 0 2rem;
    margin: 0 0 5rem;
    width: 100%;
  }
}
.group__input_adds.readonly {
  padding: 0 0 2.5rem 2rem;
  margin: 0 0 2.5rem;
}
.group__input_adds.readonly:not(.non-b) {
  border-bottom: 2px solid;
}

.input_adds__name {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-items: baseline;
  gap: 1em;
  padding: 1rem 0;
}
@media screen and (min-width: 1080px) {
  .input_adds__name {
    justify-content: flex-start;
  }
}
.input_adds__name > span {
  font-size: 0.8em;
  display: inline-block;
  padding: 0.25em 0.75em 0.2em;
}
.input_adds__name > span:not(.required_cap) {
  background: #ceba9f;
  color: #fff;
}
.input_adds__name > span.required_cap {
  background: #3f3f3f;
  color: #fff;
}

.input_adds__items:not(.readonly) {
  background: #fff;
  border: 2px solid;
}
.input_adds__items:not(.readonly) textarea {
  min-height: 10rem;
  resize: vertical; /* 縦方向のリサイズを許可 */
}
.input_adds__items input,
.input_adds__items textarea {
  padding: 1rem;
  width: 100%;
  height: 100%;
}
.input_adds__items textarea {
  resize: none;
}

::-moz-placeholder { /* Others */
  color: #ccc;
}

::placeholder { /* Others */
  color: #ccc;
}

@media screen and (min-width: 480px) {
  #header__menu #menu__container .menu-item > a {
    transition: 0.3s ease-in-out;
  }
  #header__menu #menu__container .menu-item > a:not(.current)::after {
    transition: 0.3s ease-in-out;
    position: absolute;
    content: "";
    height: 2px;
    width: 100%;
    left: 0;
    bottom: -5px;
    border-radius: 5px;
    opacity: 0;
    background: linear-gradient(to right, #ceba9f 0%, #ceba9f 50%, #665f55 50%, #665f55 100%);
  }
  #header__menu #menu__container .menu-item > a:not(.current):hover::after {
    bottom: -2px;
    opacity: 1;
  }
}
.works__href .works__img {
  transition: 0.3s ease-in-out;
}
.works__href .works__ttl::after {
  transition: 0.3s ease-in-out;
  opacity: 0;
  background: linear-gradient(to right, transparent 0%, transparent 50%, transparent 50%, transparent 100%);
}
.works__href:hover .works__img {
  filter: brightness(0.7);
}
.works__href:hover .works__ttl::after {
  bottom: 0;
  opacity: 1;
  background: linear-gradient(to right, #ceba9f 0%, #ceba9f 50%, #665f55 50%, #665f55 100%);
}

.bacK_href:hover {
  text-decoration: underline;
}

.main {
  min-height: calc(100vh - 120px);
}
@media screen and (min-width: 768px) {
  .main {
    min-height: calc(100vh - 150px);
  }
}/*# sourceMappingURL=daikoki.css.map */