@charset "UTF-8";
/*default*/
.att {
  padding-left: 1em;
  text-indent: -1em;
}

.att02 {
  padding-left: 1.3em;
  text-indent: -1.3em;
}

/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, height 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, width 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}
:root {
  --offset: 20vw;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
}

.bg_image {
  --offset: 20vw;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
}

*::-ms-backdrop, :root {
  --move-initial: 50vw;
  --move-final: -150vw;
}

.marquee {
  width: 100vw;
  overflow: hidden;
}

.marquee__inner {
  width: 100%;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: space-between;
  position: relative;
  transform: translate3d(var(--move-initial), 0, 0);
  animation: marquee 20s linear infinite;
  -webkit-animation: marquee 20s linear infinite;
}
.marquee__inner span {
  display: block;
  width: 100vw;
  margin: 0 3rem;
  flex-shrink: 0;
}
.marquee__inner.life01 span {
  width: 80vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.life01 span {
    width: 100vw;
  }
}
.marquee__inner.life02 span {
  width: 65vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.life02 span {
    width: 100vw;
  }
}
.marquee__inner.rezi04 span {
  width: 50vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.rezi04 span {
    width: 100vw;
  }
}
.marquee__inner.rezi05 span {
  width: 40vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.rezi05 span {
    width: 80vw;
  }
}

*::-ms-backdrop, .marquee__inner {
  width: 800vw;
  margin: 0;
  animation: marquee_ie 20s linear infinite;
  -webkit-animation: marquee_ie 20s linear infinite;
}
*::-ms-backdrop span, .marquee__inner span {
  display: block;
  width: 500px;
  margin: 0;
}

@keyframes marquee_ie {
  0% {
    transform: translate3d(0vw, 0, 0);
  }
  100% {
    transform: translate3d(-150vw, 0, 0);
  }
}
@keyframes marquee {
  0% {
    transform: translate3d(var(--move-initial), 0, 0);
  }
  100% {
    transform: translate3d(var(--move-final), 0, 0);
  }
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes loop3 {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes loop4 {
  0% {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0);
  }
}
div.insefa {
  width: 100%;
  overflow: hidden;
  display: flex;
}

.text {
  margin: 0 1rem;
  animation: flowing 40s linear infinite;
  transform: translateX(0%); /*初期位置*/
}

@keyframes flowing {
  100% {
    transform: translateX(-100%);
  }
}
/*! locomotive-scroll v4.1.1 | MIT License | https://github.com/locomotivemtl/locomotive-scroll */
html.has-scroll-smooth {
  overflow: hidden;
}

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.has-scroll-smooth body {
  overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}

[data-scroll-direction=horizontal] [data-scroll-container] {
  height: 100vh;
  display: inline-block;
  white-space: nowrap;
}

[data-scroll-direction=horizontal] [data-scroll-section] {
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  height: 100%;
}

.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 11px;
  height: 100%;
  transform-origin: center right;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
}

.c-scrollbar:hover {
  transform: scaleX(1.45);
}

.c-scrollbar:hover, .has-scroll-dragging .c-scrollbar, .has-scroll-scrolling .c-scrollbar {
  opacity: 1;
}

[data-scroll-direction=horizontal] .c-scrollbar {
  width: 100%;
  height: 10px;
  top: auto;
  bottom: 0;
  transform: scaleY(1);
}

[data-scroll-direction=horizontal] .c-scrollbar:hover {
  transform: scaleY(1.3);
}

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #000;
  opacity: 0.5;
  width: 7px;
  border-radius: 10px;
  margin: 2px;
  cursor: grab;
}

.has-scroll-dragging .c-scrollbar_thumb {
  cursor: grabbing;
}

[data-scroll-direction=horizontal] .c-scrollbar_thumb {
  right: auto;
  bottom: 0;
}

#message .message h2 {
  font-size: 2.8rem;
  text-align: center;
  margin: 0 0 10rem 0;
  text-align: center;
  display: block !important;
  border-bottom: none !important;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  #message .message h2 {
    margin: 0 0 3rem 0;
  }
}
#message .message h2:before, #message .message h2:after {
  display: none !important;
}
#message .mcont {
  max-width: 800px;
  margin: 0 auto 5rem auto;
}
@media only screen and (max-width: 768px) {
  #message .mcont {
    width: 100%;
    margin: 0 0 3rem 0;
    padding: 0 8vw;
  }
}
#message .mcont p {
  margin: 0 0 1em 0;
}
#message .mphoto {
  max-width: 800px;
  margin: 0 auto 10rem auto;
}
@media only screen and (max-width: 768px) {
  #message .mphoto {
    width: 100%;
    margin: 0 0 5rem 0;
  }
}
#message .mphoto p.cap {
  text-align: center;
  font-weight: 500;
  margin: 1rem 0 0 0;
}
#message .n_flex {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: auto;
  padding: 0 3%;
}
@media only screen and (max-width: 768px) {
  #message .n_flex {
    display: block;
    width: 100%;
    padding: 0 0;
  }
}
#message .n_flex .box {
  width: 44%;
}
@media only screen and (max-width: 768px) {
  #message .n_flex .box {
    width: 100%;
    margin: 0 0 3rem 0;
  }
}
#message .n_flex .box h2 {
  font-size: 1.6rem;
}
#message .n_flex .box .graph {
  margin: 0 0 2rem 0;
  max-width: 300px;
  margin: 0 auto 20px;
}
#message .n_flex .box .graph p.cap {
  text-align: center;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
}
@media only screen and (max-width: 768px) {
  #message .n_flex .box .graph {
    width: 70%;
  }
}

main .novisual_header {
  text-align: center;
  padding: 10rem 0 0 0;
}
@media only screen and (max-width: 768px) {
  main .novisual_header {
    padding: 3rem 0 0 0;
  }
}
main .flows {
  margin: 0 0 5rem 0;
  /* 以下.currentだけ色を変えるCSS */
}
main .flows .flow {
  width: 100%;
  /* ステップフロー全体の横幅を指定 */
  display: flex;
  /* flexboxで横並びにする */
  justify-content: space-between;
  /* 横並びにしたものを等間隔で並べる */
}
main .flows .flow li {
  color: #000;
  /* 文字色を黒に指定 */
  font-size: 14px;
  /* 文字サイズを指定 */
  width: 33.3333333333%;
  /* 横幅を三等分した1つの大きさに指定 */
  background: #eee;
  /* 背景色をグレーに指定 */
  height: 100px;
  /* 行間(高さの代わり)を指定 */
  text-align: center;
  /* 文字を中央寄せにする */
  position: relative;
  /* 基準位置とする */
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  font-size: 1.8rem;
}
main .flows .flow li span {
  display: block;
  font-size: 1.2rem;
}
@media only screen and (max-width: 768px) {
  main .flows .flow li {
    height: 100px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    font-size: 1rem;
    justify-content: center;
    padding: 0 0 0 1rem;
  }
}
main .flows .flow li:not(:first-child):not(:last-child) {
  padding: 0 0 0 10px;
  /* 最初と最後以外には左に適度な余白を指定 */
}
@media only screen and (max-width: 768px) {
  main .flows .flow li:not(:first-child):not(:last-child) {
    padding: 0 0 0 1.5rem;
  }
}
main .flows .flow li::before,
main .flows .flow li::after {
  content: "";
  /* 疑似要素では必須 */
  width: 0;
  height: 0;
  display: block;
  /* ブロック要素にする */
  position: absolute;
  /* 相対位置に指定 */
}
main .flows .flow li::before {
  border: solid 58px transparent;
  /* 32pxのborderを指定 */
  border-right: solid 14px transparent;
  /* 幅を合わせるため右線は13pxにする */
  border-left: solid 14px #FFF;
  /* 白い三角形を作成して▷の形で上に重ねて削り取る */
  top: -7px;
  /* 重ねる位置(縦軸)を調整 */
  left: 0;
  /* 重ねる位置(横軸)を調整 */
  z-index: 1;
  /* 重なり順を指定 */
}
main .flows .flow li::after {
  border: solid 50px transparent;
  /* 25pxのborderを指定 */
  border-left: solid 10px #EDEDED;
  /* 左のborderで背景色と同じ▶の部分を作成する */
  border-right: solid 10px transparent;
  /* 幅を合わせるために右線は10pxにする */
  top: 0;
  /* 重ねる位置(縦軸)を調整 */
  right: -20px;
  /* 重ねる位置(横軸)を調整 */
  z-index: 2;
  /* 重なり順の優先度を他よりも上げる */
}
main .flows .flow li:first-child::before,
main .flows .flow li:last-child::after {
  content: none;
  /* 最初のliの左と最後のliの右は作らない */
}
main .flows .flow li.dummy {
  visibility: hidden;
}
main .flows .flow li.coming {
  background: #ccc !important;
}
main .flows .flow li.coming:after {
  border-left: solid 10px #ccc !important;
}
main .flows .flow li:nth-of-type(1) {
  background: #FEE200;
}
main .flows .flow li:nth-of-type(1):after {
  border-left: solid 10px #FEE200;
}
main .flows .flow li:nth-of-type(2) {
  background: rgb(255, 231.2771653543, 39.8);
}
main .flows .flow li:nth-of-type(2):after {
  border-left: solid 10px rgb(255, 231.2771653543, 39.8);
}
main .flows .flow li:nth-of-type(3) {
  background: rgb(255, 235.7748031496, 80.6);
}
main .flows .flow li:nth-of-type(3):after {
  border-left: solid 10px rgb(255, 235.7748031496, 80.6);
}
main .flows .flow li:nth-of-type(4) {
  background: rgb(255, 240.2724409449, 121.4);
}
main .flows .flow li:nth-of-type(4):after {
  border-left: solid 10px rgb(255, 240.2724409449, 121.4);
}
main .flows .flow li:nth-of-type(5) {
  background: rgb(255, 243.6456692913, 152);
}
main .flows .flow li:nth-of-type(5):after {
  border-left: solid 10px rgb(255, 243.6456692913, 152);
}
main .c-list__marker {
  display: inline-block !important;
}
main .step_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 1rem 0;
  padding: 0 0 1rem 0;
}
@media only screen and (max-width: 768px) {
  main .step_block {
    display: block;
  }
}
main .step_block .steps {
  width: 25%;
  background: rgb(247, 246, 245);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  main .step_block .steps {
    width: 100%;
    margin: 0 0 3rem 0;
  }
}
main .step_block .steps p.jp {
  font-size: 2.4rem;
}
@media only screen and (max-width: 768px) {
  main .step_block .steps p.jp {
    font-size: 1.6rem;
  }
}
main .step_block .exp {
  flex: 1;
  padding: 0 0 0 3rem;
}
@media only screen and (max-width: 768px) {
  main .step_block .exp {
    padding: 0 8vw;
  }
}
main .step_block .exp p {
  margin: 0 0 2rem 0;
}
@media only screen and (max-width: 768px) {
  main .step_block .exp p br {
    display: none;
  }
}
main ul.chui {
  font-size: 1.2rem;
}
main table.rec_table {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  main table.rec_table {
    width: 100%;
    display: block;
  }
  main table.rec_table th,
  main table.rec_table td {
    display: block;
    width: 100% !important;
  }
}
main table.rec_table.center {
  text-align: center;
}
main table.rec_table.center th {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  main table.rec_table.nosp {
    font-size: 1rem;
  }
  main table.rec_table.nosp th,
  main table.rec_table.nosp td {
    display: table-cell !important;
  }
  main table.rec_table.nosp th {
    width: 25%;
  }
}
main table.rec_table th,
main table.rec_table td {
  padding: 2rem;
}
@media only screen and (max-width: 768px) {
  main table.rec_table th,
  main table.rec_table td {
    display: block;
    padding: 2rem 0;
  }
}
main table.rec_table th {
  text-align: left;
  font-weight: 500;
  width: 20%;
  border-bottom: 2px solid #FEE200;
}
@media only screen and (max-width: 768px) {
  main table.rec_table th {
    width: 100%;
    padding: 2rem 0;
  }
}
main table.rec_table td {
  border-bottom: 2px solid #eee;
}
main a.txtlinks {
  position: relative;
  display: inline-block;
  padding: 0 3rem 0 0;
}
main a.txtlinks:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  transition: all 0.3s ease;
  transform-origin: right top;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
@media only screen and (max-width: 768px) {
  main a.txtlinks:before {
    display: none;
  }
}
main a.txtlinks:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
main a.txtlinks:after {
  position: absolute;
  font-family: "Flaticon";
  top: 50%;
  right: 0rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  line-height: 1;
  content: "\f101";
  font-size: 14px;
  font-size: 1.4rem;
  z-index: 999;
  color: #333;
  background: #FEE200;
  line-height: 18px;
  text-align: center;
  transition: all 0.3s ease;
  transform: translateY(-50%);
  display: block;
}
main .list-toggle-con {
  height: 0;
  overflow: hidden;
}
main ul.list-toggle {
  min-width: 800px;
  max-width: 1200px;
  margin: auto;
  border-top: 1px dotted #ccc;
}
@media only screen and (max-width: 768px) {
  main ul.list-toggle {
    min-width: 0;
  }
}
main ul.list-toggle.last {
  margin: 0 auto 3em auto;
}
@media only screen and (max-width: 768px) {
  main ul.list-toggle {
    width: 100%;
    min-width: 0;
  }
}
main ul.list-toggle li a.jsToggle {
  display: block;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
}
@media only screen and (max-width: 768px) {
  main ul.list-toggle li a.jsToggle {
    padding: 2rem 5rem 2rem 2rem;
    font-size: 1.6rem;
  }
}
main ul.list-toggle li a.jsToggle:after {
  color: #000;
  position: absolute;
  font-family: "Flaticon";
  top: 50%;
  right: 2rem;
  margin-top: -0.5em;
  line-height: 1;
  content: "\f111";
  font-weight: 300;
  font-size: 20px;
  font-size: 2rem;
  z-index: 999;
}
@media only screen and (max-width: 768px) {
  main ul.list-toggle li a.jsToggle:after {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
main ul.list-toggle li a.jsToggle.txtlink {
  padding: 0;
  text-decoration: underline;
  display: inline-block;
  margin: 0 0.5em;
}
main ul.list-toggle li a.jsToggle.txtlink:after {
  display: none;
}
main ul.list-toggle li a.jsToggle.txtlink:hover {
  background: none;
  color: #FEE200;
}
main ul.list-toggle li a.active:after {
  content: "\f115";
}
main ul.list-toggle li .list-toggle-con-inner {
  padding: 2rem;
  border-bottom: 1px dotted #ccc;
}
main ul.list-toggle li .list-toggle-con-inner p {
  margin: 0 0 1em 0;
}
main ul.list-toggle li .list-toggle-con-inner .daigakuin,
main ul.list-toggle li .list-toggle-con-inner .daigaku {
  font-weight: bold;
}
main ul.list-toggle li .list-toggle-con-inner table.faq_table {
  width: 100%;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
main ul.list-toggle li .list-toggle-con-inner table.faq_table td,
main ul.list-toggle li .list-toggle-con-inner table.faq_table th {
  padding: 1.5rem;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  main ul.list-toggle li .list-toggle-con-inner table.faq_table td,
  main ul.list-toggle li .list-toggle-con-inner table.faq_table th {
    padding: 0.5rem;
  }
}
main ul.list-toggle li .list-toggle-con-inner table.faq_table th {
  background: #efefef;
}
main .jinji_main {
  margin: 0 0 10rem 0;
}
@media only screen and (max-width: 768px) {
  main .jinji_main {
    margin: 0 0 3rem 0;
  }
}
main .jinji_main .inner {
  max-width: 1000px;
  margin: auto;
  border-left: 1px dotted #FEE200;
  padding: 0 5rem;
}
@media only screen and (max-width: 768px) {
  main .jinji_main .inner {
    padding: 0 8vw;
  }
}
main .jinji_main h3 {
  font-weight: bold;
  font-size: 2.8rem;
  margin: 0 0 2rem 0;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  main .jinji_main h3 {
    font-size: 2.2rem;
    margin: 0 0 2rem 0;
  }
  main .jinji_main h3 br {
    display: none;
  }
}
main .jinji_main p {
  margin: 0 0 1em 0;
}
main .rec_details {
  color: #FEE200;
  font-weight: 500;
  margin: 0 0 3rem 0;
}
@media only screen and (max-width: 768px) {
  main .rec_details {
    margin: 0 0 2rem 0;
  }
}
main .faq_block {
  margin: 0 0 5rem 0;
}
main .faq_block h2 {
  border-bottom: none !important;
}
main .link_btns {
  text-align: center;
}
main .link_btns a {
  display: inline-block;
  border: 1px solid #FEE200;
  padding: 2rem 4rem;
  border-radius: 6px;
  color: #FEE200;
}
main .link_btns a:hover {
  background: #FEE200;
  color: #ffffff;
}