@charset "utf-8";
/* CSS Document */

html {
  font-size: 62.5%;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: #333333;
}
@media screen and (min-width:768px){
  body {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.6;
  }
}


/*------------------
ナビメニュー
------------------*/

.header {
  position: sticky; /* headerを追従にする */
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 68px;
  background-color: #ffffff;
  z-index: 9999;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  position: relative;
}
.logo {
  width: 146px;
  z-index: 9999;
  margin-left: 20px;
}
.logo h1 {
  width: 100%;
}
.logo h1 img {
  width: 100%;
  height: auto;
  display: block;
}

.btn_contact_head {
  width: 120px;
  height: 68px;
  background-color: #FA9616;
  position: absolute;
  top: 0;
  right: 68px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 15px;
  text-decoration: none;
}
.btn_contact_head::before {
  content: "";
  width: 31px;
  height: 31px;
  background-image: url(../images/ico_mail.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.btn_contact_head:hover {
  
}
@media screen and (min-width:961px){
  .header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 80px;
  }
  .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 100px 0 0;
    max-width: 1200px;
    margin: 0 auto;
  }
  .logo {
    width: 240px;
    margin-top: 8px;
  }
  .logo h1 img {
    width: 240px;
    height: auto;
    display: block;
  }
  .btn_contact_head {
    width: 200px;
    height: 80px;
    top: 0;
    right: 0;
    font-size: 16px;
    line-height: 1.2;
    column-gap: 15px;
  }
  .btn_contact_head::before {
    width: 40px;
    height: 40px;
  }
  .btn_contact_head br {
    display: none;
  }
}


/* ハンバーガーボタンのデザイン */
.drawer__button {
  position: relative;
  width: 68px;
  height: 68px;
  background-color: #660000;
  border: none;
  cursor: pointer;
  z-index: 999; /* メニューを開いている時もクリックできるよう設定 */
}
.drawer__button::after {
  content: "メニュー";
  position: absolute;
  bottom: 5px;
  right: 0;
  left: 0;
  margin: 0 auto;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width:961px){
  .drawer__button {
    display: none;

  }
}



/* ハンバーガーボタン内の線 */
.drawer__button > span {
  display: block;
  position: absolute;
  top: 40%;
  left: 50%;
  width: 40px;
  height: 2px;
  background-color: #ffffff;
  transform: translateX(-50%);
}
.drawer__button > span:first-child {
  transform: translate(-50%, calc(-50% - 10px));
  transition: transform 0.3s ease;
}
.drawer__button > span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.drawer__button > span:last-child {
  transform: translate(-50%, calc(-50% + 10px));
  transition: transform 0.3s ease;
}
/* 展開時のデザイン */
.drawer__button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.drawer__button.active > span:nth-child(2) {
  opacity: 0;
}
.drawer__button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}


/* メニューのデザイン */
.drawer__nav {
  position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #F8F8F8;
  transition: opacity 0.5s ease;
  opacity: 0;
  visibility: hidden;
}
.drawer__nav.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease;
}
.drawer__nav__inner {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  padding: 68px 0 0 0;
  margin: 0 0 0 auto;
  overflow: scroll;
  transition: transform 0.5s ease;
}
.drawer__nav.active .drawer__nav__inner {
  transition: opacity 0.5s ease;
}
.drawer__nav__menu {
  width: 90%;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
}
.drawer__nav__link,.nav-open {
  display: flex;
  align-content: center;
  text-decoration: none;
  border-bottom: solid 1px #FA9616;
  position: relative;
  color: #333333;
  font-size: 16px;
  font-weight: 700;
}

.nav-open {
  height: 70px;
}

.drawer__nav__link {
  padding-top: 25px;
  height: 50px;
}

.drawer__nav__item {
  position: relative;
}
.drawer__nav__item::after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  right: 15px;
  top: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/arrow_nav.png);
}
.drawer__nav__item:has(span.active)::after {
  background-image: url(../images/arrow_nav.png);
  transform: rotate(90deg);/* 回転 */
}
 




@media screen and (min-width:961px){
  .drawer__nav {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: none;
    transition: opacity 0.5s ease;
    opacity: 1;
    visibility:visible;
  }
  .drawer__nav.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease;
  }
  .drawer__nav__inner {
    position: relative;
    display: flex;
    justify-content: flex-end;
    width: auto;
    height: auto;
    background: none;
    padding: 0;
    margin: 0 0 0 auto;
    overflow: visible;
    transition: transform 0.5s ease;
  }
  .drawer__nav.active .drawer__nav__inner {
    transition: opacity 0.5s ease;
  }
  .drawer__nav__menu {
    list-style: none;
    padding-left: 15%;
    display: flex;
    justify-content: flex-start;
  }
  .drawer__nav__item {
    
  }
  .drawer__nav__link,.nav-open {
    display: block;
    text-align: center;
    line-height: 1.2;
    text-decoration: none;
    padding: 23px 25px 0 25px;
    border-bottom: none;
    height: 55px;
  }
  .drawer__nav__item::after {
    background: none;
  }

}



.nav-open{
  width: auto;
  display: block;
}

@media screen and (min-width:961px){

  .nav-open{
    position: relative;
    width: auto;
  }

}


nav .sub-menu {
  display: none;
}
nav .sub-menu a {
  color: #333333;
  font-size: 16px;
  font-weight: 700;
  padding: 20px;
  display: block;
  background-color: #feefdc;
  text-decoration: none;
  background-image: url(../images/arrow_nav_sub.png);
  background-repeat: no-repeat;
  background-position: right 20px center;
  border-bottom: 1px solid #FA9616;
  background-size: 18px 18px;
  line-height: 1.4;
}

@media screen and (min-width:961px){
  /* 子メニュー - .sub-menu PCだけで機能*/
  /* PCだけhoverで開閉、スマホはjsで開閉*/
  nav .sub-menu {
    position: absolute;
    width: auto;
    background: #ffffff;
    top: 80px;
    white-space: nowrap;
    opacity: 0;
    display: block;
    visibility: hidden;
    transition: 0.5s;
  }
  nav .sub-menu a {
  color: #333333;
  padding: 10px 60px 10px 15px;
  display: block;
  background-color: #feefdc;
  border-bottom: 1px solid #FA9616;
  background-image: url(../images/arrow_nav_sub.png);
  background-repeat: no-repeat;
  background-position: right 20px center;
  }
  nav .sub-menu a:hover {
    
  }

  /* ホバーで子メニュー表示 */
  nav .menu-item-has-children:hover {
    border-bottom: 2px solid #FA9616;
  }
  nav .menu-item-has-children:hover ul {
    opacity: 1;
    visibility: visible;
  }
  nav .menu-item-has-children:hover .nav-open {
    color: #333333;  
  }
  nav li.menu-item-has-children li a:hover {
  background-color: #F9D3A3;
  }
  
  
}





/* ハンバーガーメニュー展開時、背景を固定 */
body.active {
  height: 100%;
  overflow: hidden;
}



/*------------------
フッター
------------------*/

.footer {
  background-color: #7E4444;
  padding: 60px 0;
}
.footer_inner {
  padding: 0 20px;
  margin-bottom: 30px;
}
.footer_inner,.footer_inner a {
  color: #FFFFFF;
  text-decoration: none;
}
.footer_inner p {

}

.foot_adress {
  font-size: 14px;
  padding: 20px;
  line-height: 1.6;
}
.foot_adress_head {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.teikyu_title {
  display: flex;
}
.teikyu_title span {
  display: block;

}

.foot_menu {
  list-style-type: none;
  padding: 20px;
}
.foot_menu li {
  font-size: 14px;
  font-weight: 400;
  padding: 5px 0 5px 25px;
  margin-bottom :10px;
  line-height: 1;
  background-image: url(../images/arrow_wh.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 18px 18px;
}

.foot_map {
  padding: 0 20px;
  aspect-ratio: 1 / 1;
  margin-bottom: 50px;
}
.foot_map iframe {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.footer_copy {
  font-size: 12px;
  text-align: center;
  color: #FFFFFF;
  padding: 20px 0;
}

@media screen and (min-width:768px){
  .footer {
    padding: 80px 0 40px 0;
  }
  .footer_inner {
    display: flex;
    padding: 0;
    max-width: 1000px;
    margin: 0 auto 60px auto;
  }
  .foot_adress {
    font-size: 16px;
    padding: 0;
    line-height: 1.6;
    width: 50%;
  }
  .foot_adress_head {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .foot_menu {
    list-style-type: none;
    padding: 70px 0 0 0;
  }
  .foot_menu li {
    font-size: 16px;
    padding: 5px 0 5px 25px;
    margin-bottom :10px;
    line-height: 1;
    background-image: url(../images/arrow_wh.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 18px 18px;
  }

  .foot_map {
    padding: 0;
    max-width: 1000px;
    margin: 0 auto 60px auto;
    aspect-ratio: 10 / 3;
  }
  .foot_map iframe {
    width: 100%;
    aspect-ratio: 10 / 3;
  }

  
  .footer_copy {
    font-size: 12px;
    text-align: center;
    color: #FFFFFF;
    padding: 20px 0;
  }
}





/*------------------
コンテンツ
------------------*/


/*コンテンツ共通*/

.sp {
  display: block;
}
.pc {
  display: none;
}
.section {
  padding: 35px 0;
}
.inner_section {
  padding: 0 20px;
}

main {
  padding: 0;
  margin: 0;
}

.wrapper {
  width: 100%;
  padding: 0;
  overflow-x: hidden;
}
p.txt {
  line-height: 2;
}
 
@media screen and (min-width:768px){
  .sp {
    display: none;
  }

  .pc {
    display: block;
  }
  .section {
    padding: 50px 0;
  }
  main {

  }
  .inner_section {
    max-width: 1000px;
    margin: 0 auto;
  }
  .wrapper {
  }
}




.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
  height: 52px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.btn_red {
  background-color: #D32D25;  
  width: 100%;
  color: #FFFFFF;
}
.btn_red::after {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background-image: url(../images/arrow_btn_w.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.btn_beige {
  background-color: #BA9E5C;  
  width: 100%;
  color: #FFFFFF;
}
.btn_beige::after {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background-image: url(../images/arrow_btn_w.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.btn_green {
  background-color: #729140;  
  width: 100%;
  color: #FFFFFF;
}
.btn_green::after {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background-image: url(../images/arrow_btn_w.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width:768px){
  .btn {
    column-gap: 20px;
    height: 70px;
    font-size: 16px;
    margin: 0 auto;
  }

  .btn_red {
    background: none; 
    color: #D32D25;
    border-bottom: 2px solid #D32D25;
    width: 230px;
  }
  .btn_red::after {
    width: 44px;
    height: 44px;
    background-image: url(../images/arrow_red.png);
  }
  .btn_beige {
    background: none; 
    color: #BA9E5C;
    border-bottom: 2px solid #BA9E5C;
    width: 230px;
  }
  .btn_beige::after {
    width: 44px;
    height: 44px;
    background-image: url("../images/arrow_beige.png");
  }
  .btn_green {
    background: none; 
    color: #729140;
    border-bottom: 2px solid #729140;
    width: 230px;
  }
  .btn_green::after {
    width: 44px;
    height: 44px;
    background-image: url("../images/arrow_green.png");
  }
}



/*------------------
TOPページ
------------------*/

/* メインビジュアル */

.mv {
  width: 100%;
  margin:0 auto;
}

.mv_img {
  width: 100%;
}
.mv_img img {
  width: 100%;
  aspect-ratio: 78 / 72;
  display: block;
}
.mv_copy {
  padding: 0 20px;
}
.mv_copy_inner {
  background-color: #FA9616;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  color: #FFFFFF;
  font-weight: 700;
  padding: 30px 20px;
  margin-left: -20px;
  line-height: 1.2;
}
.mv_copy_1 {
  font-size: 32px;
  margin-bottom: 20px;
}
.mv_copy_2 {
  font-size: 16px;
}

@media screen and (min-width:768px){
  .mv {
    margin:0 auto;
    position: relative;
  }
  .mv_img img {
    aspect-ratio: 210 / 96;
  }
  .mv_copy_wrap {
    padding: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
  }
  .mv_copy {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
  }
  .mv_copy_inner {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    padding: 60px 50px 60px 0;
    max-width: 360px;
    line-height: 1.2;
    margin-left: 0;
    position: relative;
  }
  .mv_copy_inner::before {
    content: "";
    width: 50%;
    height: 100%;
    background-color: #FA9616;
    position: absolute;
    top: 0;
    left: -50%;
  }
  .mv_copy_1 {
    font-size: 46px;
    margin-bottom: 20px;
  }
  .mv_copy_2 {
    font-size: 18px;
  }
}


/* TOPページ共通 */

.h2_top_or {
  font-size: 26px;
  font-weight: 700; 
  margin-bottom: 50px;
  line-height: 1;
  text-align: center;
}
.h2_top_or span {
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
  display: block;
  color: #FA9616;
}

@media screen and (min-width:768px){
  .h2_top_or {
    font-size: 36px;
    margin-bottom: 70px;
  }
  .h2_top_or span {
    font-size: 24px;
    margin-bottom: 10px;
  }

}


/* 私たちのビジョン */

.vision {
  
}
@media screen and (min-width:768px){
  .vision p {
    text-align: center;
    max-width: 670px;
    margin: 0 auto;
  }
}


/* 奨学生募集 */

.recruitment {
  background-color: #F8F8F8;  
}
.recruitment_inner {
  
}
.recruitment_block {
  border-radius: 10px;
  padding: 10px;
}
.recruitment_block:nth-child(1) {
  background-color: #00A0AD;
  margin-bottom: 40px;
}
.recruitment_block:nth-child(2) {
  background-color: #FA9615;
}

.recruitment_img {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.recruitment_img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  transition: transform .6s ease; /* ゆっくり変化させる */
}

.recruitment_block:hover .recruitment_img img {
  transform: scale(1.1); /* 拡大 */
}

.recruitment_block h3 {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 1.8;
  padding: 10px 0;
}
.btn_recruit_gr,
.btn_recruit_or{
  display: block;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  background-image: url(../images/arrow_wh.png);
  background-repeat: no-repeat;
  background-size: 26px 26px;
  background-position: right 20px center;
  border: 2px solid #FFFFFF;
  border-radius: 32px;
  color: #FFFFFF;
  text-decoration: none;
  margin: 5px;
  transition: all  0.3s ease;
}
.btn_recruit_gr {
  background-color: #00A0AD;
}
.btn_recruit_gr:hover {
  background-image: url(../images/arrow_gr.png);
  color: #00A0AD;
  background-color: #FFFFFF;
}
.btn_recruit_or {
  background-color: #FA9616;
}
.btn_recruit_or:hover {
  background-image: url(../images/arrow_or.png);
  color: #FA9616;
  background-color: #FFFFFF;
}

@media screen and (min-width:768px){
  .recruitment {

  }
  .recruitment_inner {
    display: flex;
    max-width: 1200px;
    justify-content: space-between;
    column-gap: 4%;
  }
  .recruitment_block {
    width: 48%;
    border-radius: 10px;
    padding: 10px;
  }
  .recruitment_block:nth-child(1) {
    margin-bottom: 0;
  }

  .recruitment_block img {
    aspect-ratio: 56 / 32;
  }
  .recruitment_block h3 {
    font-size: 24px;
  }
  .btn_recruit {
    max-width: 400px;
    padding: 20px;
    font-size: 16px;
    background-size: 28px 28px;
    background-position: right 20px center;
    margin: 10px auto;
  }
}


/* 奨学生募集 */

.about {
  
}
.about_inner {
  
}
.about p {
  margin-bottom: 40px;
}
.about_img {
  margin-bottom: 40px;
  position: relative;
}
.about_img img {
  width: 100%;
}
.btn_about {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 64px;
  margin: 40px 0 20px 0;
  color: #FFFFFF;
  background-color: #660000;
  background-image: url(../images/arrow_wh.png);
  background-repeat: no-repeat;
  background-size: 26px 26px;
  background-position: right 20px center;
  border-radius: 32px;
  border: 2px solid #660000;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

@media screen and (min-width:768px){
  .about_inner {
    padding-left: 60%;
    position: relative;
  }
  .about h2 {
  margin-bottom: 40px;
  text-align: left;
  }
  .about p {
    margin-bottom: 40px;
  }
  .about_img {
    width: 50%;
    position: absolute;
    top: 0;
    left: 0;
    margin-bottom: 40px;
  }
  .about_img img {
    width: 100%;
  }
  .btn_about {
    display: block;
    width: 260px;
    height: auto;
    padding: 22px 40px;
    margin: 0;
    color: #660000;
    background-color: #FFFFFF;
    background-image: url("../images/arrow_br.png");
    background-repeat: no-repeat;
    background-size: 26px 26px;
    background-position: right 20px center;
    border-radius: 32px;
    border: 2px solid #660000;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
    transition: all  0.3s ease;
  }
  .btn_about:hover {
    color: #FFFFFF;
    background-color: #660000;
    background-image: url("../images/arrow_wh.png");
  }
}


/* お問い合わせ */

.contact {
  background-image: url(../images/bg_contact_sp.jpg);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}
.contact_h2 {
  color: #ffffff;
  font-size: 26px;
  font-weight: 700; 
  margin-bottom: 30px;
  line-height: 1;
  text-align: center;
}
.contact_h2 span {
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
  display: block;

}

.contact_btn_wrap {
  
}
.btn_contact {
  display: block;
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px 20px 30px 110px;
  text-decoration: none;
  line-height: 1.6;
  background-repeat: no-repeat;
  background-size: 72px 72px;
  background-position: left 20px center;
  color: #333333;
}
.btn_contact span {
  font-size: 20px;
  font-weight: 700;
  color: #660000;
  width: 12em;
}

.btn_contact_mail {
  background-image: url(../images/ico_btn_contact_mail.png);
  margin-bottom: 20px;
}
.btn_contact_tel {
  background-image: url(../images/ico_btn_contact_tel.png);
}


@media screen and (min-width:768px){
  .contact {
    background-image: url(../images/bg_contact_pc.jpg);
  }
  .contact_h2 {
    font-size: 36px;
    margin-bottom: 25px;
  }
	.contact_h2_exp{
		color:white; 
		text-align:center; 
		font-size:1.2em; 
		margin-bottom:25px;
	}
  .contact_h2 span {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .contact_btn_wrap {
    display: flex;
   /*column-gap: 4%;*/ /*250729*/
    justify-content: space-between;
  }
  .btn_contact {
    /*width: 48%;*/ /*250729*/
    display: block;
    /*padding: 45px 45px 45px 160px;*/
	  padding: 45px 45px 45px 150px;
    background-size: 96px 96px;
    background-position: left 35px center;
    color: #333333;
    line-height: 1.1;
  }
  .btn_contact span {
    font-size: 24px;
    font-weight: 700;
    color: #660000;
    width: 12em;
    display: block;
  }

  .btn_contact_mail {
    background-image: url(../images/ico_btn_contact_mail.png);
    margin-bottom: 0;
  }
  .btn_contact_tel {
    background-image: url(../images/ico_btn_contact_tel.png);
  }
}


.contact_h2_exp{
		color:white; 
		text-align:center; 
		font-size:1.2em; 
		margin-bottom:25px;
	}









/*------------------
ページ共通
------------------*/

/* コンテンツページヘッダ */

.page_head {
  width: 100%;
  background-color: #FA9616;
  padding-top: 92vw;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}
.page_head_college {
   background-image: url(../images/head_collage_sp.jpg); 
}
.page_head_high {
   background-image: url(../images/head_highschool_sp.jpg); 
}
.page_head_about {
   background-image: url(../images/head_about_sp.jpg); 
}
.page_head_application {
   background-image: url(../images/head_application_sp.jpg); 
}
.page_head_contact {
   background-image: url(../images/head_contact_sp.jpg); 
}

.page_head_inner {
  
}
.page_head_h1 {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.4;
  padding: 20px;
  margin-bottom: 20px;
  height: 110px;
  display: flex;
  flex-direction:column;
  justify-content: center;
  align-items:flex-start;
}
.page_head_h1 span {
  display: block;
  font-size: 18px;
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  color: #f5bb72;
  padding-top: 10px;
}

.h2_page {
  font-weight: 700;
  font-size: 26px;
  border-left: 5px solid #FA9616;
  padding-left: 20px;
  margin-bottom: 30px;
}

@media screen and (min-width:768px){
  .page_head {
    width: 100%;
    aspect-ratio: 140 / 36;
    padding: 0;
    background-position: right center;
    background-size: auto 100%;
  }
  .page_head_college {
     background-image: url(../images/head_collage_pc.jpg); 
  }
  .page_head_high {
     background-image: url(../images/head_highschool_pc.jpg); 
  }
  .page_head_about {
     background-image: url(../images/head_about_pc.jpg); 
  }
  .page_head_application {
     background-image: url(../images/head_application_pc.jpg); 
  }
  .page_head_contact {
     background-image: url(../images/head_contact_pc.jpg); 
  }
  
  .page_head_inner {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
  }
  .page_head_h1 {
    font-size: 40px;
    line-height: 1.2;
    padding: 0;
    margin: 0;
    height: 100%;

  }
  .page_head_h1 span {
    display: block;
    font-size: 32px;
    padding-top: 10px;
  }
  .h2_page {
    font-size: 36px;
    padding-left: 40px;
    margin-bottom: 35px;
  }

}


/*------------------
募集要項
------------------*/

.qualifications {
  
}
.period {
  
}
.period_img_wrap {
  
}
.period_img {
  width: 100%;
}
.detail {
  
}

.detail_table {
  width: 100%;
  border-top: 1px solid #B5B5B5;
  margin-bottom: 40px;
}
.detail_table th,
.detail_table td {
  border-bottom: 1px solid #B5B5B5;
  padding: 10px;
  text-align: left;
  font-weight: 400;
  font-size: 14px;
}
.detail_table th {
  white-space: nowrap;
  width: 35%;
}
.detail_table td {
  white-space: nowrap;
  width: 65px;
}
.detail_table_head {
  display: block;
  border-right: 5px solid #DDDDDD;
  padding-right: 20px;
  width: 7em;
}

.document_entry_wrap a {
  display: block;
  padding: 10px 10px 10px 50px;
  font-size: 20px;
  color: #660000;
  background-image: url(../images/ico_pdf_btn.png);
  background-repeat: no-repeat;
  background-size: 32px 32px;
  background-position: left top 10px;
  margin-bottom: 10px;
}
.method .document_entry_wrap a:nth-child(1)::before {
  content:"①";
}
.method .document_entry_wrap a:nth-child(2)::before {
  content:"②";
}
.method .document_entry_wrap a:nth-child(3)::before {
  content:"③";
}
.document_entry_2 span {
  display: block;
  padding: 10px 10px 10px 50px;
  font-size: 20px;
  margin-bottom: 10px;
}
.method {
  
}
.document_entry_wrap {
  
}
.document_entry_1 {
  
}
.document_entry_2 {
  
}

.flow {
  
}
.flow_wrap {
  padding: 40px 0;
}
.flow_block {
  background-color: #F2F2F2;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  padding: 20px;
}
.flow_head {

}
.flow_no {
  display: block;
  color: #FA9616;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  font-family: "Outfit", sans-serif;
}
.flow_txt {
  display: block;
  color: #660000;
  font-weight: 700;
  font-size: 20px;
}
.flow_img {
  display: block;
  max-width: 200px;
}
.flow_img img {
  width: 100%;
}
.flow_arrow {
  display: block;
  margin: 20px auto;
  width: 30px;
  height: 24px;
}


@media screen and (min-width:768px){
  .qualifications {

  }
  .period {

  }
  .period_img_wrap {
    display: flex;
    column-gap: 60px;
  }
  .period_img {
    width: auto;
    max-height: 170px;
  }
  .detail {
  
  }

  .detail_table {
    width: auto;
    margin-bottom: 40px;
  }
  .detail_table th,
  .detail_table td {
    padding: 10px;
    font-size: 16px;
  }
  .detail_table th {
    white-space: nowrap;
    width: 8em;
  }
  .detail_table td {
    width: auto;
  }
  .detail_table_head {
    display: block;
    width: 7em;
  }
  
  .document_entry_wrap {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
  }
  .document_entry_1 {
    width: 50%;
  }
  .document_entry_2 {
    width: 50%;
  }
  .document_entry_wrap a {
    padding: 10px 10px 10px 60px;
    font-size: 24px;
    background-size: 36px 36px;
    background-position: left top 10px;
    margin-bottom: 10px;
  }
  .document_entry_2 span {
    padding: 10px 10px 10px 60px;
    font-size: 24px;
    margin-bottom: 10px;
  }
  .flow {
    
  }
  .flow_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .flow_block {
    display: block;
    min-width: 220px;
    padding: 20px 0;
  }
  .flow_head {
    padding: 0 20px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .flow_no {
    display: block;
    font-size: 40px;
  }
  .flow_txt {
    display: block;
    font-size: 20px;
    text-align: center;
    width: 7em;
  }
  .flow_img {
    max-width: 180px;
    margin: 0 auto;
  }

  .flow_arrow {
    margin: 5px;
    width: 30px;
    height: 24px;
    transform: rotate( -90deg );
  }
}




/*------------------
中内育英会について
------------------*/

.greeting {
  
}
.greeting p span {
  display: block;
  text-align: right;
}
.purpose {
  
}
.purpose p {
  margin-bottom: 30px;
  line-height: 1.8;
}

.results {
  background-color: #F8F8F8;  
}
.results_wrap {
  
}

.results_block {
  margin-bottom: 60px;
}
.results_block h3 {
  color: #660000;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.results_cont {
  background-color: #FFFFFF;
}
.results_cont img {
  width: 100%;
  display: block;
}
.officer_list {
  
}
.officer_list_table {
  width: 100%;
  border-top: 1px solid #B5B5B5;
  margin-bottom: 40px;
}
.officer_list_table th,
.officer_list_table td {
  border-bottom: 1px solid #B5B5B5;
  padding: 10px;
  text-align: left;
  font-weight: 400;
  font-size: 14px;
}
.officer_list_table th {
  white-space: nowrap;
}

.officer_name {
  display: block;
  border-left: 5px solid #DDDDDD;
  padding-left: 20px;
}
.company_name {
  display: block;
  border-left: 5px solid #DDDDDD;
  padding-left: 20px;
}

.btn_pdf {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  background-color: #660000;
  border-radius: 30px;
  display: flex;
  width: 260px;
  height: 54px;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
  margin: 40px auto;
  transition: all  0.3s ease;
}
.btn_pdf::after {
  content: "";
  width: 28px;
  height: 28px;
  background-image: url(../images/ico_pdf.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.btn_pdf:hover {
  background-color: #FA9616;
}

@media screen and (min-width:768px){
  .greeting {

  }
  .purpose {

  }
  .purpose p {
    margin-bottom: 35px;
    line-height: 1.8;
  }

  .results {
    
  }
  .results_wrap {
    display: flex;
    flex-wrap: wrap;
    column-gap: 4%;
  }

  .results_block {
    width: 48%;
    margin-bottom: 4%;
  }
  .results_block:nth-child(1) {
    width: 100%;
  }
  .results_block h3 {
    font-size: 24px;
  }
  .results_cont {
    
  }

  .officer_list {

  }
  .officer_list_table {
    margin-bottom: 60px;
  }
  .officer_list_table th,
  .officer_list_table td {
    padding: 10px 20px;
    font-size: 16px;
  }
  .officer_list_table td {
    display: flex;
  }

  .officer_name {
    width: 25%;
    display: block;
    border-left: 5px solid #DDDDDD;
    padding-left: 20px;
  }
  .company_name {
    width: 75%;
    display: block;
    border-left: 5px solid #DDDDDD;
    padding-left: 20px;
  }

  .btn_pdf {
    font-size: 20px;
    width: 260px;
    height: 54px;
  }
  .btn_pdf::after {
    width: 28px;
    height: 28px;
  }
}


/*------------------
出願・届出書
------------------*/

.application {
  
}
.application_wrap {
  background-color: #F8F8F8;
  padding: 60px 20px;
  margin: 0 20px;
}
.application_wrap a {
  display: block;
  padding: 10px 10px 10px 50px;
  font-size: 20px;
  color: #660000;
  background-image: url(../images/ico_pdf_btn.png);
  background-repeat: no-repeat;
  background-size: 32px 32px;
  background-position: left top 10px;
  margin-bottom: 10px;
}

@media screen and (min-width:768px){

  .application_wrap {
    max-width: 1000px;
    padding: 80px 100px;
    margin: 0 auto;
  }
  .application_wrap a {
    padding: 10px 10px 10px 60px;
    font-size: 24px;
    background-size: 36px 36px;
    background-position: left top 10px;
    margin-bottom: 10px;
  }
}


/*------------------
Contact Form 7
------------------*/

.cf7 {
  background-color: #F8F8F8;
  padding: 100px;
}
.cf7__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.cf7__list dt:nth-of-type(n + 2),
.cf7__list dd:nth-of-type(n + 2) {
  margin-top: 30px;
}

.cf7__list dt {
  width: 35%;
  padding-top: 15px;
  font-weight: 700;
}

.cf7__list dd {
  width: 65%;
}

/* 必須・任意 */
.cf7__required {
  padding: 6px 14px;
  color: #EA0000;
  font-size: 0.9em;
  vertical-align: 1px;
}


/* input・textarea */
.cf7__list dd input[type="text"],
.cf7__list dd input[type="tel"],
.cf7__list dd input[type="email"],
.cf7__list dd textarea {
  width: 90%;
  padding: 15px 20px;
  background: #ffffff;
  border: 1px solid #A3A3A3;
  border-radius: 10px;
}

/* ドロップダウンメニュー */
.cf7__select {
  position: relative;
}

.cf7__select:before {
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 10;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border: 8px solid #000;
  pointer-events: none;
  content: '';
}

.cf7__select select {
  width: 100%;
  padding: 19px 20px;
  background: #F4F4F4;
  color: #a5a5a5;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* チェックボックス・ラジオボタン */
.cf7__list dd .wpcf7-checkbox,
.cf7__list dd .wpcf7-radio {
  display: block;
  padding: 15px 0 10px;
}

/* 縦並び（チェックボックス・ラジオボタン） */
.cf7__list dd .wpcf7-list-item {
  display: block;
  margin: 0;
}

.cf7__list dd .wpcf7-list-item:nth-child(n + 2) {
  margin-top: 18px;
}

/* マウスカーソル（チェックボックス・ラジオボタン） */
.cf7__list dd .wpcf7-list-item label {
  cursor: pointer;
}

/* チェックボックス・ラジオボタン */
input[type="checkbox"],
input[type="radio"] {
  position: relative;
  width: 24px;
  height: 24px;
  margin: 0 8px 0 0;
  border: 1px solid #A3A3A3;
  vertical-align: -5px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 2px;
}

/* チェックボックス */
input[type="checkbox"]:checked {
  border: 1px solid #A3A3A;
  background: #EA0000;
}

input[type="checkbox"]:checked:before {
  position: absolute;
  top: 2px;
  left: 7px;
  transform: rotate(50deg);
  width: 7px;
  height: 11px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: '';
}

/* ラジオボタン */
input[type="radio"] {
  border-radius: 50%;
}

input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #000;
  content: '';
}

/* プレースホルダー */
/* Google Chrome / Safari / Mozilla Firefox / Opera */
.cf7__list dd input[type="text"]::placeholder,
.cf7__list dd input[type="tel"]::placeholder,
.cf7__list dd input[type="email"]::placeholder,
.cf7__list dd textarea::placeholder {
  color: #a5a5a5;
}

/* Microsoft Edge */
.cf7__list dd input[type="text"]::-ms-input-placeholder,
.cf7__list dd input[type="tel"]::-ms-input-placeholder,
.cf7__list dd input[type="email"]::-ms-input-placeholder,
.cf7__list dd textarea::-ms-input-placeholder {
  color: #a5a5a5;
}

/* Internet Explorer */
.cf7__list dd input[type="text"]:-ms-input-placeholder,
.cf7__list dd input[type="tel"]:-ms-input-placeholder,
.cf7__list dd input[type="email"]:-ms-input-placeholder,
.cf7__list dd textarea:-ms-input-placeholder {
  color: #a5a5a5;
}

/* 送信ボタン */
.cf7__button {
  text-align: center;
}

input[type="submit"] {
  display: block;
  margin: 0 auto;
  width: 300px;
  height: 64px;
  background-color: #EA0000;
  color: #ffffff;
  transition: all  0.3s ease;
  border-radius: 30px;
  border: 2px solid #EA0000;
  background-image: url(../images/arrow_wh.png);
  background-repeat: no-repeat;
  background-size: 28px 28px;
  background-position: right 10px center;
  font-weight: 700;
}

input[type="submit"]:hover {
  background-color: #ffffff;
  color: #EA0000;
  background-image: url(../images/arrow_red.png);
}

/* ajax-loader */
.wpcf7-spinner {
  vertical-align: middle;
}

.contact_privacy {
  margin-bottom: 40px;
}
.contact_privacy_title {
  font-weight: 700;
  margin-bottom: 10px;
}
.contact_privacy_cont {
  background-color: #FFFFFF;  
  padding: 30px 35px 15px 35px;
  background: #ffffff;
  border: 1px solid #A3A3A3;
  border-radius: 10px;
}
.contact_privacy_cont p {
  margin-bottom: 20px;
}
.agree {
  text-align: center;
  font-weight: 700; 
  margin-bottom: 40px;
  line-height: 1;
}
.check .wpcf7-list-item {
  margin: 0 !important;
}

@media screen and (max-width: 767px) {
  .cf7 {
    padding: 40px 20px;
  }
  .cf7__list dt {
    width: 100%;
    margin-bottom: 15px;
    padding-top: 0;
  }

  .cf7__list dd {
    width: 100%;
  }

  .cf7__list dd:nth-of-type(n + 2) {
    margin-top: 0;
  }

  .cf7__list dd .wpcf7-checkbox,
  .cf7__list dd .wpcf7-radio {
    padding: 15px 0 0;
  }

  /* 送信ボタン */
  input[type="submit"] {
    width: 100%;
    height: 64px;
  }
  .contact_privacy {
    margin-bottom: 40px;
  }
  .contact_privacy_title {
     
  }
  .contact_privacy_cont {
    padding: 30px 35px 15px 35px;
    border-radius: 10px;
  }
  .contact_privacy_cont p {
    margin-bottom: 20px;
  }
  .agree {
    text-align: center;
    font-weight: 700; 
    margin-bottom: 40px;
    line-height: 1;
  }
  .check span label {

  }
}



/*------------------
プライバシーポリシー
------------------*/

.privacy {
  background-color: #F8F8F8;  
}
.privacy_h1 {
  font-weight: 700;
  font-size: 26px;
  padding: 0 20px;
  margin-bottom: 60px;
}
.privacy_h1 span {
  font-weight: 400;
  font-size: 18px;
  color: #959595;
  display: block;
  background-image: url(url);
}
.privacy_wrap {
  padding: 0 20px;
}
.privacy_h2 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
}
.privacy_wrap p {
  margin-bottom: 40px;
}
.privacy_wrap ul {
  margin: -20px 0 40px 20px;
}
.inquiry {
  border-top: 1px solid #B5B5B5;
  padding-top: 40px;
}

@media screen and (min-width:768px){
  .privacy {
    
  }
  .privacy_h1 {
    font-size: 40px;
    padding: 0;
    margin: 0 auto 70px auto;
    max-width: 1000px;
  }
  .privacy_h1 span {
    font-size: 32px;
  }
  .privacy_wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
  }
  .privacy_h2 {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .privacy_wrap p {
    margin-bottom: 60px;
  }
  .privacy_wrap ul {
    margin: -30px 0 60px 20px;
  }
}






.fadeIn_left {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 2s;
}
.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_right {
  opacity: 0;
  transform: translate(50%, 0);
  transition: 2s;
}
.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}






@media screen and (min-width:768px){
  /*タブレット以上　画面幅を768pxまでに設定*/
}

