@charset 'utf-8';

/***************

  --- base ---

****************/
html {
  cursor: default;
  line-height: 1.5;
  -moz-tab-size: 4;
  tab-size: 4;
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
  background-color: #fff;
  font-family:
    "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
}

header,
main,
section,
footer {
  display: block;
  margin: 0;
  padding: 0;
}

@media only screen and (max-width:768px) {

  html,
  body {
    font-size: 14px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
  font-size: 1em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

small {
  font-size: 80%;
}

*,
:after,
:before {
  box-sizing: border-box;
}

:after,
:before {
  text-decoration: inherit;
  vertical-align: inherit;
}

small {
  font-size: 80%;
}

a {
  color: #0b7ed4;
  transition: opacity 0.2s ease;
}

@media only screen and (min-width:769px) {

  a:hover,
  a:focus {
    opacity: 0.6;
  }
}

ol,
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

hr {
  height: 0;
  overflow: visible;
}

*+p {
  margin-top: 1em;
}

img {
  max-width: 100%;
  height: auto;
  border-style: none;
  vertical-align: bottom;
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  flex-shrink: 0;
}

iframe,
img {
  border-style: none;
}

table {
  border-collapse: collapse;
}

input {
  overflow: visible;
}


/***************

  common

****************/
.inline-block {
  display: inline-block;
}

.txt-left {
  text-align: left;
}

.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.valign-top {
  vertical-align: middle;
}

.valign-middle {
  vertical-align: middle;
}

.valign-bottom {
  vertical-align: middle;
}

.valign-baseline {
  vertical-align: baseline;
}

.fw-bold {
  font-weight: bold;
}

@media only screen and (min-width:769px) {
  .pc-none {
    display: none !important;
  }
}

@media only screen and (max-width:768px) {
  .sp-none {
    display: none !important;
  }

  /* ï¿½ï¿½ï¿½ï¿½ï¿½ß‚ï¿½ï¿½é‚µï¿½p */
  .sp-font-fam-1 {
    font-family:
      HiraKakuProN-W3, HiraKakuPro-W3,
      "Helvetica Neue",
      Arial,
      "Hiragino Kaku Gothic ProN",
      "Hiragino Sans",
      Meiryo,
      sans-serif;
  }
}

.img-inline {
  vertical-align: baseline;
  display: inline-block;
  margin: 0 0.2em;
  height: 0.8em;
  width: auto;
}

.fc-red {
  color: #ff0000;
}

.fc-green {
  color: #228f66;
}

.text-link {
  display: inline-block;
  color: #01acf3;
  text-decoration: underline;
}

.icon-blank {
  display: inline-block;
  vertical-align: top;
  width: 0.7em;
  height: auto;
  margin: 0.2em 0 0 0.1em;
}

.max-w90 {
  max-width: 90%;
}

.max-w85 {
  max-width: 85%;
}

.max-w80 {
  max-width: 80%;
}

.max-w75 {
  max-width: 75%;
}


/***************

  @keyframes

****************/
@keyframes fadein-up {
  0% {
    visibility: visible;
    opacity: 0;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
  }

  100% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

/***************

  .animation-element

****************/
.animation-element {
  transition-property: opacity, transform;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0.2s;
  animation-fill-mode: forwards;
  visibility: hidden;
}

.animation-element.-fadeUp {
  opacity: 0;
}

.animation-element.-run.-fadeUp {
  animation: fadein-up 1.2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.animation-element.-run.-wait-1 {
  animation-delay: 0.4s;
}

.animation-element.-run.-wait-2 {
  animation-delay: 0.8s;
}

.animation-element.-run.-wait-3 {
  animation-delay: 1.2s;
}

/********************

  .contents-frame

*********************/
.contents-frame {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

/********************

  .mark-indent

*********************/
.mark-indent {
  padding-left: 1.1em;
  position: relative;
}

.mark-indent .mark {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
}

.mark-indent a {
  text-decoration: underline;
}




/********************

  .deco-marker

*********************/
.deco-marker {
  background: linear-gradient(to right, transparent 0.2em, #fff 0.2em, #fff calc(100% - 0.2em), transparent calc(100% - 0.2em));
}

.deco-marker .quote {
  display: inline-block;
  color: #c2a3a3;
}

/********************

  .img-cardface

*********************/
.img-cardface {
  text-align: center;
  margin: 0 auto;
}

.img-cardface.-border-radius {
  border-radius: 4% / 6%;
  overflow: hidden;
}

.img-cardface.-border-radius.-vertical {
  border-radius: 6% / 4%;
}

.img-cardface.-has-border {
  border: 1px solid #bdbdbd;
}

/********************

  .ttl-lv2

*********************/
.ttl-lv2 {
  font-size: 28px;
  text-align: center;
  font-weight: 700;
  line-height: 2;
  margin-top: 1em;
}

.ttl-lv2>.ttl-small {
  font-size: 20px;
  line-height: 1.6;
  display: block;
}


@media only screen and (max-width: 768px) {
  .ttl-lv2 {
    font-size: 2.3rem;
  }

  .ttl-lv2>.ttl-small {
    font-size: 1.8rem;
    margin-bottom: -5px;
  }
}

/********************

  .hdg-with-border

*********************/
.hdg-with-border {
  margin: 0 auto;
  max-width: 100%;
  text-align: center;
  position: relative;
}

.hdg-with-border::before {
  content: "";
  display: block;
  width: 2px;
  height: 32px;
  margin: 0 auto;
  background-color: #333;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.hdg-with-border .head-img {
  display: block;
  width: 100%;
}


/********************

  .hdg-with-border
  .-message

*********************/
.hdg-with-border.-message {
  width: 85px;
  padding-top: 24px;
  margin: 0 0 0 5px;
  text-align: left;
}

.hdg-with-border.-message::before {
  width: 22px;
  height: 2px;
  left: 0;
  margin: 0;
}

@media only screen and (max-width: 768px) {
  .hdg-with-border.-message {
    width: 5.6rem;
    padding-top: 1.5rem;
    margin-left: 0;
  }

  .hdg-with-border.-message::before {
    width: 1.4rem;
    height: 0.15rem;
  }
}

/********************

  .hdg-with-border
  .-about

*********************/
.hdg-with-border.-about {
  width: 112px;
  padding-top: 43px;
}

.hdg-with-border.-about::before {
  width: 2px;
  height: 32px;
  transform: translateY(-50%);
}

@media only screen and (max-width: 768px) {
  .hdg-with-border.-about {
    width: 9rem;
  }
}

/********************

  .hdg-with-border
  .-benefit

*********************/
.hdg-with-border.-benefit {
  width: 93px;
  padding-top: 50px;
}

.hdg-with-border.-benefit::before {
  height: 32px;
  transform: translateY(-50%);
}

@media only screen and (max-width: 768px) {
  .hdg-with-border.-benefit {
    width: 8rem;
  }
}


/********************

  .btn

*********************/
.btn {
  display: block;
  text-decoration: none;
  border: none;
  box-shadow: 0 0 12px 0 rgba(51, 51, 51, 0.48);
  background: linear-gradient(to right bottom, #454444 0%, #454444 50%, #333 50%, #333 100%);
  padding: 0.4em 1.25em;
  position: relative;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  text-align: center;
  margin: 50px auto;
  width: 90%;
  max-width: 500px;
  transition: opacity 0.2s ease;
}

.btn:hover {
  opacity: 0.6;
}

.btn.mb0 {
  margin-bottom: 0;
}

.btn::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0.3em;
  bottom: 0;
  margin: auto 0;
}

.btn.-next::after {
  width: 1em;
  height: 1em;
  background: url('../images/icon-btn-arrow.svg') no-repeat center / contain;
}

.btn.-down::after {
  width: 0.93em;
  height: 0.93em;
  background: url('../images/icon-btn-direction.svg') no-repeat center / contain;
}

.btn-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 2.4em;
  letter-spacing: 0.05em;
}

.btn-text p {
  margin-top: 0;
}

.btn-text .sub {
  font-size: 60%;
  font-weight: 500;
  display: block;
  letter-spacing: 0;
}

.btn-text .small {
  font-size: 46%;
  font-weight: 500;
  display: block;
  letter-spacing: 0;
}

.btn-wrap {
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .btn {
    margin: 1.5em auto;
    width: 90%;
    box-shadow: 0 0 6px 0 rgba(51, 51, 51, 0.48);
    font-size: 2.0rem;
  }
}

/********************

  .section.-message *

*********************/
.section.-message {
  background: #F3F3F6 url("../images/bg-message.png") no-repeat center top / auto;
  padding: 80px 0 100px;
  position: relative;
}

.section.-message::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19px;
  height: 46px;
  background: url(../images/bg-message-text.png) repeat-x center / auto 100%;
}

.message-frame {
  padding: 0 20px;
  max-width: 850px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .section.-message {
    background: #f3f3f6 url(../images/bg-message-sp.png) no-repeat center top / 100% auto;
    padding: 50px 0 102px;
  }

  .section.-message::before {
    height: 27px;
    bottom: 50px;
  }
}

/********************

  .card-txt-group

*********************/

.card-txt-group {
  display: flex;
  margin: 50px auto;
  width: 90%;
  max-width: 542px;
}

.card-txt-group .card-box {
  flex-basis: 35.24%;
}

.card-txt-group .card-box .img-cardface {
  box-shadow: 6.6px 7.4px 14px 0 rgb(51 51 51 / 40%), 0 0 2px 0 rgb(51 51 51 / 15%);
  display: block;
  margin: 0 auto;
}

.card-txt-group .text-box {
  margin-left: 35px;
  padding-top: 10px;
  font-weight: 700;
}

.card-txt-group .text-box .texts {
  margin-top: 11.25%;
  line-height: 1.6;
  font-size: 20px;
}

@media only screen and (max-width: 768px) {

  /* .card-txt-group {
    max-width: 294px;
  } */
  .card-txt-group .card-box {
    width: 43%;
    margin: 0 auto;
  }

  .card-txt-group .card-box .img-cardface {
    box-shadow: 3.3px 3.7px 7px 0 rgba(51, 51, 51, 0.4), 0 0 2px 0 rgba(51, 51, 51, 0.15);
  }

  .card-txt-group .text-box {
    padding-top: 0;
    margin: 0 auto;
  }

  .card-txt-group .text-box .ttl-box {
    margin: 28px auto 0;
    width: 65%;
  }

  .card-txt-group .text-box .texts {
    margin-top: 30px;
    line-height: 1.8;
    text-align: left;
    display: inline-block;
    font-size: 1.8rem;
  }
}

/********************

  .message-texts

*********************/
.message-texts {
  font-weight: 500;
  line-height: 2;
  max-width: 700px;
  margin: 0 auto;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 768px) {
  .message-texts {
    display: block;
    margin: 1.5rem auto 0;
  }
}


/********************

  .section.-benefit *

*********************/
.section.-benefit {
  background: #ebebee url(../images/bg-benefit.png) no-repeat center top / auto;
  padding-bottom: 35px;
}

@media only screen and (max-width: 768px) {
  .section.-benefit {
    background: #ebebee url(../images/bg-benefit-sp.png) no-repeat center top / 100% auto;
  }
}

/********************

  .benefit-list
  .benefit-list-item

*********************/
.benefit-list {
  display: flex;
  justify-content: center;
  margin: 50px auto 30px;
}

.benefit-list-item {
  width: 31.77%;
  flex-grow: 0;
  padding: 0 12px;
}

.benefit-list-item.-item-2,
.benefit-list-item.-item-3 {
  margin-left: 2.33%;
}

.benefit-link {
  color: inherit;
  display: block;
  padding-bottom: 10px;
  position: relative;
}

.benefit-list-item .img-box img {
  display: block;
  width: 100%;
}

.benefit-list-item .txt-box {
  margin-top: 27px;
  background: no-repeat right top / auto;
  background: no-repeat right 22px top / auto;
  line-height: 2;
  font-weight: 500;
}

.benefit-list-item .txt-box .benefit-title {
  font-size: 20px;
  letter-spacing: 0.15em;
  line-height: 1.4;
  font-weight: 700;
}

.benefit-list-item .txt-box .texts-block {
  margin-top: 10px;
}

.benefit-list-item .txt-box .note {
  font-size: 11.5px;
  line-height: 1.6;
  margin-top: 20px;
}

.benefit-list.-bump-1 .benefit-list-item.-item-2 {
  padding-top: 40px;
}

.benefit-list.-bump-2 .benefit-list-item.-item-1,
.benefit-list.-bump-2 .benefit-list-item.-item-3 {
  padding-top: 40px;
}

@media only screen and (max-width: 768px) {
  .benefit-list {
    display: block;
    margin-top: 40px;
  }

  .benefit-list-item {
    width: 100%;
    padding: 0 12px;
    margin-top: 20px;
  }

  .benefit-list-item.-item-2,
  .benefit-list-item.-item-3 {
    margin-left: 0;
  }

  .benefit-list.-bump-1 .benefit-list-item.-item-2,
  .benefit-list.-bump-2 .benefit-list-item.-item-1,
  .benefit-list.-bump-2 .benefit-list-item.-item-3 {
    padding-top: 0;
  }

  .benefit-list-item .benefit-link {
    margin: 0 10%;
  }

  .benefit-list-item .benefit-link .img-txt-group {
    margin: 0 auto;
  }

  .benefit-list-item .txt-box {
    padding: 0;
    margin-top: 2.0rem;
  }

  .benefit-list-item .txt-box .benefit-title {
    font-size: 2.0rem;
    letter-spacing: 0.1em;
  }
}

/********************

  .benefit-list-wrap.-run

*********************/
.benefit-list-wrap.-run .-benefit-fadeUp {
  animation: fadein-up 1.2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.benefit-list-wrap.-run .benefit-list-item:nth-child(2) .-benefit-fadeUp {
  animation-delay: 0.4s;
}

.benefit-list-wrap.-run .benefit-list-item:nth-child(3) .-benefit-fadeUp {
  animation-delay: 0.8s;
}


/********************

  .section.-about

*********************/


/********************

  .card-with-spec

*********************/
.card-with-spec {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 698px;
  margin: 65px auto;
}

.card-with-spec .card-box {
  margin: 0;
  width: 40%;
  padding: 0 5.7%;
}

.card-with-spec .card-box .img-cardface {
  box-shadow: 6.6px 7.4px 14px 0 rgb(51 51 51 / 40%), 0 0 2px 0 rgb(51 51 51 / 15%);
}

.card-with-spec .spec-table {
  border-collapse: collapse;
  width: 60%;
  font-size: 16px;
}

.card-with-spec .spec-table tr {
  border-top: 1px solid #c2a3a3;
}

.card-with-spec .spec-table tr:last-child {
  border-bottom: 1px solid #c2a3a3;
}

.card-with-spec .spec-table th,
.card-with-spec .spec-table td {
  text-align: left;
  vertical-align: top;
}

.card-with-spec .spec-table th {
  padding: 10px 10px;
  width: 32%;
}

.card-with-spec .spec-table td {
  padding: 10px 0;
  padding-left: 0;
}

@media only screen and (max-width: 768px) {
  .card-with-spec {
    display: block;
    max-width: 600px;
    margin: 30px auto;
  }

  .card-with-spec .card-box,
  .card-with-spec .spec-table {
    margin: 20px auto;
    width: 100%;
  }

  .card-with-spec .card-box {
    max-width: 260px;
    width: 43%;
    padding: 0;
  }

  .card-with-spec .card-box .img-cardface {
    box-shadow: 3.3px 3.7px 7px 0 rgba(51, 51, 51, 0.4), 0 0 2px 0 rgba(51, 51, 51, 0.15);
  }

  .card-with-spec .spec-table {
    font-size: 14px;
    margin-top: 40px;
  }

  .card-with-spec .spec-table th {
    width: 10em;
  }
}

/********************

  .cardbrand-list

*********************/
.cardbrand-list>li {
  display: inline-block;
  width: 36px;
}


/********************

  .txt-icons-list

*********************/
.txt-icons-list {
  font-size: 0;
  margin-top: 2px;
}

.txt-icons-list>li {
  display: inline-block;
  padding: 3px 6px;
  font-size: 13.5px;
  margin: 0 4px 4px 0;
  background-color: #edebe4;
  line-height: 1.3;
  font-weight: 700;
}

.txt-icons-list>li.itemtype-1 {
  background-color: #edebe4;
}

.txt-icons-list>li.itemtype-2 {
  background-color: #a6a298;
  color: #fff;
}

.txt-icons-list>li.itemtype-3 {
  background-color: #d7d5d1;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .txt-icons-list>li {
    display: inline-block;
    font-size: 12px;
    margin: 0 8px 8px 0;
  }
}

/********************

  .txt-deco-line

*********************/
.txt-deco-line {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-top: 80px;
  color: #281000;
  letter-spacing: 0.01em;
}

.txt-deco-line .decoration {
  display: inline-block;
  padding: 0 26px;
  position: relative;
}

.txt-deco-line .decoration::before,
.txt-deco-line .decoration::after {
  content: "";
  display: block;
  position: absolute;
  width: 19px;
  top: 0;
  bottom: 0.25em;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}

.txt-deco-line .decoration::before {
  background-image: url(../images/deco-line_01.png);
  left: 0;
}

.txt-deco-line .decoration::after {
  background-image: url(../images/deco-line_02.png);
  right: 0;
}

@media only screen and (max-width: 768px) {
  .txt-deco-line {
    font-size: 16px;
    margin-top: 40px;
  }
}





/********************

  .modal

*********************/


/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10%);
  }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal-overlay {
  animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal-container {
  animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal-overlay {
  animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal-container {
  animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal-container,
.micromodal-slide .modal-overlay {
  will-change: transform;
}

/**************************

  .modal

***************************/
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

/********************

  .modal-container

*********************/
.modal-container {
  background-color: #fff;
  margin: auto;
  width: 90%;
  background: #fdfdfd;
  padding: 25px 20px 0;
  overflow: visible;
  max-width: 1040px;
  max-height: 75vh;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

@media only screen and (min-width: 769px) {
  .modal-container {
    overflow-y: auto;
    padding: 60px 20px 0;
  }
}

/********************

  .modal-text-clone-area

*********************/
.modal-text-clone-area {
  overflow-y: scroll;
  padding: 20px;
  max-height: 50vh;
  max-height: calc(100% - 65px - 14.13vw);
  background-color: #efefef;
}

@media only screen and (min-width: 769px) {
  .modal-text-clone-area {
    padding: 30px 20px;
    ;
    max-height: calc(100% - 65px - 68px);
  }
}

/********************

  .modal-text-clone-area
    .summary-list > dt , dd

*********************/
.modal-text-clone-area .summary-list {
  margin: 0;
}

.modal-text-clone-area .summary-list>dt,
.modal-text-clone-area .summary-list>dd {
  font-size: 14px;
}

@media only screen and (max-width: 768px) {

  .modal-text-clone-area .summary-list>dt,
  .modal-text-clone-area .summary-list>dd {
    font-size: 14px;
  }
}

/********************

  .modal-close-btn

*********************/
.modal-close-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  border: 0;
  border-radius: 50%;
  outline: none;
  width: 40px;
  height: 40px;
  transition: all 0.15s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  background: #000;
  text-align: center;
  color: #fff;
  cursor: pointer;
}

.modal-close-btn::before,
.modal-close-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 60%;
  height: 5%;
  background: #fff;
}

.modal-close-btn::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modal-close-btn::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media only screen and (min-width: 769px) {
  .modal-close-btn {
    width: 35px;
    height: 35px;
    top: 15px;
    right: 15px;
  }
}

/********************

  .modal-btn-wrap

*********************/
.modal-btn-wrap .btn {
  margin: 0 auto;
  font-size: 14px;
  max-width: 90%;
  margin-top: 20px;
  transition: none;
}

@media only screen and (min-width: 769px) {
  .modal-btn-wrap .btn {
    font-size: 18px;
    width: 400px;
  }
}

/********************

  .to-pagetop-btn

*********************/
.to-pagetop-btn-wrap {
  position: relative;
  min-height: 100px;
}

.to-pagetop-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  display: none;
  transition: bottom 0.2s linear, opacity 0.2s ease;
}

.to-pagetop-btn.-fixed {
  position: fixed;
  bottom: 30px;
  z-index: 90;
}

.to-pagetop-btn:hover {
  opacity: 0.6;
}

@media only screen and (max-width: 768px) {
  .to-pagetop-btn-wrap {
    min-height: 60px;
  }

  .to-pagetop-btn {
    width: 45px;
    height: 45px;
  }
}


/********************

  .follow-bottom

*********************/
.follow-bottom {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -10px 15px -5px rgba(0, 0, 0, 0.1);
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
  z-index: 100;
  padding: 15px;
  display: none;
}

.follow-bnr {
  text-align: center;
}

.follow-bnr-link {
  display: inline-block;
  cursor: pointer;
}


@media only screen and (max-width: 768px) {
  .follow-bottom {
    padding: 15px;
  }
}

.campaign-content-newpadding {
  padding: 6%;
  padding-top: 0%;
  text-align: left !important;
}

.list-item-new {
  display: block !important;
}

.list-item-new img {
  display: block;
  margin: auto;
}