@charset "UTF-8";
/* Scss Document */
/*色*/
/*font*/
/*---------------------
anime [common]
------------------------*/
.scrollin {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 900ms;
}

.scrollin.__action {
  opacity: 1;
  transform: translate(0, 0);
}

.scrollin.__delay.__action {
  transition-delay: 600ms;
  transition-property: all;
}

.scrollin.__left {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: all 900ms;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.scrollin.__left.__action {
  opacity: 1;
  transform: translate(0, 0);
}

.scrollin.__right {
  opacity: 0;
  transform: translate(50%, 0);
  transition: all 900ms;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.scrollin.__right.__action {
  opacity: 1;
  transform: translate(0, 0);
}

.scrollin.__list {
  opacity: 1;
  transform: translate(0, 0);
}
.scrollin.__list > li,
.scrollin.__list > div {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 900ms;
}

.scrollin.__list.__action li,
.scrollin.__list.__action > div {
  opacity: 1;
  transform: translate(0, 0);
}
.scrollin.__list.__action li:nth-child(1),
.scrollin.__list.__action > div:nth-child(1) {
  transition-delay: 0.3s;
  transition-property: all;
}
.scrollin.__list.__action li:nth-child(2),
.scrollin.__list.__action > div:nth-child(2) {
  transition-delay: 0.6s;
  transition-property: all;
}
.scrollin.__list.__action li:nth-child(3),
.scrollin.__list.__action > div:nth-child(3) {
  transition-delay: 0.9s;
  transition-property: all;
}
.scrollin.__list.__action li:nth-child(4),
.scrollin.__list.__action > div:nth-child(4) {
  transition-delay: 1.2s;
  transition-property: all;
}
.scrollin.__list.__action li:nth-child(5),
.scrollin.__list.__action > div:nth-child(5) {
  transition-delay: 1.5s;
  transition-property: all;
}
.scrollin.__list.__action li:nth-child(6),
.scrollin.__list.__action > div:nth-child(6) {
  transition-delay: 1.8s;
  transition-property: all;
}
.scrollin.__list.__action li:nth-child(7),
.scrollin.__list.__action > div:nth-child(7) {
  transition-delay: 2.1s;
  transition-property: all;
}
.scrollin.__list.__action li:nth-child(8),
.scrollin.__list.__action > div:nth-child(8) {
  transition-delay: 2.4s;
  transition-property: all;
}
.scrollin.__list.__action li:nth-child(9),
.scrollin.__list.__action > div:nth-child(9) {
  transition-delay: 2.7s;
  transition-property: all;
}
.scrollin.__list.__action li:nth-child(10),
.scrollin.__list.__action > div:nth-child(10) {
  transition-delay: 3s;
  transition-property: all;
}
.scrollin.__list.__action li:nth-child(11),
.scrollin.__list.__action > div:nth-child(11) {
  transition-delay: 3.3s;
  transition-property: all;
}
.scrollin.__list.__action li:nth-child(12),
.scrollin.__list.__action > div:nth-child(12) {
  transition-delay: 3.6s;
  transition-property: all;
}
.scrollin.__list.__action li:nth-child(13),
.scrollin.__list.__action > div:nth-child(13) {
  transition-delay: 3.9s;
  transition-property: all;
}
.scrollin.__list.__action li:nth-child(14),
.scrollin.__list.__action > div:nth-child(14) {
  transition-delay: 4.2s;
  transition-property: all;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInNm {
  0% {
    opacity: 0;
    transform: translateY(-10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*------------------------------*/
/*container*/
/*------------------------------*/
.l_container {
  width: 1000px;
  margin: 0px auto;
}

.l_container_re {
  margin: 0px 90px;
}

@media only screen and (max-width: 750px) {
  .l_container {
    width: auto;
    margin: 0 20px;
  }
  .l_container--spNo {
    margin: 0;
  }
  .l_container--spMg {
    margin: 0 40px;
  }
  .l_container--spMg2 {
    margin: 0 -20px;
  }

  .l_container_re {
    width: auto;
    margin: 0 20px;
  }
  .l_container_re--spFull {
    margin: 0;
  }
  .l_container_re--spMg {
    margin: 0 40px;
  }
}
.l_container_small {
  width: 700px;
  margin: 0px auto;
}
@media only screen and (max-width: 750px) {
  .l_container_small {
    width: auto;
  }
}

/*====================================
section
====================================*/
.l_section {
  padding: 90px 0;
}
@media only screen and (max-width: 750px) {
  .l_section {
    padding: 60px 0;
  }
}
.l_section--np {
  padding: 0;
}
.l_section--bgImg {
  background-size: cover;
  background-repeat: no-repeat;
}
.l_section--mgT {
  margin-top: 90px;
}
.l_section--mgT2 {
  margin-top: 90px;
}
@media only screen and (max-width: 750px) {
  .l_section--mgT2 {
    margin-top: 0px;
  }
}
.l_section--mgB {
  margin-bottom: 90px;
}

/*====================================
colum
====================================*/
.l_col {
  display: flex;
}
.l_col--center {
  justify-content: center;
}
.l_col--center_h {
  align-items: center;
}
.l_col--mb > div,
.l_col--mb > li {
  margin-bottom: 4%;
}
.l_col--mb_s > div,
.l_col--mb_s > li {
  margin-bottom: 10px;
}
.l_col--mb_t > div,
.l_col--mb_t > li {
  margin-bottom: 4%;
}
@media print, screen and (min-width: 751px) {
  .l_col--mb_t > div:nth-of-type(even),
  .l_col--mb_t > li:nth-of-type(even) {
    margin-top: 4%;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 750px) {
  .l_col--pc {
    display: block;
  }
}
@media print, screen and (min-width: 751px) {
  .l_col--sp {
    display: block;
  }
}
.l_col--ai_fs {
  align-items: flex-start;
}
.l_col__item--1 {
  flex: 1;
}
.l_col--c2 {
  flex-wrap: wrap;
  margin: 0 -4% 0 0;
}
.l_col--c2 > div,
.l_col--c2 > li {
  width: calc(50% - 4%);
  margin-right: 4%;
}
.l_col--c2f {
  flex-wrap: wrap;
  margin: 0 -4% 0 0;
}
.l_col--c2f > div,
.l_col--c2f > li {
  margin-right: 4%;
}
.l_col--c2f-1 {
  flex-wrap: wrap;
  margin: 0 -4% 0 0;
}
.l_col--c2f-1 > div,
.l_col--c2f-1 > li {
  margin-right: 4%;
}
@media only screen and (max-width: 750px) {
  .l_col--c2f-1 > div,
  .l_col--c2f-1 > li {
    width: 100%;
    margin-bottom: 4%;
  }
  .l_col--c2f-1 > div:last-of-type,
  .l_col--c2f-1 > li:last-of-type {
    margin-bottom: 0;
  }
}
.l_col--c2-1 {
  flex-wrap: wrap;
  margin: 0 -4% 0 0;
}
@media print, screen and (min-width: 751px) {
  .l_container_re > .l_col--c2-1 {
    margin: 0 -90px 0 0;
  }
}
.l_col--c2-1 > div,
.l_col--c2-1 > li {
  width: calc(50% - 4%);
  margin-right: 4%;
}
@media print, screen and (min-width: 751px) {
  .l_container_re > .l_col--c2-1 > div, .l_container_re >
  .l_col--c2-1 > li {
    width: calc(50% - 90px);
    margin-right: 90px;
  }
}
@media only screen and (max-width: 750px) {
  .l_col--c2-1 > div,
  .l_col--c2-1 > li {
    width: 100%;
    margin-bottom: 4%;
  }
  .l_col--c2-1 > div:last-of-type,
  .l_col--c2-1 > li:last-of-type {
    margin-bottom: 0;
  }
}
.l_col--c3 {
  flex-wrap: wrap;
  margin: 0 -4% 0 0;
}
.l_col--c3 > div,
.l_col--c3 > li {
  width: calc(33.333% - 4%);
  margin-right: 4%;
}
.l_col--c3-1 {
  flex-wrap: wrap;
  margin: 0 -4% 0 0;
}
.l_col--c3-1 > div,
.l_col--c3-1 > li {
  width: calc(33.333% - 4%);
  margin-right: 4%;
}
@media only screen and (max-width: 750px) {
  .l_col--c3-1 > div,
  .l_col--c3-1 > li {
    width: 100%;
    margin-bottom: 4%;
  }
  .l_col--c3-1 > div:last-of-type,
  .l_col--c3-1 > li:last-of-type {
    margin-bottom: 0;
  }
}
.l_col--c3-2 {
  flex-wrap: wrap;
  margin: 0 -4% 0 0;
}
.l_col--c3-2 > div,
.l_col--c3-2 > li {
  width: calc(33.333% - 4%);
  margin-right: 4%;
}
@media only screen and (max-width: 750px) {
  .l_col--c3-2 > div,
  .l_col--c3-2 > li {
    width: calc(50% - 4%);
    margin-bottom: 4%;
  }
}
.l_col--c4-2 {
  flex-wrap: wrap;
  margin: 0 -4% 0 0;
}
.l_col--c4-2 > div,
.l_col--c4-2 > li {
  width: calc(25% - 4%);
  margin-right: 4%;
}
@media only screen and (max-width: 750px) {
  .l_col--c4-2 > div,
  .l_col--c4-2 > li {
    width: calc(50% - 4%);
    margin-bottom: 4%;
  }
}
.l_col--c4-1 {
  flex-wrap: wrap;
  margin: 0 -10px 0 0;
}
.l_col--c4-1 > div,
.l_col--c4-1 > li {
  width: calc(25% - 10px);
  margin-right: 10px;
}
@media only screen and (max-width: 750px) {
  .l_col--c4-1 > div,
  .l_col--c4-1 > li {
    width: 100%;
    margin-bottom: 4%;
  }
}
.l_col--c4 {
  flex-wrap: wrap;
  margin: 0 -10px 0 0;
}
@media only screen and (max-width: 750px) {
  .l_col--c4 {
    margin: 0 -5px 0 0;
  }
}
.l_col--c4 > div,
.l_col--c4 > li {
  width: calc(25% - 10px);
  margin-right: 10px;
}
@media only screen and (max-width: 750px) {
  .l_col--c4 > div,
  .l_col--c4 > li {
    margin-right: 5px;
    width: calc(25% - 5px);
    margin-bottom: 4%;
  }
}
.l_col--cF-2 {
  flex-wrap: wrap;
}
@media only screen and (max-width: 750px) {
  .l_col--cF-2 {
    margin: 0 -4% 0 0;
  }
}
@media print, screen and (min-width: 751px) {
  .l_col--cF-2 > div,
  .l_col--cF-2 > li {
    margin: 0 5px;
    flex-grow: 1;
  }
}
@media only screen and (max-width: 750px) {
  .l_col--cF-2 > div,
  .l_col--cF-2 > li {
    margin-right: 4%;
    width: calc(50% - 4%);
    margin-bottom: 4%;
  }
}
.l_col--mb_self {
  margin-bottom: 4%;
}
.l_col--mbNone {
  margin: 0;
}
.l_col--mbNone > div,
.l_col--mbNone > li {
  margin: 0;
}
.l_col--rr {
  flex-direction: row-reverse;
}

/*==================================*/
/*top*/
/*==================================*/
html, baoy {
  overflow-x: inherit;
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
}
@media print, screen and (min-width: 751px) {
  body {
    min-width: 1320px;
  }
}

@media print, screen and (min-width: 751px) {
  footer {
    margin-bottom: 150px;
  }
}

@media print, screen and (min-width: 751px) {
  .l-footer .l-footer__inner {
    max-width: inherit;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 750px) {
  .l-footer .l-footer__inner {
    padding: 16rem 0 2.6rem;
  }
}
p {
  color: #515353;
}

.c-h3 {
  font-weight: 600;
}
@media only screen and (max-width: 750px) {
  .c-h3 {
    line-height: 1.3 !important;
  }
}

.c-subTitle {
  height: 2rem;
  margin-left: 0.3em;
}
@media only screen and (max-width: 750px) {
  .c-subTitle {
    height: 1.5rem;
  }
}

@media print, screen and (min-width: 751px) {
  #txtMC1 {
    margin-right: -1em;
  }
}

@media print, screen and (min-width: 751px) {
  .feelSafe {
    width: 590px;
  }
}

@media print, screen and (min-width: 751px) {
  .choiceReason .choiceReason__inner {
    max-width: inherit;
    width: 95%;
    margin-left: auto;
  }
}

@media print, screen and (min-width: 751px) {
  .reason .reason__bg {
    width: 95%;
  }
}

@media print, screen and (min-width: 751px) {
  .box_contentArea .contentArea__wrap .box_content {
    padding-right: 20px;
  }
}

.supportArea {
  padding: 20px 20px 0 20px;
  overflow: hidden;
}
@media print, screen and (min-width: 751px) {
  .supportArea {
    flex: 1;
  }
}
@media only screen and (max-width: 750px) {
  .supportArea {
    padding: 10px 10px 0 10px;
  }
}

@media print, screen and (min-width: 751px) {
  .relieveAnxiety__titleArea,
  .relieveAnxiety__titleArea.pc {
    display: flex;
    align-items: center;
  }
  .relieveAnxiety__titleArea__inner,
  .relieveAnxiety__titleArea.pc__inner {
    width: 100%;
  }
  .relieveAnxiety__titleArea .relieveAnxiety__heading,
  .relieveAnxiety__titleArea.pc .relieveAnxiety__heading {
    margin-top: 50px;
  }
  .relieveAnxiety__titleArea .c-rainbow__logo,
  .relieveAnxiety__titleArea.pc .c-rainbow__logo {
    width: 70px;
    height: 70px;
    position: relative;
    top: inherit !important;
    left: inherit !important;
    margin: 0 auto 10px auto;
  }
  .relieveAnxiety__titleArea .c-rainbow__logo img,
  .relieveAnxiety__titleArea.pc .c-rainbow__logo img {
    width: 100%;
  }
}

.relieveAnxiety__box01 .relieveAnxiety__text .textArea .title,
.relieveAnxiety__box02 .relieveAnxiety__text .textArea .title,
.relieveAnxiety__box02 .relieveAnxiety__text .textArea .title__change,
.relieveAnxiety__box01 .relieveAnxiety__text .textArea .title__change {
  margin-bottom: 20px;
}
@media only screen and (max-width: 750px) {
  .relieveAnxiety__box01 .relieveAnxiety__text .textArea .title,
  .relieveAnxiety__box02 .relieveAnxiety__text .textArea .title,
  .relieveAnxiety__box02 .relieveAnxiety__text .textArea .title__change,
  .relieveAnxiety__box01 .relieveAnxiety__text .textArea .title__change {
    margin-bottom: 10px;
  }
}

.course__wrap .course__text p {
  text-align: left;
}

@media print, screen and (min-width: 751px) {
  .c-courseBtn {
    width: 27rem;
  }
}
@media only screen and (max-width: 750px) {
  .c-courseBtn {
    width: 18rem;
  }
}

.c-courseBtn,
.place__moreBtn-pc,
.place__moreBtn-sp {
  height: 6rem;
  background-color: #fff;
}
@media only screen and (max-width: 750px) {
  .c-courseBtn,
  .place__moreBtn-pc,
  .place__moreBtn-sp {
    border: 3px solid #A5A5A5;
    height: 5rem;
    line-height: 4.4rem;
  }
}
.c-courseBtn a,
.place__moreBtn-pc a,
.place__moreBtn-sp a {
  line-height: 5.5rem;
  background: url(https://45044564.fs1.hubspotusercontent-na2.net/hubfs/45044564/raw_assets/public/%E9%AB%98%E6%A0%A1/images/lp-feature/link_ic.svg) no-repeat;
  background-position: right 8px top calc(50% - 0.2rem);
  background-size: 23px;
  padding: 0 30px;
}
.c-courseBtn a:before, .c-courseBtn a:after,
.place__moreBtn-pc a:before,
.place__moreBtn-pc a:after,
.place__moreBtn-sp a:before,
.place__moreBtn-sp a:after {
  display: none;
}
@media only screen and (max-width: 750px) {
  .c-courseBtn a,
  .place__moreBtn-pc a,
  .place__moreBtn-sp a {
    background-size: 14px;
    padding: 0 22px;
    line-height: 4.4rem;
  }
}

@media only screen and (max-width: 750px) {
  .place__moreBtn-sp {
    width: 21rem;
  }
}

.course_content.lifeDesign .course__bg .course__wrap .course__text,
.course_content.goSchool .course__bg .course__wrap .course__text {
  margin-bottom: 3.5rem;
  padding-top: 1.5rem;
}

@media print, screen and (min-width: 751px) {
  .studyPlace__text {
    width: 47%;
  }
}

@media print, screen and (min-width: 751px) {
  .studyPlace__map {
    width: calc(53% - 60px);
  }
}

.p_note {
  font-size: 1.3rem !important;
  color: #969696 !important;
  display: inline-block !important;
  letter-spacing: 0;
  font-weight: normal;
}

.p_courseHead {
  display: block;
  margin: 0 auto;
  height: 10em;
  width: 1em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

#schoolingTable td {
  font-size: 1.6rem;
  line-height: 1.5;
}

.c-rainbow__logo--center {
  width: 70px;
  height: 70px;
  left: 50% !important;
  top: 0 !important;
  transform: translate(-50%, -100%);
}
@media only screen and (max-width: 750px) {
  .c-rainbow__logo--center {
    width: 40px;
    height: 40px;
  }
}

.c-h4--style {
  margin-bottom: 2.2rem;
  font-size: 3.6rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 3.6rem;
  color: #515353;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 60px;
}

@media screen and (max-width: 750px) {
  .c-h4--style {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 750px) {
  .schooling--manabiya {
    margin: 20px 20px 20px 20px;
  }
}
.schooling--manabiya__txt {
  line-height: 1.7;
  font-size: 1.6rem;
  color: #515353;
}
@media only screen and (max-width: 750px) {
  .schooling--manabiya .schooling__inner {
    overflow: inherit;
    padding: 40px 20px;
  }
}

.p_ttl_s1 {
  display: inline-flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.6rem;
  font-weight: bold;
}
.p_ttl_s1:before, .p_ttl_s1:after {
  content: "";
  height: 1px;
  flex: 1;
  background-color: #000;
  min-width: 2em;
}
.p_ttl_s1:before {
  margin-right: 1rem;
}
.p_ttl_s1:after {
  margin-left: 1rem;
}

@media print, screen and (min-width: 751px) {
  .price__table--type1 .school__fees {
    height: auto !important;
  }
}
@media print, screen and (min-width: 751px) {
  .price__table--type1 .school__fees .fees {
    padding: 20px 0 !important;
  }
}

@media only screen and (max-width: 750px) {
  .price__table .school__fees {
    height: auto !important;
    padding-bottom: 1.3em !important;
  }
}

.p_txt_lt {
  position: relative;
  top: -10px;
}

@media print, screen and (min-width: 751px) {
  .contactForm__area .document__request .contact__text {
    width: 72%;
  }
}

@media only screen and (max-width: 750px) {
  .contactForm__area .form_btn {
    height: 5.5rem;
    line-height: 4.9rem;
  }
}
.contactForm__area .form_btn a {
  background: url(https://45044564.fs1.hubspotusercontent-na2.net/hubfs/45044564/raw_assets/public/%E9%AB%98%E6%A0%A1/images/lp-feature/link_ic.svg) no-repeat;
  background-position: right 10px top calc(50% - 0.2rem);
  background-size: 25px;
  padding: 0 30px;
}
.contactForm__area .form_btn a:before {
  display: none;
}
@media only screen and (max-width: 750px) {
  .contactForm__area .form_btn a {
    background-size: 15px;
    padding: 0 20px;
  }
}

.p_question__box {
  position: relative;
  width: auto;
  min-height: 120px;
  background: #FAFBF2;
  padding: 20px;
  text-align: center;
  border: 2px solid #31B58F;
  border-radius: 10px;
  display: flex;
  align-items: center;
  width: calc(100% - 55px);
}
@media only screen and (max-width: 750px) {
  .p_question__box {
    min-height: inherit;
  }
}
.p_question__box:after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url(https://45044564.fs1.hubspotusercontent-na2.net/hubfs/45044564/raw_assets/public/%E9%AB%98%E6%A0%A1/images/lp-feature/huki.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(calc(100% - 3px), -50%);
  z-index: 1;
}
.p_question__box:before {
  content: "";
  display: block;
  width: 46px;
  height: 55px;
  background: url(https://45044564.fs1.hubspotusercontent-na2.net/hubfs/45044564/raw_assets/public/%E9%AB%98%E6%A0%A1/images/lp-feature/q_ic.svg) no-repeat;
  position: absolute;
  right: -10px;
  bottom: 0;
  transform: translateX(100%);
}
.p_question__box p {
  font-size: 1.6rem;
  color: #31b58f;
  text-align: left;
  font-weight: 500;
}
@media only screen and (max-width: 750px) {
  .p_question__box p {
    font-size: 1.4rem;
  }
}

.p_question > .l_col > div {
  margin-right: 20px;
}
.p_question > .l_col > div:nth-of-type(even) {
  margin-right: 0;
  margin-left: 20px;
}

@media print, screen and (min-width: 751px) {
  .topAc .topAc__inner--question {
    max-width: inherit;
    width: 1080px;
    margin: 0 auto;
  }
}
.topAc .topAc__inner--question .l_col > div {
  margin-bottom: 20px;
}

@media print, screen and (min-width: 751px) {
  .event__contents {
    justify-content: center;
  }
  .event__contents .event__box {
    margin: 0 50px;
  }
}

.p_btn {
  height: 7rem;
  font-size: 2rem;
  line-height: 7rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
  border: 3px solid #A5A5A5;
  border-radius: 35px;
  background: #fff;
  display: inline-block;
  color: #515353;
  background: url("https://45044564.fs1.hubspotusercontent-na2.net/hubfs/45044564/raw_assets/public/%E9%AB%98%E6%A0%A1/images/lp-feature/link_ic.svg") no-repeat #fff;
  background-position: right 10px top calc(50% - 0.2rem);
  background-size: 25px;
  padding: 0 80px;
  display: inline-block;
  min-width: 31.2rem;
}
@media only screen and (max-width: 750px) {
  .p_btn {
    min-width: inherit;
    height: 5rem;
    font-size: 1.4rem;
    line-height: 4.4rem;
    background-size: 15px;
    padding: 0 30px;
    min-width: 18rem;
  }
}
.p_btn--more {
  background: url(https://45044564.fs1.hubspotusercontent-na2.net/hubfs/45044564/raw_assets/public/%E9%AB%98%E6%A0%A1/images/lp-feature/ic_more_p.svg) no-repeat #fff;
  background-position: right 10px center;
}
@media only screen and (max-width: 750px) {
  .p_btn--more {
    background-position: right 5px center;
    background-size: 20px;
  }
}
.p_btn--more.__open {
  background: url(https://45044564.fs1.hubspotusercontent-na2.net/hubfs/45044564/raw_assets/public/%E9%AB%98%E6%A0%A1/images/lp-feature/ic_more_m.svg) no-repeat #fff;
  background-position: right 10px center;
}
@media only screen and (max-width: 750px) {
  .p_btn--more.__open {
    background-position: right 5px center;
    background-size: 20px;
  }
}

.p_hover {
  transition: .3s;
}
.p_hover:hover {
  opacity: 1;
}
@media print, screen and (min-width: 751px) {
  .p_hover:hover {
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px) translateX(-2px);
    z-index: 1;
  }
}
.p_hover:hover img {
  opacity: 1;
}

@media only screen and (max-width: 750px) {
  .netLearning {
    margin-bottom: 90px;
  }
}

.netLearning .netLearning__inner {
  max-width: inherit;
}
@media print, screen and (min-width: 751px) {
  .netLearning .netLearning__inner > div {
    width: calc(50% - 30px);
  }
}

.p_netSys {
  border-radius: 0 160px 40px 0;
  padding: 0 0 60px 0;
  background: url(https://45044564.fs1.hubspotusercontent-na2.net/hubfs/45044564/raw_assets/public/%E9%AB%98%E6%A0%A1/images/lp-feature/netsys_bg1.svg) no-repeat bottom -5px right -5px #fff8c3;
}
.p_netSys--set2 {
  border-radius: 40px 0 0 160px;
  padding: 60px 0 0 0;
  background: url(https://45044564.fs1.hubspotusercontent-na2.net/hubfs/45044564/raw_assets/public/%E9%AB%98%E6%A0%A1/images/lp-feature/netsys_bg2.svg) no-repeat bottom -5px left -5px #fef0fa;
}
@media only screen and (max-width: 750px) {
  .p_netSys {
    margin-right: 30px;
    border-radius: 0 100px 40px 0;
    background-size: auto 80%;
  }
  .p_netSys--set2 {
    margin-right: 0;
    margin-left: 30px;
    border-radius: 40px 0 0 100px;
    margin-top: 30%;
  }
}
.p_netSys__mv {
  margin-bottom: 50px;
  width: 80%;
}
.p_netSys__mv img {
  width: 100%;
}
@media only screen and (max-width: 750px) {
  .p_netSys__mv {
    width: auto;
    margin-bottom: 20px;
    margin-right: 60px;
  }
}
.p_netSys--set2 .p_netSys__mv {
  margin: 50px 0 0 auto;
  width: 80%;
}
@media only screen and (max-width: 750px) {
  .p_netSys--set2 .p_netSys__mv {
    margin: 20px 0 0 auto;
  }
}
.p_netSys__info {
  width: auto;
  margin: 0 60px 0 120px;
  color: #1F2121;
}
.p_netSys--set2 .p_netSys__info {
  margin: 0 120px 0 60px;
}
@media only screen and (max-width: 750px) {
  .p_netSys__info {
    margin: 0 20px 0 45px;
  }
  .p_netSys--set2 .p_netSys__info {
    margin: 0 45px 0 20px;
  }
}
.p_netSys__info__ttl_s {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 750px) {
  .p_netSys__info__ttl_s {
    margin-bottom: 5px;
    font-size: 1.2rem;
  }
}
.p_netSys__info__ttl {
  font-size: 3.8rem;
  margin-bottom: 1rem;
  font-weight: bold;
}
@media only screen and (max-width: 750px) {
  .p_netSys__info__ttl {
    margin-bottom: 10px;
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
.p_netSys__info__txt {
  font-size: 1.5rem;
  line-height: 1.6;
}
.p_netSys__mov {
  width: 400px;
  margin: 40px auto -120px auto;
  border: 6px solid #dcdcdc;
  border-radius: 10px;
}
@media only screen and (max-width: 750px) {
  .p_netSys__mov {
    width: 80%;
    margin: 40px auto -30% x auto;
  }
}

@media only screen and (max-width: 750px) {
  .p_logo_kk {
    width: 130px;
  }
}

.p_fixNav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 1000;
}
.p_fixNav__btn {
  display: block;
  background-color: #eefc11;
  height: 84px;
  width: 320px;
  border-radius: 60px 0 0 0;
  border: 3px solid #fff;
  border-bottom: none;
  border-right: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: .3s;
}
@media only screen and (max-width: 750px) {
  .p_fixNav__btn {
    width: 40vw;
    height: auto;
    padding: 15px 5px;
    border-radius: 10vw  0 0 0;
  }
}
.p_fixNav__btn--type2 {
  background-color: #63eda7;
  border-radius: 0 60px 0 0;
  border-right: 3px solid #fff;
  border-left: none;
}
@media only screen and (max-width: 750px) {
  .p_fixNav__btn--type2 {
    border-radius: 0 10vw 0 0;
  }
}
.p_fixNav__btn img {
  vertical-align: bottom;
  padding-top: 5px;
}
.p_fixNav__btn:hover {
  opacity: 1;
  box-shadow: 0px -10px 30px -6px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px) translateX(-2px) scale(1.05);
  z-index: 1;
}
.p_fixNav__btn:hover img {
  opacity: 1;
}
.p_fixNav__balloon {
  position: absolute;
  top: -10px;
  left: 0;
  transform: translate(20%, -100%);
}
@media only screen and (max-width: 750px) {
  .p_fixNav__balloon {
    display: none;
  }
}

.p_box {
  border: 1px solid #ccc;
  padding: 10px;
}

.p_jisseki {
  background-color: #fafbf2;
}
.p_jisseki__inner {
  width: 1080px;
  padding: 60px 0;
  margin: 90px auto;
}
@media only screen and (max-width: 750px) {
  .p_jisseki__inner {
    width: auto;
    margin: 0 15px;
  }
}
.p_jisseki__data {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 20px 30px;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
@media only screen and (max-width: 750px) {
  .p_jisseki__data {
    padding: 10px;
    font-size: 1.6rem;
  }
}
.p_jisseki__data__ttl {
  text-align: center;
  font-size: 2.4rem;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
  padding: 0 0 15px 0;
  font-weight: bold;
}
@media only screen and (max-width: 750px) {
  .p_jisseki__data__ttl {
    font-size: 2rem;
  }
}
.p_jisseki dl {
  display: flex;
  flex-wrap: wrap;
  margin: 0 1em;
  font-weight: 500;
}
@media only screen and (max-width: 750px) {
  .p_jisseki dl {
    display: block;
  }
}
.p_jisseki dl dt {
  width: 10em;
  padding-right: 2em;
  margin-bottom: 1em;
}
@media only screen and (max-width: 750px) {
  .p_jisseki dl dt {
    width: auto;
  }
}
.p_jisseki dl dd {
  flex: 1;
  min-width: calc(100% - 10em);
  margin-bottom: 1em;
  color: #31b58f;
}
@media only screen and (max-width: 750px) {
  .p_jisseki dl dd {
    min-width: inherit;
  }
}
.p_jisseki .p_btnLine {
  display: flex;
  align-items: center;
}
.p_jisseki .p_btnLine:before, .p_jisseki .p_btnLine:after {
  content: "";
  height: 1px;
  flex: 1;
  background-color: #000;
  min-width: 2em;
}
.p_jisseki .p_btnLine:before {
  margin-right: 1rem;
}
.p_jisseki .p_btnLine:after {
  margin-left: 1rem;
}

.p_relative {
  position: relative;
}
@media only screen and (max-width: 750px) {
  .p_relative {
    height: auto !important;
  }
}

@media only screen and (max-width: 750px) {
  #tani {
    height: auto;
  }
}

.p_arrow_box {
  position: relative;
  background: #3ab994;
  border-radius: 10px;
  color: #fff;
  padding: 10px;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: left;
  font-weight: normal;
}
@media print, screen and (min-width: 751px) {
  .p_arrow_box {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(95%, -50%);
  }
}
@media only screen and (max-width: 750px) {
  .p_arrow_box {
    margin: 20px 0;
    text-align: center;
    display: inline-block;
  }
}
.p_arrow_box strong {
  font-size: 150%;
}

@media print, screen and (min-width: 751px) {
  .p_arrow_box:after {
    right: 100%;
    top: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(58, 185, 148, 0);
    border-right-color: #3ab994;
    border-width: 6px;
    margin-top: -6px;
  }
}
@media only screen and (max-width: 750px) {
  .p_arrow_box:after {
    bottom: 100%;
    left: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(58, 185, 148, 0);
    border-bottom-color: #3ab994;
    border-width: 6px;
    margin-left: -6px;
  }
}

@media only screen and (max-width: 750px) {
  .event .event__inner .c-h3 {
    white-space: inherit;
  }
}

@media only screen and (max-width: 750px) {
  .event {
    background-color: #52b2ed;
    background-size: 100%;
    background-repeat: no-repeat;
  }
}

@media only screen and (max-width: 750px) {
  .box_contentArea .contentArea__wrap .box_content .text {
    margin-left: 3rem;
    margin-left: 15px;
  }
}

.relieveAnxiety__box01 .relieveAnxiety__text .textArea {
  padding-left: 8%;
  padding-right: 8%;
}

@media only screen and (max-width: 750px) {
  .circleArea span:nth-of-type(1) {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 750px) {
  .relieveAnxiety__box01 .relieveAnxiety__text,
  .relieveAnxiety__box01 .relieveAnxiety__text.change {
    border-radius: 0 48px 48px 0;
    border-left: none;
    margin-bottom: 10px;
  }

  .relieveAnxiety__box02 .relieveAnxiety__text,
  .relieveAnxiety__box02 .relieveAnxiety__text.change {
    border-radius: 48px 0 0 48px;
    border-right: none;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 750px) {
  .about .about__inner .about__box .box__text .box__message p {
    line-height: 1.5;
  }
}
@media print, screen and (min-width: 751px) {
  .support__image img {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 750px) {
  .course_content .course__bg {
    height: auto !important;
    padding-bottom: 20px;
    padding-top: 15px;
  }

  .course_content .course__image .course__logo {
    bottom: inherit;
    top: 40vw;
  }

  .course__text {
    padding-top: 0 !important;
    margin-bottom: 0 !important;
    height: inherit !important;
  }
  .course__text p {
    padding-top: 0 !important;
    margin-bottom: 0 !important;
  }
}
@media only screen and (max-width: 750px) {
  .course__wrap .course__subTitle .course__ex {
    margin-bottom: 1em;
  }
}
@media only screen and (max-width: 750px) {
  .schooling table thead tr {
    height: auto;
  }

  .schooling table thead tr th {
    padding: 18px 5px 10px 5px;
  }
}
@media only screen and (max-width: 750px) {
  .c-h4 span::before {
    left: 55%;
  }

  .c-h4::before {
    left: 45%;
    bottom: -1rem;
  }
}
@media only screen and (max-width: 750px) {
  .contactForm__area .consultation {
    height: 55rem;
  }

  .contactForm__area .document__request {
    height: 46.5rem;
  }
}
@media only screen and (max-width: 750px) {
  .contactForm .contactForm__inner .center__image {
    top: 44%;
    left: 10%;
    height: 38rem;
  }
}
@media only screen and (max-width: 750px) {
  .lineInfo .lineInfo__inner .line__wrapper {
    height: auto;
    padding: 4.5rem 3.1rem 4rem;
  }
}
@media print, screen and (min-width: 751px) {
  .contactForm .contactForm__inner {
    max-width: inherit;
  }
}
.p_btntel {
  line-height: 1;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.p_btntel__num {
  display: block;
  font-size: 1.4rem;
  margin-top: 5px;
}
@media only screen and (max-width: 750px) {
  .p_btntel__num {
    margin-top: 3pxpx;
  }
}

@media only screen and (max-width: 750px) {
  .tuitionSupport .tuitionSupport__inner {
    padding: 5.75rem 1.5rem 4.75rem;
  }
}
@media only screen and (max-width: 750px) {
  .event .event__inner {
    padding: 8.5rem 1rem 4rem;
  }
}
@media only screen and (max-width: 750px) {
  .event__contents .event__box {
    width: 95%;
    height: auto;
    margin: 0 auto 1.6rem;
    padding-top: 1.4rem;
    padding-right: 1.2rem;
    padding-left: 1.2rem;
    padding-bottom: 1.6rem;
  }
}
@media only screen and (max-width: 750px) {
  .event__contents .event__box .event__text {
    padding-top: 1rem;
    padding-right: 2.5rem;
    padding-left: 2.5rem;
    font-size: 1.4rem;
    line-height: 1.25;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 750px) {
  .support__content.scholarship .support p {
    font-size: 1.6rem;
    text-align: left;
  }

  .support__content.scholarship .support {
    height: inherit;
    padding-bottom: 1em;
  }
}
@media only screen and (max-width: 750px) {
  .reason .reason__bg {
    height: inherit;
    padding-bottom: 10px;
  }

  .reason .reason__bg .reason__wrapper {
    height: inherit;
  }
}
/*==================================*/
/*mv*/
/*==================================*/
.pageLogo {
  position: fixed;
  width: 400px;
  height: 80px;
  background-color: #fff;
  border-radius: 0 0 125px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
}
@media only screen and (max-width: 750px) {
  .pageLogo {
    width: 45%;
    height: auto;
    border-radius: 0 0 20vw 0;
    padding: 12px 0 5px 0;
  }
}
.pageLogo__inner {
  width: 220px;
}
@media only screen and (max-width: 750px) {
  .pageLogo__inner {
    width: 80%;
    vertical-align: bottom;
  }
}

.pageMv {
  position: relative;
  background-color: #def4ea;
  border-radius: 0 0 0 200px;
  display: flex;
}
@media print, screen and (min-width: 751px) {
  .pageMv {
    height: 100vh;
    min-height: 760px;
    max-height: 75vw;
  }
}
@media only screen and (max-width: 750px) {
  .pageMv {
    height: 100vh;
    border-radius: 0 0 0 15vw;
    height: calc(var(--vh, 1vh) * 100);
  }
}
.pageMv__photo {
  width: 50%;
  border-radius: 200px 0 0 0;
  overflow: hidden;
}
@media only screen and (max-width: 750px) {
  .pageMv__photo {
    width: 70%;
    border-radius: 40vw 0 0 0;
  }
}
.pageMv__photo img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 750px) {
  .pageMv__photo img {
    object-position: right center;
  }
}
.pageMv__main {
  width: 50%;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .pageMv__main {
    width: auto;
    flex: 1;
  }
}
.pageMv__main__ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
  max-height: 76%;
  max-width: 70vh;
}
@media only screen and (max-width: 750px) {
  .pageMv__main__ttl {
    width: 100%;
    margin: 0 5px;
  }
}
.pageMv__main__ttl img {
  object-fit: contain;
  object-position: center center;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 750px) {
  .pageMv__main__ttl img {
    max-height: 70vh;
  }
}
.pageMv__ic {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 750px) {
  .pageMv__ic {
    top: 39%;
    width: 45%;
    left: 65%;
    display: flex;
    justify-content: space-between;
  }
}
.pageMv__ic > div {
  margin: 30px 0;
}
@media only screen and (max-width: 750px) {
  .pageMv__ic > div {
    margin: 0 0;
    width: 48%;
  }
}
@media only screen and (max-width: 750px) {
  .pageMv__ic__item1 {
    position: relative;
    top: 30px;
  }
}

/*==================================*/
/*anime hide*/
/*==================================*/
.pageMv__photo,
.pageMv__ic__item1,
.pageMv__ic__item2,
.pageMv__main__ttl img,
.p_fixNav__btn,
.p_fixNav__balloon img {
  opacity: 0;
}

/*==================================*/
/*2024 new*/
/*==================================*/
.pikcUp__inner {
  max-width: 120rem;
  width: 100%;
  margin: 0 auto;
  padding: 12.8rem 0 11.1rem;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .pikcUp__inner {
    padding: 3.75rem 1.5rem 4.75rem;
  }
}
.pikcUp__inner .c-h3 {
  text-align: center;
}
.pikcUp__inner .c-subTitle {
  text-align: center;
}
.pikcUp .c-box__subTitle {
  text-align: center;
}
.pikcUp__lead {
  font-size: 2rem;
}
@media only screen and (max-width: 750px) {
  .pikcUp__lead {
    font-size: 1.6rem;
    text-align: left;
  }
}

.pikcUpList {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin-right: -60px;
}
@media only screen and (max-width: 750px) {
  .pikcUpList {
    display: block;
    margin: 0;
  }
}
.pikcUpList__item {
  box-sizing: border-box;
  width: calc(50% - 60px);
  background-color: #fff;
  border-radius: 48px;
  padding: 40px;
  border: 1px solid #ccc;
  margin: 0 60px 60px 0;
}
@media only screen and (max-width: 750px) {
  .pikcUpList__item {
    width: auto;
    margin: 0 0 20px 0;
    padding: 30px 10px;
    border-radius: 25px;
  }
}
.pikcUpList__item--full {
  width: 100%;
}
.pikcUpList__item .c-h4 {
  line-height: 1.4;
}
.pikcUpList__item .c-h4 p {
  margin-top: 10px;
  line-height: 1.2;
  font-size: 1.7rem;
  font-weight: bold;
  padding-bottom: 5px;
}
.pikcUpList__item .c-h4--style {
  font-size: 3rem;
  color: #31B690;
}
@media only screen and (max-width: 750px) {
  .pikcUpList__item .c-h4--style {
    font-size: 2.4rem;
  }
}
.pikcUpList__item > p {
  text-align: left;
  font-size: 1.6rem;
}
.pikcUpList__img--type2 {
  width: 85%;
}
.pikcUpList__suttl {
  font-size: 2rem;
  font-weight: bold;
  background-color: #31B690;
  padding: 5px;
  color: #fff;
  border-radius: 5px;
  margin-bottom: 10px;
  line-height: 1.2;
  text-align: left;
}
.pikcUpList__ttlCa {
  text-align: center;
  margin-top: 0;
}
.pikcUpList__ttlCa > div {
  line-height: 1.2;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: bold;
  background-color: #31B690;
  padding: 5px 10px;
  color: #fff;
  border-radius: 5px;
}
@media only screen and (max-width: 750px) {
  .pikcUpList__ttlCa > div {
    font-size: 1.4rem;
  }
}

.support__content .support {
  height: inherit;
  min-height: 10rem;
}

.p_color1 {
  color: #31B690 !important;
}

.p_color2 {
  color: #FA7D8F !important;
}

.p_color3 {
  color: #49a3c7 !important;
}

.p_color4 {
  color: #efb64f !important;
}

.p_table {
  border-collapse: collapse;
  border: 1px solid #e5e5e5;
  padding: 15px;
  background-color: #fff;
}
.p_table td {
  border-collapse: collapse;
  border: 1px solid #e5e5e5;
  padding: 15px;
}
.p_table td.-cellAl {
  padding-right: 40px;
  position: relative;
}
.p_table td.-cellAl:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #87131b;
}
.p_table th {
  border-collapse: collapse;
  border: 1px solid #e5e5e5;
  background-color: #F9F9F9;
  padding: 15px;
  text-align: left;
}
.p_table.-fixed {
  table-layout: fixed;
}
.p_table.-center td, .p_table.-center th {
  text-align: center;
}

@media only screen and (max-width: 750px) {
  .p_table--sp1 {
    border-bottom: none;
  }
  .p_table--sp1 td, .p_table--sp1 th {
    width: 100%;
    display: block;
    border: none;
    border-bottom: 1px solid #e5e5e5;
  }
}
.gakuhi2024 {
  text-align: left;
  margin-top: 30px;
}
.gakuhi2024__ttl {
  font-weight: bold;
  font-size: 2.6rem;
  margin-bottom: 10px;
  color: #FA7D8F;
}
.gakuhi2024__taisho {
  display: inline-block;
  padding: 5px;
  background-color: #FA7D8F;
  border-radius: 5px;
  line-height: 1.2;
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.gakuhi2024__fee {
  font-size: 2.2rem;
  font-weight: bold;
  color: #31B690;
}
@media only screen and (max-width: 750px) {
  .gakuhi2024__fee {
    font-size: 1.6rem;
  }
}

/*2025*/
.choiceReason__works .column {
  justify-content: center;
}

.p_marker1 {
  background: linear-gradient(rgba(115, 235, 206, 0) 50%, #73ebce 50%);
}

.p_marker2 {
  background: linear-gradient(rgba(255, 207, 216, 0) 50%, #ffcfd8 50%);
}

.p_marker3 {
  background: linear-gradient(rgba(122, 242, 249, 0) 50%, #7af2f9 50%);
}

.p_marker4 {
  background: linear-gradient(rgba(249, 225, 113, 0) 50%, #f9e171 50%);
}

.courseNew {
  margin-top: 60px;
}
@media only screen and (max-width: 750px) {
  .courseNew {
    margin-top: 40px;
  }
}
.courseNew__set {
  text-align: left;
  margin-bottom: 60px;
  border: 2px solid #31B690;
  overflow: hidden;
  border-radius: 50px 200px 50px 200px;
  background-color: #fff;
}
@media only screen and (max-width: 750px) {
  .courseNew__set {
    border-radius: 50px 100px 50px 50px;
    margin: 0 15px 60px 15px;
  }
}
.courseNew__set:last-of-type {
  margin-bottom: 0;
}
.courseNew__set.-course3 {
  border-color: #efb64f;
}
.courseNew__set.-course2 {
  border-color: #49a3c7;
}
.courseNew__set.-course4 {
  border-color: #FA7D8F;
}
.courseNew__set.-etc {
  border: none;
  border-radius: 50px;
}
.courseNew__head {
  border-radius: 0 0 0 100px;
  display: flex;
  background-color: #fff;
  box-shadow: 0px 10px 40px -6px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 750px) {
  .courseNew__head {
    border-radius: 0 0 0 50px;
    flex-direction: column-reverse;
    margin-bottom: 20px;
  }
}
.courseNew__head__info {
  flex: 1;
  padding: 30px 20px 30px 120px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}
@media print, screen and (min-width: 751px) {
  .courseNew__head__info {
    background: url(https://45044564.fs1.hubspotusercontent-na2.net/hubfs/45044564/raw_assets/public/%E9%AB%98%E6%A0%A1/images/lp-feature/2025/couser1.svg) no-repeat top -20px left 30px;
  }
}
@media only screen and (max-width: 750px) {
  .courseNew__head__info {
    padding: 30px 20px 40px 20px;
  }
}
@media only screen and (max-width: 750px) {
  .courseNew__head__info:after {
    content: "";
    width: 150px;
    height: 50px;
    background: url(https://45044564.fs1.hubspotusercontent-na2.net/hubfs/45044564/raw_assets/public/%E9%AB%98%E6%A0%A1/images/lp-feature/2025/couser1_sp.svg) no-repeat 0 0;
    background-size: contain;
    position: absolute;
    top: -20px;
    left: -30px;
  }
}
@media print, screen and (min-width: 751px) {
  .courseNew__head__info.-course3 {
    background: url(https://45044564.fs1.hubspotusercontent-na2.net/hubfs/45044564/raw_assets/public/%E9%AB%98%E6%A0%A1/images/lp-feature/2025/couser3.svg) no-repeat top -20px left 30px;
  }
}
@media only screen and (max-width: 750px) {
  .courseNew__head__info.-course3:after {
    background: url(https://45044564.fs1.hubspotusercontent-na2.net/hubfs/45044564/raw_assets/public/%E9%AB%98%E6%A0%A1/images/lp-feature/2025/couser3_sp.svg) no-repeat 0 0;
    background-size: contain;
  }
}
@media print, screen and (min-width: 751px) {
  .courseNew__head__info.-course2 {
    background: url(https://45044564.fs1.hubspotusercontent-na2.net/hubfs/45044564/raw_assets/public/%E9%AB%98%E6%A0%A1/images/lp-feature/2025/couser2.svg) no-repeat top -20px left 30px;
  }
}
@media only screen and (max-width: 750px) {
  .courseNew__head__info.-course2:after {
    background: url(https://45044564.fs1.hubspotusercontent-na2.net/hubfs/45044564/raw_assets/public/%E9%AB%98%E6%A0%A1/images/lp-feature/2025/couser2_sp.svg) no-repeat 0 0;
    background-size: contain;
  }
}
@media print, screen and (min-width: 751px) {
  .courseNew__head__info.-course4 {
    background: url(https://45044564.fs1.hubspotusercontent-na2.net/hubfs/45044564/raw_assets/public/%E9%AB%98%E6%A0%A1/images/lp-feature/2025/couser4.svg) no-repeat top -20px left 30px;
  }
}
@media only screen and (max-width: 750px) {
  .courseNew__head__info.-course4:after {
    background: url(https://45044564.fs1.hubspotusercontent-na2.net/hubfs/45044564/raw_assets/public/%E9%AB%98%E6%A0%A1/images/lp-feature/2025/couser4_sp.svg) no-repeat 0 0;
    background-size: contain;
  }
}
.courseNew__head__mv {
  width: 56%;
  border-radius: 0 0 0 100px;
  position: relative;
}
@media print, screen and (min-width: 751px) {
  .courseNew__head__mv {
    overflow: hidden;
  }
}
@media only screen and (max-width: 750px) {
  .courseNew__head__mv {
    border-radius: 0;
    width: 100%;
  }
}
.courseNew__head__mv img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.courseNew__head__mv__badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 280px;
}
@media only screen and (max-width: 750px) {
  .courseNew__head__mv__badge {
    width: 50%;
    left: inherit;
    right: 5px;
    bottom: -25px;
  }
}
.courseNew__head__mv__badge.-type2 {
  width: 150px;
}
@media only screen and (max-width: 750px) {
  .courseNew__head__mv__badge.-type2 {
    width: 25%;
  }
}
.courseNew__body {
  border-radius: 0 0 50px 50px;
  background-color: #fff;
  padding: 40px 120px 60px 120px;
  text-align: left;
}
@media only screen and (max-width: 750px) {
  .courseNew__body {
    padding: 20px 20px 40px 20px;
  }
}
.courseNew__ttl {
  font-size: 6rem;
  line-height: 1.2;
  color: #31B58F;
  font-weight: bold;
  letter-spacing: -0.05em;
}
@media only screen and (max-width: 750px) {
  .courseNew__ttl {
    font-size: 4.2rem;
  }
}
.courseNew__ttl__sub {
  letter-spacing: -0.05em;
  font-size: 3rem;
}
@media only screen and (max-width: 750px) {
  .courseNew__ttl__sub {
    font-size: 2rem;
  }
}
.courseNew__lead {
  margin: 30px 0 0 0;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media only screen and (max-width: 750px) {
  .courseNew__lead {
    font-size: 1.6rem;
    margin: 10px 0 0 0;
  }
}
.courseNew__point__item.-type2 {
  padding: 15px 20px 10px 20px;
  border-radius: 20px;
  background-color: #f2f2f2;
  display: flex;
  align-items: center;
}
.courseNew__point__img {
  margin-bottom: 20px;
}
.courseNew__point__img img {
  border: 1px solid #ccc;
  border-radius: 10px;
  width: 100%;
}
.courseNew__point h4 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.courseNew__point p {
  font-size: 1.6rem;
}

.coursePluse__mt {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 30px;
}
@media only screen and (max-width: 750px) {
  .coursePluse__mt {
    text-align: left;
    font-size: 1.6rem;
  }
}
.coursePluse__yobi h5 {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 10px;
  color: #49a3c7;
}
.coursePluse__yobi h5 > p {
  color: #49a3c7;
}
@media only screen and (max-width: 750px) {
  .coursePluse__yobi h5 > p {
    margin-bottom: 10px;
  }
}
.coursePluse__yobi h5 small {
  font-size: 1.6rem;
}
.coursePluse__yobi__item {
  margin-bottom: 60px;
}
.coursePluse__yobi__item:last-of-type {
  margin-bottom: 0;
}
@media only screen and (max-width: 750px) {
  .coursePluse__yobi__item {
    margin-bottom: 40px;
  }
}
.coursePluse__yobi__header {
  display: flex;
  align-items: center;
  line-height: 1.2;
  background-color: #d7eefa;
  padding: 5px;
  border-radius: 5px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 750px) {
  .coursePluse__yobi__header {
    margin-bottom: 10px;
  }
}
.coursePluse__yobi__header__type {
  background-color: #49a3c7;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
}
.coursePluse__yobi__header__msg {
  padding: 5px;
  font-size: 2rem;
  font-weight: bold;
  flex: 1;
  margin-left: 10px;
}
@media only screen and (max-width: 750px) {
  .coursePluse__yobi__header__msg {
    font-size: 1.6rem;
  }
}
.coursePluse__yobi__set {
  display: flex;
}
@media only screen and (max-width: 750px) {
  .coursePluse__yobi__set {
    flex-direction: column-reverse;
  }
}
.coursePluse__yobi__set__img {
  width: 300px;
}
@media only screen and (max-width: 750px) {
  .coursePluse__yobi__set__img {
    width: auto;
    text-align: center;
  }
  .coursePluse__yobi__set__img img {
    width: 80%;
  }
}
.coursePluse__yobi__set__main {
  flex: 1;
  margin-left: 60px;
}
@media only screen and (max-width: 750px) {
  .coursePluse__yobi__set__main {
    margin: 10px 0 0 0;
  }
}
.coursePluse__yobi__set__main p {
  font-size: 1.6rem;
}

.pointSet {
  background: url(https://45044564.fs1.hubspotusercontent-na2.net/hubfs/45044564/raw_assets/public/%E9%AB%98%E6%A0%A1/images/lp-feature/2025/point_ic.svg) no-repeat top left;
  background-size: 65px;
  padding: 20px 0 20px 90px;
}
@media only screen and (max-width: 750px) {
  .pointSet {
    padding: 20px 0 20px 50px;
    background-size: 55px;
  }
}

@media only screen and (max-width: 750px) {
  /*===========
  .scroll-box
  ===========*/
  .scroll-box {
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .scroll-box div img {
    max-width: 100%;
    min-width: 650px;
    vertical-align: top;
  }

  /*===========
  scrollbar
  ===========*/
  /*スクロールバー全体の高さ*/
  .scroll-box::-webkit-scrollbar {
    height: 4px;
  }

  /*スクロールバー全体の背景*/
  .scroll-box::-webkit-scrollbar-track {
    background: #eee;
  }

  /*スクロールバーの動く部分*/
  .scroll-box::-webkit-scrollbar-thumb {
    background: #aaa;
    border: none;
  }

  /*スクロールバーの動く部分のホバー（マウスオーバー）*/
  .scroll-box::-webkit-scrollbar-thumb:hover {
    background: #999;
  }
}
@media only screen and (max-width: 750px) {
  .reason .reason__bg {
    background-image: url(https://45044564.fs1.hubspotusercontent-na2.net/hubfs/45044564/raw_assets/public/%E9%AB%98%E6%A0%A1/images/lp-feature/2025/sp_reason.png);
  }
}

.c-h4 {
  position: relative;
}

.c-h4::before,
.c-h4::after,
.c-h4 > span::before {
  display: none;
}

.c-h4::before {
  content: "";
  display: block;
  background: url(https://45044564.fs1.hubspotusercontent-na2.net/hubfs/45044564/raw_assets/public/%E9%AB%98%E6%A0%A1/images/lp-feature/2025/ttl_bg_ic.svg) no-repeat top center;
  background-size: contain;
  width: 50px;
  height: 3px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2rem;
}
@media only screen and (max-width: 750px) {
  .c-h4::before {
    bottom: -1.5rem;
  }
}

/*2026*/

.price__table .actual__burden .fees__first {
  padding-top: 7rem;
}
@media screen and (max-width: 750px) {
  .price__table .actual__burden .fees__first {
    padding-top: 1.2rem;
  }
}
.price__table .annual__income .first .first__price {
  padding-top: 7rem;
}
@media screen and (max-width: 750px) {
  .price__table .annual__income .first .first__price {
    padding-top: 0.2rem;
  }
}

@media screen and (max-width: 750px) {
  .price__table .annual__income {
//    height: 17.5rem;
      height: auto;
    padding: 1.3rem 1.7rem 0;

  }
}
@media screen and (max-width: 750px) {
  .price__table .annual__income .first .first__price {
//    padding-top: 0.2rem;
      padding-top: 2rem;
      padding-bottom: 2rem;
  }
}


.footer__box .tel__info {
    display: block;
}
.footer__box .tel__info p{
    display: block;
    text-align: center;
}
@media screen and (max-width: 750px) {
  .footer__box .official__hp {
    width: 24rem;
  }
}


/*==================================*/
/*COMMON CLASS*/
/*==================================*/
/*------------------------------*/
/*pc/sp*/
/*------------------------------*/
.u_sp {
  display: none !important;
}

@media only screen and (max-width: 750px) {
  .u_pc {
    display: none !important;
  }

  .u_sp {
    display: block !important;
  }
}
/*------------------------------*/
/*link */
/*------------------------------*/
a.u_linknone {
  pointer-events: none;
  cursor: default;
}

/*------------------------------*/
/*TXT*/
/*------------------------------*/
.u_txtSmall {
  font-size: 80%;
  line-height: 150%;
}

.u_txtMidium {
  font-size: 120%;
  line-height: 150%;
}

.u_lh1 {
  line-height: 1 !important;
}

.u_lh1_5 {
  line-height: 1.5 !important;
}

.u_lh1_8 {
  line-height: 1.8 !important;
}

/*------------------------------*/
/*TXT*/
/*------------------------------*/
.u_ft10 {
  font-size: 10px !important;
  font-size: 1.0rem !important;
}

.u_ft11 {
  font-size: 11px !important;
  font-size: 1.1rem !important;
}

.u_ft12 {
  font-size: 12px !important;
  font-size: 1.2rem !important;
}

.u_ft13 {
  font-size: 13px !important;
  font-size: 1.3rem !important;
}

.u_ft14 {
  font-size: 14px !important;
  font-size: 1.4rem !important;
}

.u_ft15 {
  font-size: 15px !important;
  font-size: 1.5rem !important;
}

.u_ft16 {
  font-size: 16px !important;
  font-size: 1.6rem !important;
}

.u_ft17 {
  font-size: 17px !important;
  font-size: 1.7rem !important;
}

.u_ft18 {
  font-size: 18px !important;
  font-size: 1.8rem !important;
}

.u_ft19 {
  font-size: 19px !important;
  font-size: 1.9rem !important;
}

.u_ft20 {
  font-size: 20px !important;
  font-size: 2.0rem !important;
}

.u_ft21 {
  font-size: 21px !important;
  font-size: 2.1rem !important;
}

.u_ft22 {
  font-size: 22px !important;
  font-size: 2.2rem !important;
}

.u_ft23 {
  font-size: 23px !important;
  font-size: 2.3rem !important;
}

.u_ft24 {
  font-size: 24px !important;
  font-size: 2.4rem !important;
}

.u_ft25 {
  font-size: 25px !important;
  font-size: 2.5rem !important;
}

.u_ft30 {
  font-size: 30px !important;
  font-size: 3.0rem !important;
}

.u_ft35 {
  font-size: 35px !important;
  font-size: 3.5rem !important;
}

.u_ft40 {
  font-size: 40px !important;
  font-size: 4.0rem !important;
}

.u_ft45 {
  font-size: 45px !important;
  font-size: 4.5rem !important;
}

.u_ft50 {
  font-size: 50px !important;
  font-size: 5.0rem !important;
}

.u_ft60 {
  font-size: 50px !important;
  font-size: 6.0rem !important;
}

/*--- font-weight ----------*/
.u_ftB {
  font-weight: bold;
}

.u_ftNo {
  font-weight: normal;
}

/*------------------------------*/
/*LAYOUT*/
/*------------------------------*/
.u_floatLeft {
  float: left;
}

.u_floatRight {
  float: right;
}

.u_centerBox {
  text-align: center;
}

.u_rightBox {
  text-align: right;
}

/*------------------------------*/
/*LAYOUT2*/
/*------------------------------*/
.u_flL {
  float: left;
}

.u_flR {
  float: right;
}

.u_flLPc {
  float: left;
}

.u_flRPc {
  float: right;
}

@media screen and (max-width: 767px) {
  .u_flLPc,
  .u_flRPc {
    float: none;
  }
}
.u_txL {
  text-align: left;
}

.u_txC {
  text-align: center;
}

.u_txR {
  text-align: right;
}

@media screen and (min-width: 768px) {
  .u_txL__pc {
    text-align: left;
  }

  .u_txC__pc {
    text-align: center;
  }

  .u_txR__pc {
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .u_txL__sp {
    text-align: left;
  }

  .u_txC__sp {
    text-align: center;
  }

  .u_txR__sp {
    text-align: right;
  }
}
/*------------------------------*/
/*colum*/
/*------------------------------*/
.u_clm2-1,
.u_clm2-2,
.u_clm3-1,
.u_clm3-2,
.u_clm3-3,
.u_clm4-1,
.u_clm4-2,
.u_clm4-4,
.u_clm5-1,
.u_clm5-2,
.u_clm5-3,
.u_clm5-5 {
  width: 100%;
  overflow: hidden;
}

ul.u_clm2-1 > li, .u_clm2-1 > dl, .u_clm2-1 > div,
ul.u_clm2-2 > li, .u_clm2-2 > dl, .u_clm2-2 > div,
ul.u_clm3-1 > li, .u_clm3-1 > dl, .u_clm3-1 > div,
ul.u_clm3-2 > li, .u_clm3-2 > dl, .u_clm3-2 > div,
ul.u_clm3-3 > li, .u_clm3-3 > dl, .u_clm3-3 > div,
ul.u_clm4-1 > li, .u_clm4-1 > dl, .u_clm4-1 > div,
ul.u_clm4-2 > li, .u_clm4-2 > dl, .u_clm4-2 > div,
ul.u_clm4-4 > li, .u_clm4-4 > dl, .u_clm4-4 > div,
ul.u_clm5-1 > li, .u_clm5-1 > dl, .u_clm5-1 > div,
ul.u_clm5-2 > li, .u_clm5-2 > dl, .u_clm5-2 > div,
ul.u_clm5-3 > li, .u_clm5-3 > dl, .u_clm5-3 > div,
ul.u_clm5-5 > li, .u_clm5-5 > dl, .u_clm5-5 > div {
  float: left;
  margin-bottom: 2%;
}

ul.u_clm2-1 > li a, .u_clm2-1 > dl > a, .u_clm2-1 > div > a,
ul.u_clm2-2 > li a, .u_clm2-2 > dl > a, .u_clm2-2 > div > a,
ul.u_clm3-1 > li a, .u_clm3-1 > dl > a, .u_clm3-1 > div > a,
ul.u_clm3-2 > li a, .u_clm3-2 > dl > a, .u_clm3-2 > div > a,
ul.u_clm3-3 > li a, .u_clm3-3 > dl > a, .u_clm3-3 > div > a,
ul.u_clm4-1 > li a, .u_clm4-1 > dl > a, .u_clm4-1 > div > a,
ul.u_clm4-2 > li a, .u_clm4-2 > dl > a, .u_clm4-2 > div > a,
ul.u_clm4-4 > li a, .u_clm4-4 > dl > a, .u_clm4-4 > div > a,
ul.u_clm5-1 > li a, .u_clm5-1 > dl > a, .u_clm5-1 > div > a,
ul.u_clm5-2 > li a, .u_clm5-2 > dl > a, .u_clm5-2 > div > a,
ul.u_clm5-3 > li a, .u_clm5-3 > dl > a, .u_clm5-3 > div > a,
ul.u_clm5-5 > li a, .u_clm5-5 > dl > a, .u_clm5-5 > div > a {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  ul.u_clm2-1 > li, .u_clm2-1 > dl, .u_clm2-1 > div,
  ul.u_clm2-2 > li, .u_clm2-2 > dl, .u_clm2-2 > div,
  ul.u_clm3-1 > li, .u_clm3-1 > dl, .u_clm3-1 > div,
  ul.u_clm3-2 > li, .u_clm3-2 > dl, .u_clm3-2 > div,
  ul.u_clm3-3 > li, .u_clm3-3 > dl, .u_clm3-3 > div,
  ul.u_clm4-1 > li, .u_clm4-1 > dl, .u_clm4-1 > div,
  ul.u_clm4-2 > li, .u_clm4-2 > dl, .u_clm4-2 > div,
  ul.u_clm4-4 > li, .u_clm4-4 > dl, .u_clm4-4 > div,
  ul.u_clm5-1 > li, .u_clm5-1 > dl, .u_clm5-1 > div,
  ul.u_clm5-2 > li, .u_clm5-2 > dl, .u_clm5-2 > div,
  ul.u_clm5-3 > li, .u_clm5-3 > dl, .u_clm5-3 > div,
  ul.u_clm5-5 > li, .u_clm5-5 > dl, .u_clm5-5 > div {
    float: left;
    margin-bottom: 2%;
  }
}
ul.u_clm2-1 > li, .u_clm2-1 > dl, .u_clm2-1 > div,
ul.u_clm2-2 > li, .u_clm2-2 > dl, .u_clm2-2 > div {
  width: 49%;
  margin-right: 2%;
}

ul.u_clm2-1 > li:nth-child(2n), .u_clm2-1 > dl:nth-child(2n), .u_clm2-1 > div:nth-child(2n),
ul.u_clm2-2 > li:nth-child(2n), .u_clm2-2 > dl:nth-child(2n), .u_clm2-2 > div:nth-child(2n) {
  margin-right: 0;
}

ul.u_clm3-1 > li, .u_clm3-1 > dl, .u_clm3-1 > div,
ul.u_clm3-2 > li, .u_clm3-2 > dl, .u_clm3-2 > div,
ul.u_clm3-3 > li, .u_clm3-3 > dl, .u_clm3-3 > div {
  width: 32%;
  margin-right: 2%;
}

ul.u_clm3-1 > li:nth-child(3n), .u_clm3-1 > dl:nth-child(3n), .u_clm3-1 > div:nth-child(3n),
ul.u_clm3-2 > li:nth-child(3n), .u_clm3-2 > dl:nth-child(3n), .u_clm3-2 > div:nth-child(3n),
ul.u_clm3-3 > li:nth-child(3n), .u_clm3-3 > dl:nth-child(3n), .u_clm3-3 > div:nth-child(3n) {
  margin-right: 0;
}

ul.u_clm4-1 > li, .u_clm4-1 > dl, .u_clm4-1 > div,
ul.u_clm4-2 > li, .u_clm4-2 > dl, .u_clm4-2 > div,
ul.u_clm4-4 > li, .u_clm4-4 > dl, .u_clm4-4 > div {
  width: 23.5%;
  margin-right: 2%;
}

ul.u_clm4-1 > li:nth-child(4n), .u_clm4-1 > dl:nth-child(4n), .u_clm4-1 > div:nth-child(4n),
ul.u_clm4-2 > li:nth-child(4n), .u_clm4-2 > dl:nth-child(4n), .u_clm4-2 > div:nth-child(4n),
ul.u_clm4-4 > li:nth-child(4n), .u_clm4-4 > dl:nth-child(4n), .u_clm4-4 > div:nth-child(4n) {
  margin-right: 0;
}

ul.u_clm5-1 > li, .u_clm5-1 > dl, .u_clm5-1 > div,
ul.u_clm5-2 > li, .u_clm5-2 > dl, .u_clm5-2 > div,
ul.u_clm5-3 > li, .u_clm5-3 > dl, .u_clm5-3 > div,
ul.u_clm5-5 > li, .u_clm5-5 > dl, .u_clm5-5 > div {
  width: 18.4%;
  margin-right: 2%;
}

ul.u_clm5-1 > li:nth-child(5n), .u_clm5-1 > dl:nth-child(5n), .u_clm5-1 > div:nth-child(5n),
ul.u_clm5-2 > li:nth-child(5n), .u_clm5-2 > dl:nth-child(5n), .u_clm5-2 > div:nth-child(5n),
ul.u_clm5-3 > li:nth-child(5n), .u_clm5-3 > dl:nth-child(5n), .u_clm5-3 > div:nth-child(5n),
ul.u_clm5-5 > li:nth-child(5n), .u_clm5-5 > dl:nth-child(5n), .u_clm5-5 > div:nth-child(5n) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  ul.u_clm2-1 > li, .u_clm2-1 > dl, .u_clm2-1 > div,
  ul.u_clm3-1 > li, .u_clm3-1 > dl, .u_clm3-1 > div,
  ul.u_clm4-1 > li, .u_clm4-1 > dl, .u_clm4-1 > div,
  ul.u_clm5-1 > li, .u_clm5-1 > dl, .u_clm5-1 > div {
    width: 100%;
    margin-right: 0;
  }

  ul.u_clm3-2 > li, .u_clm3-2 > dl, .u_clm3-2 > div,
  ul.u_clm4-2 > li, .u_clm4-2 > dl, .u_clm4-2 > div,
  ul.u_clm5-2 > li, .u_clm5-2 > dl, .u_clm5-2 > div {
    width: 49%;
    margin-right: 2%;
  }

  ul.u_clm3-2 > li:nth-child(3n), .u_clm3-2 > dl:nth-child(3n), .u_clm3-2 > div:nth-child(3n) {
    margin-right: 2%;
  }

  ul.u_clm3-2 > li:nth-child(2n), .u_clm3-2 > dl:nth-child(2n), .u_clm3-2 > div:nth-child(2n) {
    margin-right: 0;
  }

  ul.u_clm4-2 > li:nth-child(2n), .u_clm4-2 > dl:nth-child(2n), .u_clm4-2 > div:nth-child(2n) {
    margin-right: 0;
  }

  ul.u_clm5-2 > li:nth-child(2n), .u_clm5-2 > dl:nth-child(2n), .u_clm5-2 > div:nth-child(2n) {
    margin-right: 0;
  }

  ul.u_clm5-3 > li, .u_clm5-3 > dl, .u_clm5-3 > div {
    width: 32%;
    margin-right: 2%;
  }

  ul.u_clm5-3 > li:nth-child(5n), .u_clm5-3 > dl:nth-child(5n), .u_clm5-3 > div:nth-child(5n) {
    margin-right: 2%;
  }

  ul.u_clm5-3 > li:nth-child(3n), .u_clm5-3 > dl:nth-child(3n), .u_clm5-3 > div:nth-child(3n) {
    margin-right: 0;
  }
}
/*--- column（inline-block） ----------*/
.u_clmIb2-1,
.u_clmIb2-2,
.u_clmIb3-1,
.u_clmIb3-2,
.u_clmIb3-3,
.u_clmIb4-1,
.u_clmIb4-2,
.u_clmIb4-4,
.u_clmIb5-1,
.u_clmIb5-3,
.u_clmIb5-5 {
  width: 100%;
  letter-spacing: -0.4em;
}

ul.u_clmIb2-1 > li, .u_clmIb2-1 > dl, .u_clmIb2-1 > div,
ul.u_clmIb2-2 > li, .u_clmIb2-2 > dl, .u_clmIb2-2 > div,
ul.u_clmIb3-1 > li, .u_clmIb3-1 > dl, .u_clmIb3-1 > div,
ul.u_clmIb3-2 > li, .u_clmIb3-2 > dl, .u_clmIb3-2 > div,
ul.u_clmIb3-3 > li, .u_clmIb3-3 > dl, .u_clmIb3-3 > div,
ul.u_clmIb4-1 > li, .u_clmIb4-1 > dl, .u_clmIb4-1 > div,
ul.u_clmIb4-2 > li, .u_clmIb4-2 > dl, .u_clmIb4-2 > div,
ul.u_clmIb4-4 > li, .u_clmIb4-4 > dl, .u_clmIb4-4 > div,
ul.u_clmIb5-1 > li, .u_clmIb5-1 > dl, .u_clmIb5-1 > div,
ul.u_clmIb5-3 > li, .u_clmIb5-3 > dl, .u_clmIb5-3 > div,
ul.u_clmIb5-5 > li, .u_clmIb5-5 > dl, .u_clmIb5-5 > div {
  display: inline-block;
  letter-spacing: normal;
}

ul.u_clmIb2-1 > li, .u_clmIb2-1 > dl, .u_clmIb2-1 > div,
ul.u_clmIb2-2 > li, .u_clmIb2-2 > dl, .u_clmIb2-2 > div {
  width: 50%;
}

ul.u_clmIb3-1 > li, .u_clmIb3-1 > dl, .u_clmIb3-1 > div,
ul.u_clmIb3-2 > li, .u_clmIb3-2 > dl, .u_clmIb3-2 > div,
ul.u_clmIb3-3 > li, .u_clmIb3-3 > dl, .u_clmIb3-3 > div {
  width: 33.333%;
}

ul.u_clmIb3-1 > li:nth-child(3n+2), .u_clmIb3-1 > dl:nth-child(3n+2), .u_clmIb3-1 > div:nth-child(3n+2),
ul.u_clmIb3-2 > li:nth-child(3n+2), .u_clmIb3-2 > dl:nth-child(3n+2), .u_clmIb3-2 > div:nth-child(3n+2),
ul.u_clmIb3-3 > li:nth-child(3n+2), .u_clmIb3-3 > dl:nth-child(3n+2), .u_clmIb3-3 > div:nth-child(3n+2) {
  width: 33.334%;
}

ul.u_clmIb4-1 > li, .u_clmIb4-1 > dl, .u_clmIb4-1 > div,
ul.u_clmIb4-2 > li, .u_clmIb4-2 > dl, .u_clmIb4-2 > div,
ul.u_clmIb4-4 > li, .u_clmIb4-4 > dl, .u_clmIb4-4 > div {
  width: 25%;
}

ul.u_clmIb5-1 > li, .u_clmIb5-1 > dl, .u_clmIb5-1 > div,
ul.u_clmIb5-3 > li, .u_clmIb5-3 > dl, .u_clmIb5-3 > div,
ul.u_clmIb5-5 > li, .u_clmIb5-5 > dl, .u_clmIb5-5 > div {
  width: 20%;
}

ul.u_clmIb2-1 > li a, .u_clmIb2-1 > dl > a, .u_clmIb2-1 > div > a,
ul.u_clmIb2-2 > li a, .u_clmIb2-2 > dl > a, .u_clmIb2-2 > div > a,
ul.u_clmIb3-1 > li a, .u_clmIb3-1 > dl > a, .u_clmIb3-1 > div > a,
ul.u_clmIb3-2 > li a, .u_clmIb3-2 > dl > a, .u_clmIb3-2 > div > a,
ul.u_clmIb3-3 > li a, .u_clmIb3-3 > dl > a, .u_clmIb3-3 > div > a,
ul.u_clmIb4-1 > li a, .u_clmIb4-1 > dl > a, .u_clmIb4-1 > div > a,
ul.u_clmIb4-2 > li a, .u_clmIb4-2 > dl > a, .u_clmIb4-2 > div > a,
ul.u_clmIb4-4 > li a, .u_clmIb4-4 > dl > a, .u_clmIb4-4 > div > a,
ul.u_clmIb5-1 > li a, .u_clmIb5-1 > dl > a, .u_clmIb5-1 > div > a,
ul.u_clmIb5-3 > li a, .u_clmIb5-3 > dl > a, .u_clmIb5-3 > div > a,
ul.u_clmIb5-5 > li a, .u_clmIb5-5 > dl > a, .u_clmIb5-5 > div > a {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  ul.u_clmIb2-1 > li, .u_clmIb2-1 > dl, .u_clmIb2-1 > div,
  ul.u_clmIb3-1 > li, .u_clmIb3-1 > dl, .u_clmIb3-1 > div,
  ul.u_clmIb4-1 > li, .u_clmIb4-1 > dl, .u_clmIb4-1 > div,
  ul.u_clmIb5-1 > li, .u_clmIb5-1 > dl, .u_clmIb5-1 > div {
    width: 100%;
  }

  ul.u_clmIb3-1 > li:nth-child(3n+2), .u_clmIb3-1 > dl:nth-child(3n+2), .u_clmIb3-1 > div:nth-child(3n+2) {
    width: 100%;
  }

  ul.u_clmIb3-2 > li, .u_clmIb3-2 > dl, .u_clmIb3-2 > div,
  ul.u_clmIb4-2 > li, .u_clmIb4-2 > dl, .u_clmIb4-2 > div {
    width: 50%;
  }

  ul.u_clmIb3-2 > li:nth-child(3n+2), .u_clmIb3-2 > dl:nth-child(3n+2), .u_clmIb3-2 > div:nth-child(3n+2) {
    width: 50%;
  }

  ul.u_clmIb5-3 > li, .u_clmIb5-3 > dl, .u_clmIb5-3 > div {
    width: 33.333%;
  }

  ul.u_clmIb5-3 > li:nth-child(3n+2), .u_clmIb5-3 > dl:nth-child(3n+2), .u_clmIb5-3 > div:nth-child(3n+2) {
    width: 33.334%;
  }
}
/*--- flexbox ----------*/
.u_clmFl2, ul.u_clmFl2 > li, .u_clmFl2 > dl,
.u_clmFl3, ul.u_clmFl3 > li, .u_clmFl3 > dl,
.u_clmFl4, ul.u_clmFl4 > li, .u_clmFl4 > dl,
.u_clmFl5, ul.u_clmFl5 > li, .u_clmFl5 > dl {
  display: flex;
  display: -webkit-box;
  /* Androidブラウザ用 */
  display: -ms-flexbox;
  /* IE10 */
  display: -webkit-flex;
  /* safari（PC）用 */
  justify-content: space-between;
  align-content: space-between;
  -ms-align-content: space-between;
  /* IE10 */
  -webkit-align-content: space-between;
  /* safari（PC）用 */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  /* IE10 */
  -webkit-flex-wrap: wrap;
  /* safari（PC）用 */
  align-items: stretch;
  -ms-align-items: stretch;
  /* IE10 */
  -webkit-align-items: stretch;
  /* safari（PC）用 */
}

.u_clmFl2, ul.u_clmFl2 > li, .u_clmFl2 > dl {
  flex-basis: 49%;
}

.u_clmFl3, ul.u_clmFl3 > li, .u_clmFl3 > dl {
  flex-basis: 32%;
}

.u_clmFl4, ul.u_clmFl4 > li, .u_clmFl4 > dl {
  flex-basis: 23.5%;
}

.u_clmFl5, ul.u_clmFl5 > li, .u_clmFl5 > dl {
  flex-basis: 18.4%;
}

.u_clmFl2 a, ul.u_clmFl2 > li a, .u_clmFl2 > dl a,
.u_clmFl3 a, ul.u_clmFl3 > li a, .u_clmFl3 > dl a,
.u_clmFl4 a, ul.u_clmFl4 > li a, .u_clmFl4 > dl a,
.u_clmFl5 a, ul.u_clmFl5 > li a, .u_clmFl5 > dl a {
  display: block;
  width: 100%;
  height: 100%;
}

/*--- flexbox（複数行に渡って上下左右の間隔を均等にする場合） ----------*/
.u_clmFlSp2-1, ul.u_clmFlSp2-1 > li, .u_clmFlSp2-1 > dl,
.u_clmFlSp2-2, ul.u_clmFlSp2-2 > li, .u_clmFlSp2-2 > dl,
.u_clmFlSp3-1, ul.u_clmFlSp3-1 > li, .u_clmFlSp3-1 > dl,
.u_clmFlSp3-2, ul.u_clmFlSp3-2 > li, .u_clmFlSp3-2 > dl,
.u_clmFlSp3-3, ul.u_clmFlSp3-3 > li, .u_clmFlSp3-3 > dl,
.u_clmFlSp4-1, ul.u_clmFlSp4-1 > li, .u_clmFlSp4-1 > dl,
.u_clmFlSp4-2, ul.u_clmFlSp4-2 > li, .u_clmFlSp4-2 > dl,
.u_clmFlSp4-4, ul.u_clmFlSp4-4 > li, .u_clmFlSp4-4 > dl,
.u_clmFlSp5-1, ul.u_clmFlSp5-1 > li, .u_clmFlSp5-1 > dl,
.u_clmFlSp5-3, ul.u_clmFlSp5-3 > li, .u_clmFlSp5-3 > dl,
.u_clmFlSp5-5, ul.u_clmFlSp5-5 > li, .u_clmFlSp5-5 > dl {
  display: flex;
  display: -webkit-box;
  /* Androidブラウザ用 */
  display: -ms-flexbox;
  /* IE10 */
  display: -webkit-flex;
  /* safari（PC）用 */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  /* IE10 */
  -webkit-flex-wrap: wrap;
  /* safari（PC）用 */
  align-items: stretch;
  -ms-align-items: stretch;
  /* IE10 */
  -webkit-align-items: stretch;
  /* safari（PC）用 */
  margin: 0.5%;
}

.u_clmFlSp2-1, ul.u_clmFlSp2-1 > li, .u_clmFlSp2-1 > dl,
.u_clmFlSp2-2, ul.u_clmFlSp2-2 > li, .u_clmFlSp2-2 > dl {
  flex-basis: 49%;
}

.u_clmFlSp3-1, ul.u_clmFlSp3-1 > li, .u_clmFlSp3-1 > dl,
.u_clmFlSp3-2, ul.u_clmFlSp3-2 > li, .u_clmFlSp3-2 > dl,
.u_clmFlSp3-3, ul.u_clmFlSp3-3 > li, .u_clmFlSp3-3 > dl {
  flex-basis: 32.333%;
}

.u_clmFlSp4-1, ul.u_clmFlSp4-1 > li, .u_clmFlSp4-1 > dl,
.u_clmFlSp4-2, ul.u_clmFlSp4-2 > li, .u_clmFlSp4-2 > dl,
.u_clmFlSp4-4, ul.u_clmFlSp4-4 > li, .u_clmFlSp4-4 > dl {
  flex-basis: 24%;
}

.u_clmFlSp5-1, ul.u_clmFlSp5-1 > li, .u_clmFlSp5-1 > dl,
.u_clmFlSp5-3, ul.u_clmFlSp5-3 > li, .u_clmFlSp5-3 > dl,
.u_clmFlSp5-5, ul.u_clmFlSp5-5 > li, .u_clmFlSp5-5 > dl {
  flex-basis: 19%;
}

.u_clmFlSp2-1 a, ul.u_clmFlSp2-1 > li a, .u_clmFlSp2-1 > dl > a,
.u_clmFlSp2-2 a, ul.u_clmFlSp2-2 > li a, .u_clmFlSp2-2 > dl > a,
.u_clmFlSp3-1 a, ul.u_clmFlSp3-1 > li a, .u_clmFlSp3-1 > dl > a,
.u_clmFlSp3-2 a, ul.u_clmFlSp3-2 > li a, .u_clmFlSp3-2 > dl > a,
.u_clmFlSp3-3 a, ul.u_clmFlSp3-3 > li a, .u_clmFlSp3-3 > dl > a,
.u_clmFlSp4-1 a, ul.u_clmFlSp4-1 > li a, .u_clmFlSp4-1 > dl > a,
.u_clmFlSp4-2 a, ul.u_clmFlSp4-2 > li a, .u_clmFlSp4-2 > dl > a,
.u_clmFlSp4-4 a, ul.u_clmFlSp4-4 > li a, .u_clmFlSp4-4 > dl > a,
.u_clmFlSp5-1 a, ul.u_clmFlSp5-1 > li a, .u_clmFlSp5-1 > dl > a,
.u_clmFlSp5-3 a, ul.u_clmFlSp5-3 > li a, .u_clmFlSp5-3 > dl > a,
.u_clmFlSp5-5 a, ul.u_clmFlSp5-5 > li a, .u_clmFlSp5-5 > dl > a {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .u_clmFlSp2-1, ul.u_clmFlSp2-1 > li, .u_clmFlSp2-1 > dl,
  .u_clmFlSp3-1, ul.u_clmFlSp3-1 > li, .u_clmFlSp3-1 > dl,
  .u_clmFlSp4-1, ul.u_clmFlSp4-1 > li, .u_clmFlSp4-1 > dl,
  .u_clmFlSp5-1, ul.u_clmFlSp5-1 > li, .u_clmFlSp5-1 > dl {
    flex-basis: 100%;
    margin: 0 0 1% 0;
  }

  .u_clmFlSp3-2, ul.u_clmFlSp3-2 > li, .u_clmFlSp3-2 > dl,
  .u_clmFlSp4-2, ul.u_clmFlSp4-2 > li, .u_clmFlSp4-2 > dl {
    flex-basis: 49%;
  }

  .u_clmFlSp5-3, ul.u_clmFlSp5-3 > li, .u_clmFlSp5-3 > dl {
    flex-basis: 32.333%;
  }
}
/*------------------------------*/
/*CREAR*/
/*------------------------------*/
.u_clear {
  clear: both;
  _zoom: 1;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}

.u_clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.u_clearfix {
  display: inline-block;
}

/*hides IE-mac \*/
* html .u_clearfix {
  height: 1%;
}

.u_clearfix {
  display: block;
}

/*hide  IE-mac */
/*------------------------------*/
/*COLOR*/
/*------------------------------*/
.u_color-orange {
  color: #FF6600;
}

.u_color-red {
  color: #FF0000;
}

.u_color-black {
  color: #000000;
}

.u_color-white {
  color: #FFFFFF;
}

.u_color-green {
  color: #009900;
}

/*------------------------------*/
/*Margin Padding */
/*------------------------------*/
/*------------------------------*/
/*Margin Padding 2*/
/*------------------------------*/
/*--- 中央配置 ----------*/
.u_mgC {
  margin-right: auto !important;
  margin-left: auto !important;
}

/*--- 上 ----------*/
.u_mgT0 {
  margin-top: 0px !important;
}

.u_mgT5 {
  margin-top: 5px !important;
}

.u_mgT10 {
  margin-top: 10px !important;
}

.u_mgT15 {
  margin-top: 15px !important;
}

.u_mgT20 {
  margin-top: 20px !important;
}

.u_mgT25 {
  margin-top: 25px !important;
}

.u_mgT30 {
  margin-top: 30px !important;
}

.u_mgT40 {
  margin-top: 40px !important;
}

.u_mgT50 {
  margin-top: 50px !important;
}

.u_pdT5 {
  padding-top: 5px !important;
}

.u_pdT10 {
  padding-top: 10px !important;
}

.u_pdT15 {
  padding-top: 15px !important;
}

.u_pdT20 {
  padding-top: 20px !important;
}

.u_pdT25 {
  padding-top: 25px !important;
}

.u_pdT30 {
  padding-top: 30px !important;
}

.u_pdT40 {
  padding-top: 40px !important;
}

.u_pdT50 {
  padding-top: 50px !important;
}

/*--- 右 ----------*/
.u_mgR0 {
  margin-right: 0px !important;
}

.u_mgR10 {
  margin-right: 10px !important;
}

.u_mgR15 {
  margin-right: 15px !important;
}

.u_mgR20 {
  margin-right: 20px !important;
}

.u_mgR25 {
  margin-right: 25px !important;
}

.u_mgR30 {
  margin-right: 30px !important;
}

.u_mgR40 {
  margin-right: 40px !important;
}

.u_mgR50 {
  margin-right: 50px !important;
}

.u_pdR5 {
  padding-right: 5px !important;
}

.u_pdR10 {
  padding-right: 10px !important;
}

.u_pdR15 {
  padding-right: 15px !important;
}

.u_pdR20 {
  padding-right: 20px !important;
}

.u_pdR25 {
  padding-right: 25px !important;
}

.u_pdR30 {
  padding-right: 30px !important;
}

.u_pdR40 {
  padding-right: 40px !important;
}

.u_pdR50 {
  padding-right: 50px !important;
}

/*--- 左 ----------*/
.u_mgL0 {
  margin-left: 0px !important;
}

.u_mgL10 {
  margin-left: 10px !important;
}

.u_mgL15 {
  margin-left: 15px !important;
}

.u_mgL20 {
  margin-left: 20px !important;
}

.u_mgL25 {
  margin-left: 25px !important;
}

.u_mgL30 {
  margin-left: 30px !important;
}

.u_mgL40 {
  margin-left: 40px !important;
}

.u_mgL50 {
  margin-left: 50px !important;
}

.u_pdL5 {
  padding-left: 5px !important;
}

.u_pdL10 {
  padding-left: 10px !important;
}

.u_pdL15 {
  padding-left: 15px !important;
}

.u_pdL20 {
  padding-left: 20px !important;
}

.u_pdL25 {
  padding-left: 25px !important;
}

.u_pdL30 {
  padding-left: 30px !important;
}

.u_pdL40 {
  padding-left: 40px !important;
}

.u_pdL50 {
  padding-left: 50px !important;
}

/*--- 下 ----------*/
.u_mgB0 {
  margin-bottom: 0px !important;
}

.u_mgB5 {
  margin-bottom: 5px !important;
}

.u_mgB10 {
  margin-bottom: 10px !important;
}

.u_mgB15 {
  margin-bottom: 15px !important;
}

.u_mgB20 {
  margin-bottom: 20px !important;
}

.u_mgB25 {
  margin-bottom: 25px !important;
}

.u_mgB30 {
  margin-bottom: 30px !important;
}

.u_mgB40 {
  margin-bottom: 40px !important;
}

.u_mgB50 {
  margin-bottom: 50px !important;
}

.u_pdB5 {
  padding-bottom: 5px !important;
}

.u_pdB10 {
  padding-bottom: 10px !important;
}

.u_pdB15 {
  padding-bottom: 15px !important;
}

.u_pdB20 {
  padding-bottom: 20px !important;
}

.u_pdB25 {
  padding-bottom: 25px !important;
}

.u_pdB30 {
  padding-bottom: 30px !important;
}

.u_pdB40 {
  padding-bottom: 40px !important;
}

.u_pdB50 {
  padding-bottom: 50px !important;
}

/*--- 上下 ----------*/
.u_mgTB0 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.u_mgTB5 {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}

.u_mgTB10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.u_mgTB15 {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}

.u_mgTB20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.u_mgTB20 {
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}

.u_mgTB30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.u_mgTB40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.u_mgTB50 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

.u_pdTB5 {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.u_pdTB10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.u_pdTB15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.u_pdTB20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.u_pdTB25 {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}

.u_pdTB30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.u_pdTB40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.u_pdTB50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

/*--- 左右 ----------*/
.u_mgLR0 {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.u_mgLR10 {
  margin-left: 10px !important;
  margin-right: 10px !important;
}

.u_mgLR15 {
  margin-left: 15px !important;
  margin-right: 15px !important;
}

.u_mgLR20 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

.u_mgLR25 {
  margin-left: 25px !important;
  margin-right: 25px !important;
}

.u_mgLR30 {
  margin-left: 30px !important;
  margin-right: 30px !important;
}

.u_mgLR40 {
  margin-left: 40px !important;
  margin-right: 40px !important;
}

.u_mgLR50 {
  margin-left: 50px !important;
  margin-right: 50px !important;
}

.u_pdLR5 {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.u_pdLR10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.u_pdLR15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.u_pdLR20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.u_pdLR25 {
  padding-left: 25px !important;
  padding-right: 25px !important;
}

.u_pdLR30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.u_pdLR40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.u_pdLR50 {
  padding-left: 50px !important;
  padding-right: 50px !important;
}

/*--- 全体 ----------*/
.u_mgA0 {
  margin: 0px !important;
}

.u_mgA10 {
  margin: 10px !important;
}

.u_mgA15 {
  margin: 15px !important;
}

.u_mgA20 {
  margin: 20px !important;
}

.u_mgA25 {
  margin: 25px !important;
}

.u_mgA30 {
  margin: 30px !important;
}

.u_mgA40 {
  margin: 40px !important;
}

.u_mgA50 {
  margin: 50px !important;
}

.u_pdA5 {
  padding: 5px !important;
}

.u_pdA10 {
  padding: 10px !important;
}

.u_pdA15 {
  padding: 15px !important;
}

.u_pdA20 {
  padding: 20px !important;
}

.u_pdA25 {
  padding: 25px !important;
}

.u_pdA30 {
  padding: 30px !important;
}

.u_pdA40 {
  padding: 40px !important;
}

.u_pdA50 {
  padding: 50px !important;
}

/*--- 横幅 ----------*/
/* ピクセル */
.u_w1000 {
  width: 1000px !important;
}

.u_w950 {
  width: 950px !important;
}

.u_w900 {
  width: 900px !important;
}

.u_w850 {
  width: 850px !important;
}

.u_w800 {
  width: 800px !important;
}

.u_w750 {
  width: 750px !important;
}

.u_w700 {
  width: 700px !important;
}

.u_w650 {
  width: 650px !important;
}

.u_w600 {
  width: 600px !important;
}

.u_w550 {
  width: 550px !important;
}

.u_w500 {
  width: 500px !important;
}

.u_w450 {
  width: 450px !important;
}

.u_w400 {
  width: 400px !important;
}

.u_w350 {
  width: 350px !important;
}

.u_w300 {
  width: 300px !important;
}

.u_w250 {
  width: 250px !important;
}

.u_w200 {
  width: 200px !important;
}

.u_w150 {
  width: 150px !important;
}

.u_w100 {
  width: 100px !important;
}

.u_w50 {
  width: 50px !important;
}

/* パーセント */
.u_wP100 {
  width: 100% !important;
}

.u_wP95 {
  width: 95% !important;
}

.u_wP90 {
  width: 90% !important;
}

.u_wP85 {
  width: 85% !important;
}

.u_wP80 {
  width: 80% !important;
}

.u_wP75 {
  width: 75% !important;
}

.u_wP70 {
  width: 70% !important;
}

.u_wP65 {
  width: 65% !important;
}

.u_wP60 {
  width: 60% !important;
}

.u_wP55 {
  width: 55% !important;
}

.u_wP50 {
  width: 50% !important;
}

.u_wP45 {
  width: 45% !important;
}

.u_wP40 {
  width: 40% !important;
}

.u_wP35 {
  width: 35% !important;
}

.u_wP30 {
  width: 30% !important;
}

.u_wP25 {
  width: 25% !important;
}

.u_wP20 {
  width: 20% !important;
}

.u_wP15 {
  width: 15% !important;
}

.u_wP10 {
  width: 10% !important;
}

.u_wP5 {
  width: 5% !important;
}

.u_wAuto {
  width: auto !important;
}

@media only screen and (max-width: 750px) {
  .u_wP--sp {
    width: 100% !important;
  }

  /*--- 上 ----------*/
  .u_mgT0_sp {
    margin-top: 0px !important;
  }

  .u_mgT5_sp {
    margin-top: 5px !important;
  }

  .u_mgT10_sp {
    margin-top: 10px !important;
  }

  .u_mgT15_sp {
    margin-top: 15px !important;
  }

  .u_mgT20_sp {
    margin-top: 20px !important;
  }

  .u_mgT25_sp {
    margin-top: 25px !important;
  }

  .u_mgT30_sp {
    margin-top: 30px !important;
  }

  .u_mgT40_sp {
    margin-top: 40px !important;
  }

  .u_mgT50_sp {
    margin-top: 50px !important;
  }

  .u_pdT5_sp {
    padding-top: 5px !important;
  }

  .u_pdT10_sp {
    padding-top: 10px !important;
  }

  .u_pdT15_sp {
    padding-top: 15px !important;
  }

  .u_pdT20_sp {
    padding-top: 20px !important;
  }

  .u_pdT25_sp {
    padding-top: 25px !important;
  }

  .u_pdT30_sp {
    padding-top: 30px !important;
  }

  .u_pdT40_sp {
    padding-top: 40px !important;
  }

  .u_pdT50_sp {
    padding-top: 50px !important;
  }

  /*--- 右 ----------*/
  .u_mgR0_sp {
    margin-right: 0px !important;
  }

  .u_mgR10_sp {
    margin-right: 10px !important;
  }

  .u_mgR15_sp {
    margin-right: 15px !important;
  }

  .u_mgR20_sp {
    margin-right: 20px !important;
  }

  .u_mgR25_sp {
    margin-right: 25px !important;
  }

  .u_mgR30_sp {
    margin-right: 30px !important;
  }

  .u_mgR40_sp {
    margin-right: 40px !important;
  }

  .u_mgR50_sp {
    margin-right: 50px !important;
  }

  .u_pdR5_sp {
    padding-right: 5px !important;
  }

  .u_pdR10_sp {
    padding-right: 10px !important;
  }

  .u_pdR15_sp {
    padding-right: 15px !important;
  }

  .u_pdR20_sp {
    padding-right: 20px !important;
  }

  .u_pdR25_sp {
    padding-right: 25px !important;
  }

  .u_pdR30_sp {
    padding-right: 30px !important;
  }

  .u_pdR40_sp {
    padding-right: 40px !important;
  }

  .u_pdR50_sp {
    padding-right: 50px !important;
  }

  /*--- 左 ----------*/
  .u_mgL0_sp {
    margin-left: 0px !important;
  }

  .u_mgL10_sp {
    margin-left: 10px !important;
  }

  .u_mgL15_sp {
    margin-left: 15px !important;
  }

  .u_mgL20_sp {
    margin-left: 20px !important;
  }

  .u_mgL25_sp {
    margin-left: 25px !important;
  }

  .u_mgL30_sp {
    margin-left: 30px !important;
  }

  .u_mgL40_sp {
    margin-left: 40px !important;
  }

  .u_mgL50_sp {
    margin-left: 50px !important;
  }

  .u_pdL5_sp {
    padding-left: 5px !important;
  }

  .u_pdL10_sp {
    padding-left: 10px !important;
  }

  .u_pdL15_sp {
    padding-left: 15px !important;
  }

  .u_pdL20_sp {
    padding-left: 20px !important;
  }

  .u_pdL25_sp {
    padding-left: 25px !important;
  }

  .u_pdL30_sp {
    padding-left: 30px !important;
  }

  .u_pdL40_sp {
    padding-left: 40px !important;
  }

  .u_pdL50_sp {
    padding-left: 50px !important;
  }

  /*--- 下 ----------*/
  .u_mgB0_sp {
    margin-bottom: 0px !important;
  }

  .u_mgB5_sp {
    margin-bottom: 5px !important;
  }

  .u_mgB10_sp {
    margin-bottom: 10px !important;
  }

  .u_mgB15_sp {
    margin-bottom: 15px !important;
  }

  .u_mgB20_sp {
    margin-bottom: 20px !important;
  }

  .u_mgB25_sp {
    margin-bottom: 25px !important;
  }

  .u_mgB30_sp {
    margin-bottom: 30px !important;
  }

  .u_mgB40_sp {
    margin-bottom: 40px !important;
  }

  .u_mgB50_sp {
    margin-bottom: 50px !important;
  }

  .u_pdB5_sp {
    padding-bottom: 5px !important;
  }

  .u_pdB10_sp {
    padding-bottom: 10px !important;
  }

  .u_pdB15_sp {
    padding-bottom: 15px !important;
  }

  .u_pdB20_sp {
    padding-bottom: 20px !important;
  }

  .u_pdB25_sp {
    padding-bottom: 25px !important;
  }

  .u_pdB30_sp {
    padding-bottom: 30px !important;
  }

  .u_pdB40_sp {
    padding-bottom: 40px !important;
  }

  .u_pdB50_sp {
    padding-bottom: 50px !important;
  }

  /*--- 上下 ----------*/
  .u_mgTB0_sp {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  .u_mgTB5_sp {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }

  .u_mgTB10_sp {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }

  .u_mgTB15_sp {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }

  .u_mgTB20_sp {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .u_mgTB20_sp {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }

  .u_mgTB30_sp {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }

  .u_mgTB40_sp {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  .u_mgTB50_sp {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }

  .u_pdTB5_sp {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }

  .u_pdTB10_sp {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .u_pdTB15_sp {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }

  .u_pdTB20_sp {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .u_pdTB25_sp {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }

  .u_pdTB30_sp {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .u_pdTB40_sp {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .u_pdTB50_sp {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  /*--- 左右 ----------*/
  .u_mgLR0_sp {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .u_mgLR10_sp {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }

  .u_mgLR15_sp {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }

  .u_mgLR20_sp {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }

  .u_mgLR25_sp {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }

  .u_mgLR30_sp {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }

  .u_mgLR40_sp {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }

  .u_mgLR50_sp {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }

  .u_pdLR5_sp {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }

  .u_pdLR10_sp {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .u_pdLR15_sp {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .u_pdLR20_sp {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .u_pdLR25_sp {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }

  .u_pdLR30_sp {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  .u_pdLR40_sp {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .u_pdLR50_sp {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }

  /*--- 全体 ----------*/
  .u_mgA0_sp {
    margin: 0px !important;
  }

  .u_mgA10_sp {
    margin: 10px !important;
  }

  .u_mgA15_sp {
    margin: 15px !important;
  }

  .u_mgA20_sp {
    margin: 20px !important;
  }

  .u_mgA25_sp {
    margin: 25px !important;
  }

  .u_mgA30_sp {
    margin: 30px !important;
  }

  .u_mgA40_sp {
    margin: 40px !important;
  }

  .u_mgA50_sp {
    margin: 50px !important;
  }

  .u_pdA5_sp {
    padding: 5px !important;
  }

  .u_pdA10_sp {
    padding: 10px !important;
  }

  .u_pdA15_sp {
    padding: 15px !important;
  }

  .u_pdA20_sp {
    padding: 20px !important;
  }

  .u_pdA25_sp {
    padding: 25px !important;
  }

  .u_pdA30_sp {
    padding: 30px !important;
  }

  .u_pdA40_sp {
    padding: 40px !important;
  }

  .u_pdA50_sp {
    padding: 50px !important;
  }

  /*--- 横幅 ----------*/
  /* ピクセル */
  .u_w1000_sp {
    width: 1000px !important;
  }

  .u_w950_sp {
    width: 950px !important;
  }

  .u_w900_sp {
    width: 900px !important;
  }

  .u_w850_sp {
    width: 850px !important;
  }

  .u_w800_sp {
    width: 800px !important;
  }

  .u_w750_sp {
    width: 750px !important;
  }

  .u_w700_sp {
    width: 700px !important;
  }

  .u_w650_sp {
    width: 650px !important;
  }

  .u_w600_sp {
    width: 600px !important;
  }

  .u_w550_sp {
    width: 550px !important;
  }

  .u_w500_sp {
    width: 500px !important;
  }

  .u_w450_sp {
    width: 450px !important;
  }

  .u_w400_sp {
    width: 400px !important;
  }

  .u_w350_sp {
    width: 350px !important;
  }

  .u_w300_sp {
    width: 300px !important;
  }

  .u_w250_sp {
    width: 250px !important;
  }

  .u_w200_sp {
    width: 200px !important;
  }

  .u_w150_sp {
    width: 150px !important;
  }

  .u_w100_sp {
    width: 100px !important;
  }

  .u_w50_sp {
    width: 50px !important;
  }

  /* パーセント */
  .u_wP100_sp {
    width: 100% !important;
  }

  .u_wP95_sp {
    width: 95% !important;
  }

  .u_wP90_sp {
    width: 90% !important;
  }

  .u_wP85_sp {
    width: 85% !important;
  }

  .u_wP80_sp {
    width: 80% !important;
  }

  .u_wP75_sp {
    width: 75% !important;
  }

  .u_wP70_sp {
    width: 70% !important;
  }

  .u_wP65_sp {
    width: 65% !important;
  }

  .u_wP60_sp {
    width: 60% !important;
  }

  .u_wP55_sp {
    width: 55% !important;
  }

  .u_wP50_sp {
    width: 50% !important;
  }

  .u_wP45_sp {
    width: 45% !important;
  }

  .u_wP40_sp {
    width: 40% !important;
  }

  .u_wP35_sp {
    width: 35% !important;
  }

  .u_wP30_sp {
    width: 30% !important;
  }

  .u_wP25_sp {
    width: 25% !important;
  }

  .u_wP20_sp {
    width: 20% !important;
  }

  .u_wP15_sp {
    width: 15% !important;
  }

  .u_wP10_sp {
    width: 10% !important;
  }

  .u_wP5_sp {
    width: 5% !important;
  }
}
/*------------------------------*/
/*TABLE */
/*------------------------------*/
.u_table-no {
  border-collapse: collapse;
  border: 1px solid #CCCCCC;
  padding: 15px;
}

.u_table-no td {
  border-collapse: collapse;
  border: 1px solid #CCCCCC;
  padding: 15px;
}

.u_table-no th {
  border-collapse: collapse;
  border: 1px solid #CCCCCC;
  background-color: #EDEDED;
  padding: 15px;
  text-align: left;
}

@media only screen and (max-width: 750px) {
  .u_table-no--sp1 {
    border-bottom: none;
  }
  .u_table-no--sp1 td, .u_table-no--sp1 th {
    width: 100%;
    display: block;
    border: none;
    border-bottom: 1px solid #CCCCCC;
  }
}
/*------------------------------*/
/*Efect */
/*------------------------------*/
/*banner rollover end etc*/
a:hover img.u_overBtn {
  filter: alpha(opacity=70);
  -moz-opacity: 0.80;
  opacity: 0.80;
}

/* //banner rollover */
/*------------------------------*/
/*JS Efect */
/*------------------------------*/
.u_imgover {
  margin: 0;
  padding: 0;
}

/*------------------------------*/
/*for txt float  */
/*------------------------------*/
.u_floatNext {
  overflow: auto;
  zoom: 1;
}

/*------------------------------*/
/*for txt float2  */
/*------------------------------*/
.u_floatOver {
  overflow: hidden;
  _zoom: 1;
}

/*------------------------------*/
/*ohters  */
/*------------------------------*/
.u_clearNone {
  clear: none !important;
}

/*------------------------------*/
/*sp table (scrol)  */
/*------------------------------*/
@media only screen and (max-width: 750px) {
  .scrollTable {
    overflow: auto;
    white-space: nowrap;
  }
  .scrollTable table {
    width: 100%;
  }
  .scrollTable::-webkit-scrollbar {
    height: 5px;
  }
  .scrollTable::-webkit-scrollbar-track {
    background: #F1F1F1;
  }
  .scrollTable::-webkit-scrollbar-thumb {
    background: #BCBCBC;
  }
}
ul.u_list_normal {
  /*margin: 1em 0;*/
  padding-left: 40px;
  list-style-type: disc;
}
ul.u_list_normal li {
  margin-bottom: 0.5em;
}
ul.u_list_normal--2-1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
ul.u_list_normal--2-1 li {
  width: 45%;
}
@media only screen and (max-width: 750px) {
  ul.u_list_normal--2-1 li {
    width: 100%;
  }
}
ul.u_list_normal--2-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
ul.u_list_normal--2-2 li {
  width: 45%;
}
ul.u_list_normal--small li {
  margin-bottom: 0;
}

ul.u_list_num {
  padding-left: 40px;
  list-style-type: decimal;
}

ul.u_list_note {
  padding-left: 22px;
  list-style-type: none;
}

ul.u_list_note li {
  position: relative;
  padding-left: 1em;
}

ul.u_list_note li:before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

/*------------------------------*/
/*flex*/
/*------------------------------*/
.u_flex {
  display: flex;
}
.u_flex--center {
  justify-content: center;
}
.u_flex--center_h {
  align-items: center;
}
.u_flex--mb > div,
.u_flex--mb > li {
  margin-bottom: 4%;
}
.u_flex--mb_s > div,
.u_flex--mb_s > li {
  margin-bottom: 10px;
}
@media only screen and (max-width: 750px) {
  .u_flex--pc {
    display: block;
  }
}
@media print, screen and (min-width: 751px) {
  .u_flex--sp {
    display: block;
  }
}
.u_flex__item--1 {
  flex: 1;
}
.u_flex--c2 {
  flex-wrap: wrap;
  margin: 0 -4% 0 0;
}
.u_flex--c2 > div,
.u_flex--c2 > li {
  width: 46%;
  margin-right: 4%;
}
.u_flex--c2f {
  flex-wrap: wrap;
  margin: 0 -4% 0 0;
}
.u_flex--c2f > div,
.u_flex--c2f > li {
  margin-right: 4%;
}
.u_flex--c2f-1 {
  flex-wrap: wrap;
  margin: 0 -4% 0 0;
}
.u_flex--c2f-1 > div,
.u_flex--c2f-1 > li {
  margin-right: 4%;
}
@media only screen and (max-width: 750px) {
  .u_flex--c2f-1 > div,
  .u_flex--c2f-1 > li {
    width: 100%;
    margin-bottom: 4%;
  }
  .u_flex--c2f-1 > div:last-of-type,
  .u_flex--c2f-1 > li:last-of-type {
    margin-bottom: 0;
  }
}
.u_flex--c2-1 {
  flex-wrap: wrap;
  margin: 0 -4% 0 0;
}
.u_flex--c2-1 > div,
.u_flex--c2-1 > li {
  width: 46%;
  margin-right: 4%;
}
@media only screen and (max-width: 750px) {
  .u_flex--c2-1 > div,
  .u_flex--c2-1 > li {
    width: 100%;
    margin-bottom: 4%;
  }
  .u_flex--c2-1 > div:last-of-type,
  .u_flex--c2-1 > li:last-of-type {
    margin-bottom: 0;
  }
}
.u_flex--c3 {
  flex-wrap: wrap;
  margin: 0 -4% 0 0;
}
.u_flex--c3 > div,
.u_flex--c3 > li {
  width: 29.33333%;
  margin-right: 4%;
}
.u_flex--c3-1 {
  flex-wrap: wrap;
  margin: 0 -4% 0 0;
}
.u_flex--c3-1 > div,
.u_flex--c3-1 > li {
  width: 29.33333%;
  margin-right: 4%;
}
@media only screen and (max-width: 750px) {
  .u_flex--c3-1 > div,
  .u_flex--c3-1 > li {
    width: 100%;
    margin-bottom: 4%;
  }
  .u_flex--c3-1 > div:last-of-type,
  .u_flex--c3-1 > li:last-of-type {
    margin-bottom: 0;
  }
}
.u_flex--mb_self {
  margin-bottom: 4%;
}

/*------------------------------*/
/*margin*/
/*------------------------------*/
.u_bl {
  margin-bottom: 40px !important;
}

.u_bl2 {
  margin-bottom: 60px !important;
}

/*------------------------------*/
/*movie*/
/*------------------------------*/
.u_movieSet {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.u_movieSet iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/*------------------------------*/
/*img*/
/*------------------------------*/
.u_imgMw100 {
  max-width: 100%;
}

/*------------------------------*/
/*map*/
/*------------------------------*/
.u_map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.u_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*------------------------------*/
/*hr*/
/*------------------------------*/
.u_hr {
  border-top: 1px  solid #BBB;
}

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