@charset "utf-8";
/* CSS Document */

/*common
=======================*/
html
#main {
  box-sizing: border-box;
  font-size: 1.6rem;
  color: #323232;
  line-height: 1.7;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
}
#main img{
	vertical-align:top;
  pointer-events: none;
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
  user-select:none;
}
@media screen and (min-width:768px) {
  .spOnly {
    display: none;
  }
}
@media screen and (max-width:767.98px) {
  .pcOnly {
    display: none;
  }
}

/*---animation---*/
.anim_fadein {
  animation: fadeIn 4s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.anim_scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s, transform 1s;
}
.anim_scroll.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
.kvTitWrap .anim_scroll {
  transform: translateY(30px) scale(.7);
}
.kvTitWrap .anim_scroll.scrollin {
  transform: translate(0, 0) scale(1);
}
@media screen and (max-width:767.98px) {
  .anim_scroll_sp {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s, transform 1s;
  }
}
/*=====================*/


/*kvArea
=======================*/
.kvArea {
  position: relative;
}
.kv {
  height: 470px;
  margin: 0;
}
.kvTitWrap {
  position: absolute;
  top: 40%;
  left: 50%;
  max-width: 1160px;
  width: 100%;
  transform: translate(-50%, -40%);
  text-align: center;
  z-index: 5;
}
.kvArea h1 {
  position: relative;
  margin: 0;
}
.kv img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (max-width:767.98px) {
  .kv {
    height: 235px;
  }
  .kvTitWrap {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .kvArea h1 {
    max-width: 389px;
    margin: 0 auto;
    padding: 0 15px;
  }
}
/*=====================*/

/*lead_text
=======================*/
.lead_text {
  font-size: 2.4rem;
  margin: 45px 0;
  text-align: center;
}
@media screen and (max-width:767.98px) {
  .lead_text {
    font-size: 1.5rem;
    margin: 25px 0;
  }
}
/*=====================*/
.bg_wrap {
  background-color: #f5f4f1;
  padding-top: 50px;
  margin-bottom: 10px;
}
/*menuNav
=======================*/
.menuNav {
  display: flex;
  border: solid 2px #ccc;
  border-radius: 10px;
  width: 620px;
  margin: 0 auto 60px;
  background-color: #fff;
  box-shadow: 0 3px 10px rgb(0 0 0 / 16%);
}
.menuNav .navItem {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  width: 50%;
}
.menuNav .navItem:first-of-type {
  border-right: solid 2px #ccc;
}
.menuNav .navItem a {
  padding: 5px 0 30px;
  color: #000;
  position: relative;
  display: block;
}
.menuNav .navItem a::after {
    position: absolute;
    content: "";
    border-top: 4px solid #707070;
    border-right: 4px solid #707070;
    bottom: 20%;
    right: 47%;
    width: 17px;
    height: 17px;
    transform: rotate(135deg);
}
@media screen and (min-width:768px) {
  .menuNav .navItem:first-of-type a:hover {
    color: #379c39;
    transition: 0.25s;
  }
  .menuNav .navItem:first-of-type a:hover::after {
    border-top: 4px solid #379c39;
    border-right: 4px solid #379c39;
    transition: 0.25s;
  }
  .menuNav .navItem:nth-of-type(2) a:hover {
    color: #b38c16;
    transition: 0.25s;
  }
  .menuNav .navItem:nth-of-type(2) a:hover::after {
    border-top: 4px solid #b38c16;
    border-right: 4px solid #b38c16;
    transition: 0.25s;
  }
}
@media screen and (max-width:767.98px) {
  .menuNav {
    width: 83%;
  }
  .menuNav .navItem {
    font-size: 1.7rem;
  }
  .menuNav .navItem a::after {
    right: 50%;
    transform: translateX(50%) rotate(135deg);
    border-top: 3px solid #707070;
    border-right: 3px solid #707070;
    width: 12px;
    height: 12px;
  }
  .menuNav .navItem a {
  padding: 10px 0 25px;
  }
}

/*=====================*/


/*h2
=======================*/
h2 {
  margin: 0;
  text-align: center;
  font-size: 2.4rem;
}
h2 span {
  position: relative;
}
h2 span::before {
  position: absolute;
  content: '';
  top: 50%;
  left: -110px;
  width: 80px;
  height: 2px;
  transform: translateY(-50%);
}
h2 span::after {
  position: absolute;
  content: '';
  top: 50%;
  right: -110px;
  width: 80px;
  height: 2px;
  transform: translateY(-50%);
}

@media screen and (max-width:767.98px) {
  h2 {
    font-size: 2rem;
    overflow: hidden;
  }
  h2 span::before,
  h2 span::after {
    height: 1px;
    width: 90px;
  }
}

/*=====================*/

/*btn_wrap
=======================*/
.btn_wrap {
  display: flex;
  margin: 15px auto 30px;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
}
@media screen and (max-width:767.98px) {
  .btn_wrap {
    flex-flow: column;
    align-items: center;
    width: 95%;
    margin: 10px auto 15px;
  }
}
/*=====================*/


/*selectdiv(pulldown)
=======================*/
.select_p {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 8px;
  position: relative;
}
.select_p::before,
.select_p::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  background-color: #232323;
  top: 50%;
}
.select_p::before {
  left: 12%;
  transform: rotate(50deg);
}
.select_p::after {
  right: 12%;
  transform: rotate(-50deg);
}
.select_label {
  padding: 28px 0 0;
  font-weight: bold;
}
.selectdiv {
  position: relative;
  top: 0;
  max-width: 450px;
  width: 100%;
  /*margin: 0 auto;*/
  transition: .2s ease all;
}
.selectdiv label {
  position: relative;
}
.selectdiv label::after {
  position: absolute;
  content: '';
  right: 30px;
  width: 15px;
  height: 15px;
  border-right: 3px solid #47af49;
  border-bottom: 3px solid #47af49;
  border-radius: 2px;
  pointer-events: none;
  top: 45%;
  transform: translateY(-50%)rotate(45deg);
}

select:focus {
  outline: 0;
  /*border: 1px solid #cc0d21;*/
}
select::-ms-expand {
  display: none;
}
/*.selectdiv::before {
  content: '';
  position: absolute;
  display: block;
  right: 60px;
  width: 1px;
  height: 32px;
  top: 50%;
  transform: translateY(-50%);
  background: #323232;
  pointer-events: none;
  z-index: 10;
}*/
/*.selectdiv::after {
  content: '';
  display: inline-block;
  padding: 0;
  position: absolute;
  pointer-events: none;
}*/
.selectdiv select {
  pointer-events: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: 游ゴシック体, YuGothic, 游ゴシック, Yu Gothic, ヒラギノ角ゴ Pro, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, Osaka, Arial, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  display: inline-block;
  width: 100%;
  height: 58px;
  color: #232323;
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  -ms-word-break: normal;
  word-break: normal;
  background-color: #fff;
  border: 2px solid #47af49;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 2px 2px 1px rgba(0, 0, 0, .2);
}
@media (min-width: 768px) {
  .selectdiv:hover select {
    border: 2px solid #e0b32a;
    transition: .2s ease all;
    box-shadow: none;
  }
  .selectdiv:hover label::after {
    border-right: 3px solid #e0b32a;
    border-bottom: 3px solid #e0b32a;
  }
}

@media screen and (max-width:767.98px) {
  .selectdiv {
    width: 80%;
  }
  .selectdiv select {
    height: 48px;
    font-size: 1.5rem;
  }
  /*.selectdiv .decoration::before {
    top: 17px;
  }
  .selectdiv .decoration::after {
    top: 24px;
  }*/
  /*---iPhone only---*/
  .iPhone .selectdiv select {
    /*padding-top: 0;*/
    padding-left: 38%;
  }
  /*-----------------*/
  .select_p {
    font-size: 1.5rem;
    margin-bottom: 3px;
  }
  .select_p::before,
  .select_p::after {
    height: 1px;
    width: 18px;
  }
  .select_p::before {
    left: 10%;
  }
  .select_p::after {
    right: 10%;
  }
  .selectdiv label::after {
    top: 40%;
  }
}
@media screen and (max-width:480px) {
  .select_p::before {
    left: 0;
  }
  .select_p::after {
    right: 0;
  }
}
@media screen and (max-width:355px) {
  .select_p {
    font-size: 1.4rem;
  }
  .select_p::before {
    left: -5%;
  }
  .select_p::after {
    right: -5%;
  }
}
/*=====================*/

/*hk_btn
=======================*/
.hk_btn {
  max-width: 450px;
  width: 100%;
}
.hk_btn p {
  height: 58px;
}
.hk_btn a {
  display: block;
  height: 100%;
  padding: 12px 0;
  font-family: 游ゴシック体, YuGothic, 游ゴシック, Yu Gothic, ヒラギノ角ゴ Pro, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, Osaka, Arial, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  font-weight: bold;
  color: #232323;
  transition: .2s ease all;
  font-size: 2.2rem;
  line-height: 1.5;
  text-align: center;
  border: 2px solid #47af49;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 2px 2px 1px rgba(0, 0, 0, .2);
  position: relative;
}
.hk_btn a::after {
  position: absolute;
  content: '';
  top: 50%;
  transform: translateY(-50%)rotate(-45deg);
  right: 30px;
  width: 15px;
  height: 15px;
  border-right: 3px solid #47af49;
  border-bottom: 3px solid #47af49;
  border-radius: 2px;
  pointer-events: none;
}
@media (min-width: 768px) {
  .hk_btn a:hover {
    border: 2px solid #e0b32a;
    transition: .2s ease all;
    box-shadow: none;
  }
  .hk_btn a:hover::after {
    border-right: 3px solid #e0b32a;
    border-bottom: 3px solid #e0b32a;
  }
}
@media screen and (max-width:767.98px) {
  .hk_btn {
    width: 80%;
  }
  .hk_btn a {
    font-size: 1.5rem;
    height: 48px;
  }
}

/*=====================*/


/*recommendArea
=======================*/
.recommendArea {
  margin-bottom: 65px;
}
.recommendArea h2 {
  color: #379c39;
}
.recommendArea h2 span::before,
.recommendArea h2 span::after { 
  background: #379c39;
}
@media screen and (max-width:767.98px) {
.recommendArea h2 span::before {
    left: -130%;
  }
.recommendArea h2 span::after {
    right: -130%;
  }
}


/*=====================*/


/*courseArea
=======================*/
.courseArea h2 {
  color: #b38c16;
}
.courseArea h2 span::before,
.courseArea h2 span::after { 
    background: #b38c16;
}


@media screen and (max-width:767.98px) {
.courseArea h2 span::before {
    left: -105%;
  }
.courseArea h2 span::after {
    right: -105%;
  }
}

.courseArea {
  padding-top: 10px;
}
.courseArea_inner {
  max-width: 1160px;
  margin: 0 auto;
}

/*---areaMenu---*/
.areaMenu {
  position: sticky;
  /*top: 92px;*/
  top: 0;
  margin-top: 30px;
  background: #b38c16;
  box-shadow: 0 1px 2px 2px rgba(0, 0, 0, .1);
  z-index: 10;
}
.areaMenu ul {
  display: flex;
  max-width: 1160px;
  margin: 0 auto;
}
.areaMenu li {
  text-align: center;
}
.areaMenu li a {
  display: block;
  width: 100%;
  padding: 12px 0;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
}
.areaMenu li a span {
  position: relative;
  padding-left: 10px;
}
.areaMenu li a span::after {
  position: absolute;
  content: '';
  top: 45%;
  left: -8px;
  width: 10px;
  height: 10px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: translateY(-45%) rotate(45deg);
}
@media (min-width: 768px) {
  .areaMenu li a {
    position: relative;
    overflow: hidden;
    transition: 0.2s ease all;
  }
  .areaMenu li a:hover {
    background: #d0b871;
    opacity: .8;
    transition: 0.2s ease all;
  }
  .areaMenu li {
    width: 100%;
  }
}

@media screen and (max-width:767.98px) {
  /*.areaMenu {
    top: 50px;
  }*/
  .areaMenu ul {
    justify-content: center;
    flex-wrap: wrap;
    overflow: hidden;
  }
  .areaMenu li a {
    padding: 10px 20px 10px 25px;
    font-size: 1.4rem;
  }
  .areaMenu li a span {
    padding-left: 10px;
  }
  .areaMenu li a span::after {
    top: 40%;
    lright: -16px;
    width: 8px;
    height: 8px;
    transform: translateY(-35%) rotate(45deg);
  }
}

/*---courseItemsBox---*/
.areaBlock {
  padding-bottom: 74px;
}
.areaBlock:first-of-type {
  margin-top: 52px;
}
.areaBlock h3 {
  margin: 0;
  padding: 10px 0;
  font-size: 2.4rem;
  text-align: center;
  background: #b38c16;
  color: #fff;
}
.courseItemsBox {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.courseItem_wrap {
  width: calc((100% - 32px) / 3);
  margin-right: 16px;
  position: relative;
}
.courseItem_wrap:nth-of-type(3n) {
  margin-right: 0;
}
.courseItem_wrap:nth-of-type(n+4) {
  margin-top: 30px;
}
/*LINEへ送るボタン不要の場合は下記をコメントアウト*/
/*.courseItem_wrap:nth-of-type(n+4) {
  margin-top: 85px;
}*/

.courseItem_wrap a {
  display: block;
  border-radius: 5px;
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1);
}
.course__card {
  z-index: 1;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.course__card__tagBox {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
}
.course__card__tagBox ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.course__card__tagBox ul li {
  margin: 0 10px 10px 0;
  padding: 3px 12px;
  color: #fff;
  font-size: 1.3rem;
  background: rgb(0 0 0 / .5);
  border-radius: 30px;
}
.course__card__img__caption {
  position: absolute;
  right: 12px;
  bottom: 9px;
  padding-left: 12px;
  font-size: 1.4rem;
  color: #fff;
  text-shadow: rgba(0, 0, 0, .8) 1px 0 2px, rgba(0, 0, 0, .8) .5403px .84147px 2px, rgba(0, 0, 0, .8) -.41615px .9093px 2px, rgba(0, 0, 0, .8) -.98999px .14112px 2px, rgba(0, 0, 0, .8) -.65364px -.7568px 2px, rgba(0, 0, 0, .8) .28366px -.95892px 2px, rgba(0, 0, 0, .8) .96017px -.27942px 2px;
  text-align: right;
}
.course__card__body {
  padding: 18px 18px 15px;
  background: #fff;
}
.course__card__codeArea__box {
  display: flex;
}
.course__card__code {
  position: relative;
  display: inline-block;
  min-width: 90px;
  padding: 0 10px 0 15px;
  border: 1px solid #ddd;
  color: #000;
  text-align: center;
  font-size: 1.4rem;
  line-height: 20px;
}
.course__card__code::after {
  position: absolute;
  content: '';
  top: -1px;
  left: -1px;
  width: 6px;
  height: 22px;
  background: #c51f1f;
}
.course__card__area__label {
  display: inline-block;
  min-width: 90px;
  margin-left: 10px;
  padding: 1px 10px;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 20px;
}
.course__card__title {
  margin-top: 8px;
  color: #000000;
  font-size: 1.8rem;
  font-weight: 700;
  transition: all .3s;
}
.course__card__sub {
  margin-top: 5px;
}
.course__card__area {
  line-height: 1;
  text-align: right;
}
.course__card__unit {
  margin-top: 15px;
  font-size: 1.4rem;
  color: #707070;
  text-align: right;
}
.course__card__price {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #cc0d21;
  text-align: right;
}
main [class*="course__card__head"] {
  padding-top: 52%;
  background-image: url(/med/app-files/img/tabimono_img.png);
  background-size: 60% auto;
  background-position: center;
  background-color: #C1C1C1;
  background-repeat: no-repeat;
  height: 0;
  position: relative;
  overflow: hidden;
}
main [class*="js_rweb2404_img_"] {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-size: contain;
}
main [class*="js_rweb2404_img_"]::after {
  top: 0;
}
main [class*="js_rweb2404_caption_"] {
  z-index: 2;
}
.noCourseTxt {
  margin: 0 auto;
  font-size: 1.6rem;
}
.course__info {
  font-size: 1.5rem;
  line-height: 1.0;
  color: #000;
}
@media (min-width: 768px) {
  .courseItem_wrap a:hover .course__card__title {
    color: #cc0d21;
    text-decoration: underline;
    transition: all .3s;
  }
}
@media screen and (max-width:767.98px) {
  .areaBlock {
    padding-bottom: 47px;
  }
  .areaBlock h3 {
    padding: 8px 0;
    font-size: 1.7rem;
  }
  .courseItemsBox {
    display: block;
    margin-top: 24px;
    padding: 0 10px;
  }
  .courseItem_wrap {
    width: 100%;
    margin-right: 0;
  }
  .courseItem_wrap:nth-of-type(n+2) {
    margin-top: 15px;
  }
  /*LINEへ送るボタン不要の場合は下記をコメントアウト*/
  /*.courseItem_wrap:nth-of-type(n+2) {
    margin-top: 60px;
  }*/
  .course__card {
    display: flex;
    background: #fff;
  }
  main [class*="course__card__head"] {
    padding-top: 0;
    padding-left: 34%;
  }
  main [class*="js_rweb2404_img_"]::after {
    background-size: cover;
  }
  main [class*="bgContain js_rweb2404_img_"]::after {
    background-size: contain!important;
  }
  .course__card__img__caption {
    right: 8px;
    bottom: 5px;
    font-size: 1rem;
  }
  .course__card__tagBox {
    position: static;
  }
  .course__card__tagBox ul {
    margin-top: 8px
  }
  .course__card__tagBox ul li {
    margin: 0 5px 5px 0;
    padding: 2px 7px;
    font-size: 1rem;
  }
  .course__card__tagBox ul li + li {
    margin-left: 5px;
  }
  .course__card__body {
    width: 100%;
    padding: 8px 10px;
  }
  .course__card__code {
    min-width: 70px;
    font-size: 1.2rem;
  }
  .course__card__area {
    text-align: left;
  }
  .course__card__area__label {
    min-width: 60px;
    font-size: 1rem;
    margin-left: 7px;
  }
  .course__card__title {
    font-size: 1.5rem;
  }
  .course__card__unit {
    margin-top: 5px;
    font-size: 1.1rem;
  }
  .course__card__price {
    margin-top: 5px;
    font-size: 1.7rem;
  }
  .noCourseTxt {
    font-size: 1.3rem;
    text-align: center;
  }
}
/*=====================*/

/*=======================*/
.line_share {
  position: absolute;
  right: 0;
  display: inline-block;
  background-color: #06c755;
  border-radius: 5px;
  margin-top: 10px;
}
.line_share_link {
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 3px 5px;
}
.line_share_link p {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}
.line_share_link img {
    max-width: 22px;
    max-height: 22px;
}
@media (min-width: 768px) {
  .line_share_link:hover {
    opacity: 0.75;
    transition: .25s;
  }
}

/*area_button
=======================*/
.area_button{
  text-align: center;
  margin: 40px 0;
  font-family: 游ゴシック体, YuGothic, 游ゴシック, Yu Gothic, ヒラギノ角ゴ Pro, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, Osaka, Arial, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
}
.area_button .contents_wrap{
  justify-content: center;
  flex-wrap: wrap;
}
.area_button__titbox__tit{
  font-size: 2.4rem;
  color: #333333;
  margin: 15px 5px;
}
.area_button__link{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 760px;
}
.area_button__link li{
  width: 100%;
}
.area_button__link li a{
  text-align: center;
  position: relative;
  display: block;
  font-size: 17px;
  font-weight: bold;
  border: 2px solid #cc0d20;
  border-radius: 5px;
  padding: 10px 36px 9px 9px;
  width: 100%;
  color: #333333;
  box-shadow: 0 1px 1px 1px rgb(0 0 0 / 10%);
}
.area_button__link li a:before{
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background: #cc0d21;
  content: "";
  width: 27px;
}
.area_button__link li a:after{
  -webkit-transform: rotate(45deg);
  display: block;
  position: absolute;
  transform: rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
  top: calc(50% - 4px);
  right: 10px;
  width: 8px;
  height: 8px;
}
@media screen and (min-width:768px) {
  .area_button {
    margin-top: 0;
  }
  .area_button__link li{
    max-width: 138px;
  }
  .area_button__link li a:hover{
    opacity: 0.7;
  }
}
@media screen and (max-width:767.98px) {
  .area_button__link {
    margin: 0 10px 0;
  }
  .area_button__link li a {
    padding: 10px 36px 9px 9px;
    margin-bottom: 5px;
    font-size: 1.8rem;
    font-weight: bold;
  }
}
/*=====================*/


/*pageTopBtn
=======================*/
.pageTopBtn {
  display: inline-block;
  width: 52px;
  /*left: calc(100vw - 5em);*/
  left: 93%;
  position: sticky;
  bottom: 30px;
  text-align: right;
  opacity: 0;
  z-index: 10;
}
.pageTopBtn_inner {
  margin: auto;
}
.pageTopBtn a {
  box-sizing: border-box;
  display: block;
  position: relative;
  width: 52px;
  height: 52px;
  background: #e0b32a;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgb(0 0 0 / 16%);
  cursor: default;
}
.pageTopBtn a:before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 55%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-style: solid;
  border-color: #fff;
  border-width: 2px 0 0 2px;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: border-color ease 0.1s;
}
.pageTopBtn.-show {
  opacity: 1;
}
.pageTopBtn.-show a {
  cursor: pointer;
}
.pageTopBtn.-transition500 {
  transition: .2s ease;
}

@media screen and (min-width:768px) {
  .pageTopBtn a:hover {
    background: #ecd387;
  }
}

@media screen and (max-width:767.98px) {
  .pageTopBtn a {
    width: 45px;
    height: 45px;
  }
  .pageTopBtn a:before {
    width: 16px;
    height: 16px;
  }
}
/*=====================*/

