@charset "UTF-8";
@media (max-width: 700px) {
  .only-pc {
    display: none;
  }
}

@media (min-width: 701px) {
  .only-sp {
    display: none;
  }
}

/* animation
 * =================================================================== */
.animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
            animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
            transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
            transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
            transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateY(0vw);
            transform: translateY(0vw);
  }
  50%, 100% {
    -webkit-transform: translateY(17.86667vw);
            transform: translateY(17.86667vw);
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateY(0vw);
            transform: translateY(0vw);
  }
  50%, 100% {
    -webkit-transform: translateY(17.86667vw);
            transform: translateY(17.86667vw);
  }
}

.el-fixed-banner {
  position: fixed;
  bottom: 0;
  right: 50px;
  z-index: 9;
  width: 360px;
  opacity: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transform: translateY(100%) scale(1.1);
          transform: translateY(100%) scale(1.1);
}

@media (max-width: 700px) {
  .el-fixed-banner {
    width: 100vw;
    right: 0;
  }
}

.el-fixed-banner .floatBox__close {
  position: absolute;
  right: -14px;
  top: -14px;
  width: 25px;
  height: 25px;
  line-height: 22px;
  font-size: 25px;
  color: #0068b7;
  background: #fff;
  border: 3px #0068b7 solid;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
}

@media (max-width: 700px) {
  .el-fixed-banner .floatBox__close {
    width: 6.66667vw;
    height: 6.66667vw;
    font-size: 6.66667vw;
    right: 0.8vw;
    top: -9.6vw;
    border-width: 0.8vw;
    line-height: 5.86667vw;
  }
}

.el-fixed-banner.active {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}

/* new layout */
.el-nd-section {
  margin: 0 auto;
  position: relative;
  max-width: 1000px;
}

@media (max-width: 700px) {
  .el-nd-section {
    max-width: none;
    margin: 0;
    padding: 0;
  }
}

.el-nd-section.el-nd-section--fullWidth {
  max-width: 100%;
}

.el-kv {
  position: relative;
  background: url("/_var/tissue/zeitakuhoshitsu/update20220829/img/kv-bg.jpg") no-repeat center center/cover;
  overflow: hidden;
}

.el-kv--bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/_var/tissue/zeitakuhoshitsu/update20220829/img/kv-bg.jpg") no-repeat center center/cover;
  -webkit-transition: all 1s ease 1s;
  transition: all 1s ease 1s;
  z-index: 1;
}

@media (max-width: 700px) {
  .el-kv--bg {
    background-image: url("/_var/tissue/zeitakuhoshitsu/update20220829/img/sp-kv-bg.jpg");
  }
}

.el-kv--bg.animated {
  -webkit-transform: translateY(300px);
          transform: translateY(300px);
  opacity: 0;
}

@media (max-width: 700px) {
  .el-kv--bg.animated {
    -webkit-transform: translateY(80vw);
            transform: translateY(80vw);
  }
}

@media (max-width: 700px) {
  .el-kv .el-d-section {
    padding: 0;
  }
}

@media (max-width: 700px) {
  .el-kv .scroll {
    position: absolute;
    bottom: 5.86667vw;
    left: 4vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 17.86667vw;
    overflow: hidden;
  }
  .el-kv .scroll-text {
    width: 5.06667vw;
  }
  .el-kv .scroll-line {
    height: 100%;
    width: 0.8vw;
    border-left: 0.26667vw solid rgba(255, 255, 255, 0.4);
    border-radius: 0.26667vw;
    position: relative;
  }
  .el-kv .scroll-line span {
    position: absolute;
    top: 0;
    left: -0.53333vw;
    width: 0.8vw;
    height: 5.33333vw;
    border-radius: 0.8vw;
    background-color: #fff;
    -webkit-animation: scroll 3s ease infinite;
            animation: scroll 3s ease infinite;
  }
}

.el-section1 {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: #fff;
  position: relative;
  background: url("/_var/tissue/zeitakuhoshitsu/update20220829/img/sec1-bg.jpg") no-repeat center top/cover;
  z-index: 1;
}

@media (max-width: 700px) {
  .el-section1 {
    background-image: url("/_var/tissue/zeitakuhoshitsu/update20220829/img/sp-sec1-bg.jpg");
    background-size: cover;
  }
}

.el-section1 .bubble {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.el-section1 .bubble-1 {
  position: absolute;
  top: 18px;
  left: 64px;
}

@media (max-width: 700px) {
  .el-section1 .bubble-1 {
    width: 30.4vw;
    top: 8.26667vw;
    right: 5.6vw;
    left: auto;
  }
}

.el-section1 .bubble-2 {
  position: absolute;
  top: 185px;
  left: 43px;
}

@media (max-width: 700px) {
  .el-section1 .bubble-2 {
    width: 30.13333vw;
    top: 57.86667vw;
    left: -17.33333vw;
  }
}

.el-section1 .bubble-3 {
  position: absolute;
  bottom: 120px;
  right: 0;
}

@media (max-width: 700px) {
  .el-section1 .bubble-3 {
    width: 18.13333vw;
    bottom: 40.53333vw;
    right: 2.13333vw;
    left: auto;
  }
}

.el-section1 .bubble-4 {
  position: absolute;
  bottom: 0;
  left: -6px;
}

@media (max-width: 700px) {
  .el-section1 .bubble-4 {
    width: 29.6vw;
    position: absolute;
    bottom: 0;
    left: 58.66667vw;
  }
}

.el-section1 h2 {
  color: #F0CB8B;
  font-size: 40px;
  line-height: 59px;
  font-weight: 500;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  padding: 43px 0 17px 120px;
  letter-spacing: 2px;
}

@media (max-width: 700px) {
  .el-section1 h2 {
    font-size: 7.46667vw;
    line-height: 11.73333vw;
    padding: 6.4vw 0 3.2vw 3.46667vw;
    letter-spacing: 0;
  }
}

.el-section1--txt1 {
  font-size: 20px;
  line-height: 48px;
  padding-left: 126px;
  letter-spacing: 0.4px;
}

@media (max-width: 700px) {
  .el-section1--txt1 {
    font-size: 3.73333vw;
    line-height: 9.06667vw;
    padding-left: 3.73333vw;
    letter-spacing: 0;
  }
}

.el-section1--txt1 .line {
  font-size: 30px;
  position: relative;
  display: inline-block;
}

@media (max-width: 700px) {
  .el-section1--txt1 .line {
    font-size: 4.8vw;
  }
}

.el-section1--txt1 .line::after {
  position: absolute;
  bottom: 5px;
  left: 4px;
  right: 15px;
  height: 2px;
  background: url("/_var/tissue/zeitakuhoshitsu/update20220829/img/sec1-line.png") no-repeat center center/100% auto;
  content: "";
}

@media (max-width: 700px) {
  .el-section1--txt1 .line::after {
    background-image: url("/_var/tissue/zeitakuhoshitsu/update20220829/img/sp-sec1-line.png");
    height: 0.53333vw;
    left: 1.33333vw;
    right: 2.66667vw;
    bottom: 1.33333vw;
  }
}

.el-section1--txt1 .dot {
  font-size: 12px;
  position: relative;
  top: -8px;
}

@media (max-width: 700px) {
  .el-section1--txt1 .dot {
    font-size: 2.13333vw;
    top: -1.33333vw;
  }
}

.el-section1--txt2 {
  font-size: 14px;
  line-height: 24px;
  padding: 19px 0 55px 125px;
}

@media (max-width: 700px) {
  .el-section1--txt2 {
    font-size: 2.66667vw;
    line-height: 4vw;
    padding: 6.13333vw 0 5.33333vw 3.73333vw;
  }
}

.el-section2 {
  background: url("/_var/tissue/zeitakuhoshitsu/update20220829/img/sec2-bg.png") no-repeat center bottom/cover;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: #00003E;
  letter-spacing: 1px;
  padding-bottom: 232px;
  position: relative;
  z-index: 2;
}

@media (max-width: 700px) {
  .el-section2 {
    background-image: url("/_var/tissue/zeitakuhoshitsu/update20220829/img/sp-sec2-bg.png");
    padding-bottom: 20.26667vw;
    letter-spacing: 0;
  }
}

.el-section2 h2 {
  font-size: 28px;
  line-height: 50px;
  font-weight: 500;
  padding: 79px 0 31px 124px;
  position: relative;
  z-index: 1;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

@media (max-width: 700px) {
  .el-section2 h2 {
    font-size: 4.8vw;
    line-height: 9.86667vw;
    padding: 8.53333vw 0 2.66667vw 4vw;
  }
}

.el-section2 h2::before {
  position: absolute;
  top: 41px;
  left: 44px;
  background: url("/_var/tissue/zeitakuhoshitsu/update20220829/img/sec2-h2-bg.png") no-repeat center top/100% auto;
  width: 831px;
  height: 152px;
  content: "";
  z-index: -1;
}

@media (max-width: 700px) {
  .el-section2 h2::before {
    top: 3.73333vw;
    left: 4vw;
    background-image: url("/_var/tissue/zeitakuhoshitsu/update20220829/img/sp-sec2-h2-bg.png");
    width: 92vw;
    height: 25.33333vw;
  }
}

.el-section2 h2 span {
  font-size: 40px;
}

@media (max-width: 700px) {
  .el-section2 h2 span {
    font-size: 7.46667vw;
  }
}

.el-section2--txttop {
  font-size: 20px;
  line-height: 34px;
  padding: 0 0 50px 126px;
}

@media (max-width: 700px) {
  .el-section2--txttop {
    font-size: 3.73333vw;
    line-height: 6.4vw;
    padding: 0 0 6.93333vw 4vw;
  }
}

.el-section2--point1 {
  position: relative;
  background: url("/_var/tissue/zeitakuhoshitsu/update20220829/img/sec2-bg1.png") no-repeat center top;
  width: 755px;
  margin: 0 0 47px 125px;
  padding-bottom: 62px;
}

@media (max-width: 700px) {
  .el-section2--point1 {
    background-image: url("/_var/tissue/zeitakuhoshitsu/update20220829/img/sp-sec2-bg1.png");
    background-size: 100% auto;
    width: 90.93333vw;
    margin: 0 0 8.26667vw 5.06667vw;
    padding-bottom: 9.33333vw;
  }
}

.el-section2--point1 h3 {
  font-size: 30px;
  line-height: 45px;
  font-weight: 500;
  letter-spacing: 3px;
  padding: 31px 0 29px 121px;
  position: relative;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

@media (max-width: 700px) {
  .el-section2--point1 h3 {
    font-size: 4.26667vw;
    line-height: 6.13333vw;
    letter-spacing: 0;
    padding: 3.73333vw 4vw 4.53333vw 25.6vw;
    font-weight: 700;
  }
}

.el-section2--point1 h3:before {
  background: url("/_var/tissue/zeitakuhoshitsu/update20220829/img/sec2-point1.png") no-repeat center center/100% auto;
  position: absolute;
  top: -15px;
  left: -78px;
  content: "";
  width: 180px;
  height: 176px;
}

@media (max-width: 700px) {
  .el-section2--point1 h3:before {
    background-image: url("/_var/tissue/zeitakuhoshitsu/update20220829/img/sp-sec2-point1.png");
    top: -1.86667vw;
    left: -1.86667vw;
    width: 26.66667vw;
    height: 26.13333vw;
    z-index: 1;
  }
}

.el-section2--point1 h3:after {
  position: absolute;
  bottom: 0;
  left: 51px;
  right: 46px;
  height: 2px;
  background: url("/_var/tissue/zeitakuhoshitsu/update20220829/img/sec2-line.png") no-repeat left top;
  content: "";
}

@media (max-width: 700px) {
  .el-section2--point1 h3:after {
    left: 20vw;
    right: 5.6vw;
  }
}

.el-section2--point1 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 8px 0 0 42px;
}

@media (max-width: 700px) {
  .el-section2--point1 .list {
    margin: 3.2vw 0 0 2.93333vw;
  }
}

.el-section2--point1 .list dl {
  width: 328px;
}

@media (max-width: 700px) {
  .el-section2--point1 .list dl {
    width: 40.53333vw;
  }
}

.el-section2--point1 .list dl dd.title {
  font-weight: 700;
  font-size: 20px;
  line-height: 22px;
  text-align: center;
  margin-top: -20px;
}

@media (max-width: 700px) {
  .el-section2--point1 .list dl dd.title {
    font-size: 2.66667vw;
    line-height: 2.66667vw;
    margin-top: -5.06667vw;
  }
}

.el-section2--point1 .list dl dd.title span {
  font-size: 16px;
}

@media (max-width: 700px) {
  .el-section2--point1 .list dl dd.title span {
    font-size: 2.13333vw;
  }
}

.el-section2--point1 .list dl dd.text {
  font-size: 16px;
  line-height: 27px;
  padding: 22px 0 0 4px;
  width: 311px;
}

@media (max-width: 700px) {
  .el-section2--point1 .list dl dd.text {
    font-size: 2.66667vw;
    line-height: 4.53333vw;
    width: 40vw;
    padding: 3.2vw 0 0 0.8vw;
  }
}

.el-section2--point1 .list dl + dl {
  width: 320px;
  margin-left: 20px;
}

@media (max-width: 700px) {
  .el-section2--point1 .list dl + dl {
    width: 40.26667vw;
    margin-left: 3.2vw;
  }
}

.el-section2--point1 .list dl + dl dd.text {
  padding: 45px 0 0 7px;
  width: 321px;
}

@media (max-width: 700px) {
  .el-section2--point1 .list dl + dl dd.text {
    width: 38.4vw;
    padding: 5.86667vw 0 0 0.53333vw;
  }
}

.el-section2--point2 {
  position: relative;
  background: url("/_var/tissue/zeitakuhoshitsu/update20220829/img/sec2-bg2.png") no-repeat center top;
  width: 755px;
  margin: 0 0 0 125px;
  padding-bottom: 62px;
}

@media (max-width: 700px) {
  .el-section2--point2 {
    background-image: url("/_var/tissue/zeitakuhoshitsu/update20220829/img/sp-sec2-bg2.png");
    background-size: 100% auto;
    width: 90.93333vw;
    margin: 0 0 0 5.06667vw;
    padding-bottom: 8vw;
  }
}

.el-section2--point2 h3 {
  font-size: 30px;
  line-height: 45px;
  font-weight: 500;
  letter-spacing: 3px;
  padding: 31px 0 29px 121px;
  position: relative;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

@media (max-width: 700px) {
  .el-section2--point2 h3 {
    font-size: 4.26667vw;
    line-height: 6.13333vw;
    letter-spacing: 0;
    padding: 3.73333vw 4vw 4.53333vw 25.6vw;
    font-weight: 700;
  }
}

.el-section2--point2 h3:before {
  background: url("/_var/tissue/zeitakuhoshitsu/update20220829/img/sec2-point2.png") no-repeat center center/100% auto;
  position: absolute;
  top: -15px;
  left: -78px;
  content: "";
  width: 180px;
  height: 176px;
}

@media (max-width: 700px) {
  .el-section2--point2 h3:before {
    background-image: url("/_var/tissue/zeitakuhoshitsu/update20220829/img/sp-sec2-point2.png");
    top: -1.86667vw;
    left: -1.86667vw;
    width: 26.66667vw;
    height: 26.13333vw;
    z-index: 1;
  }
}

.el-section2--point2 h3:after {
  position: absolute;
  bottom: 0;
  left: 51px;
  right: 46px;
  height: 2px;
  background: url("/_var/tissue/zeitakuhoshitsu/update20220829/img/sec2-line.png") no-repeat left top;
  content: "";
}

@media (max-width: 700px) {
  .el-section2--point2 h3:after {
    left: 20vw;
    right: 5.6vw;
  }
}

.el-section2--point2 .item1 img {
  margin: 10px 0 0 -20px;
  width: 738px;
}

@media (max-width: 700px) {
  .el-section2--point2 .item1 img {
    margin: 4.53333vw 0 0 -2.66667vw;
    width: 89.86667vw;
  }
}

.el-section2--point2 .item1 p {
  font-size: 16px;
  line-height: 27px;
  text-align: center;
  padding: 38px 0 43px;
  width: 623px;
  margin: 0 auto;
  border-bottom: 1px solid #012C79;
}

@media (max-width: 700px) {
  .el-section2--point2 .item1 p {
    font-size: 2.66667vw;
    line-height: 4.53333vw;
    text-align: center;
    padding: 1.6vw 0 5.06667vw;
    width: auto;
    margin: 0 3.46667vw;
  }
}

.el-section2--point2 .item2 h4 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  padding: 41px 0 45px;
}

@media (max-width: 700px) {
  .el-section2--point2 .item2 h4 {
    font-size: 3.73333vw;
    padding: 5.33333vw 0 4.53333vw;
  }
}

.el-section2--point2 .item2 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 183px;
}

@media (max-width: 700px) {
  .el-section2--point2 .item2 ul {
    padding-left: 20vw;
  }
}

.el-section2--point2 .item2 ul li {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 13px;
}

@media (max-width: 700px) {
  .el-section2--point2 .item2 ul li {
    font-size: 2.66667vw;
    padding-bottom: 2.66667vw;
  }
}

.el-section2--point2 .item2 ul li + li {
  padding-left: 209px;
}

@media (max-width: 700px) {
  .el-section2--point2 .item2 ul li + li {
    padding-left: 26.13333vw;
  }
}

.el-section2--point2 .item2 .img {
  width: 646px;
  padding: 0 0 25px 74px;
}

@media (max-width: 700px) {
  .el-section2--point2 .item2 .img {
    width: 81.33333vw;
    padding: 0 0 4.26667vw 6.93333vw;
  }
}

.el-section2--point2 .item2 p {
  font-size: 16px;
  line-height: 27px;
  padding: 0 0 0 153px;
}

@media (max-width: 700px) {
  .el-section2--point2 .item2 p {
    font-size: 2.66667vw;
    line-height: 4.53333vw;
    padding: 0 0 0 9.06667vw;
  }
}

.el-section2--point2 .item2 p + p {
  padding-top: 9px;
}

@media (max-width: 700px) {
  .el-section2--point2 .item2 p + p {
    padding-top: 2.66667vw;
  }
}

.el-section3 {
  position: relative;
  z-index: 1;
  color: #00003E;
}

.el-section3:before {
  background: url("/_var/tissue/zeitakuhoshitsu/update20220829/img/sec3-bg.png") no-repeat center top;
  position: absolute;
  top: -602px;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  z-index: -2;
}

@media (max-width: 700px) {
  .el-section3:before {
    background-image: url("/_var/tissue/zeitakuhoshitsu/update20220829/img/sp-sec3-bg.png");
    top: -27.46667vw;
  }
}

.el-section3 .bubble {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.el-section3 .bubble-1 {
  position: absolute;
  top: -118px;
  right: 60px;
}

@media (max-width: 700px) {
  .el-section3 .bubble-1 {
    width: 32.8vw;
    top: -2.66667vw;
    left: -12vw;
    right: auto;
  }
}

.el-section3 .bubble-2 {
  position: absolute;
  top: 60px;
  left: 63px;
}

@media (max-width: 700px) {
  .el-section3 .bubble-2 {
    width: 18.4vw;
    top: 71.73333vw;
    left: 27.46667vw;
  }
}

.el-section3 .bubble-3 {
  position: absolute;
  top: 225px;
  right: 105px;
}

@media (max-width: 700px) {
  .el-section3 .bubble-3 {
    width: 9.6vw;
    top: 129.6vw;
    right: 2.66667vw;
  }
}

.el-section3 .bubble-4 {
  position: absolute;
  top: 473px;
  left: 44px;
}

@media (max-width: 700px) {
  .el-section3 .bubble-4 {
    width: 22.93333vw;
    bottom: 2.93333vw;
    left: -10.13333vw;
  }
}

.el-section3 .bubble-5 {
  position: absolute;
  bottom: -28px;
  left: -6px;
}

@media (max-width: 700px) {
  .el-section3 .bubble-5 {
    width: 6.93333vw;
    bottom: 5.6vw;
    right: 12.26667vw;
    left: auto;
  }
}

.el-section3 h2 {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  text-align: center;
  color: #fff;
  font-size: 38px;
  line-height: 58px;
  font-weight: 500;
  padding: 54px 0 15px;
}

@media (max-width: 700px) {
  .el-section3 h2 {
    font-size: 4.8vw;
    line-height: 7.73333vw;
    font-weight: 700;
    padding: 6.13333vw 0 1.86667vw;
  }
}

.el-section3 h2:after {
  content: "・・・";
  position: absolute;
  bottom: -12px;
  left: 184px;
}

@media (max-width: 700px) {
  .el-section3 h2:after {
    bottom: -1.33333vw;
    left: 10.4vw;
  }
}

.el-section3 h2 span {
  font-size: 25px;
  position: relative;
  bottom: 12px;
}

@media (max-width: 700px) {
  .el-section3 h2 span {
    font-size: 3.2vw;
    bottom: 1.6vw;
  }
}

.el-section3--txttop {
  text-align: center;
  font-size: 14px;
  color: #fff;
}

@media (max-width: 700px) {
  .el-section3--txttop {
    font-size: 2.66667vw;
  }
}

.el-section3--img {
  text-align: center;
  padding: 33px 0 14px;
}

@media (max-width: 700px) {
  .el-section3--img {
    padding: 4.8vw 0 8vw;
  }
}

.el-section3--img img {
  width: 633px;
}

@media (max-width: 700px) {
  .el-section3--img img {
    width: 97.33333vw;
  }
}

.el-section3--chat {
  padding-bottom: 48px;
}

@media (max-width: 700px) {
  .el-section3--chat {
    padding-bottom: 15.73333vw;
  }
}

.el-section3--chat dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.el-section3--chat dl dt {
  width: 180px;
}

@media (max-width: 700px) {
  .el-section3--chat dl dt {
    width: 20vw;
  }
}

.el-section3--chat dl dd {
  font-size: 20px;
  line-height: 36px;
}

.el-section3--chat dl dd span {
  font-weight: 700;
}

@media (max-width: 700px) {
  .el-section3--chat dl dd {
    font-size: 3.73333vw;
    line-height: 5.86667vw;
  }
}

.el-section3--chat dl:nth-child(1) {
  margin: 0 0 36px 125px;
}

@media (max-width: 700px) {
  .el-section3--chat dl:nth-child(1) {
    margin: 0 0 6.13333vw 4vw;
  }
}

.el-section3--chat dl:nth-child(1) dd {
  background: url("/_var/tissue/zeitakuhoshitsu/update20220829/img/sec3-chatbox1.png") no-repeat left top/100% auto;
  padding: 22px 67px 25px 60px;
  margin: 35px 0 0 23px;
}

@media (max-width: 700px) {
  .el-section3--chat dl:nth-child(1) dd {
    background-image: url("/_var/tissue/zeitakuhoshitsu/update20220829/img/sp-sec3-chatbox1.png");
    padding: 3.73333vw 2.93333vw 3.73333vw 7.73333vw;
    margin: -1.6vw 0 0 2.4vw;
    letter-spacing: -0.21333vw;
  }
}

.el-section3--chat dl:nth-child(2) {
  margin: 0 125px 23px 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media (max-width: 700px) {
  .el-section3--chat dl:nth-child(2) {
    margin: 0 4vw 5.86667vw 0;
  }
}

.el-section3--chat dl:nth-child(2) dd {
  background: url("/_var/tissue/zeitakuhoshitsu/update20220829/img/sec3-chatbox2.png") no-repeat left top/100% auto;
  padding: 21px 61px 25px 46px;
  margin: 12px 23px 0 0;
}

@media (max-width: 700px) {
  .el-section3--chat dl:nth-child(2) dd {
    background-image: url("/_var/tissue/zeitakuhoshitsu/update20220829/img/sp-sec3-chatbox2.png");
    padding: 4.26667vw 8.26667vw 4.53333vw 5.33333vw;
    margin: 0 2.4vw 0 0;
  }
}

.el-section3--chat dl:nth-child(3) {
  margin: 0 0 0 125px;
}

@media (max-width: 700px) {
  .el-section3--chat dl:nth-child(3) {
    margin: 0 0 0 4vw;
  }
}

.el-section3--chat dl:nth-child(3) dd {
  background: url("/_var/tissue/zeitakuhoshitsu/update20220829/img/sec3-chatbox3.png") no-repeat left top/100% auto;
  padding: 22px 38px 24px 51px;
  margin: 20px 0 0 20px;
}

@media (max-width: 700px) {
  .el-section3--chat dl:nth-child(3) dd {
    background-image: url("/_var/tissue/zeitakuhoshitsu/update20220829/img/sp-sec3-chatbox3.png");
    padding: 4.8vw 2.93333vw 5.06667vw 7.2vw;
    margin: -1.6vw 0 0 2.4vw;
  }
}

.el-section3--chat .note {
  text-align: right;
  color: #fff;
  padding: 10px 145px 0 0;
}

@media (max-width: 700px) {
  .el-section3--chat .note {
    font-size: 3.73333vw;
    padding-right: 5.33333vw;
  }
}

.el-section4 {
  color: #00003E;
  background: url("/_var/tissue/zeitakuhoshitsu/update20220829/img/sec4-bg.jpg") no-repeat center center;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}

@media (max-width: 700px) {
  .el-section4 {
    padding-bottom: 10.66667vw;
    background-image: url("/_var/tissue/zeitakuhoshitsu/update20220829/img/sp-sec4-bg.jpg");
  }
}

.el-section4 h2 {
  font-size: 40px;
  line-height: 29px;
  font-weight: 500;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  padding: 71px 0 41px;
  position: relative;
  text-align: center;
}

@media (max-width: 700px) {
  .el-section4 h2 {
    font-size: 7.46667vw;
    padding: 17.86667vw 0 8.53333vw;
  }
}

.el-section4 h2::before {
  position: absolute;
  top: 41px;
  left: 159px;
  width: 515px;
  height: 77px;
  content: "";
  background: url("/_var/tissue/zeitakuhoshitsu/update20220829/img/sec4-h2-bg.png") no-repeat center top/100% auto;
}

@media (max-width: 700px) {
  .el-section4 h2::before {
    top: 7.73333vw;
    left: 4vw;
    width: 77.6vw;
    height: 20.53333vw;
    background-image: url("/_var/tissue/zeitakuhoshitsu/update20220829/img/sp-sec4-h2-bg.png");
  }
}

.el-section4 p {
  font-size: 20px;
  line-height: 34px;
  text-align: center;
  padding-bottom: 24px;
}

@media (max-width: 700px) {
  .el-section4 p {
    font-size: 3.73333vw;
    line-height: 6.4vw;
    padding-bottom: 6.66667vw;
  }
}

.el-section4--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 125px;
}

@media (max-width: 700px) {
  .el-section4--list {
    margin-left: 3.46667vw;
  }
}

.el-section4--list dl {
  width: 239px;
}

@media (max-width: 700px) {
  .el-section4--list dl {
    width: 28.26667vw;
  }
}

.el-section4--list dl dd {
  font-size: 16px;
  line-height: 27px;
  text-align: center;
  padding-top: 23px;
}

@media (max-width: 700px) {
  .el-section4--list dl dd {
    padding-top: 2.13333vw;
    font-size: 2.66667vw;
  }
}

.el-section4--list dl + dl {
  padding-left: 27px;
}

@media (max-width: 700px) {
  .el-section4--list dl + dl {
    padding-left: 3.2vw;
  }
}

.zeitakuhoshitsu .el-d-section-reviews {
  background-color: #ecf6ff;
}

@media (max-width: 700px) {
  .el-footer {
    padding-bottom: 52vw;
  }
}
