@charset "utf-8";

/*--------------------------------------
共通
--------------------------------------*/
body {
  /* font-family: "Noto Serif JP", serif; */
  font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #000;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
  transition: .3s;
}

a:hover {
  opacity: .6;
}

em {
  font-style: normal;
}


.inner_1000 {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}

.inner_1260 {
  max-width: 1260px;
  width: 90%;
  margin: 0 auto;
}

.cap_Txt {
  position: absolute;
  bottom: 10px;
  color: #000;
  font-size: 10px;
  line-height: 1;
}

.cap_R {
  right: 5px;
}

.cap_L {
  left: 5px;
}

.cap_W {
  color: #fff;
}

.cap_ShaB {
  text-shadow: 0 0 2px #000, 1px 0 2px #000, 0 1px 2px #000;
}

.cap_ShaW {
  text-shadow: 0 0 2px #fff, 1px 0 2px #fff, 0 1px 2px #fff;
}

.flex {
  display: flex;
}

.notes {
  font-size: 12px;
  line-height: 1.5;
}

.sp {
  display: none;
}


/*--------------------------------------
header
--------------------------------------*/
header {
  justify-content: space-between;
  align-items: stretch;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, .1);
  z-index: 99;
}

header #logo {
  display: block;
  max-width: 220px;
  width: 100%;
  padding: 15px 20px;
  font-size: min(1.8vw, 10px);
  font-weight: normal;
  line-height: 1.4;
  box-sizing: border-box;
}

header #logo img {
  margin-top: 5px;
}

header .head_Menu {
  justify-content: flex-end;
  align-items: center;
}

header .head_Menu .head_tel {
  width: clamp(125px, 14.9vw, 200px);
  margin-right: 16px;
}

header .head_MenuList {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-right: 1em;
}

header .head_MenuList a {
  display: inline-block;
  position: relative;
  padding: 5px 0;
  font-size: 12px;
}

header .head_MenuList a::after {
  display: block;
  content: '';
  width: 0;
  height: 1px;
  background-color: #000;
  transition: .3s;
}

header .head_MenuList a:hover::after {
  width: 100%;
}

.head_MenuBtn {
  justify-content: flex-start;
  align-items: stretch;
  height: 100%;
}

.head_MenuBtn>li {
  width: 100px;
}

.head_MenuBtn a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  transition: .3s;
}

.head_MenuBtn a p {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-align: center;
  transform: translate(-50%, -50%);
}

.head_MenuBtn a:hover {
  opacity: .6;
}

.head_MenuBtn .btn01 a {
  background: linear-gradient(to right, #989fa4 0%, #7e878d 100%);
}

.head_MenuBtn .btn02 a {
  background: linear-gradient(to right, #067071 0%, #045455 100%);
}

.head_MenuBtn .btn03 a {
  background: linear-gradient(to right, #bd9d3c 0%, #ac842d 100%);
}

.head_MenuBtn #humbuger_Menu {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
}

.head_MenuBtn #humbuger_Menu::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: '';
  width: 1px;
  height: 1px;
  background-color: #8f6d97;
  border-radius: 50px;
  transition: .6s;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
}

.head_MenuBtn #humbuger_Menu:hover::before {
  transform: translate(-50%, -50%) scale(150);
  opacity: 1;
}

.head_MenuBtn #humbuger_Menu span {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #5c5c5c;
  z-index: 2;
  transition: .3s;
}

.head_MenuBtn #humbuger_Menu:hover span {
  background-color: #fff;
}

.head_MenuBtn #humbuger_Menu span:nth-child(1) {
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.head_MenuBtn #humbuger_Menu span:nth-child(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.head_MenuBtn #humbuger_Menu span:nth-child(3) {
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.head_MenuBtn #humbuger_Menu.active {
  background-color: #8f6d97;
}

.head_MenuBtn #humbuger_Menu.active span {
  background-color: #fff;
}

.head_MenuBtn #humbuger_Menu.active span:nth-child(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(30deg);
}

.head_MenuBtn #humbuger_Menu.active span:nth-child(2) {
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  background-color: unset;
  border-radius: 50px;
  transform: translate(-50%, -50%) rotate(360deg) scale(1.2);
  opacity: 0;
}

.head_MenuBtn #humbuger_Menu.active span:nth-child(3) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
}

/*--------------------------------------
gnav
--------------------------------------*/
#gnav {
  display: none;
  width: 100%;
  height: 100svh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(22, 22, 22, 0.9);
  z-index: 10;
  overflow-y: scroll;
}

#gnav .gnav_List {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  margin-bottom: 30px;
}

#gnav .gnav_List>li {
  max-height: 18vh;
  box-sizing: border-box;
  opacity: 0;
  transform: translate(0, 10%);
  transition: .5s;
}

#gnav .gnav_List a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  transition: .3s;
}

#gnav .gnav_List p {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  color: #fff;
  font-size: min(3.5vw, 20px);
  font-family: "Cinzel", serif;
  text-align: center;
  transform: translate(-50%, -50%);
}

#gnav .gnav_List p span {
  display: block;
  font-size: 12px;
  font-weight: 600;
}

#gnav .gnav_List img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#gnav.view_nav {
  display: block;
}

#gnav .gnav_List>li.fade {
  transform: translate(0, 0);
  opacity: 1;
}


#content_Wrap{
  overflow: hidden;
}


/*--------------------------------------
hero_Vis
--------------------------------------*/
#hero_Vis {
  width: 100%;
}

/* .hero {
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.hero.is-show {
  opacity: 1;
} */
.hero {
  opacity: 0;
  animation: heroFade 2s ease forwards;
  animation-delay: 0.5s;
}

@keyframes heroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.first_view{
  width:100%;
  /* height: 74vh;
  min-height: 600px;
  background-image: url(../img/fv.jpg);
  background-size: cover;
  background-position: center; */
}


/* .first_view figure{
  position: relative;
}
.first_view figcaption{
  width: 100%;
  position: absolute;
  bottom:0;
  right: 0;
} */

.fv_txt{
  display: block;
  background-image: linear-gradient(
    to right,
    #ab8b4a 0%,
    #c4ad69 50%,
    #ab8b4a 100%
  );
  padding: 16px 0;

}
.fv_txt_inner{
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 16px 0;
}
.fv_txt img{
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

/*--------------------------------------
main
--------------------------------------*/
main {
  /* display: block;
  background-image: linear-gradient(
    to right,
    #ece6d0 0%,
    #f8f6f3 50%,
    #ece6d0 100%
  ); */
}

.teiki_Area {
  padding: 130px 0;
  text-align: center;
  font-feature-settings: "palt" 1;
}

.teiki_Area>div>p {
  color: #000;
  font-size: clamp(18px, 2.3vw, 26px);
  letter-spacing: 0.1em;
  line-height: 2;
}

.teiki_Area .mini_txt{
  font-size: 16px;
  margin-top: 30px;
}




/* point */
.point01,
.point03,
.point05{
  background: #fff;
  padding: 100px 0;
}

/* 背景 */
.content_Wrap{
  background-image: url(../img/damask.png);
}
.point02,
.point04{
  background-image: url(../img/moya.jpg);
  background-size: 100% auto;
}


.point02,
.point04{
  padding: 100px 0;
}

/* ポイント共通 */
.point_inner{
  width: 90%;
  max-width: 1000px;
  margin: auto;
  color: #266c6d;
}
.point_inner h3{
  /* font-size: clamp(18px, 3vw, 42px); */
  font-size: clamp(22px, 4vw, 46px);
  display: flex;
  align-items: baseline;
  gap: 0.8%;
  margin-bottom: 10px;
}
.point_inner h3::after{
  content: "";
  flex: 1;
  height: 1px;
  margin-top: 8px;
  align-self: center;
  background: #266c6d;
}
.point_inner h3 .ttl_gd{
  color: #cab581;
  /* font-size: clamp(22px, 5vw, 72px); */
  font-size: clamp(18px, 3vw, 34px);
}
.point_inner .voice_ttl{
  font-size: clamp(18px, 2vw, 24px);
  margin: 20px 0 8px;
  color: #333;
}
.point_inner .voice_ttl_txt span{
  font-size: clamp(13px, 1.6vw, 18px);
  line-height: 1.8;
  color: #333;
}

.voice_ttl_txt span:last-of-type{
  position: relative;
  top: 8px;
}

/* マーカー */
.marker span{
  display:inline;

  background: linear-gradient(#f8f47279,#f8f372);
  background-position: 0 105%;
  background-size: 0% 40%;

  background-repeat: no-repeat;

  transition: background-size 1s ease;

  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.marker.aos-animate span:nth-of-type(1){
transition-delay: .4s;
}
.marker.aos-animate span:nth-of-type(2){
  transition-delay: 1.2s;
}
.marker.aos-animate span:nth-of-type(3){
  transition-delay: 2.2s;
}
.marker.aos-animate span:nth-of-type(4){
  transition-delay: 3.2s;
}
.marker.aos-animate span:nth-of-type(5){
  transition-delay: 4.2s;
}
.marker.aos-animate span:nth-of-type(6){
  transition-delay: 5.2s;
}
.marker.aos-animate span{
  background-size: 100% 60%;
}


/* ポイント4,5 */
/* .point04 .flex,
.point05 .flex{
  gap: 2%;
}
.point04 .flex>div,
.point05 .flex>div{
  width: 49%;
}

.point04{
  padding-top: 100px;
}
.point05{
  padding-top: 30px;
  padding-bottom: 100px;
}

.point45{
  background: #fff;
  margin: 0 auto;
  padding: 30px;
}

.point04 .point_inner h3,
.point05 .point_inner h3{
  font-size: clamp(18px, 2.4vw, 36px);
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
  border-bottom: 1px solid #cab581;
}
.point04 .point_inner h3::after,
.point05 .point_inner h3::after{
  display: none;
}
.point04 .point_inner h3 .ttl_gd,
.point05 .point_inner h3 .ttl_gd{
  color: #cab581;
  font-size: clamp(22px, 4vw, 28px);
}
.point04 .point_inner .voice_ttl,
.point05 .point_inner .voice_ttl{
  font-size: clamp(18px, 1.8vw, 22px);
  margin: 16px 0 8px;
}
.point04 .point_inner .voice_ttl_txt span,
.point05 .point_inner .voice_ttl_txt span{
  font-size: clamp(12px, 1.4vw, 16px);
  line-height: 1.8;
}
.big_n{
  font-size: clamp(22px, 4vw, 40px);
} */

/*--------------------------------------
main/バナーエリア上ここまで
--------------------------------------*/




.link-area{
  background: #fff;
  padding-bottom: 100px;
}

.link-area .cv_Btn{
  padding-top: 100px;
  margin-bottom: 60px;
}

.cv_Btn {
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.cv_Btn>li {
  max-width: 300px;
  width: calc((100% - 60px) / 3);
}

.cv_Btn a {
  display: block;
  width: 100%;
  padding: 20px 0;
  transition: .3s;
}

.cv_Btn a p {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-align: center;
}

.cv_Btn a span {
  font-size: 14px;
}

.cv_Btn a:hover {
  opacity: .6;
}

.cv_Btn .btn01 a {
  background: linear-gradient(to right, #989fa4 0%, #7e878d 100%);
}

.cv_Btn .btn02 a {
  background: linear-gradient(to right, #067071 0%, #045455 100%);
}

.cv_Btn .btn03 a {
  background: linear-gradient(to right, #bd9d3c 0%, #ac842d 100%);
}




.bnr-area {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.bnr-area>div {
  width: calc((100% - 60px) / 4);
}

.bnr-area.column3 {
max-width: 1260px;
flex-wrap: wrap;
justify-content: center;
}

.bnr-area.column3>div {
width: calc((100% - 60px) / 4);
max-width: 300px;
}

.bnr-area.column3>div a {
max-width: 300px;
}

.link-area {
text-align: center;
margin-top: -20px;
}

.link-area h4 {
font-size: min(3.4vw, 22px);
letter-spacing: 0.1em;
line-height: 1.5;
font-weight: normal;
}

.link-area p {
font-size: min(3.2vw, 16px);
line-height: 1.5;
letter-spacing: 0.05em;
margin-top: 10px;
}

.mt-bnr {
margin-top: 50px;
}

.btn_area{
  background: #fff;
  padding-top: 50px;
}

.page_small_Btn {
  display: block;
  position: relative;
  max-width: 380px;
  width: 90%;
  /* margin: 0 auto; */
  padding: 20px;
  color: #fff;
  font-size: min(4vw, 16px);
  font-weight: 600;
  text-align: center;
  box-sizing: border-box;
  transition: .3s;
  background-color: #595564;
  margin: 50px auto;
}

.page_small_Btn::after {
  display: block;
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: 100%;
  height: 100%;
  opacity: .2;
  background-color: #595564;
}

.page_small_Btn:hover {
  opacity: .6;
}




/*--------------------------------------
footer
--------------------------------------*/
footer {
  padding: 50px 0 20px;
  background-color: #463a52;
}

footer .notes {
  margin-bottom: 50px;
  color: #fff;
}

footer article {
  margin: 0 auto 50px;
  color: #fff;
  text-align: center;
}

footer article p:first-of-type {
  font-size: 14px;
}

footer article p:last-of-type {
  font-size: 12px;
  font-weight: 600;
}

footer article a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(10vw, 48px);
}

footer article i {
  display: block;
  width: 1em;
  margin-right: 10px;
}

footer .copyright {
  color: #fff;
  font-size: 10px;
  text-align: center;
}

.sp_footNav {
  display: none;
}




@media only screen and (max-width: 1024px){
  .first_view{
  width:100%;
  /* height: 66vh;
  min-height: 500px;
  background-image: url(../img/fv_sp.jpg);
  background-size: cover;
  background-position: center right; */
}


}

@media only screen and (max-width: 840px){
/* 
.point45{
  background: #fff;
  margin: 0 auto;
  padding: 20px 16px 30px;
}

.point04 .point_inner h3,
.point05 .point_inner h3{
  font-size: clamp(18px, 2.4vw, 36px);
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #cab581;
}

.point04 .point_inner h3 .ttl_gd,
.point05 .point_inner h3 .ttl_gd{
  color: #cab581;
  font-size: clamp(18px, 2.6vw, 28px);
}
.big_n{
  font-size: clamp(22px, 4vw, 40px);
}
.point04 .point_inner .voice_ttl,
.point05 .point_inner .voice_ttl{
  font-size: clamp(16px, 1.8vw, 22px);
  margin: 8px 0 0px;
}
.point04 .point_inner .voice_ttl_txt span,
.point05 .point_inner .voice_ttl_txt span{
  font-size: clamp(12px, 1.4vw, 16px);
  line-height: 1;
}
.point04 .voice_ttl_txt span:last-of-type,
.point05 .voice_ttl_txt span:last-of-type{
  position: relative;
  top: 4px;
} */
}


/*--------------------------------------
sp
--------------------------------------*/
@media only screen and (max-width: 768px) {

  /*--------------------------------------
共通
--------------------------------------*/
  body {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-style: normal;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  a[href^="tel:"] {
    pointer-events: unset;
  }

  /*--------------------------------------
header
--------------------------------------*/
  header #logo {
    max-width: 180px;
    padding: 10px;
  }

  header .head_Menu {
    width: 50%;
  }

  header .head_Menu .head_tel {
    display: none;
  }

  .head_MenuBtn>li {
    width: 70px;
  }

  header .head_MenuList {
    display: none;
  }

  .head_MenuBtn .btn01,
  .head_MenuBtn .btn02,
  .head_MenuBtn .btn03 {
    display: none;
  }

  /*--------------------------------------
gnav
--------------------------------------*/
  #gnav .gnav_List {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }

  #gnav .gnav_List>li {
    width: calc((100% - 1px) / 2);
    height: 11.5svh;
  }

  #gnav .gnav_List p span {
    font-size: 10px;
  }

  /*--------------------------------------
hero_Vis
--------------------------------------*/
  #hero_Vis {
    width: 100%;
  }
.fv_txt img{
  width: 90%;
}
  .first_view{
  width:100%;
  /* min-height: 300px;
  height: 50vh;
  background-image: url(../img/fv_sp.jpg);
  background-size: cover;
  background-position: center right; */
}
/*--------------------------------------
main
--------------------------------------*/
  .tab {
    display: block;
  }

  .pctab {
    display: none;
  }

  .teiki_Area {
    padding: 60px 0;
  }

  .teiki_Area .mini_txt{
    font-size: 12px;
  }
  .fv_txt_inner img{
    width: 80%;
    max-width: 360px;
  }

.point01,
.point02,
.point03,
.point04,
.point05{
  padding: 60px 0;
}
.point_inner h3{
  font-size: clamp(24px, 4vw, 42px);
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}
.point_inner h3 .ttl_gd{
  font-size: clamp(18px, 3vw, 26px);
}
.point_inner .voice_ttl{
  font-size: clamp(18px, 1.8vw, 28px);
  margin: 16px 0 8px;
}
.point_inner .voice_ttl_txt span{
  font-size: clamp(12px, 2vw, 20px);
  line-height: 1.8;
}
/* 
.point04 .flex{
  flex-direction: column;
}
.point05 .flex{
  flex-direction: column-reverse;
}
.point04 .flex,
.point05 .flex{
  gap: 2%;
}
.point04 .flex>div,
.point05 .flex>div{
  width: 100%;
  margin-bottom: 10px;
}
.point04{
  padding-top: 40px;
}
.point05{
  padding-top: 30px;
  padding-bottom: 40px;
}
.point04 .point_inner h3,
.point05 .point_inner h3{
  font-size: clamp(22px, 4vw, 40px);
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #cab581;
}

.point04 .point_inner h3 .ttl_gd,
.point05 .point_inner h3 .ttl_gd{
  color: #cab581;
  font-size: clamp(22px, 4vw, 40px);
}
.big_n{
  font-size: clamp(22px, 4vw, 40px);
} */
    .page_small_Btn {
        width: 80%;
        padding: 16px;
    }
.cv_Btn {
        flex-direction: column;
        flex-wrap: wrap;
        gap: 10px;
    }
.cv_Btn>li {
        max-width: 100%;
        width: 100%;
    }

  /*--------------------------------------
footer
--------------------------------------*/
  footer {
    padding: 30px 0 80px;
  }

  footer article p:first-of-type {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
  }

  .sp_footNav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 62px;
    gap: 0;
    z-index: 999;
  }

  .sp_footNav>li {
    max-width: calc(100% / 2);
    width: calc(100% / 2);
    height: 100%;
  }

  .sp_footNav.cv_Btn a {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    height: 100%;
  }

  .sp_footNav.cv_Btn a i {
    width: 1.7em;
  }
  .sp_footNav.cv_Btn .btn01 a i {
    width: 0.9em;
  }

  .sp_footNav.cv_Btn a:hover {
    opacity: 1;
  }


  .sp_footNav.cv_Btn a p {
    font-size: 12px;
  }
  .bnr-area {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding-top: 20px;
    gap: 20px;
  }
  .bnr-area.column3>div {
    width: 100%;
    max-width: 100%;
  }

  .bnr-area.column3>div a {
    width: 100%;
    max-width: 100%;
  }

  .mt-bnr {
    margin-top: 30px;
  }
}
.marker_pc{
  display: block;
}
.marker_sp{
  display: none;
}

@media only screen and (max-width: 560px) {
  .marker_pc{
    display: none;
  }
  .marker_sp{
    display: block;
  }
  .point_inner .voice_ttl_txt span{
  font-size: clamp(13px, 3.6vw, 16px);
  line-height: 1.8;
}
/* .point04 .point_inner .voice_ttl,
.point05 .point_inner .voice_ttl{
  font-size: clamp(18px, 1.8vw, 28px);
  margin: 16px 0 8px;
}
.point04 .point_inner .voice_ttl_txt span,
.point05 .point_inner .voice_ttl_txt span{
  font-size: clamp(13px, 3.6vw, 16px);
  line-height: 1;
} */

.point02 .voice_ttl_txt span:last-of-type{
  position: relative;
  top: 8px;
}
.point02 .voice_ttl_txt span:nth-of-type(3){
  position: relative;
  top: 8px;
}

.point04 .voice_ttl_txt span:nth-of-type(4){
  position: relative;
  top: 8px;
}
.point04 .voice_ttl_txt span:nth-of-type(5){
  position: relative;
  top: 8px;
}

.marker span{
  background-position: 0 160%;
  /* background-size: 0% 60%; */
}
}


  /*--------------------------------------
TOPに戻るボタン
--------------------------------------*/
#page_top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 888;
}

#page_top a {
  display: block;
  position: relative;
  width: 50px;
  height: 50px;
  background-color: #463a52;
}

#page_top p {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  color: #fff;
  font-size: 10px;
  text-align: center;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 860px) {
  #page_top {
    bottom: 80px;
    right: 10px;
  }
}




/*================================================
shine
==================================================*/
.shine {
  position: relative;
  overflow: hidden;
}
.shine::before {
  display: block;
  position: absolute;
  top: 0;
  left: -75%;
  content: '';
  width: 50%;
  height: 140%;
  background: linear-gradient(130deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 70% );
  -webkit-animation: shine-foot 4s ease-in-out infinite;
  animation: shine-foot 4s ease-in-out infinite;
    z-index: 9;
}


@-webkit-keyframes shine-foot {
0% { left: -75%;}
40% { left: 150%;}
100% { left: 150%;}
}
@keyframes shine-foot {
0% { left: -75%;}
40% { left: 150%;}
100% { left: 150%;}
}
