@charset "UTF-8";
/*====================================================================================
■00.ContentPAGE
 ├ _01_1 layout
 |             1-1. #l-pageHeader
 └ _01_2 ***
■02.page-news
 ├ _04_1 common
 ├ _04_2 list
 └ _04_3 detail
■03.page-development
 ├ _04_1 common
 ├ _04_2 list
 └ _04_3 detail
■04.page-tab

■**.page-***
 ├ _**_1 common
 ├ _**_2 list
 └ _**_3 detail


====================================================================================*/
/*====================================================================================
■00.Content PAGE
====================================================================================*/
/* -----------------------------------------------
/* 1-2.  .l-header
-------------------------------------------------- */
.l-header {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0C0B3A;
}

.l-header .header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  max-width: 1030px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.logo {
  position: absolute;
  top: 13px;
  left: 15px;
}

.logo h1,
.logo .site-logo-heading {
  line-height: 1;
}

.logo .sub {
  display: inline-block;
  line-height: 1.6rem;
}
.logo .logo__lnk {
  font-size: 1.0rem;
  font-weight: 700;
  color: #fff;
}
.logo .logo__lnk img {
  max-width: 40%;
}

.telHeader {
  text-align: right;
  line-height: 1;
  margin-top: 30px;
}

[class*="telHeader__"] {
  display: block;
}

.telHeader__num {
  font-weight: 700;
  font-size: 1.8rem;
  font-family: 'Roboto', sans-serif;
}

.telHeader__num .fa {
  font-size: 1.4rem;
}

.telHeader__txt {
  margin-top: 3px;
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  .telHeader__lnk {
    pointer-events: none;
  }
}

@media (min-width: 1025px) {
  .l-header {
    height: 70px;
    margin: 0 auto;
  }
  .logo {
    position: static;
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: auto;
    left: auto;
    margin-left: 0;
    margin-right: auto;
    width: 34%;
  }
  .logo .logo__lnk {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
  }
  .logo .logo__lnk img {
    max-width: 40%;
    margin-bottom: 3px;
  }
  .logo .sub {
    line-height: 1.8rem;
  }
  .telHeader {
    margin-top: 0;
    margin-bottom: 23px;
  }
}
/* -----------------------------------------------
/* 1-4.  .l-nav
-------------------------------------------------- */
.nax_sub .l-nav {
  position: fixed;
  right: 0;
  top: 60px;
  width: 100%;
  bottom: 0;
  visibility: hidden;
}
.nax_main .l-nav {
  display: none;
}
@media (min-width: 1025px) {
  .l-nav {
    position: static;
    height: 100%;
  }
  .nax_main .l-nav {
    display: block;
  }
  .nax_sub .l-nav {
    top: 70px;
  }
}
/* 1-4-1. .globalNav
-------------------------------------------------- */
.globalNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-justify-content: flex-end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}

.globalNav__content {
    -webkit-perspective: 500px;
    perspective: 500px;
    width: 100%;
}

.globalNav__bg {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    cursor: pointer;
}

/* gNav sNav */
.nax_sub .gNav__lnk--item, .nax_sub .gNav__txt--item, .nax_sub .sNav__lnk--item, .nax_sub .sNav__txt--item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 45px;
    position: relative;
    font-weight: 700;
    padding-left: 15px;
    color: #111;
}

.nax_sub .gNav__txt--item::before, .nax_sub .sNav__txt--item::before {
    content: "\e61a";
    font-family: 'themify';
    font-size: 1.1rem;
    height: 45px;
    width: 45px;
    background-color: #f5f5f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
}

.nax_sub .gNav__txt--item.is-active::before, .nax_sub .sNav__txt--item.is-active::before {
    content: "\e622";
}

/* gNav */
.gNav {
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    padding: 30px;
    width: 100%;
    height: 100%;
}

.flgSp .gNav, .flgTab .gNav {
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
}

.gNav__item {
    line-height: 1;
    border-top: 1px solid #e5e6e6;
}

.gNav__item:last-child {
    margin-right: 0;
}

.gNav__lnk--item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    text-decoration: none;
}

@media (min-width: 375px) {
    .nax_sub .gNav {
        -webkit-transform: rotateY(-10deg);
        transform: rotateY(-10deg);
        -webkit-transform-origin: right;
        transform-origin: right;
    }
}

@media (min-width: 375px) and (max-width: 575px) {
    .nax_sub .globalNav__content {
        width: calc(100% - 120px);
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .nax_sub .globalNav__content {
        width: calc(100% - 240px);
    }
}

@media (min-width: 768px) {
    .nax_sub .gNav {
        padding: 40px 12.5%;
    }
    .nax_sub .globalNav__content {
        width: 45%;
    }
}

.gNav__item .navlist {
  padding-left: 30px;
  position: relative;
}

.gNav__item .pro {
  color: #000177;
}

.gNav__item .experience {
  color: #E91065;
}

.gNav__item .hobby {
  color: #008001
	}

.gNav__item .hobby {
  color: #008001;
}

.gNav__item .marriage {
  color: #008C8C;
}

.gNav__item .freetime {
  color: #B65F24;
}

.gNav__item .pro:before,
.gNav__item .experience:before,
.gNav__item .hobby:before,
.gNav__item .marriage:before,
.gNav__item .freetime:before {
  color: inherit;
}

.menu_close p {
  justify-content: center;
  cursor: pointer;
}

/*
nax_main
-------------------------------------------------- */
.nax_main .globalNav {
  position: static;
  height: 100%;
}
.nax_main .globalNav__content {
  -webkit-perspective: none;
  perspective: none;
}
.nax_main .globalNav__bg {
  display: none;
}
.nax_main .gNav {
  background-color: #0C0B3A;
  opacity: 1;
  visibility: visible;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 0;
  -webkit-transform: none !important;
  transform: none !important;
}
.nax_main .gNav__item {
  margin-right: 30px;
  font-size: 1.4rem;
  padding: 0;
  height: auto;
  display: block;
  border: none;
}
.nax_main .gNav__lnk--item, .nax_main .gNav__txt--item {
  padding: 0 0 30px 0;
  position: relative;
  height: auto;
  -webkit-transition: color .2s;
  transition: color .2s;
  color: #fff;
}
.nax_main .gNav__lnk--item::after, .gNav__txt--item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #0578a7;
  -webkit-transition: .2s;
  transition: .2s;
}
.nax_main .gNav__item.is-active .gNav__lnk--item::after, .gNav__item.is-active .gNav__txt--item::after {
  width: 100%;
}
.nax_main .gNav__item.is-active > .gNav__lnk--item, .gNav__item.is-active > .gNav__txt--item {
  color: #0578a7;
}
.nax_main .gNav__txt--item::before {
  display: none;
}


/* sNav */
.subNav, .subNav--child {
    display: none;
}

.subNav {
    background-color: #f5f5f5;
}

.subNav--child {
    background-color: #dedede;
}

.sNav__item {
    border-top: 1px solid #e5e6e6;
}

.sNav__txt--item, .sNav__lnk--item {
    position: relative;
    padding-left: 30px;
}

.sNav__item--child .sNav__lnk--item {
    padding-left: 45px;
}

.sNav__txt--item::before {
    background-color: #dedede;
}

.sNav__item--child:not(:first-child) {
    border-top: 1px solid #fff;
}

/* -----------------------------------------------
/* 1-5.  .l-mark
-------------------------------------------------- */
.l-mark {
  position: absolute;
  width: 49px;
  height: 70px;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  font-size: 24px;
  text-decoration: none;
  vertical-align: middle;
  display: flex;
  flex-direction: column;
  justify-content: center;
  top: -5px;
  right: 5px;
  transition: 0.3s;
}
@media (min-width: 1025px) {
  .l-mark {
    top: 0;
    position: relative;
    margin-right: -49px;
  }
}
/* 1-5-1. .mark
-------------------------------------------------- */
.mark {
  /* margin-top: 5px; */
  padding: 7px 0 5px;
  border: 1px solid #fff;
}

.mark > * {
  position: relative;
  text-decoration: none;
}

.mark > i {
  will-change: transform;
}

.markMenu {
  width: 100%;
  height: 1.8rem;
  position: relative;
}

.markMenu .markMenu__middle {
  transition: opacity .25s;
  opacity: 1;
}

.markMenu__middle,
.markMenu__top,
.markMenu__bottom {
  transition-duration: .4s;
  transition-timing-function: cubic-bezier(0.25, 0.74, 0.22, 0.99);
}

.mark.is-active .markMenu .markMenu__middle,
.mark.is-active .markMenu .markMenu__top,
.mark.is-active .markMenu .markMenu__bottom {
  background-color: #fff;
}

.mark.is-active .markMenu .markMenu__middle {
  transition: opacity .25s;
  opacity: 0;
}

.mark.is-active .markMenu .markMenu__top {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
  -ms-transform: rotate(45deg) translate(5px, 5px);
  transform: rotate(45deg) translate(5px, 5px);
}

.mark.is-active .markMenu .markMenu__bottom {
  -webkit-transform: rotate(-45deg) translate(5px, -5px);
  -ms-transform: rotate(-45deg) translate(5px, -5px);
  transform: rotate(-45deg) translate(5px, -5px);
}

.markMenu__middle,
.markMenu__top,
.markMenu__bottom {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -12px;
  width: 24px;
  height: 2px;
  background-color: #fff;
}

.markMenu__middle {
  transition: 0.3s;
  margin-top: -2px;
}
.markMenu__top {
  margin-top: -9px;
}
.markMenu__bottom {
  margin-top: 5px;
}
.markMenu__txt {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -14px;
  color: #fff;
  margin-top: 12px;
  font-size: 0.7rem;
}

/* Accessible navigation controls: preserve the existing visual treatment. */
button.gNav__txt--item,
button.gNav__lnk--item {
  width: 100%;
  margin: 0;
  text-align: left;
  font: inherit;
}

.gNav__txt--item:focus-visible,
.gNav__lnk--item:focus-visible,
.markMenu:focus-visible {
  outline: 3px solid #f3c95f;
  outline-offset: 3px;
}

.l-mark.is-fixed .markMenu__middle,
.l-mark.is-fixed .markMenu__top,
.l-mark.is-fixed .markMenu__bottom {
  background-color: #111;
}

/* -----------------------------------------------
/* 1-8.  body.is-fix #l-***
-------------------------------------------------- */
body.is-fix .l-nav {
  visibility: visible;
}
body.is-fix .l-nav.nax_sub {
  display: block;
}
body.is-fix .globalNav__bg {
  opacity: 1;
}

body.is-fix .nax_sub .gNav {
  opacity: 1;
  visibility: visible;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
}

@media (min-width: 1025px) {
  body.is-fix .l-main {
    margin-top: 0;
  }

  body.is-fix .l-header {
    position: fixed;
  }

  /*
  body.is-fix .gNav {
    overflow: visible;
  }
  */
}
/* -----------------------------------------------
/* 1-9.  .l-loader
-------------------------------------------------- */
.l-loader {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: #f8f8f8;
}



/* -----------------------------------------------
/* _01_1 layout
-------------------------------------------------- */
/* 1-1. #l-pageHeader
-------------------------------------------------- */
.pageHeader {
  height: 120px;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  align-items: center;
  /*justify-content: center;*/
  padding-top: 60px;
}

@media (min-width: 768px) {
  .pageHeader {
    height: 160px;
    padding-top: 70px;
  }
}
/* 1-2. ttl-content
-------------------------------------------------- */
.ttl-content {
  color: #5b5b5b;
  padding-bottom: 5px;
  margin-bottom: 20px;
  border-bottom: solid 2px #243763;
}
/* 1-3. article_footer
-------------------------------------------------- */
.article_footer {
  border: solid 5px #243763;
  padding: 3px;
  margin-bottom: 20px;
}
.article_footer .row {
  border: solid 1px #243763;
}
.article_footer .article_img {
  display: none;
}
.article_footer .article_box {
  margin: 30px 10px 30px 10px;
}
.article_footer .article_box .list {
  margin-left: 5px;
}
.article_footer .article_box li a {
  color: #243763;
  position: relative;
  padding-left: 10px;
	font-size: 16px;
}
.article_footer .article_box li a:hover {
  text-decoration: underline;
}
.article_footer .article_box li a::before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border: solid 3px transparent;
  border-left: solid 5px #243763;
  top: 50%;
  left: 0;
  margin-top: -4px;
}
@media (min-width: 768px) {
  .article_footer .article_img {
    display: block;
  }
}

/*====================================================================================
■02.side
====================================================================================*/
/* 2-1. proffesional
-------------------------------------------------- */
#side .proffesional {
  margin-bottom: 15px;
}
#side .proffesional .banner-r {
  border: solid 1px #bc2646;
}
#side .proffesional .banner-r .title {
  background-color: #bc2646;
  color: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#side .proffesional .banner-r .box {
  padding: 10px 15px;
  font-size: 1.3rem;
  line-height: 1.8rem;
  letter-spacing: -.1rem;
}
#side .proffesional .banner-r .box .btn {
  background-color: #bc2646;
  color: #fff;
  padding: 2px 10px;
  margin-top: 10px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  text-align: center;
  font-size: 1.2rem;
}
#side .proffesional .list {
  border-left: solid 1px #bc2646;
  border-right: solid 1px #bc2646;
  border-bottom: solid 1px #bc2646;
  padding: 10px;
}
#side .proffesional .list li a {
  color: #bc2646;
  position: relative;
  padding-left: 10px;
}
#side .proffesional .list li a:hover {
  text-decoration: underline;
}
#side .proffesional .list li a::before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border: solid 3px transparent;
  border-left: solid 5px #bc2646;
  top: 50%;
  left: 0;
  margin-top: -4px;
}
/* 2-2. oneday
-------------------------------------------------- */
#side .oneday {
  margin-bottom: 15px;
}
#side .oneday a {
  background-image: url(../images/course-b-bg.jpg);
  background-size: 100%;
  padding: 4% 0;
  text-align: center;
  display: block;
}
#side .oneday .title {
  background-color: #fff;
  display: inline-block;
  padding: 6px 4px 5px 4px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  color: #bc2646;
}
#side .oneday .title span {
  display: inline-block;
  border: solid 2px #34a4a8;
  padding: 8px 20px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}
/* 2-3. hoby
-------------------------------------------------- */
#side .hoby {
  margin-bottom: 15px;
}
#side .hoby .banner-g {
  border: solid 1px #007323;
}
#side .hoby .banner-g .title {
  background-color: #007323;
  color: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#side .hoby .banner-g .box {
  padding: 10px 15px;
  font-size: 1.3rem;
  line-height: 1.8rem;
  letter-spacing: -.1rem;
}
#side .hoby .banner-g .box .btn {
  background-color: #007323;
  color: #fff;
  padding: 2px 10px;
  margin-top: 10px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  text-align: center;
  font-size: 1.2rem;
}
/* 2-4. other
-------------------------------------------------- */
#side .other {
  margin-bottom: 15px;
}
#side .other .ttl-other {
  border-bottom: solid 2px #243763;
  margin-bottom: 5px;
  padding-bottom: 2px;
}
#side .other .list {
  margin-left: 5px;
}
#side .other .list li a {
  position: relative;
  padding-left: 10px;
}
#side .other .list li a:hover {
  text-decoration: underline;
}
#side .other .list li:nth-child(1) a { color: #853fa9; }
#side .other .list li:nth-child(2) a { color: #c52069; }
#side .other .list li:nth-child(3) a { color: #468aa2; }
#side .other .list li:nth-child(4) a { color: #f145ba; }
#side .other .list li:nth-child(5) a { color: #f2c115; }
#side .other .list li a::before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border: solid 3px transparent;
  top: 50%;
  left: 0;
  margin-top: -4px;
}
#side .other .list li:nth-child(1) a::before { border-left: solid 5px #853fa9; }
#side .other .list li:nth-child(2) a::before { border-left: solid 5px #c52069; }
#side .other .list li:nth-child(3) a::before { border-left: solid 5px #468aa2; }
#side .other .list li:nth-child(4) a::before { border-left: solid 5px #f145ba; }
#side .other .list li:nth-child(5) a::before { border-left: solid 5px #f2c115; }
/* 2-5. profile
-------------------------------------------------- */
#side .profile .ttl-profile {
  border-bottom: solid 2px #243763;
  margin-bottom: 5px;
  padding-bottom: 2px;
}
#side .profile .list {
  margin-left: 5px;
}
#side .profile .list li a {
  color: #243763;
  position: relative;
  padding-left: 10px;
}
#side .profile .list li a:hover {
  text-decoration: underline;
}
#side .profile .list li a::before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border: solid 3px transparent;
  border-left: solid 5px #243763;
  top: 50%;
  left: 0;
  margin-top: -4px;
}
/*====================================================================================
■03.profile
■04.feature
====================================================================================*/

.contactWrap .anchorlink {
  background-image: url(../common_img/course-bg-cc.gif);
  padding: 20px;
}
.contact_box {
  margin-bottom: 30px;
}
#profile01 {
  margin-top: 32px;
}

@media (min-width: 768px) {
  .contact_box {
    margin-bottom: 50px;
  }
  #profile01 {
    margin-top: 45px;
  }
}

.ttl-feature {
  background-color: #243763;
  color: #fff;
  padding: 5px 0 5px 10px;
  vertical-align: middle;
  border-radius: 25px 0px 0px 25px;
}
.ttl-feature::before {
  content: '●';
  color: #fff;
  margin-right: 8px;
}
.contact_box .btn {
  margin-top: 20px;
}
.supplement {
  margin: 0 10px;
  background-color: #e9ebef;
  padding: 15px;
  margin-top: 10px;
}


.profile_txtbox a{
  text-decoration: underline;
}
.profile_txtbox img{
  width: 50%;

  float: left;
  shape-outside: margin-box;
  border-radius: 0 0 50% 0;
}

#profile .contactWrap .anchorlink{
  padding: 20px;
}

@media (min-width: 768px) {/*PC*/
  #profile .contactWrap .anchorlink{
    background-image: url(../images/profile/profile_anchorlink_illust.webp),url(../common_img/course-bg-cc.gif);
    background-repeat: no-repeat,repeat;
    background-position: left top,top;
    background-size: contain,auto;
    padding-left: 170px;
  }
}

/*# sourceMappingURL=content.css.map */

/*====================================================================================
子ページ　header　スライダーメニュー
====================================================================================*/

#slider_content {
  display: none;
}

body.is-fix .nax_sub .gNav {
  margin-top: 0 !important;
  padding: 10px 12.5% 40px;
}

.slider {
  width: 90%;
}

.slick-slide a {
  display: block;
  border: 1px solid #ccc;
  text-decoration: none;
}

.slick-slide:first-child a {
  border-right: none;
}

.slick-slide:last-child a {
  border-left: none;
}

.slick-slide:nth-child(3) a {
  border-right: none;
  border-left: none;
}

.slick-slide p {
  width: 100%;
  height: 55px;
  background: #fff;
  font-size: 12px;
  color: #000;
  line-height: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mypattern {
  width: 100%;
}

.slick-prev {
  left: 10px !important;
}

.slick-next {
  right: 10px !important;
}

.slick-prev,
.slick-next {
  z-index: 100 !important;
  width: auto !important;
  height: auto !important;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0 !important;
}

.slick-prev:before,
.slick-next:before {
  font-size: 20px;
  font-weight: 500;
  background: rgba(179, 190, 218, 0.6) !important;
  padding: 12px 5px 17px;
  border-radius: 10px;
}

.slick-next:before {
  content: '>' !important;
  display: block;
}

.slick-prev:before {
  content: '<' !important;
  display: block;
}

body.is-fix .nax_sub .gNav {
  margin-top: 30px;
}

@media (max-width: 576px) {
  #slider_content {
  
    background: #fff;
  }

  body.is-fix .nax_sub .gNav {
    margin-top: 30px !important;
    padding: 40px 12.5%;
  }
}

/* ========================================================================== 
   Header menu alignment and mobile menu scrolling
   ========================================================================== */
.nax_sub .globalNav,
.nax_sub .globalNav__content {
  height: 100%;
  min-height: 0;
}

body.is-fix .nax_sub .gNav {
  box-sizing: border-box;
  height: 100%;
  max-height: 100%;
  margin-top: 0 !important;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-bottom: calc(80px + env(safe-area-inset-bottom));
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 1024px) {
  .l-mark {
    top: 50%;
    height: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@media (min-width: 1025px) {
  .l-mark {
    align-self: center;
    top: auto;
    height: auto;
  }
}

/* Navigation controls: consistent text, +/- icons and MENU alignment. */
.nax_sub button.gNav__txt--item.js-subNavTrigger {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  font: inherit;
  opacity: 1;
  padding-right: 55px;
  visibility: visible;
  width: 100%;
}

/* Keep ordinary accordion rows visible while preserving course colors. */
.nax_sub button.gNav__txt--item.js-subNavTrigger {
  color: #111;
  font-weight: 700;
}

.nax_sub button.gNav__txt--item.js-subNavTrigger.pro { color: #000177; font-weight: 700; }
.nax_sub button.gNav__txt--item.js-subNavTrigger.experience { color: #E91065; font-weight: 700; }
.nax_sub button.gNav__txt--item.js-subNavTrigger.hobby { color: #008001; font-weight: 700; }
.nax_sub button.gNav__txt--item.js-subNavTrigger.marriage { color: #008C8C; font-weight: 700; }
.nax_sub button.gNav__txt--item.js-subNavTrigger.freetime { color: #B65F24; font-weight: 700; }

/* Rows without +/- are ordinary links and use regular weight. */
.nax_sub .gNav__lnk--item,
.nax_sub .sNav__lnk--item {
  font-weight: 400;
}

.nax_sub .gNav__txt--item,
.nax_sub .sNav__txt--item {
  font-weight: 700;
}

/* Keep the close control reachable at the bottom on every viewport. */
.nax_sub .menu_close {
  background-color: #fff;
  bottom: 0;
  display: block !important;
  flex: 0 0 auto;
  min-height: 45px;
  padding-bottom: env(safe-area-inset-bottom);
  position: sticky;
  visibility: visible !important;
  z-index: 5;
}

.nax_sub .menu_close > .gNav__lnk--item {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  border: 0;
  color: #111;
  display: flex !important;
  font-weight: 400;
  height: 45px;
  justify-content: center;
  margin: 0;
  opacity: 1;
  padding: 0 15px;
  visibility: visible !important;
  width: 100%;
}

.nax_sub button.gNav__txt--item.js-subNavTrigger::before {
  color: inherit;
  content: "+";
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 45px;
  opacity: 1;
  text-align: center;
  visibility: visible;
}

.nax_sub button.gNav__txt--item.js-subNavTrigger.is-active::before {
  content: "−";
}

.mark {
  height: 54px;
  padding: 0;
  width: 49px;
}

.markMenu {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  display: block;
  height: 54px;
  margin: 0;
  padding: 0;
  position: relative;
  width: 49px;
}

.markMenu__top,
.markMenu__middle,
.markMenu__bottom {
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
}

.markMenu__top { top: 10px; }
.markMenu__middle { top: 18px; }
.markMenu__bottom { top: 26px; }

.markMenu__txt {
  display: block;
  font-size: 10px;
  left: 0;
  line-height: 1;
  margin: 0;
  position: absolute;
  text-align: center;
  top: 34px;
  width: 100%;
}

.mark.is-active .markMenu .markMenu__top {
  top: 18px;
  transform: translateX(-50%) rotate(45deg);
}

.mark.is-active .markMenu .markMenu__bottom {
  top: 18px;
  transform: translateX(-50%) rotate(-45deg);
}

@media (max-width: 1024px) {
  .l-mark {
    height: 54px;
    right: 15px;
    width: 49px;
  }
}

/* Keep the menu close control visible in the actual browser viewport. */
body.is-fix .nax_sub .gNav {
  -webkit-transform: none !important;
  transform: none !important;
}

body.is-fix .nax_sub .menu_close {
  bottom: 0;
  box-sizing: border-box;
  left: auto;
  margin: 0;
  position: fixed;
  right: 0;
  width: 100%;
  z-index: 1001;
}

@media (min-width: 768px) {
  body.is-fix .nax_sub .menu_close {
    bottom: 70px;
  }
}
