#contents {
  width: 100%;
}
#contents * {
  box-sizing: border-box;
  font-feature-settings: "palt" 1;
}
#contents .box {
  background-color: #eeeeee;
  padding: 15px;
  overflow: hidden;
  margin-bottom: 30px;
}
.galleries {
  --space: 20px;
  display: flex;
  flex-wrap: wrap;
  row-gap: calc(var(--space) * 2);
  margin-left: calc(var(--space) * -1);
  margin-right: calc(var(--space) * -1);
}
.galleries .img {
  padding-left: var(--space);
  padding-right: var(--space);
}
.galleries .img:first-child {
  width: 100%;
}
.galleries .img:not(:first-child) {
  width: 50%;
}
.galleries .img a {
  display: block;
  overflow: hidden;
  position: relative;
}
.galleries .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.galleries .img a:after {
  content: "";
  aspect-ratio: 1;
  background: url(../img/common/icon-zoom-in.svg) center / contain no-repeat;
  display: block;
  position: absolute;
  transition: 0.3s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  width: 40px;
}
.galleries .img a:hover img {
  transform: scale(1.05);
}
.galleries .img a:hover:after {
  opacity: 1;
  width: 50px;
}
.gallery-detail {
  padding: 30px 0;
}
.gallery-detail dl {
  display: flex;
  gap: 20px;
}
.gallery-detail dl dt,
.gallery-detail dl dd {
  padding: 25px 0;
  margin: 0;
}
.label-products {
  color: #1e2291;
}
.label-products strong {
  border-bottom: 2px solid;
  display: inline-block;
}
.gallery-detail dl dt {
  width: 250px;
}
.gallery-detail dl dt span {
  padding: 0 15px;
  border-bottom: 2px solid;
}
.gallery-detail dl dd {
  width: calc(100% - 220px);
}
.gallery-detail dl dd ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.gallery-detail dl dd li {
  display: block;
}
.gallery-detail dl dd li small {
  font-size: 0.8em;
  display: block;
}
.gallery-detail p {
  margin-top: 0;
}

.about-content {
  margin-top: 20px;
  padding: 0 15px;
}
.about-content p:last-child,
.gallery-detail p:last-child {
  margin-bottom: 0;
}
.smartphone #contents {
  padding: 0 10px;
}

.smartphone #contents .common-page-title {
  display: flex;
}
.smartphone #contents .common-page-title .en {
  padding-right: 1em;
  width: auto;
}
.smartphone #contents .common-page-title .ja {
  flex: 1;
}

.smartphone #contents .box {
  padding: 15px 10px;
}
.smartphone .galleries {
  --space: 10px;
}
.smartphone .common-sup-caption {
  background: url(../img/common/common-sub-caption.png) no-repeat #c33;
  width: 100%;
  margin-bottom: 15px;
  overflow: hidden;
  position: relative;
  line-height: 1;
  padding: 10px;
  padding-left: 60px;
  background-position: left center;
  font-size: 16px;
  color: #fff;
  line-height: 1.4;
}
.smartphone .gallery-detail {
  padding: 30px 0;
  padding-bottom: 0;
}
.smartphone .gallery-detail dl {
  flex-wrap: wrap;
  gap: 7px;
}
.smartphone .gallery-detail dl dt,
.smartphone .gallery-detail dl dd {
  padding: 0 10px;
  width: 100%;
}
.smartphone .gallery-detail dl dd {
  width: 100%;
  padding-bottom: 10px;
}
