/* --------------- variables --------------------- */
/* Break Point */
h2.title {
  font-weight: 400;
  color: #333;
  border-bottom: 2px solid #D9D9D9;
  position: relative;
}
h2.title:before {
  content: "";
  display: inline-block;
  background-color: #D3CBCB;
  width: 9px;
  height: 9px;
  position: absolute;
  left: 0;
  top: 11px;
  border-radius: 50%;
}
h2.title:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: -4px;
}

aside {
  line-height: 1.3;
}
aside .sideTitle {
  font-weight: 700;
  margin: 0;
}
aside .sideMenuWrap {
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  border: 3px solid #FFFFFF;
}
aside .sideMenuWrap .sideMenuTitle {
  margin: 0;
  font-weight: 700;
}
aside .sideMenuWrap .sideMenu a {
  font-weight: 500;
  position: relative;
  margin-left: 20px;
}
aside .sideMenuWrap .sideMenu a::before {
  content: "";
  display: inline-block;
  background: url(../images/common/icon_play.svg) no-repeat center/cover;
  width: 18px;
  height: 18px;
  position: absolute;
  left: -25px;
  top: calc(50% - 8px);
  transition: 0.3s;
}
aside .recruitBtn {
  border: 3px solid #fff;
  background: #6FD0E5;
  background: linear-gradient(90deg, #36254E 0%, #36254E 50%, rgb(111, 208, 229) 5%, rgb(211, 170, 213) 75%, rgb(244, 82, 44) 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  line-height: 1;
  font-weight: 700;
  width: 100%;
  font-family: "Outfit", sans-serif;
}
aside .youtubeBtn {
  border: 2px solid #001374;
  background: linear-gradient(90deg, rgb(111, 208, 229) 0%, rgb(211, 170, 213) 25%, rgb(244, 82, 44) 50%, #fff 50%, #fff 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
  font-weight: 700;
  color: #4F3D6A;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  line-height: 1;
  font-weight: 700;
  width: 100%;
  font-family: "Outfit", sans-serif;
}

.wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  color: #36254E;
}
.wp-pagenavi .page, .wp-pagenavi .extend, .wp-pagenavi .last, .wp-pagenavi .first {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #00294D;
  text-decoration: none;
  position: relative;
  font-weight: 700;
  transition: 0.3s;
  border-radius: 50%;
}
.wp-pagenavi span.current {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: normal;
  position: relative;
  color: #fff;
  background-color: #36254E;
  border-radius: 50%;
  font-weight: 700;
}
.wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
  display: none;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  font-weight: 500;
}
.breadcrumb a {
  text-decoration: none;
}
.breadcrumb > span {
  display: inline-block;
  position: relative;
  color: #B2B2B2;
}

.ymdTag {
  display: flex;
}

.postH1 {
  font-weight: 700;
}

.postMainImg {
  position: relative;
}
.postMainImg:after {
  content: "";
  display: block;
  background-image: url(../images/home/3.webp);
  aspect-ratio: 146/133;
  background-size: 100% auto;
  width: 146px;
  position: absolute;
  bottom: -9%;
  right: -9%;
}

.articleWrap {
  background-color: #fff;
  border-radius: 17px;
}
.articleWrap h2 {
  font-weight: 700;
  position: relative;
}
.articleWrap p {
  font-weight: 500;
}
.backBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  position: relative;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.03);
  font-weight: 700;
  margin: 0 auto;
  overflow: hidden;
}
.backBtn span {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  #contents {
    padding-top: 50px;
    padding-bottom: 80px;
  }
  #col2Wrap {
    padding: 0 40px;
  }
  #col2Wrap h2.title {
    width: calc(100% + 50px);
    transform: translateX(-25px);
  }
  h2.title {
    font-size: 18px;
    padding-left: 22px;
    padding-bottom: 18px;
    margin-bottom: 30px;
  }
  h2.title:before {
    top: 6px;
  }
  aside {
    margin-top: 50px;
  }
  aside .sideTitle {
    font-size: 14px;
  }
  aside * + .sideTitle {
    margin-top: 24px;
  }
  aside .sideMenuWrap {
    margin-top: 12px;
    border-radius: 14px;
    padding: 23px 20px;
  }
  aside .sideMenuWrap .sideMenuTitle {
    font-size: 14px;
  }
  aside .sideMenuWrap * + .sideMenuTitle {
    margin-top: 28px;
  }
  aside .sideMenuWrap .sideMenu {
    margin-top: 12px;
    padding-left: 1em;
  }
  aside .sideMenuWrap .sideMenu li + li {
    margin-top: 12px;
  }
  aside .sideMenuWrap .sideMenu a::before {
    content: "";
    display: inline-block;
    background: url(../images/common/icon_play.svg) no-repeat center/cover;
    width: 18px;
    height: 18px;
    position: absolute;
    left: -25px;
    top: calc(50% - 8px);
    transition: 0.3s;
  }
  aside .recruitBtn {
    margin-top: 12px;
    font-size: 25px;
    min-height: 148px;
  }
  aside .recruitBtn[target=_blank] span::after {
    content: "";
    display: inline-block;
    background: url(../images/common/icon_blank_w.svg) no-repeat center/cover;
    width: 15px;
    height: 13px;
    position: absolute;
    right: 0px;
    top: calc(50% - 6px);
  }
  aside .recruitBtn span {
    display: inline-block;
    padding: 0 30px;
    position: relative;
  }
  aside .youtubeBtn {
    margin-top: 12px;
    font-size: 22px;
    min-height: 60px;
  }
  aside .youtubeBtn[target=_blank] span::after {
    content: "";
    display: inline-block;
    background: url(../images/common/icon_blank_b.svg) no-repeat center/cover;
    width: 15px;
    height: 13px;
    position: absolute;
    right: 0px;
    top: calc(50% - 6px);
  }
  aside .youtubeBtn span {
    display: inline-block;
    padding: 0 30px;
    position: relative;
  }
  .wp-pagenavi {
    margin-top: 50px;
    font-size: 15px;
  }
  .wp-pagenavi .page, .wp-pagenavi .extend, .wp-pagenavi .last, .wp-pagenavi .first {
    margin: 0 10px;
    width: 36px;
    height: 36px;
  }
  .wp-pagenavi span.current {
    width: 36px;
    height: 36px;
    margin: 0 10px;
  }
  .wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
    display: none;
  }
  .breadcrumb {
    padding-bottom: 20px;
  }
  .breadcrumb > span {
    font-size: 10px;
  }
  .breadcrumb > span:not(:last-of-type)::after {
    content: "/";
    margin: 0 10px;
  }
  .ymdTag .ymd {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 13px;
    margin-right: 15px;
    display: inline-block;
  }
  .ymdTag .tagList li {
    display: inline-block;
    background-color: #F7EDF4;
    font-size: 10px;
    font-weight: 700;
    position: relative;
    line-height: 1;
    padding: 6px 14px 6px 24px;
    margin-right: 7px;
    border-radius: 16px;
  }
  .ymdTag .tagList li:before {
    content: "";
    width: 7px;
    height: 7px;
    background-color: #36254E;
    border-radius: 50%;
    position: absolute;
    left: 8px;
    top: calc(50% - 3px);
  }
  .postH1 {
    margin-top: 13px;
    font-size: 15px;
  }
  .postMainImg {
    margin: 20px auto 0;
    border: 5px solid #fff;
    border-radius: 14px;
  }
  .postMainImg:after {
    width: 20vw;
  }
  .postMainImg img {
    border-radius: 14px;
  }
  .articleWrap {
    padding: 34px 20px 20px;
    margin-top: 40px;
  }
  .articleWrap .profileWrap {
    margin-bottom: 40px;
  }
  .articleWrap .profileWrap figure {
    margin: 0;
    text-align: center;
  }
  .articleWrap .profileWrap figure img {
    border-radius: 50%;
    max-width: 154px;
  }
  .articleWrap .profileWrap .textWrap {
    background-color: #F2FAFD;
    padding: 20px 30px;
    margin: 20px 0 0;
  }
  .articleWrap .profileWrap .textWrap .name {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
  }
  .articleWrap .profileWrap .textWrap .text {
    font-weight: 500;
    font-size: 13px;
    margin: 10px 0 0;
  }
  .articleWrap h2 {
    padding-left: 16px;
    font-size: 15px;
  }
  .articleWrap h2:before {
    content: "";
    width: 9px;
    height: 9px;
    display: inline-block;
    background-color: #D3CBCB;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 4px;
  }
  .articleWrap * + h2 {
    margin: 30px 0 0;
  }
  .articleWrap p {
    font-size: 13px;
  }
  .articleWrap * + p {
    margin: 20px 0 0;
  }
  .articleWrap figure img {
    border-radius: 13px;
  }
  .articleWrap * + figure {
    margin: 20px 0 0;
  }
  .articleWrap .twoCol {
    margin: 20px 0 0;
  }
  .articleWrap .twoCol .text {
    font-size: 13px;
    font-weight: 500;
  }
  .articleWrap + .btnWrap {
    margin-top: 40px;
  }
  .backBtn {
    width: 220px;
    height: 72px;
    font-size: 15px;
    border-radius: 52px;
    padding: 10px 40px 10px 70px;
    background: linear-gradient(90deg, rgb(111, 208, 229) 0%, rgb(211, 170, 213) 25%, rgb(244, 82, 44) 50%, #fff 50%, #fff 100%);
    background-size: 200% 100%;
    background-position: 100% 0;
  }
  .backBtn:before {
    content: "";
    display: inline-block;
    width: 58px;
    height: 58px;
    background-image: url(../images/common/arrow_w.svg);
    background-repeat: no-repeat;
    background-size: 15px 16px;
    background-color: #36254E;
    background-position: center;
    transform: scale(-1, 1);
    border-radius: 50%;
    position: absolute;
    left: 7px;
    top: calc(50% - 29px);
    z-index: 2;
  }
}
@media print, screen and (min-width: 769px) {
  #contents {
    padding-top: 50px;
    padding-bottom: 88px;
  }
  #col2Wrap {
    display: flex;
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    gap: 26px;
  }
  #col2Wrap main, #col2Wrap .mainColumn {
    width: calc(68% - 13px);
  }
  #col2Wrap aside {
    width: calc(32% - 13px);
    padding-top: 65px;
  }
  h2.title {
    font-size: 25px;
    padding-left: 26px;
    padding-bottom: 18px;
    margin-bottom: 35px;
  }
  aside .sideBar {
    position: sticky;
    top: 110px;
    padding-bottom: 100px;
  }
  aside .sideTitle {
    font-size: 14px;
  }
  aside * + .sideTitle {
    margin-top: 24px;
  }
  aside .sideMenuWrap {
    margin-top: 12px;
    border-radius: 14px;
    padding: 23px 20px;
  }
  aside .sideMenuWrap .sideMenuTitle {
    font-size: 14px;
  }
  aside .sideMenuWrap * + .sideMenuTitle {
    margin-top: 28px;
  }
  aside .sideMenuWrap .sideMenu {
    margin-top: 12px;
    padding-left: 1em;
  }
  aside .sideMenuWrap .sideMenu li + li {
    margin-top: 12px;
  }
  aside .sideMenuWrap .sideMenu a:hover {
    text-decoration: underline;
  }
  aside .sideMenuWrap .sideMenu a::before {
    content: "";
    display: inline-block;
    background: url(../images/common/icon_play.svg) no-repeat center/cover;
    width: 18px;
    height: 18px;
    position: absolute;
    left: -25px;
    top: calc(50% - 8px);
    transition: 0.3s;
  }
  aside .recruitBtn {
    margin-top: 12px;
    font-size: 25px;
    min-height: 148px;
    transition: 0.3s;
  }
  aside .recruitBtn[target=_blank] span::after {
    content: "";
    display: inline-block;
    background: url(../images/common/icon_blank_w.svg) no-repeat center/cover;
    width: 15px;
    height: 13px;
    position: absolute;
    right: 0px;
    top: calc(50% - 6px);
  }
  aside .recruitBtn span {
    display: inline-block;
    padding: 0 30px;
    position: relative;
  }
  aside .recruitBtn:hover {
    background-position: 0 0;
  }
  aside .youtubeBtn {
    margin-top: 12px;
    font-size: 22px;
    min-height: 60px;
    transition: 0.3s;
  }
  aside .youtubeBtn[target=_blank] span::after {
    content: "";
    display: inline-block;
    background: url(../images/common/icon_blank_b.svg) no-repeat center/cover;
    width: 15px;
    height: 13px;
    position: absolute;
    right: 0px;
    top: calc(50% - 6px);
    transition: 0.3s;
  }
  aside .youtubeBtn span {
    display: inline-block;
    padding: 0 30px;
    position: relative;
  }
  aside .youtubeBtn:hover {
    background-position: 0 0;
    color: #fff;
  }
  aside .youtubeBtn:hover[target=_blank] span::after {
    background-image: url(../images/common/icon_blank_w.svg);
  }
  .wp-pagenavi {
    margin-top: 70px;
    font-size: 15px;
  }
  .wp-pagenavi .page, .wp-pagenavi .extend, .wp-pagenavi .last, .wp-pagenavi .first {
    margin: 0 10px;
    width: 36px;
    height: 36px;
  }
  .wp-pagenavi .page:hover, .wp-pagenavi .extend:hover, .wp-pagenavi .last:hover, .wp-pagenavi .first:hover {
    color: #fff;
    background-color: #36254E;
  }
  .wp-pagenavi span.current {
    width: 36px;
    height: 36px;
    margin: 0 10px;
  }
  .wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
    display: none;
  }
  .breadcrumb {
    padding-bottom: 40px;
  }
  .breadcrumb > span {
    font-size: 14px;
  }
  .breadcrumb > span:not(:last-of-type)::after {
    content: "/";
    margin: 0 20px;
  }
  .ymdTag .ymd {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 17px;
    margin-right: 15px;
    display: inline-block;
  }
  .ymdTag .tagList li {
    display: inline-block;
    background-color: #F7EDF4;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    line-height: 1;
    padding: 8px 22px 8px 30px;
    margin-right: 7px;
    border-radius: 16px;
  }
  .ymdTag .tagList li:before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #36254E;
    border-radius: 50%;
    position: absolute;
    left: 10px;
    top: calc(50% - 5px);
  }
  .postH1 {
    margin-top: 20px;
    font-size: 30px;
    letter-spacing: 0.1em;
  }
  .postMainImg {
    margin: 30px auto 0;
    border: 5px solid #fff;
    max-width: calc(100% - 110px);
    border-radius: 25px;
  }
  .postMainImg img {
    border-radius: 25px;
  }
  .articleWrap {
    padding: 92px 56px 70px;
    margin-top: 45px;
  }
  .articleWrap .profileWrap {
    display: flex;
    gap: 44px;
    padding: 0 20px;
    margin-bottom: 70px;
  }
  .articleWrap .profileWrap figure {
    margin: 0;
  }
  .articleWrap .profileWrap figure img {
    border-radius: 50%;
  }
  .articleWrap .profileWrap .textWrap {
    background-color: #F2FAFD;
    padding: 26px 40px;
  }
  .articleWrap .profileWrap .textWrap .name {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
  }
  .articleWrap .profileWrap .textWrap .text {
    font-weight: 500;
    font-size: 15px;
    margin: 10px 0 0;
  }
  .articleWrap h2 {
    padding-left: 26px;
    font-size: 20px;
  }
  .articleWrap h2:before {
    content: "";
    width: 9px;
    height: 9px;
    display: inline-block;
    background-color: #D3CBCB;
    border-radius: 50%;
    position: absolute;
    left: 3px;
    top: 7px;
  }
  .articleWrap * + h2 {
    margin: 50px 0 0;
  }
  .articleWrap p {
    font-size: 15px;
  }
  .articleWrap * + p {
    margin: 30px 0 0;
  }
  .articleWrap figure img {
    border-radius: 25px;
  }
  .articleWrap * + figure {
    margin: 30px 0 0;
  }
  .articleWrap .twoCol {
    display: flex;
    gap: 34px;
    margin: 30px 0 0;
  }
  .articleWrap .twoCol .text {
    width: calc(53% - 17px);
    font-weight: 500;
  }
  .articleWrap .twoCol figure {
    width: calc(47% - 17px);
    margin: 0;
  }
  .articleWrap + .btnWrap {
    margin-top: 120px;
  }
  .backBtn {
    width: 220px;
    height: 72px;
    font-size: 15px;
    border-radius: 52px;
    padding: 10px 40px 10px 70px;
    transition: 0.3s;
    background: linear-gradient(90deg, rgb(111, 208, 229) 0%, rgb(211, 170, 213) 25%, rgb(244, 82, 44) 50%, #fff 50%, #fff 100%);
    background-size: 200% 100%;
    background-position: 100% 0;
  }
  .backBtn:before {
    content: "";
    display: inline-block;
    width: 58px;
    height: 58px;
    background-image: url(../images/common/arrow_w.svg);
    background-repeat: no-repeat;
    background-size: 15px 16px;
    background-color: #36254E;
    background-position: center;
    transform: scale(-1, 1);
    border-radius: 50%;
    position: absolute;
    left: 7px;
    top: calc(50% - 29px);
    z-index: 2;
  }
  .backBtn:hover {
    color: #fff;
    background-position: 0 0;
  }
  .backBtn:hover:before {
    background-image: url(../images/common/arrow_p.svg);
    background-color: #fff;
  }
}
@media screen and (min-width: 769px) and (max-width: 768px) {
  aside .sideMenuWrap .sideMenu a::before {
    content: "";
    display: inline-block;
    background: url(../images/common/icon_play.svg) no-repeat center/cover;
    width: 18px;
    height: 18px;
    position: absolute;
    left: -25px;
    top: calc(50% - 8px);
    transition: 0.3s;
  }
  .wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
    display: none;
  }
}
/*# sourceMappingURL=map/second.css.map */
