@charset "UTF-8";
/****************** 全体レイアウト ******************/
.page .l-content, .single .l-content,.archive .l-content {
  padding: 0 0 4em 0 !important;
  margin: 0;
  width: 100%;
  max-width: 100%;
}
.l-mainContent {
  margin:0 auto !important;
  max-width: 100%;
}
h1 {
  position: relative;
  background: url("../images/common/head_bg.jpg") top center / 100% auto no-repeat;
  height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5vw;
}
h1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 160, 233, 0.4); /* #00A0E9 + 40% */
  z-index: 0;
}
/* 文字を前面に */
h1 > * {
  position: relative;
  z-index: 1;
}
h1 span.c-pageTitle__inner {
  border-bottom: none !important;
  float: none !important;
  padding: 0 !important;
  width: 80%;
  display: block;
  color: #fff;
  margin: 0 auto !important;
  font-size: 2.2vw;
  line-height: 1.3em;
}
.post_content p {
  font-size: 1.1vw;
}
.page p,.page li,.page table {
  font-weight:bold;
}

@media screen and (max-width: 1199px) {
h1 span.c-pageTitle__inner {
  font-size: 3.5vw;
}
.post_content p {
  font-size: 1.5vw;
}
}
@media screen and (max-width: 767px){
h1{
  padding: 1em 0 !important;
}
h1 span.c-pageTitle__inner {
  font-size: 5vw;
  width: 90%;
}
.post_content p {
  font-size: 4vw;
}
}
/****************** ページネーション ******************/
.c-pagination span,.c-pagination a{
  margin-top:0;
  margin-bottom:0;
}
/****************** 本文、タイトル、基本設定 ******************/
.l-mainContent__inner > .post_content {
  margin: 4em auto;
  padding: 0;
  width: 84%;
  font-size: 1.1vw !important;
}
div.single-post .post_content {
  width: 60%;
}
.post_content p {
  _font-size: 1em;
}
.post_content h2 {
  background: url("../images/common/h2_bg.png") top left / 100% auto no-repeat;
  display: block;
  width: 100%;
  padding: 2.5vw 0 0 1.5vw;
  font-size: 1.8vw;
  margin: 2em 0 2em 0;
  color: #000;
}
.post_content h3 {
  color: #000;
  padding-left: 1em;
  margin: 2em 0 0.5em 0;
  font-size: 1.5vw;
}
.post_content h3::before {
  font-family: "Font Awesome 6 Free";
  content: "\f105";
  color: #00A0E9;
  line-height: 1.4em;
}
.post_content h4 {
  color: #00A0E9;
  font-size: 1.3vw;
  display: inline-block;
  padding: 0.3em 1em;
  margin: 2em 0 1em 0;
  background: #F5F5F5;
}
.post_content strong {
  color: #000;
}
@media screen and (max-width: 1199px) {
.l-mainContent__inner > .post_content {
  font-size: 1.8vw !important;
  width: 90%;
}
.post_content h2 {
  font-size: 3vw;
}
.post_content h3 {
  font-size: 2.5vw;
}
.post_content h4 {
  font-size: 2.2vw;
}
div.single-post .post_content {
  width: 90%;
}
}
@media screen and (max-width: 767px){
.l-mainContent__inner > .post_content {
  width: 90%;
  font-size: 4vw !important;
}
.post_content h2 {
  background: url("../images/common/h2_bg.png") top left / 250% auto no-repeat;
  padding: 5.5vw 0 0 0;
  font-size: 4.8vw;
}
.post_content h3 {
  font-size: 4.5vw;
}
.post_content h4 {
  font-size: 4.3vw;
}
}

/****************** リスト関連 ******************/
/* 番号ありリスト */
ol.wp-block-list {
  list-style: none;
  padding-left: 0;
  counter-reset: parent-counter;
  font-size: 1em;
}
ol.wp-block-list > li {
  counter-increment: parent-counter;
  position: relative;
  padding-left: 2em;
  margin: 0.25em 0 0.5em 0;
  line-height: 1.5em;
  padding-top: 0.15em;
}
ol.wp-block-list > li::before {
  content: counter(parent-counter);
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 1.5em;
  height: 1.5em;
  background: #00A0E9;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  line-height: 1;
}
/* 入れ子番号 */
ol.wp-block-list ol {
  list-style: none;
  padding-left: 0;
  margin-top: 0.6em;
  counter-reset: child-counter;
}
ol.wp-block-list ol > li {
  counter-increment: child-counter;
  position: relative;
  padding-left: 2em;
  line-height: 1.5em;
  padding-top: 0.15em;
}
ol.wp-block-list ol > li::before {
  content: counter(child-counter);
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 1.5em;
  height: 1.5em;
  background: #eee;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  line-height: 1;
}
/* 番号無しリスト */
ul.wp-block-list {
  list-style: none;
  padding-left: 0;
  font-size: 1em;
}
ul.wp-block-list > li {
  position: relative;
  padding-left: 1.3em;
  line-height: 1.5em;
  padding-top: 0.15em;
}
ul.wp-block-list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95em;
  width: 0.8em;
  height: 0.8em;
  background-color: #00A0E9;
  border-radius: 50%;
  transform: translateY(-50%);
}
/* 番号無しリスト入れ子 */
ul.wp-block-list ul {
  list-style: none;
  padding-left: 1em;
}
ul.wp-block-list ul > li {
  position: relative;
  padding-left: 1.3em;
}
ul.wp-block-list ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95em;
  width: 0.8em;
  height: 0.8em;
  background-color: #eee;
  border-radius: 50%;
  transform: translateY(-50%);
}
/* カタカナリスト */
.katakana_list {
.list-style-type: katakana;
}
.katakana_list li::before {
  display:none;
}

/****************** ボタン ******************/
/* 共通 */
.wp-block-button .wp-block-button__link,.swell-block-button .swell-block-button__link,.tab_listarea .c-tabList__item button {
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  padding: 0.8vw 4vw 0.8vw 2vw;
  box-sizing: border-box;
  min-width: auto;
  font-weight: bold;
  font-size: 1.2vw;
  line-height: 1.3em;
  position: relative;
  display:block;
}
.tab_listarea .c-tabList__item button {
  padding: 0.8vw 4vw 0.8vw 2vw;
}
.wp-block-button .wp-block-button__link::after,.swell-block-button .swell-block-button__link::after,.tab_listarea .c-tabList__item button::after {
  content: "";
  width: 1.5em;
  height: 1em;
  flex-shrink: 0;
  background-size: contain;
  position: absolute;
  top: 50%;
    transform:  translateY(-50%);
  -webkit-transform : translateY(-50%);
  transform : translateY(-50%);
    -ms-transform: translateY(-50%);
  right: 1em;
  background-repeat: no-repeat;
  background-position: center;
}
/* tab関連 */
.tab_listarea .c-tabList {
  background-color: #eee;
  padding: 1em !important;
}
.tab_listarea .c-tabList li {
  margin-right: 1em !important;
}
.tab_listarea .c-tabList li:last-child {
  margin-right:0 !important;
}
.tab_listarea .c-tabBody {
  border:none !important;
}
.wp-block-button .wp-block-button__link,.tab_listarea button[aria-selected="true"] {
  background-color: #00A0E9 !important;
}
.wp-block-button .wp-block-button__link,.tab_listarea button[aria-selected="false"] {
  background-color: #00A0E9 !important;
}
.c-tabList__button[aria-selected="true"]{
  background-color: transparent !important;
}
.tab_listarea button a,.tab_listarea button {
  color:#fff;
}
/* ブロックエディターボタン */
.wp-block-button .wp-block-button__link:hover {
  opacity:0.3;
}
.wp-block-button .wp-block-button__link::after,.tab_listarea .c-tabList__item button::after {
  background: url("../images/common/but_after01.png") no-repeat center / contain;
}
/* SWELLボタン */
.swell-block-button .swell-block-button__link {
  background-color:#EEEEEE;
  border:solid 1px #1A2B3C;
  color:#1A2B3C;
  box-shadow: none !important;
}
.swell-block-button .swell-block-button__link::after {
  background: url("../images/common/but_after02.png") no-repeat center / contain;
}
.swell-block-button .swell-block-button__link:hover {
  background-color:#1A2B3C;
  color:#fff;
}
.swell-block-button .swell-block-button__link:hover::after {
  background: url("../images/common/but_after01.png") no-repeat center / contain;
}
@media screen and (max-width: 1199px) {
.wp-block-button .wp-block-button__link, .swell-block-button .swell-block-button__link {
  font-size: 2vw;
}
}
@media screen and (max-width: 767px){
.tab_listarea .c-tabList__item button::after {
  display:none;
}
.wp-block-button .wp-block-button__link, .swell-block-button .swell-block-button__link {
  font-size: 4vw;
  border-radius: 5px;
  padding: 2vw 12vw 2vw 3.5vw;
}
.tab_listarea .c-tabList {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
.tab_listarea .c-tabList li {
  flex: 0 0 calc((100% - 2em) / 3);
  box-sizing: border-box;
  margin-right: 0 !important;
}
.tab_listarea .c-tabList__item button {
  font-size: 3vw;
}
}

/****************** 投稿ページ用パーツ ******************/
.post-date-cont {
  display: block;
  align-items: center;
  margin-bottom: 3em;
}
.post-categories {
  margin-right: auto;
}
.post-categories a {
  background-color: #00A0E9;
  color: #fff;
  padding: 0.1em 0.5em;
  font-size: 0.9em;
}
.post-date-categories {
  white-space: nowrap;
}
/* 投稿個別ページのタイトル */
.post_content strong {
  color: #000;
  font-size: 2vw;
  margin-bottom: 0.5em;
  display: block;
  line-height: 1.5em;
}
@media screen and (max-width: 1199px) {
.post_content strong {
  font-size: 3.2vw;
}
}
@media screen and (max-width: 767px){
.post_content strong {
  font-size: 5vw;
}
.post-date-categories {
  font-size: 3.3vw;
  display: block;
  margin-top: 0.5em;
}
}
/****************** 投稿下のスライダー ******************/
.single_list_cont {
  width: 80%;
  margin:0 auto;
}
.single_list_cont h2 {
  font-size:2vw;
  text-align: center;
}
.single_swiper {
  border:solid 1px #ccc;
  padding: 2em !important;
}
.single_swiper a {
  padding:1em;
  display: block;
  text-decoration: none;
  color: inherit;
}
.slide_thumb {
  width: 100%;
  height: 15vw;
  overflow: hidden;
}
.slide_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.slide_date {
  display: block;
  font-size: 1vw;
  margin-top: 0.5vw;
}
.slide_title {
  font-size: 1.2vw;
  margin: 0.3vw 0;
  line-height: 1.4em;
}
.slide_cat {
  font-size: 0.85vw;
  background-color: #00A0E9;
  color: #fff;
  display: inline-block;
  padding: 0.1vw 1vw;
}
@media screen and (max-width: 1199px) {
.single_list_cont h2 {
  font-size: 3vw;
}
.slide_thumb {
  height: 25vw;
}
.slide_date {
  font-size: 1.5vw;
}
.slide_title {
  font-size: 2vw;
}
.slide_cat {
  font-size: 1.2vw;
}
}
@media screen and (max-width: 767px){
.single_swiper {
  --swiper-navigation-size: 20px; /* デフォルト 44px → 半分 */
}
.slide_thumb {
  height: 30vw;
}
.slide_date {
  font-size: 3vw;
}
.slide_title {
  font-size: 4vw;
}
.slide_cat {
  font-size: 2.5vw;
}
}

/****************** 講師紹介（職位別） ******************/

/* 職位別（校長・副校長・部長）は中央寄せの横並び */
ul.lecturers_po_list {
  display: flex;
  justify-content: center; /* 横中央寄せ */
  flex-wrap: wrap;         /* 折り返し */
  gap: 1.5em;
  list-style: none;
  padding: 0;
  margin: 3em 0 0 0;
}

/* 職位別のカード */
ul.lecturers_po_list li {
  width: 25%;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  padding: 1em;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center; /* 横中央 */
  justify-content: flex-start; /* 上から順に配置 */
}

/****************** 講師紹介（カテゴリ別） ******************/

/* カテゴリ別は 4 カラムのグリッド */
ul.lecturers_cat_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5em;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* カテゴリ別のカード */
ul.lecturers_cat_list li {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  padding: 1em;
  text-align: center;
}

/****************** 共通スタイル ******************/

ul.lecturers_po_list li img,
ul.lecturers_cat_list li img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
}

ul.lecturers_po_list li .lecturer_title,
ul.lecturers_cat_list li .lecturer_title {
  font-weight: bold;
  margin: 0.5em 0 0.8em 0;
  font-size: 1.5vw;
}

ul.lecturers_po_list li .lecturer_text b,
ul.lecturers_cat_list li .lecturer_text b {
  display: block;
  margin-bottom: 0.2em;
}

ul.lecturers_po_list li .lecturer_text p,
ul.lecturers_cat_list li .lecturer_text p {
  margin: 0;
}

.lecturer_img img {
  border-radius: 0;
}
@media screen and (max-width: 1199px) {
ul.lecturers_cat_list {
  grid-template-columns: repeat(3, 1fr);
}
}
@media screen and (max-width: 767px){
  ul.lecturers_cat_list,ul.lecturers_po_list {
    display:block;
  }
ul.lecturers_cat_list li,ul.lecturers_po_list li {
  width: 100%;
}
  ul.lecturers_po_list li .lecturer_title,
  ul.lecturers_cat_list li .lecturer_title {
    font-size: 5vw;
  }
}


/****************** オープンキャンパス申し込みカレンダー ******************/
#opencampus table td,#opencampus table th{
  padding:0;
}
.fc-h-event .fc-event-main,.fc-h-event {
  border: 0;
}
.fc-event-main{
  border-radius:3px;
  text-align:center;
  color:#000 !important;
  font-weight: 700;
  margin-bottom:0;
  padding:0.2em;
  background-color: transparent !important;
}
.fc-h-event{
  background-color: transparent !important;
}
.fc-daygrid-day-number,.fc-event.end_event {
    pointer-events: none;
	opacity: 0.4;
}
.fc-event-main.oc01{
  background-color: #98e9f0 !important;
}
.fc-event-main.oc02{
  background-color: #f3a4e7 !important;
}
.fc-event-main.oc03{
  background-color: #fbb9ba !important;
}
.fc-event-main.oc04{
  background-color: #9ae9a6 !important;
}
.fc-event-main.oc05{
  background-color: #f6f790 !important;
}
.fc-event-main.oc06{
  background-color: #b2bcf1 !important;
}
.fc-event-main.oc07{
  background-color: #b3c3f5 !important;
}
.fc-event-main.end_event{
  background-color: #ccc !important;
}
.fc-event.end_event:hover,a.fc-col-header-cell-cushion:hover{
  opacity: 1 !important;
  cursor: default !important;
  z-index: 1 !important;
  filter: none !important;
  transform: none !important;
}
.fc-daygrid-day-top a{
  color: #555;
  opacity: 1;
}
.fc-toolbar-chunk h2{
  background:none;
}
.fc-button-group button.fc-button{
  margin-right:0.5em;
}
fc .fc-toolbar.fc-header-toolbar {
  display: flex;
  align-items: flex-end;
}
.post_content thead td, .post_content thead th {
  background-color: #00A0E9;
}
a.fc-col-header-cell-cushion {
  color: #fff;
}
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 767px){
.fc-view-harness table td {
  padding: 0;
}
}
/****************** オープンキャンパスのタグボタン一覧 ******************/
.ocan-list {
  width: 100%;
  display: flex;
  list-style: none;
  margin: 1em 0;
  padding: 0;
  flex-wrap: wrap;
}
.ocan-list li {
  margin: 0 0 1em 0;
}
.ocan-list li:last-child{
  margin-right:0;
}
.ocan-list li a ,.ocan_individual_tags a{
  background-color:#eee;
  font-weight:700;
  color:#000;
  border-radius:100px;
  padding:0.3em 1em;
  margin-right: 1em;
}
.ocan-list li:last-child a ,.ocan_individual_tags a:last-child,a.oldevent{
  margin-right: 0;
}
.ocan-list li a::before ,.ocan_individual_tags a::before,a.oldevent::before {
  font-family: "Font Awesome 6 Free";
  content: "\f292";
  color:#00A0E9;
  margin-right:0.3em;
}
a.oldevent {
  font-weight: bold;
  float: right;
  color: #000;
}
a.oldevent::before {
  content: "\f04b";
}


@media screen and (max-width: 1199px) {
.ocan_individual_tags a {
  display: inline-block;
}
}
@media screen and (max-width: 767px){
.ocan_individual_tags a {
  margin-bottom: 1em;
}
}

/****************** オープンキャンパス タグ・カテゴリー一覧ページ ******************/
.ocan_sch_list{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 2em 0;
  padding: 0 !important;
  gap:2em;
}
.ocan_sch_list > li{
  flex: 0 0 calc((100% - 4em) / 3);
  box-sizing: border-box;
}
.ocan_sch_list > li a{
  color:#000;
}
h3.ocan_sch_title {
  margin: 0.5em 0;
  padding: 0 0 0 0.7em;
}
h3.ocan_sch_title::before {
  content: "";
  border-left: solid 8px #00A0E9;
  width: 8px;
  height: 100%;
  border-radius: 3px;
}
.ocan_sch_list > li p {
  font-weight:bold;
}
p.ocan_sch_days {
  font-size: 0.9vw;
  display: block;
  margin-bottom: 0.5vw;
  color: #0C7BAE;
}
p.ocan_sch_comment {
  font-size: 1.1vw;
  display: block;
}
@media screen and (max-width: 1199px) {
p.ocan_sch_days {
  font-size: 1.2vw;
}
p.ocan_sch_comment {
  font-size: 1.4vw;
}
}
@media screen and (max-width: 767px){
.ocan_sch_list {
  display: block;
}
.ocan_sch_list > li {
  margin-bottom: 2em;
  border-bottom: solid 1px #ccc;
  padding-bottom: 2em;
}
p.ocan_sch_days {
  font-size: 3.5vw;
}
p.ocan_sch_comment {
  font-size: 4vw;
}
}

/****************** オープンキャンパス タグ・カテゴリー個別ページ ******************/
.ocan_individual_content{
  display: flex;
}
.ocan_individual_time {
  font-size: 1.2vw;
  font-weight: bold;
  display: block;
   margin: 0 0 0.8em 0;
}
.ocan_individual_comment {
  display: block;
  margin: 0.8em 0;
  font-weight: bold;
}
.ocan_individual{
  width:75%;
  padding-right: 3%;
}
.ocan_other_event{
  width:25%;
}
.ocan_individual_dates {
  width: 100%;
  list-style: none;
  margin: 1em 0;
  padding: 0 !important;
}
.ocan_individual_dates li,.selected-ocan-date {
  font-size: 1.5vw;
  background-color: #eee;
  border-radius: 10px;
  font-weight: bold;
  padding: 0.8em 1.2em;
  display: flex;
  align-items: center;
}
.ocan_individual_dates li a,.ocan_toggle_button,.selected-ocan-date a {
  margin-left: auto;
  background-color: #00A0E9;
  color: #fff;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  padding: 0.8vw 2vw;
  box-sizing: border-box;
  min-width: auto;
  font-weight: bold;
  font-size: 1.2vw;
  line-height: 1.3em;
}
.ocan_toggle_button {
  border: solid 1px #1A2B3C;
  background-color: #D0F0FF;
  color: #000;
}
.ocan_individual_dates li a::after,.ocan_toggle_button::after,.selected-ocan-date a::after {
  content: "";
  width: 1.5em;
  height: 1em;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.ocan_individual_dates li a::after,.selected-ocan-date a::after {
  background: url("../images/common/but_after01.png") no-repeat center / contain;
}
.ocan_toggle_button::after {
  background: url("../images/common/but_after02.png") no-repeat center / contain;
}
.ocan_individual_dates.is-accordion {
  max-height: 24vw;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.ocan_individual_dates.is-accordion.zeroopen {
  max-height: 0;
}
/* 開催予定のその他イベント */
.ocan_other_event h3 {
  display: block;
  text-align: center;
  padding: 0;
  font-size: 1.3vw;
}
.ocan_other_event h3::before {
  display:none;
}
.ocan_other_event ul {
  width: 100%;
  list-style: none;
  margin: 1em 0;
  padding: 0 !important;
}
.ocan_other_event ul li{
  margin-bottom: 1.5em;
}
.ocan_other_event ul li a{
  color:#000;
}
.ocan_other_event_days{
  font-size: 0.95vw;
}
/* 選択中の日付ボタン */
.selected-ocan-date {
  background-color: #fff3f3;
  box-sizing: border-box;
  border: solid 3px #ff9a9a;
}
@media screen and (max-width: 1199px) {
.ocan_individual_content {
  display: block;
}
.ocan_individual{
  width:100%;
  padding-right: 0;
    margin-bottom: 4em;
}
.ocan_other_event{
  width:100%;
}
.ocan_individual_time {
  font-size: 2vw;
}
.ocan_individual_dates li {
  font-size: 2vw;
}
.ocan_individual_dates li a, .ocan_toggle_button {
  font-size: 2vw;
}
.ocan_other_event h3 {
  font-size: 2.5vw;
}
.ocan_other_event ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  padding: 0;
  list-style: none;
}
.ocan_other_event ul > li {
  flex: 0 0 calc((100% - 1em) / 2); /* 2カラム */
  box-sizing: border-box;
}
.ocan_other_event_days {
  font-size: 1.5vw;
}
.ocan_individual_dates.is-accordion {
  max-height: 32vw;
}
}
@media screen and (max-width: 767px){
.ocan_individual_time {
  font-size: 4vw;
}
.ocan_individual_dates li,.selected-ocan-date {
  font-size: 4vw;
}
.ocan_individual_dates li a, .ocan_toggle_button,.selected-ocan-date a {
  font-size: 4.5vw;
  padding: 2vw 4vw;
}
.ocan_other_event h3 {
  font-size: 5vw;
}
.ocan_other_event_days {
  font-size: 3vw;
}
.ocan_individual_dates.is-accordion {
  max-height:55vw;
}
}

/****************** グラビティフォームの時間制御 ******************/
.gform_submission_error.hide_summary {
  background:none;
  padding: 0;
}
.hide-field,.gform_heading {
    display: none !important;
}
.show-field {
    display: block !important;
}
.disabled-choice {
    opacity: 0.4;
    pointer-events: none;
}
.gform-page-footer{
  justify-content: center;
}
.gform_previous_button{
  background-color: #fff !important;
  box-shadow: none !important;
  font-weight: bold !important;
  font-size: 1.1em !important;
}

.gform_next_button,#gform_submit_button_1 {
  background-color: #00A0E9 !important;
  box-shadow: none !important;
  font-weight: bold !important;
  font-size: 1.1em !important;
}
/* 開催日、申し込みイベント名 */
.ocan_form_event_date,.ocan_form_event_title {
  font-size: 1.4em;
  font-weight:bold;
  display: block;
  margin-bottom: 1em;
}
.gfield_label.gform-field-label{
  font-size: 1.2em;
  font-weight:bold;
}
.gfield_required.gfield_required_text {
  font-weight:bold;
}
.gform-theme--framework .gform-field-label--type-inline:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)){
  font-size:1em;
}
.ginput_container input,.ginput_container select {
  box-shadow:none !important;
  --gf-local-shadow:none !important;
}
.gfield_description {
  color: var(--gf-form-validation-color) !important;
  font-weight: bold !important;
}
.gform-theme--framework .gform_validation_errors .gform_submission_error {
  display: inline-block;
  font-size: 1.2vw;
  line-height: 1.5em;
}
.gform-theme--framework .gform_validation_errors .gform-icon {
  margin-right: 0.3em;
}
.gfield.gf_list_5col:where(:not(.gfield--type-image_choice)) .gfield_radio {
    grid-template-columns: repeat(7,1fr) !important;
  }
/* 確認画面 */
.gform_page_fields table td font strong {
  font-size: 1em;
  margin-bottom: 0 !important;
}
.gform_page_fields table td font {
  font-size: 1em !important;
}
.gform_fields table{
  padding:0;
  background-color: #ecf5f9;
}
.gform_fields table td {
  background-color: #ecf5f9;
  padding: 0.3em;
  color: #000;
  border: none;
}
.gform_fields table tr:nth-child(even) {
  margin-bottom: 0.8em;
  display: block;
}
@media screen and (max-width: 1199px) {
.gform-theme--framework .gform_validation_errors .gform_submission_error {
  font-size: 2vw;
}
}
@media screen and (max-width: 767px){
.ocan_form_event_date, .ocan_form_event_title {
  font-size: 4.5vw;
}
.gform-theme--framework .gform_validation_errors .gform_submission_error {
  font-size: 4vw;
}
}
/****************** 分野・コースリスト ******************/
.bun_list{
  flex-wrap: wrap;
  list-style: none;
  margin: 1em 0;
  padding: 0;
}
.bun_list .wp-block-group.is-row {
  width: 50%;
  box-sizing: border-box;
  margin-bottom: 3em;
}
.bun_list .wp-block-group.is-row strong {
  display: block;
  margin: 0.8em auto;
  text-align: center;
  font-size: 1.7vw;
}
.bun_list .wp-block-group.is-row > .wp-block-group {
  padding:2em;
}
.bun_list .wp-block-group.is-row > .wp-block-group figure,.bun_list .wp-block-group.is-row > .wp-block-group figure img{
	width:100%;
}
.bun_list .wp-block-group.is-row > .wp-block-group > p {
  display:block;
}
.bun_list .wp-block-group.is-row > .wp-block-group > p:nth-of-type(2) {
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
  border-bottom: solid 1px #ccc;
  padding-bottom: 1em;
}
.bun_list .wp-block-group.is-row > .wp-block-group > p:nth-of-type(3) {
  margin-bottom: 1em;
}
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 767px){
.bun_list {
  display: block;
}
.bun_list .wp-block-group.is-row {
  width: 100%;
  margin-bottom: 2em;
}
.bun_list .wp-block-group.is-row > .wp-block-group {
  padding: 2em 0;
}
.bun_list .wp-block-group.is-row strong {
  font-size: 5vw;
}
}
/****************** 分野・コース各ページ ******************/
/* こんな方におすすめ */
.recommend_cont,.features_list {
  background-color:#F5F5F5;
  width:100%;
  padding: 2em 2.5em;
  font-weight:bold;
}
h3.under-line {
  border-bottom: 2px solid #1A2B3C;
  display: inline-block;
  padding: 0 2em 0.3em 0;
  margin: 0 0 1em 0;
}
h3.under-line::before {
  display:none;
}
.recommend_cont ul,.features_list ul {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.2vw;
}
.recommend_cont ul li,.features_list ul li {
  flex: 0 0 50%;
  box-sizing: border-box;
  padding-top: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  line-height: 1;
  margin: 0.5em 0;
  letter-spacing: 0.01em;
}
.recommend_cont ul li {
  font-size: 0.85em;
}
.recommend_cont ul.wp-block-list > li::before {
  content: "";
  background: url("../images/common/tick-square.png") no-repeat center / contain;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  top: 0.5em;
}
.recommend_cont ul li span {
  color: #9FBB56;
  font-size: 1.45vw;
}

/* 目指せる職業 */
.occupation_list {
  margin-bottom:0.5em;
}
.occupation_list .wp-block-group__inner-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  padding: 0;
  list-style: none;
  color: #9FBB56;
  font-size: 1.1vw;
}
.occupation_list .wp-block-group__inner-container p {
  flex: 0 0 calc((100% - 7em) / 8);
  box-sizing: border-box;
  display: block;
  text-align: center;
  position: relative;
  height: 10vw;
  border: 2px solid #9FBB56;
  border-radius: 10px;
}
.occupation_list .wp-block-group__inner-container p span {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 100%;
  line-height: 1.3em;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85em;
}
/* 目指せる職業：IT・情報処理 */
#johocyber .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(1),
#johobasic .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(1) {
  background: url("../images/contents/it-specialist/01.png") top 5% center / 60% auto no-repeat;
}
#johocyber .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(2),
#johobasic .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(2) {
  background: url("../images/contents/it-specialist/02.png") top 5% center / 60% auto no-repeat;
}
#johocyber .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(3),
#johobasic .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(3) {
  background: url("../images/contents/it-specialist/03.png") top 5% center / 60% auto no-repeat;
}
#johocyber .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(4) {
  background: url("../images/contents/it-specialist/04.png") top 5% center / 60% auto no-repeat;
}
#johocyber .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(5) {
  background: url("../images/contents/it-specialist/05.png") top 5% center / 60% auto no-repeat;
}

/* 目指せる職業：AI＆ICTビジネス科 */
#ai-ict .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(1) {
  background: url("../images/contents/ai-ict/01.png") top 5% center / 60% auto no-repeat;
}
#ai-ict .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(2) {
  background: url("../images/contents/ai-ict/02.png") top 5% center / 60% auto no-repeat;
}
#ai-ict .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(3) {
  background: url("../images/contents/ai-ict/03.png") top 5% center / 60% auto no-repeat;
}
#ai-ict .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(4) {
  background: url("../images/contents/ai-ict/04.png") top 5% center / 60% auto no-repeat;
}
#ai-ict .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(5) {
  background: url("../images/contents/ai-ict/05.png") top 5% center / 60% auto no-repeat;
}
#ai-ict .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(6) {
  background: url("../images/contents/ai-ict/06.png") top 5% center / 60% auto no-repeat;
}

/* 目指せる職業：医療ビジネス科 総合事務コース */
#office-work .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(1) {
  background: url("../images/contents/office-work/01.png") top 5% center / 60% auto no-repeat;
}
#office-work .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(2) {
  background: url("../images/contents/office-work/02.png") top 5% center / 60% auto no-repeat;
}
#office-work .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(3) {
  background: url("../images/contents/office-work/03.png") top 5% center / 60% auto no-repeat;
}
#office-work .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(4) {
  background: url("../images/contents/office-work/04.png") top 5% center / 60% auto no-repeat;
}

/* 目指せる職業：医療ビジネス科 医薬品専攻コース */
#medicine .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(1) {
  background: url("../images/contents/medicine/01.png") top 5% center / 60% auto no-repeat;
}
#medicine .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(2) {
  background: url("../images/contents/medicine/02.png") top 5% center / 60% auto no-repeat;
}

/* 目指せる職業：ITエンジニア科 eスポーツビジネスコース */
#itesport .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(1) {
  background: url("../images/contents/itesport/01.png") top 5% center / 60% auto no-repeat;
}
#itesport .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(2) {
  background: url("../images/contents/itesport/02.png") top 5% center / 60% auto no-repeat;
}
#itesport .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(3) {
  background: url("../images/contents/itesport/03.png") top 5% center / 60% auto no-repeat;
}
#itesport .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(4) {
  background: url("../images/contents/itesport/04.png") top 5% center / 60% auto no-repeat;
}
#itesport .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(5) {
  background: url("../images/contents/itesport/05.png") top 5% center / 60% auto no-repeat;
}
#itesport .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(6) {
  background: url("../images/contents/itesport/06.png") top 5% center / 60% auto no-repeat;
}

/* 目指せる職業：ITエンジニア科 ゲームプログラムコース */
#it-engineer .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(1) {
  background: url("../images/contents/it-engineer/01.png") top 5% center / 60% auto no-repeat;
}
#it-engineer .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(2) {
  background: url("../images/contents/it-engineer/02.png") top 5% center / 60% auto no-repeat;
}
#it-engineer .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(3) {
  background: url("../images/contents/it-engineer/03.png") top 5% center / 60% auto no-repeat;
}
#it-engineer .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(4) {
  background: url("../images/contents/it-engineer/04.png") top 5% center / 60% auto no-repeat;
}
#it-engineer .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(5) {
  background: url("../images/contents/it-engineer/05.png") top 5% center / 60% auto no-repeat;
}
#it-engineer .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(6) {
  background: url("../images/contents/it-engineer/06.png") top 5% center / 60% auto no-repeat;
}

/* 目指せる職業：ITエンジニア科 グラフィック・デザインコース */
#design .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(1) {
  background: url("../images/contents/design/01.png") top 5% center / 60% auto no-repeat;
}
#design .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(2) {
  background: url("../images/contents/design/02.png") top 5% center / 60% auto no-repeat;
}
#design .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(3) {
  background: url("../images/contents/design/03.png") top 5% center / 60% auto no-repeat;
}
#design .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(4) {
  background: url("../images/contents/design/04.png") top 5% center / 60% auto no-repeat;
}
#design .occupation_list.it-and-information-processing-list .wp-block-group__inner-container p:nth-child(5) {
  background: url("../images/contents/design/05.png") top 5% center / 60% auto no-repeat;
}

/* そのほかにも */
span.other_occ {
  color: #9FBB56;
  display: inline-block;
  font-weight: bold;
}

/* 選ばれる3つの特長 */
.features_list ul {
  gap: 1.45em;
}
.features_list ul li {
  flex: 0 0 calc((100% - 3em) / 3);
  height: 23vw;
  position: relative;
}
.features_list ul li .wp-block-group {
  background-color: #fff;
  border-radius: 10px;
  padding: 1em;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 85%;
}
.features_list ul li img {
  position: absolute;
  top:0;
  right:0;
  width: 30%;
}
.features_list ul li .wp-block-group h4 {
  background-color: transparent;
  color: #9FBB56;
  margin: 0 0 0.8em 0;
  padding: 0;
  display: block;
  font-size: 1.2vw;
}
#ai-ict .features_list ul li .wp-block-group h4,
#ai-ict span.other_occ,
#ai-ict .occupation_list .wp-block-group__inner-container,
#ai-ict .recommend_cont ul li span {
  color: #E18576;
}
#office-work .features_list ul li .wp-block-group h4,
#office-work span.other_occ,
#office-work .occupation_list .wp-block-group__inner-container,
#office-work .recommend_cont ul li span {
  color: #E77D9E;
}
#medicine .features_list ul li .wp-block-group h4,
#medicine span.other_occ,
#medicine .occupation_list .wp-block-group__inner-container,
#medicine .recommend_cont ul li span {
  color: #E89FC6;
}
#itesport .features_list ul li .wp-block-group h4,
#itesport span.other_occ,
#itesport .occupation_list .wp-block-group__inner-container,
#itesport .recommend_cont ul li span {
  color: #3E4B94;
}
#it-engineer .features_list ul li .wp-block-group h4,
#it-engineer span.other_occ,
#it-engineer .occupation_list .wp-block-group__inner-container,
#it-engineer .recommend_cont ul li span {
  color: #9972B0;
}
#design .features_list ul li .wp-block-group h4,
#design span.other_occ,
#design .occupation_list .wp-block-group__inner-container,
#design .recommend_cont ul li span {
  color: #8CC1EC;
}

#ai-ict .occupation_list .wp-block-group__inner-container p {
  border: 2px solid #E18576;
}
#office-work .occupation_list .wp-block-group__inner-container p {
  border: 2px solid #E77D9E;
}
#medicine .occupation_list .wp-block-group__inner-container p {
  border: 2px solid #E89FC6;
}
#itesport .occupation_list .wp-block-group__inner-container p {
  border: 2px solid #3E4B94;
}
#it-engineer .occupation_list .wp-block-group__inner-container p {
  border: 2px solid #9972B0;
}
#design .occupation_list .wp-block-group__inner-container p {
  border: 2px solid #8CC1EC;
}

.features_list ul li::before {
  display:none;
}
.features_list ul li .wp-block-group p {
  font-size: 1vw;
  line-height: 1.4em;
  display: block;
}
/* 選ばれる3つの特長：IT・情報処理 */
#johocyber .features_list.it-and-information-processing-list ul li:nth-child(1),
#johobasic .features_list.it-and-information-processing-list ul li:nth-child(1) {
  background: url("../images/contents/it-specialist/p01.jpg") top 20% center / 95% auto no-repeat;
}
#johocyber .features_list.it-and-information-processing-list ul li:nth-child(2), 
#johobasic .features_list.it-and-information-processing-list ul li:nth-child(2) {
  background: url("../images/contents/it-specialist/p02.jpg") top 20% center / 95% auto no-repeat;
}
#johocyber .features_list.it-and-information-processing-list ul li:nth-child(3),
#johobasic .features_list.it-and-information-processing-list ul li:nth-child(3) {
  background: url("../images/contents/it-specialist/p03.jpg") top 20% center / 95% auto no-repeat;
}

/* 選ばれる3つの特長：AI＆ICTビジネス科 */
#ai-ict .features_list.it-and-information-processing-list ul li:nth-child(1) {
  background: url("../images/contents/ai-ict/p01.jpg") top 20% center / 95% auto no-repeat;
}
#ai-ict .features_list.it-and-information-processing-list ul li:nth-child(2) {
  background: url("../images/contents/ai-ict/p02.jpg") top 20% center / 95% auto no-repeat;
}
#ai-ict .features_list.it-and-information-processing-list ul li:nth-child(3) {
  background: url("../images/contents/ai-ict/p03.jpg") top 20% center / 95% auto no-repeat;
}

/* 選ばれる3つの特長：医療ビジネス科 総合事務コース */
#office-work .features_list.it-and-information-processing-list ul li:nth-child(1) {
  background: url("../images/contents/office-work/p01.jpg") top 20% center / 95% auto no-repeat;
}
#office-work .features_list.it-and-information-processing-list ul li:nth-child(2) {
  background: url("../images/contents/office-work/p02.jpg") top 20% center / 95% auto no-repeat;
}
#office-work .features_list.it-and-information-processing-list ul li:nth-child(3) {
  background: url("../images/contents/office-work/p03.jpg") top 20% center / 95% auto no-repeat;
}

/* 選ばれる3つの特長：医療ビジネス科 医薬品専攻コース */
#medicine .features_list.it-and-information-processing-list ul li:nth-child(1) {
  background: url("../images/contents/medicine/p01.jpg") top 20% center / 95% auto no-repeat;
}
#medicine .features_list.it-and-information-processing-list ul li:nth-child(2) {
  background: url("../images/contents/medicine/p02.jpg") top 20% center / 95% auto no-repeat;
}
#medicine .features_list.it-and-information-processing-list ul li:nth-child(3) {
  background: url("../images/contents/medicine/p03.jpg") top 20% center / 95% auto no-repeat;
}

/* 選ばれる3つの特長：ITエンジニア科 eスポーツビジネスコース */
#itesport .features_list.it-and-information-processing-list ul li:nth-child(1) {
  background: url("../images/contents/itesport/p01.jpg") top 20% center / 95% auto no-repeat;
}
#itesport .features_list.it-and-information-processing-list ul li:nth-child(2) {
  background: url("../images/contents/itesport/p02.jpg") top 20% center / 95% auto no-repeat;
}
#itesport .features_list.it-and-information-processing-list ul li:nth-child(3) {
  background: url("../images/contents/itesport/p03.jpg") top 20% center / 95% auto no-repeat;
}

/* 選ばれる3つの特長：ITエンジニア科 ゲームプログラムコース */
#it-engineer .features_list.it-and-information-processing-list ul li:nth-child(1) {
  background: url("../images/contents/it-engineer/p01.jpg") top 20% center / 95% auto no-repeat;
}
#it-engineer .features_list.it-and-information-processing-list ul li:nth-child(2) {
  background: url("../images/contents/it-engineer/p02.jpg") top 20% center / 95% auto no-repeat;
}
#it-engineer .features_list.it-and-information-processing-list ul li:nth-child(3) {
  background: url("../images/contents/it-engineer/p03.jpg") top 20% center / 95% auto no-repeat;
}

/* 選ばれる3つの特長：ITエンジニア科 グラフィック・デザインコース */
#design .features_list.it-and-information-processing-list ul li:nth-child(1) {
  background: url("../images/contents/design/p01.jpg") top 20% center / 95% auto no-repeat;
}
#design .features_list.it-and-information-processing-list ul li:nth-child(2) {
  background: url("../images/contents/design/p02.jpg") top 20% center / 95% auto no-repeat;
}
#design .features_list.it-and-information-processing-list ul li:nth-child(3) {
  background: url("../images/contents/design/p03.jpg") top 20% center / 95% auto no-repeat;
}

/* カリキュラムインフォメーション */
.cal_info_img img {
  width:80%;
  margin:0 auto;
}
@media screen and (max-width: 1199px) {
.recommend_cont ul, .features_list ul {
  font-size: 1.5vw;
}
.occupation_list .wp-block-group__inner-container p {
  flex: 0 0 calc((100% - 4em) / 5);
  height: 16vw;
}
.occupation_list .wp-block-group__inner-container p span {
  bottom: 10%;
}
.features_list ul li .wp-block-group h4 {
  font-size: 1.5vw;
}
.cal_info_img img {
  width: 100%;
}
}
@media screen and (max-width: 767px){
.recommend_cont, .features_list {
  padding: 1em 1.5em;
}
.recommend_cont ul, .features_list ul {
  display: block;
  font-size: 4vw;
}
.recommend_cont ul li, .features_list ul li {
  line-height: 1.4em;
  margin: 0.8em 0;
  display: block;
}
.recommend_cont ul li span {
  font-size: 4.5vw;
}
.occupation_list .wp-block-group__inner-container {
  gap: 3.5em;
}
.occupation_list .wp-block-group__inner-container p {
  flex: 0 0 calc((100% - 2em) / 3);
  height: 27vw;
}
.occupation_list .wp-block-group__inner-container p span {
  bottom: 5%;
  line-height: 1.3em;
    font-size: 3.5vw !important;
}
.features_list ul li {
  height: 65vw;
  position: relative;
  padding: 0;
  margin-bottom: 2em !important;
}
  .features_list ul li .wp-block-group h4 {
    font-size: 4.5vw;
  }
.features_list ul li .wp-block-group p {
  font-size: 3.5vw;
}
.under_button_area {
  background-color: #eee;
  padding: 2em 1em;
  display: block !important;
}
.under_button_area div.wp-block-button::after {
  content: "";
  display: block;
  width: 100%;
  overflow: hidden;
}
}
/****************** 各コーストップページ ******************/
.cate_top_head {
  background-color: #ecf5f9;
  padding: 5em 0;
  border-radius: 20px;
}
.cate_top_head .wp-block-columns{
  width:80%;
  margin:0 auto;
  gap: 4em !important;
}
.cate_top_head .wp-block-columns h3 {
  text-align: center;
  border-bottom: solid 1px #ccc;
  padding: 0 0 1em 0;
  margin: 1em 0 1em 0;
}
.cate_top_head .wp-block-columns h3::before{
  display: none;
}
.cate_top_head .wp-block-columns .wp-block-button{
  width:90%;
  margin:0 auto;
  display: block;
}
.cate_top_h3 {
  text-align: center;
  padding-top: 4em !important;
}
.cate_top_h3 .wp-block-group__inner-container p{
  color: #00A0E9;
  margin: 0 0 0.5em 0;
  font-size: 1.2em;
}
.cate_top_h3 .wp-block-group__inner-container h3 {
  margin: 0 0 1em 0 !important;
  font-size: 2vw;
  padding: 0;
}
.cate_top_h3 .wp-block-group__inner-container h3::before{
  display: none;
}
.cate_top_tok {
  width: 80%;
  margin: 0 auto 3em auto;
  border-bottom: solid 1px #ccc;
  padding: 0 0 3em 0;
}
.cate_top_tok.border-none {
  border-bottom: none;
}
.cate_top_tok img {
  width:100%;
}
.cate_top_tok .wp-block-column p{
  margin-bottom: 0;
}
.cate_top_tok .wp-block-column p:nth-child(1) {
  color: #00A0E9;
  border-radius: 5px;
  border: solid 1px #00A0E9;
  display: inline-block;
  padding: 0.2em 1em;
  margin-bottom: 0.5em;
}
.cate_top_tok .wp-block-column b{
  font-size: 1.2em;
}
.cate_top_tok .wp-block-column strong {
  font-size: 1.6em;
  color: #9FBB56;
}
.cate_top_worksgroup{
  width:100%;
}
.wp-block-group.cate_top_worksgroup .wp-block-group__inner-container.is-layout-constrained.wp-block-group-is-layout-constrained {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
}
.wp-block-group.cate_top_worksgroup .wp-block-group__inner-container.is-layout-constrained.wp-block-group-is-layout-constrained .wp-block-group.cate_top_works {
  flex: 0 0 calc((100% - 6em) / 4) !important;
  max-width: calc((100% - 6em) / 4) !important;
  box-sizing: border-box;
  width: calc((100% - 0em) / 4);
  border: 1px solid #ccc;
  border-radius: 15px;
  padding: 1em;
  display: block;
}
.cate_top_works figure{
  display: block;
  width:80%;
  margin:0 auto;
}
.cate_top_works strong {
  font-size: 1.5vw;
  margin-bottom: 0.3em !important;
  line-height: 1.5em;
  display: block;
  text-align: center;
}
.cate_top_works p {
  margin: 0;
  display: block;
  width: 100%;
  font-size: 0.9em;
}
.cate_top_works b {
  font-size: 1.05em;
  text-align: center;
  display: block;
  width: 100%;
  color: #9FBB56;
  margin-bottom: 0.3em;
}
.cate_top_skill{
  gap: 2em !important;
}
.cate_top_skill .wp-block-column {
  border: 1px solid #ccc;
  border-radius: 15px;
  padding: 2em 1.5em;
  display: block;
}
.cate_top_skill .wp-block-column h4 {
  background-color: transparent;
  text-align: center;
  display: block;
  margin: 0 0 0.5em 0;
  padding: 0;
}
@media screen and (max-width: 1199px) {
.cate_top_head .wp-block-columns {
  width: 90%;
}
.cate_top_tok {
  width: 100%;
}
.cate_top_h3 .wp-block-group__inner-container p {
  font-size: 1.4em;
}
.wp-block-group.cate_top_worksgroup .wp-block-group__inner-container.is-layout-constrained.wp-block-group-is-layout-constrained {
  gap: 1em;
}
.wp-block-group.cate_top_worksgroup .wp-block-group__inner-container.is-layout-constrained.wp-block-group-is-layout-constrained .wp-block-group.cate_top_works {
  flex: 0 0 calc((100% - 3em) / 4) !important;
  max-width: calc((100% - 3em) / 4) !important;
}
}
@media screen and (max-width: 767px){
.cate_top_head {
  padding: 3em 0;
}
.cate_top_h3 {
  padding-top: 2em !important;
}
.cate_top_h3 .wp-block-group__inner-container h3 {
  font-size: 4.5vw;
}
.cate_top_tok {
  padding: 0;
}
  .cate_top_tok.gak {
    display: flex;
    flex-direction: column;
  }
  .cate_top_tok.gak .wp-block-column:first-child {
    order: 2;
  }
  .cate_top_tok.gak .wp-block-column:last-child {
    order: 1;
  }
  .wp-block-group.cate_top_worksgroup .wp-block-group__inner-container.is-layout-constrained.wp-block-group-is-layout-constrained .wp-block-group.cate_top_works {
    flex: 0 0 calc((100% - 1em) / 2) !important;
    max-width: calc((100% - 1em) / 2) !important;
  }
.cate_top_works strong {
  font-size: 4.5vw;
}
}

/****************** 学校の特徴 ******************/
#feature #main_content{
  counter-reset: h3num;
}
#feature #main_content h3.count_h3 {
  padding: 0 0 0.9em 1.8em;
}
#feature #main_content h3.count_h3::before {
  counter-increment: h3num;
  content: counter(h3num);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 1.6em;
  height: 1.6em;
  margin-right: 0.4em;
  background: #00A0E9;
  color: #fff;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 1em;
}
#feature #main_content h3.count_h3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: '';
  background-image: -webkit-repeating-linear-gradient(135deg, #C7E7F6, #C7E7F6 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(-45deg, #C7E7F6, #C7E7F6 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
#feature .conut_one img{
  width:80%;
}
#feature strong{
  color:#9FBB56;
  font-size:1.3vw;
}
/* 経験値をプラス！ */
#feature .plus_list {
  flex-wrap: wrap !important;
  gap: 2em !important;
}
#feature .plus_list div.wp-block-column {
  flex: 0 0 calc((100% - 4em) / 3);
  box-sizing: border-box;
  border-radius: 10px;
  border: solid 1px #ccc;
  padding: 1.5em 2em;
  font-weight: bold;
}
#feature .plus_list div.wp-block-column img{
  width:100%;
  display:block;
  margin:0 auto;
}
#feature .plus_list div.wp-block-column h4 {
  margin: 0 auto 0.5em auto;
  background: none;
  padding: 0 0 0 0.5em;
  border-left: solid 8px #00A0E9;
  color: #000;
}
#feature .plus_list div.wp-block-column p {
  font-size: 1vw;
}
/* kbcは文部科学大臣認定校です！ */
.designated_school {
  border: solid 5px #00A0E9;
  border-radius:20px;
  padding: 2.5em;
  font-weight:bold;
  margin-bottom: 4em;
}
#feature .designated_school h3 {
  margin: 2em auto 0.5em auto;
  padding: 0;
  text-align: center;
  font-size: 2.5vw;
}
#feature .designated_school h3::before{
  display:none
}
#feature .designated_school h4 {
  background: transparent;
  text-align: center;
  margin: 0 auto 1.2em auto;
  display: block;
  font-size: 1.6vw;
  border-bottom: solid 1px #ccc;
  padding: 0 0 1em 0;
}
#feature .designated_school .wp-block-columns {
  width:70%;
  margin:0 auto;
}
#feature .designated_school .wp-block-columns .wp-block-column {
  padding: 1em 1.5em;
  background: #f0f9fd;
  border-radius:10px;
}
#feature .designated_school .wp-block-columns p {
  display: block;
  font-size: 1.4vw;
  margin-bottom: 0.5em;
  text-align: center;
}
@media screen and (max-width: 767px){
#feature strong {
  font-size: 4vw;
}
#feature .plus_list div.wp-block-column p {
  font-size: 3vw;
}
#feature .designated_school h3 {
  font-size: 5.5vw;
}
#feature .designated_school h4 {
  font-size: 4.5vw;
}
#feature .designated_school .wp-block-columns {
  width: 100%;
}
#feature .designated_school .wp-block-columns p {
  font-size: 5vw;
}
}

/****************** REAL STORIES 在校生からの声 ******************/
.story_cont {
  width:100%;
  margin:0 auto;
  padding:3vw 0;
  background-size: 30px 30px;
  background-position: 50% 50%;
  background-image:repeating-linear-gradient( 90deg, rgba(0,0,0,.3) , rgba(0,0,0,.3) 1px, transparent 1px, transparent 30px),repeating-linear-gradient( 0deg, rgba(0,0,0,.3) , rgba(0,0,0,.3) 1px, #fff 1px, #fff 30px);
}
.story_cont .story_contin {
  width:80%;
  margin:0 auto;
}
.student_voice_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  padding: 0;
  margin: 0;
}
.student_content {
  background-color: #EFF8FF;
  border-radius: 20px;
  position: relative;
  margin-top: 10vw;
  padding: 5%;
  width: 90%;
  font-weight: bold;
}
.student_img {
  position: absolute;
  top: -3vw;
  left: 1vw;
  width: 30%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: solid 5px #fff;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1), 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.student_img img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}
.student_comment {
  position: relative;
  display: inline-block;
  margin: 4vw 0 1vw 0;
  padding: 1vw;
  min-width: 120px;
  max-width: 100%;
  color: #000;
  background: #fff;
  font-size: 1vw;
  font-weight: bold;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1), 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.student_comment:before {
  content: "";
  position: absolute;
  top: -27px;
  left: 15%;
  transform: translateX(-50%);
  border: 15px solid transparent;
  border-bottom: 15px solid #fff;
}
.student_comment br {
  display: none;
}
.student_cource {
  width: 100%;
  display: block;
  font-size: 0.8vw;
  color:#666666;
}
.student_name {
  width:100%;
  display:block;
  font-size:1.5vw;
}
.student_tag {
  width: 100%;
  display: inline-block;
  font-size: 0.9vw;
}
.student_tag span {
  color:#00A0E9;
}
.student_tag span:nth-child(1) {
  margin-right:1em;
}
.student_tag span::before {
  content:"#";
  margin-right:0.2vw;
}
.student_bottom_link {
  display: block;
  text-align: center;
  margin: 1em auto 0 auto;
}
.student_bottom_link a {
  font-weight: bold;
  color: #000;
  font-size: 1.4vw;
}
@media screen and (max-width: 1199px) {
.story_cont .story_contin {
  width: 90%;
}
.student_img {
  width: 35%;
  border: solid 4px #fff;
}
.student_comment {
  font-size: 1.5vw;
  margin: 5.2vw 0 1vw 0;
}
.student_cource {
  font-size: 1.2vw;
}
.student_name {
  font-size: 2.5vw;
}
.student_tag {
  font-size: 1vw;
}
.student_bottom_link a {
  font-size: 2vw;
}
}
@media screen and (max-width: 767px){
.student_voice_list {
  grid-template-columns: repeat(1, 1fr);
}
.student_content {
  margin-top: 20vw;
  padding: 4vw;
  width: 100%;
}
.student_img {
  top: -16vw;
  left: 6vw;
}
  .student_comment {
    font-size: 4vw;
    margin: 16vw 0 3vw 0;
    padding: 3vw;
  }
.student_comment:before {
  left: 21%;
}
  .student_cource {
    font-size: 3.5vw;
  }
  .student_name {
    font-size: 6vw;
  }
 .student_tag {
    font-size: 3vw;
  }
  .student_bottom_link a {
    font-size: 5vw;
  }
}
/****************** KBCビジネスITとは ******************/
/* 上段 */
.aboutkbc_01,.aboutkbc_02 {
  width:80%;
  margin:3em auto;
  text-align:center;
}
#about-kbc h3{
  margin:1em auto 0.8em;
  padding:0;
}
#about-kbc h3::before{
  display:none;
}
#about-kbc p{
  display:block;
}
#about-kbc a{
  width:100%;
}
/* 下段 */
.aboutkbc_02 {
  width:100%;
}
.aboutkbc_02 img {
  width: 100%;
  height: 14vw;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media screen and (max-width: 767px){
.aboutkbc_02 img {
  height: 53vw;
}
.aboutkbc_02 {
  width:80%;
}
.aboutkbc_01 .wp-block-column,.aboutkbc_02 .wp-block-column{
  margin-bottom: 2em !important;
    border-bottom: solid 1px #ccc;
    padding: 0 0 3em 0;
}
}
/****************** 学校概要 ******************/
.outline_flexbox,.head-teacher_flexbox{
  width: 100%;
  margin: 3em auto;
}
.outline_flexbox .wp-block-column,.head-teacher_flexbox .wp-block-column{
  width:100%;
}
.outline_flexbox .wp-block-column:first-child,.head-teacher_flexbox .wp-block-column:first-child {
  flex: 0 0 calc(40% - 0.5em);
}
.outline_flexbox .wp-block-column:last-child,.head-teacher_flexbox.wp-block-column:last-child {
  flex: 0 0 calc(60% - 0.5em);
}
.outline_flexbox .wp-block-column:last-child ul li {
  border-bottom: solid 1px #ccc;
  padding: 1em 0;
}
.outline_flexbox .wp-block-column:last-child ul li::before {
  display:none;
}
.outline_flexbox .wp-block-column:last-child ul li b {
  margin-right:1em;
}
#outline .designated_school strong {
  color: #00A0E9;
}
#outline .designated_school h3 {
  margin: 0 auto 1em auto;
  padding: 0 0 0.5em 0;
  text-align: center;
  font-size: 2.5vw;
  border-bottom: solid 1px #ccc;
}
#outline .designated_school h3::before{
  display:none
}
@media screen and (max-width: 767px){
.designated_school {
  padding: 2.5em 1.5em;
}
#outline .designated_school h3 {
  font-size: 5.5vw;
}
}
/****************** 校長挨拶 ******************/
.head-teacher_flexbox{
  width: 80%;
}
.head-teacher_flexbox h3{
  padding:0;
  margin-bottom: 1.5em;
}
.head-teacher_flexbox h3::before{
  display:none
}
.head-teacher_flexbox p{
  font-weight:bold;
}
@media screen and (max-width: 1199px) {
.head-teacher_flexbox{
  width: 100%;
}
}
/****************** 情報公開 ******************/
#disclosure table,#certificate table{
  width: 80%;
  margin: 1em auto;
  text-align:center;
  font-weight:bold;
}
#disclosure table td {
  vertical-align: middle;
}
/* #opencampus 内の table を除外する */
table:not(#opencampus table) tr:nth-child(1) {
  background: #9FBB56;
  color: #fff;
}

table:not(#opencampus table) tr:nth-child(odd):not(:first-child) {
  background: #fff;
}

table:not(#opencampus table) tr:nth-child(even) {
  background: #EAF2F5;
}
/* カリキュラム（rowspan=8） → 4〜11行目 */
.table_02 table tr:nth-child(n+4):nth-child(-n+11) {
  background: #EAF2F5 !important;
}
/* シラバス（rowspan=8） → 12〜19行目 */
.table_02 table tr:nth-child(n+12):nth-child(-n+19) {
  background: #fff !important;
}
/* 教職員 */
.table_03 table tr:nth-child(n+2):nth-child(-n+4) {
  background: #fff !important;
}
/* 基本情報 */
.table_04 table tr:nth-child(n+2):nth-child(-n+9) {
  background: #fff !important;
}
/* pdfのリンク */
.pdf_link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-right: 2em;
}
.pdf_link::after {
  content: "";
  position: absolute;
  right: 0.3em;
  top: 50%;
  transform: translateY(-50%) scale(1.8);
  width: 1em;
  height: 1em;
  background: url("../images/common/icon_pdf.png") no-repeat center / contain;
}
@media screen and (max-width: 1199px) {
#disclosure table,#certificate table{
  width: 100%;
}
}
/****************** 就職・資格top ******************/
#worklicense .wp-block-columns{
  width: 80%;
  margin:3em auto;
}
.worklicense_cont h2 {
  background: none;
  text-align: center;
  margin: 0.8em 0 0 0;
  padding: 0 0 0.3em 0;
  border-bottom: solid 1px #ccc;
}
.worklicense_cont h2 span{
  color: #fe5c2e;
  font-size:1.5em;
  margin-left: 0.2em;
}
.worklicense_cont h3::before{
  display:none;
}
.worklicense_cont h3 {
  text-align: center;
  margin: 1em auto;
}
.worklicense_cont h3 span:nth-of-type(1){
  background: linear-gradient(#ffffff00 64%, #fff000 64%);
}
.worklicense_cont h3 span:nth-of-type(2){
  color: #fe5c2e;
}
@media screen and (max-width: 767px){
#worklicense .wp-block-columns{
  width: 100%;
}
#worklicense .wp-block-columns .worklicense_cont{
  margin-bottom: 3em !important;
}
}
/****************** 就職率・就職実績 ******************/
.employment_topcont {
  width: 100%;
  background: url("..//images/contents/employment-main-img.jpg") top left / 80% auto no-repeat;
  position: relative;
  height: 30vw;
  margin: 3em auto;
}
#employment .worklicense_cont {
  position:absolute;
  bottom:0;
  right:0;
  width:40%;
  background-color:#fff;
  padding: 2em 0.5em;
}
p.worklicense_strong strong {
  margin-top:3em;
  position: relative;
  padding-bottom:0.5em;
}
p.worklicense_strong strong::after {
  content: '';
  position: absolute;
  bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  width: 8em;
  height: 3px;
  background-color: #9FBB56;
}
p.worklicense_strong strong span {
  font-size:0.7em;
}
/* 就職先リスト */
.employment_listcont {
  display: flex;
  flex-wrap: wrap !important;
  gap: 2em !important;
  width: 80%;
  margin: 3em auto;
}
.employment_listcont .wp-block-column {
  flex: 0 0 calc((100% - 2em) / 2) !important;
  box-sizing: border-box;
  border: solid 1px #ccc;
  padding: 2em;
  border-radius: 10px;
}
.employment_listcont .wp-block-column h3 {
  margin:0 0 1em 0;
  padding:0;
  text-align:center;
}
.employment_listcont .wp-block-column h3::before {
  display:none;
}
/* 就職サポートリスト */
.employment_support {
  background: repeating-linear-gradient(-45deg, #ecf9fe 0, #ecf9fe 15px, #f4fbfe 15px, #f4fbfe 30px);
  padding: 5em 0;
  position: relative;
  width: 100%;
}
.employment_supportcont {
  display: flex;
  flex-wrap: wrap !important;
  gap: 1.5em !important;
  width: 80%;
  margin: 5em auto;
  border-radius: 20px;
}
.employment_supportcont .wp-block-column {
  flex: 0 0 calc((100% - 3.5em) / 3) !important;
  box-sizing: border-box;
  padding: 2em;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 1199px) {
.employment_topcont {
  height: 50vw;
}
}
@media screen and (max-width: 767px){
.employment_topcont {
  height: 65vw;
}
#employment .worklicense_cont {
  width: 80%;
  padding: 1em 0.5em;
}
.employment_listcont {
  width: 100%;
}
.employment_support {
  padding: 3em 1em;
}
}
/****************** 資格・検定取得実績 ******************/
#qualification .wi_100 img {
  width: 100%;
}
#qualification .bottom_humanimg {
  text-align:right;
}
#qualification .bottom_humanimg img {
  width: 30%;
  margin-right: 5em;
}
@media screen and (max-width: 767px){
#qualification .bottom_humanimg img {
  width: 45%;
  margin-right: 1em;
}
}
/****************** 企業の方へ（求人受付） ******************/
#forcompany p span,#certificate p span{
  color: #f00;
}
/****************** 各種証明書の発行について（卒業生の方） ******************/
#certificate strong {
  color: #9FBB56;
  font-size: 1.3em;
  margin-bottom: 0;
  border-bottom: solid 1px #ccc;
  display: inline-block !important;
  padding: 0 2em 0.5em 2em;
}
@media screen and (max-width: 767px){
#certificate strong {
  font-size: 1.1em;
}
}
/****************** 校舎貸出 ******************/
#rental .close_cont {
  background-image: linear-gradient(90deg, #00a0e9, #9fbb56);
  border-radius: 20px;
  text-align: center;
  width: 80%;
  margin: 0 auto;
    margin-bottom: 0px;
  color: #fff;
  padding: 2em;
}
#rental .close_cont strong {
  color: #fff;
}
@media screen and (max-width: 767px){
#rental .close_cont {
  width: 100%;
}
}

/****************** NEWS一覧 ******************/
.news_cont .news_contin {
  width:60%;
  margin:0 auto;
  position: relative;
}
.post_list {
  list-style: none;
  padding: 0 !important;
  margin: 4em 0 0 0;
  width: 100%;
  list-style: none;
}
.post_list li {
  margin-bottom: 1.5em;
  border-bottom: solid 1px #CCC;
  padding: 0 0 1.7vw 0;
}
.post_list li a {
    display: flex;
    gap: 1em;
    text-decoration: none;
    color: inherit;
	overflow: hidden;
}
.post_list li a .thumb {
  width: 20%;
  height: 10vw;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 15px;
}
.post_list li a .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.post_list li a:hover .thumb img {
  transform: scale(1.2);
}
.post_list li a div {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.5em;
}
.post_list li a div .span_wrap {
  display: flex;
  gap: 0.5em;
  flex-direction: initial;
}
.post_list li a div span.day_cont {
  color:#666666;
}
.post_list li a div span.cat_cont {
  color: #000;
  background-color: #ccc;
  border-radius: 30px;
  font-size: 0.85vw;
  display: flex;
  padding: 0 1vw;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.post_list li a div b {
  font-size:1.2vw;
  line-height: 1.4em;
}
.post_list li a div p {
  font-size: 1vw;
  line-height: 1;
  width: 100%;
  border-bottom: 1px solid #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding-bottom: 0.5vw;
}
.post_list li a div p::after {
  background: url("../images/common/arrow.png") no-repeat center / contain;
  content: "";
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.newslist_link {
  position: absolute;
  top: 2em;
  right: 0;
  color: #00A0E9;
  display: inline-flex;
  align-items: center;
}
.newslist_link::after {
  background: url("../images/common/arrow_blue.png") no-repeat center / contain;
  content: "";
  width: 1.5em;
  height: 1em;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 1199px) {
.news_cont .news_contin {
  width: 90%;
}
.post_list {
  margin: 4vw 0 0 0;
}
.post_list li a .thumb {
  height: 12vw;
  border-radius: 10px;
}
.post_list li a div span.day_cont {
  font-size: 1.5vw;
}
.post_list li a div span.cat_cont {
  font-size: 1vw;
  padding: 0 1.5vw;
}
.post_list li a div b {
  font-size: 2vw;
}
.post_list li a div p {
  font-size: 1.8vw;
}
}
@media screen and (max-width: 767px){
.newslist_link {
  top: 0.5em;
}
.post_list li a .thumb {
  width: 30%;
  height: 26vw;
  border-radius: 5px;
  margin-bottom: 1em;
}
.post_list li a div {
  width: 100%;
  display: block;
}
.post_list li a div .span_wrap {
  font-size: 3.5vw;
  margin-bottom: 0.5em;
}
.post_list li a div span.day_cont {
  font-size: 3vw;
}
.post_list li a div span.cat_cont {
  font-size: 2.5vw;
  padding: 0 3vw;
}
.post_list li a div b {
  font-size: 4vw;
}
.post_list li a div p {
  font-size: 3.5vw;
  padding-bottom: 2vw;
  justify-content: flex-end;
}
}
/****************** 入学方法 ******************/
@media screen and (max-width: 767px){
#entrance .wp-block-column{
  margin-bottom: 3em !important;
}
}
/****************** 在校生の皆さまへ一覧 ******************/
.students-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
    margin: 3em 0;
}
.students-item {
    display: block;
    text-decoration: none;
    color: inherit;
}
.students-thumb img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}
h3.students-title {
  margin: 0.2em 0 0.5em 0;
  line-height: 1.4;
  padding: 0;
}
h3.students-title::before {
  display: none !important;
}
.students-date {
  font-size: 1em;
  margin-top: 0.5em;
}

/* タブレット：2カラム */
@media (max-width: 900px) {
    .students-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* スマホ：1カラム */
@media (max-width: 600px) {
    .students-grid {
        grid-template-columns: 1fr;
    }
}
/****************** 学校行事・イベント ******************/
.event_contents {
  border: solid 1px #ccc;
  width: 80%;
  margin: 3em auto;
  padding: 1em;
}
@media screen and (max-width: 767px){
.event_contents {
  width: 100%;
}
}
/****************** 学費支援制度 ******************/
#support-system .c-tabList__button,#support .c-tabList__button{
  background-color:#00A0E9;
  color: #fff;
}
#support-system .c-tabList__button[role="tab"][aria-selected="true"],
#support .c-tabList__button[role="tab"][aria-selected="true"] {
background-color: #00A0E9 !important;
  color: #fff;
  font-weight: bold;
}
.please_cont {
  width: 90%;
  margin: 1em auto;
  padding: 1.5em 3em;
  background: linear-gradient(90deg, #8ddec8 0%, #17b8d2 100%);
}
.please_cont strong {
  font-size: 1.1em;
}
@media screen and (max-width: 767px){
#support-system .c-tabList .c-tabList__item,#support .c-tabList .c-tabList__item {
  width: 50%;
  padding: 0.1em 0;
}
#support-system .c-tabList__button,#support .c-tabList__button{
  display: block;
  padding: 1.2em 1em;
  width: 98%;
}
#support-system .c-tabList li .c-tabList__button,#support .c-tabList li .c-tabList__button {
  line-height: 1.5em;
}
#support-system .c-tabList li:nth-child(odd) .c-tabList__button,
#support .c-tabList li:nth-child(odd) .c-tabList__button {
  margin-right: 1%;
}
#support-system .c-tabList li:nth-child(even) .c-tabList__button,
#support .c-tabList li:nth-child(even) .c-tabList__button {
  margin-left: 1%;
  float: right;
}
#support-system .c-tabList__button br,#support .c-tabList__button br {
  display: none;
}
.please_cont {
  padding: 1.5em 1em;
}
}
/****************** 入学方法 ******************/
.tab_four ul.c-tabList {
  background: #eaf1f3;
  padding: 2em 3em !important;
}
.tab_four ul.c-tabList .c-tabList__button {
  border: 1px solid #00aaeb;
  padding: 1.5em 2em;
  background-color:#00aaeb;
  color:#fff;
  font-weight: bold;
  font-size:1em;
}
.tab_four ul.c-tabList .c-tabList__button[role="tab"][aria-selected="true"] {
  background-color:#fff !important;
  color: #00aaeb;
}
.tab_four .c-tabList {
  gap: 0;
}
.tab_four .c-tabList .c-tabList__item {
  flex: 0 0 calc((100% - 6em) / 4); /* 6em = 2em × 3箇所 */
  margin: 0;
  text-align: center;
}
.tab_four .c-tabList .c-tabList__item:nth-child(-n+3) {
  margin-right: 2em;
}
.tab_four h2 {
  background:none;
  display: block;
  text-align:center;
}
.tab_four h2 span {
  display: inline-block;
  position: relative;
  padding: 0;
  margin: 0 auto;
}
.tab_four h2 span::before,
.tab_four h2 span::after {
  background-color: #00A0E9;
  content: "";
  height: 3px;
  width: 60px; /* 横線の長さ */
  position:absolute;
  top: 50%;
    transform:  translateY(-50%);
  -webkit-transform : translateY(-50%);
  transform : translateY(-50%);
    -ms-transform: translateY(-50%);
}
.tab_four h2 span::before {
  left:-3em;
}
.tab_four h2 span::after {
  right:-3em;
}
.tab_four .c-tabList .c-tabList__button:hover {
  background-color: #00aaeb;
}
.step_group {
  border: solid 1px #ccc;
  padding: 2em 3em;
  margin-bottom: 4em;
}
@media screen and (max-width: 1199px) {
.tab_four ul.c-tabList .c-tabList__button {
  padding: 1.5em 0.5em;
  font-size: 0.9em;
}
}
@media screen and (max-width: 767px){
.tab_four ul.c-tabList {
  padding: 2em 1em !important;
    justify-content: flex-start !important;
    gap: 0 !important;
}
.tab_four .c-tabList .c-tabList__item {
  flex: 0 0 calc((100% - 1em) / 2) !important;
  margin-right: 0 !important;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
  .tab_four .c-tabList .c-tabList__item:nth-child(odd) {
    margin-right: 1em !important;
  }
.tab_four h2 span::before, .tab_four h2 span::after {
  width: 40px;
}
.step_group {
  padding: 2em 1.5em;
  margin-bottom: 3em;
}
}
