@charset "utf-8";

/*---------

base set

----------------------------**/
:root{
  --bg-site-main-blue: rgb(217, 243, 255);
  --bg-site-main-cream: rgb(253, 250, 216);
}

article .open-school {
    font-size: 1.6rem;
}

/*---------

section

----------------------------**/

/*---------

event

----------------------------**/

/*--- calender
----------------------------**/
.calender_head .end,
.calender-foot .end{
    border:none;
    border-radius: .5rem;
    position: relative;
}

.calender_head .end::before,
.calender_head .end::after,
.calender-foot .end::before,
.calender-foot .end::after{
    content: "";
    width: 0px;
    height: 0px;
    display: block;
    position: absolute;
    top: 50%;
    border-top: 1px solid #fff;   
    border-right: 1px solid #fff;
    transform: translateY(-4px) rotate(45deg);
}

.week,
.calender_body {
  display: grid;
  /*  grid-template-columns: repeat(7, 14.28%); */
  grid-template-columns: 18% repeat(5, 12.8%) 18%;
  justify-content: space-between;
}

.calender_head,
.calender-foot {
  display: grid;
  padding: 20px;
  justify-content: space-between;
}

.calender_head,
.calender-foot{
    grid-template-columns: 60px 1fr 60px;
    grid-auto-rows: 1fr;
    align-items: flex-end;
}

@media screen and (min-width: 768px){
  .calender_head, .calender-foot{
    grid-template-columns: 100px  1fr 100px;
    padding: 20px;
  }
}

/* .calender-foot{ grid-template-columns: 20% 20%;} */
.calender_head .month { line-height: 1.0;}
.calender_head .month .number:nth-of-type(2),
.calender-foot .month .number:nth-of-type(2){
  /* font-size: 3.5rem;*/
  font-size: 2.4rem;}

@media screen and (min-width: 768px) {
  .calender_head .month .number:nth-of-type(2),
  .calender-foot .month .number:nth-of-type(2){
    font-size: 3.6rem;
  }
}

.calender_head .pre,
.calender_head .next,
.calender-foot .pre,
.calender-foot .next{
    border: none;
    border-radius: 25px;
    position: relative;
    font-size: 12px;
}

@media screen and (min-width: 768px) {
  .calender_head .pre,
  .calender_head .next,
  .calender-foot .pre,
  .calender-foot .next{
    font-size: 18px;
  }
}

.calender_head .pre,
.calender-foot .pre {
  padding-left: 0.35em;
  cursor: pointer;
}

.calender_head .next,
.calender-foot .next {
  padding-right: 0.35em;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .calender_head .pre,
  .calender-foot .pre {
    padding-left: 0.75em;
  }

  .calender_head .next,
  .calender-foot .next {
    padding-right: 0.75em;
  }
}

.calender_head .pre::before,
.calender_head .next::after,
.calender-foot .pre::before,
.calender-foot .next::after{
    content: "";
    display: inline-block;
    width: 0.4rem;
    height: 0.9rem;
    background-color: #FFF;
    position: absolute;
    top: 50%;
    right: 0.8rem;
    z-index: 10;
    transition: all .3s;
    transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .calender_head .pre::before,
  .calender_head .next::after,
  .calender-foot .pre::before,
  .calender-foot .next::after{
    width: 0.8rem;
    height: 1.3rem;
  }
}

.calender_head .pre:not(.end),
.calender-foot .pre:not(.end),
.calender_head .next:not(.end),
.calender-foot .next:not(.end){
	background-color: var(--site-main-blue-color);
	color: #fff;
}

.calender_head .pre::before,
.calender-foot .pre::before {
  left: 0.75em;
  clip-path: polygon(78% 0, 0 50%, 78% 100%, 100% 100%, 42% 50%, 100% 0);
}

.calender_head .next::after,
.calender-foot .next::after {
  right: 0.75em;
  clip-path: polygon(22% 0, 100% 50%, 22% 100%, 0 100%, 58% 50%, 0 0);
}

.week {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.date-item.today {
  background-color: var(--bg-site-main-cream);
}
.date-item.active {
  background-color: var(--bg-site-main-blue);
}

.week .day:not(:last-child),
.calender_body .date-item:not(:nth-of-type(7n)) {
  border-right: 1px solid #ccc;
}

.calender_body .date-item {
  border-bottom: 1px solid #ccc;
  padding: 2%;
  cursor: pointer;
}

.disabled {
  cursor: auto !important;
}

.calender_body .date/* ,
.event-popup .date */ {
  font-size: 20px;
}
.calender_body .date-item:nth-of-type(7n) .date,
.event-popup .date .sat {
  color: #27a3cc;
}
.calender_body .date-item:nth-of-type(7n-6) .date,
.event-popup .date .dayoff {
  color: #ff5580;
}

.date-item span[class^="icon-"] {
  display: block;
  border-radius: 3px;
  margin-bottom: 0.5em;
  color: #fff;
  position: relative;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .date-item span[class^="icon-"]{
    font-size: 16px;
  }
}

.calender_body .date-item .disabled {
  display: block;
  color: #ccc;
  white-space: nowrap;
}

/* .calender-icon-list {
  padding: 2%;
} */
.calender-icon-list p {
  font-size: 11px;
  text-align: left;
}

.calender-icon-list dl {
  font-size: 11px;
  display: flex;
  width: fit-content;
  line-height: 1.2em;
}

.calender-icon-list dt {
  color: #fff;
  border-radius: 5px;
  width: 15px;
  height: 15px;
}
@media (max-width: 768px) {
  .calender-icon-list dt {
    width: 5px;
    margin-top: 4px;
  }
}

.calender-icon-list dd {
  text-align: left;
  position: relative;
  padding: 0 0 0 0.7em;
  width: 100%;
}
@media (max-width: 768px) {
  .calender-icon-list dd {
    font-size: 13px;
    letter-spacing: 0;
    line-height: 1.5;
  }
}

#legend {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  background: #f5f5f5;
  padding: 12px;
  gap: 6px 30px;
  margin-top: 20px;
  border-radius: 10px;
}

@media screen and (min-width: 768px){
  #legend{
    padding: 25px;
    border-radius: 20px;
    margin-top: 40px;
  }
}

#legend_2 {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  background: #f5f5f5;
  padding: 0.5em;
}

.date-item .icon-sp-oc,
.icon-sp-oc dt {
  background-color: rgba(255, 25, 153, 1);
}
.date-item .icon-oc,
.icon-oc dt {
  background-color: rgba(32, 55, 138, 1);
}
.date-item .icon-orientation,
.icon-orientation dt {
  background-color: rgba(36, 180, 176, 1);
}
.date-item .icon-info-session,
.icon-info-session dt {
  background-color: rgba(210, 163, 122, 1);
}
.date-item .icon-guardians,
.icon-guardians dt {
  background-color: rgba(154, 205, 49, 1);
}
.date-item .icon-sp-event,
.icon-sp-event dt {
  background-color: rgba(96, 32, 132);
}
.date-item .icon-campus-tour,
.icon-campus-tour dt {
  background-color: rgba(253, 110, 109, 1);
}
.date-item .icon-online-oc,
.icon-online-oc dt {
  background-color: rgba(39, 163, 204, 1);
}
.date-item .icon-online-info-session,
.icon-online-info-session dt {
  background-color: rgba(255, 138, 0, 1);
}
.date-item .icon-training01,
.icon-training01 dt {
  background-color: rgba(255, 130, 1184, 1);
}
.date-item .icon-training02,
.icon-training02 dt {
  background-color: rgba(98, 98, 98, 1);
}

@media not all and (min-width: 920px) {
  .date-item span[class^="icon-"],
  .date-item .disabled {
    font-size: 8.5px;
    white-space: nowrap;
  }
}
@media not all and (min-width: 768px) {
  /*
     .swiper-slide:nth-of-type(1){
        text-align: center;
        padding-left: 1%;
        padding-right: 1%;
    }
*/

  .swiper-slide > p {
    font-size: 3.2vw;
  }

  .date-item span[class^="icon-"],
  .date-item .disabled {
    font-size: 2.1vw;
    white-space: nowrap;
  }
}
@media not all and (min-width: 440px) {
  .date-item span[class^="icon-"],
  .date-item .disabled {
    font-size: 7.5px;
    white-space: nowrap;
  }
}

/*--- event-popup_wrap
----------------------------**/

@media (min-width: 768px) {
  .calender_body .date-item {
    padding: 5px;
  }

  .event-popup {
    padding: 3%;
    overflow: auto;
  }

  .event-popup_wrap {
    width: 75%;
    background-color: #fff;
    /* border: 1px solid #000; */
    position: fixed;
    left: 50%;
    bottom: 13%;
    transform: translate(-50%, 110vh);
    transition: all 0.4s;
  }

  .event-popup_wrap.active {
    transform: translate(-50%, 0);
    z-index: 1500;
  }

  .event-popup {
    height: 100%;
    padding: 3%;
    overflow: auto;
  }

  /* .event-popup_body {
    border: 1px solid #ccc;
    display: grid;
    grid-template-columns: 10% 1fr;
  } */

  .event-popup_list ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
/*    grid-gap: 2rem 10rem;*/
    grid-gap: 2rem 7rem;
  }

  .event-popup .date,
  .event-popup_list {
    /* padding: 2rem; */
    padding: 1.95rem;
    }

  /* .event-popup_list {
    border-left: 1px solid #ccc;
  } */

.event-popup_list ul li {
    /* padding-left: 4%; */
    margin-bottom: 2%;
    /* border-left-style: solid; */
    /* border-left-width: 2px; */
    display: grid;
    align-items: center;
    grid-template-columns: 100% 1fr;
    grid-gap: 3rem;
    min-height: 2.8em;
}

.event-popup_list .application-button {
    /*-padding: 0.35em;-**/
    text-align: center;
    /* border: 1px solid #CCC; */
    /* border-radius: 0.5rem; */
    /* min-width: 50px; */
}

  /* .event-popup .date span {
    display: block;
  } */

  .event-popup .date {
    /* text-align: center; */
    line-height: 1;
  }
}

@media screen and (max-width: 1024px) {
  .event-popup_list ul{
    grid-gap: 2rem 4rem;
  }
}

.popup-trigger-close {
  content: "";
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 2.4rem;
  border: none;
  background-color: #34aaff;
  border-radius: 50%;
  position: absolute;
  top: -24px;
  right: -5%;
  z-index: 70;
  appearance: none;
  cursor: pointer;
}

.sp-oc {
  border-left-color: rgba(255, 25, 153, 1);
}
.oc {
  border-left-color: rgba(32, 55, 138, 1);
}
.orientation {
  border-left-color: rgba(36, 180, 176, 1);
}
.info-session {
  border-left-color: rgba(210, 163, 122, 1);
}
.guardians {
  border-left-color: rgba(154, 205, 49, 1);
}
.sp-event {
  border-left-color: rgba(96, 32, 132);
}
.campus-tour {
  border-left-color: rgba(253, 110, 109, 1);
}
.online-oc {
  border-left-color: rgba(39, 163, 204, 1);
}
.online-info-session {
  border-left-color: rgba(255, 138, 0, 1);
}
.training01 {
  border-left-color: rgba(255, 130, 1184, 1);
}
.training02 {
  border-left-color: rgba(98, 98, 98, 1);
}

.open-school button[class*="trigger"] .menu-line {
  display: block;
  width: 2rem;
  height: 0.2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 0.2rem;
  transition: transform 0.4s;
}

.open-school .popup-trigger-close .menu-line:nth-of-type(1) {
  top: 16px;
  transform: translate(-50%, 8px) rotate(-45deg);
}
.open-school .popup-trigger-close .menu-line:nth-of-type(2) {
  top: 32px;
  transform: translate(-50%, -8px) rotate(45deg);
}

@media not all and (min-width: 768px) {
  .event-popup_wrap.active {
    height: auto;
  }
  .event-popup_list ul li {
    font-size: 12px;
  }
  .event-popup_list ul li div {
    /*max-width: 70%;*/
  }

  .event-popup_body {
    padding: 20px;
  }
  /* .event-popup {
    padding: 1%;
  } */
  /* .event-popup_list {
    padding: 10% 0 2% 4%;
  } */

  .event-popup_list .application-button {
    font-size: 1.1rem;
    /* margin-bottom: 2%; */
  }
  .event-popup_wrap.active {
    height: auto;
  }

  .event-popup_wrap.active {
    transform: translate(-50%, 0);
    z-index: 1500;
  }

  .event-popup_wrap {
    width: 90%;
    background-color: #fff;
    /* border: 1px solid #000; */
    position: fixed;
    left: 50%;
    bottom: 13%;
    transform: translate(-50%, 110vh);
    transition: all 0.4s;
  }

  /* .event-popup_body {
    padding: 0 2%;
    border: 1px solid #ccc;
    display: grid;
    grid-template-columns: 10% 1fr;
    grid-column-gap: 4%;
  } */

  .event-popup .date {
    /* text-align: center; */
    line-height: 1;
  }

  /* .event-popup .date,
  .event-popup_list {
    padding: 2rem 0;
  } */

  .calender_body .date/* ,
  .event-popup .date */ {
    font-size: 20px;
  }

  /* .event-popup_list {
    border-left: 1px solid #ccc;
    padding: 10% 0 2% 4%;
  } */

  .event-popup_list ul li {
    font-size: 12px;
  }

  .event-popup_list ul li {
    line-height: 1.4;
    /* padding-left: 4%; */
    margin-bottom: 2%;
    /* border-left-style: solid; */
    /* border-left-width: 2px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 2.8em;
 
    margin: 1em 0;
}

.event-popup_list .application-button {
    font-size: 1.1rem;
    /* margin-bottom: 2%; */
}

  .event-popup_list .application-button {
    flex-basis: 6em;
    /* padding: 0.5em; */
    text-align: center;
    /* border: 1px solid #CCC; */
    /* border-radius: 0.5rem; */
}

/* .event-popup_list .application-button a {
    display: block;
    padding: 0.8em;
} */

  /* .event-popup .date {
    padding-top: 2rem;
  } */
  /* .event-popup .date span {
    display: block;
} */
/* 20241001 OC注釈対応 */
.popup-memo {
    font-size: 1.15rem;
    display: block;
    text-indent: -1em;
    margin-left: 1em;
    margin-top: 1em;
}
}
.popup-memo {
    display: block;
    margin-top: 1em;
}
/* 20241001 OC注釈対応 */
/* ====================
20251203 OC関連ページ改修
=========================*/
/* .event-popup {
	background-color: #f5f5f5;
} */
/* .event-popup_list ul li {
    background-color: #fff;
} */
.sp-event-inner{
	/* padding-left: 1%; */
	flex: 1
}
.event-popup_list ul li a {
	display: block;
    height: 100%;
    /* box-shadow: 2px 2px 4px -2px gray; */
}

.event-popup_list ul li a:hover {
    opacity: .75;
}

.event-popup_list ul li a > div {
	border-style: solid;
  border-width: 1px;
	border-left-width: 5px;
	padding: 10px 0 10px 10px;
  height: 100%;
  border-radius: 0 10px 10px 0;
}
.event-popup_list .application-button {
    position: absolute;
    /* padding: 0 30px 0 10px; */
    /* line-height: 1.5; */
    /* color: #fff; */
    /* font-size: 14px; */
    /* font-weight: bold; */
    /* clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%); */
    width: 24px;
    /* margin: 0 0 0 auto; */
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    border-radius: 3px;
}
.event-popup_list .application-button::after {
  content: '';
  width: 0.6rem;
  height: 1.1rem;
  bottom: 0;
  background-color: #fff;
  clip-path: polygon(22% 0, 100% 50%, 22% 100%, 0 100%, 58% 50%, 0 0);
  position: absolute;
  top: 0;
  right: 9px;
  left: auto;
  margin: auto;
}

.month{
    line-height: 1.25;
    font-weight: 500;
}

.month .number{
    font-size: 24px;
}

.month .number:first-of-type{
  font-size: 18px;
  letter-spacing: unset;
  padding-right: unset;
}

@media screen and (min-width: 768px) {
  .month .number:first-of-type{
    font-size: 24px;
  }
}

/* .month::after{
    content: '';
    display: block;
    width: 8em;
    height: 2px;
    background-color: #000;
    margin: 5px;
    margin: 0 auto;
} */
/* ====================
20251203 OC関連ページ改修ここまで
=========================*/



/*--- event-list
----------------------------**/

.event-list ul li a {
  height: 100%;
  background-color: var(--bg-site-main-cream);
  display: grid;
  grid-template-columns: 25% 75%;
  grid-auto-rows: auto;
  position: relative;
}

.event-list ul li {
  position: relative;
}
.event-list ul li a:hover {
  opacity: 1;
}

.event-list ul li::before {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(254 223 7), rgb(245 131 215) 34%, rgb(131 181 247) 72%, rgb(75 194 224) 97%);
  position: absolute;
  top: 4px;
  left: 4px;
}

.event-list ul li dl {
  text-align: left;
  padding: 4%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-list ul li dt,
.event-list ul li dd {
  width: 100%;
}

.event-list ul li dt {
  line-height: 1.2;
  font-weight: bold;
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.4em;
}

.event-list ul li dt::before,
.event-list ul li dt::after {
  content: "";
  position: absolute;
  display: block;
}

.event-list ul li dt::before {
  width: 1em;
  height: 1em;
  background-color: #fff;
  border: 1px solid #000;
  top: 1px;
  left: 0;
}

.event-list ul li dt::after {
  width: 6px;
  height: 6px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
  top: 6px;
  left: 0.25em;
}

.event-list ul li dd {
  line-height: 1.6;
}
.event-list ul li dd .theme-sub-color {
  text-decoration: underline;
}

.category-title {
  width: 100%;
  font-size: 23px;
  font-weight: bold;
  padding: 1%;
  margin: 5rem auto 2.5rem;
  text-align: center;
  position: relative;
  border: 1px solid #000;
  outline: solid 1px #000;
  outline-offset: 1px;
}

@media not all and (min-width: 768px) {
  .event-list {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .event-list ul li {
    margin-bottom: 1.6rem;
  }
  .event-list ul li dd {
    font-size: 12px;
  }
}

@media (min-width: 768px) {
  .event-list ul {
    display: grid;
    grid-template-columns: repeat(2, 48.5%);
    grid-auto-rows: auto;
    grid-gap: 2.4rem 2.8rem;
  }

  .event-list ul li dt::after {
    top: 0.8rem;
  }
  .event-list ul li dt {
    font-size: 20px;
  }
    .event-popup_list ul li a > div {
        display: flex;
        flex-direction: column;
    }

    .event-popup_list .application-button {
        margin-top: auto;
    }
}

/* .normalday {
    padding-bottom: 2px;
}

@media (max-width: 768px) {
    .normalday {
        padding-bottom: 0.5px;
    }
} */

.calender_body .date-item .holiday {
    color: #ff5580 !important;
}
.event-popup .date .normalday {
    color: #000;
}

.event-popup .date .satday {
    color: #27a3cc;
}

.event-popup .date .sunday {
    color: #ff5580;
}

.event-popup .date .holiday {
    color: #ff5580;
}

.wide_icon {
    position: relative;
}

@media (min-width:768px) {
    .calender_body .date-item:nth-of-type(7n) {
        padding-left: 2%;
        padding-right: 2%;
        
    }
    .calender_body .date-item:nth-of-type(7n+1) {
        padding-left: 2%;
        padding-right: 2%;
    }
}
@media (max-width:768px) {

    .calender_body .date-item:nth-of-type(7n) {
        padding-left: 1%;
        padding-right: 1%;
        
    }
    .calender_body .date-item:nth-of-type(7n+1) {
        padding-left: 1%;
        padding-right: 1%;
    }
}

.pop_event_name{
    font-weight: 500;
    line-height: 1.2;
    max-width: 85%;/* 20260727 追記 */  
}
.pop_event_time{
    margin-top: 0.3em;
}

.event-popup_wrap{
    bottom: unset;
    top: 50%;
    border-radius: 10px;
}
.event-popup_wrap.active{
    transform: translate(-50%, -50%);
}
.event-popup{
        overflow-y: auto;
        max-height: 70vh;
    }
@media (min-width:768px){
    .event-popup_wrap.active{
        bottom: unset;
        transform: translate(-50%, -45%);
    }
    .event-popup{
        max-height: 85vh;
    }
}

/* カレンダーアイコン グレイ表示 */
.before span,
.today span {
  font-family: initial;
}

.before .date,
.today .date {
  /* font-size: initial;*/
}

.grayicon span {
  background-color: #e3e3e3 !important;
  font-family: initial;
  font-size: 12px !important;
}

@media (max-width: 767px) {
  .grayicon span {
    background-color: #e3e3e3 !important;
    font-family: initial;
    font-size: 2vw !important;
    transform: scale(0.9);
  }
}

.grayicon span .etc_event {
  color: black;
  background: white !important;
}
.today span .etc_event {
  color: black;
  background-color: var(--bg-site-main-cream) !important;
}

.etc_event {
  color: rgb(78, 78, 78);
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .etc_event{
    font-size: 12px;
  }
}

.c-calendar{
  text-align: center;
  line-height: 2;
}

.calender_head .pre:hover,
.calender_head .next:hover,
.calender-foot .pre:hover,
.calender-foot .next:hover{
	opacity:0.6;
}

/* 20260722  各キャンパスページ*/
.c-calendar .tab-body p{
	font-weight:500;
	margin-bottom:10px;
	line-height: 1.5;
}

/* ------------------------

openschool css

--------------------------------*/
.os-point-g{
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

@media not all and (min-width: 1024px) {
    .information-content .open-school {
        padding-bottom: 90vw;
        background-image: url("../../images/admission/information/bg_sp.png");
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: center bottom;
        margin-bottom: 0;
    }
}

@media (min-width: 1024px){
  .information-content .open-school {
        padding-bottom: 37rem;
        background-image: url("../../images/admission/information/bg_pc.png");
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: center bottom;
        margin-bottom: 0;
    }
}

.open-school .search-area{
  max-width: 600px;
   margin: 0 auto;
  background: #fdfad8;
  padding: 40px 10px;
  border-radius: 10px;
}

.open-school .search-area .heading-area.lang-en{
  transform: unset;
}

.open-school .search-area .heading-area.lang-jp h2{
  color: #000;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 20px;
}

.open-school .search-area .heading-area.lang-jp h2 span{
  padding-right: unset;
  letter-spacing: 0.01em;
  width: fit-content;
  margin: 0 auto;
  min-width: unset;
}

.open-school .search-area .heading-area.lang-jp h2 span:before{
  content: '';
  display: inline-block;
  width: 2.2rem;
  height: 2.2rem;
  background-image: url(../../images/openschool/icon_title.png);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: -5px;
  left: -25px;
}

.open-school .search-area .heading-area.lang-jp h2 span:after{
  content: none;
}

.open-school .search-area .select-btn-area,
.open-school .search-area .search_button{
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}

.open-school .search-area .select-btn-area:after{
  content: '';
  position: absolute;
  width: 1.2rem;
  height: .6rem;
  background-color: var(--site-main-blue-color);
  clip-path: polygon(50% 58%, 100% 0, 100% 22%, 50% 100%, 0 22%, 0 0);
  position: absolute;
  top: 0;
  right: 14.5px;
  left: auto;
  bottom: 0px;
  margin: auto;
  transform: unset;
  border: unset;
}

.open-school .search-area #campusSelect{
  display: block;
  border: 1px solid var(--site-main-blue-color);
  border-radius: 5px;
  cursor: pointer;
  appearance: none;
  outline: none;
  padding: 12px 40px 12px 12px;
  width: 100%;
  background: #fff;
  color: #000;
  font-size: 16px;
}

.open-school .search-area .search_button{
  -webkit-transition: 0.4s;
  transition: 0.4s;
  max-width: 245px;
  height: 50px;
  margin-top: 20px;
}

.open-school .search-area .search_button:after{
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../../images/openschool/search-icon.svg) center / contain no-repeat;
  width: 16px;
  height: 16px;
}

.open-school .search-area .search_button button{
  display: block;
  background: #f2c230;
  width: 100%;
  height: 100%;
  border: 2px solid #f2c230;
  border-radius: 40px;
  color: #fff;
  font-size: 16px;
}

.school-name-item {
  display: none;
}

.open-school #result{
  margin-top: 40px;
}

.open-school_result-title{
  text-align: center;
  font-weight: 500;
}

.open-school_result-title span{
  display: block;
}

.open-school_result-title .result-title{
  color: var(--site-main-blue-color);
  font-size: 20px;
  margin-bottom: 20px;
}

.open-school_result-title .school-name-title{
  border-radius: 10px 10px 0 0;
  position: relative;
  padding: 12px 0;
  margin-bottom: 30px;
  background-color: var(--site-main-blue-color);
  color: #fff;
}

.open-school_result-title .school-name-title:after{
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7.5px solid transparent;
  border-right: 7.5px solid transparent;
  border-top: 15px solid var(--site-main-blue-color);
}

/* カレンダー部分 */
#result #calendar{
  border: solid 1px #e4e4e4;
  border-top: none;
}
#result .tab-body{
  border-top: solid 1px #e4e4e4;
}

#result .calender_head{
  border-left: solid 1px #e4e4e4;
  border-right: solid 1px #e4e4e4;
}

#os_access{
  margin-top: 40px;
  background: #ecf5fa;
  padding: 2rem 2rem 3rem;
  border-radius: 10px;
}

#os_access .disp_pc{
  display: none;
}

#os_access h2{
  font-size: 20px;
  text-align: center;
  margin-bottom: 16px;
}

#os_access dt span{
  background: rgba(255, 255, 255, 0) linear-gradient(transparent 60%, rgba(245, 218, 86, .7) 0%) repeat scroll 0 0;
  font-weight: 500;
}

#os_access dd,
#os_access .disc ul li{
  font-size: 14px;
}

#os_access .disc{
  margin-top: 12px;
}

#os_access .disc ul{
  margin-left: 2rem;
}

#os_access .disc ul li{
  position: relative;
}

#os_access .disc ul li::before{
  content: "";
  display: block;
  width: .8rem;
  height: .8rem;
  background-color: var(--site-main-blue-color);
  border-radius: 50%;
  position: absolute;
  top: 7px;
  transform: unset;
  left: -1.6rem;
}

#os_access .map-area {
  position: relative;
}

#os_access .map {
  border: .1rem solid var(--site-border-color);
  border-radius: 1rem;
}

#os_access .map img {
  border-radius: 1rem;
}

#os_access .map-button {
  position: absolute;
  bottom: 0;
  right: 0;
}

#os_access .map-switch {
  width: 3rem;
  height: 3rem;
  border: none;
  background-color: var(--site-main-orange-color);
  position: relative;
  appearance: none;
  cursor: pointer;
  border-radius: 10px 0 10px 0;
}

#os_access .map-line {
  display: block;
  width: 1.2rem;
  height: .1rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFF;
  transition: transform .4s;
}

#os_access .map-line:nth-of-type(2) {
  transform: translate(-50%, -1px) rotate(90deg);
}

#os_access .modal-layer {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 1s ease-in-out;
}

#os_access .modal-content {
    width: 98vw;
    max-width: 96rem;
    height: auto;
    max-height: 90vh;
    padding: 1.6rem;
    background-color: rgba(0, 0, 0, 0);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: show 0.6s linear 0s;
    overflow-y: none;
}

#os_access .modal-content button {
    content: "";
    display: block;
    width: 3.2rem;
    height: 3.2rem;
    background-color: var(--site-main-orange-color);
    clip-path: inset(0 round 1rem);
    border: none;
    z-index: 1000;
    appearance: none;
    position: absolute;
    right: 0;
    top: 0;
}

#os_access .modal-content button::after {
    content: "";
    display: block;
    width: 1.4rem;
    height: 1.4rem;
    background-color: #FFF;
    clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
    /*transform: translate( 0.3rem, 0);*/
    margin: 0 auto;
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
}

@keyframes show {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media screen and (max-width: 767px) {
  .calender_head, .calender-foot{
    padding: 15px 10px;
  }

  #result #os_access .access-item .column-type{
    display: grid;
    row-gap: 2rem;
    justify-content: center;
  }
}

/* popup */

body:has(.event-popup_wrap.active)::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.event-popup .date{
  padding-bottom: 10px;
}

.event-popup_list ul li:first-of-type{
  margin-top: 0;
}

.event-popup .date{
  font-size: 14px;
}

.event-popup .date .pop_event_date{
  font-size: 20px;
}

@media screen and (max-width: 767px) { 
  .event-popup_list ul li:last-of-type{
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px){
  .os-point-g{
    gap: 20px;
    margin-bottom: 60px;
  }

  .open-school .search-area #campusSelect{
    padding: 15px 40px 15px 15px;
  }

  .open-school .search-area .heading-area.lang-jp h2 span:before{
    left: -15px;
  }

  .open-school .search-area .search_button button{
    font-size: 18px;
  }

  #os_access .disp_pc{
    display: block;
  }

  #os_access .disp_sp{
    display: none;
  }

  #os_access dt span{
    font-size: 18px;
  }

  #os_access dd{
    font-size: 15px;
  }

  #os_access .disc{
    margin-top: 30px;
  }

  /* popup */
  .popup-trigger-close{
    right: -25px;
  }

  .event-popup .date{
    font-size: 16px;
  }

  .event-popup .date .pop_event_date{
    font-size: 24px;
  }
}
@media screen and (min-width: 1024px){
  #os_access .column-type {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    column-gap: 4rem;
    align-items: center;
  }
}
