@charset "UTF-8";
.work {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto 120px;
  display: flex;
  justify-content: space-between;
  padding-top: 80px;
}

.work-img {
  width: 52.9%;
}
.work-img__main {
  width: 100%;
  padding-top: 100%;
  position: relative;
  margin-bottom: 20px;
}
.work-img__main ul {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.work-img__main ul li {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.work-img__main ul li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
  opacity: 0;
}
.work-img__main ul li.show img {
  opacity: 1;
}
.work-img__main .noslide-arrow {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.work-img__main .noslide-arrow:hover {
  opacity: 0.7;
}
.work-img__main .noslide-arrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url("../assets/images/top/icon-arrow.png");
  background-size: cover;
  position: absolute;
  top: 4px;
  left: 4px;
}
.work-img__main .noslide-arrow.prev-arrow {
  left: 10px;
}
.work-img__main .noslide-arrow.prev-arrow::before {
  transform: rotate(180deg);
}
.work-img__main .noslide-arrow.next-arrow {
  right: 10px;
}
.work-img__sub {
  width: 100%;
  display: flex;
}
.work-img__sub li {
  width: 64px;
  height: 64px;
  margin-right: 40px;
  cursor: pointer;
}
.work-img__sub li:last-child {
  margin-right: 0;
}
.work-img__sub li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.work-text {
  width: 41.8%;
  padding-top: 36px;
}
.work-text h1 {
  font-family: "游明朝", "ヒラギノ明朝", serif;
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 24px;
  letter-spacing: 0.12em;
}
.work-text .description {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 40px;
}
.work-text dl {
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  line-height: 20px;
}
.work-text dl dt {
  padding: 10px 0;
  width: 108px;
  border-bottom: solid 1px #D5D5D5;
}
.work-text dl dd {
  padding: 10px 0;
  width: calc(100% - 108px);
  border-bottom: solid 1px #D5D5D5;
}
.work-text dl dd.no-tel-link a {
  color: #666666;
  pointer-events: none;
}
.work-text dl + p {
  margin-top: 1em;
}
.work-text .optional-description {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 1em;
}
.work-text .maplink {
  width: 200px;
  font-size: 13px;
  line-height: 38px;
  border: solid 1px #9B9FA5;
  padding-left: 74px;
  position: relative;
  color: #666666;
  margin-top: 32px;
  display: block;
}
.work-text .maplink::before {
  content: "";
  width: 16px;
  height: 20px;
  position: absolute;
  top: 9px;
  left: 51px;
  background-image: url("../assets/images/shop/icon-map.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.work-text .maplink span {
  position: relative;
  z-index: 2;
}
.work-text .maplink::after {
  content: "";
  display: block;
  width: 200px;
  height: 48px;
  position: absolute;
  top: -1px;
  left: -1px;
  background-color: #9B9FA5;
  border-radius: 24px;
  z-index: 1;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: 0.6s;
}
@media screen and (min-width:768px) {
  .work-text .maplink:hover {
    color: #fff;
  }
  .work-text .maplink:hover::before {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}

.news-main {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 40px;
}

.article {
  padding-top: 80px;
}
.article__title {
  font-size: 26px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.article__date {
  font-size: 14px;
  margin-bottom: 24px;
}
.article__content {
  padding: 20px 0 80px;
  border-top: solid 1px #D0CECA;
  border-bottom: solid 1px #D0CECA;
  margin-bottom: 48px;
  font-size: 14px;
  line-height: 24px;
}
.article__content img {
  margin-bottom: 26px;
  margin-top: 20px;
}
.article__content img:first-child {
  margin-top: 0;
}
.article__content p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 1em;
}
.article__content ol {
  counter-reset: list-counter;
  margin: 1em auto;
}
.article__content ol li {
  padding-left: 20px;
  position: relative;
  counter-increment: list-counter;
}
.article__content ol li::before {
  content: counter(list-counter);
  color: #fff;
  box-sizing: border-box;
  padding-left: 3.5px;
  width: 14px;
  height: 14px;
  line-height: 14px;
  font-size: 11px;
  background-color: #666666;
  border-radius: 7px;
  position: absolute;
  left: 3px;
  top: 5px;
  display: block;
}
.article__content ul {
  margin: 1em auto;
}
.article__content ul li {
  padding-left: 20px;
  position: relative;
}
.article__content ul li::before {
  content: "";
  color: #fff;
  box-sizing: border-box;
  width: 12px;
  height: 12px;
  background-color: #666666;
  border-radius: 6px;
  position: absolute;
  left: 4px;
  top: 6px;
  display: block;
}
.article__content h2 {
  font-size: 20px;
  line-height: 1.5;
  padding-bottom: 14px;
  border-bottom: solid 1px #9B9FA5;
  margin-top: 60px;
  margin-bottom: 30px;
}
.article__content blockquote {
  padding-left: 50px;
  margin: 1em 0;
  position: relative;
}
.article__content blockquote p {
  padding: 32px;
  border-radius: 8px;
  background-color: #F7F9FB;
  font-size: 13px;
}
.article__content blockquote::before {
  content: "“";
  position: absolute;
  top: 30px;
  left: 0;
  color: #9B9FA5;
  font-size: 80px;
}
.article__share p {
  font-size: 14px;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 20px;
}

.article__link {
  width: 100%;
  max-width: 1020px;
  height: 48px;
  position: relative;
  margin: 0 auto 40px;
  display: flex;
  justify-content: center;
}
.article__link .link-button {
  width: 31.3%;
  max-width: 280px;
}
.article__link .prev {
  position: absolute;
  left: 0;
  top: 0;
}
.article__link .prev a::before {
  content: "";
  width: 32px;
  height: 32px;
  position: absolute;
  top: 7px;
  left: calc(50% - 48px);
  background-image: url("../assets/images/top/icon-arrow.png");
  background-size: cover;
  transform: rotate(180deg);
  transition: 0.6s;
  z-index: 2;
}
@media screen and (min-width:768px) {
  .article__link .prev a:hover::before {
    background-image: url("../assets/images/common/arrow-white.svg");
  }
}
.article__link .next {
  position: absolute;
  right: 0;
  top: 0;
}
.article__link .next a::before {
  content: "";
  width: 32px;
  height: 32px;
  position: absolute;
  top: 7px;
  right: calc(50% - 48px);
  background-image: url("../assets/images/top/icon-arrow.png");
  background-size: cover;
  transition: 0.6s;
  z-index: 2;
}
@media screen and (min-width:768px) {
  .article__link .next a:hover::before {
    background-image: url("../assets/images/common/arrow-white.svg");
  }
}
.article__link a {
  color: #666666;
  width: 100%;
  font-size: 14px;
  line-height: 46px;
  border: solid 1px #9B9FA5;
  border-radius: 24px;
  display: block;
  text-align: center;
  position: relative;
  transition: 0.6s;
}
.article__link a span {
  position: relative;
  z-index: 2;
}
.article__link a::after {
  content: "";
  display: block;
  width: calc(100% + 2px);
  height: 48px;
  position: absolute;
  top: -1px;
  left: -1px;
  background-color: #9B9FA5;
  border-radius: 24px;
  z-index: 1;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: 0.6s;
}
@media screen and (min-width:768px) {
  .article__link a:hover {
    color: #fff;
  }
  .article__link a:hover::after {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}

@media screen and (max-width:767px) {
  .work {
    margin: 0 auto 80px;
    display: block;
    justify-content: space-between;
    padding-top: 40px;
  }
  .work-img {
    width: 100%;
    margin-bottom: 40px;
  }
  .work-img__main {
    width: 100%;
  }
  .work-img__main .noslide-arrow.prev-arrow {
    left: 5px;
  }
  .work-img__main .noslide-arrow.next-arrow {
    right: 5px;
  }
  .work-img__sub li {
    margin-right: 24px;
  }
  .work-text {
    width: 100%;
    padding-top: 0;
  }
  .work-text h1 {
    font-size: 20px;
  }
  .work-text .description {
    margin-bottom: 24px;
  }
  .work-text dl dt {
    width: 90px;
  }
  .work-text dl dd {
    width: calc(100% - 90px);
  }
  .work-text .maplink {
    width: 200px;
    font-size: 13px;
    line-height: 38px;
    border: solid 1px #9B9FA5;
    padding-left: 74px;
    position: relative;
    color: #666666;
    margin-top: 32px;
    display: block;
  }
  .work-text .maplink::before {
    content: "";
    width: 16px;
    height: 20px;
    position: absolute;
    top: 9px;
    left: 51px;
    background-image: url("../assets/images/shop/icon-map.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
  .article {
    padding-top: 40px;
  }
  .article__title {
    font-size: 24px;
  }
  .article__date {
    font-size: 13px;
    margin-bottom: 16px;
  }
  .article__content {
    padding: 20px 0 40px;
    margin-bottom: 40px;
  }
  .article__content img {
    margin-bottom: 16px;
    margin-top: 15px;
  }
  .article__content img:first-child {
    margin-top: 0;
  }
  .article__content h2 {
    font-size: 18px;
    padding-bottom: 10px;
    margin-top: 50px;
    margin-bottom: 24px;
  }
  .article__content blockquote {
    padding-left: 30px;
  }
  .article__content blockquote p {
    padding: 20px;
  }
  .article__content blockquote::before {
    content: "“";
    top: 30px;
    font-size: 50px;
  }
  .article__share p {
    margin-top: 48px;
  }
}
@media screen and (max-width:576px) {
  .article__link {
    height: auto;
    position: relative;
    padding-top: 68px;
  }
  .article__link .link-button {
    width: 48.4%;
    max-width: 160px;
  }
}