@charset "utf-8";

/* ----------SPLASH----------- */
#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  
  opacity: 1;
  visibility: visible;
  
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), 
              visibility 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#splash.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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


html {
  overflow:auto;
  scroll-behavior: smooth;
}
body {
  color:#333;
  margin:0;
  font-family:Noto Sans JP,Hiragino Sans,ヒラギノ角ゴ Pro W3,Hiragino Kaku Gothic Pro,メイリオ,Meiryo,ＭＳ Ｐゴシック,MS P Gothic,sans-serif;
  font-optical-sizing: auto;
  font-size:16px;
  line-height:1.8;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
article,aside,figcaption,figure,footer,header,main,nav,section {
  font-size:100%;
  margin:0;
  padding:0
}
dd,dt,h1,h2,h3,h4,h5,h6,li,td,th {
  font-size:100%;
  line-height:1.6em;
  margin:0;
  padding:0;
  font-weight: 500;
}
h2,h3,h4,h5,h6 {
  font-weight:500
}
ol,p,ul {
  margin:0;
  padding:0;
}
ul {
  list-style-type:none;
}
dl,fieldset,form,iframe {
  margin:0;
  padding:0;
}
fieldset,iframe {
  border-style:none;
}
button,input[type=button],input[type=input],input[type=reset],input[type=text],select,textarea {
  border-radius:0;
  font-family:ヒラギノ角ゴ Pro W3,Hiragino Kaku Gothic Pro,メイリオ,Meiryo,ＭＳ Ｐゴシック,MS P Gothic,sans-serif;
}
table {
  border-collapse:collapse;
  border-spacing:0;
}
th {
  font-weight:400;
}
caption,th {
  text-align:left;
}
caption {
  width:100%;
}
address,em,strong {
  font-style:normal;
  font-weight:500;
}
img {
  border-style:none;
  height:auto;
  max-width:100%;
  -ms-interpolation-mode:bicubic;
}
* {
  -webkit-tap-highlight-color:transparent;
}
a {
  text-decoration: none;
  color: inherit;
}
a, button {
  cursor: pointer;
  transition: all .3s ease;
}
a:hover, button:hover {
  opacity: .5;
}
.spOnly {
   display:none!important;
}
.align-center {
  text-align: center;
}
*, *::before, *::after {
  box-sizing: border-box;
}

/*----------HEAD----------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
  padding: 0 50px;
}
.header__spacer, .header__menu-btn {
  width: 60px;
  padding-left: 60px;
}
.header__logo img {
  display: block;
  margin-left: 80px;
}
.header__menu-btn {
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 15px;
}
.header__menu-btn span {
  display: block;
  width: 50px;
  height: 2px;
  background-color: #333;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.is-open .line-1 {
  transform: translateY(8px) rotate(22deg);
}
.is-open .line-2 {
  transform: translateY(-8px) rotate(-22deg);
}
.header__nav-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 0 80px 120px;
}
.header__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 90;
  margin-top: 120px;
}
.header__nav a {
  font-weight: 500;
  font-family: "gotham", "Montserrat", "MS PGothic", Arial, HiraKakuProN-W3, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 40px;
  letter-spacing: .1em;
  color: #fff;
}
.header__nav a span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 25px;
}
.header__nav.is-open {
  opacity: 1;
  visibility: visible;
}
.header__buttons {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__buttons img {
  display: block;
}

/*----------KV----------*/
.kv {
  position: relative;
/*  height: calc(100vh - 120px);*/
  margin-top: 130px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.kv__frame {
  width: 100%;
  max-width: 1180px;
  height: auto;
  display: flex;
  justify-content: center;
  padding-inline: 50px;
  box-sizing: border-box;
  margin-inline: auto;
}
.kv__frame__inner {
  display: block;
  width: 100%;
  height: auto;
}
.kv__image-container {
  border: 3px solid #333;
  position: relative;
  width: 100%;
  height: auto;
  line-height: 0;
  padding: 20px;
  box-sizing: border-box;
}
.kv__img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.kv__details {
  position: absolute;
  font-size: 17px;
  left: 30px;
  bottom: 40px;
  margin: 0;
  color: #333;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 10px;
  align-items: stretch;
}
.kv__details .detail-item {
  display: flex;
  align-items: center;
  align-items: stretch;
}
.kv__details dt {
  width: 78px;
  flex-shrink: 0;
  height: auto;
  font-weight: 500;
  font-family: "gotham", "Montserrat", "MS PGothic", Arial, HiraKakuProN-W3, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 26px;
  color: #fff;
  margin: 0;
  background-color: #333;
  font-optical-sizing: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #333;
  box-sizing: content-box;
}
.kv__details time {
  font-weight: 500;
  font-family: "gotham", "Montserrat", "MS PGothic", Arial, HiraKakuProN-W3, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", sans-serif;
}
.kv__details dd {
  margin-left: 0;
  padding: 0 12px;
  align-items: stretch;
  background-color: #fff;
  height: auto;
  line-height: 1.4;
  border: 1px solid #333;
  box-sizing: content-box;
}

/*----------SCROLL----------*/
.scroll {
  position: absolute;
  bottom: 115px;
  right: 20px;
  writing-mode: vertical-rl;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  opacity: 1;
  visibility: visible;
}
.scroll::before {
  animation: scroll 2s infinite;
  background-color: #000;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
  z-index: 2;
}
.scroll::after {
  background-color: #ccc;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.scroll.is-fadeout {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/*----------COMMON----------*/
main.main {
  width: 100%;
  flex: 1;
}
.border {
  border :3px solid #333;
}

/*----------section----------*/
.fade-in-fv,
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease-out, transform .8s ease-out;
}
.fade-in-fv.is-visible,
.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.section__block {
  width: 100%;
}
.section__block .section__inner {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 50px;
  padding-block: 60px;
  box-sizing: border-box !important;
}
.section__inner > * {
  min-width: 0;
}
.line {
  border: none;
  border-top: 3px solid #333;
  margin: 0;
  width: 100%;
  margin-top: 120px;
}
.section--white {
  background-color: #fff;
}
.section--gray {
  background-color: #F5F5F5;
}
.section--dark {
  background-color: #666;
}
.summary_large_image img {
  width: 100%;
}
.section__ttl {
  font-weight: 500;
  font-family: "gotham", "Montserrat", "MS PGothic", Arial, HiraKakuProN-W3, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 45px;
  letter-spacing: .1em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 45px;
  padding-bottom: 30px;
}
.section__ttl img {
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

/*----------EXHIBITION----------*/
.exhibition-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 30px;
  row-gap: 60px;
  margin: 0 auto;
  box-sizing: border-box;
}
.exhibition-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
  transition: opacity 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}
.exhibition-card:hover {
  opacity: 0.7;
}
.image-wrapper {
  aspect-ratio: 1;
  box-sizing: border-box;
}
.image-wrapper img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  vertical-align: bottom;
}
.date-item {
  display: flex;
  padding-bottom: 8px;
  gap: 12px;
  align-items: center;
}
.date-item dt {
  width: 70px;
  height: 24px;
  font-weight: 500;
  font-family: "gotham", "Montserrat", "MS PGothic", Arial, HiraKakuProN-W3, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  line-height: 24px;
  color: #fff;
  margin: 0;
  background-color: #333;
  font-optical-sizing: auto;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
.date-item time {
  font-weight: 500;
  font-family: "gotham", "Montserrat", "MS PGothic", Arial, HiraKakuProN-W3, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", sans-serif;
}
.date-item dd {
  flex: 1;
  margin-left: 0;
}
.view-more {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 70px;
  background-color: #999;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-family: "gotham", "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.15em;
  margin-top: 70px;
}
.view-more:hover {
  opacity: 0.7;
}
.view-more__arrow {
  position: absolute;
  right: 30px;
  line-height: 6px;
  transition: transform 0.3s ease;
}
.view-more:hover .view-more__arrow {
  transform: translateX(10px);
}


/*--------ONLINE SHOP - PICK UP--------*/
.item-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 30px;
  row-gap: 60px;
  margin: 0 auto;
  box-sizing: border-box;
}
.item-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.item-card:hover {
  opacity: 0.7;
}
.item-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.item-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  font-weight: 500;
  font-family: "gotham", "Montserrat", "MS PGothic", Arial, HiraKakuProN-W3, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 25px;
  line-height: 25px;
}
.item-price .price {
  margin-bottom: 2px;
}
.item-price span {
  font-size: 14px;
}


/*--------INFORMATION--------*/
.block__column {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 70px;
  margin: 0 auto;
  align-items: stretch;
}
.block__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-list {
  border-bottom: 1px solid #333;
}
.news-link {
  width: 100%;
  max-width: 650px;
  display: flex;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid #333;
  text-decoration: none;
  color: #333;
  gap: 12px;
}
.news-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: inherit;
  flex: 1;
}
.news-date {
  font-family: "gotham", "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 17px;
}
.news-title {
  margin: 0;
  flex: 1;
  font-size: 16px;
}
.news-arrow {
  margin-left: auto;
  transition: transform 0.3s ease;
}
.news-link:hover .news-arrow {
  transform: translateX(5px);
}


/*--------ACCESS--------*/

.access-wrapper {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 40px;
  margin: 0 auto;
  align-items: flex-start;
}
.access__image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
}
.access-item {
  display: flex;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid #333;
  text-decoration: none;
  color: #333;
  gap: 16px;
}
.access-item:first-child {
  padding-top: 0;
}
.access-info {
  display: flex;
  align-items: flex-start;
  gap: inherit;
  flex: 1;
}
.access-label {
  width: 70px;
}
.access-text {
  margin: 0;
  flex: 1;
}
.access-details {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.access-btn {
  display: flex;
  align-items: center;
  font-family: "gotham", "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: .1em;
  gap: 10px;
  color: #000;
  padding: 40px 0;
}


/*--------FOOTER--------*/
.footer {
  background: #000;
  color: #fff;
  padding-inline: 50px;
  padding-block: 90px;
  font-family: "gotham", "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 15px;
}
.footer__inner {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.footer__col__inr {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}
.footer__logo img {
  height: 20px;
  width: auto;
}
.footer__col--copy {
  text-align: right;
  display: flex;
  justify-content: flex-end;
}

/*--------H1--------*/

.h1__ttl {
  width: 100%;
  padding-inline: 50px;
  padding-block: 25px;
  box-sizing: border-box;
  margin-top: 150px;
}
.h1__wrap {
  border-block: 3px solid #333;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.h1-container {
  height: 45px;
}
.page-details {
  margin-bottom: 40px;
}
.exhibition-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.exhibition-title dt {
  font-family: "gotham", "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: .1em;
}


/*--------INFORMATION--------*/

.block__wrapper {
  max-width: 980px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
}
/*.block__wrapper:last-child {
  margin-bottom: 0;
}*/
.block__wrapper-inner {
  width: 100%;
  padding: 60px;
}
.exhibition-contents {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.block__ttl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-bottom: 3px solid #333;
  padding-bottom: 15px;
  width: 100%;
}
.block__ttl time {
  font-family: "gotham", "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
}
.block__ttl .week {
  font-family: "gotham", "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  padding-left: 8px;
}
.block__ttl dd {
  font-size: 22px;
}
.artist__ttl {
  display: flex;
  align-items: flex-start;
  border-bottom: 3px solid #333;
  padding-bottom: 15px;
  width: 100%;
  gap: 14px;
}
.artist__ttl dt {
  font-family: "gotham", "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 13px;
  padding: 3px 8px 2px;
  border: 1px solid #333;
}
.artist__ttl dd {
  font-size: 17px;
}
.exhibition-information {
  padding: 10px 50px;
}
.exhibition-information p {
  font-size: 16px;
  line-height: 2;
}
.information--inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 80px;
  padding-top: 80px;
}
.information--inner .inner__ttl {
  font-family: "gotham", "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: .1em;
  padding: 36px 0 24px;
}
.artist__profile {
  width: 100%;
  border-top: 3px solid #333;
}
.information__detail {
  width: 100%;
  border-top: 3px solid #333;
}
.artist__list {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding-block: 30px;
  border-bottom: 1px solid #333;
}
.artist-img {
  aspect-ratio: 1;
  width: 29%;
  flex-shrink: 0;
}
.artist-img img {
  width: 100%;
}
.artist-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.artist-name {
  font-size: 18px;
}
.artist-txt {
  font-size: 16px;
  line-height: 1.6;
}
.artist-txt p + p {
  margin-top: 1em;
}
.artist-txt a {
  text-decoration: underline;
}

.artist-txt a:hover {
  opacity: 0.5;
  text-decoration: none;
}
.info-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  font-size: 16px;
}
.info-area-list {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.info-area-list dt {
  width: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px 15px 1px;
  border: 1px solid #333;
  flex-shrink: 0;
}
.image-contents {
  box-sizing: border-box;
}
.image-contents img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.pager {
  width: 100%;
  border-block: 3px solid #333;
  margin-top: 100px;
  margin-bottom: 20px;
}
.pager__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
}
.pager__link {
  text-decoration: none;
  color: #333;
  font-family: "gotham", "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 25px;
  letter-spacing: 0.2em;
  padding: 20px 0;
  transition: opacity 0.3s;
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
a.pager__link:hover,
.pager__index:hover {
  opacity: 0.5;
}
.is-prev .arrow {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(-135deg);
  transition: transform 0.3s ease;
}
.is-next .arrow {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
a.is-prev:hover .arrow {
  transform: translateX(-3px) rotate(-135deg);
}
a.is-next:hover .arrow {
  transform: translateX(3px) rotate(45deg);
}

div.is-prev,
div.is-next {
  opacity: 0.2;
}

.pager__index {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  transition: opacity 0.3s;
}
.index-icon {
  display: grid;
  grid-template-columns: repeat(3, 10px);
  gap: 5px; 
  row-gap: 10px;
}

.index-icon span {
  display: block;
  width: 8px;
  height: 3px;
  background-color: #333;
}

/*--------ABOUT--------*/

.block__intro {
  font-family: "gotham", "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.1em;
  border-bottom: 3px solid #333;
  padding-bottom: 30px;
  margin-bottom: 12px;
  width: 100%;
}
.text__intro {
  font-size: 20px;
  line-height: 1.7;
}
.content__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 36px;
  margin: 0 auto;
  font-size: 14px;
  margin-top: 24px;
}
.box-img-wrap img {
  height: 250px;
}
.content__map {
  width: 100%;
  padding-block: 40px;
}
.exhibition-contents .access-btn {
  padding: 0;
}
#map {
  align-items: flex-end;
}


/*----モーダル用----*/
.glightbox-container .goverlay {
  background: rgba(0, 0, 0, 0.8);
}
.glightbox-clean .gslide-media {
  box-shadow: none !important;
}
.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev {
  background-color: transparent !important;
}
.glightbox-clean .gclose:hover,
.glightbox-clean .gnext:hover,
.glightbox-clean .gprev:hover,
.glightbox-clean .gclose:focus,
.glightbox-clean .gnext:focus,
.glightbox-clean .gprev:focus,
.glightbox-clean .gclose:active,
.glightbox-clean .gnext:active,
.glightbox-clean .gprev:active {
  background-color: transparent !important;
}
.gallery a {
  position: relative;
  display: block;
  overflow: hidden;
}
.gallery a::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.4);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery a:hover::before {
  opacity: 1;
}
.glightbox-clean .gclose svg {
    width: 28px;
}
.glightbox-clean .gclose svg,
.glightbox-clean .gnext svg,
.glightbox-clean .gprev svg {
  width: 28px !important;
  height: 28px !important;
}
.gslide-image img {
  padding: 0 5%;
}
.gallery img {
  width: 100%;
  height: auto;
  display: block;
}

/*--------CONTACT--------*/
section .contact {
  width: 100%;
}
.contact-form {
  max-width: 860px;
  margin: 0 auto;
}
.contact-item {
  display: flex;
  padding: 20px 0;
}
.contact-item dt {
  width: 200px;
}
.contact-item dt span {
  padding: 2px 6px;
  vertical-align: unset;
}
.contact-item dd {
  flex: 1;
  margin: 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 16px;
  outline: none;
  font-family: inherit;
  padding: 14px;
  background-color: #E6E6E6;
}
.radio-group  {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 20px;
  padding-top: 5px;
}
.radio-group label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.radio-group input[type="radio"] {
  margin-right: 8px;
}

input[type="radio"] {
  appearance: none;
  width: 25px;
  height: 25px;
  background-color: #E6E6E6;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  background-color: #333;
  border-radius: 50%;
}

.contact-submit {
  text-align: center;
  margin: 40px 0;
}
.submit-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  background: #999;
  color: #fff;
  border: none;
  padding: 20px 80px;
  font-family: "gotham", "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: opacity 0.3s;
}
.submit-btn:hover {
  opacity: 0.7;
}
textarea {
  resize: vertical;
  min-height: 250px;
}
.cation {
  font-size: 14px;
  margin: 0;
  padding: 1% 0;
  text-align: right;
}
.cation sup {
  font-size: 16px;
  padding: 2px 4px;
  vertical-align: unset;
}
form .line {
  margin-top: 40px;
}
.thanks-txt {
  line-height: 2;
}
.btn-back .view-more .view-more__arrow {
  right: auto;
  left: 30px;
  transform: scaleX(-1);
}
.btn-back .view-more:hover .view-more__arrow {
  transform: scaleX(-1) translateX(10px);
}

/*----------------SP----------------*/

@media only screen and (min-width:801px) and (max-width:1180px) {

.kv__frame {
  padding-inline: 50px;
  box-sizing: border-box;
}

.section__block .section__inner {
  padding-inline: 50px;
}
.section__inner > * {
  min-width: 0;
}
.exhibition-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 40px;
  margin: 0 auto;
  box-sizing: border-box;
}
.exhibition-card {
  padding: 0 5px;
  overflow: hidden;
}
.exhibition-card h4 {
  font-size: 17px;
  font-weight: 600;
  padding: 14px 0 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.exhibition-card h4 img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}
.footer p {
  font-size: 13px;
}

}

@media only screen and (max-width:800px) {
.pcOnly {
  display:none!important;
  }
.spOnly {
  display:block!important;
  }
}

@media only screen and (min-width:750px) and (max-width:900px) {

}

@media only screen and (min-width:641px) and (max-width:801px) {

}

/*---------------SP---------------*/

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

/*----------HEAD----------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 74px;
  padding: 0 12px;
}
.header__spacer, .header__menu-btn {
  width: 25px;
  height: 25px;
  padding-left: 0;
}
.header__logo img {
  width: 185px;
  height: 40px;
  display: block;
  margin: 0;
}
.header__menu-btn {
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
}
.header__menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #333;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.is-open .line-1 {
  transform: translateY(6px) rotate(30deg);
}
.is-open .line-2 {
  transform: translateY(-6px) rotate(-30deg);
}
.header__nav-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 60px 40px;
}
.header__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 90;
  margin-top: 74px;
}
.header__nav a {
  font-weight: 500;
  font-family: "gotham", "Montserrat", "MS PGothic", Arial, HiraKakuProN-W3, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 26px;
  letter-spacing: .1em;
  color: #fff;
}
.header__nav a span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
}
.header__nav.is-open {
  opacity: 1;
  visibility: visible;
}
.header__buttons {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__buttons img {
  display: block;
}
.header__nav a .pcOnly {
  display: block !important;
}


/*----------KV----------*/
.kv {
  position: relative;
/*  height: calc(100vh - 80px);*/
  margin: 80px 0 20px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  padding-block: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.kv__frame {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding: 0;
}
.kv__frame__inner {
  display: block;
  width: 100%;
  height: auto;
}
.kv__image-container {
  border: 3px solid #333;
  position: relative;
  width: 100%;
  height: auto;
  line-height: 0;
  padding: 10px;
  box-sizing: border-box;
}
.kv__img {
  width: 100%;
  height: auto;
  display: block;
}
.kv__details {
  position: absolute;
  font-size: 11px;
  left: 15px;
  bottom: 20px;
  margin: 0;
  color: #333;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-right: 5px;
}
.kv__details .detail-item {
  display: flex;
  align-items: center;
  align-items: stretch;
}
.kv__details dt {
  width: 60px;
  flex-shrink: 0;
  font-weight: 500;
  font-family: "gotham", "Montserrat", "MS PGothic", Arial, HiraKakuProN-W3, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 10px;
  letter-spacing: 0.05em;
  line-height: 20px;
  color: #fff;
  margin: 0;
  background-color: #333;
  font-optical-sizing: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #333;
  box-sizing: content-box;
}
.kv__details time {
  font-weight: 500;
  font-family: "gotham", "Montserrat", "MS PGothic", Arial, HiraKakuProN-W3, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", sans-serif;
}
.kv__details dd {
  margin-left: 0;
  padding: 1px 6px 2px;
  align-items: stretch;
  background-color: #fff;
/*  height: 20px;*/
  line-height: 1.4;
  border: 1px solid #333;
  box-sizing: content-box;
}

/*----------SCROLL----------*/
.scroll {
  position: absolute;
  bottom: 105px;
  right: 10px;
  writing-mode: vertical-rl;
}
.scroll::before {
  animation: scroll 2s infinite;
  background-color: #000;
  bottom: -105px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
  z-index: 2;
}
.scroll::after {
  background-color: #ccc;
  bottom: -105px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}

/*----------section----------*/
.section__block {
  width: 100%;
}
.section__block .section__inner {
  box-sizing: border-box;
  max-width: none;
  width: 100%;
  margin-inline: auto;
  padding-inline: 20px;
  padding-block: 10px;
}
.section__inner {
  box-sizing: border-box !important;
}
.section__inner > * {
  min-width: 0;
}
.section__ttl {
  font-weight: 500;
  font-family: "gotham", "Montserrat", "MS PGothic", Arial, HiraKakuProN-W3, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 25px;
  letter-spacing: .1em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 30px;
  padding: 15px 0;
}
.section__ttl img {
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  width: 25px;
  height: 25px;
}

.line {
  border: none;
  border-top: 3px solid #333;
  margin: 0;
  width: 100%;
  margin-top: 50px;
}

/*--------EXHIBITION--------*/
.exhibition-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 15px;
  row-gap: 24px;
}
.exhibition-card {
  gap: 10px;
  overflow: hidden;
}
.date-item {
  display: flex;
  padding-bottom: 8px;
  gap: 5px;
  align-items: flex-start;
}
.date-item dt {
  width: 48px;
  height: 18px;
  font-weight: 500;
  font-family: "gotham", "Montserrat", "MS PGothic", Arial, HiraKakuProN-W3, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 10px;
  letter-spacing: .05em;
  line-height: 18px;
}
.date-item time {
  font-size: 12px;
  font-weight: 500;
  font-family: "gotham", "Montserrat", "MS PGothic", Arial, HiraKakuProN-W3, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", sans-serif;
}
.date-item dd {
  font-size: 11px;
}

.view-more {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 40px;
  background-color: #999;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-family: "gotham", "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.15em;
  margin-top: 50px;
}
.view-more:hover {
  opacity: 0.7;
}
.view-more__arrow {
  position: absolute;
  right: 15px;
  line-height: 4px;
  transition: transform 0.3s ease;
}
.view-more__arrow img {
  width: 36px;
  padding-bottom: 2px;
}
.view-more:hover .view-more__arrow {
  transform: translateX(10px);
}


/*--------ONLINE SHOP - PICK UP--------*/
.item-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 15px;
  row-gap: 20px;
  margin: 0 auto;
  font-size: 11px;
}
.item-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: left;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.item-card:hover {
  opacity: 0.7;
}
.item-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.item-price {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  font-weight: 500;
  font-family: "gotham", "Montserrat", "MS PGothic", Arial, HiraKakuProN-W3, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 17px;
  line-height: 20px;
}
.item-price .price {
  margin-bottom: 2px;
}
.item-price span {
  font-size: 10px;
}


/*--------INFORMATION--------*/
.block__column {
  grid-template-columns: 1fr;
  gap: 5px;
}
.block__left,
.block__right {
  width: 100%;
}
.block__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-list {
  border-bottom: 1px solid #333;
}
.news-link {
  width: 100%;
  max-width: 650px;
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid #333;
  text-decoration: none;
  color: #333;
  gap: 12px;
}
.news-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  flex: 1;
}
.news-date {
  font-family: "gotham", "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 13px;
}
.news-title {
  margin: 0;
  flex: 1;
  font-size: 11px;
}
.news-arrow {
  margin-left: auto;
  transition: transform 0.3s ease;
}
.news-link:hover .news-arrow {
  transform: translateX(5px);
}
.news-arrow img {
  width: 36px;
  height: 4px;
}
.block__right .view-more {
  margin-bottom: 50px;
}


/*--------ACCESS--------*/

.access-wrapper {
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 50px;
}
.access__image,
.access__details {
  width: 100%;
}
.access-list {
  width: 100%;
}
.access-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #333;
  text-decoration: none;
  color: #333;
  gap: 2px;
}
.access-item:first-child {
  padding-top: 0;
}
.access-info {
  display: flex;
  align-items: flex-start;
  gap: inherit;
  flex: 1;
  flex-direction: column;
  font-size: 12px;
}
.access-label {
  width: 70px;
}
.access-text {
  margin: 0;
  flex: 1;
}
.access-details {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
}
.access-btn img {
  width: 15px;
  height: 15px;
}
.access-btn {
  display: flex;
  align-items: center;
  font-family: "gotham", "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .1em;
  gap: 5px;
  color: #000;
  padding: 20px 0;
}









/*--------FOOTER--------*/
.footer {
  background: #000;
  color: #fff;
  padding-inline: 20px;
  padding-block: 22px;
  font-family: "gotham", "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 11px;
}
.footer__inner {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.footer__col__inr {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.footer__logo img {
  width: 96px;
  height: 15px;
  width: auto;
}
.footer__col--copy {
  text-align: right;
  display: flex;
  justify-content: center;
}


/*--------H1--------*/

.h1__ttl {
  width: 100%;
  padding-inline: 20px;
  padding-block: 10px;
  box-sizing: border-box;
  margin-top: 76px;
}
.h1__wrap {
  border-block: 3px solid #333;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.h1-container {
  height: 45px;
  display: flex;
  align-items: center;
}
.page-details {
  margin-bottom: 40px;
}
.exhibition-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.exhibition-title dt {
  font-family: "gotham", "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .1em;
}

/*--------INFORMATION--------*/
.block__wrapper {
  max-width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
  font-size: 12px;
  line-height: 1.8;
}
/*.block__wrapper:last-child {
  margin-bottom: 0;
}*/
.block__wrapper-inner {
  width: 100%;
  padding: 20px;
}
.exhibition-contents {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.block__ttl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-bottom: 3px solid #333;
  padding-bottom: 10px;
  width: 100%;
}
.block__ttl time {
  font-family: "gotham", "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
}
.block__ttl .week {
  font-family: "gotham", "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 11px;
  padding-left: 6px;
}
.block__ttl dd {
  font-size: 14px;
}
.artist__ttl {
  display: flex;
  align-items: flex-start;
  border-bottom: 3px solid #333;
  padding-bottom: 10px;
  width: 100%;
  gap: 12px;
}
.artist__ttl dt {
  font-family: "gotham", "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 10px;
  padding: 2px 4px 1px;
  border: 1px solid #333;
}
.artist__ttl dd {
  font-size: 14px;
}
.exhibition-information {
  padding: 0;
}
.exhibition-information p {
  font-size: 12px;
  line-height: 1.8;
}
.information--inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
  padding-top: 40px;
}
.information--inner .inner__ttl {
  font-family: "gotham", "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: .1em;
  padding: 20px 0 5px;
}
.artist__profile {
  width: 100%;
  border-top: 3px solid #333;
}
.information__detail {
  width: 100%;
  border-top: 3px solid #333;
  padding-bottom: 50px;
}
.artist__list {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
  padding-block: 15px;
  border-bottom: 1px solid #333;
}
.artist-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  /* height: 150px; */
  aspect-ratio: 2 / 1;
  background-color: #F0F0F0;
}
.artist-img img {
  aspect-ratio: 1;
  width: 50%;
}
.artist-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.artist-name {
  font-size: 14px;
}
.artist-txt {
  font-size: 12px;
  line-height: 1.5;
}
.info-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  font-size: 12px;
}
.info-area-list {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}
.info-area-list dt {
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px 15px 1px;
  border: 1px solid #333;
}
.image-contents {
  box-sizing: border-box;
}
.image-contents img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.pager {
  width: 100%;
  border-block: 3px solid #333;
  margin-top: 50px;
  margin-bottom: 50px;
}
.pager__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}
.pager__link {
  text-decoration: none;
  color: #333;
  font-family: "gotham", "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.2em;
  padding: 20px 0;
  transition: opacity 0.3s;
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
}
a.pager__link:hover,
.pager__index:hover {
  opacity: 0.5;
}
.is-prev .arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(-135deg);
  transition: transform 0.3s ease;
}
.is-next .arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
a.is-prev:hover .arrow {
  transform: translateX(-3px) rotate(-135deg);
}
a.is-next:hover .arrow {
  transform: translateX(3px) rotate(45deg);
}

.pager__index {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  transition: opacity 0.3s;
}
.index-icon {
  display: grid;
  grid-template-columns: repeat(3, 7px);
  gap: 2px; 
  row-gap: 4px;
}

.index-icon span {
  display: block;
  width: 4px;
  height: 3px;
  background-color: #333;
}

/*--------ABOUT--------*/

.block__intro {
  font-family: "gotham", "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.1em;
  border-bottom: 3px solid #333;
  padding-bottom: 15px;
  margin-bottom: 6px;
  width: 100%;
}
.text__intro {
  font-size: 15px;
  line-height: 1.8;
}
.content__gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 14px;
  row-gap: 15px;
  margin: 0 auto;
  font-size: 10px;
  line-height: 1.4;
  margin-top: 12px;
}
.box-img-wrap img {
  height: 82px;
}
.content__map {
  width: 100%;
  padding-block: 0px;
  margin-bottom: 10px;
}
.exhibition-contents .access-btn {
  padding: 0;
}
#map {
  align-items: flex-end;
}


/*--------CONTACT--------*/
section .contact {
  width: 100%;
}
.contact-form {
  max-width: 100%;
  margin: 0 auto;
}
.contact-item {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  font-size: 12px;
}
.contact-item dt {
  width: auto;
  padding-bottom: 8px;
}
.contact-item dt span {
  padding: 1px 4px;
  vertical-align: unset;
}
.contact-item dd {
  flex: 1;
  margin: 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 12px;
  outline: none;
  font-family: inherit;
  padding: 12px;
  background-color: #E6E6E6;
}
.radio-group  {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: start;
  gap: 20px 4px;
  padding-top: 5px;
  font-size: 11px;
}
.radio-group label {
  display: flex;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
}
.radio-group input[type="radio"] {
  flex-shrink: 0;
  margin-right: 4px;
}

input[type="radio"] {
  appearance: none;
  width: 15px;
  height: 15px;
  background-color: #E6E6E6;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: #333;
  border-radius: 50%;
}

.contact-submit {
  text-align: center;
  margin: 25px 0;
}
.submit-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  background: #999;
  color: #fff;
  border: none;
  padding: 12px 80px;
  font-family: "gotham", "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: opacity 0.3s;
}
.submit-btn:hover {
  opacity: 0.7;
}
textarea {
  resize: vertical;
  min-height: 150px;
}
.cation {
  font-size: 11px;
  margin: 0;
  padding: 0;
  text-align: right;
}
.cation sup {
  font-size: 12px;
  padding: 2px 4px;
  vertical-align: unset;
}
form .line {
  margin-top: 30px;
}
.thanks-txt {
  line-height: 2;
}
.btn-back .view-more .view-more__arrow {
  right: auto;
  left: 15px;
  transform: scaleX(-1);
}
.btn-back .view-more:hover .view-more__arrow {
  transform: scaleX(-1) translateX(10px);
}


}






























