  @charset "utf-8";

/*--------------------------------------------
header
--------------------------------------------*/
.l-header {
  width: 92.941%;
  max-width: 1264px;
  height: 64px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  position: fixed;
  top: 30px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 100;
}
/**** tab ****/
@media only screen and (max-width:1200px) {
  .l-header {
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
    top: 0;
    left: 0;
  }
}

.l-header__inner {
  width: 68.038%;
  height: 100%;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
  border-radius: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3% 0 4%;
  box-shadow: 1px 1px 10px 0px rgba(0,0,0,0.1);
  
}
/**** tab ****/
@media only screen and (max-width:1200px) {
  .l-header__inner {
    background: rgba(255,255,255,1);
    backdrop-filter: none;
    width: 100%;
    height: 13.33vw;
    border-radius: 0;
    padding: 0 5.833vw 0 4.444vw;
    box-shadow: none;
  }
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-header__inner {
    background: rgba(255,255,255,1);
    backdrop-filter: none;
    width: 100%;
    height: 16.666vw;
    border-radius: 0;
    padding: 0 5.833vw 0 4.444vw;
    box-shadow: none;
  }
}

/* logo */
.l-header__inner__logo a {
  display: flex;
  align-items: center;
  width: 169px;
}
/**** tab ****/
@media only screen and (max-width:1200px) {
  .l-header__inner__logo a {
    width: 35vw;
  }
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-header__inner__logo a {
    width: 47.222vw;
  }
}

/* nav */
.l-header__inner__nav {
  width: fit-content;
  display: flex;
  gap: 0 20px;
}

.l-header__inner__nav li {
  cursor: pointer;
  position: relative;
}

.l-header__inner__nav__en {
  display: block;
  font-size: 17px;
  font-family: "Familjen Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.l-header__inner__nav__jp {
  display: block;
  font-size: 10px;
  margin-top: 6px;
  letter-spacing: 0;
}

/* nav content */
.l-header__inner__nav__content {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  padding-top: 30px;
}

.l-header__inner__nav__content__inner {
  border-radius: 8px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  box-shadow: 1px 1px 10px 0px rgba(0,0,0,0.1);
  padding: 24px 20px;
  display: flex;
  flex-flow: column;
  gap: 10px 0;
}

.l-header__inner__nav__content__inner::before {
  content: "";
  background: url(/freshers/assets/images/nav_content_arrow.svg) no-repeat;
  background-size: cover;
  width: 8px;
  height: 8px;
  opacity: 0.8;
  position: absolute;
  top: -8px;
  left: 22px;
}

.l-header__inner__nav__content a {
  font-size: 15px;
  line-height: 1.5em;
  white-space: nowrap;
}

.l-header__inner__nav li:hover .l-header__inner__nav__en,
.l-header__inner__nav li:hover .l-header__inner__nav__jp,
.l-header__inner__nav__content a:hover {
  color: #000F95;
  transition-duration: 0.2s;
}

/* header btn */
.l-header__btn {
  box-shadow: 1px 1px 10px 0px rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
  width: 14.686%;
  height: 100%;
  border-radius: 35px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000F95;
  font-family: "Familjen Grotesk", sans-serif;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
}
/**** tab ****/
@media only screen and (max-width:1200px) {
  .l-header__btn {
    box-shadow: none;
    width: 35vw;
    height: 10vw;
    border-radius: 0 0 0 2.222vw;
    margin-left: auto;
    font-size: 3.333vw;
  }

  .l-header__btn:nth-of-type(1) {
    border-radius: 0;
  }
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-header__btn {
    box-shadow: none;
    width: 37.222vw;
    height: 12.777vw;
    border-radius: 0 0 0 2.222vw;
    margin-left: auto;
    font-size: 3.333vw;
  }
}

.l-header__btn a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 35px;
  color: #fff;
  background: #2868d2;
}
/**** tab ****/
@media only screen and (max-width:1200px) {
  .l-header__btn a {
    border-radius: 0;
    color: #fff;
    background: #2868d2;
  }
}

/* sp nav open¥Ü¥¿¥ó */
.l-header__inner__spnav_open {
  width: 11.111vw;
  height: 8.333vw;
  position: relative;
  cursor: pointer;
}

.l-header__inner__spnav_open::before {
  content: "";
  width: 100%;
  height: 0.2775vw;
  background: #000;
  position: absolute;
  top: 3.055vw;
  left: 0;
}

.l-header__inner__spnav_open::after {
  content: "";
  width: 42.5%;
  height: 0.2775vw;
  background: #000;
  position: absolute;
  bottom: 3.055vw;
  left: 0;
}


/*--------------------------------------------
sp nav
--------------------------------------------*/
.l-sp_nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow-y: auto;
  z-index: 200;
  padding-bottom: 16.666vw;
}

/* close¥Ü¥¿¥ó */
.l-sp_nav__spnav_close {
  width: 5.555vw;
  height: 5.555vw;
  position: absolute;
  top: 5.555vw;
  right: 5.555vw;
  cursor: pointer;
}

.l-sp_nav__spnav_close::before {
  content: "";
  width: 7.856vw;
  height: 0.277vw;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
}

.l-sp_nav__spnav_close::after {
  content: "";
  width: 7.856vw;
  height: 0.277vw;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(-45deg);
}

.l-sp_nav__btn {
  width: 95.555vw;
  background: #F7F7F7;
  margin: 2.222vw auto 0 auto;
  border-radius: 1.111vw;
  position: relative;
  cursor: pointer;
  padding: 7.8vw 6.666vw 9.4vw 6.666vw;
}
/**** tb ****/
@media only screen and (max-width:1200px) {
  .l-sp_nav__btn {
    padding: 4.8vw 6.666vw 6.4vw 6.666vw;
  }
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-sp_nav__btn {
    padding: 7.8vw 6.666vw 9.4vw 6.666vw;
  }
}

.l-sp_nav__btn::after {
  content: "";
  background: url(/freshers/assets/images/ic_arrow_bottom.svg) no-repeat;
  background-size: 2.4vw;
  background-position: top 13.555vw right 6.666vw;
  width: 100%;
  height: 29.722vw;
  position: absolute;
  top: 0;
  left: 0;
}
/**** tb ****/
@media only screen and (max-width:1200px) {
  .l-sp_nav__btn::after {
    background-position: top 11.555vw right 6.666vw;
  }
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-sp_nav__btn::after {
    background-position: top 13.555vw right 6.666vw;
  }
}

/* -current */
.l-sp_nav__btn.-current::after {
  background-position: top 14.555vw left 6.666vw;
  transform: rotate(180deg);
}
/**** tb ****/
@media only screen and (max-width:1200px) {
  .l-sp_nav__btn.-current::after {
    background-position: top 16.555vw left 6.666vw;
  }
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-sp_nav__btn.-current::after {
    background-position: top 14.555vw left 6.666vw;
  }
}

.l-sp_nav__btn.-top {
  margin-top: 16.666vw;
}

.l-sp_nav__btn__en {
  display: block;
  font-family: "Familjen Grotesk", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 6.666vw;
}

.l-sp_nav__btn__jp {
  display: block;
  font-size: 3.611vw;
  margin-top: 2vw;
}

.l-sp_nav__btn__content {
  display: none;
  padding-top: 4.666vw;
}

.l-sp_nav__btn__content a {
  display: block;
  font-size: 4.444vw;
  line-height: 1.6em;
  margin-top: 2vw;
  padding-left: 9.333vw;
}

.l-sp_nav__btn__content__sp {
  position: relative;
}

.l-sp_nav__btn__content__sp.-no_01::before  {
  content: "01";
  font-size: 3.611vw;
  position: absolute;
  left: 0;
  top: 0;
}

.l-sp_nav__btn__content__sp.-no_02::before  {
  content: "02";
  font-size: 3.611vw;
  position: absolute;
  left: 0;
  top: 0;
}

.l-sp_nav__btn__content__sp.-no_03::before  {
  content: "03";
  font-size: 3.611vw;
  position: absolute;
  left: 0;
  top: 0;
}


/*--------------------------------------------
wrap
--------------------------------------------*/
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-wrap {
    padding-top: 16.666vw;
  }
}


/*--------------------------------------------
¥Ú©`¥¸ÄÚ¥ê¥ó¥¯¤ÎÎ»ÖÃÕ{Õû
--------------------------------------------*/
.l-anchor {
  display: block;
  position: relative;
  visibility: hidden;
  top: -94px;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-anchor {
    top: -16.666vw;
  }
}

/*--------------------------------------------
main bg
--------------------------------------------*/
.l-main_bg {
  position: relative;
}

.l-main_bg__inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.l-main_bg__inner__bg {
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  left: 0;
  background-size: 100%;
  background-repeat: repeat-y;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-main_bg__inner__bg {
    height: calc(100vh - 16.666vw);
    top: 16.666vw;
  }
}

.l-main_bg__inner__bg.-gray {
  background-image: url(/freshers/assets/images/bg_gray.jpg);
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-main_bg__inner__bg.-gray {
    background-image: url(/freshers/assets/images/bg_gray_sp.jpg);
  }
}

.l-main_bg__inner__bg.-gray_dark {
  background-image: url(/freshers/assets/images/bg_gray_dark.jpg);
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-main_bg__inner__bg.-gray_dark {
    background-image: url(/freshers/assets/images/bg_gray_dark_sp.jpg);
  }
}

.l-main_bg.-padding_bottom {
  padding-bottom: 200px;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-main_bg.-padding_bottom {
    padding-bottom: 26.666vw;
  }
}


/*--------------------------------------------
Recommended Contents Ð´Õæver
--------------------------------------------*/
.l-recommended {
  padding: 96px 0 184px 0;
  background-image: url(/freshers/assets/images/bg_gray.jpg);
  background-size: 100%;
  background-repeat: repeat-y;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-recommended {
    background-image: url(/freshers/assets/images/bg_gray_sp.jpg);
    padding: 13.333vw 0 24.444vw 0;
  }
}

.l-recommended__heading {
  display: block;
  text-align: center;
  font-family: "Familjen Grotesk", sans-serif;
  letter-spacing: 0;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.2em;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-recommended__heading {
    font-size: 6.666vw;
  }
}

.l-recommended__inner {
  display: flex;
  margin: 39px auto 0 auto;
  max-width: 1184px;
  width: 88.235%;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-recommended__inner {
    margin: 8.888vw auto 0 auto;
    flex-flow: column;
    gap: 4.444vw;
    max-width: none;
    width: 91.111vw;
  }
}

.l-recommended__inner.-max_1 {
  justify-content: center;
}

.l-recommended__inner.-max_2 {
  justify-content: space-between;
}

.l-recommended__inner__ph {
  display: block;
  width: 49.324%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-recommended__inner__ph {
    width: 100%;
    border-radius: 2.777vw;
  }
}

.l-recommended__inner__ph img {
  display: block;
  transition-duration: 0.3s;
}

.l-recommended__inner__ph:hover img {
  transform: scale(1.1,1.1);
  transition-duration: 0.3s;
}

.l-recommended__inner__ph__title {
  position: absolute;
  top: 19px;
  right: 32px;
  z-index: 1;
  font-family: "Familjen Grotesk", sans-serif;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 2em;
  color: #fff;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-recommended__inner__ph__title {
    top: 3.444vw;
    right: 4.444vw;
    font-size: 3.611vw;
  }
}

.l-recommended__inner__ph__txt {
  position: absolute;
  bottom: 40px;
  left: 0;
  padding: 0 5.27%;
  z-index: 1;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-recommended__inner__ph__txt {
    bottom: 5.555vw;
    padding: 0 4.444vw;
  }
}

.l-recommended__inner__ph__txt__01 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.8em;
  color: #fff;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-recommended__inner__ph__txt__01 {
    font-size: 4.722vw;
  }
}

.l-recommended__inner__ph__txt__02 {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8em;
  color: #fff;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-recommended__inner__ph__txt__02 {
    font-size: 2.777vw;
  }
}


/*--------------------------------------------
Recommended Contents ±³¾°ver
--------------------------------------------*/
.l-recommended_bg {
  padding: 100px 0 144px 0;
  background-image: url(/freshers/assets/images/bg_navy_dark.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-recommended_bg {
    background-image: url(/freshers/assets/images/bg_navy_dark_sp.jpg);
    padding: 13.333vw 0 24.444vw 0;
  }
}

.l-recommended_bg.-gray {
  background-image: url(/freshers/assets/images/bg_gray.jpg);
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-recommended_bg.-gray {
    background-image: url(/freshers/assets/images/bg_gray_dark_sp.jpg);
  }
}

.l-recommended_bg__heading {
  display: block;
  text-align: center;
  font-family: "Familjen Grotesk", sans-serif;
  letter-spacing: 0;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.2em;
  color: #fff;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-recommended_bg__heading {
    font-size: 6.666vw;
  }
}

.l-recommended_bg.-gray .l-recommended_bg__heading {
  color: #000;
}

.l-recommended_bg__btn {
  max-width: 1184px;
  width: 87.058%;
  margin: 35px auto 0 auto;
  display: flex;
  gap: 0 1.351%;
  justify-content: center;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-recommended_bg__btn {
    max-width: none;
    flex-flow: column;
    width: 91.111vw;
    margin: 11.111vw auto 0 auto;
    gap: 4.444vw 0;
  }
}

.l-recommended_bg__btn.-max_1 li {
  width: 100%;
  max-width: 584px;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-recommended_bg__btn.-max_1 li {
    max-width: none;
  }
}

.l-recommended_bg__btn.-max_2 li {
  width: 49.324%;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-recommended_bg__btn.-max_2 li {
    width: 100%;
  }
}

.l-recommended_bg__btn li a {
  display: flex;
  align-items: center;
  background: #fff;
  max-width: 584px;
  height: 119px;
  border-radius: 4px;
  font-size: 20px;
  font-weight: 700;
  padding-left: 48px;
  position: relative;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-recommended_bg__btn li a {
    max-width: none;
    width: 91.111vw;
    height: 19.166vw;
    border-radius: 1.111vw;
    font-size: 4.166vw;
    padding-left: 5.555vw;
  }
}

.l-recommended_bg.-gray .l-recommended_bg__btn li a {
  background: #000F95;
  color: #fff;
}

.l-recommended_bg__btn li a::after {
  content: "";
  background: url(/freshers/assets/images/ic_arrow.svg) no-repeat;
  background-size: cover;
  width: 9px;
  height: 15px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-recommended_bg__btn li a::after {
    width: 1.405vw;
    height: 2.419vw;
    right: 3.888vw;
  }
}

.l-recommended_bg.-gray .l-recommended_bg__btn li a::after {
  background: url(/freshers/assets/images/ic_arrow_w.svg) no-repeat;
  background-size: cover;
}


/*--------------------------------------------
footer
--------------------------------------------*/
.l-footer_bg {
  background-image: url(/freshers/assets/images/footer_bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.l-footer {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  width: 88.235%;
  margin: 0 auto;
  padding-top: 88px;
}
/**** tb ****/
@media only screen and (max-width:1200px) {
  .l-footer {
    flex-direction: column;
  }
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-footer {
    align-items: center;
    max-width: none;
    gap: 8vw;
    padding: 13.33vw 0 10.67vw;
  }
}

.l-footer__logo {
  width: 240px;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-footer__logo {
    width: 51.18vw;
  }
}

.l-footer__inner {
  max-width: 840px;
  gap: 64px 0;
  width: 75%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding-bottom: 190px;
}
/**** tb ****/
@media only screen and (max-width:1200px) {
  .l-footer__inner {
    margin-top: 40px;
    max-width: none;
    gap: 40px 0;
    width: 100%;
    padding-bottom: 140px;
  }
}

/* width */
.l-footer__inner__nav.-sp {
  width: 45.714%;
}

.l-footer__inner__nav.-abo {
  width: 21.428%;
  margin-left: 5.714%;
}

.l-footer__inner__nav.-job {
  width: 21.428%;
  margin-left: 5.714%;
}

.l-footer__inner__nav.-env {
  width: 21.428%;
}

.l-footer__inner__nav.-rec {
  width: 21.428%;
  margin-left: 5.714%;
}

.l-footer__inner__nav.-cor {
  position: absolute;
  bottom: 30px;
  right: 0;
  width: 28.751%;
}

.l-footer__inner__nav__heading {
  border-bottom: solid 1px #fff;
  padding-bottom: 10px;
  margin-bottom: 12px;
}

.l-footer__inner__nav__heading__en {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.272em;
  color: #fff;
  letter-spacing: 0;
}

.l-footer__inner__nav__heading__jp {
  display: block;
  font-size: 10px;
  line-height: 1.5em;
  color: #fff;
}

.l-footer__inner__nav.-cor .l-footer__inner__nav__heading__jp {
  width: 100%;
  font-size: 13px;
}

.l-footer__inner__nav__list li a {
  display: inline-block;
  font-size: 13px;
  line-height: 1.461em;
  color: #fff;
  padding: 4px 0;
}

.l-footer__inner__nav__heading a:hover,
.l-footer__inner__nav__list li a:hover  {
  opacity: 0.7;
  transition-duration: 0.2s;
}

.l-footer__inner__sp__content {
  display: flex;
}

.l-footer__inner__sp__content a {
  font-size: 3.47vw;
  line-height: 1;
  color: #fff;
  margin: 0 2.67vw;
  position: relative;
}
.l-footer__inner__sp__content a:not(:nth-last-of-type(1))::after {
  content: "";
  width: 1px;
  height: 1em;
  background: #fff;
  position: absolute;
  top: 0;
  right: -2.67vw;
  pointer-events: none;
}


/*--------------------------------------------
pagetop
--------------------------------------------*/
.l-pagetop {
	position: fixed;
	right: 4px;
	opacity: 0;
  width: 38px;
  height: 38px;
  cursor: pointer;
  z-index: 10;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-pagetop {
    width: 10.555vw;
    height: 10.555vw;
  }
}

.l-pagetop.l-upmove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.l-pagetop.l-downmove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(100px);
  }
}


/*--------------------------------------------
mypage
--------------------------------------------*/
.l-mypage {
  background: rgba(255,255,255,0.95);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 87px 0;
  z-index: 1000;
  display: none;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-mypage {
    gap: 13.333vw 0;
  }
}

.l-mypage__heading {
  font-size: 50px;
  line-height: 1.5em;
  font-family: "Familjen Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-mypage__heading {
    font-size: 8.888vw;
  }
}

.l-mypage__btn {
  display: flex;
  justify-content: space-between; /* ¥Ü¥¿¥ó2¤Ä */
  /* justify-content: center; ¥Ü¥¿¥ó1¤Ä */
  max-width: 720px;
  width: 88%;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-mypage__btn {
    flex-flow: column;
    gap: 4.166vw 0;
    max-width: none;
    width: 91.111vw;
  }
}

.l-mypage__btn li {
  width: 46.666%;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-mypage__btn li {
    width: 100%;
  }
}

.l-mypage__btn li a {
  width: 100%;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  line-height: 1.5em;
  font-weight: 500;
  border-radius: 4px;
  padding: 1em;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-mypage__btn li a {
    height: 24.444vw;
    font-size: 4.166vw;
    border-radius: 1.111vw;
  }
}

.l-mypage__btn li:first-child a {
  background: #0035C3;
}

.l-mypage__btn li:last-child a {
  background: #000F95;
}

.l-mypage__close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-mypage__close {
    top: 5.555vw;
    right: 5.555vw;
    width: 5.555vw;
    height: 5.555vw;
  }
}

.l-mypage__close::before {
  content: "";
  width: 44px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-mypage__close::before {
    width: 7.854vw;
    height: 0.277vw;
  }
}

.l-mypage__close::after {
  content: "";
  width: 44px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(-45deg);
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-mypage__close::after {
    width: 7.854vw;
    height: 0.277vw;
  }
}


/*--------------------------------------------
copyright
--------------------------------------------*/
.l-copyright {
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 10px;
  font-family: "Familjen Grotesk", sans-serif;
  font-weight: 400;
  padding: 12px 0;
}
/**** sp ****/
@media only screen and (max-width:750px) {
  .l-copyright {
    font-size: 2.777vw;
    padding: 2.777vw 0;
  }
}


/*--------------------------------------------
not scroll
--------------------------------------------*/
body.l-body-fixed {
  position: fixed;
  width: 100%;
}