/* //////////////////////////////////////////////////

Title : style.scss
For   : Page/issue/LP/issue201/

Created       : 2025-01-25
Last Modified : 2025-01-26

==========================================

Content

////////////////////////////////////////////////// */
/**
 * variables, layouts
 */
#issue201 {
  --color-dark: #000;
  --color-white: #fff;
  --color-overlay: rgba(0, 0, 0, .2);
  --font-magister: "magister", sans-serif;
  --font-en: var(--font-magister);
  --zindex-behind: -1;
  --zindex-base: 1;
  --zindex-overlay: 10;
  --zindex-floating-element: 20;
}

/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  #issue201 {
    --rate: 100vw / 750;
    --lp-page-title-gap: calc(30 * var(--rate));
    --lp-conteiner-gutter: calc(10 * var(--rate));
    --lp-contents-container-row-gap: calc(10 * var(--rate));
    --lp-contents-container-column-gap: calc(10 * var(--rate));
    --lp-contents-container-column-length: 2;
    --lp-prices-vertical-spacer: calc(16 * var(--rate));
    --lp-prices-horizontal-spacer: calc(20 * var(--rate));
    --lp-prices-font-size: calc(23 * var(--rate));
    --lp-prices-line-height: calc(42.5 / 23);
    --lp-prices-button-position: calc(20 * var(--rate));
    --lp-prices-button-size: calc(34 * var(--rate));
    --lp-footer-spacer: calc(200 * var(--rate));
    --lp-link-button-gap: calc(20 * var(--rate));
    --lp-link-button-border-size: calc(160 * var(--rate));
  }
  #issue201 .hidden-sml {
    display: none !important;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  #issue201 {
    --rate: 100vw / 2100;
    --lp-page-title-gap: calc(37 * var(--rate));
    --lp-conteiner-gutter: calc(22 * var(--rate));
    --lp-contents-container-row-gap: calc(8 * var(--rate));
    --lp-contents-container-column-gap: calc(8 * var(--rate));
    --lp-contents-container-column-length: 4;
    --lp-prices-vertical-spacer: calc(20 * var(--rate));
    --lp-prices-horizontal-spacer: calc(25 * var(--rate));
    --lp-prices-font-size: calc(18 * var(--rate));
    --lp-prices-line-height: calc(33.3 / 18);
    --lp-prices-button-position: calc(20 * var(--rate));
    --lp-prices-button-size: calc(30 * var(--rate));
    --lp-footer-spacer: calc(250 * var(--rate));
    --lp-link-button-gap: calc(18 * var(--rate));
    --lp-link-button-border-size: calc(130 * var(--rate));
  }
  #issue201 .hidden-lrg {
    display: none !important;
  }
}
/**
 * common
 */
.header {
  transition: all 1s ease;
}
.header.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.lp-miesrohe {
  font-family: var(--font-en);
}
.lp-miesrohe img,
.lp-miesrohe picture {
  display: var(--display, block);
}
.lp-miesrohe img,
.lp-miesrohe video,
.lp-miesrohe svg {
  width: 100%;
  height: auto;
}
.lp-miesrohe iframe {
  width: 100%;
  height: 100%;
}
.lp-miesrohe a {
  display: var(--display, inline-block);
}
.lp-miesrohe a:has(img) {
  --display: block;
}
.lp-miesrohe * {
  text-align: var(--text-align, initial);
  box-sizing: border-box;
}
.lp-miesrohe button {
  padding: 0;
  background: inherit;
  border: none;
  outline: none;
}

/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  #breadcrumb .cateList {
    -webkit-margin-after: 0;
            margin-block-end: 0;
  }
}
/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .footer {
    -webkit-padding-before: 0;
            padding-block-start: 0;
  }
}
/**
 * header
 */
.lp-miesrohe__page-title {
  --text-align: center;
  display: grid;
  grid-template-columns: 100%;
  row-gap: var(--lp-page-title-gap);
  width: 100%;
}
.lp-miesrohe__page-title > * {
  line-height: 1;
  letter-spacing: 0.03em;
}

/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .lp-miesrohe__header {
    -webkit-padding-before: calc(100 * var(--rate));
            padding-block-start: calc(100 * var(--rate));
    -webkit-padding-after: calc(98 * var(--rate));
            padding-block-end: calc(98 * var(--rate));
  }
  .lp-miesrohe__page-title--primary {
    font-size: calc(45 * var(--rate));
  }
  .lp-miesrohe__page-title--secondary {
    font-size: calc(33 * var(--rate));
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .lp-miesrohe__header {
    -webkit-padding-before: calc(118 * var(--rate));
            padding-block-start: calc(118 * var(--rate));
    -webkit-padding-after: calc(135 * var(--rate));
            padding-block-end: calc(135 * var(--rate));
  }
  .lp-miesrohe__page-title--primary {
    word-spacing: -0.2rem;
    font-size: calc(67 * var(--rate));
  }
  .lp-miesrohe__page-title--secondary {
    font-size: calc(34 * var(--rate));
  }
}
/**
 * contents
 */
.lp-miesrohe__contents-container {
  display: grid;
  grid-template-columns: repeat(var(--lp-contents-container-column-length), 1fr);
  row-gap: var(--lp-contents-container-row-gap);
  -moz-column-gap: var(--lp-contents-container-column-gap);
       column-gap: var(--lp-contents-container-column-gap);
  padding-inline: var(--lp-conteiner-gutter);
}
.lp-miesrohe__contents-cell {
  position: relative;
  overflow: hidden;
}
.lp-miesrohe__contents-cell .splide__list {
  --display: flex;
}
/* .lp-miesrohe__prices-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-block: var(--lp-prices-vertical-spacer);
  padding-inline: var(--lp-prices-horizontal-spacer);
  background-color: var(--color-overlay);
  font-size: var(--lp-prices-font-size);
  line-height: var(--lp-prices-line-height);
  color: var(--color-white);
  letter-spacing: 0.04em;
  z-index: var(--zindex-overlay);
  opacity: var(--prices-opacity-value, 0);
  visibility: var(--prices-visible-status, hidden);
  pointer-events: var(--prices-pointer-events-value, none);
  transition: all 0.6s ease;
}
.lp-miesrohe__prices-container.is-active {
  --prices-opacity-value: 1;
  --prices-visible-status: visible;
  --prices-pointer-events-value: auto;
  --prices-transform-value: 0;
} */
.lp-miesrohe__prices {
  opacity: var(--prices-opacity-value, 0);
  visibility: var(--prices-visible-status, hidden);
  pointer-events: var(--prices-pointer-events-value, none);
  transition: all 0.6s ease;
}
.lp-miesrohe__prices-button {
  position: absolute;
  bottom: var(--lp-prices-button-position);
  right: var(--lp-prices-button-position);
  width: var(--lp-prices-button-size);
  height: var(--lp-prices-button-size);
  z-index: var(--zindex-floating-element);
}
.lp-miesrohe__prices-button span {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  margin: auto;
  background-color: var(--color-white);
  transition: all 0.3s ease;
}
.lp-miesrohe__prices-button span:nth-child(2) {
  transform: rotate(90deg);
}

/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .lp-miesrohe__contents-cell:has(.lp-miesrohe__heading) {
    grid-column: 1/span 2;
  }
  .lp-miesrohe__contents-cell--wide {
    grid-column: 1/span 2;
  }
  .lp-miesrohe__contents-cell:nth-child(2) {
    --animation-delay: .2s;
  }
  /* .lp-miesrohe__contents-cell:nth-child(3) {
    --animation-delay: .4s;
  } */
  .lp-miesrohe__contents-cell:nth-child(4) {
    --animation-delay: .2s;
  }

  .lp-miesrohe__contents-cell:nth-child(6) {
    --animation-delay: .2s;
  }
  .lp-miesrohe__contents-cell:nth-child(11) {
    --animation-delay: .2s;
  }
  /* .lp-miesrohe__contents-cell:nth-child(12){
    --animation-delay: .4s;
  } */
  .lp-miesrohe__contents-cell:nth-child(13){
    --animation-delay: .2s;
  }
  .lp-miesrohe__contents-cell:nth-child(18){
    --animation-delay: .2s;
  }
  /* .lp-miesrohe__contents-cell:nth-child(19){
    --animation-delay: .4s;
  } */
  /* .lp-miesrohe__contents-cell:nth-child(20){
    --animation-delay: .4s;
  } */
  .lp-miesrohe__contents-cell:nth-child(21) {
    --animation-delay: .2s;
  }
  .lp-miesrohe__contents-cell:nth-child(24){
    --animation-delay: .2s;
  }
  .lp-miesrohe__contents-cell:nth-child(28) {
    --animation-delay: .2s;
  }
  .lp-miesrohe__contents-cell:nth-child(30){
    --animation-delay: .2s;
  }
  /* .lp-miesrohe__contents-cell:nth-child(31){
    --animation-delay: .4s;
  } */
  .lp-miesrohe__contents-cell:nth-child(32){
    --animation-delay: .2s;
  }
  .lp-miesrohe__heading {
    padding-block: calc(30 * var(--rate));
    font-size: calc(32 * var(--rate));
    line-height: 1.4;
    letter-spacing: 0.018em;
  }
  .lp-miesrohe__heading--first {
    --text-align: right;
    -webkit-padding-end: calc(20 * var(--rate));
            padding-inline-end: calc(20 * var(--rate));
  }
  .lp-miesrohe__heading--second {
    --text-align: center;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .lp-miesrohe__contents-cell:has(.lp-miesrohe__heading) {
    display: grid;
    align-items: end;
    padding-block: calc(38 * var(--rate));
    padding-inline: calc(30 * var(--rate));
  }
  .cell01 {
    order: 0;
    grid-row: 1;

  }
  .cell02 {
    order: 1;
    grid-row: 1;
    --animation-delay: .2s;
  }
  .cell03 {
    order: 3;
    grid-row: 1;
    --animation-delay: .6s;
  }
  
  .cell04 {
    order: 2;
    grid-row: 1;
    --animation-delay: .4s;
  }

  .cell05 {
    order: 0;
    grid-row: 2;
    --animation-delay: .4s;
  }
  .cell06 {
    order: 0;
    grid-row: 3;
    --animation-delay: .2s;
  }
  .cell07 {
    order: 1;
    grid-row: 2;
    --animation-delay: .2s;
  }
  .cell08 {
    order: 1;
    grid-row: 3;
  }

  .cell09-lrg {
    grid-row: 2/span 2;
    grid-column: 3/span 2;
  }
  .cell10 {
    order: 1;
    grid-row: 4;
    --animation-delay: .2s;
  }
  .cell11 {
    order: 0;
    grid-row: 4;
  }
  .cell12 {
    order: 3;
    grid-row: 4;
    --animation-delay: .6s;
  }
  .cell13 {
    order: 2;
    grid-row: 4;
    --animation-delay: .4s;
  }
  .cell14 {
    order: 2;
    grid-row: 5;
    --animation-delay: .2s;
  }

  .cell14.item__blk .txtbox{
    align-items: center;
  }
  .cell15 {
    order: 1;
    grid-row: 7;
    --animation-delay: .2s;
  }

  .cell16-lrg {
    grid-row: 5/span 2;
    grid-column: 1/span 2;
    --animation-delay: .4s;
  }

  .cell17 {
    order: 3;
    grid-row: 5;
  }

  .cell18 {
    order: 0;
    grid-row: 7;
  }
  .cell19 {
    --animation-delay: .2s;
  }
  .cell20 {

  }
  .cell21-lrg {
    grid-row: 7 / span 2;
    grid-column: 3 / span 2;
    --animation-delay: .4s;
  }

  .cell22 {
    --animation-delay: .2s;
  }

  .cell24 {

    --animation-delay: .4s;
  }

  .cell25{
    order: 2;
    grid-row: 9;
  }

  #issue201 .cell25.item__blk .txtbox{
    top: 0;
    bottom: 0;
    justify-content: flex-start;
  }

  .cell26{
    order: 3;
    grid-row: 10;
  }

  #issue201 .cell26.item__blk .txtbox.-center.adjust-size {
    padding-top: calc(38* 0.0476190476vw);
  }

  .cell27{
    order: 2;
    grid-row: 10;
    --animation-delay: .2s;
  }

  .cell28{
    order: 2;
    grid-row: 11;
    --animation-delay: .2s;
  }

  .cell29{
    order: 3;
    grid-row: 11;
  }

  .cell30{
    order: 1;
    grid-row: 9;
    --animation-delay: .2s;
  }

  .cell31{
    order: 0;
    grid-row: 9;
  }

  .cell32-lrg {
    grid-row: 10 /span 2;
    grid-column: 1/span 2;
    --animation-delay: .4s;
  }

  .lp-miesrohe__heading {
    font-size: calc(38 * var(--rate));
    line-height: 1.3;
  }
  .lp-miesrohe__heading--first {
    letter-spacing: 0.015em;
  }
  .lp-miesrohe__heading--second {
    justify-self: end;
    writing-mode: vertical-rl;
    letter-spacing: 0.01em;
    transform: rotate(180deg) translate(calc(-10 * var(--rate)), calc(12 * var(--rate)));
  }
}

/**
 * animation
 */
.js-animation-trigger .anim-fade-in {
  opacity: 0;
}
.js-animation-trigger.is-active .anim-fade-in {
  -webkit-animation: fade-in 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: fade-in 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  -webkit-animation-delay: var(--animation-delay, 0);
          animation-delay: var(--animation-delay, 0);
}
.js-animation-trigger .anim-typing-text span {
  opacity: 0;
  transition: all 1ms;
}

.js-animation-trigger.is-active .anim-typing-text span {
  opacity: 1;
}

.js-prices-container-display-trigger.lp-miesrohe__prices-button.is-active span:nth-child(2) {
  transform: rotate(0deg);
  opacity: 0;
}

/**
 * @keyframes
 */
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


/* LOOK03 追記 */



/* animation */
#issue201 .js-fade {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#issue201 .js-fade.on {
  opacity: 1;
}
#issue201 .js-fade.on .txtbox .txt span {
  opacity: 1 !important;
}


/* text animation */
#issue201 .item__blk .txtbox {
  font-size: calc(38 * 0.1333333333vw);
  letter-spacing: 0.02em;
  text-align: center;
  padding: calc(42 * 0.1333333333vw) calc(20 * 0.1333333333vw);
  height: 100%;
}

@media screen and (max-width: 767px) {
  #issue201 .cell14.item__blk .txtbox {
    font-size: calc(35 * 0.1333333333vw);
  }

  #issue201 .lp-miesrohe__contents-cell.cell14.item__blk .txtbox{
    padding: calc(28* 0.1333333333vw) calc(30* 0.1333333333vw);
  }
}

@media screen and (min-width: 768px) {
  #issue201 .item__blk .txtbox {
    font-size: calc(44 * 0.0476190476vw);
    line-height: 1.2909433962;
    padding: calc(38 * 0.0476190476vw) calc(30 * 0.0476190476vw);
    display: flex;
    justify-content: center;
  }
}

#issue201 .item__blk .txtbox .txt {
  display: block;
  line-height: 1.5;
}

#issue201 .item__blk .txtbox .txt span {
  opacity: 0;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(1) {
  transition-delay: 0s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(2) {
  transition-delay: 0.1s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(3) {
  transition-delay: 0.2s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(4) {
  transition-delay: 0.3s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(5) {
  transition-delay: 0.4s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(6) {
  transition-delay: 0.5s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(7) {
  transition-delay: 0.6s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(8) {
  transition-delay: 0.7s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(9) {
  transition-delay: 0.8s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(10) {
  transition-delay: 0.9s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(11) {
  transition-delay: 1s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(12) {
  transition-delay: 1.1s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(13) {
  transition-delay: 1.2s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(14) {
  transition-delay: 1.3s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(15) {
  transition-delay: 1.4s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(16) {
  transition-delay: 1.5s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(17) {
  transition-delay: 1.6s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(18) {
  transition-delay: 1.7s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(19) {
  transition-delay: 1.8s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(20) {
  transition-delay: 1.9s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(21) {
  transition-delay: 2s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(22) {
  transition-delay: 2.1s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(23) {
  transition-delay: 2.2s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(24) {
  transition-delay: 2.3s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(25) {
  transition-delay: 2.4s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(26) {
  transition-delay: 2.5s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(27) {
  transition-delay: 2.6s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(28) {
  transition-delay: 2.7s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(29) {
  transition-delay: 2.8s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(30) {
  transition-delay: 2.9s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(31) {
  transition-delay: 3s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(32) {
  transition-delay: 3.1s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(33) {
  transition-delay: 3.2s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(34) {
  transition-delay: 3.3s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(35) {
  transition-delay: 3.4s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(36) {
  transition-delay: 3.5s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(37) {
  transition-delay: 3.6s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(38) {
  transition-delay: 3.7s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(39) {
  transition-delay: 3.8s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(40) {
  transition-delay: 3.9s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(41) {
  transition-delay: 4s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(42) {
  transition-delay: 4.1s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(43) {
  transition-delay: 4.2s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(44) {
  transition-delay: 4.3s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(45) {
  transition-delay: 4.4s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(46) {
  transition-delay: 4.5s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(47) {
  transition-delay: 4.6s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(48) {
  transition-delay: 4.7s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(49) {
  transition-delay: 4.8s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(50) {
  transition-delay: 4.9s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(51) {
  transition-delay: 5s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(52) {
  transition-delay: 5.1s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(53) {
  transition-delay: 5.2s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(54) {
  transition-delay: 5.3s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(55) {
  transition-delay: 5.4s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(56) {
  transition-delay: 5.5s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(57) {
  transition-delay: 5.6s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(58) {
  transition-delay: 5.7s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(59) {
  transition-delay: 5.8s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(60) {
  transition-delay: 5.9s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(61) {
  transition-delay: 6s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(62) {
  transition-delay: 6.1s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(63) {
  transition-delay: 6.2s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(64) {
  transition-delay: 6.3s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(65) {
  transition-delay: 6.4s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(66) {
  transition-delay: 6.5s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(67) {
  transition-delay: 6.6s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(68) {
  transition-delay: 6.7s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(69) {
  transition-delay: 6.8s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(70) {
  transition-delay: 6.9s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(71) {
  transition-delay: 7s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(72) {
  transition-delay: 7.1s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(73) {
  transition-delay: 7.2s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(74) {
  transition-delay: 7.3s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(75) {
  transition-delay: 7.4s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(76) {
  transition-delay: 7.5s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(77) {
  transition-delay: 7.6s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(78) {
  transition-delay: 7.7s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(79) {
  transition-delay: 7.8s;
}
#issue201 .item__blk .txtbox .txt span:nth-of-type(80) {
  transition-delay: 7.9s;
}

#issue201 .item__blk .txtbox.-center .txt,
#issue201 .item__blk.-sm .txtbox .txt,
#issue201 .item__blk.-tate .txtbox .txt {
  display: block;
}

#issue201 .item__blk.-tate .txtbox {
  position: absolute;
  writing-mode: vertical-rl;
  line-height: 1.5;
  text-align: right;
  height: auto;
}

#issue201 .item__blk.-sm .txtbox {
  display: flex;
  align-items: end;
  font-size: calc(26 * 0.1333333333vw);
  line-height: 1.5517241379;
  text-align: left;
  padding: calc(40 * 0.1333333333vw) calc(20 * 0.1333333333vw);
}

#issue201 .item__blk .txtbox.-center {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(35 * 0.1333333333vw);
  line-height: 1.4189189189;
  padding-top: calc(31* 0.1333333333vw);
}

#issue201 .item__blk .txtbox.-center.adjust-size .txt {
  text-align: center;
}

@media screen and (max-width: 767px) {


  #issue201 .item__blk .txtbox.-center.adjust-size {
    font-size: calc(30 * 0.1333333333vw);
    padding-top: calc(47* 0.1333333333vw);
  }

  #issue201 .item__blk.lp-miesrohe__contents-cell--wide .txtbox{
    display: flex;
    justify-content: right;
  }

  #issue201 .item__blk.lp-miesrohe__contents-cell--wide .txtbox .txt{
    text-align: right;
  }

  #issue201 .item__blk.-tate .txtbox {
    font-size: calc(26 * 0.1333333333vw);
    top: calc(-10* 0.1333333333vw);
    right: calc(4* 0.1333333333vw);
    letter-spacing: 0.01em;
  }

}

@media screen and (min-width: 768px) {

  #issue201 .cell05.item__blk .txtbox.-center{
    padding-top: calc(15* 0.1333333333vw);
  }

  #issue201 .item__blk .txtbox.-center {
    font-size: calc(46 * 0.0476190476vw);
    line-height: 1.45;
  }

  #issue201 .item__blk .txtbox.-center.adjust-size {
    font-size: calc(38 * 0.0476190476vw);
  }

  #issue201 .item__blk.-tate .txtbox {
    font-size: calc(32 * 0.0476190476vw);
    right: calc(-2 * 0.0476190476vw);
  }

  #issue201 .item__blk.-tate .txtbox .txt{
    line-height: 1.45;
    letter-spacing: 0.02em;
    word-spacing: -0.2rem;
  }

  #issue201 .item__blk.-sm .txtbox {
    font-size: calc(28 * 0.0476190476vw);
    line-height: 1.5;
    padding-inline: calc(31 * 0.0476190476vw);
    padding-bottom: calc(48 * 0.0476190476vw);
    align-items: flex-end;
    justify-content: flex-start;
  }
}

/* check all btn */
#issue201 .allbtn {
  text-align: center;
  margin: calc(200 * 0.1333333333vw) auto;
}

#issue201 .allbtn.on .link::after {
  width: calc(160 * 0.1333333333vw);
}

#issue201 .allbtn .link {
  font-size: calc(31 * 0.1333333333vw);
  letter-spacing: 0.04em;
  position: relative;
}

#issue201 .allbtn .link::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #000;
  margin: calc(20 * 0.1333333333vw) auto 0;
  transition: width 1s ease;
}

@media screen and (min-width: 768px) {
  #issue201 .allbtn {
    margin: calc(245 * 0.0476190476vw) auto;
  }

  #issue201 .allbtn.on .link::after {
    width: calc(130 * 0.0476190476vw);
  }

  #issue201 .allbtn .link {
    font-size: calc(24 * 0.0476190476vw);
  }

  #issue201 .allbtn .link::after {
    margin: calc(18 * 0.0476190476vw) auto 0;
  }

  #issue201 .allbtn .link:hover {
    opacity: 0.7;
  }
}

#issue201 .credit__box {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: flex-end;
  padding: calc(16 * 0.1333333333vw) calc(20 * 0.1333333333vw);
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
}

#issue201 .credit__box.active {
  opacity: 1;
  visibility: visible;
  /* pointer-events: none; */
}

#issue201 .credit__box.active .list{
  opacity: 1;
  visibility: visible;
}

#issue201 .credit__box.active .list a{
  pointer-events: all;
}
/* #issue201 .credit__box .list.-inline a {
  display: inline;
} */
#issue201 .credit__box .list a {
  font-size: calc(23 * 0.1333333333vw);
  line-height: 1.847826087;
  color: #fff;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  #issue201 .credit__box .list a {
    padding-right: calc(3* 0.1333333333vw);
  }
}

@media screen and (min-width: 768px) {
  #issue201 .credit__box {
    padding: calc(20 * 0.0476190476vw) calc(25 * 0.0476190476vw);
  }
  #issue201 .credit__box .list a {
    font-size: calc(18 * 0.0476190476vw);
    line-height: 1.85;
  }
  #issue201 .credit__box .list a:hover {
    opacity: 0.7;
  }
}

#issue201 .btn {
  position: absolute;
  right: calc(20 * 0.1333333333vw);
  bottom: calc(20 * 0.1333333333vw);
  width: calc(34 * 0.1333333333vw);
  height: calc(34 * 0.1333333333vw);
  z-index: 200;
  cursor: pointer;
}
#issue201 .btn::before,
#issue201 .btn::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: all 0.3s ease;
}
#issue201 .btn::after {
  transform: rotate(90deg);
}
#issue201 .btn.active::after {
  transform: rotate(0);
}
/* #issue201 .js-btn{
  padding: calc(20* (100vw / 750));
} */
@media screen and (min-width: 768px) {
  #issue201 .btn {
    right: calc(20 * 0.0476190476vw);
    bottom: calc(20 * 0.0476190476vw);
    width: calc(30 * 0.0476190476vw);
    height: calc(30 * 0.0476190476vw);
  }
}
