@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
}

.home *, header * {
  box-sizing: border-box;
}

.home .swiper-wrapper {
  box-sizing: content-box;
  height: auto;
}

header li,
.home li,
footer li {
  list-style: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

header.pc {
  position: sticky;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 10;
}
@media screen and (max-width: 1000px) {
  header.pc {
    display: none;
  }
}
header.pc .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 0;
}
header.pc .inner .logo {
  padding-bottom: 20px;
}
header.pc .inner .logo a img {
  width: 240px;
}
header.pc .inner nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
header.pc .inner nav .suv {
  display: flex;
  align-items: center;
  gap: 10px;
}
header.pc .inner nav .suv ul li {
  display: inline-block;
}
header.pc .inner nav .suv ul li a {
  display: block;
  padding: 0.5em;
  color: #000;
  font-size: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}
header.pc .inner nav .suv ul li a:hover {
  color: #249e49;
}
header.pc .inner nav .suv .language a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 8px;
  height: 26px;
  border: solid 1px #249e49;
  border-radius: 100px;
  text-decoration: none;
  color: #249e49;
  transition: 0.1s;
}
header.pc .inner nav .suv .language a:hover {
  background: #249e49;
  color: #fff;
}
header.pc .inner nav .suv .language a:hover img {
  filter: brightness(0) invert(1);
}
header.pc .inner nav .suv .language a span {
  line-height: 0;
  font-size: 12px;
}
header.pc .inner nav .suv .language a img {
  width: 18px;
  transition: 0.1s;
}
header.pc .inner nav .suv .search a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: solid 1px #249e49;
  border-radius: 50%;
  transition: 0.1s;
}
header.pc .inner nav .suv .search a:hover {
  background: #249e49;
}
header.pc .inner nav .suv .search a:hover img {
  filter: brightness(0) invert(1);
}
header.pc .inner nav .suv .search a img {
  width: 12px;
}
header.pc .inner nav .main {
  display: flex;
  align-items: center;
  gap: 10px;
}
header.pc .inner nav .main ul li {
  display: inline-block;
}
header.pc .inner nav .main ul li.dropdown_trigger a {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
header.pc .inner nav .main ul li.dropdown_trigger a .icon {
  width: 10px;
  height: 10px;
  position: relative;
}
header.pc .inner nav .main ul li.dropdown_trigger a .icon::before, header.pc .inner nav .main ul li.dropdown_trigger a .icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #249e49;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
header.pc .inner nav .main ul li.dropdown_trigger a .icon::before {
  transform: rotate(90deg);
  transition: 0.2s;
}
header.pc .inner nav .main ul li.dropdown_trigger.show a {
  color: #249e49;
}
header.pc .inner nav .main ul li.dropdown_trigger.show a .icon::before {
  transform: rotate(0);
}
header.pc .inner nav .main ul li a {
  display: block;
  padding: 1em 1em 2em 1em;
  line-height: 1;
  color: #000;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
  cursor: pointer;
}
header.pc .inner nav .main ul li a:hover {
  color: #249e49;
}
header.pc .inner nav .main .btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 1em;
}
header.pc .inner nav .main .btn a {
  background: #249e49;
  color: #fff;
  display: block;
  padding: 0.5em 1em;
  border-radius: 100px;
  text-decoration: none;
  font-size: 14px;
}
header.pc .dropdown {
  width: 100%;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  position: relative;
  z-index: 1;
}
header.pc .dropdown.show {
  opacity: 1;
  visibility: visible;
}
header.pc .dropdown .dropdown_inner {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
header.pc .dropdown .dropdown_inner .title {
  font-size: 16px;
  font-weight: 600;
  border-right: 1px solid #249e49;
  padding: 10px 20px 10px 0;
  margin-right: 20px;
}
header.pc .dropdown .dropdown_inner .title a {
  color: #000;
  text-decoration: none;
  transition: 0.2s;
}
header.pc .dropdown .dropdown_inner .title a:hover {
  color: #249E49;
}
header.pc .dropdown .dropdown_inner ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  padding: 20px;
}
header.pc .dropdown.drop_3col .dropdown_inner ul {
	grid-template-columns: repeat(3, 1fr);
}
header.pc .dropdown .dropdown_inner ul li a {
  display: block;
  position: relative;
  padding: 0.5em 2.5em 0.5em 0.5em;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}
header.pc .dropdown .dropdown_inner ul li a:hover {
  color: #249e49;
}
header.pc .dropdown .dropdown_inner ul li a:hover::before {
  background: #fff;
}
header.pc .dropdown .dropdown_inner ul li a:hover::after {
  border-color: #249e49;
}
header.pc .dropdown .dropdown_inner ul li a::before, header.pc .dropdown .dropdown_inner ul li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.2s;
}
header.pc .dropdown .dropdown_inner ul li a::before {
  width: 1.6em;
  height: 1.6em;
  background: #249e49;
  right: 0;
  border-radius: 100%;
  border: solid 1px #249e49;
}
header.pc .dropdown .dropdown_inner ul li a::after {
  width: 0.4em;
  height: 0.4em;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  right: 0.7em;
}
header.pc .search_area {
  overflow: hidden;
  max-height: 0;
  transition: 0.3s;
	position: relative;
    z-index: 100;
    background: #fff;
}
header.pc .search_area .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  padding: 60px 20px;
}
header.pc .search_area .inner .searchBox {
  width: 630px;
  position: relative;
  padding:0;	
}
header.pc .search_area .inner .searchBox button.searchsubmit {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
  background: none;
  border: none;
  cursor: pointer;
}
header.pc .search_area .inner .searchBox button.searchsubmit img {
  width: 20px;
}
header.pc .search_area .inner .searchBox input.searchTxtBox {
  width: 100%;
  border: none;
  background: #fff;
  border-radius: 10em;
  padding: 1em 1em 1em 4em;
  border: solid 1px #249e49;
  font-size: 16px;
  height: auto;
}
header.pc .search_area .inner .searchBox input.searchTxtBox:focus {
  outline: none;
}
header.pc .search_area .inner .close {
  font-size: 14px;
  cursor: pointer;
  position: relative;
  padding: 0.5em 0.5em 0.5em 2.5em;
}
header.pc .search_area .inner .close::before, header.pc .search_area .inner .close::after {
  content: "";
  display: block;
  width: 1.6em;
  height: 2px;
  background: #249e49;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
}
header.pc .search_area .inner .close::before {
  transform: rotate(-45deg);
}

header.sp {
  width: 100vw;
  height: 60px;
  align-items: flex-start;
  justify-content: space-between;
  background: #fff;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
}
@media screen and (max-width: 1000px) {
  header.sp {
    display: flex;
  }
}
header.sp .logo {
  height: 100%;
  padding: 10px;
}
header.sp .logo a img {
  height: 100%;
}
header.sp .drawer_btn {
  font-size: 54px;
  width: 0.9em;
  height: 1em;
  border-bottom-left-radius: 20px;
  background: #249e49;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
header.sp .drawer_btn span,
header.sp .drawer_btn span:after,
header.sp .drawer_btn span:before {
  content: "";
  display: block;
  width: 0.4em;
  height: 2px;
  background: #fff;
  position: absolute;
  transition: 0.3s;
}
header.sp .drawer_btn span:before {
  bottom: 0.14em;
  transition: 0.3s 0.3s, transform 0.3s;
}
header.sp .drawer_btn span:after {
  top: 0.14em;
  transition: 0.3s 0.3s, transform 0.3s;
}
header.sp .drawer_btn span.active {
  background: rgba(255, 255, 255, 0);
}
header.sp .drawer_btn span.active:before {
  bottom: 0;
  transform: rotate(-45deg);
  transition: 0.3s, transform 0.3s 0.3s;
}
header.sp .drawer_btn span.active:after {
  top: 0;
  transform: rotate(45deg);
  transition: 0.3s, transform 0.3s 0.3s;
}
header.sp .drawer_content {
  width: 100vw;
  height: 100vh;
  background: #fff;
  padding: 30px 20px 220px;
  overflow: scroll;
  position: fixed;
  top: 60px;
  right: -100%;
  opacity: 0;
  transition: 0.3s;
}
header.sp .drawer_content.active {
  opacity: 1;
  right: 0;
}
header.sp .drawer_content .dropdown .trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em 1em 1em 0.5em;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  transition: 0.2s;
  cursor: pointer;
  border-top: solid 1px #249e49;
}
header.sp .drawer_content .dropdown .trigger .icon {
  width: 14px;
  height: 14px;
  position: relative;
}
header.sp .drawer_content .dropdown .trigger .icon::before, header.sp .drawer_content .dropdown .trigger .icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #249e49;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s ease;
}
header.sp .drawer_content .dropdown .trigger .icon::before {
  transform: rotate(90deg);
}
header.sp .drawer_content .dropdown .trigger.active .icon::before {
  transform: rotate(0);
}
header.sp .drawer_content .dropdown .contents {
  max-height: 0;
  overflow: hidden;
  transition: 0.5s;
}
header.sp .drawer_content .dropdown .contents ul {
  padding-bottom: 10px;
}
header.sp .drawer_content .dropdown .contents ul li {
  padding-right: 10px;
}
header.sp .drawer_content .dropdown .contents ul li a {
  display: block;
  position: relative;
  padding: 1em 2.5em 1em 0.5em;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}
header.sp .drawer_content .dropdown .contents ul li a::before, header.sp .drawer_content .dropdown .contents ul li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.2s;
}
header.sp .drawer_content .dropdown .contents ul li a::before {
  width: 1.6em;
  height: 1.6em;
  background: #249e49;
  right: 0;
  border-radius: 100%;
  border: solid 1px #249e49;
}
header.sp .drawer_content .dropdown .contents ul li a::after {
  width: 0.4em;
  height: 0.4em;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  right: 0.7em;
}
header.sp .drawer_content .main {
  margin-bottom: 20px;
}
header.sp .drawer_content .main ul li {
  border-bottom: solid 1px #249e49;
  padding-right: 10px;
}
header.sp .drawer_content .main ul li:first-child {
  border-top: solid 1px #249e49;
}
header.sp .drawer_content .main ul li a {
  display: block;
  position: relative;
  padding: 1em 2.5em 1em 0.5em;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  transition: 0.2s;
}
header.sp .drawer_content .main ul li a::before, header.sp .drawer_content .main ul li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.2s;
}
header.sp .drawer_content .main ul li a::before {
  width: 1.6em;
  height: 1.6em;
  background: #249e49;
  right: 0;
  border-radius: 100%;
  border: solid 1px #249e49;
}
header.sp .drawer_content .main ul li a::after {
  width: 0.4em;
  height: 0.4em;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  right: 0.7em;
}
header.sp .drawer_content .sub {
  margin-bottom: 20px;
}
header.sp .drawer_content .sub ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 20px;
}
header.sp .drawer_content .sub ul li {
  padding-right: 10px;
}
header.sp .drawer_content .sub ul li a {
  display: block;
  position: relative;
  padding: 1em 2.5em 1em 0.5em;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}
header.sp .drawer_content .sub ul li a::before, header.sp .drawer_content .sub ul li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.2s;
}
header.sp .drawer_content .sub ul li a::before {
  width: 1.6em;
  height: 1.6em;
  background: #249e49;
  right: 0;
  border-radius: 100%;
  border: solid 1px #249e49;
}
header.sp .drawer_content .sub ul li a::after {
  width: 0.4em;
  height: 0.4em;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  right: 0.7em;
}
header.sp .drawer_content .foot {
  display: flex;
  align-items: center;
  gap: 10px;
}
header.sp .drawer_content .foot .language {
	display: none;
}
header.sp .drawer_content .foot .language a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 20px;
  height: 48px;
  border: solid 1px #249e49;
  border-radius: 10em;
  text-decoration: none;
  color: #249e49;
}
header.sp .drawer_content .foot .language a span {
  line-height: 0;
  font-size: 16px;
}
header.sp .drawer_content .foot .language a img {
  width: 18px;
  transition: 0.1s;
}
header.sp .drawer_content .foot .search_area {
  flex: 1;
}
header.sp .drawer_content .foot .search_area .searchBox {
  width: 100%;
  position: relative;
}
header.sp .drawer_content .foot .search_area .searchBox button.searchsubmit {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  margin: auto;
  background: none;
  border: none;
  cursor: pointer;
}
header.sp .drawer_content .foot .search_area .searchBox button.searchsubmit img {
  width: 20px;
}
header.sp .drawer_content .foot .search_area .searchBox input.searchTxtBox {
  width: 100%;
  border: none;
  background: #fff;
  border-radius: 10em;
  height: 48px;
  border: solid 1px #249e49;
  font-size: 16px;
  padding-left: 45px;
  line-height: 0;
}
header.sp .drawer_content .foot .search_area .searchBox input.searchTxtBox:focus {
  outline: none;
}
header.sp .drawer_content .foot .search_area .close {
  font-size: 14px;
  cursor: pointer;
  position: relative;
  padding: 0.5em 0.5em 0.5em 2.5em;
}
header.sp .drawer_content .foot .search_area .close::before, header.sp .drawer_content .foot .search_area .close::after {
  content: "";
  display: block;
  width: 1.6em;
  height: 2px;
  background: #249e49;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
}
header.sp .drawer_content .foot .search_area .close::before {
  transform: rotate(-45deg);
}

.page_top li {
  list-style: none;
}
.page_top .section_title {
  text-align: center;
  margin-bottom: 40px;
}
.page_top .section_title .en {
  color: #249e49;
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 500;
  margin-bottom: 0.5em;
}
.page_top .section_title h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
}
.page_top .section_title h2 span.red {
  color: #f74b01;
}
.page_top .section_title h2 span.yellow {
  color: #ecb100;
}
.page_top .section_title h2 span.mint {
  color: #7ac301;
}
.page_top .section_title h2 span.blue {
  color: #01ADEA;
}
.page_top .mainvisual {
  position: relative;
  padding-bottom: 20px;
}
.page_top .mainvisual::before {
  content: "";
  display: block;
  width: 99%;
  height: 95%;
  background: #EDF8DB;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 1000px) {
  .page_top .mainvisual::before {
    display: none;
  }
}
.page_top .mainvisual .scroll {
  position: absolute;
  top: 0;
  left: 0;
  width: 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  font-size: 10px;
  height: 100%;
  color: #249e49;
  padding-bottom: 100px;
  line-height: 1;
}
@media screen and (max-width: 850px) {
  .page_top .mainvisual .scroll {
    width: 8vw;
    margin-top: 0;
    justify-content: center;
    padding-bottom: 0;
  }
}
.page_top .mainvisual .scroll span:first-child {
  writing-mode: vertical-rl;
  text-transform: uppercase;
}
.page_top .mainvisual .scroll span:last-child {
  margin-top: 0.5em;
  margin-right: 0.2em;
}
.page_top .mainvisual .scroll span:last-child::before, .page_top .mainvisual .scroll span:last-child::after {
  content: "";
  display: block;
  width: 1px;
  background: #249e49;
}
.page_top .mainvisual .scroll span:last-child::before {
  height: 3.5em;
  margin-bottom: 0.5em;
}
.page_top .mainvisual .scroll span:last-child::after {
  height: 1em;
}
.page_top .mainvisual .copy {
  position: absolute;
  width: 30vw;
  padding-top: 150px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  left: 5vw;
}
@media screen and (max-width: 850px) {
  .page_top .mainvisual .copy {
    position: absolute;
    z-index: 2;
    width: 100%;
    padding-top: 0;
    max-width: 100%;
    gap: 0;
    top: 0;
    left: 0;
    padding-left: 8vw;
  }
}
.page_top .mainvisual .copy_main {
  color: #249e49;
  font-size: 54px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 850px) {
  .page_top .mainvisual .copy_main {
    gap: 1em;
    font-size: clamp(20px, 3vw, 40px);
    background: #fff;
    flex-direction: row;
    gap: 0.2em;
    padding: 5px 10px;
    border-top-right-radius: 10em;
    border-bottom-right-radius: 10em;
  }
  .page_top .mainvisual .copy_main br {
    display: none;
  }
}
.page_top .mainvisual .copy_sub {
  color: #249e49;
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 850px) {
  .page_top .mainvisual .copy_sub {
    font-size: clamp(10px, 2vw, 30px);
    background: #fff;
    padding: 10px;
    border-top-right-radius: 10em;
    border-bottom-right-radius: 10em;
    margin-top: -5px;
  }
  .page_top .mainvisual .copy_sub br {
    display: none;
  }
}
.page_top .mainvisual .swiper {
  flex: 1;
}
.page_top .mainvisual .swiper .swiper-wrapper .swiper-slide {
  padding-left: 35vw;
}
@media screen and (max-width: 850px) {
  .page_top .mainvisual .swiper .swiper-wrapper .swiper-slide {
    padding-left: 8vw;
  }
}
.page_top .mainvisual .swiper .swiper-wrapper .swiper-slide a {
  display: block;
  text-decoration: none;
}
.page_top .mainvisual .swiper .swiper-wrapper .swiper-slide a .photo {
  flex: 1;
  line-height: 0;
  aspect-ratio: 94/60;
  margin-bottom: 15px;
}
@media screen and (max-width: 850px) {
  .page_top .mainvisual .swiper .swiper-wrapper .swiper-slide a .photo {
    margin-bottom: 0;
    aspect-ratio: 36/43;
  }
}
.page_top .mainvisual .swiper .swiper-wrapper .swiper-slide a .photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom-left-radius: 50px;
}
@media screen and (max-width: 850px) {
  .page_top .mainvisual .swiper .swiper-wrapper .swiper-slide a .photo img.pc {
    display: none;
  }
}
.page_top .mainvisual .swiper .swiper-wrapper .swiper-slide a .photo img.sp {
  display: none;
}
@media screen and (max-width: 850px) {
  .page_top .mainvisual .swiper .swiper-wrapper .swiper-slide a .photo img.sp {
    display: block;
  }
}
.page_top .mainvisual .swiper .swiper-wrapper .swiper-slide a .item {
  display: flex;
  justify-content: space-between;
  color: #000;
  padding: 15px 30px;
  gap: 20px;
}
@media screen and (max-width: 850px) {
  .page_top .mainvisual .swiper .swiper-wrapper .swiper-slide a .item {
    padding: 15px 10px;
  }
}
.page_top .mainvisual .swiper .swiper-wrapper .swiper-slide a .item .txt {
  flex: 1;
}
.page_top .mainvisual .swiper .swiper-wrapper .swiper-slide a .item .txt span {
  display: block;
  font-weight: 600;
}
.page_top .mainvisual .swiper .swiper-wrapper .swiper-slide a .item .txt span:nth-child(1) {
  font-size: 28px;
}
@media screen and (max-width: 850px) {
  .page_top .mainvisual .swiper .swiper-wrapper .swiper-slide a .item .txt span:nth-child(1) {
    font-size: 22px;
  }
}
.page_top .mainvisual .swiper .swiper-wrapper .swiper-slide a .item .txt span:nth-child(2) {
  font-size: 14px;
}
@media screen and (max-width: 850px) {
  .page_top .mainvisual .swiper .swiper-wrapper .swiper-slide a .item .txt span:nth-child(2) {
    font-size: 12px;
  }
}
.page_top .mainvisual .swiper .swiper-wrapper .swiper-slide a .item .icon {
  width: 64px;
  height: 64px;
  background: #249e49;
  border-radius: 50%;
  position: relative;
  transition: 0.2s;
}
@media screen and (max-width: 850px) {
  .page_top .mainvisual .swiper .swiper-wrapper .swiper-slide a .item .icon {
    width: 28px;
    height: 28px;
  }
}
.page_top .mainvisual .swiper .swiper-wrapper .swiper-slide a .item .icon::before {
  content: "";
  width: 20%;
  height: 20%;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 10%;
  margin: auto;
}
.page_top .mainvisual .swiper .controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  line-height: 0;
}
@media screen and (max-width: 850px) {
  .page_top .mainvisual .swiper .controls {
    justify-content: center;
  }
}
.page_top .mainvisual .swiper .controls .prev,
.page_top .mainvisual .swiper .controls .next {
  width: 15px;
  height: 15px;
  cursor: pointer;
  transform: rotate(45deg);
}
.page_top .mainvisual .swiper .controls .prev {
  border-bottom: solid 2px #249e49;
  border-left: solid 2px #249e49;
}
.page_top .mainvisual .swiper .controls .next {
  border-top: solid 2px #249e49;
  border-right: solid 2px #249e49;
}
.page_top .mainvisual .swiper .controls .dot {
  width: -moz-fit-content;
  width: fit-content;
}
.page_top .mainvisual .swiper .controls .dot span {
  background: #fff;
  opacity: 1;
}
@media screen and (max-width: 800px) {
	.page_top .mainvisual .swiper .controls .dot span {
		background: #edf8db;
	}
}
.page_top .mainvisual .swiper .controls .dot span.swiper-pagination-bullet-active {
  background: #249e49;
}
.page_top .campus {
  padding: clamp(60px, 8vw, 100px) 20px;
}
.page_top .campus .inner {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}
@media screen and (max-width: 800px) {
  .page_top .campus .inner {
    flex-direction: column;
  }
}
.page_top .campus .inner .map {
  flex: 1;
  position: relative;
}
@media screen and (max-width: 800px) {
  .page_top .campus .inner .map {
    width: 100%;
  }
}
.page_top .campus .inner .map img {
  width: 100%;
  position: relative;
}
.page_top .campus .inner .map a {
  display: block;
  height: 13%;
  position: absolute;
}
.page_top .campus .inner .map a img {
  height: 100%;
  width: auto;
}
.page_top .campus .inner .map a.pin_1 {
  top: 15%;
  left: 11%;
}
.page_top .campus .inner .map a.pin_2 {
  top: 39%;
  left: 11%;
}
.page_top .campus .inner .map a.pin_3 {
  top: 65%;
  left: 6%;
}
.page_top .campus .inner .map a.pin_4 {
  top: 26%;
  left: 54%;
}
.page_top .campus .inner .campus_list {
  flex: 1;
}
.page_top .campus .inner .campus_list .item {
  border-top: solid 3px;
  border-bottom: solid 3px;
  margin-bottom: 10px;
}
@media screen and (max-width: 800px) {
  .page_top .campus .inner .campus_list .item {
    border-top: solid 2px;
    border-bottom: solid 2px;
  }
}
.page_top .campus .inner .campus_list .item.pin_1 {
  border-color: #f74b01;
}
.page_top .campus .inner .campus_list .item.pin_1 .title {
  color: #f74b01;
}
.page_top .campus .inner .campus_list .item.pin_1 .title .number::before {
  background: #f74b01;
}
.page_top .campus .inner .campus_list .item.pin_1 .title .icon::before, .page_top .campus .inner .campus_list .item.pin_1 .title .icon::after {
  background: #f74b01;
}
.page_top .campus .inner .campus_list .item.pin_1 .contents .info ul li {
  background-image: repeating-linear-gradient(90deg, #f74b01, #f74b01 6px, transparent 6px, transparent 12px);
}
.page_top .campus .inner .campus_list .item.pin_2 {
  border-color: #ecb100;
}
.page_top .campus .inner .campus_list .item.pin_2 .title {
  color: #ecb100;
}
.page_top .campus .inner .campus_list .item.pin_2 .title .number::before {
  background: #ecb100;
}
.page_top .campus .inner .campus_list .item.pin_2 .title .icon::before, .page_top .campus .inner .campus_list .item.pin_2 .title .icon::after {
  background: #ecb100;
}
.page_top .campus .inner .campus_list .item.pin_2 .contents .info ul li {
  background-image: repeating-linear-gradient(90deg, #ecb100, #ecb100 6px, transparent 6px, transparent 12px);
}
.page_top .campus .inner .campus_list .item.pin_3 {
  border-color: #7ac301;
}
.page_top .campus .inner .campus_list .item.pin_3 .title {
  color: #7ac301;
}
.page_top .campus .inner .campus_list .item.pin_3 .title .number::before {
  background: #7ac301;
}
.page_top .campus .inner .campus_list .item.pin_3 .title .icon::before, .page_top .campus .inner .campus_list .item.pin_3 .title .icon::after {
  background: #7ac301;
}
.page_top .campus .inner .campus_list .item.pin_3 .contents .info ul li {
  background-image: repeating-linear-gradient(90deg, #7ac301, #7ac301 6px, transparent 6px, transparent 12px);
}
.page_top .campus .inner .campus_list .item.pin_4 {
  border-color: #01adea;
}
.page_top .campus .inner .campus_list .item.pin_4 .title {
  color: #01adea;
}
.page_top .campus .inner .campus_list .item.pin_4 .title .number::before {
  background: #01adea;
}
.page_top .campus .inner .campus_list .item.pin_4 .title .icon::before, .page_top .campus .inner .campus_list .item.pin_4 .title .icon::after {
  background: #01adea;
}
.page_top .campus .inner .campus_list .item.pin_4 .contents .info ul li {
  background-image: repeating-linear-gradient(90deg, #01adea, #01adea 6px, transparent 6px, transparent 12px);
}
.page_top .campus .inner .campus_list .item.active .title .icon::before {
  transform: rotate(0);
}
.page_top .campus .inner .campus_list .item .title {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .page_top .campus .inner .campus_list .item .title {
    padding: 15px 10px;
  }
}
.page_top .campus .inner .campus_list .item .title .number {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .page_top .campus .inner .campus_list .item .title .number {
    font-size: 12px;
    width: 25px;
    height: 25px;
  }
}
.page_top .campus .inner .campus_list .item .title .number::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 10em;
  border-bottom-right-radius: 0;
  transform: rotate(45deg);
  z-index: -1;
}
.page_top .campus .inner .campus_list .item .title .txt {
  font-weight: 500;
  flex: 1;
  font-size: clamp(14px, 1.6vw, 18px);
}
.page_top .campus .inner .campus_list .item .title .icon {
  width: 16px;
  height: 16px;
  position: relative;
}
@media screen and (max-width: 800px) {
  .page_top .campus .inner .campus_list .item .title .icon {
    width: 14px;
    height: 14px;
  }
}
.page_top .campus .inner .campus_list .item .title .icon::before, .page_top .campus .inner .campus_list .item .title .icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.page_top .campus .inner .campus_list .item .title .icon::before {
  transform: rotate(90deg);
}
.page_top .campus .inner .campus_list .item .contents {
  max-height: 0px;
  overflow: hidden;
  transition: 0.3s;
}
.page_top .campus .inner .campus_list .item .contents .info {
  padding: 20px 20px 40px;
}
@media screen and (max-width: 800px) {
  .page_top .campus .inner .campus_list .item .contents .info {
    padding: 20px 0;
  }
}
.page_top .campus .inner .campus_list .item .contents .info .photo {
  flex: 1;
}
.page_top .campus .inner .campus_list .item .contents .info .photo img {
  width: 100%;
	margin-bottom: 20px;
}
.page_top .campus .inner .campus_list .item .contents .info ul {
  flex: 1;
}
.page_top .campus .inner .campus_list .item .contents .info ul li {
  display: flex;
  gap: 10px;
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-size: clamp(14px, 1.5vw, 16px);
}
.page_top .campus .inner .campus_list .item .contents .info ul li h3 {
  font-size: clamp(12px, 1.5vw, 16px);
  font-weight: 500;
  width: 6em;
}
.page_top .campus .inner .campus_list .item .contents .info ul li .txt {
  flex: 1;
}
.page_top .campus .inner .campus_list .item .contents .info ul li .txt a {
  display: inline-block;
  color: #000;
  margin-bottom: 0.5em;
	text-decoration: none;
}
.page_top .campus .inner .campus_list .item .contents .info ul li .txt a.txt_underline {
	text-decoration: underline;
}
.page_top .banner .swiper {
  width: 100%;
  padding: 60px 0;
}
.page_top .banner .swiper .swiper-wrapper img {
  width: 100%;
  height: auto;
}
.page_top .banner .swiper .controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px;
  line-height: 0;
}
.page_top .banner .swiper .controls .prev,
.page_top .banner .swiper .controls .next {
  width: 15px;
  height: 15px;
  cursor: pointer;
  transform: rotate(45deg);
}
.page_top .banner .swiper .controls .prev {
  border-bottom: solid 2px #249e49;
  border-left: solid 2px #249e49;
}
.page_top .banner .swiper .controls .next {
  border-top: solid 2px #249e49;
  border-right: solid 2px #249e49;
}
.page_top .banner .swiper .controls .dot {
  width: -moz-fit-content;
  width: fit-content;
}
.page_top .banner .swiper .controls .dot span {
  background: #edf8db;
  opacity: 1;
}
.page_top .banner .swiper .controls .dot span.swiper-pagination-bullet-active {
  background: #249e49;
}
.page_top .feature {
  background-image: radial-gradient(circle, #e3f4ee 3px, transparent 3px), radial-gradient(circle, #e3f4ee 3px, transparent 3px);
  background-position: 0 0, 10px 20px;
  background-size: 20px 40px;
  padding: clamp(60px, 8vw, 100px) 0 0;
}
.page_top .feature .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 100px;
}
.page_top .feature .inner p {
  text-align: center;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 2;
  font-size: clamp(14px, 1.5vw, 16px);
}
.page_top .feature .inner p br.sp {
  display: none;
}
@media screen and (max-width: 800px) {
  .page_top .feature .inner p br.sp {
    display: block;
  }
}
.page_top .feature .inner ul {
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 800px) {
  .page_top .feature .inner ul {
    flex-direction: column;
    gap: 40px;
  }
}
.page_top .feature .inner ul li {
  flex: 1;
}
.page_top .feature .inner ul li .photo {
  position: relative;
  margin-bottom: 10px;
}
.page_top .feature .inner ul li .photo span {
  position: absolute;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background: #249e49;
  padding: 0.4em 0.8em;
  font-size: clamp(12px, 1.3vw, 14px);
  color: #fff;
  font-weight: 500;
}
.page_top .feature .inner ul li .photo span b {
  font-size: 16px;
  font-weight: 500;
}
.page_top .feature .inner ul li .photo img {
  border-radius: 20px;
  width: 100%;
}
.page_top .feature .inner ul li .txt {
  text-align: center;
  color: #249e49;
  font-weight: 500;
  font-size: 16px;
}
.page_top .feature .line {
  line-height: 0;
  width: 100%;
}
.page_top .feature .line img {
  width: 100%;
  height: auto;
}
.page_top .achievements {
  position: relative;
  background: #edf8db;
}
.page_top .achievements .inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 20px;
}
@media screen and (max-width: 800px) {
  .page_top .achievements .inner {
    display: block;
  }
}
.page_top .achievements .inner .item {
  background: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 800px) {
  .page_top .achievements .inner .item {
    margin-bottom: 20px;
  }
}
.page_top .achievements .inner .item:nth-child(1) {
  grid-area: 1/1/2/2;
}
.page_top .achievements .inner .item:nth-child(2) {
  grid-area: 1/2/2/3;
}
.page_top .achievements .inner .item:nth-child(3) {
  grid-area: 2/1/3/3;
}
.page_top .achievements .inner .item h3 {
  display: inline-block;
  background: #249e49;
  color: #fff;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 0.5em 1.5em;
  font-size: 18px;
  font-weight: 500;
}
.page_top .achievements .inner .item .txt {
  text-align: center;
  padding-bottom: 40px;
  font-weight: 500;
}
.page_top .achievements .inner .item .txt p {
	padding: 15px 20px 0;
	display: block;
	font-weight: 400;
}
@media screen and (max-width: 800px) {
	.page_top .achievements .inner .item .txt p {
		padding: 15px 15px 0;
		font-size: 14px;
	}
}
.page_top .achievements .inner .item .txt p a {
	color: #249e49;
	font-weight: 500;
	font-size: 15px;
	text-decoration: none;
}
@media screen and (max-width: 800px) {
	.page_top .achievements .inner .item .txt p a {
		font-size: 14px;
	}
}
.page_top .achievements .inner .item .txt img {
	width: 70%;
	max-width: 300px;
	margin: 20px auto 0;
}
.page_top .achievements .line {
  line-height: 0;
  width: 100vw;
}
.page_top .achievements .line img {
  width: 100vw;
  height: auto;
}
.page_top .program {
  position: relative;
}
.page_top .program::before, .page_top .program::after {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 800px) {
  .page_top .program::before, .page_top .program::after {
    width: 40px;
    height: 40px;
  }
}
.page_top .program .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) 20px;
}
@media screen and (max-width: 800px) {
  .page_top .program .inner {
    padding: 60px 20px;
  }
}
.page_top .program.sort {
  background: #edf8db;
}
.page_top .program.sort::before {
  background: #fff;
}
.page_top .program.sort::after {
  background: #edf8db;
  border-top-right-radius: 100%;
}
.page_top .program.sort .inner h3 {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  padding: 0.8em 1.5em;
  border-radius: 30px;
  border-bottom-left-radius: 0;
  background: #fff;
  margin-bottom: 1em;
}
@media screen and (max-width: 800px) {
  .page_top .program.sort .inner h3 {
    font-size: 14px;
  }
}
.page_top .program.sort .inner h3 span {
  color: #249e49;
}
.page_top .program.sort .inner .select {
  margin-bottom: 60px;
}
.page_top .program.sort .inner .select ul.age-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex-wrap: wrap;
  gap: 10px;
  padding-left: 40px;
}
@media screen and (max-width: 800px) {
  .page_top .program.sort .inner .select ul.age-group {
    grid-template-columns: repeat(2, 1fr);
    padding-left: 10px;
  }
}
.page_top .program.sort .inner .select ul.age-group li {
  text-align: center;
  color: #249e49;
  border: solid 1px #249e49;
  background: #fff;
  padding: 1em;
  font-weight: 500;
  border-radius: 10em;
  cursor: pointer;
  transition: 0.2s;
}
@media screen and (max-width: 800px) {
  .page_top .program.sort .inner .select ul.age-group li {
    font-size: 14px;
  }
}
.page_top .program.sort .inner .select ul.age-group li:hover {
  background: #249e49;
  color: #fff;
}
.page_top .program.sort .inner .select ul.age-group li.selected {
  background: #249e49;
  color: #fff;
}
.page_top .program.sort .inner .select.campus-select {
  display: none;
}
.page_top .program.sort .inner .select.campus-select.show {
  display: block;
}
.page_top .program.sort .inner .select.campus-select ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  flex-wrap: wrap;
  gap: 10px;
  padding-left: 40px;
}
@media screen and (max-width: 800px) {
  .page_top .program.sort .inner .select.campus-select ul {
    grid-template-columns: repeat(1, 1fr);
    padding-left: 10px;
  }
}
.page_top .program.sort .inner .select.campus-select ul li {
  background: #fff;
  padding: 1em;
  font-weight: 500;
  border-radius: 10em;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
}
@media screen and (max-width: 800px) {
  .page_top .program.sort .inner .select.campus-select ul li {
    padding: 15px 10px;
    font-size: 14px;
  }
}
.page_top .program.sort .inner .select.campus-select ul li.red {
  color: #f74b01;
  border: solid 1px #f74b01;
}
.page_top .program.sort .inner .select.campus-select ul li.red .number::before {
  background: #f74b01;
}
.page_top .program.sort .inner .select.campus-select ul li.red:hover {
  background: #f74b01;
  color: #fff;
}
.page_top .program.sort .inner .select.campus-select ul li.red:hover .number {
  color: #f74b01;
}
.page_top .program.sort .inner .select.campus-select ul li.red:hover .number::before {
  background: #fff;
}
.page_top .program.sort .inner .select.campus-select ul li.red.selected {
  background: #f74b01;
  color: #fff;
}
.page_top .program.sort .inner .select.campus-select ul li.red.selected .number {
  color: #f74b01;
}
.page_top .program.sort .inner .select.campus-select ul li.red.selected .number::before {
  background: #fff;
}
.page_top .program.sort .inner .select.campus-select ul li.yellow {
  color: #ecb100;
  border: solid 1px #ecb100;
}
.page_top .program.sort .inner .select.campus-select ul li.yellow .number::before {
  background: #ecb100;
}
.page_top .program.sort .inner .select.campus-select ul li.yellow:hover {
  background: #ecb100;
  color: #fff;
}
.page_top .program.sort .inner .select.campus-select ul li.yellow:hover .number {
  color: #ecb100;
}
.page_top .program.sort .inner .select.campus-select ul li.yellow:hover .number::before {
  background: #fff;
}
.page_top .program.sort .inner .select.campus-select ul li.yellow.selected {
  background: #ecb100;
  color: #fff;
}
.page_top .program.sort .inner .select.campus-select ul li.yellow.selected .number {
  color: #ecb100;
}
.page_top .program.sort .inner .select.campus-select ul li.yellow.selected .number::before {
  background: #fff;
}
.page_top .program.sort .inner .select.campus-select ul li.mint {
  color: #7ac301;
  border: solid 1px #7ac301;
}
.page_top .program.sort .inner .select.campus-select ul li.mint .number::before {
  background: #7ac301;
}
.page_top .program.sort .inner .select.campus-select ul li.mint:hover {
  background: #7ac301;
  color: #fff;
}
.page_top .program.sort .inner .select.campus-select ul li.mint:hover .number {
  color: #7ac301;
}
.page_top .program.sort .inner .select.campus-select ul li.mint:hover .number::before {
  background: #fff;
}
.page_top .program.sort .inner .select.campus-select ul li.mint.selected {
  background: #7ac301;
  color: #fff;
}
.page_top .program.sort .inner .select.campus-select ul li.mint.selected .number {
  color: #7ac301;
}
.page_top .program.sort .inner .select.campus-select ul li.mint.selected .number::before {
  background: #fff;
}
.page_top .program.sort .inner .select.campus-select ul li.blue {
  color: #01adea;
  border: solid 1px #01adea;
}
.page_top .program.sort .inner .select.campus-select ul li.blue .number::before {
  background: #01adea;
}
.page_top .program.sort .inner .select.campus-select ul li.blue:hover {
  background: #01adea;
  color: #fff;
}
.page_top .program.sort .inner .select.campus-select ul li.blue:hover .number {
  color: #01adea;
}
.page_top .program.sort .inner .select.campus-select ul li.blue:hover .number::before {
  background: #fff;
}
.page_top .program.sort .inner .select.campus-select ul li.blue.selected {
  background: #01adea;
  color: #fff;
}
.page_top .program.sort .inner .select.campus-select ul li.blue.selected .number {
  color: #01adea;
}
.page_top .program.sort .inner .select.campus-select ul li.blue.selected .number::before {
  background: #fff;
}
.page_top .program.sort .inner .select.campus-select ul li .number {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .page_top .program.sort .inner .select.campus-select ul li .number {
    font-size: 12px;
    width: 25px;
    height: 25px;
  }
}
.page_top .program.sort .inner .select.campus-select ul li .number::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 10em;
  border-bottom-right-radius: 0;
  transform: rotate(45deg);
  z-index: -1;
}
.page_top .program.sort .inner .select.campus-select ul li .txt {
  font-weight: 500;
  flex: 1;
}
@media screen and (max-width: 800px) {
  .page_top .program.sort .inner .select.campus-select ul li .txt {
    font-size: 14px;
  }
}
.page_top .program.sort .result.program-result {
  display: none;
}
.page_top .program.sort .result.program-result.show {
  display: block;
}
.page_top .program.sort .result.program-result .result_inner {
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 800px) {
  .page_top .program.sort .result.program-result .result_inner {
    padding-left: 10px;
  }
}
.page_top .program.sort .result.program-result .result_inner .result_campus {
  background: #fff;
  border-radius: 30px;
  padding: 30px;
}
@media screen and (max-width: 800px) {
  .page_top .program.sort .result.program-result .result_inner .result_campus {
    padding: 20px;
  }
}
.page_top .program.sort .result.program-result .result_inner .result_campus .title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
@media screen and (max-width: 800px) {
  .page_top .program.sort .result.program-result .result_inner .result_campus .title {
    margin-bottom: 10px;
  }
}
.page_top .program.sort .result.program-result .result_inner .result_campus .title .number {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  z-index: 1;
}
@media screen and (max-width: 800px) {
  .page_top .program.sort .result.program-result .result_inner .result_campus .title .number {
    font-size: 12px;
    width: 25px;
    height: 25px;
  }
}
.page_top .program.sort .result.program-result .result_inner .result_campus .title .number::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 10em;
  border-bottom-right-radius: 0;
  transform: rotate(45deg);
  z-index: -1;
}
.page_top .program.sort .result.program-result .result_inner .result_campus .title .txt {
  font-weight: 500;
  flex: 1;
}
@media screen and (max-width: 800px) {
  .page_top .program.sort .result.program-result .result_inner .result_campus .title .txt {
    font-size: 14px;
  }
}
.page_top .program.sort .result.program-result .result_inner .result_campus .title.red {
  color: #f74b01;
}
.page_top .program.sort .result.program-result .result_inner .result_campus .title.red .number::before {
  background: #f74b01;
}
.page_top .program.sort .result.program-result .result_inner .result_campus .title.yellow {
  color: #ecb100;
}
.page_top .program.sort .result.program-result .result_inner .result_campus .title.yellow .number::before {
  background: #ecb100;
}
.page_top .program.sort .result.program-result .result_inner .result_campus .title.mint {
  color: #7ac301;
}
.page_top .program.sort .result.program-result .result_inner .result_campus .title.mint .number::before {
  background: #7ac301;
}
.page_top .program.sort .result.program-result .result_inner .result_campus .title.blue {
  color: #01adea;
}
.page_top .program.sort .result.program-result .result_inner .result_campus .title.blue .number::before {
  background: #01adea;
}
.page_top .program.sort .result.program-result .result_inner .result_campus .info {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 800px) {
  .page_top .program.sort .result.program-result .result_inner .result_campus .info {
    flex-direction: column;
    padding: 20px 10px;
    gap: 10px;
  }
}
.page_top .program.sort .result.program-result .result_inner .result_campus .info .photo {
  flex: 1;
}
.page_top .program.sort .result.program-result .result_inner .result_campus .info .photo img {
  width: 100%;
}
.page_top .program.sort .result.program-result .result_inner .result_campus .info .txt {
  flex: 1;
}
.page_top .program.sort .result.program-result .result_inner .result_campus .info .txt .result_item {
  display: none;
  background-image: repeating-linear-gradient(90deg, #249E49, #249E49 6px, transparent 6px, transparent 12px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
  font-size: 16px;
  padding: 20px 0;
}
@media screen and (max-width: 800px) {
  .page_top .program.sort .result.program-result .result_inner .result_campus .info .txt .result_item {
    font-size: 12px;
  }
}
.page_top .program.sort .result.program-result .result_inner .result_campus .info .txt .result_item.show {
  display: block;
}
.page_top .program.sort .result.program-result .result_inner .result_campus .info .txt .result_item.noresult {
  text-align: center;
}
.page_top .program.sort .result.program-result .result_inner .result_campus .info .txt .result_item a {
  color: #000;
  font-size: 16px;
	text-decoration: none;
}
@media screen and (max-width: 800px) {
  .page_top .program.sort .result.program-result .result_inner .result_campus .info .txt .result_item a {
    font-size: 14px;
  }
}
.page_top .program.sort .result.program-result .result_inner .result_campus .info .txt .result_item p {
  padding-top: 5px;
	font-size: 13px;
}
@media screen and (max-width: 800px) {
  .page_top .program.sort .result.program-result .result_inner .result_campus .info .txt .result_item p {
    font-size: 12px;
  }
}
.page_top .program.sort .result.program-result .result_inner .result_campus .info .txt .btn {
  text-align: right;
  padding-top: 20px;
}
.page_top .program.sort .result.program-result .result_inner .result_campus .info .txt .btn a {
  position: relative;
  display: inline-block;
  padding: 0.2em 2.5em 0.2em 0;
  font-size: clamp(16px, 1.8vw, 20px);
  color: #249e49;
  font-weight: 500;
  text-decoration: none;
}
.page_top .program.sort .result.program-result .result_inner .result_campus .info .txt .btn a::before, .page_top .program.sort .result.program-result .result_inner .result_campus .info .txt .btn a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.2s;
}
.page_top .program.sort .result.program-result .result_inner .result_campus .info .txt .btn a::before {
  width: 1.6em;
  height: 1.6em;
  background: #249e49;
  right: 0.5em;
  border-radius: 100%;
}
.page_top .program.sort .result.program-result .result_inner .result_campus .info .txt .btn a::after {
  width: 0.4em;
  height: 0.4em;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  right: 1.2em;
}
.page_top .program.accordion::before {
  background: #edf8db;
}
.page_top .program.accordion::after {
  background: #fff;
  border-top-right-radius: 100%;
}
.page_top .program.accordion .inner .accordion_list {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 800px) {
  .page_top .program.accordion .inner .accordion_list {
    flex-direction: column;
    gap: 0;
  }
}
.page_top .program.accordion .inner .accordion_list .clm {
  flex: 1;
}
.page_top .program.accordion .inner .accordion_list .clm .item {
  border: solid 1px #249e49;
  border-radius: 20px;
  border-bottom-left-radius: 0;
  margin-bottom: 20px;
}
.page_top .program.accordion .inner .accordion_list .clm .item.green {
  background: #EDF8DB;
}
.page_top .program.accordion .inner .accordion_list .clm .item.active .title .icon::before {
  transform: rotate(0);
}
.page_top .program.accordion .inner .accordion_list .clm .item .title {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .page_top .program.accordion .inner .accordion_list .clm .item .title {
    padding: 15px;
  }
}
.page_top .program.accordion .inner .accordion_list .clm .item .title .arrow {
  width: 32px;
  height: 32px;
  background: #249e49;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  .page_top .program.accordion .inner .accordion_list .clm .item .title .arrow {
    width: 28px;
    height: 28px;
  }
}
.page_top .program.accordion .inner .accordion_list .clm .item .title .arrow::before {
  content: "";
  display: block;
  width: 25%;
  height: 25%;
  transform: rotate(45deg);
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: relative;
  right: 6%;
}
.page_top .program.accordion .inner .accordion_list .clm .item .title .txt {
  font-weight: 500;
  flex: 1;
}
.page_top .program.accordion .inner .accordion_list .clm .item .title .icon {
  width: 16px;
  height: 16px;
  position: relative;
}
.page_top .program.accordion .inner .accordion_list .clm .item .title .icon::before, .page_top .program.accordion .inner .accordion_list .clm .item .title .icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #249e49;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.page_top .program.accordion .inner .accordion_list .clm .item .title .icon::before {
  transform: rotate(90deg);
}
.page_top .program.accordion .inner .accordion_list .clm .item .contents {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
  padding: 0 20px;
}
.page_top .program.accordion .inner .accordion_list .clm .item .contents .info {
  padding: 20px 0;
  background-image: repeating-linear-gradient(90deg, #249e49, #249e49 6px, transparent 6px, transparent 12px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}
.page_top .program.accordion .inner .accordion_list .clm .item .contents p {
  margin-bottom: 10px;
  font-size: clamp(12px, 1.3vw, 14px);
}
.page_top .program.accordion .inner .accordion_list .clm .item .contents ul li {
  font-size: clamp(12px, 1.3vw, 14px);
  padding: 0.2em 0;
}
.page_top .program.accordion .inner .accordion_list .clm .item .contents ul li a {
  color: #000;
	text-decoration: none;
}
.page_top .program.accordion .inner .accordion_list .clm .item .contents ul li a:hover {
	text-decoration: underline;
}
.page_top .interview {
  background-image: radial-gradient(circle, #e3f4ee 3px, transparent 3px), radial-gradient(circle, #e3f4ee 3px, transparent 3px);
  background-position: 0 0, 10px 20px;
  background-size: 20px 40px;
  padding: clamp(60px, 8vw, 100px) 0;
}
.page_top .interview .swiper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.page_top .interview .swiper .swiper-wrapper {
  margin-bottom: 20px;
}
.page_top .interview .swiper .swiper-wrapper .swiper-slide .photo {
  margin-bottom: 15px;
}
.page_top .interview .swiper .swiper-wrapper .swiper-slide .photo img {
  aspect-ratio: 37/42;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-right-radius: 40px;
}
@media screen and (max-width: 800px) { 
	.page_top .interview .swiper .swiper-wrapper .swiper-slide .photo img {
		height: auto;
	}
}
.page_top .interview .swiper .swiper-wrapper .swiper-slide .genre {
  font-size: clamp(13px, 1.3vw, 14px);
}
.page_top .interview .swiper .swiper-wrapper .swiper-slide .btn a {
  display: block;
  position: relative;
  padding: 0.2em 2.5em 0.2em 0;
  font-size: clamp(20px, 2.2vw, 24px);
  color: #249e49;
  font-weight: 500;
  text-decoration: none;
}
.page_top .interview .swiper .swiper-wrapper .swiper-slide .btn a::before, .page_top .interview .swiper .swiper-wrapper .swiper-slide .btn a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.2s;
}
.page_top .interview .swiper .swiper-wrapper .swiper-slide .btn a::before {
  width: 1.6em;
  height: 1.6em;
  background: #249e49;
  right: 0.3em;
  border-radius: 100%;
  border: solid 1px #249e49;
}
.page_top .interview .swiper .swiper-wrapper .swiper-slide .btn a::after {
  width: 0.4em;
  height: 0.4em;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  right: 1em;
}
.page_top .interview .swiper .controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px;
  line-height: 0;
}
.page_top .interview .swiper .controls .prev,
.page_top .interview .swiper .controls .next {
  width: 15px;
  height: 15px;
  cursor: pointer;
  transform: rotate(45deg);
}
.page_top .interview .swiper .controls .prev {
  border-bottom: solid 2px #249e49;
  border-left: solid 2px #249e49;
}
.page_top .interview .swiper .controls .next {
  border-top: solid 2px #249e49;
  border-right: solid 2px #249e49;
}
.page_top .interview .swiper .controls .dot {
  width: -moz-fit-content;
  width: fit-content;
}
.page_top .interview .swiper .controls .dot span {
  background: #edf8db;
  opacity: 1;
}
.page_top .interview .swiper .controls .dot span.swiper-pagination-bullet-active {
  background: #249e49;
}

.interview_btns {
	margin: 20px 0 40px;
	text-align: center;
}
@media screen and (max-width: 800px) {
	.interview_btns {
		margin: 30px 0 20px;
	}
}
ul.interview_btns_list {
	margin: auto;
}
ul.interview_btns_list li {
	display: inline-block;
	width: 70%;
	max-width: 250px;
	margin: 10px;
}
@media screen and (max-width: 800px) {
	ul.interview_btns_list li {
		display: block;
		margin: 9px auto;
	}
}
ul.interview_btns_list li a {
	display: block;
	padding: 18px 8px;
	background: #fff;
	border: solid 1px #249e49;
	border-radius: 30px;
	font-size: 15px;
	font-weight: 500;
	color: #249e49;
	text-decoration: none;
}
@media screen and (max-width: 800px) {
	ul.interview_btns_list li a {
		padding: 13px 8px;
		font-size: 14px;
	}
}

.page_top .news {
  display: flex;
  max-width: 1200px;
  gap: 80px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 160px) 20px;
}
@media screen and (max-width: 800px) {
  .page_top .news {
    flex-direction: column;
    gap: 0;
  }
}
.page_top .news .info {
  width: 300px;
}
@media screen and (max-width: 800px) {
  .page_top .news .info {
    width: 100%;
  }
}
.page_top .news .info .title_en {
  color: #249e49;
  margin-bottom: 0.4em;
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .page_top .news .info .title_en {
    text-align: center;
  }
}
.page_top .news .info h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 500;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 800px) {
  .page_top .news .info h2 {
    text-align: center;
  }
}
.page_top .news .info p {
  font-weight: 500;
  margin-bottom: 2em;
  font-size: clamp(12px, 1.4vw, 16px);
}
@media screen and (max-width: 800px) {
  .page_top .news .info .btn {
    display: none;
  }
}
.page_top .news .info .btn a {
  display: inline-block;
  position: relative;
  padding: 0.2em 2.5em 0.2em 0;
  font-size: 20px;
  color: #249e49;
  font-weight: 500;
  text-decoration: none;
}
.page_top .news .info .btn a::before, .page_top .news .info .btn a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.2s;
}
.page_top .news .info .btn a::before {
  width: 1.5em;
  height: 1.5em;
  background: #249e49;
  right: 0.3em;
  border-radius: 100%;
  border: solid 1px #249e49;
}
.page_top .news .info .btn a::after {
  width: 0.4em;
  height: 0.4em;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  right: 1em;
}
.page_top .news .post {
  flex: 1;
}
.page_top .news .post .item {
  background-image: repeating-linear-gradient(90deg, #249e49, #249e49 6px, transparent 6px, transparent 12px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 100% 1px;
  position: relative;
  padding: 30px 60px 30px 0;
}
.page_top .news .post .item:last-child {
  background-image: repeating-linear-gradient(90deg, #249e49, #249e49 6px, transparent 6px, transparent 12px), repeating-linear-gradient(90deg, #249e49, #249e49 6px, transparent 6px, transparent 12px);
  background-position: left top, left bottom;
  background-repeat: repeat-x, repeat-x;
  background-size: 100% 1px, 100% 1px;
}
.page_top .news .post .item::before, .page_top .news .post .item::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.2s;
}
.page_top .news .post .item::before {
  width: 1.6em;
  height: 1.6em;
  background: #249e49;
  right: 1em;
  border-radius: 100%;
  border: solid 1px #249e49;
}
.page_top .news .post .item::after {
  width: 0.4em;
  height: 0.4em;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  right: 1.7em;
}
.page_top .news .post .item .data {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5em 0.6em;
  margin-bottom: 10px;
  font-size: clamp(10px, 1.2vw, 14px);
}
.page_top .news .post .item .data .day {
  padding-top: 0.2em;
}
.page_top .news .post .item .data .category {
  padding: 0.2em 0.8em 0.3em;
  border-radius: 10em;
}
.page_top .news .post .item .data .category.green {
  color: #249e49;
  border: solid 1px #249e49;
}
.page_top .news .post .item .data .category.red {
  color: #F74B01;
  border: solid 1px #F74B01;
}
.page_top .news .post .item .data .category.yellow {
  color: #ECB100;
  border: solid 1px #ECB100;
}
.page_top .news .post .item .data .category.mint {
  color: #7AC301;
  border: solid 1px #7AC301;
}
.page_top .news .post .item .data .category.blue {
  color: #01ADEA;
  border: solid 1px #01ADEA;
}
.page_top .news .post .item .title a {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 500;
  color: #000;
  text-decoration: none;
}
.page_top .news .btn_sp {
  display: none;
  text-align: right;
  padding-top: 60px;
}
@media screen and (max-width: 800px) {
  .page_top .news .btn_sp {
    display: block;
  }
}
.page_top .news .btn_sp a {
  display: inline-block;
  position: relative;
  padding: 0.2em 2.5em 0.2em 0;
  font-size: 16px;
  color: #249e49;
  font-weight: 500;
  text-decoration: none;
}
.page_top .news .btn_sp a::before, .page_top .news .btn_sp a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.2s;
}
.page_top .news .btn_sp a::before {
  width: 1.5em;
  height: 1.5em;
  background: #249e49;
  right: 0.3em;
  border-radius: 100%;
  border: solid 1px #249e49;
}
.page_top .news .btn_sp a::after {
  width: 0.4em;
  height: 0.4em;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  right: 1em;
}

footer .inner {
  background: #249e49;
  color: #fff;
  padding: 80px 40px;
  color: #fff;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
}
@media screen and (max-width: 800px) {
  footer .inner {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    padding: 60px 20px 20px;
  }
}
footer .inner .clm {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
}
@media screen and (max-width: 800px) {
  footer .inner .clm {
    flex-direction: column;
    gap: 0;
  }
}
footer .inner .clm .clm_l {
  flex: 2;
}
@media screen and (max-width: 800px) {
  footer .inner .clm .clm_l .item:first-child {
    border-top: solid 1px #fff;
  }
}
footer .inner .clm .clm_r {
  flex: 1;
}
footer .inner .clm .clm_r .sns {
  display: flex;
  gap: 10px;
  padding: 30px 0;
}
@media screen and (max-width: 800px) {
  footer .inner .clm .clm_r .sns {
    justify-content: center;
  }
}
footer .inner .clm .clm_r .sns a {
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .inner .clm .clm_r .sns a img {
  width: auto;
  height: 20px;
}
footer .inner .item {
  padding: 30px 0;
  border-bottom: solid 1px #fff;
}
@media screen and (max-width: 800px) {
  footer .inner .item {
    padding: 20px 0 0;
  }
}
footer .inner .item .category {
  font-size: 20px;
  position: relative;
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  footer .inner .item .category {
    font-size: 16px;
    padding: 10px 0;
  }
}
footer .inner .item .category.open .icon::before {
  transform: rotate(0);
}
footer .inner .item .category .icon {
  width: 14px;
  height: 14px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1em;
  margin: auto;
  display: none;
	z-index: 10;
}
@media screen and (max-width: 800px) {
  footer .inner .item .category .icon {
    display: block;
  }
}
footer .inner .item .category .icon::before, footer .inner .item .category .icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
footer .inner .item .category .icon::before {
  transform: rotate(90deg);
  transition: 0.2s;
}
footer .inner .item .category a {
  text-decoration: none;
  display: block;
  position: relative;
  color: #fff;
}
@media screen and (max-width: 800px) {
  footer .inner .item .category a {
/*     margin-bottom: 20px; */
  }
}
footer .inner .item .category a::before, footer .inner .item .category a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.2s;
  display: none;
}
@media screen and (max-width: 800px) {
  footer .inner .item .category a::before, footer .inner .item .category a::after {
/*     display: block; */
  }
}
footer .inner .item .category a::before {
  width: 1.6em;
  height: 1.6em;
  background: #fff;
  right: 0.5em;
  border-radius: 100%;
  border: solid 1px #fff;
}
footer .inner .item .category a::after {
  width: 0.4em;
  height: 0.4em;
  border-top: solid 2px #249e49;
  border-right: solid 2px #249e49;
  transform: rotate(45deg);
  right: 1.2em;
}
footer .inner .item nav {
  display: flex;
  gap: 40px;
  padding-top: 20px;
}
@media screen and (max-width: 800px) {
  footer .inner .item nav {
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s;
  }
}
footer .inner .item nav .line {
  background-image: repeating-linear-gradient(90deg, #fff, #fff 6px, transparent 6px, transparent 12px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 100% 1px;
  height: 1px;
  margin: 20px 0;
}
footer .inner .item nav ul {
  flex: 1;
}
@media screen and (max-width: 800px) {
  footer .inner .item nav ul:last-child {
    margin-bottom: 20px;
  }
}
footer .inner .item nav ul li {
  font-size: 12px;
}
footer .inner .item nav ul li.parent {
  font-size: 14px;
  margin-bottom: 0.5em;
}
footer .inner .item nav ul li a {
  display: inline-block;
  color: #fff;
  text-decoration: none !important;
  padding: 0.6em 0.6em;
}
footer .inner .item nav ul li span {
  display: block;
  font-size: 12px;
  font-weight: 300;
}
footer .info {
  display: flex;
  justify-content: center;
  gap: 180px;
  padding: 40px 20px;
}
@media screen and (max-width: 1000px) {
  footer .info {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
footer .info .logo img {
  width: 470px;
}
@media screen and (max-width: 1000px) {
  footer .info .logo img {
    max-width: 300px;
  }
}
footer .info .txt {
  font-size: 12px;
  line-height: 2;
}
@media screen and (max-width: 1000px) {
  footer .info .txt {
    font-size: 10px;
  }
}
footer .info .txt ul {
  margin-bottom: 20px;
}
footer .info .txt ul li {
  display: flex;
  align-items: flex-start;
}
footer .info .txt ul li span:nth-child(1) {
  display: inline-block;
  width: 60px;
}
footer .info .txt p a {
  text-decoration: none;
  color: #000;
}
footer .info .txt p a:hover {
  text-decoration: underline;
}
footer .copyright {
  background: #222222;
  text-align: center;
  padding: 40px;
  color: #fff;
  font-size: 12px;
  line-height: 1.6;
}
@media screen and (max-width: 1000px) {
  footer .copyright {
    font-size: 10px;
  }
}
footer .inner .item .category {
   cursor: unset!important;
}
@media screen and (max-width: 800px) {
	footer .inner .item .category a {
	   width: 85%;
	}
}
/*# sourceMappingURL=style.css.map */