@charset "UTF-8";
/* ========================================
リセットCSS
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
div {
  overflow-wrap: break-word;
}

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

iframe {
  max-width: 100%;
  vertical-align: middle;
}

span {
  font: inherit;
  letter-spacing: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address {
  font: inherit;
}

input,
button,
textarea,
select {
  color: inherit;
  font: inherit;
  vertical-align: middle;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  outline: none;
}

/* ========================================
関数
======================================== */
/* ========================================
mixin
======================================== */
/* ========================================
変数
======================================== */
:root {
  --color-black: #000;
  --font-base: "A+mfCv-AXISラウンド 100 コンデンス R" , sans-serif;
  --font-medium: "A+mfCv-AXISラウンド 100 コンデンス M" , sans-serif;
  --font-gt: "GT Pressura Mono", "A+mfCv-AXISラウンド 100 コンデンス R", sans-serif;
  --side-width: calc(200 / 1600 * 100vw);
  --z-index-head: 12;
  --z-index-gNavBtn: 11;
  --z-index-gNav: 10;
  --z-index-logo: 9;
  --z-index-overlay: 8;
  --footer-border-height: 8px;
}

@media screen and (max-width: 767px) {
  :root {
    --z-index-gNav: 7;
  }
}
@media screen and (max-width: 1024px) {
  :root {
    --side-width: calc(80 / 1024 * 100vw);
  }
}
/* ========================================
ベースCSS
======================================== */
@font-face {
  font-family: "GT Pressura Mono";
  src: url("./font/GT-Pressura-Mono-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "GT Pressura Mono";
  src: url("./font/GT-Pressura-Mono-Medium.woff2") format("woff2");
  font-weight: 500; /* Medium */
  font-style: normal;
}
body {
  min-height: 100vh;
  background-color: #fff;
  color: var(--color-black);
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8461538462;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  cursor: none;
}
body.is-hidden {
  overflow: hidden;
}

::-moz-selection {
  background-color: var(--color-black);
  color: white;
}

::selection {
  background-color: var(--color-black);
  color: white;
}

button {
  cursor: none;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: none;
}

@media (hover: hover) {
  .js-cursor {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    position: fixed;
    top: -6px;
    left: -6px;
    z-index: 9999;
    pointer-events: none;
    mix-blend-mode: difference;
    transition: width 0.3s ease, height 0.3s ease;
  }
  .js-cursor.is-link {
    width: 8px;
    height: 8px;
  }
  .js-cursor.is-prev {
    background-color: transparent;
  }
  .js-cursor.is-prev::before {
    content: "PREV";
    color: #fff;
    font-family: var(--font-gt);
    font-size: 20px;
    white-space: nowrap;
  }
  .js-cursor.is-next {
    background-color: transparent;
  }
  .js-cursor.is-next::before {
    content: "NEXT";
    color: #fff;
    font-family: var(--font-gt);
    font-size: 20px;
    white-space: nowrap;
  }
  .js-cursor.is-arrowL {
    background-color: transparent;
    mix-blend-mode: normal;
  }
  .js-cursor.is-arrowL::before {
    content: "";
    display: block;
    width: 27px;
    height: 21px;
    background: url(../image/common/slide_arrow_left_pc.svg) center/auto no-repeat;
  }
  .js-cursor.is-arrowR {
    background-color: transparent;
    mix-blend-mode: normal;
  }
  .js-cursor.is-arrowR::before {
    content: "";
    display: block;
    width: 27px;
    height: 21px;
    background: url(../image/common/slide_arrow_right_pc.svg) center/auto no-repeat;
  }
}
/* CLEAR-FIX */
@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

/* ========================================
モジュール・パーツ m-
======================================== */
.m-inner {
  width: 96%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .m-inner {
    width: 90%;
  }
}

.m-mainTtl {
  margin-left: min(calc(346 / 1600 * 100vw), 410px);
  margin-top: 76px;
  font-family: var(--font-gt);
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .m-mainTtl {
    display: none;
  }
}

.m-secTtl01 {
  font-family: var(--font-gt);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
}

.m-minCont {
  width: 70.9322033898%;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .m-minCont {
    width: 82.7485380117%;
  }
}

@media screen and (max-width: 1024px) {
  .m-minCont-lg {
    width: 82.7485380117%;
    margin-left: auto;
  }
}

@media screen and (max-width: 767px) {
  .m-minCont-sp {
    width: 82.7485380117%;
    margin-left: auto;
  }
}

.m-btn-border {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  max-width: 100%;
  height: 42px;
  border: 1px solid var(--color-black);
  border-radius: 21px;
  font-family: var(--font-gt);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  z-index: 1;
  transition: background-color 0.3s;
}
.m-btn-border::before {
  content: "";
  display: block;
  width: 14px;
  height: 11px;
  background: url(../image/common/link_arrow_right.svg) center/auto no-repeat;
  position: absolute;
  top: 14px;
  right: 10px;
  transition: transform 0.3s;
}
@media (hover: hover) {
  .m-btn-border:hover {
    background-color: #FFF000;
  }
  .m-btn-border:hover::before {
    transform: translateX(4px);
  }
}

.m-btn-border-reverse {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 194px;
  max-width: 100%;
  padding-left: 9px;
  height: 42px;
  border: 1px solid var(--color-black);
  border-radius: 21px;
  font-family: var(--font-gt);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  z-index: 1;
  transition: background-color 0.3s;
}
.m-btn-border-reverse::before {
  content: "";
  display: block;
  width: 14px;
  height: 11px;
  background: url(../image/common/link_arrow_left.svg) center/auto no-repeat;
  position: absolute;
  top: 14px;
  left: 10px;
  transition: transform 0.3s;
}
@media (hover: hover) {
  .m-btn-border-reverse:hover {
    background-color: #FFF000;
  }
  .m-btn-border-reverse:hover::before {
    transform: translateX(-4px);
  }
}

/* ========================================
補助的に使用 u-
======================================== */
@media screen and (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}

.u-ib {
  display: inline-block !important;
}

.u-text-center {
  text-align: center !important;
}
.u-text-left {
  text-align: left !important;
}
.u-text-right {
  text-align: right !important;
}

.u-font-base {
  font-family: var(--font-base) !important;
}
.u-font-gt {
  font-family: var(--font-gt) !important;
}

.u-weight-100 {
  font-weight: 100 !important;
}

.u-weight-200 {
  font-weight: 200 !important;
}

.u-weight-300 {
  font-weight: 300 !important;
}

.u-weight-400 {
  font-weight: 400 !important;
}

.u-weight-500 {
  font-weight: 500 !important;
}

.u-weight-600 {
  font-weight: 600 !important;
}

.u-weight-700 {
  font-weight: 700 !important;
}

.u-weight-800 {
  font-weight: 800 !important;
}

.u-weight-900 {
  font-weight: 900 !important;
}

.u-mt-5 {
  margin-top: 5px !important;
}

.u-mt-10 {
  margin-top: 10px !important;
}

.u-mt-15 {
  margin-top: 15px !important;
}

.u-mt-20 {
  margin-top: 20px !important;
}

.u-mt-25 {
  margin-top: 25px !important;
}

.u-mt-30 {
  margin-top: 30px !important;
}

.u-mt-35 {
  margin-top: 35px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-mt-45 {
  margin-top: 45px !important;
}

.u-mt-50 {
  margin-top: 50px !important;
}

.u-mt-55 {
  margin-top: 55px !important;
}

.u-mt-60 {
  margin-top: 60px !important;
}

.u-mt-65 {
  margin-top: 65px !important;
}

.u-mt-70 {
  margin-top: 70px !important;
}

.u-mt-75 {
  margin-top: 75px !important;
}

.u-mt-80 {
  margin-top: 80px !important;
}

.u-mt-85 {
  margin-top: 85px !important;
}

.u-mt-90 {
  margin-top: 90px !important;
}

.u-mt-95 {
  margin-top: 95px !important;
}

.u-mt-100 {
  margin-top: 100px !important;
}

.u-mb-5 {
  margin-bottom: 5px !important;
}

.u-mb-10 {
  margin-bottom: 10px !important;
}

.u-mb-15 {
  margin-bottom: 15px !important;
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

.u-mb-25 {
  margin-bottom: 25px !important;
}

.u-mb-30 {
  margin-bottom: 30px !important;
}

.u-mb-35 {
  margin-bottom: 35px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-mb-45 {
  margin-bottom: 45px !important;
}

.u-mb-50 {
  margin-bottom: 50px !important;
}

.u-mb-55 {
  margin-bottom: 55px !important;
}

.u-mb-60 {
  margin-bottom: 60px !important;
}

.u-mb-65 {
  margin-bottom: 65px !important;
}

.u-mb-70 {
  margin-bottom: 70px !important;
}

.u-mb-75 {
  margin-bottom: 75px !important;
}

.u-mb-80 {
  margin-bottom: 80px !important;
}

.u-mb-85 {
  margin-bottom: 85px !important;
}

.u-mb-90 {
  margin-bottom: 90px !important;
}

.u-mb-95 {
  margin-bottom: 95px !important;
}

.u-mb-100 {
  margin-bottom: 100px !important;
}

/* ========================================
header
======================================== */
.header_head {
  display: flex;
  width: 100%;
  padding: 11px 0 0 var(--side-width);
  font-family: var(--font-gt);
  font-size: 10px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-head);
}
@media screen and (max-width: 767px) {
  .header_head {
    padding: 10px 25px;
  }
}
.header_head ._ttl {
  width: 171px;
}
@media screen and (max-width: 767px) {
  .header_head ._ttl {
    width: 118px;
  }
}
.header_head ._day {
  width: 114px;
}
@media screen and (max-width: 767px) {
  .header_head ._day {
    width: 59px;
  }
}
.header_logo {
  position: fixed;
  left: var(--side-width);
  z-index: var(--z-index-logo);
}
@media screen and (min-width: 768px) {
  .header_logo {
    top: auto !important;
    bottom: 109px;
  }
}
@media screen and (max-width: 767px) {
  .header_logo {
    width: 62px;
    left: 25px;
    top: calc(100svh - 62px);
    transform: translateY(-100%);
  }
  .is-logoShow .header_logo {
    visibility: visible;
  }
}
@media screen and (max-width: 767px) and (hover: hover) {
  .header_logo {
    top: calc(100% - 62px) !important;
  }
}

.gNavToggle {
  display: none;
}
@media screen and (max-width: 767px) {
  .gNavToggle {
    display: block;
    width: 18px;
    height: 18px;
    background: #000;
    border: 1px solid #000;
    border-radius: 50%;
    position: fixed;
    top: 117px;
    left: calc(25 / 375 * 100vw);
    z-index: var(--z-index-gNavBtn);
  }
  .is-menuActive .gNavToggle {
    background-color: #fff;
  }
}

.gNav {
  position: fixed;
  top: 184px;
  left: var(--side-width);
  z-index: var(--z-index-gNav);
}
@media screen and (max-width: 767px) {
  .gNav {
    display: none;
    width: 230px;
    padding: 48px 5px 54px;
    background: #fff;
    border: 1px solid #000;
    top: 109px;
    left: calc(19 / 375 * 100vw);
  }
  .is-menuActive .gNav {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .gNav li + li {
    margin-top: 7px;
  }
}
.gNav a {
  display: inline-block;
  font-family: var(--font-gt);
  font-size: 11px;
}
@media screen and (max-width: 767px) {
  .gNav a {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .gNav_spContact {
    margin-top: 74px;
    padding-left: 4px;
    font-family: var(--font-gt);
  }
  .gNav_spContact dt {
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
  }
  .gNav_spContact dd {
    margin-top: 8px;
    font-size: 16px;
    letter-spacing: -0.04em;
  }
  .gNav_spContact dd a {
    display: block;
    line-height: 1.5;
  }
}

/* ========================================
footer
======================================== */
.footer {
  position: sticky;
  top: 100vh;
}
.footer::after {
  content: "";
  display: block;
  width: 100%;
  height: var(--footer-border-height);
  background: url(../image/common/foot_border.svg) left center/auto repeat-x;
}
.footer_contBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0 40px;
  margin-bottom: 5px;
  padding: 0 115px;
  font-size: 10px;
}
@media screen and (max-width: 767px) {
  .footer_contBox {
    padding: 0 25px;
    font-size: 11px;
  }
}
.footer_contBox ._en {
  font-family: var(--font-gt);
  font-size: 11px;
}
@media screen and (max-width: 767px) {
  .footer_address {
    display: none;
  }
}

/* ========================================
メニュー
======================================== */
/* ========================================
共通で使うレイアウト l-
======================================== */
.l-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-overlay);
  animation: overlay-open 1s 0.2s cubic-bezier(0.87, 0.01, 0.1, 1) 1 forwards;
  transform-origin: right center;
}
@keyframes overlay-open {
  0% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(0, 1);
  }
}
.l-overlay.is-color {
  background-color: #000;
}
.is-overlay .l-overlay {
  background-color: #000;
  animation: overlay-close 1s cubic-bezier(0.87, 0.01, 0.1, 1) 1 forwards;
  transform-origin: left center;
}
@keyframes overlay-close {
  0% {
    transform: scale(0, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}
.l-overlay.-home {
  background-color: var(--color-black);
}
.l-overlay.-about {
  background-color: var(--color-black);
}
.l-overlay.-project {
  background-color: var(--color-black);
}
.l-overlay.-article {
  background-color: var(--color-black);
}
.l-overlay.-studio {
  background-color: var(--color-black);
}

.gNav a,
.header_head {
  color: #fff;
  animation: gnav-color 0s 0.6s ease 1 forwards;
}
@keyframes gnav-color {
  0% {
    color: #fff;
  }
  100% {
    color: var(--color-black);
  }
}
.is-overlay .gNav a,
.is-overlay .header_head {
  color: var(--color-black);
  animation: gnav-color-overlay 0s 0.4s ease 1 forwards;
}
@keyframes gnav-color-overlay {
  0% {
    color: var(--color-black);
  }
  100% {
    color: #fff;
  }
}

@media screen and (max-width: 767px) {
  .gNav a {
    color: var(--color-black) !important;
  }
}

.header_logo a {
  display: block;
  position: relative;
}
.header_logo a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../image/common/logo-white.svg) center/contain no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  animation: headerLogo-imgWhite 0s 0.6s ease 1 forwards;
}
@keyframes headerLogo-imgWhite {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.is-overlay .header_logo a::before {
  opacity: 0;
  animation: headerLogo-imgWhite-overlay 0s 0.4s ease 1 forwards;
}
@keyframes headerLogo-imgWhite-overlay {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header_logo img {
  opacity: 0;
  animation: headerLogo-img 0s 0.6s ease 1 forwards;
}
@keyframes headerLogo-img {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.is-overlay .header_logo img {
  opacity: 1;
  animation: headerLogo-img-overlay 0s 0.4s ease 1 forwards;
}
@keyframes headerLogo-img-overlay {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

body.is-overlayNone .gNav a,
body.is-overlayNone .header_head {
  color: var(--color-black);
}
body.is-overlayNone .header_logo img {
  opacity: 1;
}
body.is-overlayNone .header_logo a::before {
  opacity: 0;
}

.l-main {
  width: 76.875%;
  max-width: 1460px;
  margin-left: auto;
  padding-right: min(calc(50 / 1600 * 100vw), 60px);
}
@media screen and (min-width: 1900px) {
  .l-main {
    margin-right: auto;
    transform: translateX(219.6875px);
  }
}
@media screen and (max-width: 767px) {
  .l-main {
    width: calc(342 / 375 * 100vw);
    margin-right: calc(8 / 375 * 100vw);
    padding-right: 0;
  }
}

.l-col2Container {
  display: flex;
  align-items: flex-start;
  margin-top: 87px;
}
@media screen and (max-width: 767px) {
  .l-col2Container {
    margin-top: 120px;
  }
}
.l-col2Container_aside {
  width: 172px;
  position: sticky;
  top: 189px;
}
@media screen and (max-width: 767px) {
  .l-col2Container_aside {
    width: 106px;
  }
}
.l-col2Container_main {
  flex: 1;
}

.l-categoryList {
  width: 114px;
  max-width: 100%;
  border-top: 1px solid var(--color-black);
  font-family: var(--font-gt);
  font-weight: 500;
  font-size: 11px;
  line-height: 1.2;
}
.l-categoryList + .l-categoryList {
  margin-top: 34px;
}
@media screen and (max-width: 767px) {
  .l-categoryList + .l-categoryList {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-categoryList dt {
    position: relative;
    padding-right: 12px;
  }
  .l-categoryList dt::before, .l-categoryList dt::after {
    content: "";
    display: block;
    width: 8px;
    height: 1px;
    background: #000;
    position: absolute;
    top: 6px;
    right: 2px;
  }
  .l-categoryList dt::after {
    transform: rotate(-90deg);
    transition: 0.3s;
  }
  .l-categoryList dt.is-active::after {
    transform: rotate(0);
  }
}
.l-categoryList dd {
  margin-top: 11px;
}
@media screen and (min-width: 768px) {
  .l-categoryList dd {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .l-categoryList dd {
    display: none;
  }
}
.l-categoryList dd a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  word-break: break-all;
}
.l-categoryList dd a + a {
  margin-top: 11px;
}
.l-categoryList_tag.-hash a::before {
  content: "#";
}

@media screen and (max-width: 767px) {
  .l-commonSlide .splide__arrows {
    display: flex;
    align-items: center;
    gap: 0 10px;
  }
}
@media screen and (min-width: 768px) {
  .l-commonSlide .splide__arrow {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 2;
  }
  .l-commonSlide .splide__arrow img {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .l-commonSlide .splide__arrow {
    margin-top: 2px;
  }
}
.l-commonSlide .splide__arrow--prev {
  left: 0;
}
.l-commonSlide .splide__arrow--next {
  right: 0;
}

/* ========================================
トップページ home
======================================== */
html:has(.p-home),
body:has(.p-home) {
  width: 100%;
  height: 100%;
  min-height: 0;
  position: relative;
}

.p-homeMv {
  width: 100%;
  height: calc(100% - var(--footer-border-height));
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.p-homeMv_cont {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -100;
}
.p-homeMv_cont img {
  opacity: 0;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-homeMv_cont img {
    width: auto;
    max-width: none;
    height: 100%;
    top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-homeMv_cont img {
    width: 100%;
    height: auto;
    left: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-homeMv_cont.-cont02 ._img05,
  .p-homeMv_cont.-cont02 ._img06 {
    height: 77.664399093%;
    top: 11.1678004535% !important;
  }
}
@media screen and (max-width: 767px) {
  .p-homeMv_cont.-cont02 ._img05,
  .p-homeMv_cont.-cont02 ._img06 {
    width: 74.6666666667%;
    left: 12.6666666667% !important;
  }
}
@media screen and (min-width: 768px) {
  .p-homeMv_cont.-cont03 ._img05,
  .p-homeMv_cont.-cont03 ._img06 {
    height: 77.664399093%;
    top: 11.1678004535% !important;
  }
}
@media screen and (max-width: 767px) {
  .p-homeMv_cont.-cont03 ._img05,
  .p-homeMv_cont.-cont03 ._img06 {
    width: 74.6666666667%;
    left: auto !important;
    right: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-homeMv_cont.-cont04 ._img03,
  .p-homeMv_cont.-cont04 ._img04,
  .p-homeMv_cont.-cont04 ._img05 {
    height: 73.9229024943%;
    top: 13.0385487528% !important;
  }
}
@media screen and (max-width: 767px) {
  .p-homeMv_cont.-cont04 ._img03,
  .p-homeMv_cont.-cont04 ._img04,
  .p-homeMv_cont.-cont04 ._img05 {
    width: 74.6666666667%;
    left: 12.6666666667% !important;
  }
}
@media screen and (min-width: 768px) {
  .p-homeMv_cont.-cont05 ._img01,
  .p-homeMv_cont.-cont05 ._img02,
  .p-homeMv_cont.-cont05 ._img05 {
    height: 77.664399093%;
    top: 11.1678004535% !important;
  }
}
@media screen and (max-width: 767px) {
  .p-homeMv_cont.-cont05 ._img01,
  .p-homeMv_cont.-cont05 ._img02,
  .p-homeMv_cont.-cont05 ._img05 {
    width: 74.6666666667%;
    left: 12.6666666667% !important;
  }
}
.p-homeMv_cont.is-preload {
  display: block;
  visibility: hidden;
}
.p-homeMv_cont.is-active {
  display: block;
  position: static;
  --imgtime: 1500ms;
  --imgtime-first: 1000ms;
}
.p-homeMv_cont.is-active img {
  animation-name: mvImg;
  animation-duration: 0s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.p-homeMv_cont.is-active img._img01 {
  animation-delay: var(--imgtime-first);
}
.p-homeMv_cont.is-active img._img02 {
  animation-delay: calc(var(--imgtime) * 1 + var(--imgtime-first));
}
.p-homeMv_cont.is-active img._img03 {
  animation-delay: calc(var(--imgtime) * 2 + var(--imgtime-first));
}
.p-homeMv_cont.is-active img._img04 {
  animation-delay: calc(var(--imgtime) * 3 + var(--imgtime-first));
}
.p-homeMv_cont.is-active img._img05 {
  animation-delay: calc(var(--imgtime) * 4 + var(--imgtime-first));
}
.p-homeMv_cont.is-active img._img06 {
  animation-delay: calc(var(--imgtime) * 5 + var(--imgtime-first));
}
@keyframes mvImg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.p-homeHidden {
  visibility: hidden;
  position: fixed;
  z-index: -100;
}

/* ========================================
ABOUT US p-about
======================================== */
.p-about {
  padding-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .p-about {
    padding-bottom: 160px;
  }
}

.p-aboutIntro {
  margin-top: clamp(144px, 14.0625vw, 239px);
}
@media screen and (max-width: 1024px) {
  .p-aboutIntro {
    margin-top: 180px;
  }
}
@media screen and (max-width: 767px) {
  .p-aboutIntro {
    margin-top: 66px;
  }
}
.p-aboutIntro_catch {
  font-family: var(--font-gt);
  font-size: min(calc(130 / 1600 * 100vw), 154px);
  letter-spacing: -0.02em;
  line-height: 0.9904761905;
}
@media screen and (min-width: 768px) {
  .p-aboutIntro_catch {
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .p-aboutIntro_catch {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    font-size: calc(105 / 375 * 100vw);
    white-space: unset;
  }
}
.p-aboutIntro_desc {
  width: 56.4406779661%;
  margin-top: clamp(260px, 25.390625vw, 432px);
  margin-left: auto;
  font-size: 20px;
  line-height: 2;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 1024px) {
  .p-aboutIntro_desc {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-aboutIntro_desc {
    margin-top: 208px;
    line-height: 1.8;
  }
}

.p-aboutWhat {
  margin-top: 176px;
}
@media screen and (max-width: 767px) {
  .p-aboutWhat {
    margin-top: 120px;
  }
}
.p-aboutWhat_contBox {
  display: flex;
  justify-content: space-between;
  gap: 0 30px;
  margin-top: -18px;
}
@media screen and (max-width: 1024px) {
  .p-aboutWhat_contBox {
    display: block;
    margin-top: 36px;
  }
}
@media screen and (max-width: 767px) {
  .p-aboutWhat_contBox {
    display: block;
  }
}
.p-aboutWhat_list {
  flex: 1;
}
.p-aboutWhat_list li {
  padding-left: 16px;
  font-size: 18px;
  line-height: 1.3333333333;
  position: relative;
}
.p-aboutWhat_list li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: var(--color-black);
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: 0;
}
.p-aboutWhat_list li + li {
  margin-top: 12px;
}
.p-aboutWhat_list li ._minText {
  font-size: 14px;
}
.p-aboutWhat_desc {
  width: 38.7096774194%;
}
@media screen and (max-width: 1024px) {
  .p-aboutWhat_desc {
    width: 100%;
    margin-top: 36px;
  }
}
.p-aboutWhat_slide {
  margin-top: 77px;
}
.p-aboutWhat_slide ._imgBox {
  padding-top: 65.0847457627%;
  position: relative;
}
.p-aboutWhat_slide ._imgBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.p-aboutInfo {
  margin-top: 189px;
}
@media screen and (max-width: 1024px) {
  .p-aboutInfo {
    margin-top: 90px;
  }
}
.p-aboutInfo_contBox {
  display: flex;
  justify-content: space-between;
  gap: 0 30px;
  width: 85.4237288136%;
  margin-top: -12px;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .p-aboutInfo_contBox {
    display: block;
    width: 100%;
    margin-top: 36px;
  }
}
@media screen and (max-width: 767px) {
  .p-aboutInfo_contBox {
    display: block;
  }
}
.p-aboutInfo_address {
  flex: 1;
}
.p-aboutInfo_address ._mail {
  font-family: var(--font-gt);
  font-size: 14px;
}
.p-aboutInfo_map {
  width: 66.0714285714%;
}
@media screen and (max-width: 1024px) {
  .p-aboutInfo_map {
    width: 100%;
    margin-top: 36px;
  }
}
.p-aboutInfo_map iframe {
  width: 100%;
  height: 480px;
  filter: grayscale(100%);
}

/* ========================================
STUDIO p-studio
======================================== */
.p-studio {
  padding-bottom: 160px;
}

.p-studioIntro {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  width: calc(100% + calc(50 / 1600 * 100vw));
  margin-top: -102px;
}
@media screen and (max-width: 1024px) {
  .p-studioIntro {
    display: block;
    width: 100%;
    margin-top: 0;
  }
}
.p-studioIntro_desc {
  width: 40.5691056911%;
  padding-top: clamp(140px , calc(186 / 1600 * 100vw), 220px);
  font-size: clamp(15px, 1.46484375vw, 18px);
  line-height: 2;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 1024px) {
  .p-studioIntro_desc {
    width: 100%;
    padding-top: 63px;
    font-size: 16px;
  }
}
.p-studioIntro_img {
  width: 53.5772357724%;
}
@media screen and (max-width: 1024px) {
  .p-studioIntro_img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-studioIntro_img {
    width: calc(100% + calc(33 / 375 * 100vw));
    margin-left: calc(calc(25 / 375 * 100vw) * -1);
  }
}
.p-studioIntro_img img {
  width: 100%;
}

.p-studioFacility {
  margin-top: 190px;
}
@media screen and (max-width: 1024px) {
  .p-studioFacility {
    margin-top: 120px;
  }
}
@media screen and (max-width: 767px) {
  .p-studioFacility {
    margin-top: 80px;
  }
}
.p-studioFacility_contBox {
  margin-top: -11px;
}
@media screen and (max-width: 1024px) {
  .p-studioFacility_contBox {
    margin-top: 36px;
  }
}
.p-studioFacility_list li {
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.375;
  position: relative;
}
.p-studioFacility_list li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: var(--color-black);
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 0;
}
.p-studioFacility_list li + li {
  margin-top: 15px;
}
.p-studioFacility_list li ._minText {
  font-size: 14px;
}
.p-studioFacility_slide {
  margin-top: 44px;
}
.p-studioFacility_slide ._imgBox {
  padding-top: 65.0847457627%;
  position: relative;
}
.p-studioFacility_slide ._imgBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.p-studioFacility_slide ._caption {
  margin-top: 4px;
  color: #9B9B9B;
  font-size: 11px;
}
@media screen and (max-width: 767px) {
  .p-studioFacility_slide ._caption {
    margin-top: 0;
  }
}

.p-studioRisograph {
  margin-top: 94px;
}
@media screen and (max-width: 767px) {
  .p-studioRisograph {
    margin-top: 75px;
  }
  .p-studioRisograph .m-minCont-lg,
  .p-studioRisograph .m-minCont {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-studioRisograph_ttl.m-minCont-lg {
    width: 100%;
  }
}
.p-studioRisograph_contBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: -20px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-studioRisograph_contBox {
    margin-top: 29px;
  }
}
@media screen and (max-width: 767px) {
  .p-studioRisograph_contBox.m-minCont {
    width: 100%;
  }
}
.p-studioRisograph_desc {
  width: 324px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  .p-studioRisograph_desc {
    width: 100%;
  }
}
.p-studioRisograph_link {
  position: absolute;
  top: 6px;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .p-studioRisograph_link {
    margin-top: 25px;
    position: static;
  }
}
.p-studioRisograph_imgBox {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-studioRisograph_imgBox {
    margin-top: 59px;
  }
}
.p-studioRisograph_imgBox > * {
  width: 48.7455197133%;
}

.p-studioColor {
  margin-top: 117px;
}
@media screen and (max-width: 1024px) {
  .p-studioColor {
    margin-top: 120px;
  }
}
@media screen and (max-width: 767px) {
  .p-studioColor {
    margin-top: 98px;
  }
}
@media screen and (max-width: 767px) {
  .p-studioColor_ttl.m-minCont-lg {
    width: 100%;
  }
}
.p-studioColor_contBox {
  margin-top: -13px;
}
@media screen and (max-width: 1024px) {
  .p-studioColor_contBox {
    margin-top: 36px;
  }
}
@media screen and (max-width: 767px) {
  .p-studioColor_contBox.m-minCont {
    width: 100%;
  }
}
.p-studioColor_list {
  display: flex;
  flex-wrap: wrap;
  gap: min(calc(24 / 1600 * 100vw), 28px) 2.1505376344%;
}
@media screen and (max-width: 1024px) {
  .p-studioColor_list {
    gap: 24px 2.6666666667%;
  }
}
@media screen and (max-width: 767px) {
  .p-studioColor_list {
    gap: 24px 3.5087719298%;
  }
}
.p-studioColor_list > li {
  width: 18.2795698925%;
  height: 216px;
  border: 1px solid transparent;
  border-radius: 4px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-studioColor_list > li {
    width: 23%;
    height: 180px;
  }
}
@media screen and (max-width: 767px) {
  .p-studioColor_list > li {
    width: 30.9941520468%;
    height: 144px;
  }
}
.p-studioColor_list ._name {
  width: 100%;
  padding-left: 4px;
  font-family: var(--font-gt);
  font-size: clamp(16px , calc(20 / 1600 * 100vw), 24px);
  line-height: 1.2;
  position: absolute;
  top: 4px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-studioColor_list ._name {
    padding-left: 2px;
    font-size: min(calc(16 / 375 * 100vw), 16px);
    line-height: 1;
    top: 6px;
  }
}

.p-studioFaq {
  margin-top: 140px;
}
@media screen and (max-width: 1024px) {
  .p-studioFaq {
    margin-top: 120px;
  }
}
@media screen and (max-width: 767px) {
  .p-studioFaq {
    margin-top: 92px;
  }
}
@media screen and (max-width: 767px) {
  .p-studioFaq_ttl.m-minCont-lg {
    width: 100%;
  }
}
.p-studioFaq_contBox {
  margin-top: -18px;
}
@media screen and (max-width: 1024px) {
  .p-studioFaq_contBox {
    margin-top: 36px;
  }
}
@media screen and (max-width: 767px) {
  .p-studioFaq_contBox.m-minCont {
    width: 100%;
  }
}
.p-studioFaq_list dl {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--color-black);
  padding: 4px 0 40px;
}
@media screen and (max-width: 767px) {
  .p-studioFaq_list dl {
    display: block;
    padding-bottom: 43px;
  }
}
.p-studioFaq_list dl.is-active dt::after {
  transform: rotate(90deg) scale(0, 1);
}
.p-studioFaq_list dt {
  width: 43.0107526882%;
  padding-right: 20px;
  font-size: 18px;
  line-height: 1.3333333333;
  letter-spacing: 0.04em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-studioFaq_list dt {
    width: 100%;
  }
}
.p-studioFaq_list dt::before, .p-studioFaq_list dt::after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: #000;
  position: absolute;
  top: 10px;
  right: 0;
  pointer-events: none;
}
.p-studioFaq_list dt::after {
  transform: rotate(90deg);
  transition: transform 0.3s;
}
.p-studioFaq_list dd {
  width: max(38.7096774194%, 240px);
  letter-spacing: 0.03em;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-studioFaq_list dd {
    width: 100%;
    padding-top: 16px;
  }
}

/* ========================================
PROJECTS共通 l-project
PROJECTS一覧 p-projects
PROJECTS詳細 p-project
======================================== */
.p-projects {
  padding-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .p-projects {
    padding: 90px 0 130px;
  }
  .p-projects .l-col2Container_aside {
    top: 215px;
  }
}

.p-projectsMain {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.p-projectsList {
  width: max(calc(153 / 1600 * 100vw), 153px);
  padding-top: 4px;
  counter-reset: projectsList;
}
@media screen and (max-width: 1024px) {
  .p-projectsList {
    width: calc(140 / 375 * 100vw);
    max-width: 306px;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-projectsList {
    width: calc(140 / 375 * 100vw);
    margin-right: calc(25 / 375 * 100vw);
    padding-top: 6px;
  }
}
.p-projectsList > li {
  position: relative;
}
.p-projectsList > li + li {
  margin-top: 24px;
}
.p-projectsList > li::before {
  counter-increment: projectsList;
  content: counter(projectsList, decimal-leading-zero);
  display: block;
  width: 18px;
  font-family: var(--font-gt);
  font-size: 10px;
  line-height: 1;
  position: absolute;
  top: 0;
  right: 100%;
}
@media screen and (max-width: 767px) {
  .p-projectsList > li::before {
    width: 12px;
  }
}
.p-projectsList a {
  display: block;
}
@media (hover: hover) {
  .p-projectsList a {
    transition: opacity 0.3s;
  }
  .p-projectsList a:hover {
    opacity: 0.7;
  }
}
.p-projectsList_ttl {
  font-family: var(--font-gt);
  font-size: 10px;
  line-height: 1;
  white-space: nowrap;
  position: absolute;
  top: -1em;
  left: calc(100% + 5px);
  transform-origin: left bottom;
  transform: rotate(90deg);
}
.p-projectsList_thumbnail {
  padding-top: 78.431372549%;
  position: relative;
}
.p-projectsList_thumbnail + .p-projectsList_thumbnail {
  margin-top: 24px;
}
.p-projectsList_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.p-projectsList_detailBox {
  display: none;
}
.p-projectsList_detailTtl {
  margin-bottom: 38px;
  font-family: var(--font-gt);
  font-size: 32px;
  line-height: 1.125;
}
.p-projectsList_desc {
  margin-bottom: 24px;
}
.p-projectsList_overview li {
  padding-left: 21px;
  font-family: var(--font-gt);
  font-size: 14px;
  line-height: 1.4;
  position: relative;
}
.p-projectsList_overview li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: var(--color-black);
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: 0;
}
.p-projectsList_overview li + li {
  margin-top: 4px;
}

.p-projectsDetail {
  width: max(49.2063492063%, 360px);
  margin-top: -6px;
  position: sticky;
  top: 183px;
}
@media screen and (max-width: 1024px) {
  .p-projectsDetail {
    display: none;
  }
}

.p-project {
  padding-bottom: 160px;
}

.p-projectMv {
  border-bottom: 1px solid #000;
  position: relative;
}
@media screen and (min-width: 768px) and (hover: hover) {
  .p-projectMv {
    height: calc(100vh - 70px) !important;
  }
}
@media screen and (max-width: 767px) {
  .p-projectMv {
    height: calc(100vh - 46px);
  }
}
.p-projectMv img {
  opacity: 0;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-projectMv img {
    width: auto;
    max-width: none;
    height: 100%;
    top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-projectMv img {
    width: 100%;
    height: auto;
    left: 0;
  }
}
.p-projectMv img.is-show {
  opacity: 1;
}
.p-projectMv_prev, .p-projectMv_next {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 767px) {
  .p-projectMv_prev, .p-projectMv_next {
    display: none;
  }
}
.p-projectMv_prev {
  right: 50%;
}
.p-projectMv_next {
  left: 50%;
}

.p-projectMainTtl {
  padding: 16px 39px 0;
  font-family: var(--font-gt);
  font-size: 32px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-projectMainTtl {
    padding: 0 calc(8 / 375 * 100vw);
    font-size: 20px;
  }
}

.p-projectPost {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 58px;
}
@media screen and (max-width: 1024px) {
  .p-projectPost {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-projectPost {
    width: calc(100% - 88px);
    margin-left: auto;
  }
}
.p-projectPost_desc {
  width: max(calc(324 / 1600 * 100vw), 324px);
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  .p-projectPost_desc {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-projectPost_desc {
    margin-top: 48px;
  }
}
.p-projectPost_info {
  width: max(calc(324 / 1600 * 100vw), 324px);
  padding: 20px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 1024px) {
  .p-projectPost_info {
    width: 100%;
    margin-top: 60px;
  }
}
.p-projectPost_info dl {
  display: flex;
}
.p-projectPost_info dt {
  width: 76px;
}
.p-projectPost_info dd {
  flex: 1;
}

.p-projectRelation {
  margin-top: 142px;
  border-top: 1px solid var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-projectRelation {
    margin-top: 64px;
  }
}
.p-projectRelation_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.5254237288%;
  margin-top: 32px;
}
.p-projectRelation_list > li {
  width: 32.2881355932%;
}
@media screen and (max-width: 767px) {
  .p-projectRelation_list > li {
    width: 100%;
  }
  .p-projectRelation_list > li + li {
    margin-top: 50px;
  }
}
.p-projectRelation_list a {
  display: block;
}
.p-projectRelation_img {
  padding-top: 75.5905511811%;
  background-color: #efefef;
  position: relative;
}
.p-projectRelation_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.p-projectRelation_ttl {
  margin-top: 7px;
  font-family: var(--font-gt);
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-projectRelation_ttl {
    margin-top: 0;
  }
}

.p-projectBack {
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .p-projectBack {
    margin-top: 77px;
  }
}

/* ========================================
ARTICLE共通 l-article
ARTICLE一覧 p-articles
ARTICLE詳細 p-article
======================================== */
.l-article_time {
  display: block;
  margin-top: -1px;
  font-family: var(--font-gt);
  font-weight: 500;
  font-size: 11px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-article_time {
    margin-top: 2px;
  }
}
.l-article_category {
  margin-top: 15px;
}
.l-article_category > * {
  display: block;
  font-size: 11px;
  line-height: 1.0909090909;
}
.l-article_category > * + * {
  margin-top: 12px;
}
.l-article_tag {
  display: flex;
  gap: 10px 10px;
  margin-top: 5px;
}
.l-article_tag > * {
  display: block;
  color: #9B9B9B;
  font-size: 11px;
  line-height: 1.2;
}
.l-article_tag > *::before {
  content: "#";
}

/* ARTICLE一覧 p-articles */
.p-articles {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-articles {
    padding-bottom: 120px;
  }
}

@media screen and (min-width: 768px) {
  .p-articlesList {
    padding-top: 3px;
  }
}
.p-articlesList > li + li {
  margin-top: 24px;
}
@media screen and (max-width: 1024px) {
  .p-articlesList > li + li {
    margin-top: 50px;
  }
}
.p-articlesList a {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .p-articlesList a {
    flex-wrap: wrap;
  }
}
@media (hover: hover) {
  .p-articlesList a {
    transition: opacity 0.3s;
  }
  .p-articlesList a:hover {
    opacity: 0.7;
  }
}
.p-articlesList_head {
  width: 171px;
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  .p-articlesList_head {
    width: 34.5029239766%;
    padding-right: 12px;
  }
}
.p-articlesList_img {
  width: 153px;
}
@media screen and (max-width: 767px) {
  .p-articlesList_img {
    width: 65.4970760234%;
  }
}
.p-articlesList_img > div {
  padding-top: 78.431372549%;
  background-color: #efefef;
  position: relative;
}
.p-articlesList_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 1025px) {
  .p-articlesList_contBox {
    flex: 1;
    padding-left: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .p-articlesList_contBox {
    width: 65.4970760234%;
    margin-left: auto;
  }
}
.p-articlesList_ttl {
  margin-top: -0.3em;
  font-size: 18px;
  line-height: 1.7777777778;
}
@media screen and (max-width: 1024px) {
  .p-articlesList_ttl {
    margin-top: 9px;
  }
}
@media screen and (max-width: 767px) {
  .p-articlesList_ttl {
    font-size: 16px;
    line-height: 1.6875;
  }
}

/* ARTICLE詳細 p-article */
.p-article {
  padding-bottom: 123px;
}
.p-article_head {
  margin-bottom: 24px;
}
.p-article_mainTtl {
  font-size: 24px;
  line-height: 1.2857142857;
}
@media screen and (max-width: 767px) {
  .p-article_mainTtl {
    font-size: 24px;
    line-height: 1.5;
  }
}

.p-articleMain {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-articleMain {
    display: block;
    margin-top: -6px;
  }
}
.p-articleMain_haed {
  width: 153px;
  padding-right: 20px;
}
@media screen and (max-width: 1024px) {
  .p-articleMain_haed {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .p-articleMain_contBox {
    flex: 1;
    padding-left: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .p-articleMain_contBox {
    width: 100%;
  }
}

.p-articlePost {
  margin-top: 40px;
  font-size: 14px;
}
.p-articlePost > * {
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .p-articlePost > * {
    margin-bottom: 36px;
  }
}
.p-articlePost h2 {
  font-size: 18px;
  line-height: 1.6;
  position: relative;
}
.p-articlePost h2::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-black);
  margin-bottom: -2px;
}
.p-articlePost figcaption {
  margin: 0;
  color: #9B9B9B;
  font-size: 11px;
  text-align: right;
}
.p-articlePost .wp-block-image + .wp-block-image {
  margin-top: -24px;
}
@media screen and (max-width: 767px) {
  .p-articlePost .wp-block-image + .wp-block-image {
    margin-top: -12px;
  }
}

.l-wpBlock_read {
  width: 100% !important;
  font-size: 15px;
  line-height: 1.8;
}

.l-wpBlock_textImg {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .l-wpBlock_textImg {
    display: block;
  }
}
.l-wpBlock_textImg_text {
  width: 45.5197132616%;
}
@media screen and (max-width: 1024px) {
  .l-wpBlock_textImg_text {
    width: 100%;
  }
}
.l-wpBlock_textImg_imgBox {
  width: 38.7096774194%;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .l-wpBlock_textImg_imgBox {
    width: 94.7368421053%;
    margin-top: 24px;
    margin-left: 0;
  }
}
.l-wpBlock_textImg_imgBox > * + * {
  margin-top: 24px;
}

.p-articleRelation {
  margin-top: 100px;
  border-top: 1px solid var(--color-black);
}
.p-articleRelation_lsit {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.7857142857%;
  margin-top: 32px;
}
.p-articleRelation_lsit > li {
  width: 32.1428571429%;
}
@media screen and (max-width: 767px) {
  .p-articleRelation_lsit > li {
    width: 100%;
  }
  .p-articleRelation_lsit > li + li {
    margin-top: 50px;
  }
}
.p-articleRelation_lsit a {
  display: block;
}
.p-articleRelation_img {
  padding-top: 78.3950617284%;
  background-color: #efefef;
  position: relative;
}
.p-articleRelation_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.p-articleRelation_time {
  margin-top: 9px;
  display: block;
  font-family: var(--font-gt);
  font-size: 11px;
  line-height: 1;
}
.p-articleRelation_ttl {
  margin-top: 11px;
  font-size: 18px;
  line-height: 1.3333333333;
  letter-spacing: 0.04em;
}

/* ========================================
404ページ
======================================== */
.p-page404_connt {
  margin-top: 85px;
  font-size: 15px;
}
.p-page404_connt a {
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */