@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New&display=swap");
@media (max-width: 1439px) {
  h1 {
    font-size: 32px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
  }
  h2 {
    font-size: 24px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
  }
  h3 {
    font-size: 20px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
  }
  .p_large {
    font-size: 20px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
  }
  .p_small {
    font-size: 16px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
  }
  body {
    font-family: "Zen Kaku Gothic New", sans-serif;
  }
  body header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 64px;
    padding-left: 24px;
    padding-right: 24px;
    position: fixed;
    z-index: 1000;
    background-color: #ffffff;
  }
  body header h1 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 2px;
  }
  body header .header_nav .header_ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  body header .header_nav .header_ul li {
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0;
    margin-left: 0;
  }
  body header .header_nav .header_ul li img {
    width: 40px;
    height: auto;
  }
  body header .header_nav .header_ul li #btn_open {
    position: relative;
    width: 64px;
    height: 64px;
    background-color: #1F9F60;
    cursor: pointer;
    display: inline-block;
    transition: all 0.5s;
    box-sizing: border-box;
    padding: 8px;
  }
  body header .header_nav .header_ul li #btn_open span {
    transition: all 0.3s;
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    height: 3px;
    background-color: #ffffff;
    width: 50%;
    z-index: 10;
    left: 50%;
  }
  body header .header_nav .header_ul li #btn_open span:nth-of-type(1) {
    /*上の線の位置*/
    top: 35%;
  }
  body header .header_nav .header_ul li #btn_open span:nth-of-type(2) {
    /*真ん中の線の位置*/
    top: 50%;
  }
  body header .header_nav .header_ul li #btn_open span:nth-of-type(3) {
    /*下の線の位置*/
    top: 65%;
  }
  body header .header_nav .header_ul li #btn_open.open span:nth-of-type(1) {
    /*openのとき、上の線を右斜めにする*/
    top: 35%;
    transform: translateY(9px) translateX(-50%) rotate(-45deg);
  }
  body header .header_nav .header_ul li #btn_open.open span:nth-of-type(2) {
    /*真ん中の線を消す*/
    opacity: 0;
  }
  body header .header_nav .header_ul li #btn_open.open span:nth-of-type(3) {
    /*下の線を左斜めにする*/
    top: 65%;
    transform: translateY(-9px) translateX(-50%) rotate(45deg);
  }
  body .menu_buttons {
    position: fixed;
    top: 0;
    right: 0;
    width: 76%; /* 画面幅の40% */
    height: 100vh;
    background-color: rgba(31, 159, 96, 0.95);
    z-index: 1001;
    padding: 0 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    color: #ffffff;
  }
  body .menu_buttons #btn_position {
    position: absolute;
    top: 0;
    right: 24px;
  }
  body .menu_buttons #btn_position #btn_close {
    position: relative;
    width: 64px;
    height: 64px;
    background-color: #1F9F60;
    cursor: pointer;
    display: inline-block;
    transition: all 0.5s;
    box-sizing: border-box;
  }
  body .menu_buttons #btn_position #btn_close span {
    transition: all 0.3s;
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    height: 3px;
    background-color: #ffffff;
    width: 50%;
    z-index: 10;
    left: 50%;
  }
  body .menu_buttons #btn_position #btn_close span:nth-of-type(1) {
    /*上の線の位置*/
    top: 35%;
    transform: translateY(9px) translateX(-50%) rotate(-45deg);
  }
  body .menu_buttons #btn_position #btn_close span:nth-of-type(2) {
    /*真ん中の線の位置*/
    opacity: 0;
  }
  body .menu_buttons #btn_position #btn_close span:nth-of-type(3) {
    /*下の線の位置*/
    top: 65%;
    transform: translateY(-9px) translateX(-50%) rotate(45deg);
  }
  body .menu_buttons.open {
    opacity: 1;
    visibility: visible;
  }
  body .menu_buttons .menu_container {
    display: block;
    width: 100%;
  }
  body .menu_buttons .menu_container .menu_ul_container {
    display: flex;
    margin-top: 48px;
    gap: 10%;
  }
  body .menu_buttons .menu_container .menu_ul_container .menu_ul {
    border-right: solid 1px #ffffff;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding-right: 10%;
  }
  body .menu_buttons .menu_container .menu_ul_container .menu_ul li {
    padding-bottom: 48px;
    width: -moz-fit-content;
    width: fit-content;
    cursor: pointer;
  }
  body .menu_buttons .menu_container .menu_ul_container .menu_ul li a {
    font-size: 24px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    letter-spacing: 2px;
    font-weight: 400;
  }
  body .menu_buttons .menu_container .menu_ul_container .menu_ul li a:hover {
    border-bottom: 1px solid #ffffff;
  }
  body .menu_buttons .menu_container .menu_ul_container .menu_ul_small li {
    padding-bottom: 32px;
    width: -moz-fit-content;
    width: fit-content;
    cursor: pointer;
  }
  body .menu_buttons .menu_container .menu_ul_container .menu_ul_small li a {
    font-size: 16px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    letter-spacing: 2px;
    font-weight: 400;
  }
  body .menu_buttons .menu_container .menu_ul_container .menu_ul_small li a:hover {
    border-bottom: 1px solid #ffffff;
  }
  body .vecter {
    position: absolute;
    z-index: -1000;
    top: 5em;
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  body .vecter img {
    width: 100vw;
    transform: rotate(-15deg);
  }
  body .first_visual {
    width: 100%;
    height: 100vh;
  }
  body .first_visual .first_visual_image {
    width: 100%;
    height: 100vh;
    align-items: stretch;
  }
  body .first_visual .first_visual_image img {
    width: 100vw;
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body .brochure_title {
    padding-top: 144px;
    padding-left: 24px;
    padding-right: 24px;
    text-align: center;
  }
  body .flex_container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 32px;
    padding-right: 32px;
    margin-top: 2em;
  }
  body .flex_container a {
    width: 49%;
    border: 0.1em solid #000000;
  }
  body .flex_container a .someone_container {
    width: 100%;
    padding: 16px;
    padding-bottom: 96px;
    margin-top: 32px;
    position: relative;
  }
  body .flex_container a .someone_container h2 {
    font-size: 1.6em;
  }
  body .flex_container a .someone_container h3 {
    font-size: 1.2em;
    margin-top: 24px;
    line-height: 24px;
  }
  body .flex_container a .someone_container .arrow {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body .flex_container a .someone_container .arrow img {
    width: 48px;
    height: 48px;
  }
  body .flex_container_guide {
    display: flex;
  }
  body .flex_container_guide .guide {
    padding-right: 22px;
    margin-top: 14em;
    width: 30%;
  }
  body .flex_container_guide .guide ul {
    width: 100%;
    font-size: 0.8em;
  }
  body .flex_container_guide .guide ul li {
    margin-bottom: 1.5em;
  }
  body .flex_container_guide .guide ul li a {
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
  }
  body .flex_container_guide .guide ul li span {
    color: #1f9f60;
  }
  body .flex_container_guide .school_intro {
    width: 85%;
    margin-top: 96px;
    padding-left: 32px;
    padding-right: 22px;
    text-align: center;
  }
  body .flex_container_guide .school_intro h1 {
    color: #1f9f60;
  }
  body .flex_container_guide .school_intro p {
    margin-top: 1em;
    letter-spacing: 1.2px;
    line-height: 24px;
    font-size: 1em;
  }
  body .flex_container_guide .school_intro .school_intro_first {
    width: 100%;
    margin-top: 24px;
    text-align: right;
  }
  body .flex_container_guide .school_intro .school_intro_first .school_intro_first_image {
    background-color: grey;
    width: 100%;
  }
  body .flex_container_guide .school_intro .school_intro_first .school_intro_first_image img {
    width: 100%;
    height: auto;
  }
  body .flex_container_guide .school_intro .school_intro_first h2 {
    margin-top: 32px;
    color: #1f9f60;
    letter-spacing: 4px;
    line-height: 72px;
    font-size: 40px;
    font-weight: 400;
  }
  body .flex_container_guide .school_intro .si_contents_container {
    margin-top: 64px;
    background-color: #ffffff;
    padding-top: 16px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  body .flex_container_guide .school_intro .si_contents_container .contents_heading {
    display: flex;
    border-bottom: 4px solid #1f9f60;
  }
  body .flex_container_guide .school_intro .si_contents_container .contents_heading h2 {
    font-size: 1.9em;
    margin-bottom: 8px;
    margin-left: 16px;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents_block {
    margin-top: 0.4em;
    align-items: stretch;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents_block img {
    width: 100%;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents_block .si_video {
    flex: 1;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.4em;
    position: relative;
    width: 100%;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents_block .si_video::before {
    content: "";
    display: block;
    padding-top: 56.25%;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents_block .si_video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents {
    margin-top: 12px;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents .si_contents_image {
    background-color: grey;
    width: 100%;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents .si_contents_image img {
    width: 100%;
    height: auto;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents .si_text {
    flex: 1;
    flex-direction: column;
    display: flex;
    justify-content: center;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents .si_text .si_text_image {
    width: 100%;
    margin-top: 1em;
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents .si_text img {
    width: 49%;
    height: auto;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents p {
    text-align: left;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents h2 {
    text-align: left;
    margin-top: 24px;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents a {
    color: #1f9f60;
    border-bottom: 1px solid #1f9f60;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents span {
    color: #1f9f60;
  }
  body .flex_container_guide .school_intro .si_contents_container .tx_table {
    width: 100%;
    margin: 2em 0;
  }
  body .flex_container_guide .school_intro .si_contents_container .tx_table .tx_left_leniency {
    width: 30%;
  }
  body .flex_container_guide .school_intro .si_contents_container .tx_table .tx_left_scholarship {
    width: 50%;
  }
  body .flex_container_guide .school_intro .si_contents_container .tx_table tr th {
    text-align: center;
    padding: 1em;
    background-color: rgba(0, 0, 0, 0.0352941176);
    font-size: 1em;
    border: 0.5px solid #000000;
  }
  body .flex_container_guide .school_intro .si_contents_container .tx_table tr td {
    text-align: left;
    vertical-align: middle;
    border: 0.5px solid #000000;
    font-size: 0.8em;
    padding: 1em;
    line-height: 1.8em;
  }
  body .flex_container_guide .school_intro .si_contents_container .tx_table tr td span {
    color: #ff1736;
  }
  body .flex_container_guide .school_intro .si_contents_container .tx_table tr td a {
    color: #1f9f60;
    -webkit-text-decoration: underline 1px solid #1f9f60;
            text-decoration: underline 1px solid #1f9f60;
  }
  body .flex_container_guide .school_intro .si_contents_container .tx_table tr td a:hover {
    text-decoration: none;
  }
  body .flex_container_guide .school_intro .si_contents_container .tx_table tr td .link {
    color: #1f9f60;
  }
  body .flex_container_guide .school_intro .si_contents_container .others_btn {
    margin-top: 32px;
  }
  body .flex_container_guide .school_intro .si_contents_container .others_btn h3 {
    width: 80%;
    padding: 1em 1em 1.1em 1em;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
    font-size: 1.2em;
    background-color: #1f9f60;
    border-radius: 50px;
  }
  body .flex_container_guide .school_intro .si_contents_container .others_btn h3:hover {
    -webkit-text-decoration: underline 2px solid #ffffff;
            text-decoration: underline 2px solid #ffffff;
    text-underline-offset: 0.2em;
  }
  body footer {
    margin-top: 112px;
    width: 100%;
    height: auto;
    text-align: center;
  }
  body footer .decoration_container {
    width: 100%;
    height: 8vh;
    overflow: hidden;
  }
  body footer .decoration_container .decoration {
    width: 110%;
    height: 25vh;
    background-color: #1F9F60;
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;
    margin-right: auto;
    margin-left: auto;
    transform: translateX(-5vw);
  }
  body footer .footer_details {
    width: 100%;
    background-color: #1F9F60;
    padding-right: 56px;
    padding-left: 56px;
    padding-top: 8px;
    color: #ffffff;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body footer .footer_details h2 {
    margin-bottom: 8px;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 4px;
  }
  body footer .footer_details .details {
    margin-left: 64px;
  }
  body footer .footer_details p {
    margin-top: 4px;
    font-size: 16px;
    letter-spacing: 2px;
    line-height: 24px;
  }
  body footer .footer_table {
    width: 100%;
    background-color: #1F9F60;
    padding-right: 24px;
    padding-left: 24px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  body footer .footer_table .footer_contents_container {
    width: 48%;
    text-align: left;
    padding-top: 40px;
    padding-bottom: 24px;
  }
  body footer .footer_table .footer_contents_container a {
    display: block;
    margin-bottom: 16px;
  }
  #enmap {
    width: 30%;
    height: auto;
    margin-right: auto;
    margin-left: auto;
    background-color: #ffffff;
    margin-top: 32px;
    margin-bottom: 48px;
  }
  #enmap a {
    border: none;
  }
  #enmap img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 28px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
  }
  h2 {
    font-size: 20px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
  }
  h3 {
    font-size: 16px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
  }
  .p_large {
    font-size: 16px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
  }
  .p_small {
    font-size: 14px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
  }
  body {
    width: 100%;
  }
  body header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 56px;
    padding-left: 24px;
    padding-right: 0px;
    position: fixed;
    background-color: #ffffff;
    z-index: 1000;
  }
  body header h1 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
  }
  body header .header_nav .header_ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  body header .header_nav .header_ul li {
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0;
    margin-left: 0;
  }
  body header .header_nav .header_ul li img {
    width: 40px;
    height: auto;
  }
  body header .header_nav .header_ul li #btn_open {
    position: relative;
    width: 56px;
    height: 56px;
    background-color: #1F9F60;
    cursor: pointer;
    display: inline-block;
    transition: all 0.5s;
    box-sizing: border-box;
    padding: 8px;
  }
  body header .header_nav .header_ul li #btn_open span {
    transition: all 0.3s;
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    height: 3px;
    background-color: #ffffff;
    width: 50%;
    z-index: 10;
    left: 50%;
  }
  body header .header_nav .header_ul li #btn_open span:nth-of-type(1) {
    /*上の線の位置*/
    top: 35%;
  }
  body header .header_nav .header_ul li #btn_open span:nth-of-type(2) {
    /*真ん中の線の位置*/
    top: 50%;
  }
  body header .header_nav .header_ul li #btn_open span:nth-of-type(3) {
    /*下の線の位置*/
    top: 65%;
  }
  body header .header_nav .header_ul li #btn_open.open span:nth-of-type(1) {
    /*openのとき、上の線を右斜めにする*/
    top: 35%;
    transform: translateY(8px) translateX(-50%) rotate(-45deg);
  }
  body header .header_nav .header_ul li #btn_open.open span:nth-of-type(2) {
    /*真ん中の線を消す*/
    opacity: 0;
  }
  body header .header_nav .header_ul li #btn_open.open span:nth-of-type(3) {
    /*下の線を左斜めにする*/
    top: 65%;
    transform: translateY(-8px) translateX(-50%) rotate(45deg);
  }
  body .menu_buttons {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%; /* 画面幅の40% */
    height: 100vh;
    background-color: rgba(31, 159, 96, 0.95);
    z-index: 1001;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    color: #ffffff;
  }
  body .menu_buttons #btn_position {
    position: absolute;
    top: 0;
    right: 0;
  }
  body .menu_buttons #btn_position #btn_close {
    position: relative;
    width: 56px;
    height: 56px;
    background-color: #1F9F60;
    cursor: pointer;
    display: inline-block;
    transition: all 0.5s;
    box-sizing: border-box;
  }
  body .menu_buttons #btn_position #btn_close span {
    transition: all 0.3s;
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    height: 3px;
    background-color: #ffffff;
    width: 50%;
    z-index: 10;
    left: 50%;
  }
  body .menu_buttons #btn_position #btn_close span:nth-of-type(1) {
    /*上の線の位置*/
    top: 35%;
    transform: translateY(8px) translateX(-50%) rotate(-45deg);
  }
  body .menu_buttons #btn_position #btn_close span:nth-of-type(2) {
    /*真ん中の線の位置*/
    opacity: 0;
  }
  body .menu_buttons #btn_position #btn_close span:nth-of-type(3) {
    /*下の線の位置*/
    top: 65%;
    transform: translateY(-8px) translateX(-50%) rotate(45deg);
  }
  body .menu_buttons.open {
    opacity: 1;
    visibility: visible;
  }
  body .menu_buttons .menu_container {
    display: block;
    width: 100%;
  }
  body .menu_buttons .menu_container .menu_ul_container {
    display: block;
    margin-top: 48px;
    gap: 10%;
  }
  body .menu_buttons .menu_container .menu_ul_container .menu_ul {
    border-right: none;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding-right: 10%;
  }
  body .menu_buttons .menu_container .menu_ul_container .menu_ul li {
    padding-bottom: 24px;
    width: -moz-fit-content;
    width: fit-content;
    cursor: pointer;
  }
  body .menu_buttons .menu_container .menu_ul_container .menu_ul li a {
    font-size: 24px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    letter-spacing: 2px;
    font-weight: 400;
  }
  body .menu_buttons .menu_container .menu_ul_container .menu_ul li a:hover {
    border-bottom: 1px solid #ffffff;
  }
  body .menu_buttons .menu_container .menu_ul_container .menu_ul_small {
    margin-top: 24px;
  }
  body .menu_buttons .menu_container .menu_ul_container .menu_ul_small li {
    padding-bottom: 16px;
    width: -moz-fit-content;
    width: fit-content;
    cursor: pointer;
  }
  body .menu_buttons .menu_container .menu_ul_container .menu_ul_small li a {
    font-size: 16px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    letter-spacing: 2px;
    font-weight: 400;
  }
  body .menu_buttons .menu_container .menu_ul_container .menu_ul_small li a:hover {
    border-bottom: 1px solid #ffffff;
  }
  body .vecter {
    position: absolute;
    z-index: -1000;
    top: 4em;
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  body .vecter img {
    width: 100vw;
    transform: rotate(0deg);
  }
  body .first_visual {
    width: 100%;
    height: 100vh;
    position: relative;
  }
  body .first_visual .first_visual_image {
    background-color: grey;
    width: 100%;
    height: 100vh;
  }
  body .first_visual .first_visual_image img {
    width: 100vw;
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: -270px 0;
       object-position: -270px 0;
  }
  body .brochure_title {
    padding-top: 144px;
    padding-left: 24px;
    padding-right: 24px;
  }
  body .brochure_title h1 {
    color: #000000;
  }
  body .flex_container {
    width: 100%;
    justify-content: space-between;
    padding-left: 24px;
    padding-right: 24px;
  }
  body .flex_container a {
    margin-bottom: 32px;
    width: 100%;
    border: 0.1em solid #000000;
  }
  body .flex_container a .someone_container {
    width: 100%;
    padding-bottom: 70px;
    position: relative;
  }
  body .flex_container a .someone_container h2 {
    font-size: 1.1em;
  }
  body .flex_container a .someone_container h3 {
    font-size: 0.9em;
    margin-top: 24px;
    line-height: 24px;
  }
  body .flex_container a .someone_container .arrow {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body .flex_container a .someone_container .arrow img {
    width: 48px;
    height: 48px;
  }
  body .flex_container_guide {
    display: block;
  }
  body .flex_container_guide .guide {
    width: 100%;
    margin-top: 2em;
    padding-left: 24px;
    padding-right: 24px;
  }
  body .flex_container_guide .guide ul {
    width: 100%;
    font-size: 0.8em;
  }
  body .flex_container_guide .guide ul li {
    margin-bottom: 1.5em;
  }
  body .flex_container_guide .guide ul li a {
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
  }
  body .flex_container_guide .guide ul li span {
    color: #1f9f60;
  }
  body .flex_container_guide .school_intro {
    width: 100%;
    margin-top: 72px;
    padding-left: 24px;
    padding-right: 24px;
    text-align: center;
  }
  body .flex_container_guide .school_intro h1 {
    color: #1f9f60;
  }
  body .flex_container_guide .school_intro .si_contents_container {
    margin-top: 24px;
    background-color: #ffffff;
    padding-bottom: 16px;
  }
  body .flex_container_guide .school_intro .si_contents_container .contents_heading {
    display: block;
    border-bottom: 4px solid #1f9f60;
  }
  body .flex_container_guide .school_intro .si_contents_container .contents_heading .heading_number {
    font-size: 40px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
  }
  body .flex_container_guide .school_intro .si_contents_container .contents_heading h2 {
    text-align: left;
    margin-top: 16px;
    font-size: 18px;
    margin-left: 8px;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents {
    margin-top: 0.4em;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents .si_contents_image {
    background-color: grey;
    width: 100%;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents .si_contents_image img {
    width: 100%;
    height: auto;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents p {
    text-align: left;
    margin-top: 8px;
    line-height: 24px;
    font-size: 16px;
    letter-spacing: 0.05em;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents h2 {
    text-align: left;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents_block {
    margin-top: 0.4em;
    align-items: stretch;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents_block img {
    width: 100%;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents_block .si_video {
    flex: 1;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.4em;
    position: relative;
    width: 100%;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents_block .si_video::before {
    content: "";
    display: block;
    padding-top: 56.25%;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents_block .si_video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  body .flex_container_guide .school_intro .si_contents_container .tx_table {
    margin: 1em 0;
  }
  body .flex_container_guide .school_intro .si_contents_container .tx_table .tx_left_leniency {
    width: 30%;
  }
  body .flex_container_guide .school_intro .si_contents_container .tx_table .tx_left_scholarship {
    width: 50%;
  }
  body .flex_container_guide .school_intro .si_contents_container .tx_table tr th {
    text-align: center;
    padding: 1em;
    font-size: 0.5em;
    border: 0.5px solid #000000;
  }
  body .flex_container_guide .school_intro .si_contents_container .tx_table tr td {
    text-align: left;
    border: 0.5px solid #000000;
    font-size: 0.4em;
    padding: 1em;
    line-height: 3em;
  }
  body .flex_container_guide .school_intro .si_contents_container .others_btn {
    margin-top: 24px;
  }
  body .flex_container_guide .school_intro .si_contents_container .others_btn h3 {
    width: 100%;
    padding: 1em 1em 1.1em 1em;
    margin: 0 auto;
    font-size: 0.8em;
  }
  body .flex_container_guide .school_intro .si_contents_container .others_btn h3:hover {
    -webkit-text-decoration: underline 2px solid #ffffff;
            text-decoration: underline 2px solid #ffffff;
    text-underline-offset: 0.2em;
  }
  body footer {
    margin-top: 72px;
    width: 100vw;
    height: auto;
    overflow: hidden;
    text-align: center;
  }
  body footer .decoration_container {
    width: 100vw;
    height: 8vh;
    overflow: hidden;
  }
  body footer .decoration_container .decoration {
    width: 110%;
    height: 25vh;
    background-color: #1F9F60;
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;
    margin-right: auto;
    margin-left: auto;
    transform: translateX(-5vw);
  }
  body footer .footer_details {
    background-color: #1F9F60;
    padding-right: 24px;
    padding-left: 24px;
    padding-top: 8px;
    color: #ffffff;
    text-align: left;
    display: block;
  }
  body footer .footer_details h2 {
    margin-bottom: 8px;
    font-size: 20px;
  }
  body footer .footer_details .details {
    margin-left: 0;
  }
  body footer .footer_details p {
    margin-top: 4px;
    font-size: 14px;
    line-height: 20px;
  }
  body footer .footer_table {
    background-color: #1F9F60;
    padding-right: 24px;
    padding-left: 24px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  body footer .footer_table .footer_contents_container {
    width: 49%;
    text-align: left;
    padding-top: 40px;
    padding-bottom: 24px;
  }
  body footer .footer_table .footer_contents_container a {
    display: block;
    margin-bottom: 16px;
  }
  #enmap {
    width: 30%;
    height: auto;
    margin-right: auto;
    margin-left: auto;
    background-color: #ffffff;
    margin-top: 32px;
    margin-bottom: 48px;
  }
  #enmap a {
    border: none;
  }
  #enmap img {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 1440px) {
  h1 {
    font-size: 32px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
  }
  h2 {
    font-size: 24px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
  }
  h3 {
    font-size: 20px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
  }
  .p_large {
    font-size: 20px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
  }
  .p_small {
    font-size: 16px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
  }
  body {
    width: 100%;
    height: auto;
    font-family: "Zen Kaku Gothic New", sans-serif;
  }
  body header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 80px;
    padding-left: 56px;
    padding-right: 56px;
    position: fixed;
    background-color: #ffffff;
    z-index: 1000;
  }
  body header h1 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 2px;
  }
  body header .header_nav .header_ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  body header .header_nav .header_ul li {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0;
    margin-left: 0;
  }
  body header .header_nav .header_ul li img {
    width: 48px;
    height: auto;
  }
  body header .header_nav .header_ul li #btn_open {
    position: relative;
    width: 80px;
    height: 80px;
    background-color: #1F9F60;
    cursor: pointer;
    display: inline-block;
    transition: all 0.5s;
    box-sizing: border-box;
  }
  body header .header_nav .header_ul li #btn_open span {
    transition: all 0.3s;
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    height: 3px;
    background-color: #ffffff;
    width: 50%;
    z-index: 10;
    left: 50%;
  }
  body header .header_nav .header_ul li #btn_open span:nth-of-type(1) {
    /*上の線の位置*/
    top: 35%;
  }
  body header .header_nav .header_ul li #btn_open span:nth-of-type(2) {
    /*真ん中の線の位置*/
    top: 50%;
  }
  body header .header_nav .header_ul li #btn_open span:nth-of-type(3) {
    /*下の線の位置*/
    top: 65%;
  }
  body header .header_nav .header_ul li #btn_open.open span:nth-of-type(1) {
    /*openのとき、上の線を右斜めにする*/
    top: 35%;
    transform: translateY(12px) translateX(-50%) rotate(-45deg);
  }
  body header .header_nav .header_ul li #btn_open.open span:nth-of-type(2) {
    /*真ん中の線を消す*/
    opacity: 0;
  }
  body header .header_nav .header_ul li #btn_open.open span:nth-of-type(3) {
    /*下の線を左斜めにする*/
    top: 65%;
    transform: translateY(-12px) translateX(-50%) rotate(45deg);
  }
  body .menu_buttons {
    position: fixed;
    top: 0;
    right: 0;
    width: 76%; /* 画面幅の40% */
    height: 100vh;
    background-color: rgba(31, 159, 96, 0.95);
    z-index: 1001;
    padding: 0 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    color: #ffffff;
  }
  body .menu_buttons #btn_position {
    position: absolute;
    top: 0;
    right: 56px;
  }
  body .menu_buttons #btn_position #btn_close {
    position: relative;
    width: 80px;
    height: 80px;
    background-color: #1F9F60;
    cursor: pointer;
    display: inline-block;
    transition: all 0.5s;
    box-sizing: border-box;
  }
  body .menu_buttons #btn_position #btn_close span {
    transition: all 0.3s;
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    height: 3px;
    background-color: #ffffff;
    width: 50%;
    z-index: 10;
    left: 50%;
  }
  body .menu_buttons #btn_position #btn_close span:nth-of-type(1) {
    /*上の線の位置*/
    top: 35%;
    transform: translateY(12px) translateX(-50%) rotate(-45deg);
  }
  body .menu_buttons #btn_position #btn_close span:nth-of-type(2) {
    /*真ん中の線の位置*/
    opacity: 0;
  }
  body .menu_buttons #btn_position #btn_close span:nth-of-type(3) {
    /*下の線の位置*/
    top: 65%;
    transform: translateY(-12px) translateX(-50%) rotate(45deg);
  }
  body .menu_buttons.open {
    opacity: 1;
    visibility: visible;
  }
  body .menu_buttons .menu_container {
    display: block;
    width: 100%;
  }
  body .menu_buttons .menu_container .menu_ul_container {
    display: flex;
    margin-top: 48px;
    gap: 10%;
  }
  body .menu_buttons .menu_container .menu_ul_container .menu_ul {
    border-right: solid 1px #ffffff;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding-right: 10%;
  }
  body .menu_buttons .menu_container .menu_ul_container .menu_ul li {
    padding-bottom: 48px;
    width: -moz-fit-content;
    width: fit-content;
    cursor: pointer;
  }
  body .menu_buttons .menu_container .menu_ul_container .menu_ul li a {
    font-size: 24px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    letter-spacing: 2px;
    font-weight: 400;
  }
  body .menu_buttons .menu_container .menu_ul_container .menu_ul li a:hover {
    border-bottom: 1px solid #ffffff;
  }
  body .menu_buttons .menu_container .menu_ul_container .menu_ul_small li {
    padding-bottom: 32px;
    width: -moz-fit-content;
    width: fit-content;
    cursor: pointer;
  }
  body .menu_buttons .menu_container .menu_ul_container .menu_ul_small li a {
    font-size: 16px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    letter-spacing: 2px;
    font-weight: 400;
  }
  body .menu_buttons .menu_container .menu_ul_container .menu_ul_small li a:hover {
    border-bottom: 1px solid #ffffff;
  }
  body .vecter {
    position: absolute;
    z-index: -1000;
    top: -2.5em;
    height: auto;
    width: 100%;
    overflow: hidden;
  }
  body .vecter img {
    width: 100vw;
    margin-right: auto;
    margin-left: auto;
    transform: rotate(-15deg);
  }
  body .first_visual {
    width: 100%;
    height: 100vh;
    position: relative;
  }
  body .first_visual .first_visual_image {
    width: 100%;
    height: 100vh;
    align-items: stretch;
  }
  body .first_visual .first_visual_image img {
    width: 100vw;
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body .brochure_title {
    padding-top: 144px;
    padding-left: 56px;
    padding-right: 56px;
    text-align: center;
  }
  body .flex_container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 6em;
    padding-left: 176px;
    padding-right: 176px;
  }
  body .flex_container a {
    width: 49%;
    border: 0.1em solid #000000;
  }
  body .flex_container a .someone_container {
    width: 100%;
    padding: 16px;
    padding-bottom: 8em;
    margin-top: 32px;
    position: relative;
  }
  body .flex_container a .someone_container h2 {
    font-size: 1.6em;
  }
  body .flex_container a .someone_container h3 {
    font-size: 1.2em;
    margin-top: 24px;
    line-height: 24px;
  }
  body .flex_container a .someone_container .arrow {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body .flex_container a .someone_container .arrow img {
    width: 48px;
    height: 48px;
  }
  body .flex_container_guide {
    display: flex;
    padding-right: 176px;
  }
  body .flex_container_guide .guide {
    padding-right: 58px;
    margin-top: 14em;
    width: 30%;
  }
  body .flex_container_guide .guide ul {
    width: 100%;
    font-size: 1em;
  }
  body .flex_container_guide .guide ul li {
    margin-bottom: 2em;
  }
  body .flex_container_guide .guide ul li a {
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
  }
  body .flex_container_guide .guide ul li p:hover {
    color: #1f9f60;
  }
  body .flex_container_guide .guide ul li span {
    color: #1f9f60;
  }
  body .flex_container_guide .school_intro {
    width: 85%;
    margin-top: 96px;
    padding-left: 176px;
    padding-right: 40px;
    text-align: center;
  }
  body .flex_container_guide .school_intro h1 {
    color: #1f9f60;
  }
  body .flex_container_guide .school_intro p {
    margin-top: 1em;
    margin-bottom: 1em;
    letter-spacing: 0.1em;
    line-height: 1.5em;
    font-size: 1.25em;
  }
  body .flex_container_guide .school_intro .si_contents_container {
    margin-top: 64px;
    background-color: #ffffff;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  body .flex_container_guide .school_intro .si_contents_container .contents_heading {
    display: flex;
    align-items: flex-end;
    border-bottom: 4px solid #1f9f60;
  }
  body .flex_container_guide .school_intro .si_contents_container .contents_heading h2 {
    font-size: 2em;
    margin-bottom: 8px;
    margin-left: 16px;
    padding-bottom: 10px;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents {
    margin-top: 3em;
    margin-bottom: 3em;
    display: flex;
    align-items: stretch;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents .si_contents_image {
    background-color: grey;
    width: 46%;
    display: flex;
    align-items: stretch;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents .si_contents_image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents .si_text {
    flex: 1;
    flex-direction: column;
    display: flex;
    justify-content: center;
    padding-left: 2.4em;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents .si_text .si_text_image {
    width: 100%;
    margin-top: 2.4em;
    align-items: stretch;
    display: flex;
    justify-content: space-between;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents .si_text img {
    width: 48%;
    height: auto;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents p {
    text-align: left;
    width: -moz-fit-content;
    width: fit-content;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents h2 {
    text-align: left;
    margin-top: 24px;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents a {
    color: #1f9f60;
    border-bottom: 1px solid #1f9f60;
    width: -moz-fit-content;
    width: fit-content;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents span {
    color: #1f9f60;
  }
  body .flex_container_guide .school_intro .si_contents_container .tx_table {
    width: 100%;
    margin: 2em 0;
  }
  body .flex_container_guide .school_intro .si_contents_container .tx_table .tx_left_leniency {
    width: 30%;
  }
  body .flex_container_guide .school_intro .si_contents_container .tx_table .tx_left_scholarship {
    width: 50%;
  }
  body .flex_container_guide .school_intro .si_contents_container .tx_table tr th {
    text-align: center;
    padding: 1em;
    background-color: rgba(0, 0, 0, 0.0352941176);
    font-size: 1.3em;
    border: 0.5px solid #000000;
  }
  body .flex_container_guide .school_intro .si_contents_container .tx_table tr td {
    text-align: left;
    vertical-align: middle;
    border: 0.5px solid #000000;
    font-size: 1.2em;
    padding: 1em;
    line-height: 2em;
  }
  body .flex_container_guide .school_intro .si_contents_container .tx_table tr td span {
    color: #ff1736;
  }
  body .flex_container_guide .school_intro .si_contents_container .tx_table tr td a {
    color: #1f9f60;
    -webkit-text-decoration: underline 2px solid #1f9f60;
            text-decoration: underline 2px solid #1f9f60;
  }
  body .flex_container_guide .school_intro .si_contents_container .tx_table tr td a:hover {
    text-decoration: none;
  }
  body .flex_container_guide .school_intro .si_contents_container .tx_table tr td .link {
    color: #1f9f60;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents_block {
    margin-top: 3em;
    align-items: stretch;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents_block img {
    width: 100%;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents_block .si_video {
    flex: 1;
    justify-content: center;
    align-items: center;
    margin-bottom: 3em;
    position: relative;
    width: 100%;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents_block .si_video::before {
    content: "";
    display: block;
    padding-top: 56.25%;
  }
  body .flex_container_guide .school_intro .si_contents_container .si_contents_block .si_video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  body .flex_container_guide .school_intro .si_contents_container .others_btn {
    margin-top: 40px;
  }
  body .flex_container_guide .school_intro .si_contents_container .others_btn h3 {
    width: 80%;
    padding: 1em 1em 1em 1em;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
    font-size: 1.5em;
    background-color: #1f9f60;
    border-radius: 50px;
    letter-spacing: 0.1em;
  }
  body .flex_container_guide .school_intro .si_contents_container .others_btn h3:hover {
    -webkit-text-decoration: underline 2px solid #ffffff;
            text-decoration: underline 2px solid #ffffff;
    text-underline-offset: 0.2em;
  }
  body .flex_container_guide .school_intro .si_contents_container .table_container {
    margin-top: 72px;
  }
  body footer {
    margin-top: 112px;
    width: 100%;
    height: auto;
    text-align: center;
  }
  body footer .decoration_container {
    width: 100%;
    height: 8vh;
    overflow: hidden;
  }
  body footer .decoration_container .decoration {
    width: 110%;
    height: 25vh;
    background-color: #1F9F60;
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;
    margin-right: auto;
    margin-left: auto;
    transform: translateX(-5vw);
  }
  body footer .footer_container {
    display: grid;
    padding-bottom: 32px;
    background-color: #1F9F60;
  }
  body footer .footer_container .footer_details {
    width: 100%;
    background-color: #1F9F60;
    padding-right: 56px;
    padding-left: 56px;
    padding-top: 8px;
    color: #ffffff;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
  }
  body footer .footer_container .footer_details h2 {
    margin-bottom: 8px;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 4px;
    margin-left: 160px;
  }
  body footer .footer_container .footer_details #wadaminoru {
    margin-left: 160px;
  }
  body footer .footer_container .footer_details .details {
    order: 0;
  }
  body footer .footer_container .footer_details p {
    margin-top: 4px;
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 32px;
  }
  body footer .footer_container .footer_table {
    width: 100%;
    background-color: #1F9F60;
    padding-right: 56px;
    padding-left: 56px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    grid-row: 1/2;
  }
  body footer .footer_container .footer_table .footer_contents_container {
    width: -moz-fit-content;
    width: fit-content;
    text-align: left;
    padding-top: 40px;
    padding-bottom: 24px;
  }
  body footer .footer_container .footer_table .footer_contents_container a {
    display: block;
    margin-bottom: 16px;
  }
  #enmap {
    width: 30%;
    height: auto;
    margin-right: auto;
    margin-left: auto;
    background-color: #ffffff;
    margin-top: 32px;
    margin-bottom: 48px;
  }
  #enmap a {
    border: none;
  }
  #enmap img {
    width: 100%;
    height: auto;
  }
}
.onclick {
  color: #1f9f60;
}/*# sourceMappingURL=style.css.map */