@charset "UTF-8";
/* Default Options */
/* Media Query */
/* Transform Font Size */
/* 無限に可変させるための追加関数 */
/* --------------------------------- */
.p-pageheader {
  flex-wrap: wrap;
  row-gap: var(--space-xxs) !important;
}
.p-pageheader .inner {
  display: flex;
  column-gap: 10px;
}
.p-pageheader .inner .icon,
.p-pageheader .inner .status {
  height: clamp(24px, 3vw, 36px);
  padding-inline: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
  font-weight: 500;
  line-height: 1;
  box-sizing: border-box;
}
.p-pageheader .inner .icon {
  background-color: var(--accent-color);
  color: var(--bg-color);
}
.p-pageheader .inner .icon[data-city=fukuoka] {
  background-color: var(--accent-color);
}
.p-pageheader .inner .icon[data-city=kumamoto] {
  background-color: #e01d16;
}
.p-pageheader .inner .icon[data-city=okinawa] {
  background-color: #1942b7;
}
.p-pageheader .inner .icon[data-city=tokyo] {
  background-color: #7d26a6;
}
.p-pageheader .inner .status {
  border: 1px solid var(--text-color);
  color: var(--text-color);
}
.p-pageheader .inner .status[data-status=coming-soon] {
  border-color: rgba(0, 0, 0, 0.3);
  color: rgba(0, 0, 0, 0.5);
}
.p-pageheader .jp {
  width: 100%;
}

/* --------------------------------- */
.newproject {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.newproject-ui {
  display: flex;
  flex-direction: column;
  gap: var(--space-xxs);
}
.newproject-ui-result {
  display: flex;
  align-items: end;
  gap: 5px;
}
.newproject-ui-result .number {
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
  font-weight: 500;
  line-height: 1;
}
.newproject-ui-result .number b {
  font-size: clamp(2.25rem, 1.6363636364rem + 1.7045454545vw, 3rem);
  font-weight: 500;
}
.newproject-ui-result .text {
  font-size: 0.75rem;
}
.newproject-list {
  padding-inline: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 80px;
}
.newproject-list a {
  display: flex;
  flex-direction: column;
  row-gap: var(--space-xxs);
  text-decoration: none;
}
.newproject-list a .header {
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: var(--space-xxs);
}
.newproject-list a .header .icon,
.newproject-list a .header .status {
  height: clamp(24px, 3vw, 36px);
  padding-inline: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
  line-height: 1;
  box-sizing: border-box;
}
.newproject-list a .header .icon {
  background-color: var(--accent-color);
  color: var(--bg-color);
}
.newproject-list a .header .icon[data-city=fukuoka] {
  background-color: var(--accent-color);
}
.newproject-list a .header .icon[data-city=kumamoto] {
  background-color: #e01d16;
}
.newproject-list a .header .icon[data-city=okinawa] {
  background-color: #1942b7;
}
.newproject-list a .header .icon[data-city=tokyo] {
  background-color: #7d26a6;
}
.newproject-list a .header .status {
  border: 1px solid var(--text-color);
  color: var(--text-color);
}
.newproject-list a .header .status[data-status=coming-soon] {
  border-color: rgba(0, 0, 0, 0.3);
  color: rgba(0, 0, 0, 0.5);
}
.newproject-list a .header .jp {
  width: 100%;
  font-size: clamp(1.5rem, 0.6818181818rem + 2.2727272727vw, 2.5rem);
  font-weight: 500;
  line-height: 1.4;
}
.newproject-list a .main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  align-items: center;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  position: relative;
  transition: var(--hover-animation-speed);
}
.newproject-list a .main .image {
  width: 100%;
  padding: max(10%, 20px);
  aspect-ratio: 4/3;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  grid-area: 1/1/2/3;
}
.newproject-list a .main .image img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 5px;
}
.newproject-list a .main .image svg {
  width: 60%;
  opacity: 0.1;
}
.newproject-list a .data {
  display: grid;
  grid-template-columns: auto 1fr;
}
.newproject-list a .data dt,
.newproject-list a .data dd {
  border-block-end: 1px dotted rgba(0, 0, 0, 0.2);
  font-size: clamp(0.8125rem, 0.7613636364rem + 0.1420454545vw, 0.875rem);
  padding-block: 10px;
  line-height: 1.4;
}
.newproject-list a .data dt {
  font-weight: 500;
}
.newproject-list a .data dd {
  display: flex;
  justify-content: end;
  align-items: center;
  column-gap: 3px;
}
.newproject-list a .data dd svg {
  width: 14px;
}
.newproject-list a:hover .main {
  background-color: rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .newproject-ui {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
  .newproject-list a {
    display: grid;
    grid-template-columns: var(--grid-column-guide);
    grid-template-rows: 1fr auto;
    column-gap: var(--space-xxs);
  }
  .newproject-list a .header {
    grid-area: 1/1/2/6;
    padding-block-end: var(--space-xxs);
    justify-content: end;
    border-block-start: 1px dotted rgba(0, 0, 0, 0.25);
  }
  .newproject-list a .main {
    grid-area: 1/6/3/13;
  }
  .newproject-list a .data {
    grid-area: 2/1/3/6;
    border-block-start: 1px dotted rgba(0, 0, 0, 0.25);
  }
}
.newproject {
  /* --------------------------------- */
}
.newproject-detail .l-contents {
  padding-block-start: var(--space-sm);
}
.newproject-detail-main .image {
  aspect-ratio: 1/1;
  padding-block: var(--space-sm);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.05);
}
.newproject-detail-main .image svg {
  width: 50%;
  opacity: 0.1;
}
.newproject-detail-main .inner {
  padding-block: var(--space-xs);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.newproject-detail-main .inner .title {
  display: flex;
  flex-direction: column;
}
.newproject-detail-main .inner .title .jp {
  font-size: clamp(1.875rem, 1.3636363636rem + 1.4204545455vw, 2.5rem);
  font-weight: 500;
  line-height: 1.4;
}
.newproject-detail-main .inner .description {
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
}
.newproject-detail-main .inner .profile {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.newproject-detail-main .inner .profile .data {
  padding: 0;
  list-style: none;
  border-block-end: 1px dotted rgba(0, 0, 0, 0.5);
}
.newproject-detail-main .inner .profile .data li {
  padding-block: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-block-start: 1px dotted rgba(0, 0, 0, 0.5);
}
.newproject-detail-main .inner .profile .data li .title {
  font-size: clamp(0.8125rem, 0.7613636364rem + 0.1420454545vw, 0.875rem);
  font-weight: 500;
}
.newproject-detail-main .inner .profile .data li .number {
  font-size: clamp(0.875rem, 0.8238636364rem + 0.1420454545vw, 0.9375rem);
  font-weight: 500;
  line-height: 1.2;
}
.newproject-detail-main .inner .profile .data li .number b {
  font-size: clamp(1.5rem, 0.6818181818rem + 2.2727272727vw, 2.5rem);
  font-weight: 500;
}
.newproject-detail-main .inner .profile .data li .text {
  font-size: clamp(0.875rem, 0.8238636364rem + 0.1420454545vw, 0.9375rem);
}
.newproject-detail-main .inner .profile .data li .text a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.newproject-detail-main .inner .profile .data li .text a svg {
  width: 12px;
}
.newproject-detail-main .inner .profile .data li.area {
  padding-block: 0;
  display: flex;
  flex-direction: column;
  border-block-start: 0;
}
.newproject-detail-main .inner .profile .data li.area .item {
  width: 100%;
  padding-block: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-block-start: 1px dotted rgba(0, 0, 0, 0.5);
}
.newproject-detail-main .inner .profile .button a {
  height: clamp(48px, 5vw, 64px);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--text-color);
  border-radius: 5px;
  text-decoration: none;
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
  font-weight: 500;
  color: var(--bg-color);
  transition: var(--hover-animation-speed);
}
.newproject-detail-main .inner .profile .button a:hover {
  opacity: 0.8;
}
.newproject-detail-other {
  padding-block-start: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.newproject-detail-other__title {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.newproject-detail-other__title .jp {
  font-size: clamp(1.25rem, 0.8409090909rem + 1.1363636364vw, 1.75rem);
  font-weight: 600;
}
.newproject-detail-other__title .en {
  font-size: clamp(0.75rem, 0.6477272727rem + 0.2840909091vw, 0.875rem);
  font-weight: 500;
}
.newproject-detail-other .p-projectlist {
  display: flex;
  flex-direction: column;
  column-gap: var(--space-xxs);
  row-gap: var(--space-sm);
}
.newproject-detail-other .p-projectlist a .header {
  display: grid;
  grid-template-columns: 1fr 36px;
  column-gap: 10px;
}
.newproject-detail-other .p-projectlist a .header .jp {
  grid-column: 1/2;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
}
.newproject-detail-other .p-projectlist a .header .icon,
.newproject-detail-other .p-projectlist a .header .status {
  height: 24px;
  padding-inline: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  font-size: 0.75rem;
  line-height: 1;
  box-sizing: border-box;
}
.newproject-detail-other .p-projectlist a .header .icon {
  grid-column: 2/3;
  background-color: var(--accent-color);
  color: var(--bg-color);
}
.newproject-detail-other .p-projectlist a .header .icon[data-city=fukuoka] {
  background-color: var(--accent-color);
}
.newproject-detail-other .p-projectlist a .header .icon[data-city=kumamoto] {
  background-color: #e01d16;
}
.newproject-detail-other .p-projectlist a .header .icon[data-city=okinawa] {
  background-color: #1942b7;
}
.newproject-detail-other .p-projectlist a .header .icon[data-city=tokyo] {
  background-color: #7d26a6;
}
.newproject-detail-other .p-projectlist a .header .status {
  border: 1px solid var(--text-color);
  color: var(--text-color);
}
.newproject-detail-other .p-projectlist a .header .status[data-status=coming-soon] {
  border-color: rgba(0, 0, 0, 0.3);
  color: rgba(0, 0, 0, 0.5);
}
.newproject-detail-other .p-projectlist a .data {
  display: grid;
  grid-template-columns: auto 1fr;
}
.newproject-detail-other .p-projectlist a .data dt,
.newproject-detail-other .p-projectlist a .data dd {
  border-block-end: 1px dotted rgba(0, 0, 0, 0.25);
  font-size: clamp(0.8125rem, 0.7613636364rem + 0.1420454545vw, 0.875rem);
  padding-block: 10px;
  line-height: 1.4;
}
.newproject-detail-other .p-projectlist a .data dt {
  font-weight: 500;
}
.newproject-detail-other .p-projectlist a .data dt:nth-last-child(2) {
  border-block-end: 0;
}
.newproject-detail-other .p-projectlist a .data dd {
  display: flex;
  justify-content: end;
  align-items: center;
  column-gap: 3px;
}
.newproject-detail-other .p-projectlist a .data dd svg {
  width: 13px;
}
.newproject-detail-other .p-projectlist a .data dd:last-child {
  border-block-end: 0;
}
@media screen and (min-width: 576px) {
  .newproject-detail-other .p-projectlist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1080px) {
  .newproject-detail-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: var(--space-xxs);
    row-gap: 10px;
  }
  .newproject-detail-main .inner {
    grid-area: 1/2/2/3;
    padding-block: 0;
    position: relative;
  }
  .newproject-detail-main .inner .profile {
    position: sticky;
    top: 120px;
  }
  .newproject-detail-main .image {
    grid-area: 1/1/2/2;
    aspect-ratio: auto;
    padding-block: 0;
    display: flex;
  }
  .newproject-detail-main .image div {
    width: calc(100% + var(--contents-inner-padding));
  }
  .newproject-detail-main .image div img {
    width: 100%;
  }
  .newproject-detail-other__title {
    flex-direction: row;
    align-items: center;
    gap: var(--space-xxs);
  }
  .newproject-detail-other .p-projectlist {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: var(--column-gap);
  }
}
@media screen and (min-width: 1280px) {
  .newproject-detail-main .inner .profile .data {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .newproject-detail-main .inner .profile .data li {
    padding-inline-end: var(--space-xxs);
  }
  .newproject-detail-main .inner .profile .data li:nth-child(2n) {
    padding-inline-start: var(--space-xxs);
    position: relative;
  }
  .newproject-detail-main .inner .profile .data li:nth-child(2n):before {
    content: "";
    width: 1px;
    height: 60%;
    display: block;
    border-inline-start: 1px dotted rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    top: 20%;
  }
  .newproject-detail-main .inner .profile .data li.area {
    grid-column: 1/3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .newproject-detail-main .inner .profile .data li.area .item {
    width: 100%;
    padding-block: 10px;
    padding-inline: var(--space-xxs);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-block-start: 1px dotted rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    position: relative;
  }
  .newproject-detail-main .inner .profile .data li.area .item:first-child {
    padding-inline-start: 0;
  }
  .newproject-detail-main .inner .profile .data li.area .item:first-child:before {
    display: none;
  }
  .newproject-detail-main .inner .profile .data li.area .item:last-child {
    padding-inline-end: 0;
  }
  .newproject-detail-main .inner .profile .data li.area .item:before {
    content: "";
    width: 1px;
    height: 60%;
    display: block;
    border-inline-start: 1px dotted rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    top: 20%;
  }
}

/* --------------------------------- */
/* --------------------------------- */