@charset "utf-8";
/* bg *******************************************/
.bgStyleA {
  background: #706450;
}
.bgImgBoxRight,
.bgImgBoxLeft {
  top: 35px;
  width: 48%;
  height: calc(100% - 35px);
}
.bgImgBoxRight {
  left: 0;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}
.bgImgBoxLeft {
  right: 0;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
}

/* shadow *******************************************/
.shadowStyleA {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}
.shadowStyleB {
  box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.15);
}

/* btn *******************************************/
/* styleA */
.btn-styleA a {
  width: 220px;
  color: #000;
  padding-bottom: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.btn-styleA i {
  font-size: 0.8em;
}
.btn-styleA a::before,
.btn-styleA a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  bottom: -1px;
}
.btn-styleA a::before {
  background: #000000;
}
.btn-styleA a::after {
  background: #ccc;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
.btn-styleA a:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}
.btn-styleA a .btnArrow {
  position: relative;
  transition: all 0.3s;
  right: 3px;
}
.btn-styleA a:hover .btnArrow {
  right: 0;
}

/* styleB */
.btn-styleB a {
  color: #000;
  position: relative;
}
.btn-styleB a::before,
.btn-styleB a::after {
  position: absolute;
  top: 50%;
  left: -35px;
  content: "";
  width: 25px;
  height: 2px;
}
.btn-styleB a::before {
  background: #ab7449;
}
.btn-styleB a::after {
  background: #ccc;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.2s;
}
.btn-styleB a:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}

/* styleC */
.btn-styleC {
  text-align: center;
}
.btn-styleC a {
  width: 320px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  border: 1px solid #000;
  padding: 25px 12px;
  box-sizing: border-box;
  transition: ease 0.2s;
  border-radius: 50px;
  font-size: 1.1em;
  letter-spacing: 0.1em;
}
.btn-styleC a span {
  position: relative;
  z-index: 3;
  color: #000;
  transition: ease 0.5s;
}
.btn-styleC a:hover span {
  color: #fff;
}
.btn-styleC a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #000;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.btn-styleC a:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}

/* line *******************************************/
.line-styleA {
  border-bottom: solid 1px #000;
}

/* list *******************************************/
/* styleA */
.list-styleA li {
  position: relative;
  padding-left: 1.5em;
  margin: 10px 0 !important;
}
.list-styleA li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1em;
  padding-top: 1em;
  border: solid 1px #fff;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  /* btn *******************************************/
  /* styleA */
  .btn-styleA a {
    width: 200px;
    padding-bottom: 12px;
  }
  .btn-styleA i {
    font-size: 0.8em;
  }
  .btn-styleA a .btnArrow {
    right: 0;
  }
  /* styleC */
  .btn-styleC {
    text-align: center;
  }

  .btn-styleC a {
    width: 280px;
    max-width: 95%;
    padding: 22px 15px;
    font-size: 85%;
  }
}
