@charset "utf-8";

/* =======================
   Reset & Base
======================= */
* { padding: 0;margin: 0;box-sizing: border-box;}
html {font-size: 15px;background-color: #f3f3f3;font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", メイリオ, Meiryo, sans-serif;
}
a {text-decoration: none;color: #535353;}
li {list-style: none;}
ul {padding-left: 0;}
img {width: 100%;height: auto;vertical-align: bottom;}
.none {display: none;}
.main-container{padding: 10px;max-width: 1000px;margin: 0 auto;}

/* =======================
   pankuzu
======================= */
.pan {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  font-size: 13px;
  margin-top: 5px;
  margin-left: 3px;
}

.pan li:not(:last-of-type)::after {
  content: ">";
  margin: 0 .2em;
  /* 記号の左右の余白 */
  color: #777;
  /* 記号の色 */
}

.pan a {
  color: inherit;
  text-decoration: none;
  color: #0a82e4;
}



/* =======================
   Header
======================= */
.l-header {margin: 0 auto;padding: 10px 5px;display: flex;align-items: center;max-width: 1000px;}
.l-header__logo {width: 140px;display: inline-block;}



/* =======================
   Top
======================= */


.top h1 {
  margin: 0 auto;
  border: 1px solid #afafaf;
}

.top img{width: 100%;}

.school_top-text {
  text-align: center;
  margin: 30px 0;
  /* font-weight: bold; */
}


/* =======================
   School Cards(学校ページリンク部分)
======================= */

.school-name{
  font-weight: bold;
  color: #0076d6;
  height: 45px;
  margin-bottom: 10px;
}

.card-container {
  padding: 20px 0px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}
.card-link {
  text-decoration: none;
  color: inherit;
}
.card {
  background-color: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 16px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.image-and-fields {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.school-image {
  width: 120px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.fields {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  align-content: flex-start;
  flex-grow: 1;
}
.field {
  background-color: #e0e0e0;
  border-radius: 8px;
  padding: 2px 5px;
  font-size: 0.8rem;
}

.fields p{
  font-size: 0.8rem;
  color: #696969;
}

.description {
  margin-bottom: 17px;
  height: 60px;
  font-size: 0.9rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3px;
}
.area-tag {
  font-size: 0.85rem;
  color: #4c5891;
  white-space: nowrap;
}
.cv-button {
  padding: 12px 18px;
  font-size: 0.9rem;
  background-color: #ee5b5b;
  color: white;
  border-radius: 6px;
  transition: background-color 0.2s;
}
.cv-button:hover {
  background-color: #bd2424;
}
.arrow {
  padding-left: 10px;
  font-size: 1.4em;
  line-height: 0.8;
}


/* =======================
   Contents 1（専門学校の分野やコース）
======================= */

.contents {
  margin: 0 auto;
  /* font-weight: bold; */
}
.heading-40 {
  margin: 130px 0 50px;
  text-align: center;
  font-size: 25px;
  padding: 0.5em 0.7em;
  border-top: 2px solid #1c9fb0;
  border-bottom: 2px solid #1c9fb0;
  background-color: #1c9fb00d;
  background-image: linear-gradient(45deg,#1c9fb012 25%,transparent 25%,transparent 50%,#1c9fb012 50%,#1c9fb012 75%,transparent 75%,transparent),linear-gradient(-45deg,#1c9fb012 25%,transparent 25%,transparent 50%,#1c9fb012 50%,#1c9fb012 75%,transparent 75%,transparent);
  background-size: 20px 20px;
  color: #1c9fb0;
}
.box1_first-text {
  margin: 40px auto;
  max-width: 800px;
}

.box1_second-text{
  display: block;
  max-width: 800px;
  margin: 0 auto;
}
.box1 p .small {
  font-size: 13px;
  display: block;
}
.box1 p .color_1 {
  font-weight: bold;
  color: #fff;
  background-color: #2c4c86;
  padding: 0px 15px;
  font-size: 18px;
  border-radius: 10px;
}
.box1_last-text {
  text-align: center;
  margin: 40px auto;
}
.course {
  max-width: 800px;
  padding: 10px 0;
  position: relative;
  margin: 40px auto 0px;

}
.course ul {
  background-color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px 10px;
  padding: 10px;
  box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}
.course li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.95rem;
}
.course li img {
  width: 24px;
  height: 24px;
}
.corner-image {
  position: absolute;
  bottom: -5px;
  right: 15px;
  width: 270px;
  pointer-events: none;
}

.circle{max-width: 600px;margin: 0 auto;}


/* =======================
   Contents 2 (パンフカード)
======================= */
.box2 {
  margin-top: 30px;
}
.box2 .ochikomineko {
  max-width: 600px;
  margin: 0 auto 20px;
}

.pf_text-top_2 {
  margin-bottom: 40px;
  text-align: center;
}
.pf_card-container {
  /* font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", メイリオ, Meiryo, sans-serif; */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0 auto 80px;
}
.pf_card-link {
  border: 1px solid #ccc;
  border-radius: 8px;
  background: white;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
}
.pf_card-link:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.pf_card-content {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px;
  padding: 0px 10px 10px 10px;
  flex: 1;
}
.pf_card-left img {
  width: 100px;
  height: 75px;
  object-fit: cover;
  border-radius: 4px;
}
.pf_school-name {
  font-size: 1rem;
  font-weight: bold;
  margin: 10px;
}
.pf_small-info {
  font-size: 0.8rem;
  color: #555;
  margin-bottom: 4px;
}
.pf_btn-request {
  color: #2c5dc7;
  font-weight: bold;
  font-size: 0.95rem;
  text-align: right;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
}




/* =======================
   Contents 3（オープンキャンパスに参加しよう）
======================= */
.heading-12 {
  position: relative;
  width: 400px;
  margin: 0 auto 40px;
  padding: 0.5em 0.7em;
  background-color: #ff6188;
  color: #fff;
  text-align: center;
}
.heading-12::before,
.heading-12::after {
  position: absolute;
  bottom: -10px;
  z-index: -1;
  border-style: solid;
  border-color: #ef5178;
  content: "";
}
.heading-12::before {
  left: -30px;
  border-width: 25px 25px 25px 15px;
  border-left-color: transparent;
}
.heading-12::after {
  right: -30px;
  border-width: 25px 15px 25px 25px;
  border-right-color: transparent;
}
.heading-12 span::before,
.heading-12 span::after {
  position: absolute;
  bottom: -10px;
  width: 10px;
  height: 10px;
  background-color: #9f0128;
  content: "";
}
.heading-12 span::before {
  left: 0;
  clip-path: polygon(0 0, 100% 0%, 100% 100%);
}
.heading-12 span::after {
  right: 0;
  clip-path: polygon(0 0, 100% 0%, 0% 100%);
}
.box3 p {
  text-align: center;
  margin-bottom: 40px;
}
.check_container {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 8px;
  margin: 0 auto;
  align-items: start;
}
.illustration {
  max-width: 200px;
  height: 100%;
  position: relative;
}
.illustration img {
  width: 100%;
  border-radius: 4px;
  position: absolute;
  bottom: 0;
}
.checklist-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  background-color: #fff;
}
.checklist-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 16px;
}
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: 20px;
}
label {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  cursor: pointer;
}
input[type="checkbox"] {
  margin-right: 8px;
}

.check_1{margin-bottom: 20px;padding-bottom: 30px;border-bottom: 2px dotted #b8b8b8;}

/* =======================
   Footer
======================= */
.l-footer {
  max-width: 900px;
  margin: 50px auto 0;
  font-size: 62.5%;
}
.l-footer__container {
  padding: 0 10px 16px;
  margin-top: 40px;
}
.l-footer__logo {
  display: block;
  width: 80px;
  margin: 0 auto;
}
.l-footer__list {
  margin-top: 40px;
  padding: 0 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.l-footer__link {
  font-size: 1rem;
}
.l-footer__copy {
  margin-top: 30px;
  text-align: center;
}







/* =======================
   Responsive
======================= */

@media (max-width: 650px) {
.none{display: block;}
.none_sp{display: none;}

/* =======================
   Top
======================= */

.school_top-text {font-size: 13px;}


/* =======================
   School Cards(学校ページリンク部分)
======================= */

.school-name{font-size: 14px;height: auto;}
.card-container {gap: 10px;}
.card {border-radius: 8px;box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);}
.field {border-radius: 5px;padding: 3px 5px;font-size: 0.8rem;}
.description {height: auto;font-size: 13px;}
.card-footer {gap: 5px;}
.area-tag {font-size: 0.85rem;}
.cv-button {padding: 8px 25px 10px 25px;font-size: 0.9rem;}
.school-image {
  width: 140px;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}


/* =======================
   Contents 1（専門学校の分野やコース）
======================= */

.heading-40 {margin: 80px 0 30px;font-size: 20px;}
.box1_first-text {margin: 0px auto 30px;font-size: 13px;}
.box1_second-text{line-height: 1.1;font-size: 13px;}
.box1 p .small {font-size: 13px;}
.box1 p .color_1 {padding: 2px 10px;font-size: 16px;border-radius: 5px;}
.box1_last-text {font-size: 13px;}
.course {padding-top: 3px;}
.course ul {display: block;}
.course li {padding: 0px;font-size: 13px;}
.corner-image {position: absolute;bottom: -28px;right: 5px;width: 230px;pointer-events: none;}



/* =======================
   Contents 2 (パンフカード)
======================= */

.box2 .ochikomineko {margin: 0 auto 40px;width: 90%;}
.pf_text-top_2{margin-bottom: 50px;font-size: 13px;}
.pf_card-container {display: block;}
.pf_card-link {margin-bottom: 5px;}
.pf_card-content {padding: 0px 10px 10px 10px;}
.pf_school-name {font-size: 0.95rem;margin: 15px 10px;}
.pf_btn-request {color: #353e75;margin-top: 20px;}


/* =======================
   Contents 3（オープンキャンパスに参加しよう）
======================= */
.heading-12 {line-height: 1.2;font-size: 20px;position: relative;width: 270px;margin: 0 auto 40px;padding: 0.5em 0.7em;}
.box3 p {font-size: 13px;margin-bottom: 60px;}

  .check_container {
    display: block; /* カラム→縦並び */
    position: relative; /* 子要素をabsoluteで配置できるようにする */
  }

  .illustration {
    position: absolute;
    top: -75px; /* 上から少し出す */
    left: 0px; /* 右上に配置 */
    max-width: 120px; /* 小さめに調整 */
    z-index: 2; /* カードより上に出す */
  }

  .illustration img {
    position: static; /* absolute解除（自然なサイズに） */
    width: 100%;
    max-width: 80px;
    height: auto;
  }
  .check_1 {padding-bottom: 20px;}

.checklist-card {position: relative;padding: 10px;}
.checklist-title {font-size: 17px;}
.checklist-grid {display: block;}
label {font-size: 14px;margin-bottom: 5px;}

.pf_text-top_2 {
  text-align-last: left;
}


/* =======================
   Footer
======================= */
  .l-footer__list {padding: 0 10px;gap: 10px;}
  .l-footer__link {font-size: 0.9rem;}
  .l-footer__copy {margin-top: 10px;}
}