@charset "UTF-8";
/* CSS Document */
/*---------------------------------

  レイアウト・基本カラー

---------------------------------*/
#globalContainer {
  position: relative;
}
:root {
  --co-main: #b168a8;
  --co-sub01: #94568e;
  --co-sub02: #784673;
  --co-sub03: #5c3658;
  --co-sub04: #3B2339;
  --maru-go: normal 400 1.8rem "Zen Maru Gothic", serif;
  --width: 1200px;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {}
/*---------------------------------

  header

---------------------------------*/
header {
  position: absolute;
  top: 4rem;
  width: 100%;
  z-index: 100;
}
header .wrap {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  padding: 0;
  width: 90%;
}
header .wrap #logo {
  max-width: 30rem;
  margin: 0 3rem;
}
header .wrap #logo a {
  display: block;
}
header .wrap #logo img {
  width: 100%;
  vertical-align: bottom;
}
/*---------------------------------
  グローバルナビゲーション
---------------------------------*/
#gnav {
  flex-basis: calc(100% - 36rem);
}
.global-navigation {
  display: flex;
  justify-content: space-between;
  font: var(--maru-go);
}
.global-navigation ul {
  display: flex;
}
.global-navigation ul li a {
  display: block;
}
.global-navigation ul.main {
  margin: auto;
}
.global-navigation ul.main li {
  margin: 0 1.8rem;
}
.global-navigation ul.main li.pcNone {
  display: none;
}
.global-navigation ul.main li a {
  font-size: 2.1rem;
  font-weight: 700;
  padding: 3.4rem 0;
  position: relative;
  white-space: nowrap;
}
.global-navigation ul.main li a::after {
  background: var(--co-main);
  border-radius: .3rem .3rem 0 0;
  content: '';
  opacity: 0;
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: .3rem;
}
.global-navigation ul.main li a:hover, .global-navigation ul.main li a.current {
  color: var(--co-main);
  opacity: 1;
}
.global-navigation ul.main li:hover a::after, .global-navigation ul.main li a.current::after {
  opacity: 1;
}
.global-navigation ul.sub {
  padding: 1rem;
}
.global-navigation ul.sub li {
  min-width: 8.2rem;
  margin-left: 1rem;
  text-align: center;
}
.global-navigation ul.sub li a {
  background: var(--co-main);
  border-radius: 1rem;
  color: #fff;
  font-size: 1.4rem;
  padding: 1rem;
  white-space: nowrap;
}
.global-navigation ul.sub li a:hover {
  background: var(--co-sub01);
}
.global-navigation ul.sub li a span._icon {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  margin: auto;
  margin-bottom: .5rem;
  width: 3rem;
  height: 3rem;
}
.global-navigation ul.sub li a span._icon._about {
  background-image: url("../images/sub_m_01.svg");
}
.global-navigation ul.sub li a span._icon._magazine {
  background-image: url("../images/sub_m_02.svg");
}
.global-navigation ul.sub li a span._icon._recruit {
  background-image: url("../images/sub_m_03.svg");
}
.global-navigation ul.sub li a span._icon._contact {
  background-image: url("../images/sub_m_04.svg");
}
@media screen and (max-width: 1440px) {
  header .wrap {
    width: 95%;
  }
  header .wrap #logo {
    max-width: 23rem;
    margin: 0 3rem;
  }
  #gnav {
    flex-basis: calc(100% - 29rem);
  }
  .global-navigation ul.main li {
    margin: 0 1rem;
  }
  .global-navigation ul.main li a {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 1280px) {
  header .wrap #logo {
    max-width: 19rem;
    margin: 0 3rem;
  }
  #gnav {
    flex-basis: calc(100% - 25rem);
  }
  .global-navigation ul.main {
    display: block;
    margin: 3rem 0;
  }
  .global-navigation ul.main li {
    margin: .5rem 0;
  }
  .global-navigation ul.main li a {
    display: flex;
    align-items: center;
    font-size: 1.7rem;
    padding: 0;
  }
  .global-navigation ul.main li a::before {
    content: '';
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
    margin-right: 2rem;
    width: 7rem;
    height: 7rem;
  }
  .global-navigation ul.main li.pcNone {
    display: block;
  }
  .global-navigation ul.main li:nth-child(1) a::before {}
  .global-navigation ul.main li:nth-child(2) a::before {
    background-image: url("../images/se_i_01.svg");
  }
  .global-navigation ul.main li:nth-child(3) a::before {
    background-image: url("../images/se_i_02.svg");
  }
  .global-navigation ul.main li:nth-child(4) a::before {
    background-image: url("../images/se_i_03.svg");
  }
  .global-navigation ul.main li:nth-child(5) a::before {
    background-image: url("../images/se_i_04.svg");
    background-size: 60%;
  }
  .global-navigation ul.main li:nth-child(6) a::before {
    background-image: url("../images/se_i_05.svg");
    background-size: 60%;
  }
  .global-navigation ul.sub {
    padding: .5rem;
  }
  .global-navigation ul.sub li {
    min-width: 7rem;
    margin-left: .5rem;
  }
  .global-navigation ul.sub li a {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  header .wrap {}
  header .wrap #logo {
    max-width: 20rem;
  }
  .global-navigation ul.main {
    margin: 2rem 0;
  }
  .global-navigation ul.main li {
    margin: .2rem 0;
  }
  .global-navigation ul.sub {
    flex-wrap: wrap;
    padding: 0;
  }
  .global-navigation ul.sub li {
    flex-basis: 50%;
    margin: 0;
    padding: .25rem;
  }
}
/*---------------------------------
  検索機能
---------------------------------*/
#searchBox {
  background: #fff;
  border: 2px solid var(--co-main);
  border-radius: 3rem;
  max-width: fit-content;
  padding: .5rem;
  position: absolute;
  bottom: -9rem;
  right: 5%;
}
#searchBox form {
  display: flex;
}
#searchBox form p {
  background: url("../images/search.svg") no-repeat center/contain;
  font-size: 1.3rem;
  margin: 0 2rem 0 1.5rem;
  word-break: keep-all;
}
#searchBox form p span {
  opacity: 0;
}
#searchBox form div {
  display: flex;
  align-items: center;
}
#searchBox form input[type="text"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: none;
  border-radius: 0;
  color: #333;
  font-family: inherit;
  font-size: .8em;
  padding: 0.3em;
  width: 25rem;
}
#searchBox form input[type="text"]:focus {
  box-shadow: none;
  outline: none;
}
#searchBox form input[type="text"]::placeholder {
  color: #333;
}
#searchBox form input[type="submit"] {
  -webkit-appearance: none;
  background: var(--co-main) url("../images/search_icon.svg") no-repeat center/2rem;
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1em;
  flex: 0 0 auto;
  margin: 0;
  padding: 0.5em;
  text-decoration: none;
  width: 4.5rem;
  height: 4.5rem;
}
#searchBox form input[type="submit"]:hover, #searchBox form input[type="submit"]:focus {
  outline: none;
}
#searchBox form input[type="submit"]::-moz-foucus-inner {
  border: none;
  padding: 0;
}
@media screen and (max-width: 1440px) {
  #searchBox {
    right: 2.5%;
  }
}
@media screen and (max-width: 1280px) {
  #searchBox {
    position: initial;
    bottom: 0;
    right: 0;
  }
  #searchBox form input[type="search"] {
    width: 100%;
  }
}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  #searchBox {
    border: none;
    border-radius: 0;
    max-width: none;
    padding: 0;
  }
  #searchBox form {
    display: block;
  }
  #searchBox form p {
    font-size: .8rem;
    margin: 0;
  }
  #searchBox form div {
    background: #fff;
    border: 2px solid var(--co-main);
    border-radius: 3rem;
    padding: .5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #searchBox form input[type="text"] {}
}
/*---------------------------------
  スクロールすると表示されるヘッダー
---------------------------------*/
.header-navFixed {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  position: fixed;
  top: -8.7rem;
  transition: top .5s;
  width: 100%;
}
#js-header.is-show {
  top: 0;
}
.header-navFixed .global-navigation {
  align-items: center;
}
.header-navFixed .global-navigation .logo {
  padding: 1rem 2rem;
  width: 28rem;
}
.header-navFixed .global-navigation .logo img {}
.header-navFixed .global-navigation ul.main {
  border-left: 1px solid #ccc;
  margin: 0;
  flex: 1 0 auto;
}
.header-navFixed .global-navigation ul.main li {
  border-right: 1px solid #ccc;
  flex-basis: calc(100%/5);
  margin: 0;
}
.header-navFixed .global-navigation ul.main li.pcNone {
  display: none;
}
.header-navFixed .global-navigation ul.main li a {
  padding: 2.8rem 1.5rem;
  text-align: center;
}
.header-navFixed .global-navigation ul.sub {
  padding: .5rem;
}
.header-navFixed .global-navigation ul.sub li {
  margin-left: .5rem;
}
@media screen and (max-width: 1440px) {
  .header-navFixed .global-navigation .logo {
    width: 23rem;
  }
  .header-navFixed .global-navigation ul.main li a {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1280px) {
  .header-navFixed .global-navigation .logo {
    width: 19rem;
  }
  .header-navFixed .global-navigation ul.main li a {
    font-size: 1.6rem;
    padding: 2.2rem 0;
  }
  .header-navFixed .global-navigation ul.sub li a span._icon {
    margin-bottom: .2rem;
    width: 2rem;
    height: 2rem;
  }
}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {}
/*---------------------------------
  トグルメニュー（ipadサイズから）
---------------------------------*/
@media screen and (max-width: 1280px) {
  .header-navFixed {
    display: none;
  }
  body.body-open {
    height: 100%;
    overflow: hidden;
  }
  #content {
    transition: all 0.6s;
  }
  .content-open {
    transform: translateX(-45rem);
  }
  header {
    position: fixed;
    top: 2rem;
  }
  header .wrap {
    background: none;
    box-shadow: none;
  }
  header .wrap #logo {
    margin: 0;
  }
  .navToggle {
    background: var(--co-main);
    color: #fff;
    cursor: pointer;
    position: fixed;
    top: 5px;
    right: 5px;
    z-index: 100;
    display: block;
    width: 6rem;
    height: 6rem;
    -moz-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    text-align: center;
  }
  .navToggle::after {
    content: 'MENU';
    font-size: 1rem;
    line-height: 1;
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    margin: auto;
  }
  .navToggle span {
    background: #fff;
    display: block;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    width: 30px;
    height: 2px;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .navToggle span:nth-of-type(1) {
    top: 10px;
  }
  .navToggle span:nth-of-type(2) {
    top: 20px;
  }
  .navToggle span:nth-of-type(3) {
    top: 30px;
  }
  .navToggle.active::after {
    content: 'CLOSE';
  }
  .navToggle.active span:nth-of-type(1) {
    display: none;
  }
  .navToggle.active span:nth-of-type(2) {
    -moz-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 20px;
    right: 0;
  }
  .navToggle.active span:nth-of-type(3) {
    -moz-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: 20px;
    right: 0;
  }
  header .wrap .overlay {
    background: rgba(188, 127, 187, 0.7);
    -webkit-backdrop-filter: blur(10px); /* ぼかしエフェクト */
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh);
    display: none;
    z-index: 1;
  }
  header .wrap .overlay.active {
    display: block;
    animation-name: fade-in;
    animation-duration: .5s;
  }
  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp.panelactive {
    transform: translate(0);
    right: 0;
  }
  nav.globalMenuSp {
    background: #fff;
    position: fixed;
    z-index: 99;
    top: 0;
    right: 0%;
    max-width: 45rem;
    width: 100%;
    height: calc(100vh);
    transform: translate(45rem);
    transition: all 0.6s;
    padding: 8rem 2.5% 10rem;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #gnav {
    font-size: 1.1em;
  }
  .global-navigation {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .content-open {
    transform: translateX(-30rem);
  }
  nav.globalMenuSp {
    max-width: 30rem;
    transform: translate(30rem);
  }
}
/*---------------------------------

  その他：ページ共通

---------------------------------*/
/* 画像 */
figure img {
  max-width: 100%;
  vertical-align: bottom;
}
/*　ボタン　*/
.btn {
  max-width: 30rem;
  width: 100%;
}
.btn a {
  border: 1px solid var(--co-main);
  border-radius: .5rem;
  color: var(--co-main);
  display: block;
  font-weight: 500;
  padding: 1.5rem 2rem;
}
.btn a span {
  background: url("../images/arr_n_p.svg") no-repeat center right / 1.5rem;
  display: block;
}
.btn a:hover {
  background-color: var(--co-main);
  color: #fff;
}
.btn a:hover span {
  background-image: url("../images/arr_next.svg");
}
@media screen and (max-width: 480px) {}
/*---------------------------------
	inview
---------------------------------*/
.fadeIn {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s, transform .8s;
}
.fadeIn.is-show {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .5s;
}
/*.fadeIn.is-show:nth-child(2) {
  transition-delay: .4s;
}
.fadeIn.is-show:nth-child(3) {
  transition-delay: .8s;
}
.fadeIn.is-show:nth-child(4) {
  transition-delay: 1.2s;
}
.fadeIn.is-show:nth-child(5) {
  transition-delay: 1.6s;
}
.fadeIn.is-show:nth-child(6) {
  transition-delay: 2s;
}*/
/*---------------------------------

	contact

---------------------------------*/
#contact {
  background: #f0f0eb;
  font: var(--maru-go);
  position: relative;
}
#contact .contentBox {
  position: absolute;
  top: 5rem;
  right: 0;
}
#contact .contentBox h2 {
  color: var(--co-main);
  font-weight: 900;
  font-size: 17rem;
  line-height: .8;
  letter-spacing: .1em;
  opacity: .7;
  padding-left: 8rem;
  text-transform: uppercase;
}
#contact .contentBox .__inner {
  background: var(--co-main);
  border-radius: 12rem 0 0 12rem;
  color: #fff;
  padding: 6rem;
}
#contact .contentBox .__inner p {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: 5rem;
  text-align: center;
}
#contact .contentBox .__inner .wrap {
  display: flex;
}
#contact .contentBox .__inner .wrap ._box {
  flex-basis: 50%;
  padding: 2rem;
  text-align: center;
}
#contact .contentBox .__inner .wrap ._box dt {
  font-size: 1.15em;
  font-weight: 700;
}
#contact .contentBox .__inner .wrap ._box dt ._icon {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
  margin: 0 auto 2rem;
  width: 6rem;
  height: 6rem;
}
#contact .contentBox .__inner .wrap ._box dd {
  margin: 2rem auto 0;
}
#contact .contentBox .__inner .wrap ._box._tel dt ._icon {
  background-image: url("../images/i_tel.svg");
}
#contact .contentBox .__inner .wrap ._box._tel dd {
  font-size: 1.4em;
  font-weight: 900;
}
#contact .contentBox .__inner .wrap ._box._tel dd span {
  font-size: 1.5em;
  letter-spacing: .1em;
}
#contact .contentBox .__inner .wrap ._box._mail {
  border-left: 1px solid;
}
#contact .contentBox .__inner .wrap ._box._mail dt ._icon {
  background-image: url("../images/i_mail.svg");
}
#contact .contentBox .__inner .wrap ._box._mail dd.btn {
  max-width: 28rem;
}
#contact .contentBox .__inner .wrap ._box._mail dd.btn a {
  border-color: #fff;
  color: #fff;
  text-align: left;
}
#contact .contentBox .__inner .wrap ._box._mail dd.btn a span {
  background-image: url("../images/arr_next.svg");
}
#contact .contentBox .__inner .wrap ._box._mail dd.btn a:hover {
  background-color: #fff;
  color: var(--co-main);
}
#contact .contentBox .__inner .wrap ._box._mail dd.btn a:hover span {
  background-image: url("../images/arr_n_p.svg");
}
#contact .bg_img {
  background: url("../images/contact_bg.jpg") no-repeat center/cover;
  border-radius: 0 10rem 0 0;
  width: 80%;
  height: 57rem;
}
@media screen and (max-width: 1280px) {
  #contact .contentBox h2 {
    font-size: 14rem;
    padding-left: 8rem;
  }
  #contact .contentBox .__inner {
    border-radius: 10rem 0 0 10rem;
    padding: 5rem 1rem;
  }
  #contact .contentBox .__inner p {
    font-size: 3rem;
    margin-bottom: 3rem;
  }
  #contact .bg_img {
    height: 50rem;
  }
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  #contact .contentBox h2 {
    font-size: 10rem;
  }
  #contact .contentBox .__inner .wrap ._box._tel dd {
    font-size: 1.1em;
  }
  #contact .contentBox .__inner .wrap ._box._tel dd span {
    font-size: 1.4em;
  }
}
@media screen and (max-width: 480px) {
  #contact {
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(240, 240, 235, 1) 100%);
    margin-bottom: -8rem;
    padding: 5rem 0 0;
    padding-left: 5%;
  }
  #contact .contentBox {
    position: relative;
    top: 0;
    z-index: 1;
  }
  #contact .contentBox h2 {
    font-size: 6rem;
    padding-left: 0;
    text-align: right;
  }
  #contact .contentBox .__inner {
    border-radius: 5rem 0 0 5rem;
    padding: 3rem 1rem;
  }
  #contact .contentBox .__inner p {
    font-size: 2.3rem;
    margin-bottom: 2rem;
  }
  #contact .contentBox .__inner .wrap {
    display: block;
  }
  #contact .contentBox .__inner .wrap ._box._tel dd {
    margin-top: 0;
  }
  #contact .contentBox .__inner .wrap ._box._tel dd span {
    font-size: 1.5em;
  }
  #contact .contentBox .__inner .wrap ._box._mail {
    border-top: 1px dotted;
    border-left: none;
  }
  #contact .bg_img {
    border-radius: 0 5rem 0 0;
    width: 90%;
    height: 30rem;
    position: absolute;
    top: 0;
    left: 0;
  }
}
/*---------------------------------

	footer

---------------------------------*/
footer {
  background: #fff;
  font-weight: 500;
  padding-top: 5rem;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  max-width: var(--width);
  padding: 10rem 0;
  width: 90%;
}
footer .wrap .infoTxt {
  flex-basis: 40%;
}
footer .wrap .infoTxt .logo {
  max-width: 32rem;
}
footer .wrap .infoTxt .logo img {
  width: 100%;
  vertical-align: bottom;
}
footer .wrap .infoTxt address {
  font-style: normal;
  font-size: .9em;
  margin: 2rem 0 3rem;
}
footer .wrap .infoTxt .acBtn {}
footer .wrap .infoTxt .acBtn a {
  background: var(--co-main);
  border-radius: 5rem;
  color: #fff;
  display: inline-block;
  padding: 1rem 2rem;
}
footer .wrap .infoTxt .acBtn a span {
  background: url("../images/i_access.svg") no-repeat left center/2rem;
  display: block;
  font-size: .8em;
  padding-left: 2.3rem;
  text-transform: uppercase;
}
footer .wrap .infoTxt .acBtn a:hover {
  background: var(--co-sub01);
}
/* 右コンテンツ */
footer .wrap .contentsBox {
  flex-basis: 50%;
  font-size: 0.9em;
}
footer .wrap .contentsBox .linkList {
  display: flex;
  justify-content: space-between;
  list-style: none;
}
footer .wrap .contentsBox .linkList li {}
footer .wrap .contentsBox .linkList li a {
  color: #333;
  display: block;
  font: var(--maru-go);
  font-weight: 700;
  position: relative;
  padding-left: 4rem;
}
footer .wrap .contentsBox .linkList li a::before {
  background: var(--co-main) url("../images/arr_next.svg") no-repeat center/1.2rem;
  border-radius: 50%;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3rem;
  height: 3rem;
}
footer .wrap .contentsBox .linkList li a:hover {
  color: var(--co-main);
  opacity: 1;
}
/* copylight */
footer .copylight {
  color: #666;
  margin-top: 3rem;
  text-align: right;
}
footer .copylight small {
  font-size: 0.8em;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1024px) {
  footer .wrap {
    padding: 7rem 0;
  }
  footer .wrap .infoTxt .logo {
    max-width: 30rem;
  }
  footer .wrap .infoTxt address {
    font-size: 0.86em;
  }
  footer .wrap .contentsBox .linkList li a span {
    background-size: 3.5rem;
    padding-left: 7rem;
  }
}
@media screen and (max-width: 896px) {
  footer {
    padding: 4rem 0;
    text-align: center;
  }
  footer .wrap {
    display: block;
  }
  footer .wrap .contentsBox .linkList {
    margin-top: 3rem;
    justify-content: center;
  }
  footer .wrap .contentsBox .linkList li {
    margin: 0 2rem;
  }
  footer .wrap .contentsBox .linkList li a {
    font-size: 1em;
  }
  footer .copylight {
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  footer .wrap {
    padding: 10rem 0 3rem;
  }
  footer .wrap .contentsBox .linkList {
    margin: 2rem auto 0;
    max-width: fit-content;
    display: block;
  }
  footer .wrap .contentsBox .linkList li {
    margin: 2rem 0;
    text-align: left;
  }
}
/*---------------------------------

	pagetop

---------------------------------*/
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}
#page-top a {
  background: var(--co-main);
  text-decoration: none;
  color: #fff;
  width: 50px;
  height: 50px;
  text-align: center;
  display: block;
  border-radius: 50%;
  position: relative;
}
#page-top a .arrow {
  display: block;
}
#page-top a .arrow::before {
  content: '';
  width: 10px;
  height: 6px;
  background: url("../images/pagetop_arrow.svg") no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all .3s;
}
#page-top a:hover {
  text-decoration: none;
  background: var(--co-sub02);
  opacity: 1;
}
#page-top a:hover .arrow::before {
  top: -10px;
}