@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 1150px) {
  html {
    font-size: 1.3913043478vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

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

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

.l-inner {
  width: 100%;
  max-width: 75rem;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.l-section {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding: 0;
  }
}

main {
  margin-top: 11.25rem;
}
@media screen and (max-width: 767px) {
  main {
    margin-top: 5.625rem;
  }
  main.top-main {
    margin-top: 7.5rem;
  }
}

.c-header--lower + main {
  margin-top: 12.5rem;
}
@media screen and (max-width: 767px) {
  .c-header--lower + main {
    margin-top: 8.4375rem;
  }
}

.layout-c-footer {
  margin-top: 2.1875rem;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .layout-c-footer {
    margin-top: 1.5rem;
  }
}

.layout-p-project {
  margin-top: 6.25rem;
  margin-bottom: 9rem;
}
@media screen and (max-width: 767px) {
  .layout-p-project {
    margin-top: 6rem;
    margin-bottom: revert;
  }
}

.layout-p-community {
  margin: 6.25rem 0;
}
@media screen and (max-width: 767px) {
  .layout-p-community {
    margin: 5rem 0;
  }
}

.layout-p-architectural-overview {
  padding: 6.25rem 0;
  background-color: #f8f8f8;
}
@media screen and (max-width: 767px) {
  .layout-p-architectural-overview {
    padding: 5rem 0;
  }
}

.layout-p-articles-header {
  margin-top: 3.625rem;
}
@media screen and (max-width: 767px) {
  .layout-p-articles-header {
    margin-top: 2.375rem;
  }
}

.layout-p-articles {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .layout-p-articles {
    margin-top: 2.4375rem;
  }
}

.c-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.125rem;
  width: 100%;
  max-width: 400px;
  background: #F07800;
  color: #FFFFFF;
  border: 1px solid #F07800;
  border-radius: 0.3125rem;
  font-size: 56px;
  font-family: inherit;
  font-weight: 400;
  transition: color 0.3s, background-color 0.3s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-button {
    max-width: 20.9375rem;
  }
}
.c-button:hover {
  color: #F07800;
  background-color: #FFFFFF;
}
.c-button:hover .c-button__icon {
  filter: invert(48%) sepia(67%) saturate(2837%) hue-rotate(355deg) brightness(101%) contrast(102%);
}

.c-button__icon {
  aspect-ratio: 15/13;
  max-width: 0.9375rem;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  transition: filter 0.3s;
}
.c-button__icon > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-button__text {
  font-size: 15px;
  font-weight: 500;
  color: inherit;
}

.c-button.c-button--wide {
  max-width: 28.6875rem;
}

.c-column2 {
  display: grid;
  gap: 1.875rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .c-column2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

.c-column2--gap60 {
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .c-column2--gap60 {
    gap: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .c-column2--gapSp20 {
    gap: 1.25rem;
  }
}

.c-column3 {
  display: grid;
  gap: 1.875rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .c-column3 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.c-column4 {
  display: grid;
  gap: 1.875rem;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .c-column4 {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .c-column4--sp2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-facilities-card {
  text-align: center;
  background-color: #FFFFFF;
  width: 100%;
}

.c-facilities-card__body {
  max-width: 15rem;
  height: 11.25rem;
  border: 1px solid #DDDDDD;
  position: relative;
  border-radius: 0.1875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
}

.c-facilities-card__image {
  aspect-ratio: 177/30;
  max-width: 11.0625rem;
  width: 100%;
  height: auto;
}

.c-facilities-card__image--ncbhall {
  max-width: 5.8125rem;
  aspect-ratio: 93/71;
}

.c-facilities-card__tag {
  position: absolute;
  bottom: 0;
  right: 0;
  font-family: "Roboto", sans-serif;
  background-color: #1A1A1A;
  color: #FFFFFF;
  font-size: 0.8125rem;
  font-weight: 400;
  width: 1.875rem;
  padding: 0.25rem;
  border-radius: 3px 0 3px 0;
}

.c-facilities-card__text {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .c-footer__inner.l-inner {
    padding-inline: 1.1875rem;
  }
}
.c-footer__inner.l-inner .c-footer__links {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-footer__inner.l-inner .c-footer__links {
    text-align: left;
    padding-bottom: 1.6875rem;
    border-bottom: 1px solid rgba(112, 112, 112, 0.3);
  }
}
.c-footer__inner.l-inner .c-footer__links .c-footer__link-list {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-footer__inner.l-inner .c-footer__links .c-footer__link-list {
    flex-direction: column;
    row-gap: 0.4375rem;
    justify-content: flex-start;
  }
}
.c-footer__inner.l-inner .c-footer__links .c-footer__link-list .c-footer__link-item {
  position: relative;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-footer__inner.l-inner .c-footer__links .c-footer__link-list .c-footer__link-item {
    padding-inline: revert;
  }
}
.c-footer__inner.l-inner .c-footer__links .c-footer__link-list .c-footer__link-item a {
  color: #333;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: revert;
  transition: color 0.3s ease;
}
.c-footer__inner.l-inner .c-footer__links .c-footer__link-list .c-footer__link-item a:hover {
  color: #F07800;
}
@media screen and (max-width: 767px) {
  .c-footer__inner.l-inner .c-footer__links .c-footer__link-list .c-footer__link-item::before, .c-footer__inner.l-inner .c-footer__links .c-footer__link-list .c-footer__link-item::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1.875rem;
    background-color: #BBBBBB;
  }
  .c-footer__inner.l-inner .c-footer__links .c-footer__link-list .c-footer__link-item::before {
    left: 0;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .c-footer__inner.l-inner .c-footer__links .c-footer__link-list .c-footer__link-item::before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .c-footer__inner.l-inner .c-footer__links .c-footer__link-list .c-footer__link-item::after {
    right: 0;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .c-footer__inner.l-inner .c-footer__links .c-footer__link-list .c-footer__link-item::after {
    display: none;
  }
}
.c-footer__inner.l-inner .c-footer__links .c-footer__link-list .c-footer__link-item:not(.-mq-md):first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.875rem;
  background-color: #BBBBBB;
}
@media screen and (max-width: 767px) {
  .c-footer__inner.l-inner .c-footer__links .c-footer__link-list .c-footer__link-item:not(.-mq-md):first-child::before {
    display: none;
  }
}
.c-footer__inner.l-inner .c-footer__links .c-footer__link-list .c-footer__link-item:not(.-mq-md):last-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.875rem;
  background-color: #BBBBBB;
}
@media screen and (max-width: 767px) {
  .c-footer__inner.l-inner .c-footer__links .c-footer__link-list .c-footer__link-item:not(.-mq-md):last-child::after {
    display: none;
  }
}
.c-footer__inner.l-inner .c-footer__links .c-footer__link-list .c-footer__link-item:not(.-mq-md):not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.875rem;
  background-color: #BBBBBB;
}
@media screen and (max-width: 767px) {
  .c-footer__inner.l-inner .c-footer__links .c-footer__link-list .c-footer__link-item:not(.-mq-md):not(:last-child)::after {
    display: none;
  }
}
.c-footer__inner.l-inner .c-footer__links .c-footer__link-list .c-footer__link-item .c-footer__link-item a {
  color: #333;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: revert;
}

.c-footer__icon {
  margin-left: 0.375rem;
  font-size: 0.9em;
  color: #F07800;
}

.c-footer__branding {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-footer__branding {
    flex-direction: column;
  }
}
.c-footer__branding .c-footer__logo-wrapper {
  width: 23.3125rem;
}
.c-footer__branding .c-footer__logo-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .c-footer__branding .c-footer__logo-wrapper {
    width: 20.9375rem;
  }
}

.c-footer__logo {
  height: 1.875rem;
}

.c-footer__name {
  font-weight: bold;
  font-size: 1rem;
}

.c-footer__sns-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .c-footer__sns-list.only-pc {
    display: none;
  }
}

.c-footer__sns {
  margin-inline: 0.375rem;
}

.c-footer__sns-icon[alt=Facebook] {
  width: 2.25rem;
  height: 2.25rem;
}
@media screen and (max-width: 767px) {
  .c-footer__sns-icon[alt=Facebook] {
    width: 1.8125rem;
    height: 1.8125rem;
  }
}
.c-footer__sns-icon[alt=X] {
  width: 1.6875rem;
  height: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .c-footer__sns-icon[alt=X] {
    width: 1.375rem;
    height: 1.375rem;
  }
}
.c-footer__sns-icon[alt=Instagram] {
  width: 2.25rem;
  height: 2.25rem;
}
@media screen and (max-width: 767px) {
  .c-footer__sns-icon[alt=Instagram] {
    width: 1.8125rem;
    height: 1.8125rem;
  }
}
.c-footer__sns-icon[alt=YouTube] {
  width: 2.375rem;
  height: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .c-footer__sns-icon[alt=YouTube] {
    width: 1.875rem;
    height: 1.375rem;
  }
}

.c-footer__address {
  margin-top: 1.5rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-footer__address {
    margin-top: 1.875rem;
    text-align: center;
  }
}

.c-footer__address-title {
  font-size: 0.875rem;
  font-weight: 600;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: revert;
}
@media screen and (max-width: 767px) {
  .c-footer__address-title {
    font-size: 0.8125rem;
  }
}

.c-footer__address-text {
  margin-left: 0.625rem;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: revert;
}
@media screen and (max-width: 767px) {
  .c-footer__address-text {
    font-size: 0.8125rem;
  }
}

@media screen and (max-width: 767px) {
  .c-footer__address-text span {
    display: block;
  }
}

.c-footer__legal-block {
  margin-top: 1.5625rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .c-footer__legal-block {
    align-items: center;
    width: 100%;
    margin-top: 2.1875rem;
  }
}

.c-footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-footer__logo-wrap.only-pc {
    display: none;
  }
}
.c-footer__logo-wrap .line {
  display: block;
  width: 1px;
  height: 2.5rem;
  background-color: rgba(112, 112, 112, 0.3);
}
@media screen and (max-width: 767px) {
  .c-footer__logo-wrap .line {
    height: 1.875rem;
  }
}

.c-footer__legal {
  margin-top: 3.40625rem;
}
.c-footer__link-icon {
  display: inline-block;
  width: 0.8125rem;
  height: 0.8125rem;
  margin-left: 0.5rem;
  background: url("../images/icon_link.svg") no-repeat center/contain;
  vertical-align: revert;
}

.c-footer__main {
  margin-top: 5.25rem;
  display: flex;
  justify-content: space-between;
  gap: 4.375rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .c-footer__main {
    margin-top: 2.1875rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}

.c-footer__company-logo {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-footer__company-logo {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
  }
  .c-footer__company-logo img {
    width: 9.5625rem;
  }
}

.c-footer__info-block {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .c-footer__info-block {
    margin-inline: auto;
  }
}

.c-footer__legal {
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: revert;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .c-footer__legal {
    margin-top: 0;
    font-weight: 400;
    font-size: 0.6875rem;
    text-align: center;
  }
}

.c-footer__legal-company-logo {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .c-footer__legal-company-logo {
    display: none;
  }
}
.c-footer__legal-company-logo img {
  width: 15.3125rem;
}

.c-footer__copyright {
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: revert;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .c-footer__copyright {
    margin-top: 1.5625rem;
    text-align: center;
    letter-spacing: 0.02em;
  }
}

.only-sp-logo-wrap {
  display: none;
}
@media screen and (max-width: 767px) {
  .only-sp-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.1875rem;
    margin-top: 2.1875rem;
  }
}

.c-hakataxncb-card {
  background-color: #F5F2ED;
  max-width: 21.6875rem;
  scroll-snap-align: start;
}
@media screen and (max-width: 767px) {
  .c-hakataxncb-card {
    max-width: 15.3125rem;
  }
}

.c-hakataxncb-card__imageWrap {
  margin: 0;
}

.c-hakataxncb-card__image {
  aspect-ratio: 346/260;
  max-width: 21.625rem;
  margin-inline: auto;
}
.c-hakataxncb-card__image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 0.4375rem solid #fff;
  border-radius: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .c-hakataxncb-card__image {
    aspect-ratio: 245/183;
    max-width: 15.3125rem;
  }
}

.c-hakataxncb-card__info {
  margin-top: 1rem;
}

.c-hakataxncb-card__meta {
  display: flex;
  align-items: center;
}

.c-hakataxncb-card__date {
  font-size: 1rem;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: rgba(26, 26, 26, 0.4);
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-hakataxncb-card__date {
    font-size: 0.875rem;
  }
}

.c-hakataxncb-card__category {
  margin-left: 1.25rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #F07800;
  border: 1px solid #F07800;
  background-color: #FFFFFF;
  padding: 0rem 1.3125rem;
  border-radius: 4px;
  line-height: 1.3;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-hakataxncb-card__category {
    margin-left: 0.875rem;
    font-size: 0.8125rem;
    padding: 0.1875rem 1.25rem;
    letter-spacing: 0;
  }
}

.c-hakataxncb-card__text {
  margin-top: 0.375rem;
  font-family: "Roboto", sans-serif;
  font-size: 0.9375rem;
  color: #1A1A1A;
  line-height: 1.6;
  font-weight: 400;
}

.c-hakataxncb-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(21.625rem, 1fr));
  gap: 3.0625rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}
@media screen and (max-width: 767px) {
  .c-hakataxncb-cards {
    display: flex;
    margin-right: -1.25rem;
    padding-right: 1.25rem;
  }
}
.c-hakataxncb-cards > * {
  flex: 0 0 auto;
  scroll-snap-align: start;
}
@media screen and (max-width: 1199px) {
  .c-hakataxncb-cards {
    gap: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .c-hakataxncb-cards {
    gap: 1.25rem;
    padding-bottom: 2.375rem;
  }
  .c-hakataxncb-cards::-webkit-scrollbar {
    height: 2px;
  }
  .c-hakataxncb-cards::-webkit-scrollbar-track {
    background: rgba(128, 128, 128, 0.1);
    border-radius: 2px;
  }
  .c-hakataxncb-cards::-webkit-scrollbar-thumb {
    background: rgba(240, 120, 0, 0.6);
    border-radius: 2px;
  }
  .c-hakataxncb-cards::-webkit-scrollbar-thumb:hover {
    background: rgba(240, 120, 0, 0.8);
  }
}

.c-header {
  height: 11.25rem;
  background-color: #EDF2F4;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-header.is-top {
    height: 7.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  }
}
@media screen and (max-width: 767px) {
  .c-header {
    height: 5.625rem;
  }
}
.c-header.is-fixed {
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .c-header.is-fixed {
    height: 5.625rem;
  }
}
.c-header.is-fixed .c-header__hamburger {
  border: 1px solid #f07800;
}

.c-header__inner {
  padding: 0 2.5rem 0 5.625rem;
  height: inherit;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .c-header__inner {
    padding-inline: 1.25rem;
    align-items: center;
  }
}

.c-header__logo {
  max-width: 23.3125rem;
  width: 100%;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .c-header__logo {
    max-width: 16.5625rem;
  }
}

.c-header__logo a {
  height: inherit;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .c-header__logo a {
    gap: 0.5625rem;
  }
}

.c-header__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-header__logo-subtitle {
  margin-top: 9px;
  margin-left: 25px;
  font-size: 0.8125rem;
  color: #333;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-header__logo-subtitle {
    margin-top: revert;
    margin-left: revert;
    font-size: 0.75rem;
  }
}

.c-header__content {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.c-header__utility {
  display: flex;
  gap: 0.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-header__utility {
    display: none;
  }
}
.c-header__utility::after {
  content: "";
  position: absolute;
  bottom: -1.25rem;
  right: -2.5rem;
  width: 300%;
  height: 1px;
  background-color: #BBBBBB;
  transform: translateX(-2.5rem);
}

.c-header__utility-link {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #333;
  position: relative;
  padding-right: 1.3125rem;
  transition: color 0.3s ease;
}
.c-header__utility-link:hover {
  color: #F07800;
}
.c-header__utility-link:last-child::after {
  content: "";
  width: 0.8125rem;
  height: 0.8125rem;
  background: url("../images/icon_link.svg") no-repeat center/contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.c-header__nav {
  margin-top: 2.75rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-header__nav {
    display: none;
  }
}

.c-header__nav-list {
  display: flex;
  gap: 1.625rem;
}

.c-header__nav-item {
  height: inherit;
}

.c-header__nav-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.3125rem;
}

.c-header__nav-item-en {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.11em;
  transition: color 0.3s ease;
}

.c-header__nav-item-ja {
  font-size: 0.75rem;
  font-weight: 400;
  color: #333;
  line-height: 1;
  transition: color 0.3s ease;
}

.c-header__nav-item:hover .c-header__nav-item-en,
.c-header__nav-item:hover .c-header__nav-item-ja {
  color: #F07800;
}

.c-header__hamburger {
  display: none;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 10000;
  width: 3.4375rem;
  height: 3.4375rem;
  border-radius: 5px;
  background-color: #FFFFFF;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-header__hamburger {
    display: block;
  }
}

.c-header__hamburger.is-open {
  background-color: #FFFFFF;
}

.c-header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 1.4375rem;
  border-radius: 2px;
  height: 2px;
  background-color: #F07800;
  transition: all 0.3s ease;
}

.c-header__hamburger span:nth-of-type(1) {
  top: -0.3125rem;
}

.c-header__hamburger span:nth-of-type(2) {
  top: 0.0625rem;
}

.c-header__hamburger span:nth-of-type(3) {
  top: 0.4375rem;
}

.c-header__hamburger.is-open span:nth-of-type(1) {
  top: 2px;
  transform: translateX(-50%) rotate(45deg);
}

.c-header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.c-header__hamburger.is-open span:nth-of-type(3) {
  top: -1px;
  transform: translateX(-50%) rotate(-45deg);
}

.c-header__drawer {
  padding: 9.375rem 0;
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(240, 120, 0, 0.95);
  overflow-y: scroll;
  scrollbar-width: none;
}

.c-header__drawer::-webkit-scrollbar {
  display: none;
}

.c-header__drawer-item a {
  padding: 0.9375rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}

.c-header__drawer-item-en {
  font-family: "Roboto", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}

.c-header__drawer-item-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  color: #FFFFFF;
}

.c-header__drawer-utility {
  margin-top: 3.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  text-align: center;
}

.c-header__drawer-utility-item a {
  padding: 0.625rem 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}

.c-header__drawer-utility-item {
  display: flex;
  justify-content: center;
}

.c-header__drawer-utility-item-external {
  position: relative;
}
.c-header__drawer-utility-item-external .u-icon {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background: url("../images/icon_link.svg") no-repeat center/contain;
  filter: brightness(0) invert(1);
}

.c-headline {
  border-left: 1px solid #333;
  font-size: 1.5rem;
  font-weight: 500;
  color: #333;
  padding-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-headline {
    padding-left: 1.25rem;
    font-size: 1.5rem;
  }
}

.c-hoverRun {
  text-decoration: none;
  color: black;
  background-image: linear-gradient(90deg, black, black);
  background-repeat: no-repeat;
  display: inline;
  background-position: left bottom;
  background-size: 0 1px;
  transition: background-size 0.5s;
}

@media screen and (min-width: 768px) {
  .c-hoverRun:hover {
    background-size: 100% 1px;
  }
}
.c-hoverUnderline {
  position: relative;
  display: inline-block;
}

.c-hoverUnderline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: black;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

@media screen and (min-width: 768px) {
  .c-hoverUnderline:hover::after {
    opacity: 1;
  }
}
.c-imgHover {
  position: relative;
}

.c-imgHover img {
  width: 18.75rem;
  transition: 0.5s opacity;
}

.c-imgHover img:nth-of-type(2) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.5s opacity;
}

@media screen and (min-width: 768px) {
  .c-imgHover:hover img:nth-of-type(1) {
    opacity: 0;
    transition: 0.5s opacity;
  }
  .c-imgHover:hover img:nth-of-type(2) {
    opacity: 1;
    transition: 0.5s opacity;
  }
}
.c-link {
  position: relative;
  line-height: 1;
}

.c-link::after {
  position: absolute;
  content: "";
  width: 1em;
  height: 1em;
  right: -1em;
  top: 0.3em;
  background: url(画像のバスを入れる) center center/contain no-repeat;
}

.c-project-info {
  width: 100%;
  height: auto;
  background-image: url("../images/bg_project-info_01.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 7px solid #F07800;
}
@media screen and (max-width: 767px) {
  .c-project-info {
    background-image: url("../images/sp/bg_project-info_01.jpg");
  }
}
.c-project-info .c-project-info__wrapper {
  padding: 6.8125rem 1.25rem 6.75rem;
  width: 100%;
  height: 100%;
  max-width: 63.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .c-project-info .c-project-info__wrapper {
    padding: 5.6875rem 1.25rem;
  }
}
.c-project-info .c-project-info__wrapper .c-project-info__title {
  font-weight: 600;
  font-size: 1.6875rem;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-project-info .c-project-info__wrapper .c-project-info__title {
    font-size: 1.375rem;
  }
}
.c-project-info .c-project-info__wrapper .c-button {
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .c-project-info .c-project-info__wrapper .c-button {
    margin-top: 1.5625rem;
  }
}
.c-sitemap {
  background-color: #EDF2F4;
  padding: 6.625rem 1.25rem 8rem;
  border-top: 0.3125rem solid #fff;
}
@media screen and (max-width: 767px) {
  .c-sitemap {
    padding: 3.4375rem 0rem 3.125rem;
  }
}

.c-sitemap.c-sitemap--lower {
  margin-top: 0.3125rem;
}

.c-sitemap__inner.l-inner {
  max-width: 75rem;
  padding-left: 5.125rem;
  padding-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-sitemap__inner.l-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.c-sitemap__list {
  display: flex;
  justify-content: center;
  -moz-column-gap: 5.6875rem;
       column-gap: 5.6875rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .c-sitemap__list {
    align-items: center;
    align-items: flex-start;
    -moz-column-gap: 1.6875rem;
         column-gap: 1.6875rem;
  }
}

.c-sitemap__group {
  display: flex;
  gap: 5.6875rem;
}
@media screen and (max-width: 767px) {
  .c-sitemap__group {
    flex: 1;
    flex-direction: column;
    gap: 1.25rem;
  }
}

.c-sitemap__group-list {
  display: flex;
  gap: 5.625rem;
}
@media screen and (max-width: 767px) {
  .c-sitemap__group-list {
    flex-direction: column;
    gap: 0.9375rem;
  }
}

.c-sitemap__item {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #333;
  letter-spacing: revert;
}
@media screen and (max-width: 767px) {
  .c-sitemap__item {
    font-size: 0.875rem;
  }
}
.c-sitemap__item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.c-sitemap__item a:hover {
  color: #F07800;
}

.c-sitemap__sublist {
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .c-sitemap__sublist {
    margin-top: 0.9375rem;
  }
}

.c-sitemap__subitem {
  display: block;
  font-size: 0.9375rem;
  color: #333;
  font-weight: 500;
  position: relative;
  letter-spacing: revert;
}
@media screen and (max-width: 767px) {
  .c-sitemap__subitem {
    font-size: 0.875rem;
  }
}
.c-sitemap__subitem a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.c-sitemap__subitem a:hover {
  color: #F07800;
}

.c-sitemap__subitem + .c-sitemap__subitem {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .c-sitemap__subitem + .c-sitemap__subitem {
    margin-top: 0.625rem;
  }
}

.c-sitemap__item--highlight {
  position: relative;
}
.c-sitemap__item--highlight .c-sitemap__sublist {
  margin-top: 0.9375rem;
  padding-left: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .c-sitemap__item--highlight .c-sitemap__sublist {
    margin-top: 0.625rem;
  }
}

.c-sitemap__item--highlight .c-sitemap__subitem + .c-sitemap__subitem {
  margin-top: 1.125rem;
}
@media screen and (max-width: 767px) {
  .c-sitemap__item--highlight .c-sitemap__subitem + .c-sitemap__subitem {
    margin-top: 0.6875rem;
  }
}

.c-sitemap__item--highlight .c-sitemap__subitem a::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 10px;
  width: 15px;
  height: 1px;
  background-color: #F07800;
}

.c-sitemap__item--highlight .c-sitemap__subitem-non-before a::before {
  content: none;
}

.c-sitemap__item--highlight .c-sitemap__sublist-non-pl {
  padding-left: 0;
}

@media screen and (max-width: 767px) {
  .c-subtitle {
    text-align: center;
  }
}

.c-subtitle.c-subtitle--center {
  text-align: center;
}

.c-subtitle__label {
  display: block;
  font-size: 0.875rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #F07800;
}

.c-subtitle__title {
  margin-top: 1.375rem;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: revert;
}
@media screen and (max-width: 767px) {
  .c-subtitle__title {
    margin-top: 0.875rem;
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: revert;
  }
}

.c-subtitle__highlight {
  color: #F07800;
}

.c-subtitle__note {
  font-size: 0.625rem;
  vertical-align: 1.3125rem;
  margin-left: -0.5rem;
  margin-right: 0.3125rem;
}

.c-title {
  color: #F07800;
}
@media screen and (max-width: 767px) {
  .c-title {
    text-align: center;
  }
}

.c-title__en {
  font-size: 3.4375rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.06em;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .c-title__en {
    font-size: 2.125rem;
    letter-spacing: 0.08em;
  }
}

.c-title__ja {
  margin-top: 0.875rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #F07800;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .c-title__ja {
    margin-top: 1.0625rem;
  }
}

.c-underBar {
  position: relative;
  display: inline-block;
}
.c-underBar::before {
  background-color: #333;
  bottom: 0;
  content: "";
  height: 1px;
  left: 50%;
  opacity: 1;
  position: absolute;
  transform: translateX(-50%);
  transition: 0.5s;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .c-underBar:hover:before {
    opacity: 0;
    transition: 0.5s all;
  }
}
.p-access-sec {
  margin-top: 4.375rem;
  padding: 6.25rem 0.625rem 7.5rem;
  background-color: #EDF2F4;
}
@media screen and (max-width: 767px) {
  .p-access-sec {
    margin-top: 2.5rem;
    padding: 5rem 1.25rem;
  }
}
.p-access-sec .p-access-sec-wrap {
  display: flex;
  flex-direction: column;
  gap: 8.75rem;
  max-width: 58.75rem;
  width: 100%;
  margin: 0 auto 0;
}
@media screen and (max-width: 767px) {
  .p-access-sec .p-access-sec-wrap {
    gap: 5rem;
    max-width: none;
  }
}
.p-access-sec .p-access-sec-item {
  width: 100%;
}
.p-access-sec .p-access-sec-item iframe {
  width: 100%;
  aspect-ratio: 940/455;
}
@media screen and (max-width: 767px) {
  .p-access-sec .p-access-sec-item iframe {
    aspect-ratio: 335/203;
  }
}
.p-access-sec .p-access-sec-item .p-access-sec-heading {
  position: relative;
  padding-bottom: 1.0625rem;
  font-weight: 600;
  font-size: 2.25rem;
  text-align: center;
  color: #1a1a1a;
  border-bottom: 1px solid #d6dbde;
}
@media screen and (max-width: 767px) {
  .p-access-sec .p-access-sec-item .p-access-sec-heading {
    padding-bottom: 1.4375rem;
    font-size: 2rem;
    line-height: 1.5;
  }
}
.p-access-sec .p-access-sec-item .p-access-sec-heading::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 50%;
  transform: translateX(50%);
  width: 8.125rem;
  height: 1px;
  background-color: #f07800;
}
@media screen and (max-width: 767px) {
  .p-access-sec .p-access-sec-item .p-access-sec-heading::after {
    width: 2.875rem;
  }
}
.p-access-sec .p-access-sec-item .p-access-sec-txt {
  margin: 2.5rem 0;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-access-sec .p-access-sec-item .p-access-sec-txt {
    margin: 1.875rem 0;
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
  }
}
.p-access-sec .p-access-sec-item .p-access-sec-item-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-access-sec .p-access-sec-item .p-access-sec-item-list {
    gap: 1.5625rem;
    margin-top: 1.5625rem;
  }
}
.p-access-sec .p-access-sec-item .p-access-sec-item-list li {
  display: flex;
  align-items: center;
  padding-bottom: 0.9375rem;
  border-bottom: 1px solid #d6dbde;
}
@media screen and (max-width: 767px) {
  .p-access-sec .p-access-sec-item .p-access-sec-item-list li {
    flex-direction: column;
    align-items: unset;
    gap: 0.5rem;
    padding-bottom: 1.25rem;
  }
}
.p-access-sec .p-access-sec-item .p-access-sec-item-list li span {
  display: block;
  flex-shrink: 0;
  width: 6.875rem;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: #F07800;
}
@media screen and (max-width: 767px) {
  .p-access-sec .p-access-sec-item .p-access-sec-item-list li span {
    width: auto;
  }
}
.p-access-sec .p-access-sec-item .p-access-sec-item-list li p {
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.p-architectural-overview__inner.l-inner {
  max-width: 71.875rem;
  display: flex;
  gap: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-architectural-overview__inner.l-inner {
    flex-direction: column;
    max-width: 43.75rem;
    gap: revert;
  }
}

.p-architectural-overview__profile {
  margin-top: 5.75rem;
  max-width: 50.6875rem;
}
@media screen and (max-width: 767px) {
  .p-architectural-overview__profile {
    margin-top: 1.8125rem;
  }
}

.p-architectural-profile__list {
  display: grid;
  grid-template-columns: 180px 1fr;
  padding-bottom: 1.1875rem;
  border-bottom: 1px solid #D6DBDE;
}
@media screen and (max-width: 767px) {
  .p-architectural-profile__list {
    grid-template-columns: 1fr;
    padding-bottom: 1.25rem;
  }
}

.p-architectural-profile__list + .p-architectural-profile__list {
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-architectural-profile__list + .p-architectural-profile__list {
    margin-top: 0.84375rem;
  }
}

.p-architectural-profile__term {
  font-weight: 400;
  font-size: 0.875rem;
  position: relative;
  padding-top: 0.25rem;
  padding-left: 1.25em;
  color: #1A1A1A;
  letter-spacing: revert;
}

.p-architectural-profile__term::before {
  content: "【";
  position: absolute;
  left: 0;
}

.p-architectural-profile__term::after {
  content: "】";
  margin-left: 0.25em;
}

.p-architectural-profile__desc {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: revert;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .p-architectural-profile__desc {
    margin-top: 0.5rem;
  }
}

.p-architectural-overview__footnote {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #1A1A1A;
  letter-spacing: revert;
}
@media screen and (max-width: 767px) {
  .p-architectural-overview__footnote {
    margin-top: 1.0625rem;
  }
}

.p-architectural-overview__footnote span {
  font-size: 0.5rem;
  color: #1A1A1A;
}

.p-art {
  padding: 7.75rem 0 7.8125rem;
  background-color: #F5F2ED;
}
@media screen and (max-width: 767px) {
  .p-art {
    padding: 4.9375rem 0 4.9375rem;
  }
}

.p-art__inner.l-inner {
  max-width: 1150px;
}

.p-art__section-wrapper {
  display: flex;
  gap: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-art__section-wrapper {
    justify-content: center;
  }
}

.p-art__section-block {
  max-width: 36.875rem;
}
.p-art__section-block .c-subtitle__title {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-art__section-block .c-subtitle__title {
    white-space: unset;
  }
}

.p-art__body {
  margin-top: 2.5rem;
  width: 92%;
}
@media screen and (max-width: 767px) {
  .p-art__body {
    margin-top: 1.875rem;
    width: 100%;
  }
}

.p-art__text {
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: revert;
  line-height: 2;
  color: #1A1A1A;
}

.p-art__text + .p-art__text {
  margin-top: 1.9375rem;
}

.p-art__note {
  margin-top: 1.375rem;
  max-width: 33.75rem;
  background-color: #FFFFFF;
  padding: 0.9375rem 0.9375rem 1.3125rem 1.3125rem;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .p-art__note {
    margin-top: 1.25rem;
    padding: 0.9375rem 0.9375rem 0rem 0.9375rem;
  }
}

.p-art__note-text {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: revert;
  line-height: 2;
  color: #1A1A1A;
}

.p-art__note-text span {
  font-size: 0.5rem;
}

.p-art__media-block {
  flex: 1;
}

.p-art__media {
  margin-top: -4rem;
  display: flex;
  align-items: flex-end;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-art__media {
    justify-content: center;
  }
}

.p-art__logo {
  aspect-ratio: 430/193;
  max-width: 26.875rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-art__logo {
    margin-top: 3.3125rem;
    max-width: 14.25rem;
    aspect-ratio: 228/102;
  }
}
.p-art__logo > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-article-list {
  background-color: #F5F2ED;
  padding: 10.0625rem 0 8.9375rem;
}
@media screen and (max-width: 767px) {
  .p-article-list {
    padding: 5.3125rem 0 8.125rem;
  }
}

.p-article-list__inner.l-inner {
  max-width: 74.375rem;
}

.p-article-list__header {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 4.6875rem;
       column-gap: 4.6875rem;
  border-bottom: 1px solid rgba(100, 90, 89, 0.2);
  padding-bottom: 2.4375rem;
}
@media screen and (max-width: 1199px) {
  .p-article-list__header {
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-article-list__header {
    flex-direction: column;
    row-gap: 1.25rem;
    padding-bottom: 2.5625rem;
  }
}

.p-article-list__cards {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-article-list__cards {
    margin-top: 2.1875rem;
  }
}

.p-article-list__title-block {
  min-width: 350px;
}
@media screen and (max-width: 767px) {
  .p-article-list__title-block {
    min-width: auto;
  }
}

.p-article-list__lead {
  display: flex;
  -moz-column-gap: 2.375rem;
       column-gap: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-article-list__lead {
    flex-direction: column;
    row-gap: 1.25rem;
  }
}

.p-article-list__lead-text {
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.8;
  color: #1A1A1A;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-article-list__lead-text {
    margin-top: 1.875rem;
    letter-spacing: 0.08em;
  }
}

.p-article-list__lead-text-icon {
  margin-right: 0.625rem;
  font-size: 3.4375rem;
  font-weight: 500;
  color: #1A1A1A;
  vertical-align: middle;
  line-height: 0.9;
  float: left;
}
@media screen and (max-width: 767px) {
  .p-article-list__lead-text-icon {
    font-size: 3.125rem;
  }
}

.p-article-list__footer {
  display: flex;
  justify-content: center;
  margin-top: 3.875rem;
}
@media screen and (max-width: 767px) {
  .p-article-list__footer {
    margin-top: 2.5rem;
  }
}

.p-articles-header__inner {
  max-width: 71.875rem;
}

.p-articles-header__title {
  font-size: 3.3125rem;
  font-weight: 700;
  color: #F07800;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-articles-header__title {
    font-size: 2.125rem;
  }
}

.p-articles-header__title-sub {
  margin-top: 1.0625rem;
  font-size: 1.125rem;
  color: #F07800;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-articles-header__title-sub {
    margin-top: 1.1875rem;
    font-size: 0.875rem;
  }
}

.p-articles {
  background-color: rgba(245, 242, 237, 0.5);
  padding: 2.8125rem 1.5625rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-articles {
    padding: 2.8125rem 0rem 0rem;
  }
}

.p-articles__inner.l-inner {
  max-width: 71.875rem;
}

.p-articles__list {
  margin-top: 5.9375rem;
  display: flex;
  gap: 4.125rem;
}
@media screen and (max-width: 767px) {
  .p-articles__list {
    margin-top: 3.125rem;
    flex-direction: column-reverse;
    gap: 5.125rem;
  }
}

.p-aside {
  max-width: 18.75rem;
}
@media screen and (max-width: 767px) {
  .p-aside {
    max-width: 50rem;
    margin: 0 auto;
    background-color: #FFFFFF;
    margin-inline: -1.25rem;
    padding: 1.875rem 1.25rem 3.125rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-aside {
    padding: 3.625rem 1.25rem 2.0625rem;
  }
}

@media screen and (max-width: 767px) {
  .p-aside-pickup {
    margin-inline: auto;
  }
}

.p-aside-pickup__title {
  font-size: 1.25rem;
  font-weight: 500;
  position: relative;
  padding-left: 1.5625rem;
  letter-spacing: revert;
  color: #F07800;
}
@media screen and (max-width: 767px) {
  .p-aside-pickup__title {
    position: relative;
    text-align: center;
    padding-bottom: 0.5rem;
    padding-left: revert;
  }
}

.p-aside-pickup__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.125rem;
  width: 0.25rem;
  height: 1.5625rem;
  background: #F07800;
  border-radius: 2px;
}
@media screen and (max-width: 767px) {
  .p-aside-pickup__title::before {
    top: auto;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 7.375rem;
    height: 0.125rem;
    border-radius: 1px;
  }
}

.p-aside-pickup__list {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-aside-pickup__list {
    margin-top: 2.125rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.p-aside-pickup__item {
  padding-bottom: 0.8125rem;
  border-bottom: 1px solid #D6DBDE;
}
@media screen and (max-width: 767px) {
  .p-aside-pickup__item {
    padding-bottom: 1.0625rem;
  }
}

.p-aside-pickup__item + .p-aside-pickup__item {
  margin-top: 1rem;
}

.p-aside-pickup__link {
  display: flex;
  gap: 0.9375rem;
}

.p-aside-pickup__link:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.p-aside-pickup__thumb {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border: 0.1875rem solid #fff;
  border-radius: 0.3125rem;
}

@media screen and (max-width: 767px) {
  .p-aside-pickup__thumb {
    width: 8.4375rem;
    height: 6.3125rem;
  }
}

.p-aside-pickup__meta {
  margin-top: 0.125rem;
}
@media screen and (max-width: 767px) {
  .p-aside-pickup__meta {
    margin-top: 0.375rem;
  }
}

.p-aside-pickup__date {
  display: block;
  color: #BBBBBB;
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-aside-pickup__date {
    font-size: 0.875rem;
  }
}

.p-aside-pickup__chip {
  display: inline-block;
  font-size: 0.625rem;
  letter-spacing: revert;
  color: #F07800;
  border: 1px solid #F07800;
  border-radius: 5px;
  padding: 0.09375rem 0.625rem;
  background: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .p-aside-pickup__chip {
    margin-top: revert;
    font-size: 0.6875rem;
  }
}

.p-aside-pickup__excerpt {
  margin-top: 0.625rem;
  color: #1A1A1A;
  font-size: 0.8125rem;
  line-height: 1.6;
}

.p-aside-category {
  margin-top: 2.75rem;
}
@media screen and (max-width: 767px) {
  .p-aside-category {
    margin-top: 1.875rem;
  }
}

.p-aside-category__title {
  font-size: 1.25rem;
  font-weight: 500;
  position: relative;
  padding-left: 1.5625rem;
  letter-spacing: revert;
  color: #F07800;
}

.p-aside-category__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 0.28rem;
  height: 1.2em;
  background: #F07800;
  border-radius: 2px;
}

.p-aside-category__list {
  margin-top: 1.875rem;
}

.p-aside-category__item {
  padding-bottom: 0.8125rem;
  border-bottom: 1px solid #D6DBDE;
}

.p-aside-category__item + .p-aside-category__item {
  margin-top: 0.8125rem;
}

.p-aside-category__link {
  margin-left: 0.875rem;
  display: block;
  padding-left: 0.3125rem;
  color: #1A1A1A;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: revert;
}

.p-aside-category__link:hover {
  color: #F07800;
}

.p-aside-category__link.is-current {
  position: relative;
  color: #F07800;
  font-weight: 700;
}

.p-aside-category__link.is-current::before {
  content: "";
  position: absolute;
  left: -0.875rem;
  top: 50%;
  width: 0.9375rem;
  height: 2px;
  background: #F07800;
  transform: translateY(-50%);
  border-radius: 1px;
}

.p-articles__main-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.75rem;
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-articles__main-cards {
    grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
    justify-content: center;
    place-items: center;
    gap: 3.25rem;
    max-width: 31.25rem;
    margin-inline: auto;
    padding-inline: revert;
    padding-bottom: 2.3125rem;
  }
}

@media screen and (max-width: 767px) {
  .p-articles__main .c-hakataxncb-card {
    max-width: 31.25rem;
    margin-inline: auto;
  }
}

@media screen and (max-width: 767px) {
  .p-articles__main .c-hakataxncb-card__image {
    max-width: 25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-articles__main .c-hakataxncb-card .c-hakataxncb-card__date {
    font-size: 1rem;
  }
  .p-articles__main .c-hakataxncb-card .c-hakataxncb-card__date::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 1.3125rem;
    background: rgba(26, 26, 26, 0.2);
    margin-left: 1.3125rem;
    vertical-align: middle;
  }
}

@media screen and (max-width: 767px) {
  .p-articles__main .c-hakataxncb-card__category {
    font-size: 0.875rem;
    margin-left: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-articles__main .c-hakataxncb-card__title {
    font-size: 1.375rem;
  }
}

.c-hakataxncb-card {
  background-color: transparent;
}

.p-breadcrumb__inner {
  width: 100%;
  margin-inline: auto;
  padding: 1.25rem 1.25rem 1.25rem 5.625rem;
  overflow: scroll;
}
@media screen and (max-width: 767px) {
  .p-breadcrumb__inner {
    display: flex;
    padding: 1.25rem;
  }
}

.p-breadcrumb span {
  font-size: 0.75rem;
  font-weight: 400;
  color: #F07800;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.p-breadcrumb .current-item {
  font-size: 0.75rem;
  color: #1A1A1A;
  font-weight: 400;
  letter-spacing: 0;
}
.p-breadcrumb .current-item::before {
  content: "";
  display: inline-block;
  width: 0.9375rem;
  height: 1px;
  background-color: #F07800;
  margin: 0 1rem 0 0.625rem;
  vertical-align: middle;
}

.current-item.current-item--orange {
  color: #F07800;
}

.p-category__inner.l-inner {
  max-width: 71.875rem;
}

.p-category__label {
  font-size: 1rem;
  font-weight: 500;
  color: #1A1A1A;
  letter-spacing: revert;
}

.p-category__group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-category__group {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    margin-top: 1.1875rem;
    gap: 0.6875rem;
  }
}

.p-category__button {
  border: 1px solid #F07800;
  background: transparent;
  color: #F07800;
  background-color: #FFFFFF;
  padding: 0.75rem 1rem;
  border-radius: 5px;
  letter-spacing: revert;
  font-size: 0.875rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.p-category__button:hover {
  background: #F07800;
  color: #FFFFFF;
}

.p-category__button.is-current,
.p-category__button[aria-pressed=true] {
  background: #F07800;
  color: #FFFFFF;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05) inset;
}

.p-community__inner.l-inner {
  max-width: 71.875rem;
}
@media screen and (max-width: 767px) {
  .p-community__inner.l-inner {
    max-width: 43.75rem;
    padding-inline: 1.1875rem;
  }
}

.p-community__lead {
  margin-top: 1.875rem;
  color: #1A1A1A;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: revert;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-community__lead {
    margin-top: 2.25rem;
    text-align: left;
  }
}

.p-community__divider {
  --line-thin: 1px;
  --line-accent-width: 56px;
  border: 0;
  height: 0;
  position: relative;
  margin: 0 0 var(--space-8);
  padding-top: var(--space-6);
}

.p-community__divider::before,
.p-community__divider::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 0;
  border-top: var(--line-thin) solid var(--c-border);
  top: calc(50% - var(--line-thin) / 2);
}

.p-community__divider::after {
  width: var(--line-accent-width);
  margin: 0 auto;
  border-color: var(--c-accent);
  border-top-width: 2px;
}

.p-community__list {
  margin-top: 4.9375rem;
}
@media screen and (max-width: 767px) {
  .p-community__list {
    margin-top: 2.375rem;
  }
}

.p-community__item {
  margin-top: 3.3125rem;
  margin-bottom: 3.5625rem;
  display: flex;
  gap: 5rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-community__item {
    margin-top: 2.375rem;
    margin-bottom: 2.25rem;
    flex-direction: column;
    align-items: center;
    gap: 0.8125rem;
  }
}

.p-community__item-head {
  margin-top: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2.5625rem;
  width: 16rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-community__item-head {
    margin-top: revert;
    flex-direction: column;
    width: 15.625rem;
    gap: 0.1875rem;
  }
}

.p-community__body {
  flex: 3;
}

.p-community__body-text {
  color: #1A1A1A;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: revert;
}

.p-community__sep {
  display: block;
  width: 100%;
  height: 1px;
  background: #D6DBDE;
  margin: 1.875rem 0;
  position: relative;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-community__sep:last-child {
    margin-top: 4.125rem;
  }
}
.p-community__sep::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3.75rem;
  height: 2px;
  background: #F07800;
}
@media screen and (max-width: 767px) {
  .p-community__sep::after {
    width: 1.5625rem;
  }
}

.p-community__no {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #F07800;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-community__no {
    font-size: 0.75rem;
  }
}

.p-community__item-title {
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #F07800;
}
@media screen and (max-width: 767px) {
  .p-community__item-title {
    font-size: 1.5rem;
  }
}

.sustainavilety-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .sustainavilety-flex {
    margin-top: 2.5rem;
  }
}
.sustainavilety-flex img {
  max-width: 23.75rem;
  width: 100%;
}
.sustainavilety-flex ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.sustainavilety-flex ul li {
  display: flex;
  gap: 0.625rem;
  font-size: 1rem;
  color: #1a1a1a;
}
.sustainavilety-flex ul li span {
  flex-shrink: 0;
}

.p-concept {
  padding: 8.1875rem 0 8.125rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-concept {
    padding: 3.75rem 0 0;
  }
}

.p-concept__inner.l-inner {
  max-width: 71.875rem;
}

.p-concept__wrap {
  display: flex;
  gap: 3.375rem;
}
@media screen and (max-width: 767px) {
  .p-concept__wrap {
    flex-direction: column;
    align-items: center;
    gap: 3.5625rem;
  }
}

.p-concept__text {
  max-width: 36.625rem;
  flex: 1;
}

.p-concept__body {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-concept__body {
    margin-top: 1.875rem;
  }
}

.p-concept__body-text {
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: revert;
  line-height: 2;
  color: #1A1A1A;
}

.p-concept__body-text + .p-concept__body-text {
  margin-top: 1.875rem;
}

.p-concept__media {
  margin-right: calc(50% - 50vw);
  aspect-ratio: 630/391;
  max-width: 39.375rem;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-concept__media {
    max-width: 46.875rem;
    aspect-ratio: 375/232;
    margin-right: -20px;
    margin-left: -20px;
  }
}
.p-concept__media > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-design {
  padding: 7.75rem 0 5.625rem;
  background-color: #EDF2F4;
}
@media screen and (max-width: 767px) {
  .p-design {
    padding: 4.875rem 0 4.9375rem;
  }
}

.p-design__inner.l-inner {
  max-width: 1150px;
}

.p-design__title {
  font-size: 1.75rem;
  line-height: 1.4;
  margin-top: 0.5rem;
  margin-left: 0;
}

.p-design__title-accent {
  color: var(--c-accent);
}

.p-design__list {
  margin-top: 3.6875rem;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-design__list {
    margin-top: 2.25rem;
  }
}

.p-design__item {
  background-color: #FFFFFF;
  padding: 2.5rem 1.375rem 2.5rem 0.625rem;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-design__item {
    flex-direction: column;
    padding: 1.1875rem 0.9375rem 2.375rem 0.9375rem;
  }
}

.p-design__item + .p-design__item {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-design__item + .p-design__item {
    margin-top: 1.25rem;
  }
}

.p-design__image-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-design__image {
  max-width: 100%;
  height: auto;
}

.p-design__item:nth-child(1) .p-design__image {
  width: 14.1875rem;
  max-width: 14.1875rem;
}
@media screen and (max-width: 767px) {
  .p-design__item:nth-child(1) .p-design__image {
    width: 20.9375rem;
    max-width: 20.9375rem;
    margin-inline: -0.9375rem;
  }
}

.p-design__item:nth-child(2) .p-design__image {
  width: 20.625rem;
  max-width: 20.625rem;
}
@media screen and (max-width: 767px) {
  .p-design__item:nth-child(2) .p-design__image {
    width: 19.625rem;
    max-width: 19.625rem;
    height: 12.1875rem;
    margin-inline: -0.9375rem;
  }
}

.p-design__content {
  flex: 2;
  margin-left: auto;
  max-width: 38.75rem;
}
@media screen and (max-width: 767px) {
  .p-design__content {
    margin-top: 1.5625rem;
    text-align: left;
    margin-left: 0;
    max-width: none;
  }
}

.p-design__item-title {
  color: #1A1A1A;
  font-size: 1.5625rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-design__item-title {
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.4;
  }
}

.p-design__text {
  color: #1A1A1A;
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: revert;
}
@media screen and (max-width: 767px) {
  .p-design__text {
    margin-top: 0.625rem;
    font-size: 0.875rem;
    line-height: 2.1;
    letter-spacing: 0.07em;
  }
}

.p-design__text + .p-design__text {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-design__text + .p-design__text {
    margin-top: 1.25rem;
  }
}

.p-design__item:nth-child(2) .p-design__text {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-design__item:nth-child(2) .p-design__text {
    margin-top: 0.9375rem;
  }
}

@media screen and (max-width: 767px) {
  .p-design__item:nth-child(2) {
    padding: 1.25rem 0.9375rem 1.875rem 0.9375rem;
  }
}

.layout-p-facilities {
  margin-top: 13.125rem;
}
@media screen and (max-width: 767px) {
  .layout-p-facilities {
    margin-top: 3.75rem;
  }
}

.p-facilities__inner.l-inner {
  max-width: 71.875rem;
}

.p-facilities__head {
  width: 36%;
}
@media screen and (max-width: 767px) {
  .p-facilities__head {
    width: 100%;
  }
}

.p-facilities__description {
  margin-top: 1.5625rem;
  font-size: 1rem;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.p-facilities__image-wrap {
  margin-top: -7.25rem;
  margin-right: -2.75rem;
}
@media screen and (max-width: 1199px) {
  .p-facilities__image-wrap {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-facilities__image-wrap {
    margin-top: 3.75rem;
    margin-right: 0;
  }
}

.p-facilities__cards {
  margin-top: 2.5rem;
  display: flex;
  gap: 0.6875rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1.25rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.p-facilities__cards::-webkit-scrollbar {
  display: none;
}
.p-facilities__cards > * {
  flex: 0 0 15rem;
  width: 15rem;
}

.p-facilities__button {
  margin-top: 2.5rem;
  text-align: center;
}
.p-facilities__button .c-button {
  margin-inline: auto;
}

.p-facilities__slider {
  margin-top: 7.8125rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.p-facilities__slider .swiper {
  overflow: visible;
  width: 100%;
}
.p-facilities__slider .swiper-wrapper {
  display: flex;
  transition-timing-function: linear;
  align-items: center;
}
.p-facilities__slider .swiper-slide {
  aspect-ratio: 310/210;
  max-width: 19.375rem;
  margin-inline: auto;
}
.p-facilities__slider .swiper-slide > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* start 2025/10/24 */
.p-facilities {
  padding: 8.75rem 0;
}
@media screen and (max-width: 767px) {
  .p-facilities {
    padding: 4.375rem 0.375rem;
  }
}
.p-facilities .sec-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 6.25rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-facilities .sec-wrap {
    gap: 3.75rem;
  }
}
.p-facilities .sec-wrap .txt-inner {
  max-width: 23.75rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-facilities .sec-wrap .txt-inner {
    max-width: none;
    padding: 0 0.875rem;
  }
}
.p-facilities .sec-wrap .txt-inner .lead {
  margin-top: 2.5rem;
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.75;
  color: #1a1a1a;
}
@media screen and (max-width: 767px) {
  .p-facilities .sec-wrap .txt-inner .lead {
    margin-top: 1.5625rem;
    text-align: center;
  }
}
.p-facilities .sec-wrap picture {
  max-width: 43.75rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-facilities .sec-wrap picture {
    max-width: none;
  }
}
.p-facilities .sec-wrap picture img {
  width: 100%;
}

/* end 2025/10/24 */
.p-hall__inner.l-inner {
  max-width: 75.625rem;
}

.p-hall__inner {
  margin-top: 0;
  margin-left: auto;
  display: flex;
  gap: 5rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-hall__inner {
    flex-direction: column-reverse;
    gap: 2.9375rem;
  }
}

.p-hall__media {
  display: flex;
  flex-direction: column;
  margin-left: calc(-25vw + 26.5%);
}
@media screen and (max-width: 767px) {
  .p-hall__media {
    width: 100%;
    align-items: center;
    margin-inline: auto;
  }
}

.p-hall__figure {
  aspect-ratio: 620/385;
  max-width: 38.75rem;
}
@media screen and (max-width: 767px) {
  .p-hall__figure {
    max-width: 43.75rem;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }
}
.p-hall__figure > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-hall__img {
  aspect-ratio: 620/385;
  max-width: 38.75rem;
}
@media screen and (max-width: 767px) {
  .p-hall__img {
    max-width: 37.5rem;
  }
}
.p-hall__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-hall__content {
  max-width: 33.75rem;
}
@media screen and (max-width: 767px) {
  .p-hall__content {
    margin-top: 5rem;
  }
}

.p-hall__body {
  margin-top: 3.125rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-hall__body {
    margin-top: 1.875rem;
  }
}

.p-hall__text {
  font-size: 0.9375rem;
  color: #1A1A1A;
  line-height: 2;
  letter-spacing: revert;
}

.p-hall__text + .p-hall__text {
  margin-top: 1.875rem;
}

.p-mv {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 37.5rem;
}
.p-mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 29.375rem;
  background-color: #EDF2F4;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-mv::before {
    height: 30rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mv {
    height: auto;
    padding-bottom: 4.0625rem;
  }
  .p-mv::before {
    height: 100%;
  }
}
@media screen and (max-width: 399px) {
  .p-mv {
    height: auto;
  }
}
.p-mv .swiper-horizontal > .swiper-pagination-bullets,
.p-mv .swiper-pagination-bullets.swiper-pagination-horizontal {
  position: absolute;
  bottom: 6.5rem;
  left: -1.5rem;
  text-align: left;
  width: auto;
  z-index: 2;
}
@media screen and (max-width: 1199px) {
  .p-mv .swiper-horizontal > .swiper-pagination-bullets,
  .p-mv .swiper-pagination-bullets.swiper-pagination-horizontal {
    left: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mv .swiper-horizontal > .swiper-pagination-bullets,
  .p-mv .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -3.125rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .p-mv__inner.l-inner {
    padding-inline: revert;
  }
}

.swiper {
  width: 100%;
  overflow: visible;
}

.p-mv__slider-item {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-mv__slider-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5625rem;
  }
}

.p-mv__slider-img {
  position: relative;
  aspect-ratio: 880/530;
  max-width: 55rem;
  width: 100%;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .p-mv__slider-img {
    position: static;
    aspect-ratio: 375/226;
    width: 100%;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
}
.p-mv__slider-img::before {
  content: "";
  position: absolute;
  top: 54%;
  left: 84%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 60% center;
}
@media screen and (max-width: 1199px) {
  .p-mv__slider-img::before {
    top: 54%;
    left: 80%;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__slider-img::before {
    content: none;
  }
}

.p-mv__slider-img--01::before {
  background-image: url("../images/mv_01.jpg");
}
@media screen and (max-width: 767px) {
  .p-mv__slider-img--01 {
    background-image: url("../images/mv_01.jpg");
  }
}

.p-mv__slider-img--02::before {
  background-image: url("../images/articles/article-thumb_01.png");
}
@media screen and (max-width: 767px) {
  .p-mv__slider-img--02 {
    background-image: url("../images/articles/article-thumb_01.png");
  }
}

.p-mv__slider-img--03::before {
  background-image: url("../images/mv_01.jpg");
}
@media screen and (max-width: 767px) {
  .p-mv__slider-img--03 {
    background-image: url("../images/mv_01.jpg");
  }
}

.p-mv__slider-content {
  position: absolute;
  top: 44%;
  left: -1.5rem;
  transform: translateY(-50%);
  width: -moz-fit-content;
  width: fit-content;
  z-index: 2;
}
@media screen and (max-width: 1199px) {
  .p-mv__slider-content {
    top: 44%;
    left: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__slider-content {
    position: static;
    transform: none;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.25rem;
  }
}

.p-mv__slider-title {
  font-size: 2.875rem;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-mv__slider-title {
    font-size: 2.125rem;
  }
}

.p-mv__slider-text {
  margin-top: 1.5625rem;
  max-width: 19.375rem;
  width: 100%;
  font-size: 0.875rem;
  font-weight: 400;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-mv__slider-text {
    margin-top: 1.5rem;
    letter-spacing: 0.03em;
  }
}

.p-mv__pager {
  position: relative;
  display: flex;
  gap: 1rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-mv__pager {
    gap: 0.75rem;
  }
}

:root {
  --swiper-theme-color: #F07800;
}

.swiper-pagination-bullet {
  width: 0.5625rem;
  height: 0.5625rem;
  background-color: rgba(26, 26, 26, 0.1);
  opacity: 1;
  margin: 0 0.21875rem;
  transition: all 0.3s ease;
  vertical-align: middle;
  position: relative;
}
.swiper-pagination-bullet-active {
  width: 0.75rem;
  height: 0.75rem;
  background-color: #F07800;
  top: 0;
}

.p-mv__slider-button {
  margin-top: 0.9375rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #F07800;
  line-height: 1;
  padding-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-mv__slider-button {
    margin-top: 1.3125rem;
    font-size: 0.875rem;
    text-align: center;
  }
}
.p-mv__slider-button::after {
  content: "";
  width: 1.125rem;
  height: 0.625rem;
  background: url("../images/icon_right-arrow_01.svg") no-repeat center/contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.p-mv__slider-button:hover::after {
  transform: translate(0.3125rem, -50%);
}

.p-news {
  margin-top: 1.8125rem;
}
@media screen and (max-width: 767px) {
  .p-news {
    margin-top: revert;
    padding: 4.375rem 0 0;
  }
}

.p-news__inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.p-news__content {
  display: flex;
  gap: 5rem;
  padding: 3.125rem 4.25rem 1.5625rem 3.75rem;
  background-color: rgba(237, 242, 244, 0.5);
}
@media screen and (max-width: 767px) {
  .p-news__content {
    flex-direction: column;
    padding: revert;
    gap: 3.4375rem;
    background-color: #FFFFFF;
  }
}

.p-news__head {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-news__head {
    width: 100%;
  }
}

.p-news__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #F07800;
}
@media screen and (max-width: 767px) {
  .p-news__title {
    font-size: 1.375rem;
    text-align: center;
  }
}

.p-news__list {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-news__list {
    width: 100%;
    gap: 0.9375rem;
  }
}

.p-news__item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-bottom: 0.9375rem;
  border-bottom: 1px solid #D6DBDE;
}
.p-news__item:last-child {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .p-news__item:last-child {
    border-bottom: 1px solid #D6DBDE;
  }
}
@media screen and (max-width: 767px) {
  .p-news__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5625rem;
    padding-bottom: 1rem;
  }
}

.p-news__meta {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-news__meta {
    gap: 0.625rem;
  }
}

.p-news__date {
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(51, 51, 51, 0.4);
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.05em;
}

.p-news__category {
  display: inline-block;
  min-width: 8.125rem;
  padding: 0.375rem 0.6875rem;
  font-size: 0.75rem;
  color: #F07800;
  background-color: #FFFFFF;
  border: 1px solid currentColor;
  border-radius: 0.125rem;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-news__category {
    padding: 0.1875rem 0.625rem;
  }
}

.p-news__text-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-news__text-wrap {
    align-items: end;
  }
}

.p-news__text {
  font-size: 0.875rem;
  color: #333;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  flex: 1;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-news__text {
    width: 100%;
    line-height: 1.7;
  }
}

.p-news__item:hover .p-news__text {
  color: #F07800;
}

.p-news__item-icon {
  aspect-ratio: 20/20;
  max-width: 1.25rem;
  margin-left: auto;
}
.p-news__item-icon > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: filter 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-news__item-icon {
    margin-inline: 0;
    margin-left: auto;
  }
}

.p-news__more {
  margin-top: 2.0625rem;
  color: #F07800;
  font-size: 0.9375rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-news__more {
    margin-top: 1.5625rem;
    text-align: center;
  }
}

.p-news__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  padding-bottom: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-news__button {
    justify-content: center;
  }
}
.p-news__button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
}
.p-news__button-icon {
  transition: transform 0.3s ease;
}
.p-news__button:hover .p-news__button-icon {
  transform: translateX(0.3125rem);
}

.p-news__button-icon {
  width: 0.9375rem;
  height: 0.8125rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-news__button-icon {
    width: 0.875rem;
    height: 0.875rem;
  }
}

.p-news__slider {
  margin-top: 5rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.p-news__slider .swiper {
  overflow: visible;
  width: 100%;
}
.p-news__slider .swiper-wrapper {
  display: flex;
  transition-timing-function: linear;
  align-items: center;
}
.p-news__slider .swiper-slide {
  aspect-ratio: 310/210;
  max-width: 19.375rem;
  margin-inline: auto;
}
.p-news__slider .swiper-slide > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-news__slider .swiper-slide {
    aspect-ratio: 180/120;
    max-width: 11.25rem;
  }
}

/* start 20251027_and追加分 */
.p-news-articles {
  background-color: rgba(237, 242, 244, 0.5);
}
.p-news-articles .p-articles__inner {
  max-width: 860px;
}
@media screen and (max-width: 767px) {
  .p-news-articles {
    padding-bottom: 5rem;
  }
}
.p-news-articles .news__archive__list {
  gap: 1.25rem;
  margin-top: 3.75rem;
}
.p-news-articles .news__archive__list [hidden] {
  display: none !important;
}
.p-news-articles .news__archive__list .p-news__item {
  padding-bottom: 1.25rem;
}
.p-news-articles .news__archive__list .p-news__item:last-child {
  border-bottom: 1px solid #d6dbde;
}
.p-news-articles .is-pagin-hidden {
  display: none !important;
}

.p-news-single-inner {
  max-width: 48.75rem !important;
  padding: 0 0 8.75rem !important;
}
@media screen and (max-width: 767px) {
  .p-news-single-inner {
    padding: 0 1.25rem 3.75rem !important;
  }
}
.p-news-single-inner .p-single-top-block .post-meta {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1.875rem;
}
.p-news-single-inner .p-single-top-block .post-meta data {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  color: rgba(51, 51, 51, 0.4);
}
.p-news-single-inner .p-single-top-block .post-meta .cat {
  padding: 0.1875rem 1.125rem 0.3125rem;
  font-size: 0.75rem;
  color: #f07800;
  border: 1px solid #f07800;
  border-radius: 0.1875rem;
}
.p-news-single-inner .p-news-single-wrap {
  margin-top: 0 !important;
}
.p-news-single-inner .p-news-single-wrap .p-news-single-article h2 {
  margin-top: 3.75rem;
  padding-bottom: 1.125rem;
  font-weight: 600;
  font-size: 2.25rem;
  border-bottom: 1px solid #ef7900;
}
@media screen and (max-width: 767px) {
  .p-news-single-inner .p-news-single-wrap .p-news-single-article h2 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
}
.p-news-single-inner .p-news-single-wrap .p-news-single-article h3 {
  position: relative;
  margin-top: 5rem;
  padding-left: 3.4375rem;
  font-weight: 600;
  font-size: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-news-single-inner .p-news-single-wrap .p-news-single-article h3 {
    margin-top: 3.75rem;
    padding-left: 2.8125rem;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.4;
  }
}
.p-news-single-inner .p-news-single-wrap .p-news-single-article h3::before {
  content: "";
  position: absolute;
  top: 1.375rem;
  left: 0;
  width: 2.5rem;
  height: 1px;
  background-color: #f07800;
}
@media screen and (max-width: 767px) {
  .p-news-single-inner .p-news-single-wrap .p-news-single-article h3::before {
    top: 1.125rem;
    width: 1.875rem;
  }
}
.p-news-single-inner .p-news-single-wrap .p-news-single-article p {
  margin-top: 1.75rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-news-single-inner .p-news-single-wrap .p-news-single-article p {
    margin-top: 1.3125rem;
  }
}
.p-news-single-inner .p-news-single-wrap .p-news-single-article img {
  width: 100%;
  margin-top: 1.875rem;
  border-radius: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-news-single-inner .p-news-single-wrap .p-news-single-article img {
    margin-top: 1.5625rem;
  }
}
.p-news-single-inner .p-news-single-wrap .p-news-single-article .flex-img {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-news-single-inner .p-news-single-wrap .p-news-single-article .flex-img {
    gap: 0.3125rem;
  }
}
.p-news-single-inner .p-news-single-wrap .p-news-single-article .flex-img img {
  max-width: 23.75rem;
}
@media screen and (max-width: 767px) {
  .p-news-single-inner .p-news-single-wrap .p-news-single-article .flex-img img {
    max-width: 50%;
  }
}
.p-news-single-inner .p-news-single-wrap .c-button {
  margin: 5rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-news-single-inner .p-news-single-wrap .c-button {
    margin-top: 2.5rem;
  }
}
.p-news-single-inner .p-news-single-wrap .c-button img {
  right: auto;
  left: 1.25rem;
  transform: translateY(-50%) rotate(180deg);
}

/* end 20251027_and追加分 */
/* セクション土台 */
.p-overview {
  position: relative;
  background-color: #EDF2F4;
  color: var(--ovw-text);
  padding: 7.75rem 0 0rem;
  /* 下多め：背景シルエット分 */
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-overview {
    padding-top: 4.625rem;
  }
}

.p-overview__inner {
  max-width: 71.875rem;
}
@media screen and (max-width: 767px) {
  .p-overview__inner {
    max-width: 43.75rem;
  }
}

.p-overview__main {
  display: flex;
  gap: 4.4375rem;
}
@media screen and (max-width: 767px) {
  .p-overview__main {
    flex-direction: column;
    gap: 2.625rem;
  }
}

.p-overview__title .c-title__en {
  font-weight: 500;
  letter-spacing: 0.13em;
}
@media screen and (max-width: 767px) {
  .p-overview__title .c-title__en {
    font-size: 2.375rem;
  }
}

@media screen and (max-width: 767px) {
  .p-overview__title .c-title__ja {
    margin-top: 0.1875rem;
  }
}

.p-overview__side {
  border: 2px solid var(--ovw-border);
  /* 薄い青の枠 */
  border-radius: var(--ovw-radius);
  padding: 24px 20px;
  background: #fff;
}

.p-overview__heading {
  margin: 0 0 10px;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 0.12em;
  color: var(--ovw-brand);
  line-height: 1.1;
}

.p-overview__link {
  display: inline-block;
  font-size: 14px;
  color: var(--ovw-muted);
  text-decoration: underline;
}

.p-overview__content {
  margin-top: -0.625rem;
}

.p-overview__content-text {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: revert;
  line-height: 1.9;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-overview__content-text {
    line-height: 2;
  }
}

.p-overview__content-text + .p-overview__content-text {
  margin-top: 2.125rem;
}
@media screen and (max-width: 767px) {
  .p-overview__content-text + .p-overview__content-text {
    margin-top: 1.8125rem;
  }
}

.p-overview__note {
  margin-top: 1.8125rem;
  background-color: #FFFFFF;
  border-radius: 5px;
  padding: 1.0625rem 1.125rem;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-overview__note {
    margin-top: 3.1875rem;
    padding: 1.0625rem 0.625rem;
  }
}

.p-overview__note-text {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: revert;
  line-height: 2;
}

.p-overview__note-text span {
  font-size: 0.5rem;
}

.p-overview__bg {
  margin-top: -4.25rem;
  width: 100%;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-overview__bg {
    margin-top: -5rem;
  }
}

.p-pagination {
  margin-top: 3rem;
  display: grid;
  place-items: center;
  background: #F5F2ED;
}
@media screen and (max-width: 767px) {
  .p-pagination {
    margin-top: 1.5rem;
  }
}

.p-pagination__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-pagination__list {
    gap: 0.3125rem;
  }
}

.p-pagination__item {
  margin: 0;
}

.p-pagination__link {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #FFFFFF;
  color: #F07800;
  font-size: 1.125rem;
  font-weight: 400;
  transition: all 0.3s ease;
}

/* 数字ボタンのみのホバー */
.p-pagination__link:hover:not(.is-prev):not(.is-next):not(.is-current):not(.is-disabled):not([aria-current=page]) {
  background: #F07800;
  color: #FFFFFF;
}

.p-pagination__link.is-current,
.p-pagination__link[aria-current=page] {
  background: #F07800;
  color: #FFFFFF;
}

.p-pagination__link.is-prev {
  margin-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-pagination__link.is-prev {
    margin-right: 0.625rem;
  }
}

.p-pagination__link.is-next {
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-pagination__link.is-next {
    margin-left: 0.625rem;
  }
}

.p-pagination__link.is-prev,
.p-pagination__link.is-next {
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-pagination__link.is-prev,
  .p-pagination__link.is-next {
    font-size: 0.875rem;
  }
}

.p-pagination__link.is-prev {
  background-image: url("/images/prev.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.625rem 1rem;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-pagination__link.is-prev {
    background-size: 0.625rem 0.625rem;
  }
}
.p-pagination__link.is-prev:hover {
  transform: translateX(-0.125rem);
}

.p-pagination__link.is-next {
  background-image: url("/images/next.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.625rem 1rem;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-pagination__link.is-next {
    background-size: 0.625rem 0.625rem;
  }
}
.p-pagination__link.is-next:hover {
  transform: translateX(0.125rem);
}

/* ベース */
.p-project {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-project::before, .p-project::after {
    display: none;
  }
}
.p-project::before {
  content: "";
  position: absolute;
  top: 5rem;
  left: 0rem;
  width: 22.6875rem;
  height: 14.125rem;
  background-image: url("/images/image_p-project_01.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 0.5rem;
  z-index: 1;
  aspect-ratio: 363/226;
}
@media screen and (max-width: 1199px) {
  .p-project::before {
    width: 21.25rem;
    height: 13.125rem;
    aspect-ratio: 340/210;
    top: 8.75rem;
  }
}
.p-project::after {
  content: "";
  position: absolute;
  top: 13.75rem;
  right: 0rem;
  width: 14.0625rem;
  height: 8.75rem;
  background-image: url("/images/image_p-project_02.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 0.5rem;
  z-index: 1;
}

.p-project__inner {
  max-width: 68.75rem;
  margin-inline: auto;
  position: relative;
  padding-inline: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-project__inner {
    max-width: 37.5rem;
    padding-inline: 0.75rem;
  }
  .p-project__inner::before, .p-project__inner::after {
    display: none;
  }
}
.p-project__inner::before {
  content: "";
  position: absolute;
  top: 40.875rem;
  left: calc(-50vw + 50% + 1.6875rem);
  width: 17.6875rem;
  height: 11rem;
  background-image: url("/images/image_p-project_03.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 0.5rem;
  z-index: 1;
}

.p-project__body {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-project__body::after {
    display: none;
  }
}
.p-project__body::after {
  content: "";
  position: absolute;
  top: 4.5rem;
  right: calc(-50vw + 50%);
  width: 19.375rem;
  height: 13.625rem;
  background-image: url("/images/image_p-project_04.jpg");
  background-size: cover;
  border-radius: 0.5rem;
  z-index: 1;
}

.p-project__head {
  text-align: center;
}

.p-project__title {
  font-size: 3.4375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Roboto", sans-serif;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .p-project__title {
    font-size: 2.5rem;
    letter-spacing: 0.07em;
  }
}

.p-project__title span {
  color: #F07800;
}

.p-project__lead {
  margin-top: 3.6875rem;
  margin-inline: auto;
  text-align: center;
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.125rem 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-project__lead {
    margin-top: 2rem;
    padding: 0rem 1.5625rem;
  }
}
.p-project__lead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 100%;
  border-left: 1px solid #1A1A1A;
  border-top: 1px solid #1A1A1A;
  border-bottom: 1px solid #1A1A1A;
}
.p-project__lead::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
  border-right: 1px solid #1A1A1A;
  border-top: 1px solid #1A1A1A;
  border-bottom: 1px solid #1A1A1A;
}

.p-project__lead-main {
  color: #F07800;
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-project__lead-main {
    font-size: 1.5rem;
  }
}

.p-project__lead-main span {
  font-size: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-project__lead-main span {
    font-size: 1.75rem;
  }
}

.p-project__lead-sub {
  font-weight: 700;
  font-size: 1.625rem;
  letter-spacing: revert;
}
@media screen and (max-width: 767px) {
  .p-project__lead-sub {
    margin-top: 0.4375rem;
    font-size: 1.125rem;
  }
}

.p-project__credit {
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-project__credit {
    margin-top: 4.0625rem;
  }
}

.p-project__credit-icon {
  margin-inline: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-project__credit-icon {
    max-width: 13.875rem;
  }
}

.p-project__credit-name {
  font-weight: 700;
}

.p-project__body {
  margin-top: 3.3125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-project__body {
    margin-top: 3.125rem;
  }
}

.p-project__body-text {
  margin-inline: auto;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: revert;
}
@media screen and (max-width: 767px) {
  .p-project__body-text {
    width: 96%;
    line-height: 2;
    letter-spacing: 0;
  }
}

.p-project__body-text + .p-project__body-text {
  margin-top: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-project__body-text + .p-project__body-text {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-project__body-text + .p-project__body-text + .p-project__body-text {
    margin-top: 2.1875rem;
  }
}

.p-project__gallery {
  display: grid;
  gap: 20px;
  margin: 0 auto 32px;
}

.p-project__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.p-project__cta {
  margin-top: 3.625rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-project__cta {
    margin-top: 3.75rem;
  }
}

.p-project__slider {
  margin-top: 5.1875rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-project__slider {
    margin-top: 3.75rem;
  }
}
.p-project__slider .swiper {
  overflow: visible;
  width: 100%;
}
.p-project__slider .swiper-wrapper {
  display: flex;
  transition-timing-function: linear;
  align-items: center;
}
.p-project__slider .swiper-slide {
  aspect-ratio: 310/210;
  max-width: 19.375rem;
  margin-inline: auto;
}
.p-project__slider .swiper-slide > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-project__slider .swiper-slide {
    aspect-ratio: 216/127;
    max-width: 13.5rem;
  }
}

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

.only-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .only-sp {
    display: block;
  }
}

.p-single-inner {
  max-width: 1150px;
  margin: 4.375rem auto 0;
  padding: 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-single-inner {
    max-width: auto;
    margin-top: 2.5rem;
    padding: 0 1.25rem;
  }
}
.p-single-inner .p-single-top-block .p-single-ttl {
  font-size: 2.875rem;
  font-weight: 600;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .p-single-inner .p-single-top-block .p-single-ttl {
    font-size: 2.125rem;
    line-height: 1.3;
  }
}
.p-single-inner .p-single-top-block .p-single-thumbnail {
  margin-top: 2.5rem;
  border: 0.4375rem solid #F07800;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-single-inner .p-single-top-block .p-single-thumbnail {
    margin-top: 1.25rem;
    border: 0.25rem solid #F07800;
    border-radius: 0.625rem;
  }
}
.p-single-inner .p-single-top-block .p-single-content-lead {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-single-inner .p-single-top-block .p-single-content-lead {
    display: block;
    margin-top: 1.25rem;
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #1A1A1A;
  }
}
.p-single-inner .p-single-content-wrap {
  display: flex;
  justify-content: center;
  gap: 4.375rem;
  margin-top: 2.5rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-single-inner .p-single-content-wrap {
    flex-direction: column;
    gap: 0;
    margin-top: 2.1875rem;
    padding-bottom: 0;
  }
}
.p-single-inner .p-single-content-wrap .p-single-index-sidebar {
  position: sticky;
  height: -moz-fit-content;
  height: fit-content;
  top: 13.75rem;
  bottom: 3.125rem;
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-single-inner .p-single-content-wrap .p-single-index-sidebar {
    position: relative;
    top: auto;
    bottom: auto;
    max-width: none;
    padding: 1.25rem;
    border-radius: 0.625rem;
    background-color: rgba(237, 242, 244, 0.5);
  }
}
.p-single-inner .p-single-content-wrap .p-single-index-sidebar .p-single-index-sidebar-ttl {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  margin-bottom: 0.9375rem;
  font-size: 1rem;
  font-weight: 500;
  color: #F07800;
}
.p-single-inner .p-single-content-wrap .p-single-index-sidebar .p-single-index-sidebar-ttl span {
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: #F07800;
}
.p-single-inner .p-single-content-wrap .p-single-index-sidebar .p-single-index-sidebar-index-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-single-inner .p-single-content-wrap .p-single-index-sidebar .p-single-index-sidebar-index-list {
    margin-bottom: 1.5625rem;
  }
}
.p-single-inner .p-single-content-wrap .p-single-index-sidebar .p-single-index-sidebar-index-list li {
  padding-bottom: 0.875rem;
  border-bottom: 1px solid rgba(214, 219, 222, 0.7);
}
.p-single-inner .p-single-content-wrap .p-single-index-sidebar .p-single-index-sidebar-index-list li a {
  font-size: 0.875rem;
  font-weight: 400;
  color: #1A1A1A;
  transition: color 0.3s ease;
}
.p-single-inner .p-single-content-wrap .p-single-index-sidebar .p-single-index-sidebar-index-list li a:hover {
  color: #F07800;
}
.p-single-inner .p-single-content-wrap .p-single-index-sidebar .p-single-index-sidebar-sns-list {
  display: flex;
  gap: 1.125rem;
}
.p-single-inner .p-single-content-wrap .p-single-index-sidebar .p-single-index-sidebar-sns-list li a {
  display: block;
  transition: opacity 0.3s;
}
.p-single-inner .p-single-content-wrap .p-single-index-sidebar .p-single-index-sidebar-sns-list li a:hover {
  opacity: 0.8;
}
.p-single-inner .p-single-content-wrap .p-single-index-sidebar .p-single-index-sidebar-sns-list li a img {
  height: 1.6875rem;
}
.p-single-inner .p-single-content-wrap .p-single-content-inner {
  max-width: 45rem;
}
@media screen and (max-width: 767px) {
  .p-single-inner .p-single-content-wrap .p-single-content-inner {
    max-width: none;
  }
}
.p-single-inner .p-single-content-wrap .p-single-content-inner .p-single-content-lead {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.75;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .p-single-inner .p-single-content-wrap .p-single-content-inner .p-single-content-lead {
    display: none;
  }
}
.p-single-inner .p-single-content-wrap .p-single-content-inner h2,
.p-single-inner .p-single-content-wrap .p-single-content-inner h3 {
  position: relative;
  margin-top: 7.5rem;
  font-weight: 600;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .p-single-inner .p-single-content-wrap .p-single-content-inner h2,
  .p-single-inner .p-single-content-wrap .p-single-content-inner h3 {
    margin-top: 5.625rem;
  }
}
.p-single-inner .p-single-content-wrap .p-single-content-inner h2 {
  padding-bottom: 1.125rem;
  font-size: 2.25rem;
  text-align: center;
  border-bottom: 1px solid #d6dbde;
}
@media screen and (max-width: 767px) {
  .p-single-inner .p-single-content-wrap .p-single-content-inner h2 {
    font-size: 2rem;
    line-height: 1.4;
  }
}
.p-single-inner .p-single-content-wrap .p-single-content-inner h2::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 50%;
  transform: translateX(50%);
  width: 8.125rem;
  height: 1px;
  background-color: #F07800;
}
@media screen and (max-width: 767px) {
  .p-single-inner .p-single-content-wrap .p-single-content-inner h2::after {
    width: 3.75rem;
  }
}
.p-single-inner .p-single-content-wrap .p-single-content-inner h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
  font-size: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-single-inner .p-single-content-wrap .p-single-content-inner h3 {
    align-items: flex-start;
    font-size: 1.5rem;
  }
}
.p-single-inner .p-single-content-wrap .p-single-content-inner h3:before {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 2.5rem;
  height: 1px;
  background-color: #F07800;
}
@media screen and (max-width: 767px) {
  .p-single-inner .p-single-content-wrap .p-single-content-inner h3:before {
    width: 1.875rem;
    margin-top: 1.125rem;
  }
}
.p-single-inner .p-single-content-wrap .p-single-content-inner .p-single-content-txt,
.p-single-inner .p-single-content-wrap .p-single-content-inner .p-single-content-pic,
.p-single-inner .p-single-content-wrap .p-single-content-inner .p-single-content-flex-img {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-single-inner .p-single-content-wrap .p-single-content-inner .p-single-content-txt,
  .p-single-inner .p-single-content-wrap .p-single-content-inner .p-single-content-pic,
  .p-single-inner .p-single-content-wrap .p-single-content-inner .p-single-content-flex-img {
    margin-top: 1.5625rem;
  }
}
.p-single-inner .p-single-content-wrap .p-single-content-inner .p-single-content-txt {
  font-size: 1rem;
  line-height: 1.75;
  color: #1A1A1A;
}
.p-single-inner .p-single-content-wrap .p-single-content-inner .p-single-content-pic {
  width: 100%;
}
.p-single-inner .p-single-content-wrap .p-single-content-inner .p-single-content-flex-img {
  display: flex;
  gap: 0.625rem;
}
.p-single-inner .p-single-content-wrap .p-single-content-inner .p-single-content-flex-img img {
  max-width: 49.3%;
  border-radius: 0.3125rem;
}
.p-single-inner .p-single-share-wrap {
  margin-top: 2.625rem;
  padding: 1.875rem 0 4.375rem;
  border-top: 1px solid rgba(214, 219, 222, 0.7);
}
.p-single-inner .p-single-share-wrap .p-single-share-wrap-ttl {
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  color: #F07800;
}
.p-single-inner .p-single-share-wrap .p-single-share-wrap-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.125rem;
  margin-top: 0.9375rem;
}
.p-single-inner .p-single-share-wrap .p-single-share-wrap-list li a {
  display: block;
  transition: opacity 0.3s;
}
.p-single-inner .p-single-share-wrap .p-single-share-wrap-list li a:hover {
  opacity: 0.8;
}
.p-single-inner .p-single-share-wrap .p-single-share-wrap-list li a img {
  height: 1.75rem;
}
.p-single-inner .p-signle-side-note {
  margin-top: 0.625rem;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #1A1A1A;
}

.p-single-article-list {
  padding: 7.1875rem 0;
}
@media screen and (max-width: 767px) {
  .p-single-article-list {
    padding: 5.3125rem 0;
  }
}
.p-single-article-list .p-article-list__inner .p-article-list__header {
  justify-content: center;
  padding-bottom: 0;
  border-bottom: none;
}
.p-single-article-list .p-article-list__inner .p-article-list__header .p-article-list__title-block {
  text-align: center;
}
.p-single-article-list .p-article-list__inner .p-article-list__header .p-article-list__title-block .c-title__en {
  font-size: 2.8125rem;
  letter-spacing: 0.06em;
}
.p-single-article-list .p-article-list__inner .p-article-list__header .p-article-list__title-block .c-title__ja {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
.p-single-article-list .p-article-list__inner .p-article-list__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(21.625rem, 1fr));
}
@media screen and (max-width: 767px) {
  .p-single-article-list .p-article-list__inner .p-article-list__cards {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2.5rem;
  }
  .p-single-article-list .p-article-list__inner .p-article-list__cards .p-article-list__card {
    width: 100%;
    max-width: none;
  }
  .p-single-article-list .p-article-list__inner .p-article-list__cards .p-article-list__card figure {
    width: 100%;
    max-width: none;
  }
  .p-single-article-list .p-article-list__inner .p-article-list__cards .p-article-list__card figure img {
    max-width: none;
  }
  .p-single-article-list .p-article-list__inner .p-article-list__cards .p-article-list__card .c-hakataxncb-card__info .c-hakataxncb-card__text {
    font-size: 0.9375rem;
  }
}
.p-single-article-list .p-article-list__inner .p-article-list__footer .c-button {
  max-width: 300px;
}
@media screen and (max-width: 767px) {
  .p-single-article-list .p-article-list__inner .p-article-list__footer .c-button {
    max-width: none;
  }
}
br.md {
  display: block;
}
@media screen and (max-width: 767px) {
  br.md {
    display: none;
  }
}

.p-sitemap {
  padding: 2.875rem 0 3.25rem;
}
@media screen and (max-width: 767px) {
  .p-sitemap {
    padding: 3.75rem 1.25rem 3.125rem;
  }
}
.p-sitemap .p-sitemap__inner {
  max-width: 58.75rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-sitemap .p-sitemap__inner {
    max-width: none;
  }
}
.p-sitemap .p-sitemap__inner .ttl {
  width: 100%;
  padding-bottom: 1.875rem;
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  border-bottom: 1px solid #d6dbde;
}
@media screen and (max-width: 767px) {
  .p-sitemap .p-sitemap__inner .ttl {
    padding-bottom: 1.3125rem;
    font-size: 1.5rem;
    text-align: center;
  }
}
.p-sitemap .p-sitemap__inner .sitemap-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4.375rem;
  max-width: 39.375rem;
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-sitemap .p-sitemap__inner .sitemap-list {
    display: none;
  }
}
.p-sitemap .p-sitemap__inner .sitemap-list .sitemap-list-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.p-sitemap .p-sitemap__inner .sitemap-list .sitemap-list-inner li a {
  letter-spacing: 0.06em;
  text-decoration: underline;
}
.p-sitemap .p-sitemap__inner .sitemap-list .sitemap-list-inner .sitemap-list-items {
  max-width: 18.125rem;
  width: 100%;
}
.p-sitemap .p-sitemap__inner .sitemap-list .sitemap-list-inner .sitemap-list-items > a {
  position: relative;
  padding-left: 1.25rem;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: underline;
}
.p-sitemap .p-sitemap__inner .sitemap-list .sitemap-list-inner .sitemap-list-items > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0.3125rem;
  background-color: #F07800;
  border-radius: 0.1875rem;
}
.p-sitemap .p-sitemap__inner .sitemap-list .sitemap-list-inner .sitemap-list-items .second-list {
  margin: 1.25rem 0 0 1.5rem;
}
.p-sitemap .p-sitemap__inner .sitemap-list .sitemap-list-inner .sitemap-list-items .second-list li a {
  position: relative;
  padding-left: 1.75rem;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: underline;
}
.p-sitemap .p-sitemap__inner .sitemap-list .sitemap-list-inner .sitemap-list-items .second-list li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 49%;
  transform: translateY(-50%);
  height: 0.5rem;
  width: 0.5rem;
  background-color: #F07800;
}
.p-sitemap .p-sitemap__inner .sp-sitemap-list {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-sitemap .p-sitemap__inner .sp-sitemap-list {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
    max-width: 17.5rem;
    margin: 1.875rem auto 0;
  }
  .p-sitemap .p-sitemap__inner .sp-sitemap-list .sitemap-list-items {
    width: 100%;
  }
  .p-sitemap .p-sitemap__inner .sp-sitemap-list .sitemap-list-items > a {
    position: relative;
    padding-left: 1.25rem;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: underline;
  }
  .p-sitemap .p-sitemap__inner .sp-sitemap-list .sitemap-list-items > a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0.3125rem;
    background-color: #F07800;
    border-radius: 0.1875rem;
  }
  .p-sitemap .p-sitemap__inner .sp-sitemap-list .sitemap-list-items .second-list {
    margin: 1.25rem 0 0 1.5rem;
  }
  .p-sitemap .p-sitemap__inner .sp-sitemap-list .sitemap-list-items .second-list li a {
    position: relative;
    padding-left: 1.75rem;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: underline;
  }
  .p-sitemap .p-sitemap__inner .sp-sitemap-list .sitemap-list-items .second-list li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 49%;
    transform: translateY(-50%);
    height: 0.5rem;
    width: 0.5rem;
    background-color: #F07800;
  }
}

.p-sustainability {
  background-color: #F5F2ED;
  padding: 7.3125rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-sustainability {
    padding: 5rem 0 0rem;
  }
}

.p-sustainability-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5.3125rem;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-sustainability-wrap {
    flex-direction: column-reverse;
  }
}

.p-sustainability__media img {
  display: block;
  max-width: 40.3125rem;
  width: 100%;
  height: auto;
  border-radius: var(--sus-radius);
}

.p-sustainability__inner {
  max-width: 33.75rem;
}
@media screen and (max-width: 767px) {
  .p-sustainability__inner {
    max-width: 43.75rem;
    padding: 0 1.25rem;
  }
}

.p-sustainability__content {
  margin-top: 2.375rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-sustainability__content {
    gap: 1.25rem;
  }
}

.p-sustainability__text {
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: revert;
  line-height: 2;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .p-sustainability__text {
    line-height: 2;
  }
}

.p-sustainability__text + .p-sustainability__text {
  margin-top: 1.875rem;
}

.p-sustainability__note {
  padding: 1.125rem 0.75rem 1.375rem 1.25rem;
  background-color: #FFFFFF;
  display: flex;
  gap: 0.625rem;
  max-width: 32.5rem;
  align-items: center;
  border-radius: 5px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-sustainability__note {
    margin-top: revert;
    margin-inline: auto;
    padding: 0.875rem 0.625rem 1.25rem;
    flex-direction: column;
    gap: 0.875rem;
  }
}

.p-sustainability__note-logo-wrap {
  margin-top: 0.625rem;
  aspect-ratio: 100/98;
  max-width: 6.25rem;
  margin-inline: auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-sustainability__note-logo-wrap {
    margin-top: revert;
    aspect-ratio: 149/145;
    max-width: 9.3125rem;
    height: 9.0625rem;
  }
}
.p-sustainability__note-logo-wrap > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sustainability__note-title {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: revert;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-sustainability__note-title {
    font-size: 0.8125rem;
    letter-spacing: revert;
    text-align: center;
  }
}

.p-sustainability__note-text {
  margin-top: 0.0625rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: revert;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-sustainability__note-text {
    margin-top: 0.75rem;
  }
}

.u-font14 {
  font-size: 0.875rem;
}

.u-font16 {
  font-size: 1rem;
}

.u-font18 {
  font-size: 1.125rem;
}

.u-font20 {
  font-size: 1.25rem;
}

.u-font22 {
  font-size: 1.375rem;
}

.u-font24 {
  font-size: 1.5rem;
}

.u-font28 {
  font-size: 1.75rem;
}

.u-font32 {
  font-size: 2rem;
}

.u-font40 {
  font-size: 2.5rem;
}

.u-hover {
  transition: opacity 0.5s;
}

.u-hover:hover {
  opacity: 0.6;
  transition: opacity 0.5s;
}

.u-lh10 {
  line-height: 1;
}

.u-lh13 {
  line-height: 1.3;
}

.u-lh15 {
  line-height: 1.5;
}

.u-lh16 {
  line-height: 1.6;
}

.u-lh20 {
  line-height: 2;
}

.u-ls05 {
  letter-spacing: 0.05em;
}

.u-ls10 {
  letter-spacing: 0.1em;
}

.u-ls15 {
  letter-spacing: 0.15em;
}

.u-ls20 {
  letter-spacing: 0.2em;
}

.u-mt10 {
  margin-top: 10px !important;
  margin-top: 0.625rem !important;
}

.u-mt20 {
  margin-top: 20px !important;
  margin-top: 1.25rem !important;
}

.u-mt30 {
  margin-top: 30px !important;
  margin-top: 1.875rem !important;
}

.u-mt40 {
  margin-top: 40px !important;
  margin-top: 2.5rem !important;
}

.u-mt50 {
  margin-top: 50px !important;
  margin-top: 3.125rem !important;
}

.u-mt60 {
  margin-top: 60px !important;
  margin-top: 3.75rem !important;
}

.u-mt70 {
  margin-top: 70px !important;
  margin-top: 4.375rem !important;
}

.u-mt80 {
  margin-top: 80px !important;
  margin-top: 5rem !important;
}

.u-mt90 {
  margin-top: 90px !important;
  margin-top: 5.625rem !important;
}

.u-mt100 {
  margin-top: 100px !important;
  margin-top: 6.25rem !important;
}

.u-mt110 {
  margin-top: 110px !important;
  margin-top: 6.875rem !important;
}

.u-mt120 {
  margin-top: 120px !important;
  margin-top: 7.5rem !important;
}

.u-mt130 {
  margin-top: 130px !important;
  margin-top: 8.125rem !important;
}

.u-mt140 {
  margin-top: 140px !important;
  margin-top: 8.75rem !important;
}

.u-mt150 {
  margin-top: 150px !important;
  margin-top: 9.375rem !important;
}

.u-mt160 {
  margin-top: 160px !important;
  margin-top: 10rem !important;
}

.u-mt170 {
  margin-top: 170px !important;
  margin-top: 10.625rem !important;
}

.u-mt180 {
  margin-top: 180px !important;
  margin-top: 11.25rem !important;
}

.u-mt190 {
  margin-top: 190px !important;
  margin-top: 11.875rem !important;
}

.u-mt200 {
  margin-top: 200px !important;
  margin-top: 12.5rem !important;
}

@media screen and (max-width: 767px) {
  .u-mtSp10 {
    margin-top: 10px !important;
    margin-top: 0.625rem !important;
  }
  .u-mtSp20 {
    margin-top: 20px !important;
    margin-top: 1.25rem !important;
  }
  .u-mtSp30 {
    margin-top: 30px !important;
    margin-top: 1.875rem !important;
  }
  .u-mtSp40 {
    margin-top: 40px !important;
    margin-top: 2.5rem !important;
  }
  .u-mtSp50 {
    margin-top: 50px !important;
    margin-top: 3.125rem !important;
  }
  .u-mtSp60 {
    margin-top: 60px !important;
    margin-top: 3.75rem !important;
  }
  .u-mtSp70 {
    margin-top: 70px !important;
    margin-top: 4.375rem !important;
  }
  .u-mtSp80 {
    margin-top: 80px !important;
    margin-top: 5rem !important;
  }
  .u-mtSp90 {
    margin-top: 90px !important;
    margin-top: 5.625rem !important;
  }
  .u-mtSp100 {
    margin-top: 100px !important;
    margin-top: 6.25rem !important;
  }
  .u-mtSp110 {
    margin-top: 110px !important;
    margin-top: 6.875rem !important;
  }
  .u-mtSp120 {
    margin-top: 120px !important;
    margin-top: 7.5rem !important;
  }
  .u-mtSp130 {
    margin-top: 130px !important;
    margin-top: 8.125rem !important;
  }
  .u-mtSp140 {
    margin-top: 140px !important;
    margin-top: 8.75rem !important;
  }
  .u-mtSp150 {
    margin-top: 150px !important;
    margin-top: 9.375rem !important;
  }
  .u-mtSp160 {
    margin-top: 160px !important;
    margin-top: 10rem !important;
  }
  .u-mtSp170 {
    margin-top: 170px !important;
    margin-top: 10.625rem !important;
  }
  .u-mtSp180 {
    margin-top: 180px !important;
    margin-top: 11.25rem !important;
  }
  .u-mtSp190 {
    margin-top: 190px !important;
    margin-top: 11.875rem !important;
  }
  .u-mtSp200 {
    margin-top: 200px !important;
    margin-top: 12.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

.u-shadow {
  box-shadow: 0 0 13px rgba(255, 0, 0, 0.5);
}

.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}

.u-textLeft {
  text-align: Left !important;
}

.u-textCenter {
  text-align: Center !important;
}

.u-textRight {
  text-align: Right !important;
}

.u-textJustify {
  text-align: Justify !important;
}

@media screen and (max-width: 767px) {
  .u-textMdLeft {
    text-align: Left !important;
  }
  .u-textMdCenter {
    text-align: Center !important;
  }
  .u-textMdRight {
    text-align: Right !important;
  }
  .u-textMdJustify {
    text-align: Justify !important;
  }
}
.u-w300 {
  font-weight: 300;
}

.u-w400 {
  font-weight: 400;
}

.u-w500 {
  font-weight: 500;
}

.u-w600 {
  font-weight: 600;
}

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

.u-w900 {
  font-weight: 900;
}
/*# sourceMappingURL=style.css.map */
