@charset "utf-8";
/* ===============================================
#  共通
=============================================== */
html{
  scroll-behavior:smooth;
}
*[id^="anc"]{
  scroll-margin-top: 88px;
}
main {
  padding-bottom: 0;
  overflow: hidden;
}
main .inner {
  width: 89.743%;
  padding-left: 0;
  padding-right: 0;
}
button {
  color: #000;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
@media screen and (max-width :768px){
  main{
    padding-top: 68px;
  }
}

/* header_list_anc */
.header_list_anc>li:nth-child(n+2) {
  margin-top: 23px;
}
.header_list_anc>li>* {
  position: relative;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.5;
}
.header_list_anc>li>*::before {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 2px;
  background-color: #063e8d;
  top: 45%;
  left: 0;
  transition: all ease 0.3s;
  opacity: 0;
}
.header_list_anc>li>*.is_active{
  color: #063e8d;
  padding-left: 18px;
  font-weight: bold;
}
.header_list_anc>li>*.is_active::before {
  opacity: 1;
}

/* list_anc_cate */
.list_anc_cate{
  padding: 0 20px;
  margin-top: 40px;
  max-width: 350px;
  margin-right: auto;
  margin-left: auto;
}
.list_anc_cate li + li{
  margin-top: 8px;
}
.list_anc_cate li a{
  border-radius: 16px;
  padding: 13px 16px;
  display:-webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-size: 1.3rem;
  background: url(/lp/admission_search/img/ico_anc.svg) no-repeat center;
  background-size: 8px 9px;
  background-position: right 16px center;
  -webkit-box-shadow: 0px 3px 0px 0px rgba(0,0,0,0.1);
  box-shadow: 0px 3px 0px 0px rgba(0,0,0,0.1);
  position: relative;
  top: 0;
  -webkit-transition: .1s ease-in-out;
  transition: .1s ease-in-out;
}
.list_anc_cate li.campus a{
  background-color: #dbecfb;
  border-color: #b4d9f5;
}
.list_anc_cate li.schedule a{
  background-color: #fdf3d3;
  border-color: #fde298;
}
.list_anc_cate li a .ico{
  width: 59px;
}
.list_anc_cate li a em{
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
}
.list_anc_cate li.campus a em{
  color: #136bae;
}
.list_anc_cate li.schedule a em{
  color: #876803;
}
@media (hover: hover) and (pointer: fine){
  .list_anc_cate li a:hover{
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.1);
    top: 3px;
  }
}


/* list_links */
.list_links {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.list_links>li {
  width: 50%;
}

/* header_link_menu */
.header_link_menu {
  display: -webkit-box;
  display: flex;
  gap: 15px;
  padding-bottom: 8px;
  padding-right: 5px;
}
.header_link_menu > li {
  width: auto;
  font-size: 10px;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  font-weight: bold;
}
.header_link_menu .ico {
  text-align: center;
  width: 21px;
  height: 17px;
  margin: 5px auto;
}
.header_link_menu .txt {
  margin-top: 2px;
  min-height: 2em;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
	justify-content: space-between;
  -webkit-box-align: center;
	align-items: center;
  text-align: center;
}
@media screen and (min-width :769px){
 header .header_link_menu{
  display: none;
 }
}
.mod_ttl_sec .ico {
  text-align: center;
  margin-bottom: 3px;
}
.mod_ttl_sec .ico img {
  width: 40px;
}
.mod_ttl_sec .ttl {
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.12em;
  text-align: center;
}
@media screen and (min-width :769px){
  .mod_ttl_sec .ttl {
    font-size: 30px;
    font-size: 3.0rem;
  }
}
@media screen and (max-width :360px){
  .mod_ttl_sec .ttl {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

@-webkit-keyframes PageIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
@keyframes PageIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}


/* ===============================================
#  animation
=============================================== */
.js_fadein{
  opacity:0;
  -webkit-animation: bounce .5s .5s forwards;
  animation: bounce .5s .5s forwards;
}
@-webkit-keyframes bounce{
  0% {
    opacity:0;
    -webkit-transform: scale(.5);
    transform: scale(.5);
  }
  50% {
    opacity:1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    opacity:1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes bounce{
  0% {
    opacity:0;
    -webkit-transform: scale(.5);
    transform: scale(.5);
  }
  50% {
    opacity:1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    opacity:1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.delay1{
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.delay2{
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.delay3{
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}
.js_fadeup{
  -webkit-animation: fadeup .5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation: fadeup .5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@-webkit-keyframes fadeup {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeup {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* ===============================================
#  contents
=============================================== */
.wrap_contents {
  -webkit-animation: PageIn 1.3s ease 0s 1 normal;
  animation: PageIn 1.3s ease 0s 1 normal;
}
.wrap_contents .contents.is_right,
.wrap_contents .contents.is_left {
  display: none;
}
.wrap_contents .ttl_contents{
  font-size: 22px;
  font-size: 2.2rem;
  text-align: center;
  line-height: 1.4;
}
.wrap_contents .ttl_contents .ico{
  width: 40px;
  height: 56px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}
.wrap_contents .contents.is_left .area_nav,
.wrap_contents .contents.is_right .area_nav{
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width :769px){
  .wrap_contents {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .wrap_contents .contents.is_center {
    width: 50%;
    position: relative;
    min-height: 100%;
    min-height: 100vh;
    overflow: hidden;
    border-right: 10px solid #000;
    border-left: 10px solid #000;
  }
  .wrap_contents .contents.is_left {
    width: 50%;
    position: relative;
    display: block;
    background-image: -moz-linear-gradient(90deg, #f6f6f680 1px, transparent 1px), -webkit-linear-gradient(#f6f6f680 1px, transparent 1px);
    background-image: -webkit-linear-gradient(90deg, #f6f6f680 1px, transparent 1px), -moz-linear-gradient(#f6f6f680 1px, transparent 1px);
    background-image: linear-gradient(90deg, #f6f6f680 1px, transparent 1px), linear-gradient(#f6f6f680 1px, transparent 1px);
    background-position: 10px 10px;
    background-size: 26px 26px;
    align-self: stretch;
  }
  .wrap_contents .contents.is_left .area_nav,
  .wrap_contents .contents.is_right .area_nav{
    width: 100%;
    max-width: 344px;
    position: sticky;
    top: 15%;
  }
}
@media screen and (min-width :1280px){
  .wrap_contents .contents {
    width: 33.3%;
    width: -webkit-calc((100% - 452px) / 2);
    width: calc((100% - 452px) / 2);
  }
  .wrap_contents .contents.is_left {
    width: 33.3%;
    width: -webkit-calc((100% - 452px) / 2);
    width: calc((100% - 452px) / 2);
  }
  .wrap_contents .contents.is_center {
    width: 452px;
  }
  .wrap_contents .contents.is_right {
    display: block;
    position: relative;
    top: 0;
    right: 0px;
    background-image: -moz-linear-gradient(90deg, #f6f6f680 1px, transparent 1px), -webkit-linear-gradient(#f6f6f680 1px, transparent 1px);
    background-image: -webkit-linear-gradient(90deg, #f6f6f680 1px, transparent 1px), -moz-linear-gradient(#f6f6f680 1px, transparent 1px);
    background-image: linear-gradient(90deg, #f6f6f680 1px, transparent 1px), linear-gradient(#f6f6f680 1px, transparent 1px);
    background-position: 10px 10px;
    background-size: 26px 26px;
    align-self: stretch;
  }
  .wrap_contents .contents.is_left .area_nav{
    margin-left: auto;
    margin-right: 10%;
  }
  .wrap_contents .contents.is_right .area_nav{
    margin-right: auto;
    margin-left: 10%;
  }
}
@media screen and (max-height :799px){
  .wrap_contents .contents.is_left .area_nav,
  .wrap_contents .contents.is_right .area_nav{
    position: relative;
    top: 50px;
  }
}

/* 左側メニュー
----------------------------------------------- */

@media screen and (min-width :769px){
  .wrap_contents .contents.is_left .list_anc_cate{
    margin-top: 16px;
    padding: 0;
  }
  .wrap_contents .contents.is_left .list_anc_cate li a{
    padding: 18px 24px;
    gap: 20px;
  }
  .wrap_contents .contents.is_left .box_list_anc{
    background-color: #faf8f1;
    border: 1px solid #000;
    padding: 24px 32px;
    background-image: url(/lp/admission_search/img/bg_menu.png);
    background-repeat: no-repeat;
    background-position: right 10px bottom -20px;
    background-size: 112px auto;
    margin-top: 16px;
  }
  .wrap_contents .contents.is_left .header_list_anc>li:nth-child(n+2){
    margin-top: 10px;
  }
}

/* 右側メニュー
----------------------------------------------- */
.contents.is_right .area_nav .inner_anc {
  background-color: #faf8f1;
  padding-bottom: 28px;
  border: 1px solid #000;
  margin-top: 20px;
}
.contents.is_right .area_nav .list_links{
  margin-top: 0;
}
.contents.is_right .area_nav .header_link_menu{
  -webkit-box-pack: center;
  justify-content: center;
  margin-top: 26px;
}
.contents.is_right .area_nav .header_link_menu li{
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.4;
}
.contents.is_right .area_nav .header_link_menu li:nth-child(1){
  padding-left: 16px;
}
.contents.is_right .area_nav .header_link_menu li:nth-child(2){
  padding-left: 14px;
  padding-right: 0;
}
.contents.is_right .area_nav .header_link_menu .ico{
  width: 41px;
  height: 36px;
}
.contents.is_right .area_nav .area_sns{
  margin-top: 20px;
}
.contents.is_right .area_nav .area_sns .list_sns{
  padding: 0 30px;
  gap: 10px;
  justify-content: space-between;
}


/* ===============================================
#  ヘッダー
=============================================== */
header .header_fixed {
  height: 68px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
	justify-content: space-between;
  -webkit-box-align: center;
	align-items: center;
  background-color: #fff;
  padding-left: 2.7%;
  padding-right: 58px;
  position: relative;
}
header .header_fixed .logo {
  width: 120px;
}
header .header_fixed .menu_button {
  position: absolute;
  right: 7px;
  top: 7px;
  width: 50px;
  height: 50px;
  background-color: #333333;
  border-radius: 50%;
  color: transparent;
}
header .header_fixed .menu_button i{
  width: 20px;
  height: 1px;
  background: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
header .header_fixed .menu_button i::before,
header .header_fixed .menu_button i::after{
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
}
header .header_fixed .menu_button i::before{
  top: -5px;
}
header .header_fixed .menu_button i::after{
  top: 5px;
}
@media screen and (min-width :769px){
  header .header_fixed .logo{
    width: 156px;
  }
}
@media screen and (max-width :768px){
  header .header_fixed{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
  }
}
header::before{
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  top:0;
  left: 0;
  background-color: rgba(0,0,0,.4);
  z-index: 100;
  transition: all ease 0.2s;
  opacity: 0;
  pointer-events: none;
  position: fixed;
}
header.is_open::before{
  opacity: 1;
}
header .header_menu {
  display: none;
  width: 322px;
  height: 100vh;
  height: 100svh;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
  padding-top: 76px;
  padding-bottom: 40px;
  -webkit-box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.1);
  transition: all ease 0.3s;
  z-index: 101;
  background-image: url(/lp/admission_search/img/bg_menu.png);
  background-repeat: no-repeat;
  background-size: 99px 104px;
  background-position: right 15px bottom;
}
header.is_open .header_menu {
  display: block;
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
}
header.is_open.is_fadein .header_menu {
  opacity: 1;
}
header .header_menu .menu_button{
  color: transparent;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 25px;
  top: 25px;
  white-space: nowrap;
  overflow: hidden;
}
header .header_menu .menu_button::before,
header .header_menu .menu_button::after{
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #000;
  -webkit-transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  position: absolute;
  top: 0;
}
header .header_menu .menu_button::before{
  -webkit-transform: translate(-50%,-50%) rotate(135deg);
  transform: translate(-50%,-50%) rotate(135deg);
  top: 50%;
  left: 50%;
}
header .header_menu .menu_button::after{
  -webkit-transform: translate(-50%,-50%) rotate(-135deg);
  transform: translate(-50%,-50%) rotate(-135deg);
  top: 50%;
  left: 50%;
}
header .header_menu .sitelogo_menu {
  display: none;
}
header .header_menu .inner_menu {
  margin: 0 auto;
  width: 260px;
  max-height: -webkit-calc(100vh - 68px);
  max-height: calc(100vh - 68px);
  overflow-y: auto;
}
header .header_menu .ttl_menu {
  text-align: center;
  margin-bottom: 24px;
}
header .header_menu .ttl_menu span {
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: bold;
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
}
header .header_menu .list_links {
  padding-top: 20px;
  margin-top: 25px;
  border-top: 1px dashed #737373;
}
header .header_menu .list_links>li>* {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
  padding: 11px 5px 10px;
  background: url(/common/img/ico_arrow_w.svg) no-repeat center right 10px #1b41af;
  color: #fff;
  text-align: center;
  background-size: 4px;
  display: inline-block;
  width: 100%;
}
header .header_menu .list_links>li:nth-child(n+2) {
  margin-top: 15px;
}
header .header_menu .list_links>li .ico {
  display: none;
}
header .header_menu .list_sns {
  padding-top: 33px;
  display: -webkit-box;
  display: flex;
  gap: 5px;
  justify-content: space-between;
}
header .header_menu .list_sns>li {
  width: 50%;
}
header .header_menu .list_sns>li>* {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
	align-items: center;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: bold;
  min-height: 36px;
}
header .header_menu .list_sns>li .ico {
  margin-right: 6px;
  width: 23%;
}
header .header_menu .list_sns>li .ico img {
  width: 34px;
}
@media screen and (min-width :769px){
  header .header_fixed{
    background-image: -webkit-linear-gradient(90deg, #f6f6f680 1px, transparent 1px), -webkit-linear-gradient(#f6f6f680 1px, transparent 1px);
    background-image: -moz-linear-gradient(90deg, #f6f6f680 1px, transparent 1px), -moz-linear-gradient(#f6f6f680 1px, transparent 1px);
    background-image: linear-gradient(90deg, #f6f6f680 1px, transparent 1px), linear-gradient(#f6f6f680 1px, transparent 1px);
    background-position: 10px 10px;
    background-size: 13px 13px;
    height: 80px;
  }
  header .header_fixed .link_menu{
  display: none;
  }
  header .header_fixed .menu_button{
  display: none;
  }
}
@media screen and (max-height :479px){
  header .header_menu{
    background-image: none;
  }
  header .header_menu .inner_menu{
    padding: 30px 0;
  }
}

/* ===============================================
#  プロモ
=============================================== */
.sec_promo{
  padding-top: 15px;
  padding-bottom: 128px;
  padding-bottom: clamp(128px,28.974vw,333px);
  position: relative;
  background-color: #ffffff;
  background-image: -webkit-linear-gradient(90deg, #f6f6f680 1px, transparent 1px), -webkit-linear-gradient(#f6f6f680 1px, transparent 1px);
  background-image: -moz-linear-gradient(90deg, #f6f6f680 1px, transparent 1px), -moz-linear-gradient(#f6f6f680 1px, transparent 1px);
  background-image: linear-gradient(90deg, #f6f6f680 1px, transparent 1px), linear-gradient(#f6f6f680 1px, transparent 1px);
  background-position: 10px 10px;
  background-size: 13px 13px;
}
.sec_promo::after{
  content:"";
  display: block;
  width: 100%;
  height: 56.4vw;
  max-height: 433px;
  background: url(/lp/admission_search/img/bg_promo.png)no-repeat;
  background-size: 100% auto;
  background-position: bottom center;
  position: absolute;
  bottom: -125px;
  bottom: -32.05vw;
  bottom: clamp(-246px,-32.05vw,-125px);
  left: 0;
  opacity: 0;
}
.js_animate.sec_promo::after{
  -webkit-animation: fadeup .5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation: fadeup .5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.sec_promo .ttl_page{
  max-width: 500px;
  margin: 0 auto;
}
@media screen and (min-width :769px){
  .sec_promo{
    padding-bottom: clamp(130px,16.9vw,200px);
  }
  .sec_promo::after{
    bottom: clamp(-170px,-13vw,-100px);
  }
  .sec_promo .list_anc_cate{
    display: none;
  }
  .js_animate.sec_promo::after{
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
  }
}
@media screen and (min-width :1280px){
  .sec_promo{
    padding-bottom: 144px;
  }
  .sec_promo::after{
    bottom: -134px;
  }
}
/* ===============================================
#  イントロダクション
=============================================== */
.sec_main .area_intro {
  position: relative;
  z-index: 1;
  padding-top: 64px;
  padding-bottom: 57px;
}
.sec_main .area_intro::before {
  content: "";
  display: block;
  width: 110%;
  height: 250px;
  background-color: #faf8f1;
  position: absolute;
  top: 0;
  left: 50%;
  clip-path: ellipse(50% 50% at 50% 50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}
.sec_main .area_intro::after {
  content: "";
  display: block;
  width: 100%;
  height: -webkit-calc(100% - 125px);
  height: calc(100% - 125px);
  background-color: #faf8f1;
  position: absolute;
  top: 125px;
  left: 0;
  z-index: -1;
}
.sec_main .area_intro .ttl_sec {
  text-align: center;
  margin-bottom: 25px;
}
.sec_main .area_intro .ttl_sec img{
  width: 75.2%; 
}
.sec_main .area_intro .txt_main {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.73;
  width: 88.7%;
  margin: 0 auto;
}
@media screen and (min-width :769px){
  .sec_main .area_intro .txt_main {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/* ===============================================
#  検索
=============================================== */
.sec_main .area_search {
  padding-bottom: 65px;
  background-color: #faf8f1;
  border-bottom: 1px solid #000;
}
.sec_main .area_search .list_type {
  display:-webkit-box;
  display:flex;
  padding-left: 1px;
}
.sec_main .area_search .list_type>.tab_type {
  width: 50%;
  position: relative;
  top: 20px;
  margin-left: -1px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.sec_main .area_search .list_type>.tab_type.is_on{
  top: 0;
}
.sec_main .area_search .tab_type>* {
  width: 100%;
  min-height: 104px;
  height: 100%;
  border-radius: 16px 16px 0 0;
  display:-webkit-box;
  display:flex;
  -webkit-box-align: center;
	align-items: center;
  padding: 15px 4px 25px;
  border: 1px solid #000;
  border-bottom: none;
}
.sec_main .area_search .tab_type>* .ico{
  width: 53px;
  display: block;
  margin: 0 auto;
}
.sec_main .area_search .tab_type>* .txt_tab {
  font-size: 10px;
  font-size: 1rem;
  line-height: 1.27;
  font-weight: bold;
  text-align: left;
  width: 100%;
}
.sec_main .area_search .tab_type>* .txt_tab span{
  margin-top: 8px;
  display: block;
  text-align: center;
}
.sec_main .area_search .tab_type>* .txt_tab em{
  font-size: 13px;
  font-size: 1.3rem;
  display: block;
  text-align: center;
}
/* color */
.sec_main .area_search .tab_type>*[data-tab="campus"] {
  background-color: #dbecfb;
}
.sec_main .area_search .tab_type>*[data-tab="campus"] .txt_tab em{
  color: #136bae;
}
.sec_main .area_search .tab_type>*[data-tab="schedule"] {
  background-color: #fdf3d3;
}
.sec_main .area_search .tab_type>*[data-tab="schedule"] .txt_tab em{
  color: #876803;
}
@media (hover: hover) and (pointer: fine){
  .sec_main .area_search .list_type>.tab_type:hover{
    top: 0;
  }
}

.sec_main .area_search .contents_main {
  position: relative;
  border: 1px solid #000;
  background-color: #fff;
}
.sec_main .area_search .contents_main .contents_inner{
  padding: 22px 18px 30px;
  display: none;
}
.sec_main .area_search .contents_main .contents_inner.is_on{
  display: block;
}
.sec_main .area_search .contents_main .txt + .ttl_search_cont{
  margin-top: 20px;
}
.sec_main .area_search .ttl_search_cont{
  font-size: 15px;
  font-size: 1.5rem;
  padding: 8px 16px 6px 16px;
  background-color: #eaeaea;
}
.sec_main .area_search .ttl_search_cont.green{
  background-color: #b7e9cb;
}
.sec_main .area_search .ttl_search_cont.blue{
  background-color: #b4d9f5;
}
.sec_main .area_search .ttl_search_cont.yellow{
  background-color: #fde298;
}
.sec_main .area_search .list_search_check{
  margin-top: 16px;
}
.sec_main .area_search .is_schedule .list_search_check{
  margin-top: 27px;
}
.sec_main .area_search .list_search_check li{
  display:-webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  column-gap: 4px;
  width: fit-content;
  line-height: 1;
  cursor: pointer;
  flex-wrap: wrap;
}
.sec_main .area_search .list_search_check li .txt{
  width: 100%;
  margin-top: 4px;
  line-height: 1.73;
}
.sec_main .area_search .list_search_check li + li{
  margin-top: 16px;
}
.sec_main .area_search .list_search_check li input{
  appearance: none;
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #bebebe;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 10px 0 1px;
}
.sec_main .area_search .list_search_check li input:checked{
  background-color: #faf8f1;
}
.sec_main .area_search .list_search_check li input:checked::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  background-color: #0f52a7;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.sec_main .area_search .list_search_check + .ttl_search_cont{
  margin-top: 24px;
}
.sec_main .area_search .btn_result{
  max-width: 240px;
  width: 100%;
  background: #393939;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
  padding: 15px 15px 12px 15px;
  border-radius: 50px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 30px;
  -webkit-box-shadow: 0px 3px 0px 0px rgba(0,0,0,0.1);
  box-shadow: 0px 3px 0px 0px rgba(0,0,0,0.1);
  position: relative;
  top: 0;
  -webkit-transition: .1s ease-in-out;
  transition: .1s ease-in-out;
}
.sec_main .area_search .btn_reset{
  font-size: 14px;
  font-size: 1.4rem;
  border-bottom: 1px solid #000;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  margin-top: 28px;
}
.sec_main .area_search .txt_result_none{
  display: none;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  color: #f00;
  margin-top: 8px;
}
.sec_main .area_search .txt_result_none.is_none {
  display: block;
}
.sec_main .area_search .list_search_link{
  margin-top: 15px;
}
.sec_main .area_search .list_search_link li + li{
  margin-top: 18px;
}
.sec_main .area_search .list_search_link li a{
  display: block;
  position: relative;
  padding-left: 23px;
  line-height: 1;
}
.sec_main .area_search .list_search_link li a::before{
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(/lp/admission_search/img/ico_link_arrow.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.sec_main .area_search .list_search_link li a img{
  width: 8px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  margin-bottom: 3px;
}
@media (hover: hover) and (pointer: fine){
  .sec_main .area_search .btn_result:hover{
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.1);
    top: 3px;
  }
}

/* area_result */
.sec_main .area_search .area_result{
  padding-top: 65px;
}
.sec_main .area_search .area_result .ttl_result{
  text-align: center;
  font-size: 30px;
  font-size: 3rem;
}
.sec_main .area_search .area_result .ttl_result .ico{
  width: 42px;
  height: 42px;
  display: block;
  margin: 0 auto;
}
.sec_main .area_search .area_result .ttl_result span{
  margin-top: 8px;
  display: block;
}
.sec_main .area_search .area_result .box_result {
  opacity: 0;
  transition: 0.3s opacity ease;
}
.sec_main .area_search .area_result.is_result .box_result {
  opacity: 1;
}
.sec_main .area_search .area_result .anc_nosearch {
  display: block;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 15px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sec_main .area_search .area_result.is_result .anc_nosearch {
  display: none;
}
.sec_main .area_search .area_result .acd_allbtn{
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
  justify-content: flex-end;
  margin-top: 36px;
}
.sec_main .area_search .area_result .acd_allbtn button{
  line-height: 1;
  font-size: 12px;
  font-size: 1.2rem;
}
.sec_main .area_search .area_result .acd_allbtn button span{
  display: inline-block;
  padding-left: 20px;
  background: url(/lp/admission_search/img/btn_acd_all.svg) no-repeat left center;
  line-height: 18px;
  background-size: 15px auto;
}
.sec_main .area_search .area_result .acd_allbtn .acd_all_close{
  position: relative;
  margin-left: 30px;
}
.sec_main .area_search .area_result .acd_allbtn .acd_all_close::before{
  content: '';
  width: 1px;
  height: 18px;
  background: #bbbbbb;
  position: absolute;
  left: -15px;
  top: 0;
}
.sec_main .area_search .area_result .acd_allbtn .acd_all_close span{
  background-image: url(/lp/admission_search/img/btn_acd_all_close.svg);
}
.sec_main .area_search .area_result .row + .row{
  margin-top: 32px;
}
.sec_main .area_search .area_result .acd{
  margin-top: 14px;
}
.sec_main .area_search .area_result .acd .acd_ttl{
  border: 1px solid #000;
  background-color: #fff;
  padding: 12px 30px 9px 15px;
  font-size:15px;
  font-size:1.5rem;
  display: block;
  width: 100%;
  text-align: left;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 8px 6px;
  background-position: right 15px center;
}
.sec_main .area_search .area_result .acd .acd_ttl[aria-expanded="true"]{
  background-image: url(/lp/admission_search/img/ico_acd_arrow.svg);
}
.sec_main .area_search .area_result .acd .acd_ttl[aria-expanded="false"]{
  background-image: url(/lp/admission_search/img/ico_acd_arrow_down.svg);
}

.sec_main .area_search .area_result .acd dd{
  display: none;
}
.sec_main .area_search .area_result .list_acd_link{
  padding-top: 16px;
  padding-bottom: 3px;
}
.sec_main .area_search .area_result .list_acd_link li>*{
  width: 100%;
  border: 1px solid #000;
  background-color: #fff;
  border-radius: 16px;
  padding: 19px 37px 15px 13px;
  font-size: 18px;
  font-size: 1.8rem;
  display:-webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-shadow: 0px 3px 0px 0px rgba(0,0,0,0.1);
  box-shadow: 0px 3px 0px 0px rgba(0,0,0,0.1);
  position: relative;
  top: 0;
  -webkit-transition: .1s ease-in-out;
  transition: .1s ease-in-out;
}
.sec_main .area_search .area_result .list_acd_link li a{
  background-image: url(/lp/admission_search/img/ico_btn_arrow.svg);
  background-repeat: no-repeat;
  background-size: 16px 7px;
  background-position: right 15px center;
}
.sec_main .area_search .area_result .list_acd_link li + li{
  padding-top: 12px;
}
.sec_main .area_search .area_result .list_acd_link li>* span{
  font-size: 13px;
  font-size: 1.3rem;
}
.sec_main .area_search .area_result .list_acd_link.blue li>*,
.sec_main .area_search .area_result .list_acd_link.color_0 li>*{
  background-color: #b4d9f5;
}
.sec_main .area_search .area_result .list_acd_link.green li>*,
.sec_main .area_search .area_result .list_acd_link.color_1 li>*{
  background-color: #b7e9cb;
}
.sec_main .area_search .area_result .list_acd_link.pink li>*,
.sec_main .area_search .area_result .list_acd_link.color_2 li>*{
  background-color: #f4cddc;
}
.sec_main .area_search .area_result .list_acd_link.yellow li>*,
.sec_main .area_search .area_result .list_acd_link.color_3 li>*{
  background-color: #fde298;
}
@media (hover: hover) and (pointer: fine){
  .sec_main .area_search .area_result .list_acd_link li a:hover{
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.1);
    top: 3px;
  }
}

/* ===============================================
# セクション共通
=============================================== */
.section{
  padding-top: 65px;
  padding-bottom: 63px;
  border-bottom: 1px solid #000;
}
.section.bg01{
  background-color: #fff;
}
.section.bg02{
  background-color: #f3eddc;
}
.section.bg03{
  background-color: #faf8f1;
}
.section .ttl_section{
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
}
.section .ttl_section .ico{
  width: 48px;
  display: block;
  margin: 0 auto;
}
.section .ttl_section span{
  display: block;
  margin-top: 10px;
}
.section .txt_sec{
  margin-top: 18px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.68;
}
.section .ttl_section + .box_btn{
  margin-top: 30px;
}
.section .txt_sec + .box_btn{
  margin-top: 35px;
}
.section .box_btn + .box_btn{
  margin-top: 13px;
}
.area_addoff + .box_btn{
  margin-top: 32px;
}
.section .box_btn .btn_sec{
  width: 100%;
  border: 1px solid #000;
  background-color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
  padding: 14px 15px 10px 15px;
  border-radius: 50px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  background-image: url(/lp/admission_search/img/ico_btn_arrow.svg);
  background-repeat: no-repeat;
  background-size: 16px 7px;
  background-position: right 19px center;
  -webkit-box-shadow: 0px 3px 0px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 3px 0px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  top: 0;
  -webkit-transition: .1s ease-in-out;
  transition: .1s ease-in-out;
}
.section .box_btn .btn_sec.blue{
  background-color: #b4d9f5;
}
.section .box_btn .btn_sec.green{
  background-color: #b7e9cb;
}
.section .box_btn .btn_sec.pink{
  background-color: #f4cddc;
}
.section .box_btn .btn_sec.yellow{
  background-color: #fde298;
}
.section .box_btn .btn_sec .blank{
  width: 8px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  margin-bottom: 3px;
}
@media (hover: hover) and (pointer: fine){
  .section .box_btn .btn_sec:hover{
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
    top: 3px;
  }
}

/* ===============================================
# 文教受験応援割
=============================================== */
.sec_addoff {
  padding-top: 58px;
  padding-bottom: 64px;
}
.sec_addoff .ttl {
  text-align: center;
  margin-bottom: 17px;
}
.sec_addoff .ttl img {
  width: 195px;
}
.sec_addoff .lead_sec {
  font-size: 13px;
  font-size: 1.3rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
}
.sec_addoff .subttl {
  text-align:center;
  position:relative;
  font-weight: bold;
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 10px;
  margin-bottom: 5px;
}
.sec_addoff .subttl span {
  display:inline-block;
  padding:2px 40px;
  background:#dc0050;
  color: #fff;
  position: relative;
  z-index: 1;
  border-radius: 20px;
}
.sec_addoff .subttl::after {
  content:"";
  width:100%;
  height:1px;
  display:block;
  background-color:#dc0050;
  position:absolute;
  top:50%;
  left:0;
}
.sec_addoff .type02 .subttl {
  margin-top: 5px;
}
.sec_addoff .type02 .subttl span {
  background:#009d85;
}
.sec_addoff .type02 .subttl::after {
  background-color:#009d85;
}
.sec_addoff .conditions {
  background: #fbf9f1;
  padding: 10px 15px;
  margin: 5px 0 15px 0;
}
.sec_addoff .cmn_discList {
  line-height: 1.4;
  margin-bottom: 0;
}
.sec_addoff .target {
  overflow: hidden;
}
.sec_addoff .target li {
  width: 50%;
  position: relative;
  float: left;
  padding-left: 15px;
  text-indent: 0;
}
.sec_addoff .target li:before {
  position: absolute;
  padding: 0;
  top: 2px;
  left: 0;
  text-indent: 0;
}
.sec_addoff .cmn_indent1 {
  line-height: 1.8;
  margin-bottom: 0;
}
.sec_addoff .area_addoff{
  padding-top: 34px;
}
.sec_addoff .area_addoff.type02 {
  margin-top: 55px;
  padding-top: 0;
}
.sec_addoff .area_addoff.type02 .ttl img {
  width: 239px;
}
.sec_addoff .link_detail {
  margin-top: 30px;
}
.sec_addoff .link_detail .btn {
  padding: 22px 5px;
  background-color: #063e8d;
}
.sec_addoff .scroll_area{
  margin-top: 15px;
  margin-bottom: 15px;
  margin-left: -5.1285%;
  margin-right: -5.1285%;
  text-align: center;
  width: calc(100% + 11%);
  padding-bottom: 10px;
  overflow-x: auto;
  padding-left: 5.1285%;
  padding-right: 5.1285%;
}
.sec_addoff .scroll_area >*{
  width: 457px;
  margin: auto;
  display: block;
}
.sec_addoff .scroll_area img{
  width: 457px;
  height: auto;
}
.sec_addoff .list_indent{
  margin-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width :769px){
  .sec_addoff .lead_sec {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .sec_addoff .subttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
/* ===============================================
# 文教大学のぞき見！
=============================================== */
.sec_links {
  padding-top: 44px;
  padding-bottom: 0;
}
@media screen and (min-width :1280px){
  .sec_links{
    display: none;
  }
}

/*android対応*/
body.android .sec_links .list_links {
  display: block;
}
body.android .sec_links .list_links>li {
  width: 100%;
}

/* area_sns
----------------------------------------------- */
.area_sns .list_sns {
  padding: 30px 20px 65px;
  display: -webkit-box;
  display: flex;
}
.area_sns .list_sns>li {
  width: 50%;
}
.area_sns .list_sns>li>* {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
	align-items: center;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: bold;
  min-height: 36px;
  line-height: 1.538;
}
.area_sns .list_sns>li .ico {
  margin-right: 8px;
  display: block;
  width: 32px;
}

/* ===============================================
# footer
=============================================== */
footer {
  padding-top: 7px;
  padding-bottom: 9px;
  background-color: #0f52a7;
}
footer .inner {
  width: 94.6%;
  margin-right: auto;
  margin-left: auto;
}
footer .copy {
  font-size: 10px;
  font-size: 1rem;
  color: #fff;
  text-align: center;
}
@media screen and (min-width :769px){
  footer .copy {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/*ページトップ*/
footer .btn_bottom{
  width: 29.6%;
  width: 29.6vw;
  right: 10px;
  left: auto;
  position: fixed;
  bottom: 0;
  z-index: 50;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
footer .btn_bottom.on{
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}  
footer .btn_bottom a{
  width:50%;
  float: right;
  padding: 5px 0;
  padding: 1.3vw 0;
  height: 38px;
  height: 12vw;
  display: table;
  background-repeat: no-repeat;
  background-position: top 28% center;
  background-color: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: -0.05em;
  text-align: center;
}
footer .btn_bottom a span{
  display: table-cell;
  vertical-align: middle;
  padding-left: 11.8%;
}
footer .btn_bottom .back{
  background-image: url(/common/img/btn_bottom_back.svg);
  background-size: 10% auto;
  background-position: 17% center;
  font-size: 9px;
  font-size: 2.4vw;
  margin-bottom: 0;
}
footer .btn_bottom .back span{
  border-right: solid 1px #fff;
}
footer .btn_bottom .top{
  font-size: 0;
  background-image: url(/common/img/btn_bottom_top.svg);
  background-size: 36% auto;
  background-position: center center;
}
@media screen and (min-width :769px){
  footer .btn_bottom{
    width: 5%;
    max-width: 80px;
    position: fixed;
  }
  footer .btn_bottom.on{
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  footer .btn_bottom a{
    width: 100%;
    padding-top: 52.5%;
    padding-bottom: 15%;
    display: block;
    height: auto;
  }
  footer .btn_bottom a span{
    display: block;
    vertical-align: baseline;
    padding-left: 0;
  }
  footer .btn_bottom .top{
    margin-bottom: 1px;
    background-image: url(/common/img/btn_bottom_top.svg);
    background-size: 32.5% auto;
    background-repeat: no-repeat;
    background-position: top 28% center;
    font-size: 0.75vw;
  }
  footer .btn_bottom .back{
    background-image: url(/common/img/btn_bottom_back.svg);
    background-size: 10% auto;
    background-repeat: no-repeat;
    background-position: top 28% center;
    font-size: 0.75vw;
    margin-bottom: 0;
  }
  footer .btn_bottom .back span{
    border-right: none;
  }
}
@media screen and (min-width :1401px){
  footer .btn_bottom a{
    font-size: 12px;
    font-size: 1.2rem;
  }
  footer .btn_bottom .top{
    font-size: 12px;
    font-size: 1.2rem;
  }
  footer .btn_bottom .back{
    font-size: 12px;
    font-size: 1.2rem;
  }
}