@charset "UTF-8";
/*====================================================================================
■00.Object
 ├ _00_1 layout
 ├ _00_2 animation
 └ _00_3 OverLayerConfig
■01.page-index

====================================================================================*/
/*====================================================================================
■00.Object
====================================================================================*/
/* _00_1 layout
-------------------------------------------------------------------- */
/* _00_2 animation
-------------------------------------------------------------------- */
/* _00_3 OverLayerConfig
-------------------------------------------------------------------- */
/*====================================================================================
■01.page-index
====================================================================================*/
/* -----------------------------------------------
/* 1-2.  .l-header
-------------------------------------------------- */
.l-header {
  width: 50px;
  height: 60px;
  position: fixed;
  top: 0;
  /*left: 0;*/
  right: 0;
  /*bottom: 0;*/
}

/*
body.is-fix .l-header {
  background-color: #fff;
}
*/

.header__content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.logo {
  height: 100%;
}
.logo h1,
.logo .site-logo-heading {
  line-height: 1;
  height: 100%;
  display: flex;
  align-items: center;
}
.logo svg {
  width: 48px;
  height: 36px;
}

.logo__lnk {
  font-size: 2.4rem;
  font-weight: 700;
  display: block;
  height: 55%;
}

.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;
}
#top .active .markMenu__txt {
  color: #fff;
}

#top .active .markMenu__middle,
#top .active .markMenu__top,
#top .active .markMenu__bottom {
  background-color: #fff;
}
#top .mb50 {
  margin-bottom: 50px;
}
#top .dis_ib a {
  display: inline-block;
}

@media (min-width: 768px) {
  .telHeader__lnk {
    pointer-events: none;
  }
}
@media (min-width: 1025px) {
  .l-header {
    height: 110px;
    margin: 0 auto;
    transition: height 0.3s;
  }

  .gNav__sub {
    transition: opacity 0.3s;
  }

  .logo {
    position: static;
    height: 110px;
    display: flex;
    align-items: center;
    top: auto;
    left: auto;
    margin-left: 0;
    margin-right: auto;
    transition: height 0.3s;
  }
  .logo svg {
    width: 64px;
    height: 60px;
  }

  .telHeader {
    margin-top: 0;
    margin-bottom: 30px;
  }

  .l-header.is-fixed {
    height: 70px;
  }
  .l-header.is-fixed .gNav__sub {
    opacity: 0;
    height: 0;
  }
  .l-header.is-fixed .logo {
    height: 100%;
  }

  #top .g-header .l-header {
    height: 70px;
    width: 50px;
    box-sizing: border-box;
    margin-right: 0;
  }
  #top .header__content {
    width: 50px;
    height: 100%;
    box-sizing: border-box;
    margin-right: 0;
  }
}

/* 1-4-1. .globalNav
-------------------------------------------------- */
.globalNav {
  display: flex;
  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 */
.gNav__lnk--item,
.gNav__txt--item,
.sNav__lnk--item,
.sNav__txt--item {
  display: flex;
  align-items: center;
  height: 45px;
  position: relative;
  font-weight: 700;
  padding-left: 15px;
}

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

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

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

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

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

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

.gNav__lnk--item {
  display: flex;
  position: relative;
  text-decoration: none;
}

.gNav__sub {
  display: flex;
  order: 1;
  justify-content: flex-end;
  margin-top: 15px;
}

.gNav__item--sub + .gNav__item--sub {
  margin-left: 20px;
}

.gNav__lnk--item-sub {
  font-size: 1.2rem;
}

@media (min-width: 375px) {
  .gNav {
    -webkit-transform: rotateY(-10deg);
    transform: rotateY(-10deg);
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
  }
}
@media (min-width: 375px) and (max-width: 575px) {
  .globalNav__content {
    width: calc(100% - 120px);
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .globalNav__content {
    width: calc(100% - 240px);
  }
}
@media (min-width: 768px) {
  .gNav {
    padding: 40px 12.5%;
  }

  .globalNav__content {
    width: 45%;
  }
}

/* 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;
}

#top_index_header {
  width: 100%;
  background: #0C0B3A;
  position: fixed;
  height: 70px;
  z-index: 3;
}

#top_index_header .top_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: 50px;
  padding-left: 15px;
}

#top_index_header .top_header_content .logo {
  width: 34%;
  min-width: 300px;
  height: 100%;
  display: block;
}

#top_index_header .top_header_content .logo a {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;

}

#top_index_header .top_header_content .logo a dl {
  display: flex;
  padding: 17px 0;
}

#top_index_header .top_header_content .logo a dt {
  line-height: 1.3;
  margin-right: 4px;
}

#top_index_header .top_header_content .logo img {
  max-width: 136px;
  width: auto;
  margin-top: 3px;
}

#top_index_header .top_header_content nav {
  width: 66%;
}

#top_index_header .top_header_content nav ul {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#top_index_header .top_header_content nav li a {
  color: #fff;
  font-size: 1.4rem;
  padding: 25px 0;
  font-weight: 200;
}

@media (max-width: 1040px) {
  #top_index_header .top_header_content nav ul {
    display: none;
  }
}

@media (max-width: 600px) {
  #top_index_header .top_header_content .logo a dt {
    font-size: 10px;
    margin-top: 5px;
  }
}

/* -----------------------------------------------
/* 1-5.  .l-mark
-------------------------------------------------- */
.l-mark {
  position: absolute;
  width: 60px;
  height: 60px;
  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: 0;
  right: 0;
  transition: 0.3s;
  text-align: center;
}

/*@include media(ll) {
    .l-mark {
        display: none;
    }
}*/
/* 1-5-1. .mark
-------------------------------------------------- */

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

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

.markMenu {
  width: 100%;
  height: 0.7em;
  position: relative;
  text-align: center;
}

.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: #3c3c3c;
}

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

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

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

.markMenu__middle,
.markMenu__top,
.markMenu__bottom {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -25%;
  width: 50%;
  height: 2px;
  background-color: #fff;
}
@media (min-width: 768px) {
  .l-mark .markMenu__middle,
  .l-mark .markMenu__top,
  .l-mark .markMenu__bottom {
    background-color: #111;
  }
}

.markMenu__middle {
  transition: 0.3s;
  margin-top: -5%;
}
.markMenu__top {
  margin-top: -20%;
}
.markMenu__bottom {
  margin-top: 10%;
}
.markMenu__txt {
  font-size: 0.7rem;
  color: #fff;
}

/* 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;
}
@media (min-width: 768px) {
  .markMenu__txt {
    font-size: 0.7rem;
    color: #111;
  }
}

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


/* -----------------------------------------------------------------------------------
_00. common
----------------------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------------
_01. mainImg
----------------------------------------------------------------------------------- */
.mainImgWrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

.mainImg {
  overflow: hidden;
  width: 100%;
  /*height: 42vh;*/
  position: relative;
}

[class*="mainImg__img"] {
  width: 100%;
  display: none;
}

.mainTxt {
  font-weight: 500;
  font-size: 3.5rem;
  padding: 0 10px 30px;
  padding-top: 5%;
  max-width: 90%;
  margin: 70px auto 0;
  text-align: center;
  border: double 4px #000;
}
.mainTxt:before {
  content: "";
  background-image: url(../images/main_icon.png);
  display: block;
  width: 56px;
  height: 45px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 10px;
}

.mainTxt img {
  max-width: 427px;
  display: inline-block;
}

.mainTxt .red {
  color: #e04444;
}
.mainTxt .blue {
  color: #3562f6;
}
.mainTxt .green {
  color: #18A558;
}
.mainTxt .navy {
  color: #0B3D91;
}
.mainTxt .smokyblue {
  color: #0073E6;
}
.mainTxt .orange {
  color: #F26B1D;
}
.mainTxt .pinkred {
  color: #D63384;
}

.mainTxt .u-ff-noto_s:nth-child(1):after,
.mainTxt .u-ff-noto_s:nth-child(2):after{
  content: "×";
  display: block;
  line-height: 0.5;
  font-size: 2.0rem;
}
.mainImg-l img {
  width: 100%;
}
.mainTxt__lg {
  text-align: center;
  margin: 5% 3%;
  letter-spacing: 3px;
  line-height: 1.2;
}

.establishment{
color:#ff2c00;
font-size:1.3em;
letter-spacing:.03em;
text-shadow:
0 1px 1px rgba(0,0,0,.15);
}

@media (min-width: 768px) {
  .mainTxt {
    padding: 30px 0 30px 0;
    font-size: 5.4rem;
  }
  .mainTxt img {
    margin-left: 20px;
  }
  .mainImg-l {
    position: absolute;
  }
  .mainImg-l img {
    width: 100%;
    height: 62vh;
    object-fit: cover;
    object-position: 100% 100%;
  }
  .mainTxt-box {
    margin-left: 50%;
  }
  .mainTxt__lg {
    text-align: left;
    margin: 30px 30px;
  }

}
@media (min-width: 1130px) {
  .mainImgWrap {
    margin-bottom: 0;
  }
  .mainImg__img--768 {
    display: none;
  }
  .mainTxt {
    font-weight: 500;
    font-size: 5.5rem;
  }
  .mainTxt .u-ff-noto_s:nth-child(1):after,
  .mainTxt .u-ff-noto_s:nth-child(2):after{
    font-size: 3.8rem;
  }
  .mainImg-l img {
    height: 88vh;
  }
  .mainTxt__lg {
    font-size: 1.8rem;
    line-height: 1.7;
  }
}


.mainImg-l .mvslide .slick-dots{
  bottom: 20px;
}
.mainImg-l .mvslide .slick-dots li button:before{
  content: '●';
  font-size: 15px;
  color: #b9b9b9;
  opacity: .5;
}
.mainImg-l .mvslide .slick-dots li.slick-active button:before{
  color: #1e3260;
  opacity: 1;
}

.mainImg-l .mv_ttl{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}
.mainImg-l .mv_ttl img{height: auto;}


.g-footer .l-nav--footer small {
  text-align: center;
  display: block;
  padding-top: 10px;
}

/* -----------------------------------------------------------------------------------
_02. news
----------------------------------------------------------------------------------- */
.newsWrap {
  background-color: #1e3260;
  color: #fff;
  margin-bottom: 0;
}

.newsWrap .ttl-box {
  border-right: solid 2px #fff;
}

.newsWrap .ttl-box .ttl {
  padding-top: 5px;
  color: #fff;
}

.newsWrap .txt-box .row {
  margin-left: 20px;
  padding-bottom: 14px;
}

.newsWrap .txt-box dt {
  background-color: #fff;
  color: #1e3260;
  padding: 0 10px 0 20px;
  margin-right: 15px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  letter-spacing: 3px;
  font-size: 1.5rem;
}

.prg-s {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 138px;
  width: 100%;
}

/* -----------------------------------------------------------------------------------
_03. sec
----------------------------------------------------------------------------------- */
.secWrap {
  background-image: url(../images/cyoukin-bg.webp);
  background-position: center top;
  background-repeat: no-repeat;
  margin-bottom: 45px;
}

.secWrap .l-container {
  padding-top: 54px;
}

.secWrap .sec_ttl-img {
  width: 80%;
  margin: 0 auto;
}
.secWrap .sec_ttl {
  margin-bottom: 28px;
}
.secWrap .sec_sub_ttl {
  position: relative;
}
.secWrap .sec_sub_ttl:before {
  content: "";
  background-image: url(../images/cyoukin-sub_tit-img.png);
  background-repeat: no-repeat;
  background-size: 100%;
  display: block;
  position: absolute;
  width: 57px;
  height: 57px;
  left: 0;
  bottom: -15px;
}
.secWrap .sec_sub_ttl .sec_sub_ttl-before,
.secWrap .sec_sub_ttl .sec_sub_ttl-after {
  color: #fff;
  background-color: #8E0047;
  font-size: 1.7rem;
  padding-left: 4px;
}
.secWrap .sec_sub_ttl .sec_sub_ttl-before {
  padding-top: 8px;
  margin-left: 20px;
}
.secWrap .sec_sub_ttl .sec_sub_ttl-emphasis {
  font-size: 2.8rem;
}
.secWrap .sec_sub_ttl .sec_sub_ttl-after {
  margin-left: 80px;
}
.secWrap .wrap-btn a {
  width: 320px;
  display: inline-block;
}


@media (min-width: 768px) {
  .secWrap .sec_ttl-img {
    width: auto;
  }
  .secWrap .sec_sub_ttl:before {
    bottom: 0;
  }
  .secWrap .sec_sub_ttl .sec_sub_ttl-before,
  .secWrap .sec_sub_ttl .sec_sub_ttl-after {
    font-size: 2.5rem;
  }
  .secWrap .sec_sub_ttl .sec_sub_ttl-before {
    margin-left: 30px;
  }
  .secWrap .sec_sub_ttl .sec_sub_ttl-emphasis {
    font-size: 3.7rem;
  }
  .secWrap .sec_sub_ttl .sec_sub_ttl-after {
    margin-left: 160px;
  }
}

/* -----------------------------------------------------------------------------------
_04. course
----------------------------------------------------------------------------------- */
.courseWrap {
  background-image: url(../images/course-bg.gif);
  padding-top: 45px;
  padding-bottom: 60px;
}

.courseWrap .course_ttl-img {
  width: 25%;
  margin: 0 auto;
}

/*
course-r
-------------- */
.courseWrap .course-r {
  border-bottom: solid 5px #bc2646;
  border-left: solid 5px #bc2646;
  border-right: solid 5px #bc2646;
  padding: 0 3px 3px;
  background-color: #fff;
  margin-bottom: 45px;
}
.courseWrap .course-r-box {
  border-bottom: solid 1px #bc2646;
  border-left: solid 1px #bc2646;
  border-right: solid 1px #bc2646;
  position: relative;
  padding: 20px 10px 30px;
}
.course-r-box .course-r-box-ttl {
  background-color: #bc2646;
  background-image: url(../images/couse-red-ttl.png);
  background-position: right 5% bottom 18%;
  background-repeat: no-repeat;
  background-size: 25%;
  color: #fff;
  position: relative;
  font-size: 2.0rem;
  width: 100%;
  padding: 5% 3% 5% 3%;
}
.course-r-box .course-r-box-ttl .all_link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  z-index: 5;
  touch-action: manipulation;
}
.course-r-box .course-r-box-ttl .course-r-box-ttl-txt {
  font-size: 2.2rem;
  display: block;
  border: solid 4px #fff;
  padding: 1% 1% 1% 2%;
  margin-bottom: 20px;
}
/*
.course-r-box .course-r-box-ttl .course-r-box-ttl-txt:after {
  content: "";
  border-bottom: solid 5px #fff;
  display: block;
  padding-top: 20px;
  margin-bottom: 20px;
  width: 65%;
}
*/
.course-r-box .course-r-box-ttl-txtsub {
  font-size: 1.5rem;
  color: #ffff00;
  margin-bottom: 10px;
}
.course-r .row {
  overflow: hidden;
}
.neg-mt50 {
  margin-top:-50px;
}

@media (min-width: 768px) {
  .courseWrap .course_ttl-img {
    width: auto;
  }

  .courseWrap .course-r-box {
    padding: 40px 25px 60px;
  }
  .course-r-box .course-r-box-ttl {
    background-position: right 5% bottom 7%;
    background-size: auto;
    position: absolute;
    z-index: 1;
    left: -60px;
    top: -80px;
    font-size: 2.8rem;
    width: 510px;
  }
  .course-r-box .course-r-box-ttl .course-r-box-ttl-txt {
    font-size: 3.8rem;
  }
  /*
  .course-r-box .course-r-box-ttl .course-r-box-ttl-txt:after {
    width: 270px;
  }
  */
  .course-r-box .course-r-box-ttl-txtsub {
    font-size: 2.4rem;
  }
  .course-r .row {
    overflow: auto;
  }
  .neg-mt50 {
    margin-top:0;
  }
}

/*modal*/
.modal_wrap input {
  display: none;
}

.modal_overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0);
}

.modal_trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}

.modal_content {
  position: relative;
  align-self: center;
  width: 60%;
  max-width: 800px;
  padding: 30px 30px 15px;
  box-sizing: border-box;
  background: #fff;
  line-height: 1.4em;
  transition: 0.5s;
}

.modal_content h2{
  font-size: 27px;
  font-weight: bold;
  text-align: center;
  padding: 15px;
  margin-bottom: 20px;
}
.modal_content p {
  font-size: 18px;
  padding: 0 10px 10px;
}
.modal_content .purple {
  color: #853fa9;
  border: 3px solid #853fa9;
}

.modal_content .red {
  color: #bc2646;
  border: 3px solid #bc2646;
}

.modal_content .yellow {
  color: #ab7e1e;
  border: 3px solid #ab7e1e;
}

.close_button {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}

.modal_wrap input:checked~.modal_overlay {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  transition: opacity 0.5s;
}

@media (max-width: 768px) {
  .modal_content h2 {
    font-size: 20px;
    padding: 5px;
  }

  .modal_content p {
    font-size: 13px;
  }

  .couse-list .couse-list-p,
  .couse-list .couse-list-r,
  .couse-list .couse-list-e,
  .couse-list .couse-list-g {
    width: 49%;
  }
}


/*
couse-skill
-------------- */
.couse-skill {
  margin-top: 38px;
}

.couse-list .couse-list-p,
.couse-list .couse-list-r,
.couse-list .couse-list-e,
.couse-list .couse-list-g {
  display: inline-block;
  line-height: 1.4;
  padding-bottom: 2px;
  padding-left: 4px;
  padding-right: 4px;
  margin-bottom: 10px;
  padding: 8px 10px;
}
.couse-list .couse-list-p:before,
.couse-list .couse-list-r:before,
.couse-list .couse-list-e:before {
  content: "〇";
  color: #bc2646;
  display: inline-block;
  padding-right: 2px;
}
.couse-list .couse-list-g:before {
  content: "×";
  color: #6488d9;
  display: inline-block;
  padding-right: 2px;
}
.couse-list .couse-list-p {
  border: solid 2px #853fa9;
  color: #853fa9;
}
.couse-list .couse-list-r {
  border: solid 2px #bc2646;
  color: #bc2646;
}
.couse-list .couse-list-e {
  border: solid 2px #ab7e1e;
  color: #ab7e1e;
}
.couse-list .couse-list-g {
  border: solid 2px #959595;
  color: #5f5f5f;
  background-color: #e5e5e5;
  
}
@media (min-width: 768px) {
  .couse-list li + li{margin-left: 0px;}
}
/*
couse-first
-------------- */
.couse-first {
  background-color: #fff8e8;
  position: relative;
  padding: 60px 10px 30px;
  margin-top: 32px;
}
.couse-first .couse-first-ttl {
  position: absolute;
  top: -10px;
  left: 10px;
  background-color: #ed7500;
  color: #fff;
  font-size: 1.6rem;
  display: block;
  width: 90%;
}
.couse-first .couse-first-ttl:before {
  content: "";
  background-image: url(../images/course-sub-ttl.png);
  background-size: 100%;
  background-repeat: no-repeat;
  display: inline-block;
  width: 66px;
  height: 70px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.couse-first .couse-first-ttl .couse-first-ttl-b,
.couse-first .couse-first-ttl .couse-first-ttl-s {
  padding-left: 25%;
  display: block;
}
.couse-first .row {
  margin-left: 0;
  margin-right: 0;
}
.couse-first .row li {
  position: relative;
  margin-bottom: 10px;
}
.couse-first .row li:nth-child(1):before,
.couse-first .row li:nth-child(2):before,
.couse-first .row li:nth-child(3):before {
  content: "";
  background-position: left center;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  left: 0;
  background-size: 100%;
}
.couse-first .row li:nth-child(1):before {
  background-image: url(../images/couse-sub-01.webp);
}
.couse-first .row li:nth-child(2):before {
  background-image: url(../images/couse-sub-02.png);
}
.couse-first .row li:nth-child(3):before {
  background-image: url(../images/couse-sub-03.png);
}
.couse-first .row .couse-first-box {
  position: relative;
  padding: 5px 8px;
  background-color: #f6f7f9;
  border: 2px solid #243763;
  font-size: 1.6rem;
  color: #243763;
}
.couse-first .row .couse-first-box:before {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: -15px;
  top: 20px;
  border-right: 15px solid #243763;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}
.couse-first .row .couse-first-box:after{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: -12px;
  top: 20px;
  border-right: 15px solid #f6f7f9;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}
.couse-first .row li:nth-child(1) .couse-first-box {
    width: calc(100% - 50px);
    margin-left: 50px;
  }
  .couse-first .row li:nth-child(2) .couse-first-box {
    width: 100%;
    margin-left: 50px;
    text-align: center;
  }
  .couse-first .row li:nth-child(3) .couse-first-box {
    width: calc(100% - 50px);
    margin-left: 45px;
  }
@media (min-width: 768px) {
  .couse-first .row li:nth-child(1) .couse-first-box {
    width: 230px;
    margin-left: 50px;
  }
  .couse-first .row li:nth-child(2) .couse-first-box {
    width: auto;
    margin-left: 49px;
    text-align: center;
  }
  .couse-first .row li:nth-child(3) .couse-first-box {
    width: 241px;
    margin-left: 45px;
  }
}
.couse-first .row .couse-first-box .red {
  color: #bc2630;
  display: block;
  font-size: 1.5rem;
  text-align: center;
}
.couse-first .row .couse-first-box .red:before {
  content: "";
  background-image: url(../images/couse-sub-ttl_icon_b.png);
  background-repeat: no-repeat;
  height: 16px;
  width: 16px;
  display: inline-block;
}
.couse-first .row .couse-first-box .red:after {
  content: "";
  background-image: url(../images/couse-sub-ttl_icon_a.png);
  background-repeat: no-repeat;
  height: 16px;
  width: 16px;
  display: inline-block;
}
.btn_interview {
  display: block;
  margin: 30px auto 0;
  text-align: center;
}
@media (min-width: 768px) {
  .couse-first {
    margin-top: 72px;
  }
  .couse-first .couse-first-ttl {
    top: -30px;
    left: 30px;
    font-size: 3.0rem;
    width: 57%;
  }
  .couse-first .couse-first-ttl:before {
    width: 86px;
    height: 90px;
  }
  .couse-first .couse-first-ttl .couse-first-ttl-b {
    padding-left: 16%;
    display: inline-block;
  }
  .couse-first .couse-first-ttl .couse-first-ttl-s {
    padding-left: 0;
    display: inline-block;
  }
  .couse-first .row li {
    margin-bottom: 0;
  }
  .couse-first .row li:nth-child(2),
  .couse-first .row li:nth-child(3) {
    margin-left: 5px;
  }
  .couse-first .row li:nth-child(1):before,
  .couse-first .row li:nth-child(2):before,
  .couse-first .row li:nth-child(3):before {
    width: 89px;
    height: 89px;
  }
  .couse-first .row li:nth-child(1) .couse-first-box {
    width: 230px;
    margin-left: 90px;
  }
  .couse-first .row li:nth-child(2) .couse-first-box {
    margin-left: 79px;
    text-align: center;
  }
  .couse-first .row li:nth-child(3) .couse-first-box {
    width: 252px;
    margin-left: 88px;
  }
}

/*
couse-support
-------------- */
.couse-support {
  background-image: url(../images/support-bg.gif);
  margin-top: 30px;
  padding-top: 48px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 30px;
}
.couse-support .course-support_ttl-img {
  width: 40%;
  margin: 0 auto;
}
.couse-support .banner {
  margin-bottom: 20px;
}
.couse-support .banner li {
  margin-bottom: 4px;
  padding-left: 2px !important;
  padding-right: 2px !important;
}
.couse-support .wrap-btn {
  margin: 0 auto;
}
.couse-support .wrap-btn li:nth-child(1) {
  margin-bottom: 10px;
}
.couse-support .wrap-btn img {
  width: 100%;
}
.courseWrap .wrap-btn a {
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 12px 30px 12px 20px;
}
.courseWrap .wrap-btn li {
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 768px) {
  .couse-support {
    padding-left: 30px;
    padding-right: 30px;
  }
  .couse-support .course-support_ttl-img {
    width: auto;
  }
  .couse-support .banner {
    margin-bottom: 0;
  }
  .couse-support .wrap-btn {
    padding: 30px 0 0;
  }
  .couse-support .wrap-btn img {
    width: 80%;
  }
  .couse-support .wrap-btn li:nth-child(1) {
    text-align: right;
  }
  .courseWrap .wrap-btn li {
    padding-left: 15px;
    padding-right: 15px;
  }
  .courseWrap .wrap-btn a {
    width: 340px;
    padding: 12px 40px 12px 30px;
  }
}

/*
couse-txt
-------------- */
.couse-txt {
  background-color: #fbfbfa;
  padding: 30px 15px;
  margin-top: 30px;
}
.couse-txt .row > div {
  padding-left: 0;
  padding-right: 0;
}
.couse-txt .row .couse-txt-box-p,
.couse-txt .row .couse-txt-box-b,
.couse-txt .row .couse-txt-box-r {
  padding-left: 0;
  padding-right: 0;
  margin-left: 15px;
  margin-right: 15px;
  border-top: solid 2px #1e3260;
  border-bottom: solid 2px #1e3260;
  padding-top: 20px;
  color: #333333;
  letter-spacing: -.05rem;
}
.couse-txt .row .couse-txt-box-p,
.couse-txt .row .couse-txt-box-b {
  margin-bottom: 30px;
}
.couse-txt .row .couse-txt-box-p h3 { color: #853fa9; margin-bottom: 15px;}
.couse-txt .row .couse-txt-box-b h3 { color: #468aa2; margin-bottom: 15px;}
.couse-txt .row .couse-txt-box-r h3 { color: #c52069; margin-bottom: 15px;}
@media (min-width: 768px) {
  .couse-txt .row .couse-txt-box-p,
  .couse-txt .row .couse-txt-box-b {
    margin-bottom: 0;
  }
  .couse-txt {
    padding: 30px;
  }
}

/*
course-b
-------------- */
.course-b {
    margin-top: 1.5em;
}

.courseWrap .course-b {
  border: solid 5px #34a4a8;
  background-color: #fff;
  background-image: url(../images/course-b-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 45px;
  position: relative;
}
.courseWrap .course-b .all_link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  z-index: 5;
  touch-action: manipulation;
}
.courseWrap .course-b .all_link:hover {
  opacity: 0.8;
}
.course-b .course-b-box {
  max-width: 600px;
  /*background-color: #fff;*/
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  margin: 20px auto;
  padding: 16px;
}
.course-b-box .course-b-box-in {
  border: solid 2px #34a4a8;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  background-color: #fff;
  padding: 25px 25px 15px;
  letter-spacing: 0;
}
.course-b-box .course-b-box-in .course-b_ttl-sub {
  width: 76%;
  margin: 0 auto;
}
.course-b-box .course-b-box-in h3 {
  color: #e83060;
  font-size: 3.0rem;
}
.course-b-box .course-b-box-in a img {
  max-width: 260px;
}
@media (min-width: 768px) {
  .courseWrap .course-b {
    margin: 60px 0;
  }
  .course-b-box .course-b-box-in .course-b_ttl-sub {
    width: 44%;
  }
  .course-b-box .course-b-box-in h3 {
    font-size: 4.0rem;
  }
  .course-b-box .course-b-box-in a img {
    max-width: 300px;
  }
}

/*
course-b
-------------- */
.courseWrap .course-g {
  border: solid 9px #007323;
  padding: 9px 13px;
  background-color: #fff;
  margin-bottom: 45px;
}
.course-g .course-g-box {
  border: solid 1px #007323;
  position: relative;
  background-image: url(../images/couse-green-bg.jpg);
  background-size: 80%;
  background-position: right bottom;
  background-repeat: no-repeat;
  padding: 10px 10px 100px;
}
.courseWrap .course-g-box-ttl {
  background-color: #007323;
  background-image: url(../images/couse-green-ttl.png);
  background-position: right 5% bottom 18%;
  background-repeat: no-repeat;
  background-size: 25%;
  color: #fff;
  position: static;
  font-size: 2.0rem;
  width: 100%;
  padding: 3% 0 3.5% 4%;
  margin-bottom: 10px;
}
.courseWrap .course-g-box-ttl .all_link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  z-index: 5;
  touch-action: manipulation;
}
.courseWrap .course-g-box-ttl .course-g-box-ttl-txt {
  font-size: 2.4rem;
  display: block;
}
.courseWrap .course-g-box-ttl .course-g-box-ttl-txt:after {
  content: "";
  border-bottom: solid 5px #fff;
  display: block;
  padding-top: 20px;
  margin-bottom: 20px;
  width: 65%;
}
@media (min-width: 768px) {
  .courseWrap .course-g {
    margin-bottom: 90px;
  }
  .course-g .course-g-box {
    padding: 30px 30px 150px;
    background-size: auto;
  }
  .courseWrap .course-g-box-ttl {
    background-position: right 15% bottom 18%;
    background-size: auto;
    position: absolute;
    z-index: 1;
    left: -60px;
    top: 20px;
    font-size: 3.3rem;
    width: 510px;
    margin-bottom: 0;
  }
  .courseWrap .course-g-box-ttl .course-g-box-ttl-txt {
    font-size: 3.8rem;
  }
  .courseWrap .course-g-box-ttl .course-g-box-ttl-txt:after {
    width: 270px;
  }
  .courseWrap .course-g-box-txt {
    margin-left: 50%;
  }
}


/*
v-course
-------------- */
.v-course {
  border: solid 1px #2cccd3;
  padding: 25px 20px 5px;
  background-color: #fff;
}
.v-course .v-course_ttl-img {
  width: 80%;
  margin: 0 auto;
}
.v-course .v-course-ttl-r {
  color: #f145ba;
}
.v-course .v-course-ttl-e {
  color: #f2c115;
}
@media (min-width: 768px) {
  .v-course .v-course_ttl-img {
    width: auto;
  }
}

/* -----------------------------------------------------------------------------------
_05. voice
----------------------------------------------------------------------------------- */
.voiceWrap {
  margin-bottom: 0;
}
.voiceWrap .voice_ttl-img {
  width: 18%;
}
.voice-ttl {
  color: #1e3260;
  font-size: 3.0rem;
  font-weight: 500;
  background-image: url(../images/voice-ttl-bg.gif);
  background-repeat: no-repeat;
  background-position: left bottom;
  padding: 10px 0 20px;
  margin-bottom: 20px;
}
.voice-btn {
  margin: 20px 0 60px;
}
.voice-btn a {
  width: 320px;
  display: inline-block;
  text-align: center;
}

@media (min-width: 768px) {
  .voiceWrap .voice_ttl-img {
    width: auto;
  }
}

/* -----------------------------------------------------------------------------------
_06. guidance
----------------------------------------------------------------------------------- */
.guidanceWrap {
  margin-bottom: 35px;
}
.guidanceWrap .guidance_ttl-img {
  width: 36%;
  margin: 0 auto;
}
#top .guidance-box {
  border: solid 2px #243763;
  background-color: #fff;
}
#top .guidance-box a{
  text-align: right;
  display: block;
}

#top .guidance-ttl {
  background-color: #243763;
}

.guidanceWrap .guidance-box {
  border: solid 2px #8c6932;
  background-color: #f9f4eb;
  padding: 13px 10px;
  margin-bottom: 10px;
}
.guidance-ttl {
  background-color: #8c6932;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 10px;
  padding: 5px 0;
}

.guidance-box-left {
  padding-right: 15px;
}
.guidance-box-right {
  padding-left: 15px;
}

.guidance-box_btn{text-align: right;}
.guidance-box_btn a{
  color: #fff;
  background-color: #8c6932;
  padding: 3px 3px 3px 15px;
  display: inline-block!important;
}

@media (min-width: 768px) {
  .guidanceWrap .guidance_ttl-img {
    width: auto;
  }
  .guidance-box-left {
    padding-right: 5px;
  }
  .guidance-box-right {
    padding-left: 5px;
  }
}

/*
column
-------------- */
.column-box .column-ttl {
  border-top: solid 1px #2b2b2b;
  border-bottom: solid 1px #2b2b2b;
  padding: 15px 0;
  margin-bottom: 0;
}
.column-box dl {
  border-bottom: dashed 1px #c0c0c0;
}
.column-box dl:nth-child(4) {
  border-bottom: solid 1px #2b2b2b;
}
.column-box dl dt .column-img {
  margin: 15px 10px 10px;
}
.column-box dl dd {
  padding: 15px 0;
}

/*
media
-------------- */
.media {
  background-color: #2b2b2b;
  padding: 15px;
  margin-top: 15px;
}

.media .col-12 {
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .media .col-12 {
    margin-bottom: 0;
  }
}

/* 初めての方でも大丈夫 */
.couse-first {
  overflow: visible;
  padding-top: 90px;
}

.couse-first .row.u-mt20 {
  overflow: visible !important;
  display: block;
}

.couse-first .row.u-mt20 li {
  width: 100%;
  margin-left: 0 !important;
  margin-bottom: 15px;
}

.couse-first .row.u-mt20 li .couse-first-box {
  width: calc(100% - 90px) !important;
  margin-left: 90px !important;
  text-align: left !important;
}

@media (min-width: 768px) {
  .couse-first {
    padding-top: 110px;
  }
}

.course-detail-btns {
  margin-top: 30px;
  text-align: center;
  overflow: visible !important;
}

.course-detail-btns li {
  margin-bottom: 15px;
  list-style: none;
}

.course-detail-btns li:before {
  display: none !important;
  content: none !important;
}

.course-detail-btns a {
  display: inline-block;
}

.tokkacourse-title {
    color: #6a1b9a;
    font-weight: 550;
}

.hanbaicourse-title {
    color: #bc2646;
    font-weight: 550;
}

.designcourse-title {
    color: #0585d1;
    font-weight: 550;
}

/* -----------------------------------------------------------------------------------
_05. news
----------------------------------------------------------------------------------- */

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

/* -----------------------------------------------------------------------------------
_以下、最後に追加
----------------------------------------------------------------------------------- */

/*==================================================
  メイン文章
==================================================*/

.mainTxt__lg{
    text-align:left;
    line-height:1.95;
    letter-spacing:.05em;
    color:#333;
}

/*------------------------------------------------*/

.top-copy{
    display:inline-block;
    margin-bottom:12px;
    font-family:"Noto Serif CJK JP","Yu Mincho","Hiragino Mincho ProN",serif;
    font-size:1.28em;
    font-weight:700;
    color:#0C2346;
    letter-spacing:.08em;
}

.main-copy{
    font-weight:800;
    color:#0C2346;
    background:linear-gradient(transparent 70%,#dfe8ff 70%);
}

.rate-sentence{
    display:inline-block;
    margin-top:16px;
    margin-bottom:6px;
    color:#0C2346;
    font-weight:800;
    font-size:1.08em;
}

/*==================================================
 目的別割合
==================================================*/

.student-rate-box{

    margin:24px 0 36px;

    padding:18px 20px 22px;

    border:1px solid #d8dce5;

    background:#fff;

    box-shadow:0 8px 24px rgba(0,0,0,.06);

}

/* （目的別割合） */

.student-rate-caption{

    margin-bottom:14px;

    text-align:left;

    color:#666;

    font-size:1.35rem;

    font-weight:700;

    letter-spacing:.08em;

}

/*========================*/

.student-rate-bar{

    display:flex;

    width:100%;

    height:68px;

    background:#ededed;

}

/*========================*/

.student-rate-pro{

    width:78%;

    display:flex;

    align-items:center;

    justify-content:flex-start;

    padding-left:28px;

    background:#0C2346;

    color:#fff;

    font-size:2.05rem;

    font-weight:900;

    letter-spacing:.03em;

    text-align:left;

}

/*========================*/

.student-rate-hobby{

    width:22%;

    display:flex;

    align-items:center;

    justify-content:center;

    padding-left:0px;

    background:#2E8B57;

    color:#fff;

    font-size:1.55rem;

    font-weight:900;

    letter-spacing:0;

    text-align:center;

}

/*==================================================
  販売
==================================================*/

.challenge-copy{

    font-weight:700;

    color:#0C2346;

    background:linear-gradient(transparent 70%,#fff0b6 70%);

}

/*==================================================
 最後
==================================================*/

.last-copy{

    display:block;

    margin-top:24px;

    padding:18px 20px;

    border-left:5px solid #0C2346;

    background:#f8fbff;

    box-shadow:0 8px 22px rgba(12,35,70,.08);

    font-family:"Noto Serif CJK JP","Yu Mincho",serif;

    font-size:1.10em;

    font-weight:700;

    line-height:1.8;

    color:#0C2346;

}

/*==================================================
 タブレット
==================================================*/

@media (max-width:1024px){

.student-rate-bar{

    height:60px;

}

.student-rate-pro{

    font-size:1.55rem;

    padding-left:18px;

}

.student-rate-hobby{

    font-size:1.18rem;

    padding-left:10px;

}

}

/*==================================================
 スマホ
==================================================*/

@media (max-width:767px){

.mainTxt__lg{

    line-height:1.82;

}

.top-copy{

    font-size:1.08em;

}

.student-rate-box{

    padding:14px;

    margin:18px 0 28px;

}

.student-rate-caption{

    font-size:1.15rem;

    margin-bottom:10px;

}

.student-rate-bar{

    height:50px;

}

.student-rate-pro{

    width:78%;

    padding-left:10px;

    font-size:1.25rem;

}

.student-rate-hobby{

    width:22%;

    padding-left:6px;

    font-size:0.95rem;

}

.last-copy{

    padding:15px;

    font-size:1.02em;

}

}

/* 趣味 約10％ 文字サイズを強制変更 */
.student-rate-bar .student-rate-hobby{
    font-size:2rem !important;
    line-height:1.1 !important;
}

@media (max-width:767px){
    .student-rate-bar .student-rate-hobby{
        font-size:1.2rem !important;
        line-height:1.1 !important;
    }
}
/* Learning visual cards
-------------------------------------------------- */
.learning-visual {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e6dfd3;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(83, 65, 42, 0.08);
  padding: 18px;
}

.learning-visual__group + .learning-visual__group {
  margin-top: 18px;
}

.learning-visual__title {
  color: #214375;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  padding-left: 12px;
  position: relative;
}

.learning-visual__title::before {
  background: #364cb0;
  border-radius: 999px;
  content: "";
  height: 1em;
  left: 0;
  position: absolute;
  top: 0.2em;
  width: 4px;
}

.learning-card-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.learning-card {
  align-items: center;
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 1px solid #ded6ca;
  border-radius: 8px;
  box-shadow: inset 0 0 0 3px #f7f3ed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  list-style: none;
  min-width: 0;
  padding: 8px 6px;
  text-align: center;
}

.learning-card img {
  display: block;
  height: auto;
  margin: 0 auto 6px;
  max-width: 68px;
  width: 58%;
}

.learning-card span {
  color: #3e352c;
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
}

@media (max-width: 767px) {
  .learning-visual {
    margin-top: 20px;
    padding: 14px;
  }

  .learning-card-list {
    gap: 8px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .learning-card-list--works {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .learning-card span {
    font-size: 1.1rem;
  }
}

@media (max-width: 374px) {
  .learning-card-list,
  .learning-card-list--works {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.learning-visual--photos {
  padding: 14px;
}

.learning-photo-list {
  gap: 12px;
}

.learning-card--photo {
  aspect-ratio: 1 / 1;
  border: 1px solid #ddd2c4;
  box-shadow: 0 8px 18px rgba(67, 52, 33, 0.12);
  overflow: hidden;
  padding: 0;
  position: relative;
}

.learning-card--photo img {
  height: 100%;
  margin: 0;
  max-width: none;
  object-fit: cover;
  width: 100%;
}

.learning-card--photo span {
  background: linear-gradient(180deg, rgba(24, 20, 16, 0), rgba(24, 20, 16, 0.78));
  bottom: 0;
  color: #fff;
  font-size: 1.15rem;
  left: 0;
  letter-spacing: 0;
  padding: 22px 6px 7px;
  position: absolute;
  right: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

@media (max-width: 767px) {
  .learning-photo-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.learning-photo-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.learning-card--photo a {
  color: inherit;
  display: block;
  height: 100%;
  position: relative;
  text-decoration: none;
  width: 100%;
}

.learning-card--photo a::after {
  background: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  color: #6b4e22;
  content: "+";
  font-size: 1.4rem;
  font-weight: 700;
  height: 22px;
  line-height: 22px;
  position: absolute;
  right: 6px;
  text-align: center;
  top: 6px;
  width: 22px;
}

.learning-photo-modal {
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  opacity: 0;
  padding: 18px;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 0.2s ease;
  z-index: 10000;
}

.learning-photo-modal:target {
  opacity: 1;
  pointer-events: auto;
}

.learning-photo-modal__bg {
  background: rgba(0, 0, 0, 0.68);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.learning-photo-modal__body {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  max-height: calc(100vh - 36px);
  max-width: 720px;
  overflow: auto;
  padding: 18px 18px 20px;
  position: relative;
  width: min(92vw, 720px);
}

.learning-photo-modal__body img {
  border-radius: 6px;
  display: block;
  height: auto;
  margin-bottom: 14px;
  width: 100%;
}

.learning-photo-modal__body h4 {
  color: #6b4e22;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 6px;
}

.learning-photo-modal__body p {
  color: #3e352c;
  font-size: 1.45rem;
  line-height: 1.8;
}

.learning-photo-modal__close {
  align-items: center;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
  color: #3e352c;
  display: flex;
  font-size: 2rem;
  font-weight: 700;
  height: 38px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 8px;
  text-decoration: none;
  top: 8px;
  width: 38px;
  z-index: 1;
}

@media (max-width: 767px) {
  .learning-photo-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .learning-card--photo span {
    font-size: 0.95rem;
    padding: 18px 3px 5px;
  }

  .learning-photo-modal__body {
    padding: 12px 12px 16px;
  }

  .learning-photo-modal__body h4 {
    font-size: 1.7rem;
  }

  .learning-photo-modal__body p {
    font-size: 1.3rem;
  }
}
.learning-photo-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

body.learning-photo-modal-open {
  overflow: hidden;
}

.learning-card--photo {
  cursor: pointer;
  touch-action: manipulation;
}

/* 特化コース3列：スキル見出しと12枠を同じ位置・幅にそろえる */
@media (min-width: 768px) {
  .couse-txt > .row {
    align-items: stretch;
    display: flex;
  }

  .couse-txt > .row > .col-sm-4 {
    display: flex;
    flex-direction: column;
  }

  .couse-txt-box-p,
  .couse-txt-box-b,
  .couse-txt-box-r {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
  }

  .couse-txt-box-p > .skill-title,
  .couse-txt-box-b > .skill-title,
  .couse-txt-box-r > .skill-title {
    margin-top: auto;
  }
}

.couse-txt .couse-list {
  display: grid;
  gap: 10px 4px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.couse-txt .couse-list > li,
.couse-txt .couse-list > li + li {
  box-sizing: border-box;
  display: block;
  margin: 0;
  min-width: 0;
  width: 100%;
}

.couse-txt .couse-list .open_button {
  display: inline;
  white-space: nowrap;
  width: auto;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .couse-txt .couse-list .couse-list-p,
  .couse-txt .couse-list .couse-list-r,
  .couse-txt .couse-list .couse-list-e,
  .couse-txt .couse-list .couse-list-g {
    font-size: 1.2rem;
    padding-left: 4px;
    padding-right: 4px;
  }
}

/*==================================================
  予約不要・時間制限なし 見出し
  既存CSSの一番下へ追加してください

  ・背景：白
  ・外枠：ボルドー
  ・左上：cyoukin-sub_tit-img.png
  ・背景演出：上品な金色の星
  ・強調下線：黄色
==================================================*/

/*==================================================
  見出し全体
==================================================*/
.secWrap .sec_sub_ttl {
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-sizing: border-box;

    width: 100%;
    max-width: 960px;
    margin: 0 auto 34px;
    padding: 34px 40px;

    background: #ffffff !important;
    background-color: #ffffff !important;

    border: 2px solid #8E0047;
    border-radius: 12px;

    box-shadow:
        0 8px 26px rgba(142, 0, 71, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.95);

    color: #243763;
    text-align: center;

    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.9;
    letter-spacing: 0.04em;
}

/*==================================================
  左上の懐中時計
  既存画像：cyoukin-sub_tit-img.png
==================================================*/
.secWrap .sec_sub_ttl::before {
    content: "";
    display: block;

    position: absolute;
    z-index: 0;
    left: 10px;
    top: 10px;

    width: 115px;
    height: 115px;

    background-image: url("../images/cyoukin-sub_tit-img.png");
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;

    opacity: 0.32;
    pointer-events: none;
    transform: rotate(-5deg);
}

/*==================================================
  背景の淡い金色演出
  汚れに見えない、星型だけの装飾
==================================================*/
.secWrap .sec_sub_ttl::after {
    content: "✦  ✧  ✦  ✧";
    position: absolute;
    z-index: 0;
    pointer-events: none;

    right: 28px;
    top: 18px;

    color: rgba(196, 150, 44, 0.42);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.65em;

    text-shadow:
        -95px 48px 0 rgba(210, 171, 75, 0.22),
        -35px 92px 0 rgba(210, 171, 75, 0.30),
        24px 116px 0 rgba(210, 171, 75, 0.18);

    animation: sec-sub-sparkle 4.8s ease-in-out infinite;
}

@keyframes sec-sub-sparkle {
    0%,
    100% {
        opacity: 0.55;
        transform: scale(0.96);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.04);
    }
}

/*==================================================
  元の背景・余白指定を確実に解除
==================================================*/
.secWrap .sec_sub_ttl .sec_sub_ttl-before,
.secWrap .sec_sub_ttl .sec_sub_ttl-after {
    position: relative;
    z-index: 2;

    background: transparent !important;
    background-color: transparent !important;

    color: inherit;
    padding: 0;
}

/*==================================================
  文章の配置
==================================================*/
.secWrap .sec_sub_ttl-line {
    position: relative;
    z-index: 2;
    display: block;
}

/*==================================================
  「予約不要」「時間制限なし」
==================================================*/
.secWrap .sec_sub_ttl .sec_sub_ttl-emphasis {
    position: relative;
    z-index: 2;
    display: inline-block;

    margin: 0 0.08em;
    padding: 0 0.08em 0.03em;

    color: #8E0047;

    font-size: 1.45em;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.055em;

    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.95);
}

/*==================================================
  黄色の直線的な下線
==================================================*/
.secWrap .sec_sub_ttl .sec_sub_ttl-emphasis::after {
    content: "";
    position: absolute;
    z-index: -1;

    left: -3%;
    right: -3%;
    bottom: 0.08em;

    height: 0.36em;

    background: linear-gradient(
        90deg,
        rgba(255, 222, 65, 0.72) 0%,
        rgba(255, 230, 91, 0.96) 8%,
        rgba(255, 217, 47, 0.98) 50%,
        rgba(255, 230, 91, 0.95) 92%,
        rgba(255, 222, 65, 0.70) 100%
    );

    border-radius: 3px;
    transform: rotate(-0.25deg);

    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

/*==================================================
  下線のわずかな質感
==================================================*/
.secWrap .sec_sub_ttl .sec_sub_ttl-emphasis::before {
    content: "";
    position: absolute;
    z-index: -1;

    left: 1%;
    right: 1%;
    bottom: 0.04em;

    height: 2px;

    background-color: rgba(255, 247, 184, 0.65);
    border-radius: 999px;
}

/*==================================================
  「好きな時間帯で学べます。」部分
  既存のボルドー背景を完全に解除
==================================================*/
.secWrap .sec_sub_ttl .sec_sub_ttl-after {
    position: relative;
    z-index: 2;
    display: block;

    margin: 12px 0 0 !important;
    padding: 0 !important;

    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;

    color: #315878 !important;

    font-size: 0.82em;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0.045em;
}

/*==================================================
  パソコン
==================================================*/
@media (min-width: 768px) {
    .secWrap .sec_sub_ttl {
        padding: 34px 42px 35px;
        font-size: 2.4rem;
    }

    .secWrap .sec_sub_ttl .sec_sub_ttl-emphasis {
        font-size: 1.5em;
    }

    .secWrap .sec_sub_ttl::before {
        width: 130px;
        height: 130px;
        left: 12px;
        top: 8px;
    }
}

/*==================================================
  タブレット
==================================================*/
@media (max-width: 1024px) {
    .secWrap .sec_sub_ttl::before {
        width: 105px;
        height: 105px;
        left: 8px;
        top: 7px;
        opacity: 0.28;
    }
}

/*==================================================
  スマホ
==================================================*/
@media (max-width: 767px) {
    .secWrap .sec_sub_ttl {
        margin-bottom: 28px;
        padding: 25px 10px;

        border-width: 2px;
        border-radius: 9px;

        font-size: 1.6rem;
        line-height: 1.85;
        letter-spacing: 0.02em;
    }

    .secWrap .sec_sub_ttl::before {
        width: 74px;
        height: 74px;
        left: 4px;
        top: 5px;
        opacity: 0.24;
    }

    .secWrap .sec_sub_ttl::after {
        right: 8px;
        top: 10px;
        font-size: 1.1rem;
        letter-spacing: 0.35em;

        text-shadow:
            -42px 42px 0 rgba(210, 171, 75, 0.20),
            4px 88px 0 rgba(210, 171, 75, 0.24);
    }

    .secWrap .sec_sub_ttl .sec_sub_ttl-emphasis {
        margin: 0 0.05em;
        font-size: 1.42em;
        letter-spacing: 0.03em;
    }

    .secWrap .sec_sub_ttl .sec_sub_ttl-emphasis::after {
        bottom: 0.07em;
        height: 0.35em;
    }

    .secWrap .sec_sub_ttl .sec_sub_ttl-after {
        margin-top: 10px !important;
        font-size: 0.86em;
        line-height: 1.65;
    }
}

/*==================================================
  小さいスマホ
==================================================*/
@media (max-width: 374px) {
    .secWrap .sec_sub_ttl {
        padding: 22px 7px 23px;
        font-size: 1.45rem;
    }

    .secWrap .sec_sub_ttl .sec_sub_ttl-emphasis {
        font-size: 1.36em;
    }

    .secWrap .sec_sub_ttl::before {
        width: 62px;
        height: 62px;
        left: 3px;
        top: 4px;
    }
}

/*==================================================
  動きを減らす設定の利用者にはアニメーション停止
==================================================*/
@media (prefers-reduced-motion: reduce) {
    .secWrap .sec_sub_ttl::after {
        animation: none;
    }
}

/*==================================================
  last-copy 強調
==================================================*/

.last-copy-emphasis{
    position:relative;
    display:inline-block;

    color:#F26B1D !important;

    font-weight:900 !important;

    font-size:1.15em;

    line-height:1.15;

    z-index:1;
}

/* 黄色の手書き風下線 */

.last-copy-emphasis::after{

    content:"";

    position:absolute;

    left:0;
    width:100%;

    bottom:.08em;

    height:.36em;

    background:linear-gradient(
        90deg,
        rgba(255,222,65,.72) 0%,
        rgba(255,232,95,.96) 8%,
        rgba(255,218,47,.98) 50%,
        rgba(255,232,95,.96) 92%,
        rgba(255,222,65,.72) 100%
    );

    border-radius:3px;

    transform:rotate(-0.25deg);

    z-index:-1;

    box-shadow:
        0 1px 0 rgba(255,255,255,.8);
}

/* 少しだけ手描き感 */

.last-copy-emphasis::before{

    content:"";

    position:absolute;

    left:2%;
    width:96%;

    bottom:.03em;

    height:2px;

    background:rgba(255,247,184,.65);

    border-radius:999px;

    z-index:-1;
}

/* タップ案内 */

.tap-note{

    margin-top:-6px;
    margin-bottom:14px;

    text-align:left;

    color:#F26B1D;

    font-size:1.25rem;

    font-weight:400;

    letter-spacing:.03em;

    line-height:1.5;

}

/* 習得できる彫金スキル */


.skill-title{

    font-size:1.8rem;

    font-weight:400;

    line-height:1.5;

    color:#243763;

    letter-spacing:.03em;

    text-align:left;

    border-left:4px solid #8E0047;

    padding-left:12px;
  
  margin-top:24px;

    margin-bottom:4px;

}

/* ========================================================================== 
   Header navigation visibility, scrolling and alignment
   ========================================================================== */
.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;
}

.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;
    top: 50%;
    transform: translateY(-50%);
    width: 49px;
  }
}

@media (min-width: 1025px) {
  .l-mark {
    height: 54px;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    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;
}
