@charset "UTF-8";

html {
  width: 100%;
  height: 100%;
  margin: 0 !important;
}

@media (max-width: 1280px) and (min-width: 769px) {
  html {
    font-size: 16px;
    font-size: 1.25vw;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, Arial, Roboto, "Droid Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  overflow-x: hidden;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  color: #020202;
  font-size: 1rem;
}

body.no_scroll {
  overflow: hidden;
  position: relative;
}

a {
  cursor: pointer;
  text-decoration: none;
  outline: none;
  color: #020202;
  font-size: max(1rem, 12px);
}

p {
  font-size: max(1rem, 14px);
  line-height: 2;
  letter-spacing: 0.05em;
}

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

.u-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 0.875rem;
  }

  p {
    font-size: 0.875rem;
  }

  .u-pc {
    display: none;
  }

  .u-sp {
    display: block;
  }
}

/* ---------------------------------------------
  Fade Animations
  --------------------------------------------- */
.fadein {
  opacity: 0;
  transform: translate(0, 100px);
  transition: all 1s;
}

.fadein.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* -----------------------------------
  header / footer 共通
  -----------------------------------*/
.c-sns-list {
  display: -ms-flexbox;
  display: flex;
  gap: 1.125rem;
}

.c-sns-list li {
  width: 18%;
  max-width: 40px;
}

.c-sns-list a {
  transition: 0.3s ease;
}

@media (hover: hover) {
  .c-sns-list a:hover {
    opacity: 0.7;
  }
}

/* -----------------------------------
  header
  ----------------------------------- */
.l-header {
  width: 100%;
  margin: 0 auto;
  transition: 0.3s ease all;
  position: fixed;
  left: 0;
  z-index: 999;
  background: rgba(0, 0, 0, .3);
  backdrop-filter: blur(30px);
  padding: 20px 0;
}

.l-header__logo {
  position: relative;
  z-index: 9;
  width: 15%;
}

.l-header__inner {
  max-width: 1800px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  transition: 0.5s;
  height: 100%;
  padding: 0 2rem;
}

.l-header__container .c-sns-list {
  display: none;
}

.l-header__container .c-btn-list {
  display: none;
}

.l-header__container .c-copyright {
  display: none;
}

.l-header__nav {
  -ms-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 30px;
}

.l-header__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  gap: 2rem;
  z-index: 9;
}

.l-header__list li {
  position: relative;
}

.l-header__list li>a {
  font-weight: 400;
  display: block;
  gap: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  transition: 0.3s ease;
  color: #fff;
}

.l-header__list li>a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: -4px;
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -ms-transform-origin: right top;
  transform-origin: right top;
  transition: transform 0.3s;
}

@media (hover: hover) {
  .l-header__list li>a:hover::before {
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -ms-transform-origin: left top;
    transform-origin: left top;
  }
}

.l-header__list li.nav-contact a {
  font-size: 1rem;
  background-color: #fff;
  border: 1px solid #fff;
  color: #020202;
  font-weight: 800;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  padding: 14px 36px;
  border-radius: 60px;
  font-family: "Hanken Grotesk", sans-serif;
  letter-spacing: 0;
}

.l-header__list li.nav-contact a::before {
  display: none;
}

@media (hover: hover) {
  .l-header__list li.nav-contact a:hover {
    opacity: 0.7;
  }
}

.c-hamburger {
  display: none;
}

@media screen and (max-width: 992px) {
  .l-header {
    /* padding: 0;
    top: 32px; */
    padding: 10px 0;
    top: 0;
  }

  .l-header__inner {
    padding: 0 24px;
    -ms-flex: 1;
    flex: 1;
  }

  .l-header__logo {
    width: 28%;
    max-width: 120px;
    z-index: 9999999;
  }

  .l-header__container {
    display: none;
    z-index: 99999;
    width: 100%;
    /* height: 100%; */
    height: 100vh;
    background-color: #000000;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 30px;
    padding-top: 130px;
  }

  .l-header__container::before {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 344/277;
    background: url("../img/common/bg_mark_g.svg") no-repeat center/100%;
    opacity: 0.1;
    position: absolute;
    top: 32px;
    right: -50%;
  }

  .l-header__container .wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
  }

  .l-header__container .c-sns-list {
    display: -ms-flexbox;
    display: flex;
    margin-top: 40px;
  }

  .l-header__container .c-btn-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .l-header__container .c-btn-list .c-btn {
    width: 100%;
    max-width: 324px;
    background-color: #fff;
    color: #000;
  }

  .l-header__container .c-copyright {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    display: block;
    background-color: #fff;
    margin-top: auto;
    font-style: italic;
    font-weight: 600;
    text-align: center;
  }

  .l-header__container .c-copyright small {
    font-size: 0.625rem;
  }

  .l-header__nav {
    display: block;
    -ms-flex: initial;
    flex: initial;
  }

  .l-header__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 32px;
  }

  .l-header__list .nav-home {
    display: block;
  }

  .l-header__list li {
    width: 100%;
  }

  .l-header__list li a {
    font-size: max(1rem, 16px);
  }

  .l-header__list li.nav-contact {
    display: none;
  }

  .c-hamburger {
    display: inline-block;
    transition: all 0.2s;
    box-sizing: border-box;
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 999999;
    display: block;
    /* top: 0; */
    top: 10px;
    right: 16px;
  }

  .c-hamburger span {
    display: inline-block;
    transition: all 0.2s;
    box-sizing: border-box;
    position: absolute;
    height: 3px;
    background-color: #fff;
    left: 6px;
    width: 28px;
    border-radius: 1px;
  }

  .c-hamburger span:nth-of-type(1) {
    top: 16px;
  }

  .c-hamburger span:nth-of-type(2) {
    top: 24px;
  }

  .c-hamburger.is-active span:nth-of-type(1) {
    -ms-transform: translateY(4px) rotate(-45deg);
    transform: translateY(4px) rotate(-45deg);
  }

  .c-hamburger.is-active span:nth-of-type(2) {
    -ms-transform: translateY(-4px) rotate(45deg);
    transform: translateY(-4px) rotate(45deg);
  }
}

@media screen and (max-width: 768px) {
  .l-header__container {
    padding-top: 8.125rem;
  }

  .l-header__list li a {
    font-size: 0.875rem;
  }
}

/* ---------------------------------------------
  footer フッター
  --------------------------------------------- */
.l-footer {
  margin-top: -11.25rem;
  position: relative;
  z-index: 0;
}

.l-footer-contact {
  padding: 17.5rem 0 5.625rem;
  background-color: #F4F4F4;
  position: relative;
  overflow: hidden;
}

.l-footer-contact .l-wrap {
  position: relative;
  z-index: 1;
}

.l-footer-contact .c-ttl {
  color: #fff;
}

.l-footer-contact p {
  color: #fff;
}

.l-footer-contact .c-btn-list {
  gap: 56px;
  -ms-flex-pack: center;
  justify-content: center;
}

.l-footer-contact .c-btn-list .c-btn.contact {
  border: 1px solid #fff;
}

.l-footer-contact__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.l-footer-contact__bg:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  filter: brightness(70%);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 1;
}

.l-footer-contact__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
}

.l-footer__container {
  padding: 80px 0 88px;
  background-color: #F1F1F1;
}

.l-footer__container .l-footer__block {
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}

.l-footer__info {
  width: 25%;
  color: #3B4043;
}

.l-footer__info .l-footer__logo {
  margin-bottom: 16px;
  -ms-transform: translateX(-24px);
  transform: translateX(-24px);
}

.l-footer__info .company {
  font-size: 1rem;
  color: #3B4043;
  font-weight: 700;
}

.l-footer__info address {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.l-footer__info p {
  font-size: 1rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 900;
}

.l-footer__info .c-sns-list {
  margin-top: 20px;
}

.l-footer__nav {
  display: -ms-flexbox;
  display: flex;
  gap: 4.625rem;
  -ms-flex: 1;
  flex: 1;
}

.l-footer__nav .nav-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}

.l-footer__nav .nav-list li a {
  font-size: 1rem;
  font-weight: 700;
  color: #3B4043;
  transition: 0.3s ease;
}

@media (hover: hover) {
  .l-footer__nav .nav-list li a:hover {
    opacity: 0.7;
  }
}

.l-footer__nav .nav-index {
  font-size: 1rem;
  font-weight: 700;
  color: #3B4043;
  transition: 0.3s ease;
  line-height: 1.4;
  margin-bottom: 20px;
}

.l-footer__nav .nav-sub {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.l-footer__nav .nav-sub a {
  font-size: 0.875rem;
  color: #3B4043;
  opacity: 0.8;
  transition: 0.3s ease;
}

@media (hover: hover) {
  .l-footer__nav .nav-sub a:hover {
    opacity: 0.5;
  }
}

.l-footer__btn-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
  width: 20%;
  max-width: 260px;
}

.l-footer__btn-list .c-btn {
  margin-top: 0;
  width: 100%;
}

.l-footer__btn-list .c-btn.line {
  border: 1px solid #BABABB;
}

.l-footer__copy {
  width: 100%;
  display: block;
  background-color: #000;
  margin-top: auto;
  font-style: italic;
  text-align: center;
  font-family: "Hanken Grotesk", sans-serif;
  padding: 8px;
  line-height: 1.2;
}

.l-footer__copy small {
  font-size: 0.75rem;
  color: #fff;
}

.l-footer-sns-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .l-footer {
    margin-top: -64px;
  }

  .l-footer-contact {
    padding: 120px 0 64px;
  }

  .l-footer-contact .c-ttl {
    margin-bottom: 20px;
  }

  .l-footer-contact .c-ttl .ja {
    opacity: 0.6;
  }

  .l-footer-contact .c-lead {
    text-align: left;
  }

  .l-footer-contact .c-btn-list {
    gap: 32px;
  }

  .l-footer__container {
    padding: 48px 0 68px;
  }

  .l-footer__container .l-footer__block {
    display: block;
  }

  .l-footer__info {
    width: 100%;
  }

  .l-footer__info .l-footer__logo {
    margin-bottom: 10px;
    -ms-transform: translateX(-16px);
    transform: translateX(-16px);
    max-width: 120px;
  }

  .l-footer__info .company {
    font-size: 0.875rem;
  }

  .l-footer__info address {
    font-size: 0.875rem;
  }

  .l-footer__info p {
    font-size: 0.875rem;
  }

  .l-footer__info .c-sns-list {
    display: none;
  }

  .l-footer__nav {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex: 1;
    flex: 1;
    gap: 16px 32px;
    margin-top: 32px;
  }

  .l-footer__nav .nav-item {
    width: calc(50% - 16px);
  }

  .l-footer__nav .nav-item:first-child {
    width: 100%;
  }

  .l-footer__nav .nav-item:first-child .nav-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .l-footer__nav .nav-list {
    gap: 16px;
  }

  .l-footer__nav .nav-list li a {
    font-size: 0.875rem;
  }

  .l-footer__nav .nav-index {
    font-size: 0.875rem;
    margin-bottom: 16px;
  }

  .l-footer__nav .nav-sub {
    gap: 12px;
  }

  .l-footer__nav .nav-sub a {
    font-size: 0.75rem;
  }

  .l-footer-sns-sp {
    display: -ms-flexbox;
    display: flex;
    margin-top: 40px;
  }

  .l-footer__btn-list {
    width: 100%;
    max-width: 100%;
    margin-top: 46px;
  }

  .l-footer__btn-list .c-btn {
    margin-top: 0;
    width: 100%;
  }

  .l-footer__copy {
    padding: 4px;
  }

  .l-footer__copy small {
    font-size: 0.625rem;
  }
}

/* —————————————————
  component
  —————————————————*/
/* ------- title --------- */
.c-ttl {
  width: 100%;
  margin-bottom: 56px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.c-ttl .en {
  font-size: 2.875rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 800;
  line-height: 1.4;
}

.c-ttl .ja {
  font-size: 1.125rem;
  font-weight: 700;
}

.c-ttl.left {
  -ms-flex-align: start;
  align-items: flex-start;
}

.c-lead {
  text-align: center;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .c-ttl {
    margin-bottom: 30px;
  }

  .c-ttl .en {
    font-size: 1.875rem;
  }

  .c-ttl .ja {
    font-size: 0.875rem;
  }

  .c-lead {
    text-align: left;
  }
}

/* ------- btn --------- */
.c-btn {
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
  font-weight: 700;
  display: -ms-flexbox;
  display: flex !important;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  transition: 0.3s ease;
  line-height: 1.875;
  letter-spacing: 0;
  padding: 15px 0;
  width: 200px;
  margin-top: 30px;
  border-radius: 60px;
}

@media (hover: hover) {
  .c-btn:hover {
    background-color: #881D1D;
    color: #fff;
  }
}

.c-btn.center {
  margin: 30px auto 0;
}

.c-btn.contact {
  border-color: #000;
  background-color: #000;
  color: #fff;
}

@media (hover: hover) {
  .c-btn.contact:hover {
    background-color: #881D1D;
    color: #fff;
  }
}

.c-btn.line {
  background-color: #fff;
  color: #000;
}

@media (hover: hover) {
  .c-btn.line:hover {
    background-color: #881D1D;
    color: #fff;
    border-color: #fff;
  }
}

.c-btn.en {
  font-family: "Hanken Grotesk", sans-serif;
}

.c-btn.ex {
  gap: 10px;
}

.c-btn.ex::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  -webkit-mask-image: url("../img/common/icon_ex.svg");
  mask-image: url("../img/common/icon_ex.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #fff;
  transition: 0.3s ease;
}

@media (hover: hover) {
  .c-btn.ex:hover::after {
    background-color: #000;
  }
}

.c-btn-list {
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-top: 60px;
}

.c-btn-list .c-btn {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .c-btn {
    margin: 20px auto 0;
    width: 100%;
    max-width: 324px;
    font-size: 0.875rem;
  }

  .c-btn-list {
    margin-top: 32px;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px;
  }
}

.c-mark-r {
  position: relative;
}

.c-mark-r::before {
  content: "";
  display: block;
  width: 51.04vw;
  min-width: 45.9375rem;
  aspect-ratio: 735/566;
  background: url("../img/common/bg_mark_r.svg") no-repeat center/100%;
  opacity: 0.5;
  position: absolute;
  top: 22%;
  left: -6%;
}

.c-mark-g {
  position: relative;
}

.c-mark-g::before {
  content: "";
  display: block;
  width: 48vw;
  min-width: 33.75rem;
  aspect-ratio: 694/560;
  background: url("../img/common/bg_mark_g.svg") no-repeat center/100%;
  opacity: 0.1;
  position: absolute;
  top: 0;
  right: -5%;
}

.c-mark-s {
  position: relative;
}

.c-mark-s::before {
  content: "";
  display: block;
  width: 63.88vw;
  min-width: 57.5rem;
  aspect-ratio: 920/608;
  background: url("../img/common/bg_mark_s.svg") no-repeat center/100%;
  opacity: 0.1;
  position: absolute;
  top: 32px;
  right: -25%;
}

@media screen and (max-width: 768px) {
  .c-mark-r::before {
    width: 96vw;
    min-width: 21.875rem;
    top: 15%;
    left: -25%;
  }

  .c-mark-g::before {
    width: 80vw;
    min-width: 15rem;
    top: 4%;
    right: -15%;
  }

  .p-section {
    padding: 80px 0;
    border-radius: 0 0 60px 0;
  }
}

.u-center {
  text-align: center;
}

.u-right {
  text-align: right;
}

.u-border {
  border-bottom: 1px solid #ccc;
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.u-bold {
  font-weight: 700;
}

.u-en {
  font-family: "Hanken Grotesk", sans-serif;
}

.l-wrap {
  width: calc(100% - 48px);
  max-width: 1280px;
  margin: 0 auto;
}

/* ---------------------------------------------
  top-mv
  --------------------------------------------- */
.p-top-mv {
  width: 100%;
  position: relative;
  padding-top: 25rem;
  background-color: #000;
  overflow: hidden;
}

.p-top-mv__movie {
  width: 100%;
  position: relative;
}

.p-top-mv__movie video {
  display: block;
  aspect-ratio: 1440/810;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-mv__movie::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 20%, rgba(255, 255, 255, 0.5) 50%, rgba(0, 0, 0, 0.5) 80%);
  opacity: 0.4;
}

.p-top-mv__text {
  width: calc(100% - 8.75rem);
  max-width: 1100px;
  position: absolute;
  top: 17rem;
  left: calc(50% + 4.375rem);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 6.875rem;
  z-index: 1;
  font-weight: 700;
  color: #fff;
}

.p-top-mv__text .p-top-mv__ttl {
  font-size: 4.6875rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.p-top-mv__text .text-en {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1.25rem;
  -ms-transform: translateY(10px);
  transform: translateY(10px);
}

.p-top-mv__block {
  width: calc(100% - 48px);
  max-width: 1280px;
  position: absolute;
  bottom: 4%;
  left: 50%;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.p-top-mv__lead {
  color: #fff;
  font-size: 1rem;
  line-height: 2.5;
}

@media screen and (max-width: 768px) {
  .p-top-mv {
    padding-top: 15rem;
  }

  .p-top-mv__movie video {
    aspect-ratio: 375/570;
  }

  .p-top-mv__text {
    width: 100%;
    top: 10.625rem;
    left: 24px;
    -ms-transform: none;
    transform: none;
    display: block;
  }

  .p-top-mv__text .p-top-mv__ttl {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }

  .p-top-mv__text .text-en {
    font-size: 0.8125rem;
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .p-top-mv__block {
    bottom: 32px;
  }

  .p-top-mv__lead {
    font-size: 0.875rem;
    line-height: 2.3;
  }
}

/* ---------------------------------------------
  about section
  --------------------------------------------- */
.p-about-section {
  background-color: #F1F1F1;
  border-radius: 0 0 120px 0;
  padding: 7.5rem 0 17.5rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.p-about-section::before {
  opacity: 0.5;
  top: 12%;
}

.p-about-section .l-wrap {
  width: calc(100% - 160px);
  max-width: 1440px;
}

.p-about__heading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.p-about__heading .c-ttl {
  width: auto;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-about-ttl {
  width: 58%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  margin-bottom: 4.5rem;
}

.p-about-ttl .text {
  font-size: 4.25rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.1875rem;
}

.p-about-ttl .img-block {
  position: absolute;
  right: -80px;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  width: 32%;
}

.p-about-ttl .img-block img {
  width: 100%;
  max-width: 252px;
  margin: 0 0 0 auto;
}

.p-about-ttl .img-block img:first-child {
  -ms-transform: translateX(-55%);
  transform: translateX(-55%);
  border-radius: 4px;
}

.p-about-ttl .img-block img:last-child {
  border-radius: 4px 0 0 4px;
}

.p-about__block {
  display: -ms-flexbox;
  display: flex;
}

.p-about__text {
  width: 54%;
  max-width: 590px;
  margin: 0 0 0 auto;
}

.p-about__text .c-btn {
  width: 250px;
  margin: 60px 0 0 auto;
  position: relative;
  z-index: 1;
}

.p-about__text .desc {
  position: relative;
}

.p-about__img {
  width: 34.58vw;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.p-about__img img:first-child {
  border-radius: 0 4px 4px 0;
}

.p-about__img img:last-child {
  border-radius: 4px;
  -ms-transform: translateX(5rem);
  transform: translateX(5rem);
}

.p-top-about {
  position: relative;
  z-index: 2;
  padding: 11.25rem 0 10rem;
}

.p-top-about .p-about-ttl {
  margin-bottom: 6.25rem;
}

.p-top-about .p-about__img {
  position: absolute;
  left: 0;
  bottom: 160px;
}

@media screen and (max-width: 1280px) {
  .p-about-section .l-wrap {
    width: calc(100% - 48px);
  }

  .p-about-ttl .img-block {
    right: -24px;
  }
}

@media screen and (max-width: 768px) {
  .p-about-section {
    border-radius: 0 0 60px 0;
    padding: 64px 0;
  }

  .p-about-section .l-wrap {
    width: calc(100% - 48px);
  }

  .p-about-section .c-ttl {
    margin-bottom: 40px;
  }

  .p-about__heading {
    display: block;
  }

  .p-about-ttl {
    width: 100%;
    margin-bottom: 40px;
  }

  .p-about-ttl .text {
    font-size: 2.125rem;
    gap: 16px;
  }

  .p-about-ttl .img-block {
    right: -24px;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 14px;
    width: 38%;
  }

  .p-about-ttl .img-block img {
    max-width: 380px;
    border-radius: 4px;
    aspect-ratio: 130/50;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .p-about-ttl .img-block img:first-child {
    border-radius: 4px;
    -ms-transform: none;
    transform: none;
    -ms-transform: translateX(30%);
    transform: translateX(30%);
  }

  .p-about-ttl .img-block img:last-child {
    border-radius: 4px;
    -ms-transform: translateX(-25%);
    transform: translateX(-25%);
  }

  .p-about__text {
    width: 100%;
  }

  .p-about__text .c-btn {
    width: 100%;
  }

  .p-about__img {
    width: calc(100vw - 18px);
    position: static;
    gap: 30px;
    margin-top: 40px;
  }

  .p-about__img img {
    width: 100%;
    max-width: 498px;
    aspect-ratio: 357/96;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .p-about__img img:first-child {
    border-radius: 0 4px 4px 0;
    -ms-transform: translateX(-24px);
    transform: translateX(-24px);
  }

  .p-about__img img:last-child {
    -ms-transform: translateX(0);
    transform: translateX(0);
    margin: 0 0 0 auto;
  }

  .p-top-about .p-about-ttl {
    margin-bottom: 40px;
  }

  .p-top-about .p-about__img {
    position: static;
  }
}

/* ---------------------------------------------
  top-works
  --------------------------------------------- */
.p-works-section {
  background-color: #020202;
  padding: 6.875rem 0 10rem;
  position: relative;
  z-index: 1;
  border-radius: 0 0 0 120px;
  color: #fff;
  overflow: hidden;
}

.p-works-section .l-wrap {
  position: relative;
}

.p-works-section .c-ttl {
  margin-bottom: 50px;
}

.p-works-section .c-ttl .ja {
  opacity: 0.6;
}

.p-works-section .c-btn {
  border-color: #fff;
  background-color: #fff;
  color: #000;
  margin-top: 80px;
  display: block;
}

@media (hover: hover) {
  .p-works-section .c-btn:hover {
    background-color: #881D1D;
    color: #fff;
  }
}

.p-works-section::before {
  content: "";
  display: block;
  width: 63.88vw;
  min-width: 57.5rem;
  aspect-ratio: 920/608;
  background: url("../img/common/bg_mark_s.svg") no-repeat center/100%;
  opacity: 0.1;
  position: absolute;
  top: 32px;
  right: -15%;
}

.p-top-works {
  padding-top: 17.5rem;
  margin-top: -11.25rem;
  border-radius: 0;
}

.p-top-works::before {
  top: 28%;
}

.p-works__slider {
  overflow: initial;
  position: relative;
  z-index: 2;
}

.p-works__slider .works-img {
  position: relative;
  transition: 0.3s ease;
  background-color: #000000;
}

.p-works__slider .works-img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.35;
  position: absolute;
  top: 0;
  left: 0;
}

.p-works__slider .works-img img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-works__slider .works-text {
  text-align: center;
  margin-top: 24px;
  color: #fff;
  opacity: 0.5;
}

.p-works__slider .works-text .text-en {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.p-works__slider .works-text .works-ttl {
  font-size: 1.5rem;
  font-weight: 700;
}

.p-works__slider .swiper-wrapper {
  -ms-flex-align: center;
  align-items: center;
}

.p-works__slider .swiper-slide {
  -ms-transform: scale(0.635);
  transform: scale(0.635);
  transition: 0.5s;
}

.p-works__slider .swiper-slide-active {
  opacity: 1;
  -ms-transform: scale(1);
  transform: scale(1);
  z-index: 1;
}

.p-works__slider .swiper-slide-active .works-img::before {
  display: none;
}

.p-works__slider .swiper-slide-active .works-text {
  opacity: 1;
}

.p-works__slider .swiper-slide-next+.swiper-slide {
  -ms-transform: scale(0.635) translateX(-20%);
  transform: scale(0.635) translateX(-20%);
}

.p-works__slider .swiper-slide:has(+ .swiper-slide-prev) {
  -ms-transform: scale(0.635) translateX(20%);
  transform: scale(0.635) translateX(20%);
}

.p-works__slider .swiper-control__wrap {
  display: block;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 16px;
}

.p-works__slider .swiper-control__wrap .swiper-button-next,
.p-works__slider .swiper-control__wrap .swiper-button-prev {
  width: 45px;
  height: 45px;
  transition: 0.3s ease;
  margin: 0;
  position: static;
}

.p-works__slider .swiper-control__wrap .swiper-button-next:after,
.p-works__slider .swiper-control__wrap .swiper-button-prev:after {
  content: "";
  display: block;
  font-size: 1.75rem;
  transition: 0.3s ease;
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: url("../img/common/icon_arrow.svg") no-repeat center/100%;
}

.p-works__slider .swiper-control__wrap .swiper-button-next {
  right: 0;
}

.p-works__slider .swiper-control__wrap .swiper-button-prev {
  left: 0;
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.p-works__slider .swiper-pagination {
  position: static;
  margin-top: 80px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 52px;
}

.p-works__slider .swiper-pagination-bullet {
  position: static;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: none;
  opacity: 1;
  border: 1px solid #707070;
  margin: 0 !important;
}

.p-works__slider .swiper-pagination-bullet-active {
  background-color: #fff;
  width: 20px;
  height: 20px;
}

@media screen and (max-width: 768px) {
  .p-works-section {
    padding: 100px 0 64px;
    border-radius: 0 0 0 60px;
  }

  .p-works-section .c-btn {
    margin-top: 60px;
  }

  .p-works-section::before {
    width: 112vw;
    min-width: initial;
    top: 30%;
    right: -50%;
  }

  .p-works-section .c-ttl {
    margin-bottom: 40px;
  }

  .p-top-works {
    padding-top: 100px;
    margin-top: -64px;
    border-radius: 0;
  }

  .p-works__slider .works-img {
    background-color: #000000;
  }

  .p-works__slider .works-img img {
    aspect-ratio: 1/1;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .p-works__slider .works-text {
    margin-top: 18px;
  }

  .p-works__slider .works-text .text-en {
    font-size: 0.625rem;
    margin-bottom: 5px;
  }

  .p-works__slider .works-text .works-ttl {
    font-size: 1rem;
  }

  .p-works__slider .swiper-slide {
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    padding: 0;
    -ms-transform-origin: top;
    transform-origin: top;
  }

  .p-works__slider .swiper-slide-active {
    -ms-transform: scale(1);
    transform: scale(1);
  }

  .p-works__slider .swiper-control__wrap {
    margin-bottom: 24px;
  }

  .p-works__slider .swiper-control__wrap .swiper-button-next,
  .p-works__slider .swiper-control__wrap .swiper-button-prev {
    width: 32px;
    height: 32px;
  }

  .p-works__slider .swiper-control__wrap .swiper-button-next:after,
  .p-works__slider .swiper-control__wrap .swiper-button-prev:after {
    width: 32px;
    height: 32px;
  }

  .p-works__slider .swiper-control__wrap .swiper-button-next {
    right: 0;
  }

  .p-works__slider .swiper-control__wrap .swiper-button-prev {
    left: 0;
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
  }

  .p-works__slider .swiper-pagination {
    margin-top: 40px;
    gap: 1.875rem;
  }

  .p-works__slider .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
  }

  .p-works__slider .swiper-pagination-bullet-active {
    width: 18px;
    height: 18px;
  }
}

/* ---------------------------------------------
  menu section
  --------------------------------------------- */
.p-menu-section {
  padding: 7.5rem 0 9.375rem;
}

.p-top-menu {
  background-color: #F1F1F1;
  padding: 9.375rem 0;
}

.p-menu__list {
  max-width: 1048px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6.25rem;
  margin-top: 80px;
}

.p-menu__list .item {
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.p-menu__list .menu-img {
  position: relative;
}

.p-menu__list .menu-img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.35;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s ease;
}

.p-menu__list .menu-img img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.p-menu__list .menu-text {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2.5rem;
}

.p-menu__list .menu-text::after {
  content: "";
  display: block;
  transition: 0.3s ease;
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: url("../img/common/icon_arrow.svg") no-repeat center/100%;
}

.p-menu__list .menu-num {
  font-family: "Hanken Grotesk", sans-serif;
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #BABABB;
}

.p-menu__list .menu-ttl {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
}

.p-menu__list a {
  transition: 0.3s ease;
}

@media (hover: hover) {
  .p-menu__list a:hover .menu-img::before {
    opacity: 0.5;
  }

  .p-menu__list a:hover .menu-text::after {
    -ms-transform: scale(1.3);
    transform: scale(1.3);
  }
}

@media screen and (max-width: 768px) {
  .p-top-menu {
    padding: 46px 0 64px;
  }

  .p-top-menu .c-ttl {
    margin-bottom: 24px;
  }

  .p-top-menu .u-center {
    text-align: left;
  }

  .p-menu__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
  }

  .p-menu__list .menu-text {
    gap: 16px;
  }

  .p-menu__list .menu-text::after {
    width: 18px;
    height: 18px;
    background-image: url("../img/common/icon_arrow_sp.svg");
  }

  .p-menu__list .menu-num {
    font-size: 1rem;
  }

  .p-menu__list .menu-ttl {
    font-size: 0.8125rem;
  }
}

/* ---------------------------------------------
  target section
  --------------------------------------------- */
.p-target-section {
  padding: 7.5rem 0 9.375rem;
}

.p-top-target {
  padding: 7.5rem 0 9.375rem;
  background-color: #000;
  border-radius: 0 0 0 120px;
  position: relative;
  overflow: hidden;
}

.p-top-target::before {
  content: "";
  display: block;
  width: 51.04vw;
  min-width: 45.9375rem;
  aspect-ratio: 735/566;
  background: url("../img/common/bg_mark_r.svg") no-repeat center/100%;
  opacity: 0.1;
  position: absolute;
  top: 22%;
  left: -6%;
}

.p-top-target .c-ttl {
  color: #fff;
}

.p-top-target .c-ttl .ja {
  opacity: 0.6;
}

.p-top-target .c-lead {
  color: #fff;
}

.p-target__list {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
  margin-top: 80px;
}

.p-target__list .item {
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.p-target__list .target-img {
  position: relative;
}

.p-target__list .target-img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s ease;
}

.p-target__list .target-img img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-target__list .target-text {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 55%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  gap: 2.5rem;
}

.p-target__list .target-text::after {
  content: "";
  transition: 0.3s ease;
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: url("../img/common/icon_arrow.svg") no-repeat center/100%;
  margin: 40px auto 0;
}

.p-target__list .text-en {
  font-family: "Hanken Grotesk", sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #F1F1F1;
}

.p-target__list .target-ttl {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-bottom: 10px;
}

.p-target__list a {
  transition: 0.3s ease;
}

@media (hover: hover) {
  .p-target__list a:hover .target-img::before {
    opacity: 0.5;
  }

  .p-target__list a:hover .target-text::after {
    -ms-transform: scale(1.3);
    transform: scale(1.3);
  }
}

@media screen and (max-width: 768px) {
  .p-top-target {
    padding: 46px 0 74px;
    border-radius: 0 0 0 60px;
  }

  .p-top-target::before {
    width: 96vw;
    min-width: 21.875rem;
    top: 15%;
    left: -25%;
  }

  .p-top-target .c-ttl {
    margin-bottom: 24px;
  }

  .p-top-target .u-center {
    text-align: left;
  }

  .p-target__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
  }

  .p-target__list .target-text {
    gap: 16px;
  }

  .p-target__list .target-text::after {
    width: 18px;
    height: 18px;
    background-image: url("../img/common/icon_arrow_sp.svg");
    margin-top: 16px;
  }

  .p-target__list .text-en {
    font-size: 0.625rem;
    font-weight: 400;
  }

  .p-target__list .target-ttl {
    font-size: 0.875rem;
    margin-bottom: 5px;
  }
}

/* ---------------------------------------------
  top crient
  --------------------------------------------- */
.p-top-client {
  padding: 6.25rem 0 10rem;
  overflow: hidden;
}

.p-top-client-slider {
  margin-top: 6.25rem;
}

.p-top-client-slider .swiper-wrapper {
  transition-timing-function: linear;
  -ms-flex-align: center;
  align-items: center;
}

.p-top-client-slider .swiper-slide {
  width: auto;
  padding: 0 50px;
}

@media screen and (max-width: 768px) {
  .p-top-client {
    padding: 50px 0 64px;
  }

  .p-top-client-slider {
    margin-top: 40px;
  }

  .p-top-client-slider .swiper-slide {
    padding: 0 20px;
  }
}

/* ---------------------------------------------
  top media
  --------------------------------------------- */
.p-top-media {
  background-color: #F1F1F1;
  padding: 7.5rem 0;
}

.p-top-media .c-ttl {
  margin-bottom: 6.25rem;
}

.p-top-media__block {
  max-width: 500px;
  margin: 0 auto;
}

.p-top-media__block img {
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.p-top-media-other {
  max-width: 500px;
  margin: 50px auto 0;
}

.p-top-media-other .ttl {
  font-size: 1.25rem;
  font-weight: 700;
  opacity: 0.6;
  border-bottom: 1px solid #333333;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.p-top-media-other .media-list li {
  font-size: 1.125rem;
  font-weight: 700;
  text-indent: -1rem;
  padding-left: 1rem;
}

.p-top-media-other .media-list li:not(:last-child) {
  margin-bottom: 10px;
}

.p-top-media-other .media-list li::before {
  content: "・";
}

.p-top-media-other .u-right {
  font-weight: 700;
  font-size: 1.125rem;
}

.p-top-media__grid {
  display: flex;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.media-item {
  text-align: center;
  width: 48.5%;
}

.media-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.media-title {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 900;
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff;
}


@media screen and (max-width: 768px) {
  .p-top-media {
    padding: 48px 0 64px;
  }

  .p-top-media .c-ttl {
    margin-bottom: 40px;
  }

  .p-top-media-other {
    margin: 42px auto 0;
  }

  .p-top-media-other .ttl {
    font-size: 1.125rem;
  }

  .p-top-media-other .media-list li {
    font-size: 0.875rem;
    font-weight: 700;
    text-indent: -0.875rem;
    padding-left: 0.875rem;
  }

  .p-top-media-other .media-list li:not(:last-child) {
    margin-bottom: 16px;
  }

  .p-top-media-other .media-list li::before {
    content: "・";
  }

  .p-top-media-other .u-right {
    font-size: 0.875rem;
    margin-top: 10px;
  }

  .p-top-media__grid {
    grid-template-columns: 1fr;
  }

  .media-item {
    width: 100%;
  }
}

/* ---------------------------------------------
   top blog
  --------------------------------------------- */
.p-top-blog {
  padding: 10rem 0;
  background-color: #000;
  border-radius: 0 0 120px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.p-top-blog .c-ttl {
  color: #fff;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-top-blog .c-lead {
  text-align: left;
  color: #fff;
  font-weight: 300;
}

.p-top-blog .c-btn {
  border-color: #fff;
  background-color: #fff;
  color: #000;
  margin-top: 80px;
}

@media (hover: hover) {
  .p-top-blog .c-btn:hover {
    background-color: #881D1D;
    color: #fff;
  }
}

.p-top-blog .l-wrap {
  max-width: 1280px;
}

.p-top-blog__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 3.75rem;
}

.p-top-blog__text {
  width: 36%;
  max-width: 464px;
}

.p-blog__list {
  -ms-flex: 1;
  flex: 1;
}

.p-blog__list li:not(:last-child) {
  border-bottom: 1px solid rgba(186, 186, 187, 0.4);
  margin-bottom: 32px;
  padding-bottom: 32px;
}

.p-blog__list li a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  transition: 0.3s ease;
  gap: 2.625rem;
  color: #fff;
}

.p-blog__list li a::after {
  content: "";
  display: block;
  transition: 0.3s ease;
  width: 24px;
  height: 24px;
  background: url("../img/common/icon_arrow.svg") no-repeat center/100%;
}

@media (hover: hover) {
  .p-blog__list li a:hover {
    opacity: 0.7;
  }

  .p-blog__list li a:hover::after {
    -ms-transform: scale(1.3);
    transform: scale(1.3);
  }
}

.p-blog__list .p-blog__img {
  width: 34%;
}

.p-blog__list .p-blog__img img {
  aspect-ratio: 254/140;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}

.p-blog__list .p-blog__text {
  -ms-flex: 1;
  flex: 1;
}

.p-blog__list .blog-date {
  width: 100%;
  font-weight: 300;
  font-style: italic;
  font-family: "Hanken Grotesk", sans-serif;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 8px;
  letter-spacing: 0;
}

.p-blog__list .blog-ttl {
  width: 100%;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-top-blog {
    padding: 44px 0;
    border-radius: 0 0 60px 0;
  }

  .p-top-blog .c-ttl {
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 32px;
  }

  .p-top-blog .c-btn {
    margin-top: 40px;
  }

  .p-top-blog__container {
    display: block;
  }

  .p-top-blog__text {
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .p-blog__list {
    -ms-flex: 1;
    flex: 1;
  }

  .p-blog__list .p-blog__img {
    width: 38%;
  }

  .p-blog__list .p-blog__img img {
    aspect-ratio: 124/83;
  }

  .p-blog__list li {
    border-bottom: 1px solid rgba(186, 186, 187, 0.4);
    margin-bottom: 32px;
    padding-bottom: 32px;
  }

  .p-blog__list li a {
    gap: 24px;
  }

  .p-blog__list li a::after {
    display: none;
  }

  .p-blog__list .blog-date {
    margin-bottom: 4px;
    font-size: 0.75rem;
  }

  .p-blog__list .blog-ttl {
    font-size: 0.875rem;
  }
}

/* -------------------------------
  page component
  ------------------------------- */
/* -------- page-head -------- */
.c-page-head {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 37.5rem;
  background-color: #000;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-bottom: 12px;
  overflow: hidden;
}

.c-page-head::before {
  content: "";
  display: block;
  width: 46vw;
  min-width: 33.75rem;
  aspect-ratio: 694/560;
  background: url("../img/common/bg_mark_g.svg") no-repeat center/100%;
  opacity: 0.1;
  position: absolute;
  top: 0;
  right: -10%;
}

.c-page-head .l-wrap {
  max-width: 1280px;
}

.c-page-head__ttl {
  max-width: 1120px;
  margin: 0 auto;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.c-page-head__ttl .en {
  font-size: 3.75rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  display: inline-block;
  text-transform: uppercase;
}

.c-page-head__ttl .ja {
  font-size: 1.125rem;
  font-weight: 500;
  opacity: 0.76;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .c-page-head {
    height: 17.5rem;
  }

  .c-page-head::before {
    width: 42vw;
    min-width: 17.5rem;
    top: 4%;
    right: -15%;
  }

  .c-page-head__ttl .en {
    font-size: 2.5rem;
  }

  .c-page-head__ttl .ja {
    font-size: 1rem;
  }
}

/* ----------- breadcrumb -----------*/
.c-breadcrumb {
  margin-top: 11.875rem;
  position: relative;
  z-index: 1;
}

.c-breadcrumb__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 1320px;
}

.post.post-works.current-item {
  color: #fff;
  font-weight: 700;
  font-size: 12px;
}

.c-breadcrumb__list {
  color: #fff;
  gap: 10px;
}

.c-breadcrumb__list span.slash {
  opacity: .6;
}

span.current-item {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.c-breadcrumb__list li:not(:last-of-type)::after {
  content: "/";
  display: inline-block;
  color: #fff;
  opacity: 0.6;
  margin: 0 6px;
}

.c-breadcrumb__list li,
.c-breadcrumb__list a {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #fff;
  opacity: 0.6;
}

span.post.post-member.current-item {
  font-size: 0.75rem;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .c-breadcrumb {
    margin-top: 2.5rem;
  }

  .c-breadcrumb__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2px 10px;
  }

  .c-breadcrumb__list li,
  .c-breadcrumb__list a {
    font-size: 0.625rem;
  }
}

.p-section {
  padding: 7.5rem 0 11.875rem;
  border-radius: 0 0 120px 0;
  background-color: #F1F1F1;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.p-section .l-wrap {
  position: relative;
}

@media screen and (max-width: 768px) {
  .p-section {
    padding: 80px 0;
    border-radius: 0 0 60px 0;
  }
}

/* ---------------------------------------------
  about page
  --------------------------------------------- */
.p-about__block.c-fBox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}

.p-about__block.c-fBox .p-about-ttl .text {
  margin-bottom: 40px;
}

.p-about__block.c-fBox .p-about__text {
  width: 55%;
  max-width: 720px;
}

.p-about__block.c-fBox .p-about__img {
  width: 34.58vw;
  margin-left: calc(50% - 50vw);
}

.p-about__list {
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  margin-top: 48px;
}

.p-about__list li {
  width: 33.3333333333%;
  max-width: 148px;
  aspect-ratio: 1/1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.4);
  background-color: #fff;
  border-radius: 50%;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-about__block.c-fBox {
    display: block;
    margin-bottom: 40px;
  }

  .p-about__block.c-fBox .p-about__text {
    width: 100%;
    max-width: 100%;
  }

  .p-about__block.c-fBox .p-about__img {
    margin: 0;
    width: calc(100vw - 18px);
    position: static;
    gap: 30px;
    margin-top: 40px;
  }

  .p-about__block.c-fBox .p-about__img img {
    aspect-ratio: 357/96;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .p-about__block.c-fBox .p-about__img img:first-child {
    border-radius: 0 4px 4px 0;
    -ms-transform: translateX(-24px);
    transform: translateX(-24px);
  }

  .p-about__block.c-fBox .p-about__img img:last-child {
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .p-about__list {
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    margin-top: 30px;
  }

  .p-about__list li {
    font-size: 0.875rem;
  }
}

/* ---------------- about team ---------------- */
.p-about-team {
  background: #000;
  padding: 17.5rem 0 10rem;
  margin-top: -10rem;
  position: relative;
}

.p-about-team .logo-bg {
  width: 100%;
  position: absolute;
  top: 60%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  opacity: 0.25;
  filter: blur(30px);
}

.p-about-team .logo-bg img {
  width: 100%;
}

.p-about-team .l-wrap {
  position: relative;
}

.p-about-team__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 4.5rem;
}

.p-about-team__block .block-text {
  color: #fff;
  width: 47%;
}

.p-about-team__block .c-ttl {
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-about-team__block .block-img {
  width: 53%;
}

.p-about-team__block .block-img img {
  border-radius: 4px;
}

.p-about-team__block .c-btn-list {
  gap: 2.5rem;
  margin-top: 72px;
}

.p-about-team__block .c-btn-list a {
  background-color: #fff;
  color: #000;
}

@media screen and (max-width: 768px) {
  .p-about-team {
    padding: 120px 0 64px;
    margin-top: -64px;
  }

  .p-about-team .logo-bg {
    width: 100%;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    opacity: 0.25;
    filter: blur(30px);
  }

  .p-about-team .logo-bg img {
    width: 100%;
  }

  .p-about-team__block {
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }

  .p-about-team__block .c-ttl {
    margin-bottom: 30px;
  }

  .p-about-team__block .block-text {
    width: 100%;
  }

  .p-about-team__block .block-img {
    width: 100%;
  }

  .p-about-team__block .c-btn-list {
    margin-top: 60px;
  }
}

/* ---------------- about thought ---------------- */
.p-about-thought {
  padding: 7.5rem 0 10rem;
  background-color: #F1F1F1;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.p-about-thought::before {
  content: "";
  display: block;
  width: 63.88vw;
  min-width: 57.5rem;
  aspect-ratio: 920/608;
  background: url("../img/common/bg_mark_s.svg") no-repeat center/100%;
  opacity: 0.5;
  position: absolute;
  top: 6%;
  right: -14%;
}

.p-about-thought .l-wrap {
  position: relative;
  z-index: 1;
}

.p-about-thought .c-ttl {
  margin-bottom: 72px;
}

.p-thought__top {
  max-width: 812px;
  margin: 0 auto;
}

.p-thought__top .thought-ttl {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 50px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.p-about-thought__container {
  max-width: 1014px;
  margin: 8.75rem auto 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6.875rem;
}

.p-about-thought__block {
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.p-about-thought__block:last-child .circle-text {
  top: -2.5rem;
  -ms-transform: none;
  transform: none;
}

.p-about-thought__block .circle-text {
  width: 12.5rem;
  aspect-ratio: 1/1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  line-height: 1.5;
  position: absolute;
  top: 50%;
  left: 0;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-about-thought__block .block-text {
  width: 90%;
  margin: 0 0 0 auto;
  background-color: #fff;
  border: 1px solid rgba(112, 112, 112, 0.3);
  border-radius: 4px;
  padding: 2.375rem 3rem 2.375rem 8.75rem;
}

.p-about-thought__block .thought-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 1.5rem;
}

.p-about-thought__block .thought-list li {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(112, 112, 112, 0.3);
  background-color: rgba(241, 241, 241, 0.3);
  padding: 24px 32px;
  border-radius: 4px;
}

.p-about-thought__block .thought-list li:last-child {
  grid-column: 1/-1;
}

.p-about-thought__block .thought-list li .ttl {
  font-weight: 900;
  font-size: 1.5625rem;
  font-family: "Hanken Grotesk", sans-serif;
  margin-bottom: 10px;
  letter-spacing: 0;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .p-about-thought {
    padding: 64px 0;
  }

  .p-about-thought::before {
    width: 112vw;
    min-width: initial;
    top: 5%;
    right: -50%;
  }

  .p-about-thought .c-ttl {
    margin-bottom: 40px;
  }

  .p-thought__top .thought-ttl {
    font-size: 1.875rem;
    margin-bottom: 40px;
  }

  .p-about-thought__container {
    margin-top: 100px;
    gap: 80px;
  }

  .p-about-thought__block {
    display: -ms-flexbox;
    display: flex;
  }

  .p-about-thought__block:last-child .circle-text {
    top: -3.125rem;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .p-about-thought__block .circle-text {
    width: 6.25rem;
    font-size: 0.75rem;
    top: -3.125rem;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .p-about-thought__block .block-text {
    width: 100%;
    padding: 64px 24px 24px;
  }

  .p-about-thought__block .block-text .desc {
    font-size: 0.8125rem;
  }

  .p-about-thought__block .thought-list {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .p-about-thought__block .thought-list li {
    padding: 24px;
  }

  .p-about-thought__block .thought-list li .ttl {
    font-size: 1.25rem;
  }
}

/* ---------------- about feature ---------------- */
.p-about-feature {
  padding: 7.5rem 0 10rem;
  position: relative;
  z-index: 1;
  background-color: #fff;
}

.p-about-feature .c-ttl {
  margin-bottom: 96px;
}

.p-about-feature__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6rem;
}

.p-about-feature__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
}

.p-about-feature__block:nth-child(odd) {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.p-about-feature__block:nth-child(odd) .block-img {
  margin-left: 0;
  margin-right: calc(50% - 50vw);
}

.p-about-feature__block .block-text {
  width: 43%;
}

.p-about-feature__block .block-img {
  position: relative;
  width: 50vw;
  max-width: 45rem;
  margin-left: calc(50% - 50vw);
}

.p-about-feature__block .block-img .num {
  width: 5.625rem;
  height: 5.625rem;
  border-radius: 0 0 8px 0;
  background-color: #000;
  color: #fff;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 2rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}

.p-about-feature__block .feature-ttl {
  font-weight: 700;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 30px;
}

@media (min-width: 1440px) {
  .p-about-feature__block {
    gap: 0;
  }

  .p-about-feature__block:nth-child(odd) .block-img {
    margin: 0 0 0 auto;
    -ms-transform: translateX(80px);
    transform: translateX(80px);
  }

  .p-about-feature__block .block-img {
    width: 100%;
    max-width: 720px;
    margin: 0 auto 0 0;
    -ms-transform: translateX(-80px);
    transform: translateX(-80px);
  }
}

@media screen and (max-width: 768px) {
  .p-about-feature {
    padding: 64px 0;
  }

  .p-about-feature .c-ttl {
    margin-bottom: 40px;
  }

  .p-about-feature__container {
    gap: 60px;
  }

  .p-about-feature__block {
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .p-about-feature__block:nth-child(odd) {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-about-feature__block:nth-child(odd) .block-img {
    margin: 0;
  }

  .p-about-feature__block .block-text {
    width: 100%;
  }

  .p-about-feature__block .block-img {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .p-about-feature__block .block-img .num {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .p-about-feature__block .feature-ttl {
    font-size: 1.25rem;
    margin-bottom: 16px;
  }
}

/* ---------------------------------------------
  top-works
  --------------------------------------------- */
.p-works-sort {
  border: 1px solid rgba(0, 0, 0, 0.35);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
  position: relative;
  border-radius: 4px;
  padding: 24px 2.5rem;
  color: #000;
}

.not-found {
  margin-top: 20px;
  font-size: 20px;
  color: #333;
}

.p-works-sort .sort-ttl {
  font-weight: 900;
  font-size: 1.25rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.p-works-sort__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 2.5rem;
}

.p-works-sort__block .sort-item {
  width: 30%;
  max-width: 18.125rem;
}

.p-works-sort__block .sort-item .ttl {
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.45;
}

.p-works-sort__block .sort-item input[type=text],
.p-works-sort__block .sort-item select {
  width: 100%;
  padding: 12px 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.35);
  font-size: 0.875rem;
  color: #000;
  font-weight: 700;
}

.p-works-sort__block .sort-item input[type=text] {
  border-radius: 40px;
}

.p-works-sort__block .sort-item ::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.p-works-sort__block .sort-item :-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.p-works-sort__block .sort-item ::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.p-works-sort__block .sort-item input:focus,
.p-works-sort__block .sort-item textarea:focus,
.p-works-sort__block .sort-item select:focus {
  outline: none;
}

.p-works-sort__block .sort-item select {
  color: #000;
}

.p-works-sort__block .sort-item select option:first-child {
  color: rgba(0, 0, 0, 0.4);
}

.p-works-sort__block .sort-item select.sort-select {
  color: rgba(0, 0, 0, 0.4);
}

.p-works-sort__block .sort-item .select-wrap {
  position: relative;
}

.p-works-sort__block .sort-item .select-wrap::after {
  content: "";
  display: block;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  position: absolute;
  top: 49%;
  right: 20px;
  -ms-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  pointer-events: none;
}

.p-works-sort__block .sort-button {
  background-color: #000;
  font-weight: 700;
  color: #fff;
  font-family: "Hanken Grotesk", sans-serif;
  display: block;
  -ms-flex: 1;
  flex: 1;
  max-width: 200px;
  border-radius: 60px;
  padding: 16px;
  letter-spacing: 0;
  text-align: center;
}

.p-works__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.625rem 3.375rem;
  margin-top: 80px;
}

.p-works__list .works-img {
  border-radius: 4px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.p-works__list .works-img img {
  aspect-ratio: 1/1;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-works__list .works-category {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.p-works__list .works-category li {
  background-color: #000;
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 2px 10px;
}

.p-works__list .works-ttl {
  line-height: 1.2;
  font-weight: 700;
  margin-top: 12px;
}

.p-works__list a {
  transition: 0.3s ease;
  display: block;
  width: 100%;
}

@media (hover: hover) {
  .p-works__list a:hover {
    opacity: 0.7;
  }
}

/* ------------ pagenation ------------*/
ul.page-numbers {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 160px;
  gap: 16px;
}

.page-numbers li .page-numbers {
  font-family: "Hanken Grotesk", sans-serif;
  display: block;
  width: 48px;
  height: 48px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: 0.3s ease;
  font-weight: 700;
  border-radius: 4px;
  color: #000;
}

.page-numbers li .page-numbers.current {
  color: #fff;
  background-color: #000;
}

.page-numbers li a.page-numbers:hover {
  opacity: 0.7;
}

.page-numbers.prev,
.page-numbers.next {
  width: 48px;
}

.page-numbers.prev::before,
.page-numbers.next::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.page-numbers.prev::before {
  border-left: 4px solid #000;
  border-bottom: 4px solid #000;
}

.page-numbers.next::before {
  border-top: 4px solid #000;
  border-right: 4px solid #000;
}

@media screen and (max-width: 768px) {
  .p-works-sort {
    padding: 24px;
  }

  .p-works-sort .sort-ttl {
    font-size: 1.125rem;
  }

  .p-works-sort__block {
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
  }

  .p-works-sort__block .sort-item {
    width: 100%;
    max-width: 100%;
  }

  .p-works-sort__block .sort-item .ttl {
    margin-bottom: 8px;
  }

  .p-works-sort__block .sort-button {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
  }

  .p-works__list {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }

  .p-works__list .works-ttl {
    font-size: 1rem;
  }

  ul.page-numbers {
    margin-top: 80px;
  }

  .page-numbers li .page-numbers {
    width: 40px;
    height: 40px;
  }
}

/* ---------------------------------------------
  works article
  --------------------------------------------- */
.c-article-head::before {
  z-index: 2;
  opacity: 0.08;
}

.c-article-head .c-article-head__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.c-article-head .c-article-head__img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
}

.c-article-head .c-article-head__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-article-head .c-page-head__ttl {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 1;
  padding-bottom: 20px;
  letter-spacing: 0;
}

.p-works-article__area .l-wrap {
  max-width: 1280px;
}

.p-works-article__area .p-works__ttl {
  text-align: center;
  font-weight: 700;
  font-size: 2.25rem;
  margin-bottom: 80px;
}

.p-works-article__area .c-btn-list {
  gap: 24px;
}

.p-works-article__area .c-btn-list .c-btn {
  width: 254px;
}

.p-works-article__area .c-btn-list .c-btn.back {
  background-color: #fff;
  border: 2px solid #DBDBDB;
  color: #000;
}

@media (hover: hover) {
  .p-works-article__area .c-btn-list .c-btn.back:hover {
    opacity: 0.7;
  }
}

.p-works-article__block {
  display: -ms-flexbox;
  display: flex;
  gap: 3.5rem;
}

.p-works-article__text {
  -ms-flex: 1;
  flex: 1;
}

.p-works-article__text h3 {
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.p-works-article__text h3:not(:first-of-type) {
  margin-top: 40px;
}

.p-works-article__text p {
  color: #3B4043;
}

.p-works-article__img {
  width: 54%;
  max-width: 684px;
}

.p-works-article__img img {
  border-radius: 4px;
  width: 100%;
}

.p-works-article__img .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.p-works-article__img .list li img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.p-works-article__img>.item>img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .c-article-head .c-page-head__ttl {
    font-size: 1.75rem;
  }

  .p-works-article__area .p-works__ttl {
    font-size: 1.75rem;
    margin-bottom: 40px;
  }

  .p-works-article__area .c-btn-list {
    gap: 24px;
    margin-top: 64px;
  }

  .p-works-article__area .c-btn-list .c-btn {
    width: 100%;
    max-width: 324px;
  }

  .p-works-article__block {
    display: block;
  }

  .p-works-article__text {
    -ms-flex: 1;
    flex: 1;
  }

  .p-works-article__text h3 {
    font-size: 1.125rem;
    margin-bottom: 16px;
  }

  .p-works-article__img {
    width: 100%;
    max-width: 100%;
    margin-top: 40px;
  }
}

/* ---------------------------------------------
  page members
  --------------------------------------------- */
.p-members-section .l-wrap {
  max-width: 1180px;
}

.p-members-section .c-ttl {
  margin-bottom: 72px;
}

.p-members__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.5rem;
}

.p-members__block .area-ttl {
  text-align: center;
  color: #3B4043;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 24px;
}

.p-members__block .members-list {
  width: 100%;
}

.p-members__block .members-list thead {
  border-radius: 4px;
  overflow: hidden;
}

.p-members__block .members-list thead th {
  background-color: #000;
  color: #fff;
  padding: 10px 0;
  font-weight: 500;
  font-size: max(1rem, 12px);
}

.p-members__block .members-list thead th:first-of-type {
  border-radius: 4px 0 0 4px;
  padding-left: 1.5rem;
}

.p-members__block .members-list thead th:last-of-type {
  border-radius: 0 4px 4px 0;
}

.p-members__block .members-list tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  letter-spacing: 0.05em;
}

.p-members__block .members-list tbody td {
  padding: 40px 0;
  font-weight: 700;
  font-size: max(1rem, 12px);
}

.p-members__block .members-list tbody td:first-of-type {
  padding-left: 1.5rem;
}

.p-members__block .members-list tbody td:last-of-type {
  width: 30%;
}

@media screen and (max-width: 768px) {
  .c-page-members .en {
    font-size: 2.125rem;
  }

  .p-members__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .p-members__block .area-ttl {
    text-align: center;
    color: #3B4043;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 24px;
  }

  .p-members__block .members-list {
    width: 100%;
  }

  .p-members__block .members-list thead {
    border-radius: 4px;
    overflow: hidden;
  }

  .p-members__block .members-list thead th {
    background-color: #000;
    color: #fff;
    padding: 6px 0;
    font-weight: 500;
    font-size: 0.8125rem;
  }

  .p-members__block .members-list thead th:first-of-type {
    border-radius: 4px 0 0 4px;
    padding-left: 12px;
  }

  .p-members__block .members-list thead th:last-of-type {
    border-radius: 0 4px 4px 0;
    padding-right: 12px;
  }

  .p-members__block .members-list tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  }

  .p-members__block .members-list tbody td {
    padding: 30px 0;
    font-weight: 700;
    font-size: 0.75rem;
  }

  .p-members__block .members-list tbody td:first-of-type {
    padding-left: 12px;
  }

  .p-members__block .members-list tbody td:last-of-type {
    width: 28%;
  }
}


/* ---------------------------------------------
  single member
  --------------------------------------------- */
.p-member-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.p-member-detail__image {
  flex: 1 1 300px;
}

.p-member-detail__info {
  flex: 2 1 500px;
}

.p-member-detail__name {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 1rem;
}

.p-member-detail__meta dt {
  font-weight: bold;
  margin-top: 1rem;
}

.p-member-detail__meta dd {
  margin: 0 0 1rem;
}

/* ---------------------------------------------
  page overview
  --------------------------------------------- */
.p-overview-section .l-wrap {
  max-width: 1280px;
}

.p-outline__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2.5rem;
}

.p-outline__container .c-ttl {
  -ms-flex: 1;
  flex: 1;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-outline__container .c-btn {
  width: 100%;
  max-width: 330px;
  margin: 60px 0 0 auto;
}

.p-outline__block {
  width: 74%;
  max-width: 960px;
  margin-top: 4.375rem;
}

.p-outline__block dl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  padding: 40px 0;
  line-height: 2;
  font-size: max(1rem, 13px);
}

.p-outline__block dl:first-child {
  padding-top: 0;
}

.p-outline__block dl dt {
  width: 154px;
  font-weight: 900;
}

.p-outline__block dl dd {
  -ms-flex: 1;
  flex: 1;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-outline__container {
    display: block;
  }

  .p-outline__container .c-ttl {
    -ms-flex-align: center;
    align-items: center;
  }

  .p-outline__container .c-btn {
    width: 100%;
    max-width: 330px;
    margin: 60px 0 0 auto;
  }

  .p-outline__block {
    width: 100%;
    max-width: 100%;
    margin-top: 60px;
  }

  .p-outline__block dl {
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
    padding: 24px 0;
    font-size: 0.875rem;
  }

  .p-outline__block dl:first-child {
    padding-top: 0;
  }

  .p-outline__block dl dt {
    width: 100%;
  }
}

/* ---------------------------------------------
  blog archive
  --------------------------------------------- */
.p-blog-archive__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-blog-archive__item {
  background: #fff;
  /* border: 1px solid #e0e0e0; */
  transition: box-shadow 0.3s;
}

.p-blog-archive__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.p-blog-archive__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.p-blog-archive__meta {
  padding: 15px 0;
}

.p-blog-archive__date {
  display: block;
  font-size: 0.85em;
  color: #888;
  margin-bottom: 5px;
}

.p-blog-archive__title {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.4;
}

section.p-blog-archive {
  padding-top: 100px;
  padding-bottom: 300px;
}

.p-blog-archive__thumb img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}

/* ページネーション全体 */
.p-pagination {
  text-align: center;
  margin: 40px 0;
}

.wp-pagenavi {
  margin-top: 40px;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
  display: inline-flex;
  gap: 16px;
  align-items: center;
}

/* 数字ボタン */
.wp-pagenavi a.page,
.wp-pagenavi span.current {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s;
}

/* 現在のページ */
.wp-pagenavi span.current {
  background-color: #000;
  color: #fff;
}

/* 他のページ */
.wp-pagenavi a.page {
  color: #000;
}

.wp-pagenavi a.page:hover {
  background-color: #f0f0f0;
}

/* 矢印ボタン */
.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  width: 40px;
  height: 40px;
  border-radius: 6px;
}

.wp-pagenavi a.last, .wp-pagenavi a.first {
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
}

.wp-pagenavi a.previouspostslink:hover,
.wp-pagenavi a.nextpostslink:hover {
  opacity: 0.7;
}

/* 使用不可な矢印（例えば前へが非表示） */
.wp-pagenavi .previouspostslink[aria-disabled="true"],
.wp-pagenavi .nextpostslink[aria-disabled="true"] {
  color: #ccc;
  pointer-events: none;
}

/* 「1 / 13」などの表示は非表示に */
.wp-pagenavi .pages {
  display: none;
}

/* 省略記号 ... は少し余白調整 */
.wp-pagenavi .extend {
  display: inline-block;
  padding: 0 4px;
  color: #888;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  opacity: .5;
}


/* ---------------------------------------------
  single post
  --------------------------------------------- */
.p-news-article__content *:not(:first-child) {
  margin-top: 20px;
}

time.date {
  font-weight: 700;
  font-size: 20px;
}

span.blog-category a {
  font-size: 12px;
  background: #333;
  padding: 2.5px 10px;
  font-weight: 700;
  color: #fff;
  height: 100%;
  display: inline-block;
}

span.blog-category {
  margin-left: 10px;
}

h2.p-news-article__title {
  margin-top: 10px;
  font-size: 32px;
  font-weight: 700;
}

.p-news-article__content {
  margin-top: 40px;
}

/* ---------------------------------------------
  single page
  --------------------------------------------- */
.l-page-content {
  padding: 100px 0 300px 0;
}

.smb-section__subtitle {
  font-size: 2.875rem !important;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 800 !important;
  line-height: 1.4 !important;
  text-transform: uppercase;
}

.c-paragraph {
  margin-top: 20px;
}

h2.smb-section__title {
  font-size: 1.125rem;
  font-weight: 700;
  /* opacity: .6; */
}

h2.wp-block-heading {
    font-weight: 700;
        font-size: 32px;
    border-left: 7.5px solid;
    padding-left: 10px;
}
h2.wp-block-heading:not(:first-child) {
  margin-top: 60px;
}

h3.wp-block-heading {
  font-weight: 700;
  font-size: 2rem;
  font-weight: 900;
}

h3.wp-block-heading+* {
  margin-top: 20px;
}

h4.wp-block-heading {
  font-size: 24px;
  font-weight: 900;
}

h4.wp-block-heading:not(:first-child) {
  margin-top: 20px;
}

h5.wp-block-heading {
  font-size: 20px;
  font-weight: 900;
}

h5.wp-block-heading:not(:first-child) {
  margin-top: 20px;
}

.smb-section__body>*:not(:first-child) {
  margin-top: 20px;
}

.smf-form.smf-form--business *:not(:first-child) {
  margin-top: 0;
}

.smb-section__body h3.wp-block-heading:not(:first-child) {
  margin-top: 60px;
}

figure.wp-block-image img {
  width: 100%;
}

figure.wp-block-image {
  position: relative;
}

figcaption.wp-element-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #000;
  color: #fff;
  width: 100%;
  padding: 10px;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

.wp-block-embed__wrapper {
  text-align: center;
}

div#--description {
  color: #881D1D;
  font-weight: 700;
}

section.r {
  position: relative;
  background-color: #F1F1F1;
  overflow: hidden;
}

section.r::before {
  content: "";
  display: block;
  width: 51.04vw;
  min-width: 45.9375rem;
  aspect-ratio: 735 / 566;
  background: url(../img/common/bg_mark_r.svg) no-repeat center / 100%;
  opacity: 0.5;
  position: absolute;
  top: 22%;
  left: -6%;
}

.smb-section__background-text, .smb-section__fixed-background {
  z-index: -1;
}

.smb-items__item__figure img {
  width: 100%;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.smb-media-text__figure img {
  border-radius: 4px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}

.wp-block-snow-monkey-blocks-buttons:not(first-child) {
  margin-top: 20px;
}

a.smb-btn {
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
  font-weight: 700;
  display: -ms-flexbox;
  display: flex !important;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  transition: 0.3s ease;
  line-height: 1.875;
  letter-spacing: 0;
  padding: 15px 20px;
  border-radius: 60px;
}

a.smb-btn:hover {
  background-color: #881D1D;
}

ul.wp-block-list>li:not(:first-child) {
  margin-top: 20px;
}

.c-row {
  padding: 10px;
}

@media screen and (max-width: 768px) {
  .smb-section__subtitle {
    font-size: 1.875rem ! IMPORTANT;
  }

  h2.smb-section__title {
    font-size: 0.875rem;
  }
}

/* ---------------------------------------------
  members page
  --------------------------------------------- */

/* 都道府県見出し */
.member-prefecture__title {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: .1em;
  margin: 2em 0 1em;
  border-left: 10px solid #222;
  padding-left: 15px;
  color: #222;

}

/* 加盟店カードを横並び */
.member-prefecture__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.p-members__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  /* ブロック同士の間隔（必要に応じて調整） */
}

.p-members__block {
  width: 100%;
}

/* 加盟店1店舗のカード */
.member-card {
  display: flex;
  flex-direction: row;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  align-items: center;
}

.member-card__image {
  width: 40%;
}

.member-card__image img {
  height: auto;
  object-fit: cover;
  display: block;
  aspect-ratio: 5 / 3;
}

.member-card__info {
  padding: 16px;
  flex: 1;
}

.member-card__name {
  font-size: 32px;
  letter-spacing: .1em;
  margin: 0 0 8px;
  font-weight: 900;
  padding-bottom: 10px;
  border-bottom: 1px solid #F1F1F1;
}

.member-card__name a {
  color: #222;
  text-decoration: none;
}

.member-card__name a:hover {
  text-decoration: underline;
}

.member-card__address,
.member-card__tel {
  font-size: 20px;
  margin: 4px 0;
  font-weight: 500;
}

select#prefecture-filter {
  font-size: 16px;
  padding: 10px 20px;
  border: 1px solid;
  border-radius: 5px;
  appearance: auto;
  font-weight: 700;
}

.to-rise-wrapper a.c-btn {
    width: fit-content;
    padding: 15px;
}
.to-rise-wrapper {
    display: flex
;
    justify-content: end;
    margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .member-card {
    flex-direction: column;
  }

  .member-card__image {
    width: 100%;
  }

  .member-card__info {
    width: 100%;
  }

}

/* ---------------------------------------------
  search page
  --------------------------------------------- */
body.search li.search.current-item:last-child {
  display: none;
}

body.search .c-breadcrumb__list {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

body.search .c-breadcrumb__list li:first-child span {
  color: #fff;
}

body.search .c-breadcrumb__list li:first-child::after {
  display: none;
}

@media screen and (max-width: 768px) {
  body.search .c-breadcrumb__list {
    flex-wrap: wrap-reverse;
  }
}

/* ---------------------------------------------
  404 page
  --------------------------------------------- */
h2.p-404__ttl {
  font-size: 24px;
  font-weight: 700;
}

p.p-404__text {
  margin-top: 20px;
}