.main {
  display: grid;
  align-items: flex-end;
  position: relative;
}
.main .mv_link {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  z-index: 10;
}
/*
.main .main_img {
  grid-column: 1/2;
  grid-row: 1/2;
  border-radius: 50px 50px 0 0;
  overflow: hidden;
}
*/
/* 20260115 */
.main .main_img {
  grid-column: 1/2;
  grid-row: 1/2;
  border-radius: 50px 50px 0 0;
  overflow: hidden;
  position: relative;
  display: grid;
}
.main .main_img .mv_slide{
  grid-area: 1 / 1;
  opacity: 0;
  transition: opacity .8s ease;
  pointer-events: none;
}
.main .main_img .mv_slide.is-active{
  opacity: 1;
  pointer-events: auto;
}
.main .main_img picture,
.main .main_img img{
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .main .main_img {
    border-radius: 20px 20px 0 0;
  }
}
.main .main_copy {
  grid-column: 1/2;
  grid-row: 1/2;
  position: relative;
  z-index: 1;
  padding: 0 0 100px 40px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
@media screen and (max-width: 767px) {
  .main .main_copy {
    padding: 0 0 40px;
    gap: 14px;
  }
}
.main .main_copy .copy {
  background: #FFF;
  padding: 20px 30px 20px;
  font-size: clamp(35px, 4.35714vw, 61px);
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .main .main_copy .copy {
    padding: 10px 16px 14px;
  }
}
.mv_nav{
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 11;
}
.mv_nav button{
  width: 10px;
  height: 10px;
  border:1px solid #333;
  border-radius: 50%;
  background:#fff;
/*  background: rgba(255,255,255,.5); */
  cursor: pointer;
  padding: 0;
}
.mv_nav button.is-active{
  background: #333;
}

section .container {
  padding-top: 130px;
}
@media screen and (max-width: 767px) {
  section .container {
    padding-top: 70px;
  }
}
section .container:has(.news_list) {
  padding-top: 77px;
}
@media screen and (max-width: 767px) {
  section .container:has(.news_list) {
    padding-top: 60px;
  }
}
section .container:has(.news_list) .contents {
  display: grid;
  grid-template-columns: 296px 1fr;
}
@media screen and (max-width: 767px) {
  section .container:has(.news_list) .contents {
    display: flex;
    flex-direction: column;
  }
}
section .container:has(.news_list) .contents .hgroup {
  width: fit-content;
}
@media screen and (max-width: 767px) {
  section .container:has(.news_list) .contents .hgroup {
    width: 100%;
  }
  section .container:has(.news_list) .contents .hgroup .common_btn {
    display: none;
  }
}
section .container:has(.news_list) .news_list_wrap {
  display: flex;
  align-items: center;
  margin-top: 0 !important;
}
section .container:has(.news_list) .news_list_wrap .more_btn {
  display: none;
}
@media screen and (max-width: 767px) {
  section .container:has(.news_list) .news_list_wrap .more_btn {
    display: grid;
  }
}
section .container.contents_wrap {
  display: flex;
  width: 100%;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  section .container.contents_wrap {
    flex-direction: column;
    gap: 70px;
  }
}
@media screen and (max-width: 767px) {
  section .container.contents_wrap .contents .hgroup + * {
    margin-top: 45px;
  }
}
@media screen and (max-width: 767px) {
  section .container.contents_wrap .contents .img + .text {
    margin-top: 24px;
  }
}
section .container.contents_wrap .contents + .contents {
  margin-top: 0;
}
section .container .contents .hgroup .contents_title {
  font-size: clamp(25px, 2.5vw, 35px);
  letter-spacing: 0.05rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.8;
}
section .container .contents .hgroup .contents_copy {
  font-size: clamp(20px, 1.78571vw, 25px);
  text-align: center;
  display: flex;
  width: fit-content;
  align-items: center;
  margin-inline: auto;
  margin-top: 26px;
  gap: 13px;
  letter-spacing: 0.05rem;
}
section .container .contents .hgroup .contents_copy:before, section .container .contents .hgroup .contents_copy:after {
  content: "";
  display: block;
  width: 25px;
  height: 1px;
  background: #222;
}
section .container .contents .hgroup .btn_more {
  margin-inline: auto;
  margin-top: 9px;
}
section .container .contents .hgroup .add_text {
  width: fit-content;
  margin-inline: auto;
  margin-top: 24px;
}
section .container .contents .hgroup + * {
  margin-top: 77px;
}
@media screen and (max-width: 767px) {
  section .container .contents .hgroup + * {
    margin-top: 60px;
  }
}
section .container .contents .contents_copy_text {
  font-size: clamp(20px, 1.78571vw, 25px);
  line-height: 1.75;
}
section .container .contents .check_text_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section .container .contents .check_text {
  font-size: clamp(15px, 1.42857vw, 20px);
  letter-spacing: 0.025rem;
  line-height: 1.5;
  position: relative;
  border: 1px solid #CFCFCF;
  border-radius: 3px;
  padding: 29px 40px 31px 77px;
}
@media screen and (max-width: 767px) {
  section .container .contents .check_text {
    padding: 18px 20px 14px 45px;
  }
}
section .container .contents .check_text:before {
  content: "";
  position: absolute;
  display: block;
  top: 32px;
  left: 40px;
  width: 19px;
  height: 21px;
  background: url(../images/top/icon_check.svg) no-repeat left top;
  background-size: 19px 21px;
}
@media screen and (max-width: 767px) {
  section .container .contents .check_text:before {
    top: 16px;
    left: 20px;
  }
}
section .container .contents .check_text:last-of-type:after {
  content: "";
  position: absolute;
  display: block;
  bottom: -16px;
  left: 50%;
  translate: -50% 0;
  width: 40px;
  height: 15px;
  background: url(../images/top/icon_check_arrow.svg) no-repeat left top;
  background-size: 40px 15px;
}
section .container .contents .check_results {
  font-size: clamp(20px, 1.78571vw, 25px);
  font-weight: 600;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.05rem;
  margin-top: 53px;
}
@media screen and (max-width: 767px) {
  section .container .contents .check_results {
    margin-top: 40px;
  }
}
section .container .contents .check_title {
  font-size: clamp(35px, 3.92857vw, 55px);
  text-align: center;
  line-height: 1.36;
  font-weight: 600;
  letter-spacing: 0.05rem;
}
section .container .contents .check_copy {
  font-size: clamp(20px, 1.78571vw, 25px);
  text-align: center;
  display: flex;
  width: fit-content;
  align-items: center;
  margin-inline: auto;
  margin-top: 26px;
  gap: 13px;
  letter-spacing: 0.05rem;
}
section .container .contents .check_copy:before, section .container .contents .check_copy:after {
  content: "";
  display: block;
  width: 25px;
  height: 1px;
  background: #222;
}
@media screen and (max-width: 767px) {
  section .container .contents .check_copy:before, section .container .contents .check_copy:after {
    width: 20px;
  }
}
section .container .contents .banner {
  width: 100%;
  display: block;
}
section .container .contents .graduate_voice {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 82px;
}
@media screen and (max-width: 767px) {
  section .container .contents .graduate_voice {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    gap: 70px;
  }
}
section .container .contents .graduate_voice .list .voice {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  section .container .contents .graduate_voice .list .voice {
    gap: 12px;
  }
}
section .container .contents .graduate_voice .list .voice .text_area {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  section .container .contents .graduate_voice .list .voice .text_area {
    gap: 40px;
  }
}
section .container .contents .graduate_voice .list .voice .text_area > p {
  line-height: 2.0;
}
section .container .contents .graduate_voice .list .voice .text_area .graduate_info .graduate_name {
  font-size: clamp(18px, 1.42857vw, 20px);
}
@media screen and (max-width: 767px) {
  section .container .contents .graduate_voice .list .voice .text_area .graduate_info .graduate_name {
    margin-top: 8px;
  }
}
@media screen and (max-width: 767px) {
  section .container .contents .graduate_voice .list .voice .text_area .graduate_info .text {
    font-size: 13px;
  }
}
section .container .contents .more_graduate {
  display: grid;
  grid-template-columns: 1fr 54px;
  align-items: center;
  font-size: 15px;
  width: fit-content;
  border-bottom: 2px solid #222;
  padding-bottom: 13px;
  margin-left: auto;
  margin-top: 75px;
  gap: 9px;
}
section .container .contents .more_graduate:after {
  content: "";
  display: block;
  width: 54px;
  height: 9px;
  background: url(../images/top/more_graduate_arrow.svg) no-repeat left top;
  background-size: 54px 9px;
}
section .container .contents .facility_design {
  display: grid;
  gap: 50px 40px;
}
@media screen and (max-width: 767px) {
  section .container .contents .facility_design {
    gap: 20px;
  }
}
section .container .contents .facility_design .facility_item {
  position: relative;
}
section .container .contents .facility_design .facility_item .facility_item_name {
  background: #FFF;
  width: fit-content;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  section .container .contents .facility_design .facility_item .facility_item_name {
    font-size: 14px;
    height: 20px;
    padding: 0 4px;
  }
}
section .container .contents .facility_design .facility01 {
  grid-column: 1/3;
  grid-row: 1/2;
}
section .container .contents .facility_design .facility02 {
  grid-column: 1/2;
  grid-row: 2/3;
}
section .container .contents .facility_design .facility03 {
  grid-column: 2/3;
  grid-row: 2/3;
}
section .container .contents .flow_list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}
@media screen and (max-width: 767px) {
  section .container .contents .flow_list {
    display: flex;
    flex-direction: column;
    padding-left: 40px;
    gap: 43px;
  }
}
section .container .contents .flow_list .flow {
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  background: #FFF;
  padding: 64px 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  section .container .contents .flow_list .flow {
    display: grid;
    padding: 0;
    height: 80px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  section .container .contents .flow_list .flow:has(.has_deco) {
    gap: 0 40px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  section .container .contents .flow_list .flow:has(.has_deco) .flow_item_name {
    grid-row: 1/3;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  section .container .contents .flow_list .flow:has(.has_deco) .flow_add_text {
    grid-row: 1/2;
    translate: 0 2rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  section .container .contents .flow_list .flow:has(.has_deco) .flow_add_text.has_deco {
    translate: 0 0.5rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  section .container .contents .flow_list .flow:has(.flow_add_text) .flow_item_name {
    text-align: right;
  }
}

section .container .contents .flow_list .flow:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: -25px;
  translate: 0 -50%;
  width: 15px;
  height: 13px;
  background: url(../images/top/flow_arrow.svg) no-repeat left top;
  background-size: 15px 13px;
}
@media screen and (max-width: 767px) {
  section .container .contents .flow_list .flow:after {
    background: url(../images/top/flow_arrow_sp.svg) no-repeat left top;
    background-size: 15px 13px;
    top: initial;
    bottom: -30px;
    right: initial;
    left: 50%;
    translate: -50% 0;
  }
}
section .container .contents .flow_list .flow .num {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background: #B6CEBC;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 25px;
  position: absolute;
  top: -40px;
  left: 50%;
  translate: -50% 0;
}
@media screen and (max-width: 767px) {
  section .container .contents .flow_list .flow .num {
    top: 0;
    left: -40px;
    translate: 0 0;
  }
}
section .container .contents .flow_list .flow .num .step {
  font-size: 13px;
  color: #FFF;
}
section .container .contents .flow_list .flow .flow_item_name {
  writing-mode: vertical-rl;
  font-size: 20px;
  letter-spacing: 1rem;
}
section .container .contents .flow_list .flow:nth-child(5) .flow_item_name span{
  font-size:15px;
}
@media screen and (min-width: 768px) {
section .container .contents .flow_list .flow:nth-child(3) .flow_item_name,
section .container .contents .flow_list .flow:nth-child(4) .flow_item_name,
section .container .contents .flow_list .flow:nth-child(5) .flow_item_name {
  letter-spacing: 0.7rem;
}
section .container .contents .flow_list .flow:nth-child(5) .flow_item_name {
  line-height:1.5;
  text-align: center;
}
}
@media screen and (max-width: 767px) {
section .container .contents .flow_list .flow:nth-child(3),
section .container .contents .flow_list .flow:nth-child(4),
section .container .contents .flow_list .flow:nth-child(5) {
    display: flex;
    flex-direction: column;
    justify-content: center;
	gap: 5px;
}
  section .container .contents .flow_list .flow .flow_item_name {
    writing-mode: initial;
    letter-spacing: 0.1rem;
    grid-column: 1/2;
    grid-row: 1/2;
    text-align: center;
    font-size:5vw;
  }
section .container .contents .flow_list .flow:nth-child(5) .flow_item_name span{
  font-size:3vw;
}
}
section .container .contents .flow_list .flow .flow_add_text {
  margin-top: 26px;
  grid-column: 2/3;
  grid-row: 1/2;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  section .container .contents .flow_list .flow .flow_add_text {
    margin-top: 0;
  }
}
section .container .contents .flow_list .flow .flow_add_text.has_deco {
  display: grid;
  width: fit-content;
  gap: 7px;
  align-items: center;
  grid-template-columns: 19px 1fr 19px;
}
@media screen and (max-width: 767px) {
  section .container .contents .flow_list .flow .flow_add_text.has_deco {
    grid-row: 1/2;
  }
}
section .container .contents .flow_list .flow .flow_add_text.has_deco:before, section .container .contents .flow_list .flow .flow_add_text.has_deco:after {
  content: "";
  display: block;
  width: 19px;
  height: 1px;
  background: #222;
}
section .container .contents .flow_list .flow .flow_add_text + .flow_add_text {
  margin-top: 9px;
}
@media screen and (max-width: 767px) {
  section .container .contents .flow_list .flow .flow_add_text + .flow_add_text {
    margin-top: 0;
  }
}
section .container .contents .flow_list .flow:last-of-type:after {
  display: none;
}
@media screen and (max-width: 767px) {
  section .container .contents:has(.address) .hgroup + .address {
    margin-top: 30px;
  }
}
section .container .contents .address {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}
@media screen and (max-width: 767px) {
  section .container .contents .address {
    gap: 15px;
    font-size: 14px;
  }
}
section .container .contents .address:before, section .container .contents .address:after {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  background: #222;
}
@media screen and (max-width: 767px) {
  section .container .contents .address:before, section .container .contents .address:after {
    height: 20px;
  }
}
section .container .contents .google_map {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  padding: 0 40px;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  section .container .contents .google_map {
    padding: 0;
    margin-top: 30px;
  }
}
section .container .contents .google_map iframe {
  width: 100% !important;
  aspect-ratio: 1320/500;
}
@media screen and (max-width: 767px) {
  section .container .contents .google_map iframe {
    aspect-ratio: 375/350;
  }
}
section .container .contents .img_wrap_flex {
  display: flex;
  gap: 0;
  width: calc(100vw - 80px);
  margin-top: 68px;
  margin-left: calc(50% - 50vw + 40px);
}
@media screen and (max-width: 767px) {
  section .container .contents .img_wrap_flex {
    flex-direction: column;
    margin-top: 40px;
  }
}
section .container .contents .img_wrap_flex + * {
  margin-top: 60px;
}
section .container .contents .img_wrap_flex + * + .list_wrap {
  margin-top: 24px;
}
section .container .contents .img_wrap_flex + * + .list_wrap + .text {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  section .container .contents .img_wrap_flex + * {
    margin-top: 30px;
  }
}
section .container .contents .img_wrap_flex .img {
  width: 100%;
}
section .container .contents.greetings .text + .text {
  margin-top: 28px;
}
section .container .contents.to_the_challenger {
  display: flex;
  gap: 80px;
  width: calc(50vw + 513px);
  margin-right: 0;
  padding: 0 40px 0 0;
}
@media screen and (max-width: 767px) {
  section .container .contents.to_the_challenger {
    width: 100%;
    padding: 0;
    margin-inline: 0;
    flex-direction: column;
    gap: 0;
  }
}
section .container .contents.to_the_challenger .text_area {
  width: 70%;
}
@media screen and (max-width: 767px) {
  section .container .contents.to_the_challenger .text_area {
    width: 100%;
    display: contents;
  }
}
section .container .contents.to_the_challenger .text_area .contents_copy_text {
  order: 1;
  text-align: center;
}
section .container .contents.to_the_challenger .text_area .list_wrap {
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  section .container .contents.to_the_challenger .text_area .list_wrap {
    order: 3;
    margin-top: 40px;
  }
}
section .container .contents.to_the_challenger .text_area .list_wrap + * {
  margin-top: 34px;
}
section .container .contents.to_the_challenger .text_area .list_wrap + .text {
  order: 4;
}
@media screen and (max-width: 767px) {
  section .container .contents.to_the_challenger .img {
    order: 2;
    margin-top: 40px;
  }
}
section .container .contents .greetings_from_the_chairman {
  max-width: 680px;
  margin-inline: auto;
}
section .container .contents .greetings_from_the_chairman .chairman_info_block {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 38px;
  width: fit-content;
  margin-inline: auto;
  margin-top: 65px;
}
@media screen and (max-width: 767px) {
  section .container .contents .greetings_from_the_chairman .chairman_info_block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
  }
}
section .container .contents .greetings_from_the_chairman .chairman_info_block .chairman_info {
  display: flex;
  align-items: center;
  order: 2;
}
section .container .contents .greetings_from_the_chairman .chairman_info_block .img {
  border-radius: 100%;
  overflow: hidden;
  order: 1;
  width: 120px;
}
section .container .contents + .contents {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  section .container .contents + .contents {
    margin-top: 50px;
  }
}
section.concept .container {
  max-width: 1320px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  section.concept .container {
    flex-direction: column;
  }
}
section.concept .container .contents {
  width: 50%;
  padding-right: 160px;
}
@media screen and (max-width: 1066px) {
  section.concept .container .contents {
    padding-right: 40px;
  }
}
@media screen and (max-width: 767px) {
  section.concept .container .contents {
    width: 100%;
    padding-right: 0;
    order: 2;
    margin-top: 60px;
  }
}
section.concept .container .contents .hgroup + * {
  margin-top: 77px;
}
@media screen and (max-width: 767px) {
  section.concept .container .contents .hgroup + * {
    margin-top: 50px;
  }
}
section.concept .container .contents .hgroup .contents_title {
  text-align: left;
}
@media screen and (max-width: 767px) {
  section.concept .container .contents .hgroup .contents_title {
    text-align: center;
  }
}
section.concept .container .contents .text + .text {
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  section.concept .container .contents .text + .text {
    margin-top: 28px;
  }
}
section.concept .container .img_area {
  width: 50vw;
  margin-right: -50vw;
}
@media screen and (max-width: 767px) {
  section.concept .container .img_area {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    order: 1;
  }
}
section:has(.blog_list_wrap) {
  background: url(../images/common/common_bg.png) repeat left top;
  background-size: 100%;
  padding-bottom: 130px;
}
@media screen and (max-width: 767px) {
  section:has(.blog_list_wrap) {
    padding-bottom: 68px;
  }
}
section:has(.chairman_info_block) {
  background: url(../images/common/common_bg.png) repeat left top;
  background-size: 100%;
  margin-top: 130px;
}
@media screen and (max-width: 767px) {
  section:has(.chairman_info_block) {
    margin-top: 70px;
  }
}
section:last-of-type {
  padding-bottom: 130px;
}
@media screen and (max-width: 767px) {
  section:last-of-type {
    padding-bottom: 110px;
  }
}

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