@charset "utf-8";

@media (min-width: 950px) {
  #main {
    margin-top: 100px;
  }
}

/*--------------------------------------
  # eyecatch
--------------------------------------*/
.eyecatch {
  position: relative;
}
.eyecatch .eyecatch-txt {
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.eyecatch .eyecatch-txt .eyecatch-txt-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  line-height: 1.4;
}
.eyecatch .eyecatch-txt .eyecatch-txt-inner .sub {
  padding: 0.1em 10px 0.2em 20px;
  background: var(--titleColor);
  color: #fff;
  font-size: min(4.8vw, 1.8rem);
  letter-spacing: 0.1em;
  opacity: 0;
  animation: eyecatchtxt 2s 0.1s forwards;
}
.eyecatch .eyecatch-txt .eyecatch-txt-inner .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--titleColor);
  font-size: min(7vw, 2.6rem);
  letter-spacing: 0.05em;
}
.eyecatch .eyecatch-txt .eyecatch-txt-inner .text > span {
  padding: 0 10px 0 20px;
  opacity: 0;
  animation: eyecatchtxt 2s 0.3s forwards;
}
.eyecatch .eyecatch-bg {
  position: relative;
  z-index: 1;
}
.eyecatch .eyecatch-bg .swiper-wrapper .img {
  position: relative;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}
.eyecatch .eyecatch-bg .swiper-wrapper .img img,
.eyecatch .eyecatch-bg .swiper-wrapper .img svg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 6s linear transform;
}
.eyecatch .eyecatch-bg .eyecatch-swiper-main .img {
  aspect-ratio: 15 / 14;
}
.eyecatch .eyecatch-bg .eyecatch-swiper-sub1 .img {
  width: 96%;
  margin: 15% auto 0;
  aspect-ratio: 43 / 27;
  border-radius: 10px;
}
.eyecatch .eyecatch-bg .eyecatch-swiper-sub2 .img {
  width: 86%;
  margin: 0 auto;
  aspect-ratio: 65 / 79;
  border-radius: 10px;
}
.eyecatch .eyecatch-bg .swiper-slide.animation01 img,
.eyecatch .eyecatch-bg .swiper-slide.animation01 svg {
  transform: scale(1.2) translateX(30px);
}
.eyecatch .eyecatch-bg .swiper-slide.animation01.animation img,
.eyecatch .eyecatch-bg .swiper-slide.animation01.animation svg {
  transform: scale(1.2) translateX(-30px);
}
.eyecatch .eyecatch-bg .swiper-slide.animation02 img,
.eyecatch .eyecatch-bg .swiper-slide.animation02 svg {
  transform: scale(1);
}
.eyecatch .eyecatch-bg .swiper-slide.animation02.animation img,
.eyecatch .eyecatch-bg .swiper-slide.animation02.animation svg {
  transform: scale(1.13);
}
.eyecatch .eyecatch-bg .swiper-slide.animation03 img,
.eyecatch .eyecatch-bg .swiper-slide.animation03 svg {
  transform: scale(1.2) translateX(-30px);
}
.eyecatch .eyecatch-bg .swiper-slide.animation03.animation img,
.eyecatch .eyecatch-bg .swiper-slide.animation03.animation svg {
  transform: scale(1.2) translateX(30px);
}
.eyecatch .eyecatch-bg .swiper-slide path {
  fill: none;
  stroke: white;
  stroke-width: 120;
  stroke-linecap: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
.eyecatch .eyecatch-bg .swiper-slide.animation path:nth-child(1) {
  animation: draw 5s ease forwards;
}
.eyecatch .eyecatch-bg .swiper-slide.animation path:nth-child(2) {
  animation: draw 5s ease 1s forwards;
}
.eyecatch .eyecatch-bg .swiper-slide.animation path:nth-child(3) {
  animation: draw 5s ease 2s forwards;
}
@keyframes eyecatchtxt {
  0% {clip-path: inset(0 100% 0 0);opacity:0;}
  100% {clip-path: inset(0);opacity:1;}
}
@keyframes draw {
  to { stroke-dashoffset: 0;}
}
@media (max-width: 949px) {
  .eyecatch {
    display: flex;
    flex-wrap: wrap;
  }
  .eyecatch .eyecatch-txt {
    order: 2;
    width: 100%;
    margin: -0.75em 0 -1em;
  }
  .eyecatch .eyecatch-bg {
    display: contents;
  }
  .eyecatch .eyecatch-bg .eyecatch-swiper-main {
    order: 1;
    width: 100%;
  }
  .eyecatch .eyecatch-bg .eyecatch-swiper-sub1 {
    order: 3;
    width: 60%;
  }
  .eyecatch .eyecatch-bg .eyecatch-swiper-sub2 {
    order: 4;
    width: 40%;
  }
}
@media (min-width: 950px) {
  .eyecatch {
    max-width: 1680px;
    margin: 0 auto;
  }
  .eyecatch .eyecatch-txt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* max-width: 1480px; */
    padding: 30px min(6%, 80px);
    /* transform: translate(-50%, 0); */
  }
  .eyecatch .eyecatch-txt .eyecatch-txt-inner {
    justify-content: flex-end;
    height: 100%;
    line-height: 1.2;
  }
  .eyecatch .eyecatch-txt .eyecatch-txt-inner .sub {
    padding: 0.2em 20px;
    font-size: min(4.8vw, 2.8rem);
  }
  .eyecatch .eyecatch-txt .eyecatch-txt-inner .text {
    gap: 5px;
    font-size: min(7vw, 4.8rem);
  }
  .eyecatch .eyecatch-txt .eyecatch-txt-inner .text > span {
    padding: 0 20px 0.1em;
    background: #fff;
  }
  .eyecatch .eyecatch-bg {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 73% 1fr;
    gap: 25px;
    padding: 20px;
  }
  .eyecatch .eyecatch-bg .eyecatch-swiper {
    width: 100%;
  }
  .eyecatch .eyecatch-bg .eyecatch-swiper-main {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
  }
  .eyecatch .eyecatch-bg .eyecatch-swiper-sub1 {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    align-self: end;
  }
  .eyecatch .eyecatch-bg .eyecatch-swiper-sub2 {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    align-self: start;
  }
  .eyecatch .eyecatch-bg .swiper-wrapper .img {
    border-radius: 10px;
  }
  .eyecatch .eyecatch-bg .eyecatch-swiper-main .img {
    aspect-ratio: 199 / 128;
  }
  .eyecatch .eyecatch-bg .eyecatch-swiper-sub1 .img {
    width: 100%;
    margin: 0;
    aspect-ratio: 34 / 23;
  }
  .eyecatch .eyecatch-bg .eyecatch-swiper-sub2 .img {
    width: 70%;
    margin: 0 0 0 auto;
    aspect-ratio: 125 / 164;
  }
  /* 
  .eyecatch .swiper.eyecatch-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    max-height: 93vh;
  }
  .eyecatch .swiper.eyecatch-swiper .swiper-slide.animation02 img {
    transform: scale(1.1) translateX(30px);
  }
  .eyecatch .swiper.eyecatch-swiper .swiper-slide.animation02.animation img {
    transform: scale(1.1) translateX(-30px);
  }
  .eyecatch .swiper.eyecatch-swiper .swiper-slide.animation03 img {
    transform: scale(1.1) translateX(-30px);
  }
  .eyecatch .swiper.eyecatch-swiper .swiper-slide.animation03.animation img {
    transform: scale(1.1) translateX(30px);
  } */
}

/*--------------------------------------
  # node
--------------------------------------*/
.node {
  padding: 60px 0;
  transition: 0.8s;
}
.node:not(.scrollin) {
  transform: translateY(80px);
  opacity: 0;
}
.node .node-wrapper {
  padding: 0 20px;
}
.node .node-wrapper>*:last-child {
  margin-bottom: 0;
}
.node .node-ttl {
  margin-bottom: 30px;
  color: var(--titleColor);
  text-align: center;
  line-height: 1.2;
}
.node .node-ttl .en {
  font-size: 4.0rem;
  font-family: "Marcellus", serif;
  letter-spacing: 1.5px;
  clip-path: inset(0);
  transition: all 2s ease 0.2s;
}
.node .node-ttl .jp {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 1px;
  clip-path: inset(0);
  transition: all 2s ease 0.4s;
}
.node:not(.scrollin) .node-ttl .en,
.node:not(.scrollin) .node-ttl .jp {
  clip-path: inset(0 100% 0 0);
}
.node .node-inner {
  transition: 0.8s;
}
.node:not(.scrollin) .node-inner {
  transform: translateY(80px);
  opacity: 0;
}
.node .node-btn {
  display: flex;
  margin: 2em 0;
  transition: 0.6s 0.15s transform, 0.6s 0.15s opacity;
}
.node .node-btn:not(.scrollin)[data-scrollin] {
  transform: translateX(-100px);
  opacity: 0;
}
.node .node-btn a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--linkColor);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
  text-decoration: none;
  transition: 0.2s;
}
.node .node-btn a:after {
  content: '';
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  margin-left: auto;
  background: var(--linkColor) url(../img/icon/arrow_white.svg) no-repeat center;
  background-size: 50% auto;
  border-radius: 50%;
  transition: 0.2s;
}
.node .node-btn a > span {
  padding: 0.5em 0;
  background: linear-gradient(var(--linkColor), var(--linkColor)) 0 100% / 100% 1px no-repeat;
}
.node .node-btn a > span i {
  margin: 0 0.25em 0 0;
  font-size: 150%;
}

@media (min-width: 950px) {
  .node {
    padding: 100px 0;
  }
  .node .node-wrapper {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 min(6%, 80px);
  }
  .node .node-ttl {
    margin-bottom: 60px;
  }
  .node .node-ttl .en {
    font-size: 6.0rem;
  }
  .node .node-ttl .jp {
    font-size: min(1.2vw, 1.6rem);
  }
  .node .node-inner {
  }
  .node .node-btn {
  }
  .node .node-btn a {
  }
  .node .node-btn a:hover {
  }
  .node .node-btn a:hover:after {
    transform: scale(0.9);
    animation: ButtonArrowMove 1s;
  }
  .node .node-btn a:hover > span {
    animation: UnderLineMove 0.8s ease-in-out forwards;
  }
}

/*--------------------------------------
  # concept
--------------------------------------*/
#concept.node {
  position: relative;
  overflow: hidden;
}
#concept.node:before {
  content: '';
  position: absolute;
  top: -2%;
  left: 60%;
  width: 100%;
  height: 0;
  padding-top: 60%;
  background: url(../img/bg/blueprint.png) no-repeat center;
  background-size: contain;
  z-index: -1;
}
.concept-wrapper {
  margin: 0 -20px 60px;
}
.concept-wrapper h2 {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: center;
  color: var(--titleColor);
  font-size: 2.4rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  letter-spacing: 1.5px;
}
.concept-wrapper h2 > span {
  padding: 0.25em 0 0.5em;
  writing-mode: vertical-rl;
  text-orientation: upright;
	white-space: nowrap;
  transition: 0.8s;
}
.concept-wrapper h2 > span:nth-child(2) {
  transition-delay: 0.2s;
}
.concept-wrapper h2 > span:nth-child(3) {
  transition-delay: 0.4s;
}
.concept-wrapper h2 > span:not(.scrollin) {
  transform: translateY(80px);
  opacity: 0;
}
.concept-inner {
  position: relative;
  padding: 65px 20px 25%;
}
.node .title_en {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--titleColor);
  font-size: 9.0rem;
  font-family: "Marcellus", serif;
  line-height: 1.2;
  letter-spacing: -2px;
  opacity: 0.1;
  clip-path: inset(0);
  transition: all 2s ease 0.2s;
}
.node:not(.scrollin) .title_en {
  clip-path: inset(0 100% 0 0);
}
.features-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: 0.8s;
}
.features-wrapper:not(.scrollin) {
  transform: translateY(80px);
  opacity: 0;
}
.features-wrapper h3 {
  margin: 0 0 -1px;
  padding: 0.1em 0.5em 0.3em;
  color: var(--titleColor);
  font-size: 1.8rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 1.5px;
  border: 1px solid;
}
.features-wrapper h3:first-letter {
  font-size: 2.2rem;
}
ul.features-list {
  width: 100%;
  padding: 0 10px;
  border: 1px solid var(--titleColor);
  counter-reset: count 0;
}
ul.features-list li {
  transition: 0.8s;
}
ul.features-list li:not(.scrollin) {
  transform: translateY(80px);
  opacity: 0;
}
ul.features-list li a {
  display: block;
  padding: 10px 0 15px;
  text-decoration: none;
  transition: 0.6s;
}
ul.features-list li a dl dt {
  display: flex;
  align-items: center;
  margin: 0 0 0.25em;
  color: var(--titleColor);
  font-size: 1.8rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  line-height: 1.2;
}
ul.features-list li a dl dt .icon {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 50px;
  margin-right: 1em;
  color: var(--accentColor);
  font-size: 1.2rem;
  font-family: "Marcellus", serif;
  font-weight: 400;
}
ul.features-list li a dl dt .icon:before,
ul.features-list li a dl dt .icon:after {
  content: counter(count);
}
ul.features-list li a dl dt .icon:before {
  counter-increment: count;
  position: absolute;
  top: 45%;
  left: 0;
	right: 0;
  color: var(--linkColor);
  font-size: 9.0rem;
  font-family: "Whisper", cursive;
	text-align: center;
  line-height: 1.2;
  opacity: 0.2;
  transform: translate(0, -50%);
}
ul.features-list li a dl dt .icon:after {
  flex-shrink: 0;
}
ul.features-list li a dl dd {
  display: flex;
  gap: 15px;
  padding: 0 5px;
  font-size: 1.4rem;
  line-height: 1.6;
}
ul.features-list li a dl dd .img {
  flex-shrink: 0;
  width: 35%;
}
ul.features-list li a dl dd img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
ul.features-list li a dl dd >*:last-child {
  margin-bottom: 0;
}
@media (max-width: 949px) {
  .concept-inner {
    background: url(../img/home/concept.jpg) no-repeat right bottom;
    background-size: 75% auto;
  }
  ul.features-list li:not(:last-child) {
    border-bottom: 1px solid #d8d2ce;
  }
}
@media (min-width: 950px) {
  #concept.node:before {
    top: 0;
    left: auto;
    right: -159px;
    width: 550px;
    padding-top: 323px;
  }
  #concept.node:after {
    content: '';
    position: absolute;
    top: 35%;
    left: -35px;
    width: 550px;
    height: 0;
    padding-top: 323px;
    background: url(../img/bg/blueprint.png) no-repeat center;
    background-size: contain;
    z-index: -1;
  }
  .concept-wrapper {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: center;
    margin: 0 0 80px;
    padding-bottom: 245px;
    background: url(../img/home/concept.jpg) no-repeat right bottom;
    background-size: 552px auto;
  }
  .concept-wrapper h2 {
    font-size: min(2.8vw, 3.8rem);
  }
  .concept-inner {
    width: 48%;
    padding: 5em min(5%, 60px) 0 min(6%, 80px);
    line-height: 2.2;
  }
  .node .title_en {
    top: -0.2em;
    left: -0.75em;
    font-size: min(10vw, 15.8rem);
    white-space: nowrap;
  }
  .concept-inner p {
    margin-bottom: 1em;
  }
  .features-wrapper {
    max-width: 1080px;
    margin: 0 auto;
  }
  .features-wrapper h3 {
    position: relative;
    margin: 0 0 -1em;
    padding: 0.2em 1.2em 0.3em;
    background: #fff;
    font-size: 2.4rem;
    letter-spacing: 2px;
  }
  .features-wrapper h3:first-letter {
    font-size: 2.8rem;
  }
  ul.features-list {
    display: flex;
    padding: 50px 15px 20px;
  }
  ul.features-list li {
    flex: 1;
    padding: 0 15px;
  }
  ul.features-list li:nth-child(1) {
    transition-delay: 0.2s;
  }
  ul.features-list li:nth-child(2) {
    transition-delay: 0.4s;
  }
  ul.features-list li:nth-child(3) {
    transition-delay: 0.6s;
  }
  ul.features-list li:not(:last-child) {
    border-right: 1px solid #d8d2ce;
  }
  ul.features-list li a {
    padding: 0;
  }
  ul.features-list li a dl {
    display: flex;
    flex-direction: column;
  }
  ul.features-list li a dl dt {
    order: 2;
    margin: 0.6em 0;
    font-size: 2.2rem;
  }
  ul.features-list li a dl dt .icon {
    font-size: 1.3rem;
  }
  ul.features-list li a dl dt .icon:before {
    font-size: 10.0rem;
  }
  ul.features-list li a dl dd {
    display: contents;
    padding: 0;
    font-size: 1.5rem;
  }
  ul.features-list li a dl dd .img {
    order: 1;
    width: 100%;
    aspect-ratio: 8 / 5;
    overflow: hidden;
  }
  ul.features-list li a:hover dl dd img {
    transform: scale(1.1);
    filter: brightness(1.1);
  }
  ul.features-list li a dl dd p {
    order: 3;
  }
  ul.features-list:hover li a:not(:hover) {
    filter: grayscale(100%);
    opacity: 0.6;
  }
}

/*--------------------------------------
  # service
--------------------------------------*/
#service.node {
  position: relative;
  padding-top: 0;
}
#service.node:before {
  content: '';
  position: absolute;
  top: 1.75em;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #f8f5f3;
  z-index: -1;
}
.service-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  counter-reset: count 0;
}
.service-wrapper .service-item {
  transition: 0.8s;
}
.service-wrapper .service-item:not(.scrollin) {
  transform: translateY(80px);
  opacity: 0;
}
.service-wrapper .service-item a {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 45px;
  gap: 10px;
  text-decoration: none;
}
.service-wrapper .service-item a:after {
  content: '';
  grid-row: 2 / 3;
  grid-column: 2 / 3;
  width: 45px;
  height: 45px;
  margin-left: auto;
  background: var(--linkColor) url(../img/icon/arrow_white.svg) no-repeat center;
  background-size: 50% auto;
  border-radius: 50%;
  transition: 0.2s;
}
.service-wrapper .service-item a .service-ttl {
  grid-row: 1 / 2;
  grid-column: 1 / 3;
  position: relative;
  line-height: 0;
}
.service-wrapper .service-item a .service-ttl:before {
  content: '';
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  border: 1px solid #fff;
  opacity: 0.6;
  z-index: 1;
  transition: 0.4s;
}
.service-wrapper .service-item a .service-ttl .img {
  width: 100%;
  aspect-ratio: 50 / 29;
  overflow: hidden;
}
.service-wrapper .service-item a .service-ttl .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.service-wrapper .service-item a .service-ttl h3 {
  position: absolute;
  top: 20px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  width: 90%;
  padding: 0.25em 10px;
  background: #fff;
  color: var(--titleColor);
  font-size: 1.8rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  line-height: 1.4;
  clip-path: inset(0);
  transition: all 1s ease 0.2s;
}
.service-wrapper .service-item:not(.scrollin) a .service-ttl h3 {
  clip-path: inset(0 100% 0 0);
}
.service-wrapper .service-item a .service-ttl h3:before {
  content: counter(count, decimal-leading-zero) ".";
  counter-increment: count 1;
  flex-shrink: 0;
  color: var(--accentColor);
  font-family: "Marcellus", serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}
.service-wrapper .service-item a p {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media (max-width: 949px) {
}
@media (min-width: 950px) {
  #service.node:before {
    top: 2em;
  }
  .service-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 60px 80px;
    max-width: 1080px;
    margin: 0 auto;
  }
  .service-wrapper .service-item {
    width: calc(50% - 40px);
  }
  .service-wrapper .service-item:nth-child(odd) {
    transition-delay: 0.3s;
  }
  .service-wrapper .service-item:nth-child(even) {
    margin-top: 30px;
    transition-delay: 0.6s;
  }
  .service-wrapper .service-item a {
  }
  .service-wrapper .service-item a:hover:after {
    transform: scale(0.9);
    animation: ButtonArrowMove 1s;
  }
  /* .service-wrapper .service-item a:hover .service-ttl:before {
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
  } */
  .service-wrapper .service-item a:hover .service-ttl .img img {
    transform: scale(1.1);
    filter: brightness(1.1);
  }
  .service-wrapper .service-item a .service-ttl h3 {
    top: -10px;
    left: 40px;
    gap: 15px;
    width: auto;
    padding: 20px 0.25em;
    font-size: 2.6rem;
    line-height: 1.2;
    letter-spacing: 2px;
    writing-mode: vertical-rl;
		text-orientation: mixed;
  }
  .service-wrapper .service-item:not(.scrollin) a .service-ttl h3 {
    clip-path: inset(0 0 100% 0);
  }
  .service-wrapper .service-item a .service-ttl h3:before {
    content: counter(count, decimal-leading-zero);
    font-size: 2.6rem;
    text-combine-upright: all;
		writing-mode: horizontal-tb;
  }
  .service-wrapper .service-item a p {
    font-size: 1.5rem;
  }
}

/*--------------------------------------
  # works
--------------------------------------*/
#works.node {
  position: relative;
  padding-top: 80%;
}
#works.node:before,
#works.node:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
#works.node:before {
  background: url(../img/home/works.jpg) no-repeat center;
  background-size: cover;
}
#works.node:after {
  background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,0) 50%,rgba(255,255,255,1) 100%);
}
.swiper-works {
  margin: 0 0 40px;
}
.swiper-works .swiper-wrapper {
  padding-bottom: 25px;
}
.swiper-works .swiper-slide {
  height: auto;
  padding: 10px 20px;
}
.swiper-works .works-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 10px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.swiper-works .works-item a {
  display: block;
  text-decoration: none;
}
.swiper-works .works-item dt a {
  position: relative;
  width: 100%;
  line-height: 0;
  overflow: hidden;
  transition: 0.2s;
}
.swiper-works .works-item dt a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.swiper-works .works-item dd {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 0.5em;
}
.swiper-works .works-item dd .works-icon,
.swiper-works .works-item dd .works-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  margin: 1em 0;
}
.swiper-works .works-item dd .works-icon a {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--accentColor);
  font-size: 1.3rem;
  font-weight: 700;
  transition: 0.2s;
}
.swiper-works .works-item dd .works-icon a i {
  font-size: 120%;
}
.swiper-works .works-item dd .works-tag a {
  padding: 0.2em 0.5em;
  color: var(--titleColor);
  font-size: 1.2rem;
  line-height: 1.2;
  border: 1px solid #c4bcb4;
  border-radius: 3px;
  transition: 0.2s;
}
.swiper-works .works-item dd .works-tag .ctg a {
  background: var(--linkColor);
  color: #fff;
  border-color: var(--linkColor);
}
.swiper-works .works-item dd .works-title a {
  color: var(--titleColor);
  font-size: 1.8rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  line-height: 1.4;
  clip-path: inset(0);
  transition: clip-path 1.6s ease 0.5s, opacity 0.2s;
}
.swiper-works .swiper-slide:not(.swiper-slide-active) .works-item dd .works-title a {
  clip-path: inset(0 100% 0 0);
}
.swiper-works .swiper-button-next,
.swiper-works .swiper-button-prev {
  top: 30%;
  width: 40px;
  height: 40px;
  background: #fff url(../img/icon/arrow_brown.svg) no-repeat center;
  background-size: 65% auto;
  border: 1px solid var(--titleColor);
  border-radius: 50%;
}
.swiper-works .swiper-button-prev {
  transform: scale(-1, 1);
}
.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}
#works.node .node-btn {
  justify-content: center;
}
@media (max-width: 949px) {
  #works.node:before,
  #works.node:after {
    aspect-ratio: 75 / 76;
  }
  .swiper-works .works-item dt a {
    aspect-ratio: 312 / 185;
  }
  .swiper-works .swiper-horizontal>.swiper-pagination-bullets,
  .swiper-works .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 0;
  }
  .swiper-works .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    background: var(--linkColor);
  }
  .swiper-works .swiper-pagination-bullet-active {
    background: var(--linkColor);
  }
}
@media (min-width: 950px) {
  #works.node {
    padding-top: 660px;
  }
  #works.node:before,
  #works.node:after {
    height: 830px;
  }
  .works-wrapper {
    display: grid;
    grid-template-rows: auto auto 60px;
    grid-template-columns: 250px 1fr;
    padding-left: min(6%, 80px);
  }
  .works-wrapper .node-ttl {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    align-self: end;
    margin: auto auto 0 0;
    margin: 0;
  }
  .swiper-works {
    grid-row: 1 / 4;
    grid-column: 2 / 3;
    width: 100%;
    margin: 0;
    padding-bottom: 80px !important;
  }
  .swiper-works .swiper-wrapper {
    padding-bottom: 0;
  }
  .swiper-works .swiper-slide {
    width: 760px;
    padding: 10px;
  }
  .swiper-works .works-item {
    flex-direction: row;
    gap: 30px;
  }
  .swiper-works .works-item dt {
    width: 40%;
  }
  .swiper-works .works-item dt a {
    height: 100%;
  }
  div.swiper-works .swiper-slide a:hover img {
    transform: scale(1.1);
    filter: brightness(1.2);
  }
  .swiper-works .works-item dd {
    justify-content: center;
    padding: 0 30px 0 0;
  }
  .swiper-works .works-item dd a:hover {
    opacity: 0.6;
  }
  .swiper-works .works-item dd .works-icon,
  .swiper-works .works-item dd .works-tag {
    gap: 8px 15px;
    margin: 1.5em 0;
  }
  .swiper-works .works-item dd .works-icon a {
    font-size: 1.5rem;
  }
  .swiper-works .works-item dd .works-tag a {
    font-size: 1.3rem;
  }
  .swiper-works .works-item dd .works-title a {
    font-size: 2.4rem;
  }
  .swiper-works .swiper-pagination-fraction {
    bottom: calc(var(--swiper-pagination-bottom,8px) + 20px);
    left: calc(760px - 160px);
    width: 100px;
    color: var(--titleColor);
    font-family: "Marcellus", serif;
  }
  .swiper-works .swiper-pagination-fraction .swiper-pagination-current {
    font-size: 2.0rem;
  }
  .swiper-works .swiper-button-next,
  .swiper-works .swiper-button-prev {
    top: auto;
    bottom: 20px;
    width: 60px;
    height: 60px;
    transition: 0.2s;
  }
  .swiper-works .swiper-button-next {
    right: auto;
    left: calc(760px - 60px);
  }
  .swiper-works .swiper-button-prev {
    left: calc(760px - 220px);
  }
  .swiper-works .swiper-button-next:hover,
  .swiper-works .swiper-button-prev:hover {
    /* background-color: var(--titleColor);
    background-image: url(../img/icon/arrow_white.svg); */
    transform: scale(0.9);
    animation: ButtonArrowMove 1s;
  }
  .swiper-works .swiper-button-prev:hover {
    transform: scale(-0.9, 0.9);
  }
  #works.node .node-btn {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    align-self: start;
    justify-content: center;
  }
}

/*--------------------------------------
  # location
--------------------------------------*/
#location.node {
  padding-top: 20px;
}
.location-wrapper h2 {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: center;
  color: var(--titleColor);
  font-size: 2.4rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  letter-spacing: 1.5px;
}
.location-wrapper h2 > span {
  writing-mode: vertical-rl;
  transition: 0.8s;
}
.location-wrapper h2 > span:nth-child(2) {
  transition-delay: 0.2s;
}
.location-wrapper h2 > span:not(.scrollin) {
  transform: translateY(80px);
  opacity: 0;
}
.rl-num {
  position: relative;
  right: 0.15em;
  margin-bottom: 0.15em;
  text-combine-upright: all;
}
.location-inner {
  margin: 0 -20px;
  padding: 65px 20px 0;
}
.location-map {
  position: relative;
  margin: 0 -10px 1.6em -25%;
  aspect-ratio: 517 / 351;
}
.location-map > li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.8s;
}
.location-map > li:not(.scrollin) {
  opacity: 0;
}
.location-map > li.kokubunji {
  background-image: url(../img/home/kokubunji.png);
  transition-delay: 0.2s;
}
.location-map > li.kodaira {
  background-image: url(../img/home/kodaira.png);
  transition-delay: 0.4s;
}
.location-map > li.koganei {
  background-image: url(../img/home/koganei.png);
  transition-delay: 0.6s;
}
.location-map > li.huchu {
  background-image: url(../img/home/huchu.png);
  transition-delay: 0.8s;
}
.location-map > li.kunitachi {
  background-image: url(../img/home/kunitachi.png);
  transition-delay: 1s;
}
.location-map > li.tachikawa {
  background-image: url(../img/home/tachikawa.png);
  transition-delay: 1.2s;
}
.location-map > li a {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0.6em 1.5em;
  background: #fff;
  color: var(--linkColor);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
  text-align: center;
  text-decoration: none;
	white-space: nowrap;
  border: 1px solid;
  border-radius: 50vh;
  z-index: 1;
  transition: 0.2s;
  transform: translate(-50%, -50%);
}
.location-map > li.kokubunji a {
  top: 40%;
  left: 60%;
}
.location-map > li.kodaira a {
  top: 20%;
  left: 73%;
}
.location-map > li.koganei a {
  top: 45%;
  left: auto;
  right: 0;
  transform: translate(0, -50%);
}
.location-map > li.huchu a {
  top: 73%;
  left: 73%;
}
.location-map > li.kunitachi a {
  top: 60%;
  left: 48%;
}
.location-map > li.tachikawa a {
  top: 35%;
  left: 30%;
}
@media (max-width: 949px) {
  .location-inner {
    position: relative;
  }
}
@media (min-width: 950px) {
  #location.node {
    padding-top: 0;
  }
  #location.node .node-wrapper {
    position: relative;
    text-align: center;
  }
  .location-wrapper {
    display: inline-grid;
    grid-template-rows: auto auto;
    grid-template-columns: 640px auto auto;
    gap: 0 35px;
    padding: 5em 0 0;
    text-align: left;
  }
  .location-wrapper h2 {
    grid-row: 1 / 2;
    grid-column: 3 / 4;
    font-size: 3.4rem;
    line-height: 1.4;
  }
  .location-inner {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    margin: 0;
    padding: 2.5em 0 0;
  }
  .location-inner .title_en {
    left: auto;
    right: min(6%, 80px);
  }
  .location-inner p {
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
  .location-map {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
    margin: 0;
  }
  .location-map > li a {
    font-size: 1.5rem;
  }
  .location-map > li.kodaira a {
    top: 22%;
  }
  .location-map > li.koganei a {
    right: 5%;
  }
  .location-map > li.tachikawa a {
    left: 34%;
  }
  .location-map > li a:hover {
    background: var(--linkColor);
    color: #fff;
    border-color: var(--linkColor);
    animation: ButtonArrowMove 1s;
  }
  .location-wrapper p.indent.small {
    grid-row: 2 / 3;
    grid-column: 2 / 4;
    align-self: end;
    margin-bottom: 0;
  }
}

/*--------------------------------------
  # guide
--------------------------------------*/
#guide.node {
  position: relative;
  padding-top: 0;
  overflow: hidden;
}
#guide.node:before {
  content: '';
  position: absolute;
  top: 1.75em;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #f8f5f3;
  z-index: -1;
}
.guide-wrapper .guide-item {
  position: relative;
  transition: 0.8s;
}
.guide-wrapper .guide-item >*:last-child {
  margin-bottom: 0;
}
.guide-wrapper .guide-item .guide-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 180px;
  background: #fff;
  border-radius: 50%;
}
.guide-wrapper .guide-item .guide-img img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}
.guide-wrapper .guide-item .guide-ttl {
  position: relative;
}
.guide-wrapper .guide-item .guide-ttl .jp {
  color: var(--titleColor);
  font-size: 1.8rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  line-height: 1.4;
  clip-path: inset(0);
  transition: all 1s ease 0.2s;
}
.guide-wrapper .guide-item .guide-ttl .en {
  color: var(--accentColor);
  font-family: "Marcellus", serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
  clip-path: inset(0);
  transition: all 1s ease 0.4s;
}
.guide-wrapper .guide-item:not(.scrollin) .guide-ttl .jp,
.guide-wrapper .guide-item:not(.scrollin) .guide-ttl .en {
  clip-path: inset(0 100% 0 0);
}
.guide-wrapper .guide-item .guide-txt {
  position: relative;
}
.guide-wrapper .guide-item .node-btn {
  margin-bottom: 0;
}
@media (max-width: 949px) {
  .guide-wrapper .guide-item:nth-child(odd):not(.scrollin) {
    transform: translateX(80px);
    opacity: 0;
  }
  .guide-wrapper .guide-item:nth-child(even):not(.scrollin) {
    transform: translateX(-80px);
    opacity: 0;
  }
  .guide-wrapper .guide-item .guide-img {
    position: absolute;
    top: 0;
  }
  .guide-wrapper .guide-item:nth-child(odd) .guide-img {
    right: -10px;
  }
  .guide-wrapper .guide-item:nth-child(even) .guide-img {
    left: -10px;
  }
  .guide-wrapper .guide-item .guide-ttl {
    width: 60%;
    padding: calc(180px / 2) 0 1.5em;
  }
  .guide-wrapper .guide-item:nth-child(even) .guide-ttl {
    margin-left: 40%;
    text-align: right;
  }
  .guide-wrapper .guide-item .guide-txt {
    width: 85%;
    font-size: 1.3rem;
    line-height: 1.6;
  }
  .guide-wrapper .guide-item:nth-child(even) .guide-txt {
    margin-left: 15%;
  }
  .guide-wrapper .guide-item .guide-txt p {
    margin-bottom: 1em;
  }
  .guide-wrapper .guide-item:nth-child(odd) .node-btn {
    justify-content: flex-end;
  }
}
@media (min-width: 950px) {
  #guide.node:before {
    top: 2em;
  }
  .guide-wrapper {
    display: flex;
    gap: 55px;
  }
  .guide-wrapper .guide-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .guide-wrapper .guide-item .guide-img {
    order: 2;
    width: 90%;
    height: auto;
    margin: -15% 0;
    aspect-ratio: 1 / 1;
  }
  .guide-wrapper .guide-item .guide-ttl {
    order: 1;
    text-align: center;
  }
  .guide-wrapper .guide-item .guide-ttl .jp {
    font-size: 2.4rem;
  }
  .guide-wrapper .guide-item .guide-ttl .en {
    font-size: 1.2rem;
  }
  .guide-wrapper .guide-item .guide-txt {
    order: 3;
    flex: 1;
    display: flex;
    flex-direction: column;
    font-size: 1.5rem;
  }
  .guide-wrapper .guide-item .node-btn {
    justify-content: center;
    margin-top: auto;
  }
}

/*--------------------------------------
  # information
--------------------------------------*/
.news-wrapper,
.column-wrapper {
  margin: 0 0 40px;
}
.info-wrapper .info-ttl .en {
  position: absolute;
  top: -0.4em;
  left: 0;
  color: var(--linkColor);
  font-size: 12.0rem;
  font-family: "Whisper", cursive;
  line-height: 1.2;
  opacity: 0.1;
  clip-path: inset(0);
  transition: all 2s ease 0.2s;
}
.info-wrapper .info-ttl:not(.scrollin) .en {
  clip-path: inset(0 100% 0 0);
}
.info-wrapper .info-ttl .jp {
  color: var(--titleColor);
  font-size: 2.0rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  letter-spacing: 2px;
}
.news-wrapper .tab-layout {
  margin-bottom: 0;
}
.news-wrapper .tab-layout .tab-input:checked+.tab-label+.tab-content {
  padding-top: 0;
}
.news-wrapper .tab-layout .tab-content:after {
  width: 100%;
}
.news-wrapper .tab-layout .tab-content > *:last-child {
  margin-bottom: 0;
}
.info-wrapper .article-list {
  clear: both;
  margin: 8px 0 0;
}
.info-wrapper .article-list .article-list-item {
  display: grid;
  grid-template-columns: 25% 1fr;
  grid-template-rows: auto auto;
  gap: 5px 15px;
  padding: 12px 0;
}
.info-wrapper .article-list .article-list-item .img {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}
.info-wrapper .article-list .article-list-item .img a {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-top: 100%;
  overflow: hidden;
}
.info-wrapper .article-list .article-list-item .img a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.info-wrapper .article-list .article-list-item .date-category-tag {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  align-self: end;
  display: flex;
  line-height: 1.2;
}
.info-wrapper .article-list .article-list-item .date-category-tag p {
  margin-bottom: 0;
}
.info-wrapper .article-list .article-list-item .date-category-tag p:not(:last-child) {
  margin-right: 1em;
}
.info-wrapper .article-list .article-list-item .date-category-tag .date {
  color: var(--accentColor);
  font-size: 1.2rem;
  font-weight: 600;
}
.info-wrapper .article-list .article-list-item .date-category-tag .category {
  display: flex;
  gap: 5px;
  margin: 0;
}
.info-wrapper .article-list .article-list-item .date-category-tag .category a {
  padding: 0.2em 0.5em;
  background: #b0a69c;
  color: #fff;
  font-size: 1.0rem;
  text-decoration: none;
  border-radius: 3px;
  transition: 0.2s;
}
.info-wrapper .article-list .article-list-item .date-category-tag p:not(.date,.category) {
  padding: 0.2em 0.5em;
  background: #fff;
  color: #b0a69c;
  font-size: 1.0rem;
  border: 1px solid;
  border-radius: 3px;
}
.info-wrapper .article-list .article-list-item .date-category-tag p.is_new {
  background: var(--btnColor);
  color: var(--titleColor);
  border: none;
}
.info-wrapper .article-list .article-list-item .date-category-tag p.is_close[data-status="開催中"],
.info-wrapper .article-list .article-list-item .date-category-tag p.is_close[data-status="販売中"] {
  background: var(--accentColor);
  color: #fff;
  border: none;
}
.info-wrapper .article-list .article-list-item .title a {
  display: inline-block;
  font-size: 1.4rem;
  text-decoration: none;
  line-height: 1.5;
  transition: 0.2s;
}
.info-wrapper .node-btn {
  justify-content: flex-end;
}
@media (max-width: 949px) {
  .info-wrapper .info-ttl {
    position: relative;
    margin: 0 -20px 1em;
    padding: 0 20px;
  }
  .column-wrapper .article-list {
    background-image : linear-gradient(to right, var(--titleColor) 1px, transparent 1px);
    background-size: 3px 1px;
    background-repeat: repeat-x;
    background-position: left top;
  }
  .info-wrapper .article-list .article-list-item {
    background-image : linear-gradient(to right, var(--titleColor) 1px, transparent 1px);
    background-size: 3px 1px;
    background-repeat: repeat-x;
    background-position: left bottom;
  }
}
@media (min-width: 950px) {
  .info-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0 80px;
  }
  .news-wrapper,
  .column-wrapper {
    width: calc(50% - 40px);
    margin: 0 0 60px;
  }
  .news-wrapper,
  .column-wrapper,
  .istg-wrapper {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .info-wrapper .info-ttl {
    width: 80px;
  }
  .info-wrapper .info-ttl .en {
    top: -0.5em;
    left: -40px;
    font-size: 12.0rem;
  }
  .info-wrapper .info-ttl .jp {
    font-size: 2.4rem;
    letter-spacing: 4px;
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
  .news-wrapper .tab-layout {
    flex: 1;
  }
  .news-wrapper .tab-layout .tab-input:checked+.tab-label+.tab-content {
    min-height: 428px;
  }
  .column-wrapper .article-list {
    flex: 1;
    padding-top: 45px;
  }
  .info-wrapper .article-list .article-list-item {
    grid-template-columns: 120px 1fr;
    padding: 10px 0;
  }
  .info-wrapper .article-list .article-list-item .img a:hover img {
    transform: scale(1.1);
    opacity: 0.6;
  }
  .info-wrapper .article-list .article-list-item .date-category-tag {
    align-items: baseline;
  }
  .info-wrapper .article-list .article-list-item .date-category-tag .category a {
    padding: 0.3em 0.75em;
    font-size: 1.1rem;
  }
  .info-wrapper .article-list .article-list-item .title a {
    font-size: 1.5rem;
  }
  .info-wrapper .article-list .article-list-item .date-category-tag .category a:hover {
    opacity: 0.6;
  }
  .info-wrapper .article-list .article-list-item .title a:hover {
    /* transform: translateX(20px); */
    text-decoration: underline;
    opacity: 0.7;
  }
  .info-wrapper .node-btn {
    width: 100%;
    margin-top: 1em;
  }
}

/*  Instagram
--------------------------------------*/
.istg-wrapper .istg-slide {
  margin: 0 -20px 1em;
}
.istg-wrapper .swiper-istg .swiper-wrapper {
  display: flex !important;
  transition-timing-function: linear !important;
}
.istg-wrapper #sb_instagram #sbi_images {
  padding: 0 !important;
}
.istg-wrapper .swiper-istg .sbi_item {
  display: block !important;
  /* width: auto !important; */
}
.istg-wrapper .swiper-slide .sbi_photo {
  position: relative;
  display: block;
  width: 100%;
  height: 100% !important;
  aspect-ratio: 311 / 415;
}
/* .istg-wrapper .swiper-slide .sbi_item img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s;
} */
.istg-wrapper .node-btn {
  margin-top: 0;
}
.istg-wrapper .node-btn a:after {
  background: url(../img/icon/arrow_white.svg), linear-gradient(135deg, #427eff 0%, #f13f79 70%);
  background-size: 50% auto, cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 949px) {
  .istg-wrapper .info-ttl .en {
    font-size: 10.0rem;
  }
}
@media (min-width: 950px) {
  .istg-wrapper {
    width: 100%;
  }
  .istg-wrapper .info-ttl .en {
    top: -0.85em;
  }
  .istg-wrapper .info-ttl .jp {
    line-height: 1.4;
  }
  .istg-wrapper .istg-slide {
    flex: 1;
    margin: 0 0 1em;
    overflow: hidden;
  }
  .istg-wrapper .node-btn {
    width: 100%;
  }
}

/*--------------------------------------
  # access
--------------------------------------*/
#access.node {
  padding-top: 0;
}
.access-map {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.access-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.access-wrapper .node-ttl {
  margin: -1em 0 1em;
  text-align: left;
}
.access-wrapper .address {
  font-size: 1.6rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
}
.access-wrapper p i {
  display: inline-block;
  margin: 0 0.2em 0 1em;
  color: var(--linkColor);
}
@media (max-width: 949px) {
  .access-map {
    aspect-ratio: 75 / 56;
  }
}
@media (min-width: 950px) {
  .access-map {
    width: calc(100% - min(6%, 80px));
    height: 460px;
  }
  .access-map:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45%;
    height: 130px;
    background: #fff;
  }
  .access-inner {
    position: relative;
    width: 45%;
    margin: -170px 0 0 auto;
    padding: 0 0 0 30px;
  }
  .access-wrapper .node-ttl {
    margin: -1em 0 1em;
    text-align: left;
  }
  .access-wrapper .address {
    font-size: 1.8rem;
  }
  .access-wrapper p i {
    display: inline-block;
    margin: 0 0.2em 0 1em;
    color: var(--linkColor);
  }
}
