@charset "UTF-8";
/*
 * foundation
 */
/***
    The new CSS reset - version 1.11.3 (last updated 25.08.2024)
    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
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

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

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

/* Firefox: solve issue where nested ordered lists continue numbering from parent (https://bugzilla.mozilla.org/show_bug.cgi?id=1881517) */
ol {
  counter-reset: revert;
}

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

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

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* 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;
  appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::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.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

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

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

:root {
  --c-text-main: #333;
  --c-text-gray: #5f5d5f;
  --c-bg-main: #fbf9fb;
  --c-bg-sub: #f5f0f4;
  --header-height: 80px;
  --content-width: 1200px;
  --content-padding-x: 5.6vw;
  --content-padding-y: 10vw;
}

@media screen and (min-width: 768px) {
  :root {
    --header-height: 120px;
  }
}
html {
  font-size: 62.5%;
}

@font-face {
  font-family: "ZenKakuGothicNew";
  font-style: normal;
  font-weight: 400;
  src: url("/font/ZenKakuGothicNew-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "ZenKakuGothicNew";
  font-style: bold;
  font-weight: 600;
  src: url("/font/ZenKakuGothicNew-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "TsunagiGothic";
  font-style: bold;
  font-weight: 600;
  src: url("/font/TsunagiGothic.woff2") format("woff2");
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--c-bg-main) url(/image/texture.png) center/100px fixed;
  padding-top: var(--header-height);
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--c-text-main);
  font-family: "ZenKakuGothicNew", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: 0.1em;
}

main {
  flex-grow: 1;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

p {
  font-size: 1.5rem;
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
  p {
    font-size: 1.6rem;
  }
}
/*
 * Layout
 */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: var(--header-height);
  padding-inline: var(--content-padding-x);
}
.l-header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--content-width);
  margin-inline: auto;
  height: 100%;
}
.l-header__logo {
  position: relative;
  z-index: 11;
  width: auto;
}
.l-header__logo img {
  width: 134px;
  height: 42px;
}
.l-header #header-toggle {
  display: none;
}
.l-header__toggle {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 11;
  width: 64px;
  height: var(--header-height);
  cursor: pointer;
}
.l-header__toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 2px;
}
.l-header__toggle span::before, .l-header__toggle span::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: all 0.3s ease-in-out;
}
.l-header__toggle span::before {
  top: -5px;
}
.l-header__toggle span::after {
  bottom: -5px;
}
.l-header__nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100vh;
  padding: var(--header-height) var(--content-padding-x) 0;
  background: var(--c-bg-sub) url(/image/texture.png) center/100px fixed;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.l-header #header-toggle:checked ~ .l-header__toggle span::before {
  top: 0;
  transform: rotate(45deg);
}
.l-header #header-toggle:checked ~ .l-header__toggle span::after {
  bottom: 0;
  transform: rotate(-45deg);
}
.l-header #header-toggle:checked ~ .l-header__nav {
  opacity: 1;
  visibility: visible;
}
.l-header__menu {
  margin-top: var(--content-padding-y);
}
.l-header__menu-item {
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  font-family: "TsunagiGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.l-header__menu-item a {
  display: block;
  padding: 24px 8px;
}

@media screen and (min-width: 768px) {
  .l-header__logo img {
    width: 204.19px;
    height: 64px;
  }
  .l-header__toggle {
    display: none;
  }
  .l-header__nav {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    background-image: none;
    background-color: transparent;
    opacity: 1;
    visibility: visible;
    transition: none;
  }
  .l-header__menu {
    display: flex;
    align-items: center;
    gap: 3.2em;
    margin-top: 0;
  }
  .l-header__menu-item a {
    padding-inline: 0;
  }
}
.l-container {
  padding-inline: var(--content-padding-x);
  margin-top: var(--content-padding-y);
}

.l-content {
  max-width: var(--content-width);
  margin-inline: auto;
}

.l-footer {
  margin-top: var(--content-padding-y);
  padding: 0 var(--content-padding-x) 24px;
}
.l-footer__content {
  max-width: var(--content-width);
  margin-inline: auto;
}
.l-footer__copyright {
  font-size: 1.2rem;
  color: var(--c-text-gray);
}

/* 
 *Object
 */
/*
 * セクションの見出し
 */
.c-heading {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 4vw;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .c-heading {
    font-size: 2.8rem;
  }
}
/*
 * テキスト
 */
.c-text-content {
  max-width: 800px;
  margin-inline: auto;
}

.c-inline-list {
  display: flex;
  flex-wrap: wrap;
}

.c-inline-list li + li::before {
  content: "/";
  padding-inline: 0.5em;
}

.c-block-list li + li {
  margin-top: 8px;
}

.c-note {
  color: var(--c-text-gray);
  font-size: 1.2rem;
}

.c-card-list > * + * {
  margin-top: 72px;
}

@media screen and (min-width: 768px) {
  .c-card-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 4vw;
  }
  .c-card-list > * + * {
    margin-top: 0;
  }
}
.c-card__thumb {
  aspect-ratio: 20/13;
  background-color: #DDDADC;
  overflow: hidden;
}
.c-card__thumb img {
  transition: transform 0.5s ease-in-out;
}
.c-card__title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 16px;
}
.c-card__type {
  font-size: 1.2rem;
  margin-top: 4px;
}
@media (any-hover: hover) {
  .c-card:hover .c-card__thumb img {
    transform: scale(1.1);
  }
}

.p-works-post {
  --space-lg: 40px;
  --space-md: 32px;
  --space-sm: 12px;
}
.p-works-post__text-area {
  margin-top: var(--space-lg);
}
.p-works-post__title {
  font-size: 2.4rem;
  font-weight: bold;
}
.p-works-post__type {
  font-size: 1.4rem;
  margin-top: var(--space-sm);
}
.p-works-post__lead {
  margin-top: var(--space-md);
}
.p-works-post__lead > * + * {
  margin-top: var(--space-sm);
}
.p-works-post__data {
  margin-top: var(--space-md);
}
.p-works-post__data-group {
  padding-block: 24px;
  border-bottom: 1px solid #e1dde1;
}
.p-works-post__data-group:first-child {
  border-top: 1px solid #e1dde1;
}
.p-works-post__data dt {
  font-weight: bold;
}
.p-works-post__data dd {
  margin-top: 12px;
}
.p-works-post__data a {
  text-decoration: underline;
}
.p-works-post__data a:hover {
  text-decoration: none;
}
.p-works-post__image-area {
  margin-top: var(--space-lg);
  padding: 20px;
  background-color: #DEDBDD;
}
.p-works-post__image-area h2 {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
.p-works-post__image-area--2col {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 16px 16px;
}
.p-works-post__image-area--3col {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 2%;
}
.p-works-post__image-area--3col figure {
  width: 32%;
}
.p-works-post__image {
  box-shadow: 0 0 16px rgba(95, 93, 95, 0.2);
}
.p-works-post__image img {
  width: auto;
}

@media screen and (min-width: 768px) {
  .p-works-post {
    --space-lg: 64px;
    --space-md: 40px;
    --space-sm: 16px;
  }
  .p-works-post__title {
    font-size: 4rem;
  }
  .p-works-post__data-group {
    display: flex;
    padding-block: 32px;
  }
  .p-works-post__data dt {
    width: 144px;
  }
  .p-works-post__data dd {
    width: calc(100% - 144px);
    margin-top: 0;
  }
  .p-works-post__image-area {
    padding: 40px;
  }
  .p-works-post__image-area h2 {
    font-size: 2rem;
  }
  .p-works-post__image-area--2col {
    flex-direction: row;
    gap: 24px 2%;
  }
  .p-works-post__image-area--2col figure {
    width: 49%;
  }
  .p-works-post__image-area--3col {
    gap: 24px 2%;
  }
  .p-works-post__image {
    margin-top: 0;
    box-shadow: 0 0 24px rgba(95, 93, 95, 0.2);
  }
}
.p-about__content {
  position: relative;
  padding: 8vw;
}
.p-about__content::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--c-bg-main);
  mix-blend-mode: multiply;
}
.p-about__name {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.p-about__text {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-top: 6vw;
}

@media screen and (min-width: 768px) {
  .p-about__content {
    padding: 6vw;
  }
  .p-about__name {
    font-size: 2rem;
  }
  .p-about__text {
    font-size: 1.6rem;
    margin-top: 2vw;
  }
}

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