@charset "utf-8";
/* CSS Document */
/* common */
section#about {
  padding-bottom: 0;
}
section h3 {
  font-weight: 700!important;
  margin-bottom: 8vh;
}
.double-line span {
  display: inline-block;
  padding: 1rem 1.5rem;
  border: 1px solid var(--color-primary);
  position: relative;
}
.double-line span:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 4px;
  left: 4px;
  border: 1px solid var(--color-secondary);
}
/* lead */
.lead-area p:not(:last-child) {
  margin-bottom: 3vh;
}
.lead-area p.lead-main {
  font-weight: 700;
  margin-bottom: 6vh;
}
/* about */
.title-bg {
  background: -moz-linear-gradient(70deg, #ff7eb3, #ff758c);
  background: -webkit-linear-gradient(70deg, #ff7eb3, #ff758c);
  background: linear-gradient(70deg, #ff7eb3, #ff758c);
}
.title-bg h2 span {
  color: var(--color-text-white);
}
.title-bg h2 span:before {
  border-top: 2px solid var(--color-text-white);
  border-left: 2px solid var(--color-text-white);
}
.title-bg h2 span:after {
  border-bottom: 2px solid var(--color-text-white);
  border-right: 2px solid var(--color-text-white);
}
/* feature */
.feature-list:not(:last-of-type) {
  margin-bottom: 10vh;
}
.feature-list img {
  width: 80px;
}
.feature-list dt {
  margin-bottom: 3vh;
}
.feature-list dt p {
  font-weight: 700;
  padding-top: 3vh;
}
.feature-list span.primary {
  font-size: 130%;
}
@media screen and (max-width:999px){
  .br_ge-1000{
    display: block;
  }
}
@media screen and (min-width:1000px){
  .feature-list {
    font-size: 125%;
  }
  .br_ge-1000{
    padding-left: 1em;
  }
}
/* earn */
.earn-list li:not(:last-of-type) {
  margin-bottom: 10vh;
}
.earn-text dt {
  font-weight: 700;
}
.earn-text .sub-lead {
  font-size: 75%;
  display: block;
  padding: 3vh 0;
  color: var(--color-border);
}
@media screen and (max-width:999px){
  .earn-text {
    padding-top: 3vh;
  }
  .earn-list li {
    text-align: center;
  }
}
@media screen and (min-width:1000px){
  .earn-list li:nth-child(even) img {
    order: 1;
  }
  .earn-list li {
    align-items: center;
  }
  .earn-list .earn-text {
    padding: 0 4rem;
  }
}
/* work */
.work-area {
  background: var(--color-tertiary);
}
.work-list {
  padding-top: 10vh;
}
.work-list li {
  position: relative;
  background: var(--color-text-white);
  margin-top: calc(8vh + 75px);
}
.work-text {
  padding: 10rem 4rem 6rem;
}
.work-text dt {
  text-align: center;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 125%;
}
.work-text dd {
  padding-top: 1rem;
}
.speech {
  position: absolute;
  top: -75px;
  left: 0;
  right: 0;
  margin: auto;
  width: 150px;
  height: 150px;
}
.speech figure {
  position: relative;
  width: 150px;
  padding: 2rem;
  background: var(--color-text-white);
  text-align: center;
  box-shadow: 0px 2px 0px 1px rgba(0,0,0,0.1);
  border-radius: 50%;
}
.speech figure:before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  margin-left: -8px;
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  background: var(--color-text-white);
  box-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}
@media screen and (min-width:1000px){
  .work-list li {
    width: calc(96% / 3);
  }
  .work-list:after {
    content: '';
    display: block;
    width: calc(96% / 3);
  }
}
/* shop-list */
.shop-list li:not(:last-of-type){
  margin-bottom: 3vh;
}
.detail-btn {
  padding-top: 3rem;
}
.detail-btn a {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: bold;
  border: solid 2px var(--color-border);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 1);
  background-image: repeating-linear-gradient(135deg, transparent, transparent .6rem, rgba(245, 245, 245, 1) .6rem, rgba(245, 245, 245, 1) 1.2rem );
  -webkit-transition: all .5s ease-out;
  transition: all .5s ease-out;
  position: relative;
}
.detail-btn a:after{
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: .6rem;
  right: .6rem;
  border-bottom: 1.4rem solid var(--color-primary);
  border-left: 1.4rem solid transparent;
}
@media screen and (min-width:1000px){
  .shop-list .shop-info {
    align-items: center;
  }
  .shop-list .shop-logo {
    width: 30%;
  }
  .shop-list .shop-text {
    width: 70%;
    padding-left: 3rem;
  }
  .detail-btn a {
    padding: .5rem 2rem;
  }
}