@charset "UTF-8";
/****************************************
	   General Setting 
*****************************************/
body {
  padding: 0;
  margin: 0;
}
body * {
  font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
}

a {
  display: block;
  color: inherit !important;
  text-decoration: none !important;
  cursor: pointer;
}

p {
  line-height: 1.8;
  margin: 0;
}

img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

h1 {
  margin: 0;
}

h2 {
  position: relative;
  font-size: 2.25em;
  padding-left: 1.75rem;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.5em;
    padding-left: 1rem;
  }
}
h2::before {
  position: absolute;
  content: "";
  background: #6aac44;
  width: 12px;
  height: 12px;
  border-radius: 10px;
  top: 0.65em;
  left: 0;
}
@media (max-width: 768px) {
  h2::before {
    width: 8px;
    height: 8px;
    top: 0.6em;
  }
}

.en {
  color: #6aac44;
  font-family: "Outfit", sans-serif;
  font-size: 1.2em;
  padding-left: 1.75rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .en {
    font-size: 1em;
    padding-left: 1rem;
    margin-bottom: 1rem;
  }
}

h3 {
  font-size: 1.75em !important;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.25em !important;
  }
}
h3 span {
  color: #6aac44;
}

h4 {
  position: relative;
  color: #6aac44;
  font-size: 1.25em !important;
  margin-top: 0;
  margin-bottom: 12px;
}
h4::before {
  position: absolute;
  content: "";
  background-image: url(./img/);
}
@media (max-width: 768px) {
  h4 {
    font-size: 1em !important;
  }
}

.pc {
  display: block;
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 768px) {
  .sp {
    display: block;
  }
}

section {
  padding: 8.5rem 0;
}
@media (max-width: 768px) {
  section {
    padding: 2.25rem 0;
  }
}

.btn {
  position: relative;
  background-image: linear-gradient(90deg, #6aac44, #355622);
  display: block;
  color: #fff !important;
  font-size: 1.5em;
  line-height: 1.8;
  width: 100%;
  max-width: 860px;
  padding: 2.75rem 5.625rem;
  margin: 3.75rem auto 0;
  border-radius: 100px;
}
@media (max-width: 768px) {
  .btn {
    font-size: 1.25em;
    line-height: 1.4;
    width: 100%;
    padding: 1rem 4.5rem 1.2rem 2.5rem;
    margin: 2rem auto 0;
  }
}
.btn span {
  font-family: "Outfit", sans-serif;
  font-size: 0.75em;
}
.btn::after {
  position: absolute;
  content: "";
  background: url(./img/arrow.svg);
  background-repeat: no-repeat !important;
  background-size: cover !important;
  top: 50%;
  right: 2rem;
  width: 60px;
  height: 60px;
  transform: translate(0, -50%);
}
@media (max-width: 768px) {
  .btn::after {
    width: 50px;
    height: 50px;
    right: 1rem;
  }
}

header {
  z-index: 9999;
  position: relative;
}
header .header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  background: #fff;
  align-items: center;
  width: 100%;
  top: 0;
  left: 0;
  padding: 1.625rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1254901961);
}
@media (max-width: 768px) {
  header .header {
    width: 100%;
    top: 0;
    padding: 12px 18px;
    border-radius: 0;
  }
}
header .header__logo {
  width: 180px;
}
header .header .nav__btn {
  position: relative;
  width: 32px;
  height: 16px;
  right: 2rem;
  z-index: 200;
}
@media (max-width: 768px) {
  header .header .nav__btn {
    right: 0;
  }
}
header .header .nav__btn:hover {
  cursor: pointer;
}
header .header .nav__btn span {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  border-radius: 10px;
  transition: all 0.3s;
  right: 0;
}
header .header .nav__btn span::before, header .header .nav__btn span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  border-radius: 10px;
  transition: all 0.3s;
  right: 0;
}
header .header .nav__btn span::before {
  top: 8px;
}
header .header .nav__btn span::after {
  top: 16px;
}
header .header .nav__btn .hmb.open {
  background: transparent;
}
header .header .nav__btn .hmb.open::before {
  transform: translateY(50%) rotate(25deg);
  opacity: 1;
  top: 48%;
}
header .header .nav__btn .hmb.open::after {
  transform: translateY(50%) rotate(-25deg);
  opacity: 1;
  top: 50%;
}
header .header nav {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  display: flex;
  left: 0;
  top: 5rem;
  width: 100vw;
  height: 100vh;
  padding: 1.5rem;
  z-index: 100;
  transition: all 0.5s;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  header .header nav {
    top: 3rem;
  }
}
header .header nav .nav_inner {
  background: #fff;
  display: block;
  max-width: 1300px;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  margin: 100px auto 0;
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  header .header nav .nav_inner {
    margin: 2rem auto 0;
  }
}
header .header nav .nav_inner ul {
  padding-left: 0;
}
header .header nav .nav_inner li {
  list-style: none;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  header .header nav .nav_inner li {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
header .header nav .nav_inner li:last-child {
  border-bottom: none;
}
header .header nav .nav_inner a p {
  position: relative;
  padding: 0 2.25rem;
}
@media screen and (max-width: 768px) {
  header .header nav .nav_inner a p {
    font-size: 14px;
    padding: 0 2.25rem 0 1rem;
  }
}
header .header nav .nav_inner a p span {
  font-family: "Outfit", sans-serif;
  color: #6aac44;
}
header .header nav .nav_inner a p::after {
  position: absolute;
  content: "";
  background: url(./img/c-arrow.svg);
  width: 24px;
  height: 24px;
  top: 50%;
  right: 2.25rem;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  header .header nav .nav_inner a p::after {
    right: 1rem;
  }
}
header .header .hide {
  left: 100%;
  opacity: 0;
}

.inner {
  padding: 0 2.25rem;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 1rem;
  }
}

.oc_bnr {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 200px;
  z-index: 999;
}
@media (max-width: 768px) {
  .oc_bnr {
    width: 100%;
    left: 0;
    right: inherit;
    bottom: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
  }
}

main .mv {
  padding: 3rem 0 0 0;
}
main .contents {
  background: #f0faea;
}
main .contents__box {
  background: #fff;
  max-width: 630px;
  padding: 2.25rem 0 1.5rem;
  margin: 0 auto;
  border-radius: 15px;
}
@media (max-width: 768px) {
  main .contents__box {
    padding: 2rem 0 1rem;
  }
}
main .contents__box h4 {
  position: relative;
  text-align: center;
  font-size: 1.5em !important;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
main .contents__box h4::before {
  position: absolute;
  content: "";
  background: url(./img/contents.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 26px;
  height: 23px;
  top: 50%;
  left: -1.6rem;
  transform: translate(-50%, -50%);
}
main .contents__box a {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: solid 1px #dddddd;
}
main .contents__box a:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  main .contents__box a {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
main .contents__box a p {
  position: relative;
  padding: 0 2.25rem;
}
@media (max-width: 768px) {
  main .contents__box a p {
    font-size: 14px;
    padding: 0 2.3rem 0 1rem;
  }
}
main .contents__box a p span {
  font-family: "Outfit", sans-serif;
  color: #6aac44;
}
main .contents__box a p::after {
  position: absolute;
  content: "";
  background: url(./img/c-arrow.svg);
  width: 24px;
  height: 24px;
  top: 50%;
  right: 2.25rem;
  transform: translate(0, -50%);
}
@media (max-width: 768px) {
  main .contents__box a p::after {
    right: 1rem;
  }
}
main .feature__ttl {
  max-width: 700px;
  margin-bottom: 3.75rem;
}
main .feature__h3 {
  display: flex;
  align-items: flex-start;
}
main .feature__h3 img {
  width: 46px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 1rem;
}
@media (max-width: 768px) {
  main .feature__h3 img {
    width: 30px;
  }
}
main .feature__h3 h3 {
  margin-top: 0;
}
main .feature .image01 {
  width: 75%;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  main .feature .image01 {
    width: 100%;
    margin-top: 1rem;
  }
}
main .feature .image03 {
  width: 70%;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  main .feature .image03 {
    width: 100%;
    margin-top: 1rem;
  }
}
main .feature__box {
  display: flex;
  gap: 5%;
}
@media (max-width: 768px) {
  main .feature__box {
    display: block;
  }
}
main .feature__box img {
  width: 30%;
}
@media (max-width: 768px) {
  main .feature__box img {
    width: 100%;
    margin-top: 1rem;
  }
}
main .feature hr {
  margin: 3.75rem auto;
  border: solid 1px #dddddd;
}
@media (max-width: 768px) {
  main .feature hr {
    margin: 2rem auto;
  }
}
main .feature .pickup {
  background: #fff;
  padding: 2rem;
  margin-top: 2.25rem;
  border: solid 10px #deedce;
  border-radius: 15px;
}
@media (max-width: 768px) {
  main .feature .pickup {
    padding: 1.5rem;
  }
}
main .message {
  background: #f7f7f7;
}
main .message__content {
  background: #fff;
  padding: 4.6rem;
  border-radius: 15px;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  main .message__content {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
main .message__content h4 {
  position: relative;
  padding-left: 1.125rem;
}
main .message__content h4::before {
  position: absolute;
  content: "";
  background: url(./img/h4-ttl.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 5px;
  height: 23px;
  top: 3px;
  left: 0;
}
main .message__box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5%;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  main .message__box {
    margin-bottom: 1.5rem;
  }
}
main .message__box-left-cnt {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
main .message__box-left .name {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 2.25rem;
}
main .message__box-left .name .emp {
  font-size: 2.65em;
}
@media (max-width: 768px) {
  main .message__box-left .name .emp {
    font-size: 2em;
  }
}
main .message__box-left .smessage .name {
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  main .message__box-left .smessage img {
    width: 35%;
  }
}
main .message__box-left table {
  padding-left: 1.3rem;
  margin-bottom: 3.75rem;
  border-left: solid 4px #dddddd;
}
@media (max-width: 768px) {
  main .message__box-left table {
    padding-left: 13px;
    margin-bottom: 2rem;
    border-left: solid 3px #dddddd;
  }
}
@media (max-width: 768px) {
  main .message__box-left table tr {
    display: flex;
    flex-direction: column;
  }
}
main .message__box-left table th {
  text-align: left;
  padding-right: 1.3rem;
}
main .message__box-left table th,
main .message__box-left table td {
  font-size: 12px;
}
main .message__box img {
  width: 20%;
}
@media (max-width: 768px) {
  main .message__box img {
    width: 35%;
  }
}
main .message .qa {
  position: relative;
  color: #6aac44;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Outfit", sans-serif;
  font-size: 1.875em;
  width: 80%;
  padding: 1.25rem;
  margin: 3rem auto 0;
  border: solid 2px #6aac44;
  border-radius: 60px;
}
@media (max-width: 768px) {
  main .message .qa {
    font-size: 1.125em;
    width: 100%;
    padding: 10px;
    margin: 1.5rem auto 0;
  }
}
main .message .qa::after {
  position: absolute;
  content: "";
  background: url(./img/plus.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 45px;
  height: 45px;
  top: 50%;
  right: 1.2rem;
  transform: translate(0, -50%);
}
@media (max-width: 768px) {
  main .message .qa::after {
    width: 22px;
    height: 22px;
    right: 10px;
  }
}
main .message .qa:hover {
  cursor: pointer;
}
main .message .modal {
  display: none; /* 初期状態では非表示 */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 1rem;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}
main .message .modal-content {
  position: relative;
  background-color: #fff;
  margin: 5% auto;
  padding: 3rem 4.625rem 5rem;
  max-width: 1100px;
  border-radius: 8px;
  position: relative;
}
@media (max-width: 768px) {
  main .message .modal-content {
    padding: 2rem 2rem 3rem;
  }
}
main .message .close {
  position: absolute;
  width: 75px;
  height: 75px;
  top: -1.5rem;
  right: -1.5rem;
}
@media (max-width: 768px) {
  main .message .close {
    width: 45px;
    height: 45px;
    top: -0.5rem;
    right: -0.5rem;
  }
}
main .message .title {
  color: #6aac44;
  font-family: "Outfit", sans-serif;
  font-size: 3em;
}
@media (max-width: 768px) {
  main .message .title {
    font-size: 1.3em;
  }
}
main .message .q {
  background: #f0faea;
  color: #6aac44;
  font-size: 1.125em;
  font-weight: bold;
  padding: 10px 2rem;
  margin-top: 2.25rem;
  margin-bottom: 1.25rem;
  border-radius: 5px;
}
@media (max-width: 768px) {
  main .message .q {
    font-size: 1em;
    padding: 5px 14px;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
main .message .q span {
  font-family: "Outfit", sans-serif;
  font-weight: normal;
}
main .qc h3 {
  padding-bottom: 14px;
  margin-bottom: 2.25rem;
  border-bottom: solid 1px #6aac44;
}
main .qc__box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  main .qc__box {
    display: block;
  }
}
main .qc img {
  width: 32%;
}
@media (max-width: 768px) {
  main .qc img {
    width: 100%;
    margin-bottom: 1rem;
  }
}
main .career {
  background: #6aac44;
}
main .career h2,
main .career .en {
  color: #fff;
}
main .career h2::before {
  background: #fff;
}
main .career h4 {
  position: relative;
  padding-left: 1.125rem;
}
main .career h4::before {
  position: absolute;
  content: "";
  background: url(./img/h4-ttl.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 5px;
  height: 23px;
  top: 3px;
  left: 0;
}
main .career__box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  main .career__box {
    display: block;
  }
}
main .career__box-item {
  background: #fff;
  width: 49%;
  padding: 2.5rem;
  border-radius: 15px;
}
@media (max-width: 768px) {
  main .career__box-item {
    width: 100%;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
  }
}
main .career__box-item img {
  padding: 1rem;
}
@media (max-width: 768px) {
  main .career__box-item img {
    padding: 0;
  }
}
main .movie {
  background: #f0faea;
}
main .movie__box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  main .movie__box {
    display: block;
  }
}
main .movie__box iframe {
  width: 32%;
  aspect-ratio: 3/2;
  border-radius: 15px;
}
@media (max-width: 768px) {
  main .movie__box iframe {
    width: 100%;
    margin-bottom: 1rem;
  }
}
main .link .link02 {
  background-image: linear-gradient(90deg, #4b6edd, #0b2576);
}
main .link .link02::after {
  background: url(./img/o-arrow.svg);
}
main .link .link03 {
  background-image: linear-gradient(90deg, #f0acad, #785657);
}
main .link .link03::after {
  background: url(./img/a-arrow.svg);
}

.scroll img {
  height: auto;
  min-width: 860px;
  overflow-x: scroll;
}

footer .footer__top {
  background: #eba3a3;
  padding: 5.625rem 1rem 3.75rem;
}
@media screen and (max-width: 768px) {
  footer .footer__top {
    padding: 3rem 1rem;
  }
}
footer .footer__top-sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  footer .footer__top-sns {
    gap: 1rem;
  }
}
footer .footer__top-sns a {
  width: 5%;
}
@media screen and (max-width: 768px) {
  footer .footer__top-sns a {
    width: 18%;
  }
}
footer .footer__top-logo {
  width: 100%;
  max-width: 333px;
  margin: 4.5rem auto 1.5rem;
}
@media screen and (max-width: 768px) {
  footer .footer__top-logo {
    margin: 2rem auto 1rem;
  }
}
footer .footer__top p {
  color: #fff;
  text-align: center;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  footer .footer__top p {
    font-size: 0.875em;
  }
}
footer .footer__top p:first-of-type {
  font-size: 1.125em;
  font-weight: bold;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  footer .footer__top p:first-of-type {
    font-size: 1em;
  }
}
footer .footer__top p a {
  display: inline;
  text-decoration: underline !important;
}
footer .footer__copy {
  background: #666666;
  color: #fff;
  display: block;
  font-size: 12px;
  text-align: center;
  padding: 10px 1rem;
}
@media screen and (max-width: 768px) {
  footer .footer__copy {
    padding: 10px 1rem 4rem;
  }
}/*# sourceMappingURL=style.css.map */


.message__movie {
  width: calc(100% - 20vw);
  margin-left: auto;
  margin-right: auto;
}



.student-message-box-container {
  width: calc(100% - 20vw);
  margin-left: auto;
  margin-right: auto;
}
.student-message-box-container .student-message-box .student-intro .student-text > * {
  position: relative;
  z-index: 1;
}
.student-message-box-container .student-message-box .student-intro .student-text::before {
  right: 1vw;
  z-index: 0;
}
.student-message-box-container .student-message-box.i1 .student-intro .student-text::before {
  content: "01";
}
.student-message-box-container .student-message-box.i2 .student-intro .student-text::before {
  content: "02";
}
.student-message-box-container .student-message-box.i3 .student-intro .student-text::before {
  content: "03";
}
.student-message-box-container .student-message-box.i4 .student-intro .student-text::before {
  content: "04";
}
.student-message-box-container .student-message-box .student-intro .student-text .student-department {
  font-size: 14px;
}
.student-message-box-container .student-message-box .student-intro .student-text .student-name {
  font-size: 36px;
}
.student-message-box-container .student-message-box .student-intro .student-text .student-school {
  font-size: 14px;
}
.student-message-box-container .student-message-box .student-intro .student-text .lead-copy {
  font-size: 24px;
}
.student-message-box-container .student-message-box .student-intro .student-text .lead-text {
  font-size: 14px;
}
.student-message-box-container .student-message-box>table td,
.student-message-box-container .student-message-box>table th {
  font-size: 14px;
}
.qa-section .qa-title p.text{
  font-size: calc(20px + .5vw);
}
.qa-section .qa-content dl.qa-block dt {
  padding: 10px 0 10px 6vw;
  font-size: calc(16px + .5vw);
}
.qa-section .qa-content dl.qa-block dt::after {
  font-size: 30px;
}
.slick-next,
.slick-prev {
  width: 40px;
  height: 40px;
  top: 17vw;
  z-index: 9;
}
.slick-next {
  right: -50px;
}
.slick-prev {
  left: -50px;
}
.slick-next:before,
.slick-prev:before {
  color: #44a335;
  font-size: 40px;
}


@media screen and (max-width: 1024px) and (orientation: portrait) {
  .message__movie {
    width: 100%;
  }
  .student-message-box-container {
    width: 100%;
  }
  .student-message-box-container .student-message-box .student-intro .student-text .student-department {
    font-size: 13px;
  }
  .student-message-box-container .student-message-box .student-intro .student-text .student-name {
    font-size: 24px;
  }
  .student-message-box-container .student-message-box .student-intro .student-text .student-school {
    font-size: 13px;
  }
  .student-message-box-container .student-message-box .student-intro .student-text .lead-copy {
    font-size: 18px;
  }
  .qa-section .qa-content dl.qa-block dt::after {
    font-size: 20px;
  }
  .qa-section .qa-content dl.qa-block dt {
    padding: 10px 0 10px 60px;
    font-size: 16px;
  }
  .slick-next,
  .slick-prev {
    width: 35px;
    height: 35px;
    top: 40vw;
  }
  .slick-next {
    right: 0;
  }
  .slick-prev {
    left: 0;
  }
  .slick-next:before,
  .slick-prev:before {
    font-size: 35px;
  }
}



/* ----------------------------- YouTube動画埋め込み */
.youtube-movie {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
.u-youtube-wrap { position: relative; width: 100%; padding-top: 56.2%; }
.u-youtube-wrap iframe,
.u-youtube-wrap video,
.u-youtube-wrap img.replace { position: absolute; top: 0; right: 0; width: 100% !important; height: 100% !important; }