html,
body {
  margin: 0;
  padding: 0;
}

html.touch-device body,
html.touch-device #page,
#container,
main,
#page {
  min-width: 0 !important;
}

::-webkit-scrollbar {
  display: none; /* スクロールバーを非表示にする */
}

/********** original **********/

.holdings-header,
.holdings-titlenav,
.Snsber,
.holdings-footer {
  display: none !important;
}

.wrapper {
  margin-bottom: 0;
}

/********** guide **********/

/********** nav **********/

.nav {
  z-index: 99;
  opacity: 0;
  transition: opacity ease-out 1s;
}
.nav.is-active {
  opacity: 1;
}
.nav.is-opacity0 {
  opacity: 0;
}

.nav::after {
  display: none;
}

.nav__link {
  padding: 0;
}

.nav__prev,
.nav__next {
  height: 32px;
}

.nav__prev::before,
.nav__next::before {
  top: calc(50% - 7.25px);
}

/********** wrapper **********/

/********** concept **********/

.archi-concept {
  display: flex;
  flex-direction: column;
  
  background-repeat: no-repeat;
  background-size: cover;
}

.archi-concept .archi-logo {
  margin: auto;
  opacity: 0;
  animation: fadeIn 1s ease-out 2s forwards;
}

.archi-concept .archi-logo img {
  width: 100%;
  height: auto;
}

.archi-concept .archi-lead {
  opacity: 0;
  animation: fadeIn 1s ease-out 2s forwards;
  text-align: center;
}

.archi-concept__inner {
  display: flex;
  flex-direction: column;
}

/********** contents **********/

.archi-contents__indicator {
  position: absolute;
  right: 32px;
  bottom: calc((16 / 810 * 100vh) + (16 / 1440 * 100vw));
  z-index: 999;
  /* height: calc((2 / 810 * 100vh) + (2 / 1440 * 100vw));
  min-height: 2px; */
  height: 2px;
  transition: opacity ease-out 1s;
}

.is-finish .archi-contents__indicator {
  opacity: 0;
  pointer-events: none;
}

.archi-contents__indicator .archi-indicator-wrap {
  display: flex;
  align-items: center;
  -moz-column-gap: calc(16 / 810 * 100vh);
  column-gap: calc(16 / 810 * 100vh);
}

.archi-contents__indicator .archi-indicator {
  width: calc(24 / 810 * 100vh);
}

.archi-contents__indicator .archi-indicator__point {
  display: block;
  width: 100%;
  /* height: calc(4 / 810 * 100vh);
  min-height: 2px; */
  height: 2px;
  background-color: #858585;
  transition: all ease-out 1s;
  position: relative;
}

.archi-contents__indicator .archi-indicator__point::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 10px;
}

.archi-contents__indicator .archi-indicator__point.is-active {
  animation: blinkBgcolor 1s ease-in-out infinite alternate !important;
}

.archi-contents__introduction .archi-section__inner > *.is-active {
  z-index: 99;
}

.archi-contents__introduction .archi-notice {
  line-height: 1.41667;
}

.archi-contents__introduction .archi-headline {
  display: flex;
  flex-direction: column;
}

.archi-contents__introduction [data-1st-element="paragraph02"],
.archi-contents__introduction [data-1st-element="paragraph03"],
.archi-contents__introduction [data-1st-element="paragraph04"] {
  line-height: 1.5;
}

.archi-contents__introduction .archi-column > *:last-child {
  margin-bottom: 0 !important;
}

.archi-contents__introduction .archi-column .archi-paragraph:not(.archi-u-fz-l) {
  line-height: 1.5;
}

.archi-contents__introduction .archi-column[data-1st-element="column01"] {
  display: flex;
}

.archi-contents__introduction .archi-pager__count span:nth-child(2) {
  display: flex;
  align-items: center;
  position: relative;
  top: 0.25em;
}

/********** paragraph **********/

.archi-paragraph-wrap {
  line-height: 2;
}

.archi-paragraph-wrap > *:last-child {
  margin-bottom: 0 !important;
}

/********** img **********/

.archi-img img,
.archi-img__item img {
  width: 100%;
  height: auto;
  transition: transform 1s ease-out;
}

/********** navigation **********/

.archi-navgation {
  display: flex;
  align-items: center;
  justify-content: center;
}

.archi-navigation__item-wrap {
  display: flex;
  flex-direction: column;
}

.archi-navigation__item .archi-navigation__link {
  display: inline-block;
  position: relative;
}

.archi-navigation__item .archi-navigation__link::before,
.archi-navigation__item .archi-navigation__link::after {
  content: "";
  position: absolute;
}

.archi-navigation__item .archi-navigation__link::before {
  left: 0;
  background-color: #333;
}

.archi-navigation__item .archi-navigation__link:hover,
.archi-navigation__item .archi-navigation__link.is-current {
  color: #333;
}

.archi-navigation__item .archi-navigation__link.is-current {
  font-weight: 700;
}

.archi-navigation__link {
  display: inline-block;
  position: relative;
  color: #666;
  transition: color ease-out 1s;
}

.archi-navigation__top {
  position: absolute;
  z-index: 99;
}

.archi-navigation__top .archi-navigation__link {
  display: block;
  pointer-events: auto;
}

/********** section **********/

/********** animation **********/

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeInBlur {
  0% {
    filter: blur(5px);
  }

  100% {
    filter: blur(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

@keyframes blinkBgcolor {
  0% {
    background-color: #fff;
  }

  100% {
    background-color: #858585;
  }
}

@media print, screen and (min-width: 1025px) {
  #container,
  .layout-Wrapper {
    max-width: none !important;
  }
  .layout-Wrapper.is-top {
    background: linear-gradient(180deg, #F3F4F5 0%, #F7F8F9 50%, #F1F2F3 100%);
  }

  .wrapper.is-finish .nav {
    opacity: 0;
    pointer-events: none;
  }

  .wrapper.is-finish .archi-contents__horizontal {
    z-index: 4;
  }

  .wrapper.is-finish .archi-contents__introduction .archi-pager {
    opacity: 0;
    pointer-events: none;
  }

  .spOnly-top {
    display: none !important;
  }

  .guide {
    height: auto !important;
  }

  .nav {
    position: fixed;
    top: 32px;
    right: 32px;
    /* opacity: 0; */
    background-color: transparent;
    transition: opacity ease-out 1s;
  }

  /* .nav.is-active {
    opacity: 1;
  } */

  .nav.archi-u-c-white .nav__item.is-current .nav__link {
    color: #fff !important;
  }

  .nav.archi-u-c-white .nav__link:hover {
    color: #434242 !important;
  }

  .nav__item-wrap {
    align-items: center;
    -moz-column-gap: 32px;
    column-gap: 32px;
  }

  .nav__item {
    flex: auto;
    font-size: calc((7 / 810 * 100vh) + (7 / 1440 * 100vw));
    font-weight: 400;
    line-height: 2.07143;
  }

  .nav__item::after {
    display: none;
  }

  .nav__item.is-current .nav__link {
    color: #333;
    font-weight: 700;
  }

  .nav__link {
    color: #666;
    transition: color ease-out 1s;
  }

  .nav__link:hover {
    color: #c0c0c0;
  }

  .nav__inner.is-white .nav__item .nav__link {
    color: #ccc;
  }
  .nav__inner.is-white .nav__item.is-current .nav__link {
    color: #fff;
  }

  .archi-wrapper {
    overflow: hidden;
    position: relative;
    z-index: 2;
  }

  .archi-concept {
    justify-content: center;
    z-index: 100;
    width: calc(100vw + 407px);
    height: 100vh;
    position: relative;
  }
  .archi-concept::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(/jp/archidesign/img/about/bg01_pc.jpg);
    background-position: 50% 50%;
    background-size: cover;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-out;
  }
  .archi-concept.is-active::before {
    opacity: 1;
    visibility: visible;
  }

  .archi-concept[style="opacity: 0;"] {
    z-index: -1;
  }

  .archi-concept .archi-logo {
    width: calc(355.53 / 810 * 100vh);
  }

  .archi-concept .archi-logo--panasonic {
    width: calc(150.24 / 810 * 100vh);
    /* margin-bottom: calc(34 / 810 * 100vh); */
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
  }

  .archi-concept .archi-lead {
    font-size: calc(18 / 810 * 100vh);
    line-height: 2.77778;
  }

  .archi-concept__inner {
    /* row-gap: calc(48 / 810 * 100vh); */
    /* max-width: 1200px; */
    width: 100vw;
    height: 100%;
    margin-left: 0;
    position: relative;
  }

  .archi-concept__title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .archi-concept__title svg {
    width: 100%;
    height: 100%;
  }

  .archi-contents {
    display: flex;
    position: relative;
    overflow: hidden;
    height: 100vh;
  }

  .archi-contents__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
  }

  .archi-contents__bg .archi-bg {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
  }

  .archi-contents__bg .archi-bg--layout01 {
    background-image: url(/jp/archidesign/img/about/bg06_pc.jpg);
  }

  .archi-contents__bg .archi-bg--layout02 {
    background-image: url(/jp/archidesign/img/about/bg05_pc.jpg);
  }

  .archi-contents__bg .archi-bg--layout03 {
    background-image: url(/jp/archidesign/img/about/bg03_pc.jpg);
  }

  .archi-contents__bg .archi-bg--layout04 {
    background-image: url(/jp/archidesign/img/about/bg02_pc.jpg);
  }

  .archi-section__detail[data-section="wrap01"] .arch-concept__img {
    display: flex;
    position: relative;
  }

  .archi-contents__horizontal {
    display: flex;
    position: relative;
    z-index: 2;
    height: 100vh;
  }

  .archi-contents__introduction {
    /* position: absolute;
    top: calc((60 / 810 * 100vh) + (60 / 1440 * 100vw));
    right: calc((60 / 810 * 100vh) + (60 / 1440 * 100vw));
    bottom: calc((60 / 810 * 100vh) + (60 / 1440 * 100vw));
    left: calc((60 / 810 * 100vh) + (60 / 1440 * 100vw));
    z-index: 3; */
  }

  .archi-contents__introduction .archi-notice {
    font-size: calc(12 / 810 * 100vh);
    text-align: right;
  }

  .archi-contents__introduction [data-1st-element].is-active,
  .archi-contents__introduction [data-2nd-element].is-active {
    opacity: 1;
  }

  .archi-contents__introduction .archi-headline {
    row-gap: calc(10 / 810 * 100vh);
    top: calc(20 / 810 * -100vh);
    left: 0;
    font-size: calc(14 / 810 * 100vh);
    line-height: 1.42857;
  }

  .archi-contents__introduction .archi-headline .archi-headline__title {
    font-size: calc(32 / 810 * 100vh);
    line-height: 1.4375;
  }

  .archi-contents__introduction [data-1st-element="paragraph01"] {
    right: 0;
    left: auto;
    transition-delay: 0.5s;
  }

  .archi-contents__introduction [data-1st-element="paragraph05"] {
    transition-delay: 0.5s;
  }

  .archi-contents__introduction [data-1st-element="paragraph05"] .archi-paragraph {
    margin-bottom: calc(6 / 810 * 100vh);
  }

  .archi-contents__introduction [data-2nd-element] {
    color: #fff;
  }

  .archi-contents__introduction [data-2nd-element="paragraph01"] {
    right: 0;
    left: auto;
    transition-delay: 0.5s;
  }

  .archi-contents__introduction .archi-img--side01,
  .archi-contents__introduction .archi-img--side02 {
    position: absolute;
    bottom: 0;
    left: calc((47.5 / 810 * 100vh) + (47.5 / 1440 * 100vw));
    opacity: 0;
    transition: opacity ease-out 1s;
  }

  .archi-contents__introduction .archi-img--side01.is-active,
  .archi-contents__introduction .archi-img--side02.is-active {
    opacity: 1;
  }

  .archi-contents__introduction .archi-img--side01 {
    width: calc((175 / 810 * 100vh) + (175 / 1440 * 100vw));
    max-width: 360px;
  }

  .archi-contents__introduction .archi-img--side02 {
    width: calc((175 / 810 * 100vh) + (175 / 1440 * 100vw));
    max-width: 420px;
  }

  .archi-contents__introduction .archi-column {
    width: 100%;
    height: 100%;
  }

  .archi-contents__introduction .archi-column .archi-paragraph-wrap {
    position: static;
    opacity: 1;
  }

  .archi-contents__introduction .archi-column .archi-notice {
    text-align: left;
  }

  .archi-contents__introduction .archi-column .archi-img img {
    width: 100%;
    height: auto;
  }

  .archi-contents__introduction .archi-column[data-1st-element="column01"] {
    flex-direction: column-reverse;
    row-gap: calc(17 / 810 * 100vh);
    position: static;
    width: calc(870 / 810 * 100vh);
    max-width: 870px;
    margin: 0 auto;
    padding-top: calc(80 / 810 * 100vh);
  }

  .archi-contents__introduction .archi-column[data-1st-element="column01"] .archi-paragraph-wrap--layout01 .archi-notice > span {
    margin-right: 1em;
  }

  .archi-contents__introduction .archi-column[data-2nd-element] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
  }

  .archi-contents__introduction .archi-column[data-2nd-element].is-active {
    opacity: 1;
  }

  .archi-contents__introduction .archi-column[data-2nd-element] .archi-paragraph {
    font-size: calc((8 / 810 * 100vh) + (8 / 1440 * 100vw));
  }

  .archi-contents__introduction .archi-column[data-2nd-element] .archi-paragraph.archi-u-fz-l {
    margin-bottom: calc((8 / 810 * 100vh) + (8 / 1440 * 100vw));
    font-size: calc((12 / 810 * 100vh) + (12 / 1440 * 100vw));
  }

  .archi-contents__introduction .archi-column[data-2nd-element] .archi-notice {
    margin-top: calc((10 / 810 * 100vh) + (10 / 1440 * 100vw));
    font-size: calc((6 / 810 * 100vh) + (6 / 1440 * 100vw));
  }

  .archi-contents__introduction .archi-column[data-2nd-element*="column"] {
    padding-top: calc((40 / 810 * 100vh) + (40 / 1440 * 100vw));
    padding-left: calc((272.5 / 810 * 100vh) + (272.5 / 1440 * 100vw));
  }

  .archi-contents__introduction .archi-column[data-2nd-element="column01"] .archi-img--layout01 {
    position: relative;
    overflow: visible;
    margin-bottom: calc((20 / 810 * 100vh) + (20 / 1440 * 100vw));
  }

  .archi-contents__introduction .archi-column[data-2nd-element="column01"] .archi-img--layout01 .archi-img__item:nth-child(1) {
    width: calc((290 / 810 * 100vh) + (290 / 1440 * 100vw));
    max-width: 580px;
  }

  .archi-contents__introduction .archi-column[data-2nd-element="column01"] .archi-img--layout01 .archi-img__item:nth-child(2) {
    position: absolute;
    top: calc(100% + (20 / 810 * 100vh) + (20 / 1440 * 100vw));
    left: calc((221 / 810 * 100vh) + (221 / 1440 * 100vw));
    width: calc((105.665 / 810 * 100vh) + (105.665 / 1440 * 100vw));
    max-width: 211.33px;
  }

  .archi-contents__introduction .archi-column[data-2nd-element="column02"] {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
  }

  .archi-contents__introduction .archi-column[data-2nd-element="column02"] .archi-img--layout01 {
    width: calc((275 / 810 * 100vh) + (275 / 1440 * 100vw));
    max-width: 550px;
    margin-top: calc((20 / 810 * 100vh) + (20 / 1440 * 100vw));
  }

  .archi-contents__introduction .archi-column[data-2nd-element="column03"] {
    display: flex;
    flex-direction: column;
  }

  .archi-contents__introduction .archi-column[data-2nd-element="column03"] .archi-img--layout01 {
    order: 2;
    display: flex;
    align-items: flex-end;
    -moz-column-gap: calc((12 / 810 * 100vh) + (12 / 1440 * 100vw));
    column-gap: calc((12 / 810 * 100vh) + (12 / 1440 * 100vw));
    margin-top: calc((20 / 810 * 100vh) + (20 / 1440 * 100vw));
  }

  .archi-contents__introduction .archi-column[data-2nd-element="column03"] .archi-img--layout01 .archi-img__item:nth-child(1) {
    width: calc(380 / 810 * 100vh);
    max-width: 380px;
  }

  .archi-contents__introduction .archi-column[data-2nd-element="column03"] .archi-img--layout01 .archi-img__item:nth-child(2) {
    width: calc(211.33 / 810 * 100vh);
    max-width: 211.33px;
  }

  .archi-contents__introduction .archi-column[data-2nd-element="column03"] .archi-paragraph-wrap {
    order: 1;
  }

  .archi-contents__introduction .archi-column[data-2nd-element="column03"] .archi-notice {
    order: 3;
  }

  .archi-contents__introduction .archi-column[data-2nd-element="column04"] .archi-img--layout01 {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    -moz-column-gap: calc((12 / 810 * 100vh) + (12 / 1440 * 100vw));
    column-gap: calc((12 / 810 * 100vh) + (12 / 1440 * 100vw));
    margin-bottom: calc((20 / 810 * 100vh) + (20 / 1440 * 100vw));
  }

  .archi-contents__introduction .archi-column[data-2nd-element="column04"] .archi-img--layout01 .archi-img__item:nth-child(1) {
    width: calc(400 / 810 * 100vh);
    max-width: 400px;
  }

  .archi-contents__introduction .archi-column[data-2nd-element="column04"] .archi-img--layout01 .archi-img__item:nth-child(2) {
    width: calc(211.33 / 810 * 100vh);
    max-width: 211.33px;
  }

  .archi-contents__introduction .archi-column[data-2nd-element="column05"] {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
  }

  .archi-contents__introduction .archi-column[data-2nd-element="column05"] .archi-img--layout01 {
    width: calc((245 / 810 * 100vh) + (245 / 1440 * 100vw));
    max-width: 490px;
    margin-top: calc((20 / 810 * 100vh) + (20 / 1440 * 100vw));
  }

  .archi-contents__introduction .archi-pager {
    position: absolute;
    bottom: calc(70 / 810 * -100vh);
    left: 0;
    transition: opacity ease-out 1s;
  }

  .archi-contents__introduction .archi-pager__count {
    display: flex;
    color: #a2a2a2;
    font-size: calc(13 / 810 * 100vh);
    font-weight: 300;
    line-height: 1.46154;
  }

  .archi-contents__introduction .archi-pager__count span:nth-child(1) {
    color: #333;
    font-size: calc(20 / 810 * 100vh);
    line-height: 1.45;
    transition: color ease-out 1s;
  }

  .archi-contents__introduction .archi-pager__count span:nth-child(2)::before {
    content: "/";
    margin: 0 3px;
    font-size: calc(10.26 / 810 * 100vh);
    line-height: 1.85185;
  }

  .archi-contents__introduction .archi-pager__count span.archi-u-c-white {
    color: #fff !important;
  }

  .archi-paragraph-wrap {
    font-size: calc(16 / 810 * 100vh);
  }

  .archi-paragraph-wrap sub {
    bottom: 0.6em;
    font-size: calc(12 / 810 * 100vh);
  }

  .archi-paragraph {
    margin-bottom: calc(16 / 810 * 100vh);
  }

  .archi-paragraph.archi-u-fz-l {
    font-size: calc(24 / 810 * 100vh);
    line-height: 1.45833;
  }

  .archi-img,
  .archi-img__item {
    position: relative;
    overflow: hidden;
  }

  .archi-navgation {
    position: relative;
  }

  .archi-navigation__item-wrap {
    row-gap: 32px;
  }

  .archi-navigation__item {
    font-size: 18px;
    line-height: 1.33333;
  }

  .archi-navigation__item .archi-navigation__link {
    padding-left: 35px;
  }

  .archi-navigation__item .archi-navigation__link::before {
    top: 0.65em;
    width: 12px;
    height: 2px;
  }

  .archi-navigation__item .archi-navigation__link::after {
    bottom: calc(-6 / 810 * 100vh);
    left: 35px;
    width: 0;
    height: 1px;
    background-color: #333;
    transition: width ease-out 0.3s;
  }

  .archi-navigation__item .archi-navigation__link:hover::after {
    width: calc(100% - 35px);
  }

  .archi-navigation__top {
    right: 74px;
    bottom: 72px;
  }

  .archi-navigation__top .archi-navigation__link {
    width: 54px;
    height: 24px;
  }

  .archi-contents__horizontal .archi-section {
    position: relative;
    min-width: 100vw;
    height: 100vh;
    flex-shrink: 0;
  }

  /* .archi-section#scene-1st {
    margin-right: calc(240 / 810 * 100vh);
  } */

  .archi-section#scene-2nd {
    /* margin-right: calc(976 / 810 * 100vh);
    color: #fff; */
    min-width: 0;
  }

  .archi-section#scene-3rd {
    background-image: url(/jp/archidesign/img/about/bg07_pc.jpg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
  }

  .archi-section#scene-3rd .archi-section__inner {
    -moz-column-gap: 0;
    column-gap: 0;
  }

  .archi-section__inner {
    display: flex;
    height: 100%;
  }

  .archi-section__inner [data-section="wrap01"] {
    /* width: calc(200vw - (240 / 1440 * 100vw)); */
    width: 350vw;
    background: linear-gradient(180deg, #F3F4F5 0%, #F7F8F9 50%, #F1F2F3 100%);
  }

  /* .archi-section__inner [data-section="wrap02"] {
    width: calc(600 / 810 * 100vh);
  } */

  .archi-section__detail {
    display: flex;
    position: relative;
  }

  .archi-section__detail .archi-img--full {
    z-index: 1;
    height: 100vh;
  }

  .archi-section__detail .archi-img--full img {
    width: auto;
    height: 100%;
  }

  .archi-section__detail .archi-paragraph-wrap {
    position: absolute;
    z-index: 2;
    opacity: 0;
  }

  .archi-section__detail[data-section="detail01"] {
    /* -moz-column-gap: calc(60 / 810 * 100vh);
    column-gap: calc(60 / 810 * 100vh);
    width: calc((1580 + 160) / 810 * 100vh);
    padding-right: calc(160 / 810 * 100vh); */
  }

  .archi-section__detail[data-section="detail01"] .archi-img--layout01 {
    width: calc(420 / 810 * 100vh);
    margin: calc(410 / 810 * 100vh) 0 0 calc(40 / 810 * 100vh);
  }

  .archi-section__detail[data-section="detail01"] .archi-img--layout02 {
    width: calc(300 / 810 * 100vh);
    margin-top: calc(300 / 810 * 100vh);
  }

  .archi-section__detail[data-section="detail01"] .archi-paragraph-wrap--layout01 {
    bottom: calc(120 / 810 * 100vh);
    left: calc(120 / 1440 * 100vw);
    line-height: 1.5;
  }

  /* .archi-section__detail[data-section="detail02"] {
    -moz-column-gap: calc(60 / 810 * 100vh);
    column-gap: calc(60 / 810 * 100vh);
    width: calc((1684 + 160) / 810 * 100vh);
    padding-right: calc(160 / 810 * 100vh);
  }

  .archi-section__detail[data-section="detail02"]::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: calc(60 / 1440 * 100vw);
    z-index: -1;
    pointer-events: none;
  }

  .archi-section__detail[data-section="detail02"] .archi-img--layout01 {
    width: calc(360 / 810 * 100vh);
    margin: calc(290 / 810 * 100vh) 0 0 calc(40 / 810 * 100vh);
  }

  .archi-section__detail[data-section="detail02"] .archi-img--layout02 {
    width: calc(340 / 810 * 100vh);
    margin-top: calc(490 / 810 * 100vh);
  }

  .archi-section__detail[data-section="detail02"] .archi-paragraph-wrap--layout01 {
    bottom: calc(120 / 810 * 100vh);
    left: calc(120 / 1440 * 100vw);
    line-height: 1.5;
  } */

  /* .archi-section__detail[data-section="detail03"]
  .archi-section__detail[data-section="detail04"],
  .archi-section__detail[data-section="detail05"],
  .archi-section__detail[data-section="detail06"],
  .archi-section__detail[data-section="detail07"],
  .archi-section__detail[data-section="detail08"] {
    width: calc(976 / 810 * 100vh);
  } */

  .archi-section__detail[data-section="detail09"] {
    display: flex;
    width: 100vw;
    padding: 0;
  }

  .archi-section__detail[data-section="detail09"] .archi-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 40px;
    flex-basis: 50%;
  }

  .archi-section__detail[data-section="detail09"] .archi-logo {
    width: 355.5px;
    margin: 0 auto;
  }

  .archi-section__detail[data-section="detail09"] .archi-logo img {
    width: 100%;
    height: auto;
  }

  .archi-section__detail[data-section="detail09"] .archi-logo--panasonic {
    width: 150.24px;
  }

  .archi-section__detail[data-section="detail09"] .archi-navgation {
    flex-basis: 50%;
  }
}

@media screen and (max-width: 1024px) {
  body {
    width: 100%;
    /* max-width: 600px; */
    margin: 0 auto;
  }
  .archi-bg_detail01,
  .archi-bg_detail02 {
    pointer-events: none;
  }

  #construction,
  .archi-section__detail[data-section="wrap01"] .arch-concept__desc,
  .archi-section__detail[data-section="wrap01"] .arch-concept__img,
  #environment .archi-section__detail-title-sp,
  #environment .archi-section__block01,
  #environment .archi-section__block03 {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .wrapper {
    position: relative;
  }

  .pcOnly {
    display: none !important;
  }

  .guide {
    margin-top: 55px;
  }

  .nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    background-color: rgba(255, 255, 255, 0.65);
    transition: background-color ease-out 0.3s;
  }

  .nav.is-active {
    position: fixed;
    background-color: white;
  }

  .nav__item-wrap {
    -moz-column-gap: 16px;
    column-gap: 16px;
  }

  .nav__item {
    padding-bottom: 3px;
    font-size: 14px;
    line-height: 29px;
  }

  .nav__item.is-current::after {
    height: 3px;
  }

  .nav__link {
    min-width: 0;
    font-weight: 400;
  }

  .archi-wrapper {
    margin-top: -32px;
  }

  .archi-concept {
    position: relative;
    z-index: 2;
    /* height: calc(100vh - 55px); */
    min-height: 490px;
    padding-top: calc(140 / 375 * 100vw);
    background-image: url(/jp/archidesign/img/about/bg01_sp.jpg);
    background-position: 50% 0;
  }

  .archi-concept::after {
    content: "";
    position: absolute;
    bottom: calc(15 / 375 * -100vw);
    left: calc(15 / 375 * 100vw);
    z-index: 100;
    width: calc(29 / 375 * 100vw);
    height: calc(66 / 375 * 100vw);
    background: url(/jp/archidesign/img/about/scroll_sp.svg) no-repeat 0 0/cover;
    animation: bounce 1.5s infinite;
  }

  .archi-concept .archi-logo {
    width: calc(197.52 / 375 * 100vw);
  }

  .archi-concept .archi-logo--panasonic {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -55px;
    left: 0;
    width: 100%;
    height: 55px;
    background-color: #fff;
  }

  .archi-concept .archi-logo--panasonic img {
    width: calc(130.42 / 375 * 100vw);
  }

  .archi-concept .archi-lead {
    font-size: calc(16 / 375 * 100vw);
    line-height: 2.6875;
  }

  .archi-concept__inner {
    row-gap: calc(79 / 375 * 100vw);
    padding: 0 6.4vw;
  }

  .archi-contents__introduction .archi-notice {
    font-size: 12px;
  }

  .archi-contents__introduction .archi-headline {
    row-gap: calc(4 / 375 * 100vw);
    position: relative;
    z-index: 2;
    font-size: calc(12 / 375 * 100vw);
    line-height: 1.41667;
  }

  .archi-contents__introduction .archi-headline .archi-headline__title {
    font-size: calc(20 / 375 * 100vw);
    line-height: 1.45;
  }

  .archi-contents__introduction [data-1st-element="paragraph01"] {
    position: relative;
    z-index: 2;
  }

  .archi-contents__introduction .archi-img--side01 {
    width: calc(230.45 / 375 * 100vw);
    margin: 0 -6.4vw calc(21.31 / 375 * 100vw) auto;
  }

  .archi-contents__introduction .archi-img--side02 {
    width: calc(207 / 375 * 100vw);
    margin: 0 auto calc(81 / 375 * 100vw) -6.4vw;
  }

  .archi-contents__introduction .archi-column[data-1st-element="column01"] {
    flex-direction: column;
    margin-right: -6.4vw;
    margin-left: -6.4vw;
    padding: calc(59 / 375 * 100vw) 6.4vw calc(52 / 375 * 100vw);
  }

  .archi-contents__introduction .archi-column[data-1st-element="column01"] .archi-paragraph-wrap--layout01 {
    display: contents;
  }

  .archi-contents__introduction .archi-column[data-1st-element="column01"] .archi-paragraph-wrap--layout01 .archi-paragraph {
    order: 2;
  }

  .archi-contents__introduction .archi-column[data-1st-element="column01"] .archi-paragraph-wrap--layout01 .archi-paragraph.archi-u-fz-l {
    order: 1;
  }

  .archi-contents__introduction .archi-column[data-1st-element="column01"] .archi-paragraph-wrap--layout01 .archi-notice {
    order: 4;
    margin-top: calc(11 / 375 * 100vw);
  }

  .archi-contents__introduction .archi-column[data-1st-element="column01"] .archi-paragraph-wrap--layout01 .archi-notice > span {
    display: block;
    padding-left: 2.5em;
    text-indent: -2.5em;
  }

  .archi-contents__introduction .archi-column[data-1st-element="column01"] .archi-img--layout01 {
    order: 3;
    margin-top: calc(10 / 375 * 100vw);
  }

  .archi-contents__introduction .archi-column[data-2nd-element] .archi-notice {
    margin-top: calc(14 / 375 * 100vw);
  }

  .archi-contents__introduction .archi-column[data-2nd-element*="column"] {
    margin-bottom: calc(80 / 375 * 100vw);
  }

  .archi-contents__introduction .archi-column[data-2nd-element="column01"] {
    margin-top: calc(34 / 375 * 100vw);
  }

  .archi-contents__introduction .archi-column[data-2nd-element="column01"] .archi-img--layout01 {
    display: flex;
    flex-direction: column;
    row-gap: calc(24 / 375 * 100vw);
    margin-bottom: calc(24 / 375 * 100vw);
  }

  .archi-contents__introduction .archi-column[data-2nd-element="column01"] .archi-img--layout01 .archi-img__item:nth-child(1) {
    margin-right: -6.4vw;
    margin-left: -6.4vw;
  }

  .archi-contents__introduction .archi-column[data-2nd-element="column01"] .archi-img--layout01 .archi-img__item:nth-child(2) {
    width: calc(147.44 / 375 * 100vw);
    margin-left: auto;
  }

  .archi-contents__introduction .archi-column[data-2nd-element="column02"] .archi-img--layout01 {
    margin: 0 -6.4vw calc(24 / 375 * 100vw);
  }

  .archi-contents__introduction .archi-column[data-2nd-element="column02"] .archi-paragraph-wrap--layout01 .archi-paragraph {
    margin-right: -3.2vw;
  }

  .archi-contents__introduction .archi-column[data-2nd-element="column03"] .archi-img--layout01 {
    display: flex;
    flex-direction: column;
    row-gap: calc(24 / 375 * 100vw);
    margin-bottom: calc(24 / 375 * 100vw);
  }

  .archi-contents__introduction .archi-column[data-2nd-element="column03"] .archi-img--layout01 .archi-img__item:nth-child(1) {
    margin-right: -6.4vw;
    margin-left: -6.4vw;
  }

  .archi-contents__introduction .archi-column[data-2nd-element="column03"] .archi-img--layout01 .archi-img__item:nth-child(2) {
    width: calc(147.44 / 375 * 100vw);
    margin-left: auto;
  }

  .archi-contents__introduction .archi-column[data-2nd-element="column04"] .archi-img--layout01 {
    display: flex;
    flex-direction: column;
    row-gap: calc(24 / 375 * 100vw);
    margin-bottom: calc(24 / 375 * 100vw);
  }

  .archi-contents__introduction .archi-column[data-2nd-element="column04"] .archi-img--layout01 .archi-img__item:nth-child(1) {
    margin-right: -6.4vw;
    margin-left: -6.4vw;
  }

  .archi-contents__introduction .archi-column[data-2nd-element="column04"] .archi-img--layout01 .archi-img__item:nth-child(2) {
    width: calc(148.02 / 375 * 100vw);
    margin-left: auto;
  }

  .archi-contents__introduction .archi-column[data-2nd-element="column05"] {
    margin-bottom: 0;
  }

  .archi-contents__introduction .archi-column[data-2nd-element="column05"] .archi-img--layout01 {
    margin: 0 -6.4vw calc(24 / 375 * 100vw);
  }

  .archi-paragraph-wrap {
    font-size: calc(16 / 375 * 100vw);
  }

  .archi-paragraph-wrap sub {
    bottom: 0.3em;
    font-size: 12px;
  }

  .archi-paragraph {
    margin-bottom: calc(12 / 375 * 100vw);
  }

  .archi-paragraph.archi-u-fz-l {
    font-size: calc(20 / 375 * 100vw);
    line-height: 1.45;
  }

  .archi-navigation__item-wrap {
    row-gap: 24px;
  }

  .archi-navigation__item {
    font-size: calc(16 / 375 * 100vw);
    line-height: 1.5;
  }

  .archi-navigation__item .archi-navigation__link {
    padding-left: calc(47 / 810 * 100vh);
    font-weight: 400;
  }

  .archi-navigation__item .archi-navigation__link::before {
    top: 0.75em;
    width: 10px;
    height: 1px;
  }

  .archi-navigation__item .archi-navigation__link::after {
    display: none;
  }

  .archi-navigation__top {
    right: calc(24 / 375 * 100vw);
    bottom: calc(64 / 375 * 100vw);
  }

  .archi-navigation__top .archi-navigation__link {
    width: 28px;
    height: 34px;
  }

  .archi-section {
    position: relative;
    z-index: 1;
  }

  .archi-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100vw;
    height: calc(700 / 375 * 100vw);
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-size: cover;
  }

  .archi-section .archi-headline {
    margin-bottom: calc(366 / 375 * 100vw);
  }

  .archi-section__inner {
    position: relative;
    z-index: 2;
    padding: calc(121 / 375 * 100vw) 6.4vw 0;
  }

  .archi-section--1st::before {
    background-image: url(/jp/archidesign/img/about/bg02_sp.jpg);
  }

  .archi-section--1st [data-1st-element="paragraph01"] {
    margin-bottom: calc(56 / 375 * 100vw);
  }

  .archi-section--1st [data-1st-element="paragraph05"] {
    font-size: 16px;
    line-height: 1.5;
  }

  .archi-section--1st [data-1st-element="paragraph05"] .archi-paragraph {
    margin-bottom: 16px;
  }

  .archi-section--1st [data-1st-element="paragraph05"] .archi-notice {
    margin-bottom: 16px;
  }

  .archi-section--1st .archi-section__detail {
    margin-right: -6.4vw;
    margin-left: -6.4vw;
    padding-right: 6.4vw;
    padding-left: 6.4vw;
    background-repeat: repeat-y;
    background-position: 50% 50%;
    background-size: 100% auto;
  }

  .archi-section--1st .archi-section__detail .archi-paragraph-wrap {
    margin-bottom: calc(40 / 375 * 100vw);
  }

  .archi-section--1st .archi-section__detail .archi-img--full {
    margin: 0 -6.4vw calc(32 / 375 * 100vw);
  }

  .archi-section--1st [data-section-sp="detail01"] {
    padding-bottom: calc(49 / 375 * 100vw);
  }

  .archi-section--1st [data-section-sp="detail01"] .archi-img--layout01 {
    display: flex;
    -moz-column-gap: calc(29 / 375 * 100vw);
    column-gap: calc(29 / 375 * 100vw);
    margin: 0 -6.4vw;
  }

  .archi-section--1st [data-section-sp="detail01"] .archi-img--layout01 .archi-img__item:nth-child(1) {
    width: calc(202 / 375 * 100vw);
    margin-top: calc(52 / 375 * 100vw);
  }

  .archi-section--1st [data-section-sp="detail01"] .archi-img--layout01 .archi-img__item:nth-child(2) {
    width: calc(144 / 375 * 100vw);
  }

  .archi-section--1st [data-section-sp="detail02"] {
    padding-bottom: calc(39 / 375 * 100vw);
  }

  .archi-section--1st [data-section-sp="detail02"] .archi-img--layout01 {
    display: flex;
    align-items: flex-start;
    -moz-column-gap: calc(31 / 375 * 100vw);
    column-gap: calc(31 / 375 * 100vw);
    margin: 0 -6.4vw;
  }

  .archi-section--1st [data-section-sp="detail02"] .archi-img--layout01 .archi-img__item:nth-child(1) {
    width: calc(177 / 375 * 100vw);
    padding-top: calc(98 / 375 * 100vw);
  }

  .archi-section--1st [data-section-sp="detail02"] .archi-img--layout01 .archi-img__item:nth-child(2) {
    width: calc(166 / 375 * 100vw);
  }

  .archi-section--2nd {
    color: #fff;
  }

  .archi-section--2nd::before {
    background-image: url(/jp/archidesign/img/about/bg05_sp.jpg);
  }

  .archi-section--2nd .archi-section__inner {
    padding-bottom: calc(80 / 375 * 100vw);
  }

  .archi-section--2nd [data-2nd-element="paragraph01"] {
    margin-bottom: calc(34 / 375 * 100vw);
    line-height: 1.875;
  }

  .archi-section--3rd::before {
    display: none;
  }

  .archi-section--3rd .archi-section__inner {
    padding-top: calc(103 / 375 * 100vw);
    padding-bottom: calc(139 / 375 * 100vw);
  }

  .archi-section--3rd .archi-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: calc(40 / 375 * 100vw);
    margin-bottom: calc(83 / 375 * 100vw);
  }

  .archi-section--3rd .archi-logo {
    width: calc(197 / 375 * 100vw);
  }

  .archi-section--3rd .archi-logo img {
    display: block;
  }

  .archi-section--3rd .archi-logo--panasonic {
    width: calc(130 / 375 * 100vw);
  }

  .archi-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: cover;
    pointer-events: none;
  }

  .is-current > .archi-bg {
    position: fixed;
  }

  .archi-section--1st > .archi-bg {
    background-image: url(/jp/archidesign/img/about/bg03_sp.jpg);
  }

  .archi-section--2nd > .archi-bg {
    background-image: url(/jp/archidesign/img/about/bg06_sp.jpg);
  }

  .archi-section--3rd > .archi-bg {
    background-image: url(/jp/archidesign/img/about/bg07_sp.jpg);
  }

  [data-1st-element="column01"] > .archi-bg {
    background-image: url(/jp/archidesign/img/about/bg01_sp.jpg);
  }

  [data-section-sp="detail02"] > .archi-bg {
    background-image: url(/jp/archidesign/img/about/bg04_sp.jpg);
  }

  .archi-section--1st,
  .archi-section--2nd,
  .archi-section--3rd,
  [data-1st-element="column01"],
  [data-section-sp="detail02"] {
    position: relative;
    z-index: 1;
  }

  .slide-in-left {
    transform: translateX(-100%);
  }

  .slide-in-right {
    transform: translateX(100%);
  }
}

@media print, screen and (min-width: 1025px) {
  .arch-concept__desc {
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: -206px;
    position: relative;
    z-index: 999;
    
  }
  .arch-concept__desc img {
    margin-top: 20px;
  }
  .arch-concept__img01 {
    width: 55.6vw;
    height: 31.3vw;
    position: relative;
    top: -40px;
    overflow: hidden;
    margin-left: 36vw;
    margin-top: auto;
    margin-bottom: auto;
  }
  .arch-concept__img01 img,
  .arch-concept__img01-lottie {
    position: absolute;
    top: 0;
    right: -10vw;
    width: 73.6vw;
    height: auto;
  }
  .arch-concept__img02 {
    width: 43.8vw;
    height: 24.6vw;
    position: relative;
    bottom: -10vw;
    overflow: hidden;
    margin-left: 14.1vw;
    margin-top: auto;
    margin-bottom: auto;
  }
  .arch-concept__img02 img,
  .arch-concept__img02-lottie {
    position: absolute;
    top: 0;
    right: 0;
    width: 61.8vw;
    height: auto;
  }
  
  .archi-section__title {
    position: fixed;
    top: 2.6vw;
    left: 4.5vw;
    color: #333;
    font-size: 32px;
    font-weight: 400;
    line-height: 130%; /* 41.6px */
    letter-spacing: 2.56px;
    z-index: 9;
    height: 100px;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .archi-section__title span {
    display: none;
  }
  .archi-section__title.is-deactive {
    opacity: 0;
    visibility: hidden;
  }
  .archi-section__block01 {
    width: 100vw;
    height: 100vh;
    padding-right: 13.7vw;
    padding-bottom: 5.4vw;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    background-image: url(/jp/archidesign/img/about/bg02_pc.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-sizing: border-box;
  }
  .archi-section__block01.w-auto {
    width: auto;
    flex-shrink: 0;
  }
  .archi-section__block01 p {
    font-size: 16px;
    font-weight: 400;
    line-height: 180%; /* 28.8px */
    letter-spacing: 1.28px;
  }
  .archi-section__block01.no-bg {
    background-image: none;
  }
  .archi-section__block01.is-white p {
    color: #fff;
  }
  .archi-section__block02 {
    display: flex;
    position: relative;
    padding-right: 36.3vw;
  }
  .archi-section__flex {
    display: flex;
    position: relative;
  }
  .archi-section__block02-imgs {
    position: relative;
    overflow: hidden;
  }
  .c-text-container.is-first {
    position: absolute;
    left: 50.8vw;
    bottom: 5.4vw;
  }
  .c-text-container.is-fourth {
    margin-top: 9.4vw;
  }
  .c-text-container.is-fifth {
    margin-top: 12.5vw;
  }
  .c-text-container.is-sixth {
    margin-top: 2.8vw;
  }
  .c-flex {
    display: flex;
    gap: 0 29px;
  }
  .c-flex.is-flex-start {
    align-items: flex-start;
  }
  .c-flex.is-flex-end {
    align-items: flex-end;
  }
  .c-text-container.is-white h3,
  .c-text-container.is-white p {
    color: #fff;
  }
  .c-text-container h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 120%; /* 24px */
    letter-spacing: 1.6px;
    margin-bottom: 16px;
  }
  .c-text-container p {
    font-size: 16px;    
    font-weight: 400;
    line-height: 180%; /* 28.8px */
    letter-spacing: 1.28px;
  }
  .c-text-container p.is-caution {
    font-size: 12px;
    line-height: 1.5;
    display: flex;
    margin-top: 12px;
  }
  .c-text-container p.is-caution::before {
    content: "※";
    font-size: 12px;
  }
  .c-text-container p.is-caution.is-second::before {
    content: "※：";
  }
  .c-text-container ol {
    display: flex;
    gap: 0 16px;
    padding-left: 0;
    counter-reset: listnum;
    margin-top: 12px;
  }
  .c-text-container ol li {
    list-style-type: none;
    font-size: 12px;
    font-weight: 400;
    line-height: 150%; /* 18px */
    letter-spacing: 0.24px;
  }
  .c-text-container ol li::before {
    counter-increment: listnum; /* counter-resetと同じ文字列 */
	  content: "※"counter(listnum)"："; /* カウントした数に応じて番号を表示 */
  }
  .archi-section__block02-imgs {
    margin: 0;
  }
  .archi-section__block02-imgs img {
    position: absolute;
    top: 0;
    right: -13vw;
    height: auto;
  }
  .archi-section__block02-img01 {
    width: 48.6vw;
    height: 22.4vw;
    margin-left: 50.8vw;
    margin-top: 11.1vw;
  }
  .archi-section__block02-img01 img {
    width: 57.6vw;
  }
  .archi-section__block02-img02 {
    width: 55.6vw;
    height: 37.5vw;
    margin-left: 15.6vw;
    margin-top: 11.1vw;
  }
  .archi-section__block02-img02 img {
    width: 73.6vw;
  }
  .archi-section__block02-img03 {
    width: 36.1vw;
    height: 17.2vw;
    margin-left: 16.5vw;
    margin-top: 31.4vw;
  }
  .archi-section__block02-img03 img {
    width: 39.6vw;
    right: -3vw;
  }
  .archi-section__block02-img04 {
    width: 48.6vw;
    height: 48.6vw;
    margin-left: 40vw;
  }
  .archi-section__block02-img04 img {
    width: 66.7vw;
  }
  .archi-section__block02-container {
    margin-left: 20.6vw;
    margin-top: 11.1vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .archi-section__block02-img05 {
    width: 25.7vw;
    height: 14.4vw;
  }
  .archi-section__block02-img05 img {
    width: 32.6vw;
    right: -10vw;
  }
  .c-text-container.is-second {
    margin-top: auto;
    padding-bottom: 5.4vw;
  }
  .archi-section__block02-img06 {
    width: 25.7vw;
    height: 14.4vw;
    margin-left: 14.4vw;
    margin-top: 34.2vw;
  }
  .archi-section__block02-img06 img {
    width: 32.6vw;
    right: -10vw;
  }
  .archi-section__block02-img07 {
    width: 35.8vw;
    height: 37.5vw;
    margin-left: 14.7vw;
    margin-top: 11.1vw;
  }
  .archi-section__block02-img07 img {
    width: 42.7vw;
    right: -6vw;
  }
  .archi-section__block02-container02 {
    margin-top: 15vw;
    margin-left: 40vw;
  }
  .archi-section__block02-img08 {
    margin: 3.8vw 0 0 10.5vw;
  }


  .archi-section__detail[data-section="detail02"] {
    padding-left: 40vw;
    position: relative;
  }
  .archi-section__detail[data-section="detail02"] .archi-section__block01 {
    padding-left: 10vw;
  }

  .archi-section__detail[data-section="detail02"]::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(9, 22, 10, 0) 0%, rgba(9, 22, 10, 0) 10%, rgba(9, 22, 10, 0.85) 20%, rgba(9, 22, 10, 0.85) 100%);
    position: absolute;
    top: 0;
    left: 0;
  }
  .archi-section__detail[data-section="detail02"] .archi-section__block01,
  .archi-section__detail[data-section="detail02"] .archi-section__block03 {
    position: relative;
  }
  .archi-bg_detail01 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100lvh;
    background: linear-gradient(180deg, #F3F4F5 0%, #F7F8F9 50%, #F1F2F3 100%);
    opacity: 0;
    transition: opacity 0.7s ease-out;
    z-index: 2;
  }
  .archi-bg_detail01.is-active {
    opacity: 1;
  }
  .archi-bg_detail02 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100lvh;
    background-image: url(/jp/archidesign/img/about/renewal/bg_detail02.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    transition: opacity 1s ease-out;
  }
  .archi-bg_detail02::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #09160A;
    opacity: 0;
    transition: opacity 0.7s ease-out;
    position: absolute;
    top: 0;
    left: 0;
  }
  .archi-bg_detail02.is-dark::before {
    opacity: 0.8;
  }
  .archi-section__block03 {
    display: flex;
    padding-right: 60vw;
  }
  .archi-section__block03-container01,
  .archi-section__block03-container02,
  .archi-section__block03-container03,
  .archi-section__block03-container04,
  .archi-section__block03-container05 {
    margin-left: 26.7vw;
    display: flex;
    align-items: flex-end;
    gap: 0 16.7vw;
    height: 100vh;
    height: 100lvh;
    padding-bottom: 5.1vw;
  }
  .archi-section__block03-container02 {
    margin-left: 31vw;
  }
  .archi-section__block03-container03 {
    margin-left: 30.6vw;
  }
  .archi-section__block03-container05 {
    margin-left: 31.1vw;
  }
  .archi-section__block03-img01 {
    width: 27.8vw;
    height: 27.1vw;
  }
  .archi-section__block03-img01 img {
    height: 29.2vw;
    width: auto;
    right: -5vw;
  }
  .archi-section__block03-img01 img.img01 {
    height: 38.1vw;
    margin-top: -6vw;
    right: -8vw;
  }
  .archi-section__block03-img01 img.img03 {
    height: 36.7vw;
    margin-top: -6vw;
    right: -8vw;
  }
  .archi-section__block03-img01 img.img05 {
    height: 33.3vw;
    margin-top: -3.6vw;
  }
  .archi-section__block03-img01 img.img07 {
    height: 36.4vw;
    margin-top: -3.6vw;
  }
  .archi-section__block03-img01 img.img09 {
    height: 35.2vw;
    margin-top: -3vw;
  }
  .archi-section__block03-img02 {
    width: 41.5vw;
    height: 20.3vw;
  }
  .archi-section__block03-img02 img {
    width: 51.7vw;
    height: 20.3vw;
  }
  .archi-section__block03-img03 {
    width: 38.2vw;
    height: 22.2vw;
  }
  .archi-section__block03-img03 img {
    width: 48.3vw;
    height: 22.2vw;
  }
  .archi-section__block03-img04 {
    margin-top: 3.5vw;
    padding-bottom: 3.8vw;
  }
  .archi-section__block03-img04 .parallax-img {
    width: 33.3vw;
    height: 18.3vw;
  }
  .archi-section__block03-img04 .parallax-img img {
    width: 40.8vw;
    height: 18.3vw;
    right: -10vw;
  }
  .archi-section__block03-img04 p {
    color: #fff;
    font-size: 12px;
    line-height: 150%; /* 18px */
    letter-spacing: 0.24px;
    margin-top: 10px;
  }
  .archi-section__block03-container04-text {
    padding-bottom: 9.2vw;
  }
  .archi-section__block03-img05 .parallax-img {
    width: 33.3vw;
    height: 18.8vw;
  }
  .archi-section__block03-img05 .parallax-img img {
    width: 36.1vw;
    height: 18.8vw;
    right: -5vw;
  }
  .archi-section__block03-img06 {
    width: 34vw;
    height: 20.8vw;
    margin-top: 2.8vw;
    margin-bottom: 5.9vw;
  }
  .archi-section__block03-img06 img {
    width: 46.4vw;
    height: 20.8vw;
  }
}

.arch-concept__desc p {
  text-align: center;
  font-size: 19px; 
  font-weight: 400;
  line-height: 250%; /* 47.5px */
  letter-spacing: 1.52px;
}


.js-fv-animation1,
.js-fv-animation2 {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.js-fv-animation1.is-active,
.js-fv-animation2.is-active {
  opacity: 1;
  visibility: visible;
}

.js-fadeIn {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

.js-fadeIn.is-active {
  opacity: 1;
  visibility: visible;
}

.archi-section__block02-lottie01 {
  width: 280px;
}

/* SP style */
@media (max-width: 1024px) {
  #container {
    width: 100%;
  }

  .archi-section__block02-lottie01 {
    width: 211px;
  }

  .archi-concept__title {
    margin-top: 5%;
  }

  .arch-concept__img01{
    width: calc(311 / 375 * 100%);
    aspect-ratio: 311/175;
    margin-left: 16px;
    overflow: hidden;
    position: relative;
  }

  .arch-concept__img01 img,
  .arch-concept__img01-lottie {
    width: calc(510 / 375 * 100%);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }



  .arch-concept__img02{
    width: calc(245 / 375 * 100%);
    aspect-ratio: 245/138;
    margin-right: 27px;
    margin-left: auto;
    overflow: hidden;
    position: relative;
    margin-top: 56px;
  }

  .arch-concept__img02 img,
  .arch-concept__img02-lottie {
    width: calc(510 / 375 * 100%);
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .archi-section__inner{
    padding: 0;
  }

  .archi-section__detail.sp-bg-white{
    /* background: linear-gradient(180deg, #F3F4F5 0%, #F7F8F9 50%, #F1F2F3 100%); */
    padding-bottom: 90px;
  }

  .archi-section__detail.js-lottieTitle-section{
    margin-top: 90px;
    /* background: #f4f5f6; */
  }

  .archi-section__detail.js-lottieTitle-section.sp-mt-0 {
    margin-top: 0;
  }


  .archi-concept .archi-logo--panasonic{
    top: 24%;
    background: transparent;
  }

  .archi-concept__inner{
    padding: 0;
  }

  .archi-concept__title{
    overflow: hidden;
  }

  .archi-concept{
    padding-top: 0;
    background-image: url(/jp/archidesign/img/about/KV.jpg);
    background-position: left 0;
    aspect-ratio: 375/490;
    width: 100%;
  }

  .archi-concept::after{
    display: none;
  }

  .archi-concept__anchor{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    inset: auto 32px 28px;

  }

  .archi-concept__anchor-link{
    color: #000;
    font-weight: 700;
    font-size: clamp(12px,2.8vw,22px);
    line-height: 130%;
    letter-spacing: 8%;
    text-align: center;
    width: 50%;
  }

  .archi-concept__anchor-link:after{
    content: '';
    display: block;
    width: clamp(13px,2.8vw,23px);
    aspect-ratio: 13/7;
    background-image: url(/jp/archidesign/img/about/arrow-anchor.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 12px auto 0;
  }

  .arch-concept__desc{
    padding: 64px 20px;
  }

  .arch-concept__desc p{
    font-size: 14px;
  }

  .archi-section__block01 figure{
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
  }

  .archi-section__block01 figure img{ 
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: 40% center;
  }

  .archi-section__block01 figure figcaption{
    position: absolute;
    font-weight: 400;
    font-size: 22px;
    line-height: 130%;
    letter-spacing: 8%;
    inset: 56px 16px;
    
  }

  .archi-section__block01 figure{
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
  }

  .archi-section__block01 figure img{
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: 43% top;
  }

  .archi-section__block01 p,
  .archi-section__block02 p,
  .archi-section__block03 p{
    padding: 0 16px;
    margin-top: 40px;
    font-size: 16px;
    line-height: 1.8;
  }

  .c-text-container h3{
    padding: 0 16px;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 8%;
    margin-top: 40px;
  }

  .archi-section__flex{
    display: flex;
    flex-direction: column;
  }

  .archi-section__block02-img01{
    width: calc(100% - 32px);
    aspect-ratio: 343/158;
    overflow: hidden;
    position: relative;
    order: 1;
    margin: 56px auto 0;
  }

  .archi-section__block02-img01 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .c-text-container.is-first{
    order: 2;
  }

  .c-text-container.is-second{
    order: 4;
  }

  .c-text-container.is-third{
    margin-top: 88px;
  }

  .c-text-container.is-third p{
    margin-top: 16px;
  }

  .archi-section__block02-img04{
    order: 3;
    position: relative;
    padding-right: 16px;
    margin-top: 87px;
  }

  .archi-section__block02-img04{
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
  }

  .archi-section__block02-img04 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .archi-section__block02-img04 figcaption{
    position: absolute;
    inset: 64px 16px;
    font-weight: 400;
    font-size: 22px;
    line-height: 130%;
    letter-spacing: 0.08em;
    color: #fff;
    

  }

  .archi-section__block02-container{
    display: flex;
    flex-direction: column-reverse;
  }

  .archi-section__block02-container02 ol{
    margin-top: 8px;
    padding: 0 16px;
  }

  .archi-section__block02-container02 ol li{
    font-weight: 400;
    font-size: 11px;
    line-height: 150%;
    letter-spacing: 2%;
    display: flex;
  }

  .archi-section__block02-container02 ol li:first-child::before{
    content: '※1：';
  }

  .archi-section__block02-container02 ol li:last-child::before{
    content: '※2：';
  }

  .archi-section__block02-img05{
    margin-top: 32px;
  }

  .archi-section__block02-img05{
    width: 100%;
    aspect-ratio: 181/102;
    width: calc(181 / 375 * 100%);
    overflow: hidden;
    margin-left: 16px;
  }

  .archi-section__block02-img05 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .archi-section__block02-img06{
    margin-top: 20px;
  }

  .archi-section__block02-img06{
    width: 100%;
    width: calc(181 / 375 * 100%);
    aspect-ratio: 181/102;
    overflow: hidden;
    margin-left: auto;
    margin-right: 50px;
  }

  .archi-section__block02-img06 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .archi-section__block02-img07{
    margin-top: 40px;
    width: calc(254 / 375 * 100%);
    aspect-ratio: 254/266;
    margin-left: 16px;
    overflow: hidden;
  }

  .archi-section__block02-img07 img{
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
  }

  .archi-section__block02-img08{
    margin-top: 32px;
    padding: 0 16px;
  }

  .archi-section__block02-img08 img{
    width: 100%;
    height: auto;
  }

  .archi-section__detail-title-sp {
    font-weight: 400;
    font-size: 22px;
    line-height: 130%;
    letter-spacing: 8%;
    color: #fff;
    padding: 16px;
    margin-top: 50vh;
    margin-top: 50lvh;
  }

  .archi-section__block01 p.sp-pt-90{
    padding-top: 90px;
  }

  .archi-section__block03 .archi-section__block03-container01{
    display: flex;
    flex-direction: column;
    margin-top: 152px;
  }

  .sp-order-1{
    order: 1;
  }
  
  .sp-order-2{
    order: 2;
  }

  .archi-section__block03-img02{
    margin-left: 16px;
    overflow: hidden;
    width: calc(359 / 375 * 100%);
    aspect-ratio: 359/175;
  }

  .archi-section__block03-img02 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .archi-section__block03 p.is-caution{
    display: flex;
    font-weight: 400;
    font-size: 11px;
    line-height: 150%;
    letter-spacing: 2%;
    margin-top: 16px;
  }

  .archi-section__block03 p.is-caution::before{
    content: '※：';
  }

  .archi-section__block03 p.is-caution.num-1::before{
    content: '※1：';
    text-wrap: nowrap;
  }

  .archi-section__block03 p.is-caution.num-2::before{
    content: '※2：';
    text-wrap: nowrap;
  }

  .sp-align-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .sp-align-center img,
  .sp-align-center svg {
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    display: block;
    width: calc(227 / 375 * 100%);
  }

  .archi-section__block03-img01{
    margin-top: 48px;
    aspect-ratio: 219/213;
    width: calc(219 / 375 * 100%);
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
  }

  .archi-section__detail[data-section="detail02"] {
    position: relative;
  }

  .archi-section__detail-title-sp,
  .archi-section__block01,
  .archi-section__block03 {
    position: relative;
    z-index: 2;
  }

  .archi-section__detail[data-section="detail02"]::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(9, 22, 10, 0) 0%, rgba(9, 22, 10, 0) 4%, rgba(9, 22, 10, 0.85) 8%, rgba(9, 22, 10, 0.85) 100%);
    position: absolute;
    top: 0;
    left: 0;
  }

  .archi-section__detail[data-section="detail02"] .archi-section__detail-title-sp {
    padding-top: 158px;
    padding-bottom: 158px;
    line-height: 1.7;
  }

  .archi-section__block03-img01 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .sp-mt-160{
    margin-top: 160px;
  }

  .sp-d-flex{
    display: flex;
    flex-direction: column;
  }

  .sp-order-1{
    order: 1;
  }

  .sp-order-2{
    order: 2;
  }

  .archi-section__block03-img03{
    aspect-ratio: 359/209;
    width: calc(359 / 375 * 100%);
    overflow: hidden;
  }

  .archi-section__block03-img03 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .archi-section__block03-container02 .c-text-container p{
    margin-top: 16px;
  }

  .archi-section__block03-img01 img{
    aspect-ratio: 219/213;
    /* width: calc(219 / 375 * 100%); */
  }

  .sp-ratio-359{
    aspect-ratio: 359/197;
    width: calc(359 / 375 * 100%);
    display: block;
    margin-left: auto;  
    overflow: hidden; 
  }

  .sp-ratio-359 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .sp-mt-16{
    margin-top: 16px !important;
  }

  .sp-fz-10{
    font-size: 10px;
  }

  .sp-radio-359-242{
    aspect-ratio: 359/242;
    width: calc(359 / 375 * 100%);
    overflow: hidden;
  }

  .sp-radio-359-242 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .sp-radio-359-220 {
    aspect-ratio: 359/220;
    width: calc(359 / 375 * 100%);
    overflow: hidden;
  }

  .sp-radio-359-220 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .sp-d-flex-column-reverse{
    display: flex;
    flex-direction: column-reverse;
  }

  .archi-section__block03-container05{
    padding-bottom: 120px;
  }

  .archi-section#scene-3rd {
    background-color: #fff;
  }
  
  .archi-section#scene-3rd .archi-section__inner{
    width: 100%;
    margin: 0 auto;
    padding: 60px 20px;
    min-height: 668px;
    background-image: url(/jp/archidesign/img/about/bg07_sp-1.webp);
    background-repeat: no-repeat;
    background-position: right 30%;
    background-size: cover;
  }

  .archi-logo--panasonic{
    text-align: center;
    margin-bottom: 33px;
  }

  .archi-logo--panasonic img{
    width: 92px;
  }

  .archi-logo{
    text-align: center;
  }

  .archi-logo img{
    max-width: 190px;
  }


  .archi-navgation{
    margin-top: 142px;
  }

  .archi-navigation__top{
    bottom: 30px;
    left: 50%;
    right: unset;
    transform: translate(-50%, 0);
    /* position: absolute; */
  }

  .archi-navigation__top img{
    width: 100%;
  }

  .archi-navigation__item{
    font-weight: 700;
    font-size: 14px;
    line-height: 18.65px;
  }

  .archi-navigation__item .archi-navigation__link{
    padding-left: 20px;
  }

  .archi-bg--layout01 {
    background-image: url(/jp/archidesign/img/about/bg06_pc.jpg);
  }

  .archi-bg--layout02 {
    background-image: url(/jp/archidesign/img/about/bg05_pc.jpg);
  }

  .archi-bg--layout03 {
    background-image: url(/jp/archidesign/img/about/bg03_pc.jpg);
  }

  .archi-bg--layout04 {
    background-image: url(/jp/archidesign/img/about/bg02_pc.jpg);
  }

  .archi-bg_detail01 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100lvh;
    background: linear-gradient(180deg, #F3F4F5 0%, #F7F8F9 50%, #F1F2F3 100%);
    opacity: 0;
    transition: opacity 0.7s ease-out;
    z-index: 1;
  }
  .archi-bg_detail01.is-active {
    opacity: 1;
  }
  .archi-bg_detail02 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100lvh;
    background-image: url(/jp/archidesign/img/about/renewal/bg_detail02_sp.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    transition: opacity 1s ease-out;
    /* z-index: 1; */
  }
  .archi-bg_detail02.is-dark::before {
    opacity: 0.8;
  }

  .is-white{
    color: #fff;
  }

  .sp-menu{
    background-image: url(/jp/archidesign/img/about/bg07_sp-1.jpg);
    background-repeat: no-repeat;
    background-position: right 50%;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100lvh;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease-out, visibility 0.7s ease-out;
  }

  .sp-menu.is-active{
    opacity: 1;
    visibility: visible;
  }
  
  .sp-menu .archi-section__inner{
    padding: 60px 20px;
  }

  .sp-menu-container {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 16px;
    width: 100%;
    max-width: 600px;
    z-index: 11;
  }

  .sp-menu-btn{
    width: 29px;
    height: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* mix-blend-mode: difference; */
    margin-left: auto;
  }

  .sp-menu-btn span{
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: transform 0.3s ease-out, margin-top 0.3s ease-out 0.3s, margin-bottom 0.3s ease-out 0.3s;
  }

  .sp-menu-btn span:nth-child(2){
    margin-top: 8px;
  }

  .sp-menu-btn.is-active span:nth-child(1){
    transform: rotate(45deg);
    margin-bottom: -5px;
    transition: transform 0.3s ease-out 0.3s, margin-top 0.3s ease-out, margin-bottom 0.3s ease-out;

  }

  .sp-menu-btn.is-active span:nth-child(2){
    transform: rotate(135deg);
    margin-top: -5px;
    transition: transform 0.3s ease-out 0.3s, margin-top 0.3s ease-out, margin-bottom 0.3s ease-out;

  }
}
