/*!********************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./src/h1310/assets/css/style.scss ***!
  \********************************************************************************************************************************************************************************************************************************************************/
/***
    The new CSS reset - version 1.5.1 (last updated 1.3.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
     -moz-appearance: revert;
          appearance: revert;
  appearance: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly. */
:where([contenteditable]) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
  -webkit-user-drag: element;
}

/*
 * break point
 */
/*
 * CSS
 */
:root {
  --global-padding-laptop: 3.2rem;
  --global-padding-mobile: 2rem;
  --color-01: #000;
  --color-02: #fff;
  --color-03: #666;
  --breakpoint-mobile-max: 559px
  --breakpoint-tablet-min: 560px
  --breakpoint-tablet-max: 959px;
  --breakpoint-laptop-min: 960px;
}

/*
 * border-width
 */
/*
 * space
 */
* {
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
  line-height: 1;
}

body {
  overscroll-behavior: none;
  font-family: "Helvetica Neue", Arial, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-01);
  letter-spacing: 0.02em;
  background-color: var(--color-01);
}

a {
  color: var(--color-01);
  text-decoration: none;
  cursor: pointer;
}

.container {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: 1fr;
  align-items: start;
  align-items: stretch;
  min-height: 100vh;
  background-color: var(--color-02);
}
@media (max-width: 559px) {
  .about .container, .single .container {
    grid-template-rows: auto auto 1fr;
  }
}
@media (min-width: 560px) {
  .about .container, .single .container {
    grid-template-rows: auto auto 1fr;
  }
}
@media (min-width: 960px) {
  .container {
    grid-template-columns: 360px 1fr;
  }
}

.main {
  min-height: 100%;
  grid-row: 2/3;
  grid-column: auto;
}
@media (min-width: 960px) {
  .main {
    grid-row: auto;
    grid-column: 2/3;
  }
}

.home .content, .archive .content {
  display: grid;
  grid-template-columns: 1fr;
}
.home .content.border-bottom-none, .archive .content.border-bottom-none {
  border-bottom: none;
}
@media (min-width: 560px) {
  .home .content, .archive .content {
    grid-template-columns: 1fr 1fr;
    background-image: url("../img/common/bg.svg");
    background-repeat: repeat-y;
    background-position: center top;
    background-color: var(--color-02);
    gap: 0 0.1rem;
    border-bottom: solid 0.1rem var(--color-01);
  }
}

.side {
  height: 100vh;
  border-right: solid 0.1rem var(--color-01);
  display: grid;
  grid-template-rows: auto 1fr;
  position: relative;
  width: 100vw;
}
@media (min-width: 960px) {
  .side {
    position: fixed;
    top: 0;
    left: 0;
    width: 360px;
    overflow-y: auto;
  }
}

.header-global {
  position: sticky;
  top: 0;
  left: 0;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-row: 1/2;
  align-self: start;
  width: 100vw;
  height: auto;
  padding: 2rem;
  background-color: var(--color-02);
  border-right: none;
  gap: 0 2rem;
  border-bottom: solid 0.1rem var(--color-01);
}
@media (min-width: 960px) {
  .header-global {
    position: relative;
    grid-template-rows: auto auto;
    grid-template-columns: auto;
    grid-column: 1/2;
    gap: 4rem 0;
    width: 100%;
    padding-top: 4rem;
    padding-right: 4rem;
    padding-bottom: 0;
    padding-left: 4rem;
    border-bottom: none;
  }
}

.header-global-logo a {
  display: block;
  width: auto;
  height: 2.4rem;
}
@media (min-width: 960px) {
  .header-global-logo a {
    width: 100%;
    height: auto;
  }
}
.header-global-logo a img {
  display: block;
  width: auto;
  height: 100%;
}
@media (min-width: 960px) {
  .header-global-logo a img {
    height: auto;
  }
}

.header-global-menu ul {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 0 1.6rem;
  align-content: center;
  justify-content: end;
  height: 100%;
}
@media (min-width: 960px) {
  .header-global-menu ul {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 0.4rem;
  }
}
.header-global-menu ul li {
  display: block;
  text-align: right;
}
.header-global-menu ul li.is-laptop {
  display: none;
}
@media (min-width: 960px) {
  .header-global-menu ul li.is-laptop {
    display: block;
  }
}
@media (min-width: 960px) {
  .header-global-menu ul li.is-mobile, .header-global-menu ul li.is-tablet {
    display: none;
  }
}
@media (min-width: 960px) {
  .header-global-menu ul li:first-child {
    transform: translateX(-0.4rem);
  }
  .header-global-menu ul li:last-child {
    transform: translateX(0.4rem);
  }
}
@media (min-width: 960px) {
  .header-global-menu ul li a {
    display: block;
    padding: 0.9rem;
    color: var(--color-01);
    text-align: center;
    background-color: var(--color-02);
    border-radius: 1.7rem;
    border: solid 0.1rem var(--color-01);
  }
  .header-global-menu ul li a:hover, .header-global-menu ul li a:is(.current) {
    color: var(--color-02);
    background-color: var(--color-01);
  }
}

.side-content {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-row: 3/4;
  gap: 2rem 0;
  align-items: stretch;
  padding: 2rem;
  border-top: solid 0.1rem var(--color-01);
}
@media (min-width: 560px) {
  .side-content {
    padding: 2rem;
    gap: 2rem 0;
  }
}
@media (min-width: 960px) {
  .side-content {
    border-top: none;
    padding: 4rem;
    gap: 4rem 0;
    grid-row: 2/3;
  }
}
@media (max-width: 559px) {
  .home .side-content, .archive .side-content {
    display: none;
  }
}
@media (min-width: 560px) {
  .home .side-content, .archive .side-content {
    display: none;
  }
}
@media (min-width: 960px) {
  .home .side-content, .archive .side-content {
    display: grid;
  }
}

.nav-category {
  display: grid;
  width: 100%;
}
.single .nav-category {
  position: static;
  display: block;
  grid-row: 3/4;
  grid-column: 1/3;
  height: auto;
  border-right: none;
}
.nav-category .nav-category-ul {
  transform: translateY(-0.5rem);
}
.nav-category .nav-category-ul .nav-category-ul-list a {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
}
.nav-category .nav-category-ul .nav-category-ul-list a span {
  display: block;
  flex-grow: 1;
}
.nav-category .nav-category-ul .nav-category-ul-list a::after {
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  content: "";
  background-color: var(--color-02);
  border: 1px solid var(--color-01);
  border-radius: 50%;
}
.nav-category .nav-category-ul .nav-category-ul-list a:hover::after {
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  content: "";
  background-color: var(--color-01);
  border: 1px solid var(--color-01);
  border-radius: 50%;
}
.nav-category .nav-category-ul .nav-category-ul-list a:is(.current)::after {
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  content: "";
  background-color: var(--color-01);
  border: 1px solid var(--color-01);
  border-radius: 50%;
}

.copyright {
  align-self: end;
  text-align: right;
  display: none;
}
@media (min-width: 960px) {
  .copyright {
    text-align: left;
    display: block;
  }
}

.menu {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: none;
  width: 100vw;
  height: calc(100% - 65px);
  padding: 2rem;
  visibility: hidden;
  background-color: var(--color-02);
}
.menu.is-open {
  display: block;
  visibility: visible;
}
.menu .menu-close {
  margin-top: 1.2rem;
  color: var(--color-03);
}

.post {
  background-color: var(--color-02);
  border-bottom: solid 0.1rem var(--color-01);
}
@media (min-width: 560px) {
  .post.last {
    border-bottom: none;
  }
}
.post a {
  display: block;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.post a .article-image img,
.post a .article-image svg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom: solid 0.1rem var(--color-01);
}
.post a .article-image img.thumbnail-video-title,
.post a .article-image svg.thumbnail-video-title {
  aspect-ratio: 16/9;
}
@media (min-width: 960px) {
  .post a:hover .article-text h2::after {
    display: block;
    flex-shrink: 0;
    width: 0.8rem;
    height: 0.8rem;
    content: "";
    background: var(--color-01);
    border: 1px solid var(--color-01);
    border-radius: 50%;
  }
}

.article-text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 1.4rem;
  font-feature-settings: "palt";
}
@media (min-width: 960px) {
  .article-text {
    padding: 1.6rem;
  }
}
.article-text h2 {
  display: flex;
  flex-grow: 2;
  align-self: stretch;
  width: 100%;
  font-size: 1.4rem;
  font-weight: 500;
}
@media (min-width: 560px) {
  .article-text h2 {
    font-size: 1.6rem;
  }
}
@media (min-width: 960px) {
  .article-text h2 {
    font-size: 1.8rem;
    font-weight: 400;
  }
}
.article-text h2 span {
  display: block;
  flex-grow: 1;
  flex-shrink: 1;
  line-height: 1.25;
}
@media (min-width: 960px) {
  .article-text h2 span {
    margin-right: 1.2rem;
  }
}
@media (min-width: 960px) {
  .article-text h2::after {
    display: block;
    flex-shrink: 0;
    width: 0.8rem;
    height: 0.8rem;
    margin-top: 0.8rem;
    content: "";
    background: var(--color-02);
    border: 1px solid var(--color-01);
    border-radius: 50%;
  }
}
.article-text .article-text-detail {
  display: flex;
  width: 100%;
  margin-top: 1rem;
  font-size: 1.3rem;
}
.article-text .article-text-detail .article-text-detail-client {
  flex-grow: 1;
  margin-right: 1.2rem;
  line-height: 1;
}

.no-image {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  background-color: var(--color-02);
  border-bottom: solid 0.1rem var(--color-01);
}
.no-image::after {
  display: block;
  width: 120%;
  content: "";
  border-top: 1px solid var(--color-01);
  transform: rotate(33.5deg);
  transform-origin: 0% 0%;
}

.main figure {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 1.6rem;
}
@media (min-width: 960px) {
  .main figure {
    margin-top: 2.4rem;
  }
}
.main figure:first-child {
  margin-top: 0;
}
.main figure img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.main .category-logo-mark img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 3/2;
}
@media (min-width: 960px) {
  .main .category-logo-mark img {
    height: 100vh;
  }
}

.project-detail-text .project-detail-client {
  line-height: 1.4;
}
.project-detail-text .project-detail-title {
  margin-top: 0.6rem;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
}
.project-detail-text .project-detail-category {
  margin-top: 2rem;
  line-height: 1.4;
}
.project-detail-text .project-detail-category a {
  color: var(--color-03);
}
.project-detail-text .project-detail-description {
  margin-top: 2rem;
  line-height: 1.75;
}
.project-detail-text .project-detail-year {
  margin-top: 2rem;
}

.single-about .side-content,
.about .side-content {
  grid-template-rows: 1fr;
}
.single-about .side-content .content,
.about .side-content .content {
  grid-template-rows: auto auto auto auto 1fr;
  margin-top: 4px;
  display: grid;
  gap: 2rem 0;
}
@media (min-width: 560px) {
  .single-about .side-content .content,
.about .side-content .content {
    gap: 2rem 0;
  }
}
@media (min-width: 960px) {
  .single-about .side-content .content,
.about .side-content .content {
    margin-top: -2px;
    gap: 4rem 0;
  }
}
.single-about .side-content .content p,
.about .side-content .content p {
  line-height: 1.75;
}
.single-about .side-content .content p.ja,
.about .side-content .content p.ja {
  font-feature-settings: "palt";
  text-align: justify;
  letter-spacing: 0.06em;
}
@media (min-width: 960px) {
  .single-about .side-content .content p::before,
.about .side-content .content p::before {
    display: block;
    width: 0;
    height: 0;
    margin-top: -0.375em;
    content: "";
  }
  .single-about .side-content .content p::after,
.about .side-content .content p::after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: -0.375em;
    content: "";
  }
}
.single-about .side-content .content .about-contact-mail,
.about .side-content .content .about-contact-mail {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0 0.4rem;
  justify-content: start;
  align-content: center;
}
.single-about .side-content .content .about-contact-mail span,
.about .side-content .content .about-contact-mail span {
  display: block;
}
.single-about .side-content .content .about-contact-mail a,
.about .side-content .content .about-contact-mail a {
  display: block;
  width: auto;
  height: 0.95rem;
}
.single-about .side-content .content .about-contact-mail a svg,
.about .side-content .content .about-contact-mail a svg {
  width: auto;
  height: 100%;
}
.single-about .side-content .content .about-sns,
.about .side-content .content .about-sns {
  padding-top: 4px;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: auto auto 1fr;
  justify-content: start;
  gap: 0 0.8rem;
  align-items: center;
}
.single-about .side-content .content .about-sns .about-sns-logo a,
.about .side-content .content .about-sns .about-sns-logo a {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
}
.single-about .side-content .content .about-sns .about-sns-logo a svg,
.about .side-content .content .about-sns .about-sns-logo a svg {
  width: 100%;
  height: auto;
}
.single-about .side-content .content .about-mail,
.about .side-content .content .about-mail {
  height: 1.4rem;
  width: auto;
}
.single-about .side-content .content .about-mail a,
.about .side-content .content .about-mail a {
  display: block;
  height: 1rem;
  width: auto;
}
.single-about .side-content .content .about-mail a svg,
.about .side-content .content .about-mail a svg {
  height: 1rem;
  width: auto;
}
.single-about .main img,
.about .main img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
}
@media (min-width: 960px) {
  .single-about .main img,
.about .main img {
    height: 100vh;
  }
}

.error404 .content {
  padding: 1.6rem;
}
