<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* ↓↓↓ under-fv ↓↓↓ */
.under-fv {
  width: 100%;
  height: 422px;
  position: relative;
}

@media (max-width: 768px) {
  .under-fv {
    /* height: 300px; */
    height: 220px;
  }
}

.under-fv .image {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.under-fv .image img {
  object-fit: cover;
  height: 100%;
}

.under-fv .logo {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 55px;
}

@media (max-width: 768px) {
  .under-fv .logo {
    top: 25%;
    display: none;
  }
}

.under-fv .page-title {
  position: absolute;
  bottom: -25px;
  left: 0;
  width: 100%;
  height: 113px;
}

.under-fv .page-title::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(128, 128, 128);
  mix-blend-mode: multiply;
}

.under-fv .page-title .group {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  z-index: 1;
}

.under-fv .page-title .group .title {
  font-size: 2.7rem;
  font-weight: bold;
  line-height: 1;
}

.under-fv .page-title .group .caption {
  margin-top: 13px;
  font-family: 'Roboto', sans-serif;
  font-size: 1.4rem;
  letter-spacing: .01em;
  line-height: 1;
}

/* ↑↑↑ under-fv ↑↑↑ */

/* ↓↓↓ box ↓↓↓ */
.box {
  width: 100%;
  padding: 0 30px 110px 30px;
  position: relative;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 1;
}

@media (max-width: 768px) {
  .box {
    padding: 0 0 60px 0;
  }
}

.box .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 85px;
}

@media (max-width: 768px) {
  .box .inner {
    padding-top: 65px;
  }
}

.sort-box h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 1;
}

.sort-box .func {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .sort-box .func {
    margin-top: 20px;
    padding: 20px;
  }
}

.sort-box .func .sortbtn {
  width: calc(calc(100% - 40px)/5);
  height: 32px;
  margin: 0 10px 10px 0;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  line-height: 1;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 300ms 0s ease;
}

@media (max-width: 768px) {
  .sort-box .func .sortbtn {
    width: calc(calc(100% - 4px)/2);
    margin: 0 4px 4px 0;
  }
}

.sort-box .func .sortbtn:hover {
  background-color: #d9d9d9;
}

.sort-box .func .sortbtn.is-active {
  color: #fff;
  background-color: #f29600;
}

.sort-box .func .sortbtn:nth-of-type(5n) {
  margin-right: 0;
}

@media (max-width: 768px) {
  .sort-box .func .sortbtn:nth-of-type(5n) {
    margin-right: 4px;
  }

  .sort-box .func .sortbtn:nth-of-type(2n) {
    margin-right: 0;
  }
}

.sort-box .message {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0;
}

@media (max-width: 768px) {
  .sort-box .message {
    margin-top: 0px;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .sort-box .message {
    flex-direction: column-reverse;
  }
}

.sort-box .message .example {
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .sort-box .message .example {
    margin-right: auto;
  }
}

.sort-box .message .reset {
  font-size: 1.4rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .sort-box .message .reset {
    margin-left: auto;
    margin-bottom: 30px;
  }
}

.item-box {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .item-box {
    margin-top: 15px;
  }
}

.item-box.-height {
  min-height: 500px;
}

@media (max-width: 768px) {
  .item-box.-height {
    min-height: 462px;
  }
}

.item-box .item {
  width: calc(calc(100% - 40px)/3);
  max-height: 434px;
  margin-right: 20px;
  margin-bottom: 20px;
  position: relative;
  display: block;
}

@media (max-width: 768px) {
  .item-box .item {
    width: calc(calc(100% - 3px)/2);
    max-height: fit-content;
    margin-right: 3px;
    margin-bottom: 3px;
  }
}

.item-box .item:hover {
  opacity: .7;
}

.item-box .item:nth-of-type(n+16) {
  display: none;
}

@media (max-width: 768px) {
  .item-box .item:nth-of-type(n+16) {
    display: block;
  }

  .item-box .item:nth-of-type(n+17) {
    display: none;
  }
}

.item-box .item:nth-of-type(3n) {
  margin-right: 0;
}

@media (max-width: 768px) {
  .item-box .item:nth-of-type(3n) {
    margin-right: 3px;
  }

  .item-box .item:nth-of-type(2n) {
    margin-right: 0px;
  }
}

.item-box .item .textgroup {
  height: 114px;
  padding: 18px;
  background-color: #fff;
  position: relative;
}

@media (max-width: 768px) {
  .item-box .item .textgroup {
    height: 80px;
    padding: 15px 10px;
  }
}

.item-box .item .textgroup::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 15px;
  height: 15px;
  background: url(/wp/wp-content/themes/arrgallery-2021/img/work/icon-arrow.jpg)no-repeat;
}

.item-box .item .textgroup .text {
  height: 50px;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0;
  text-align: justify;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media (max-width: 768px) {
  .item-box .item .textgroup .text {
    height: 38px;
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

.item-box .item .label {
  position: absolute;
  bottom: 18px;
  left: 20px;
  display: block;
  width: fit-content;
  padding: 0 10px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

@media (max-width: 768px) {
  .item-box .item .label {
    bottom: 10px;
    left: 12px;
    font-size: 1.2rem;
  }
}

.item-box .item .label::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: #f29600;
}

.item-box .item .label::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background-color: #f29600;
}

.item-box .item i.new {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 20%;
  z-index: 1;
}

.item-box .item i.agallery {
  position: absolute;
  bottom: 105px;
  left: 18px;
  width: 43.75%;
  z-index: 1;
}

.morebtn {
  width: 296px;
  height: 40px;
  margin: 90px auto 0 auto;
  font-weight: bold;
  color: #fff;
  background: url(/wp/wp-content/themes/arrgallery-2021/img/work/bg-btn.jpg)no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 300ms 0s ease;
}

@media (max-width: 768px) {
  .morebtn {
    margin: 50px auto 0 auto;
  }
}

.morebtn:hover {
  opacity: .7;
}

.morebtn span {
  position: relative;
}

.morebtn span::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url(/wp/wp-content/themes/arrgallery-2021/img/work/icon-cross.png)no-repeat;
}

/* ↑↑↑ box ↑↑↑ */

/* ↓↓↓ other-link ↓↓↓ */
.other-link {
  margin-top: 95px;
}

@media (max-width: 768px) {
  .other-link {
    margin-top: 50px;
  }
}

/* ↑↑↑ other-link ↑↑↑ */</pre></body></html>