@charset "UTF-8";
/* ---------------------------------------
  .page_content
-----------------------------------------*/
.page_content {
  padding-top: 10rem;
}
@media screen and (max-width: 700px) { /* SP */
  .page_content {
    padding-top: 5rem;
  }
}

/* ---------------------------------------
  .page_title（旧 ttl_box）
-----------------------------------------*/
.page_title h1 {
  max-width: 20em;
  margin: 0 auto 6rem;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  word-break: normal;
}
@media screen and (max-width: 700px) { /* SP */
  .page_title h1 {
    max-width: none;
    padding: 0 1.6rem;
    font-size: 2.8rem;
  }
}

/* ---------------------------------------
  .anchor_nav（旧 anc_box）
-----------------------------------------*/
.anchor_nav {
    margin-top: 6rem;
}
.anchor_nav .list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.anchor_nav a {
    display: flex;
    align-items: center;
    padding: 1rem 1.8rem;
    border: 1px solid var(--color-main-dark);
    border-radius: 999px;
    background-color: #fff;
    color: var(--color-main-dark);
    font-weight: 500;
    word-break: keep-all;
    transition: background-color 0.15s ease,color 0.15s ease;
}
.anchor_nav a::after {
    content: "›";
    position: relative;
    top: -0.1em;
    margin-left: 0.6rem;
    flex-shrink: 0;
    font-size: 2.4rem;
}
@media screen and (max-width: 700px) { /* SP */
  .anchor_nav a::after {
    display: none;
  }
}
@media (any-hover: hover) {
  .anchor_nav a:hover {
      border-color: var(--color-main);
      background-color: var(--color-main);
      color: #fff;
  }
}

/* ---------------------------------------
  .page_section（旧 sec_clm）
-----------------------------------------*/
.page_section { /* 最初の section */
  margin-top: 6rem;
}
.page_section + .page_section {
  margin-top: 10rem;
}
@media screen and (max-width: 700px) { /* SP */
  .page_section {
    margin-top: 8rem;
  }
  .page_section + .page_section {
    margin-top: 8rem;
  }
}
.page_section .section_title {
  position: relative;
  padding-left: 2.4rem;
  color: #333;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
  word-break: keep-all;
}
@media screen and (max-width: 700px) { /* SP */
  .page_section .section_title {
    font-size: 2.4rem;
  }
}
.page_section .section_title::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width:  0.6rem;
  height: 1.1em;
  border-radius: 999px;
  background-color: var(--color-main);
}
.section_content {
  margin-top: 2.4rem;
}
.section_text {
  line-height: 2;
  letter-spacing: 0.02em;
}
.section_text + .section_text {
  margin-top: 2rem;
}
@media screen and (max-width: 700px) { /* SP */
  .section_text + .section_text {
    margin-top: 3rem;
  }
}
.page_section a {
  color: var(--color-main-dark);
  transition: color 0.15s ease;
}
@media (any-hover: hover) {
  .page_section a:hover {
    color: var(--color-main);
  }
}
.page_section em {
  font-size: 1.4rem;
  color: #c33;
}

/* ---------------------------------------
  .page_subtitle
-----------------------------------------*/
.page_subtitle{
  position: relative;
  padding-left: 1.2rem;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
}
.page_subtitle::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 0.3rem;
  height: 0.9em;
  border-radius: 999px;
  background: var(--color-main);
}

/* ---------------------------------------
  .image_right_layout（旧 clm_01）
-----------------------------------------*/
.image_right_layout .wrap + .wrap {
  margin-top: 3rem;
}
.image_right_layout .flex {
  display: flex;
  gap: 0 4rem;
}
@media screen and (max-width: 700px) { /* SP */
  .image_right_layout .flex {
    flex-direction: column;
    gap: 3rem 0;
  }
}
.image_right_layout .flex .img_box {
  width: 24rem;
  flex: none;
}
@media screen and (max-width: 700px) { /* SP */
  .image_right_layout .flex .img_box {
    width: 100%;
    max-width: 28rem;
    margin: 0 auto;
  }
}

/* ---------------------------------------
  .application_list_layout 受講申込み
-----------------------------------------*/
.application_list_layout .application_list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  max-width: 82rem;
  margin-top: 2.4rem;
}
.application_list .list_item {
  display: grid;
  grid-template-columns: 8rem 1fr 26rem;
  gap: 1rem;
  align-items: center;
  padding: 1.6rem;
  border: 1px solid #c8ced6;
  border-radius: 1.6rem;
}
.application_list .item_type {
  white-space: nowrap;
}
.application_list .item_name {
  line-height: 1.6;
  word-break: keep-all;
}
.application_list .wide_item .item_name {
  grid-column: 1 / 3;
}
.application_list .item_links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.application_list .item_links .btn {
  display: block;
  min-width: 12rem;
  padding: 1rem 0;
  border-radius: 0.7rem;
  background-color: var(--color-main-dark);
  color: #fff;
  text-align: center;
  transition: background-color 0.15s ease;
}
@media (any-hover: hover) {
  .application_list .item_links .btn:hover {
    background-color: var(--color-main);
  }
}
@media screen and (max-width: 700px) { /* SP */
  .application_list .list_item {
    display: block;
    padding: 2rem;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0,0,0,.08);
  }
  .application_list .item_type,
  .application_list .item_name {
    display: inline;
  }
  .application_list .item_type::after {
    content: " ";
  }
  .application_list .item_links {
    justify-content: flex-end;
    margin-top: 1rem;
  }
}


/* ---------------------------------------
  .schedule_table_layout 講習日程
-----------------------------------------*/
.schedule_table_scroll{
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
}
.schedule_table_scroll .schedule_table {
  width: 100%;
}
.schedule_table th,
.schedule_table td {
  border: 1px solid #c8ced6;
  text-align: center;
  white-space: nowrap;
}
.schedule_table th {
  padding: 1rem;
  background-color: #f8fafc;
  font-weight: 500;
}
.schedule_table td {
  padding: 1.2rem 0.6rem;
  line-height: 1.4;
}
.schedule_table .closed {
  background-color: #eee;
  color: #666;
}
@media screen and (max-width: 700px) { /* SP */
  .schedule_table thead {
    display: none;
  }
  .schedule_table tr {
    display: block;
    margin-bottom: 1.6rem;
    padding: 1.0rem 1.6rem;
    border: 1px solid #ddd;
    border-radius: 1.6rem;
    box-shadow: 0 4px 10px rgba(0,0,0,.08);
  }
  .schedule_table td {
    display: flex;
    gap: 0.2rem;
    align-items: center;
    padding: 0.3rem 0;
    border: 0;
    text-align: left;
    white-space: normal;
  }
  .schedule_table td::before {
    content: attr(data-label) "：";
    width: 6em;
    flex-shrink: 0;
    color: #666;
    font-size: 1.2rem;
  }
  .schedule_table em {
    display: contents;
  }
}
.schedule_note {
  margin-top: 1.0rem;
  font-size: 1.4rem;
  line-height: 1.6;
}
.schedule_note + .schedule_note {
  margin-top: 0.4rem;
}

/* ---------------------------------------
  .square_list_layout 四角形画像付きダウンロードボタン
-----------------------------------------*/
.square_list_layout .square_list{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(20rem,1fr));
  gap: 2rem;
  margin-top: 4rem;
}
.square_list .list_item{ /* card */
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--color-main-dark);
  border-radius: 1.2rem;
  background: #f7fbff;
  box-shadow:0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.square_list .list_item:hover{
  border-color: var(--color-main);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.square_list .list_item_primary{
  border-color: #217346;
  background: #f7fbff;
}
.square_list .list_item.compact{
  margin-top: 2rem;
}
.square_list .card_link{
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.square_list .item_name {
  min-height: 4em;
  padding: 1.2rem 1rem 0.6rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.square_list .list_item.compact .item_name{
  min-height: 2em;
}
.square_list .item_note{
  padding: 0 1rem 0.8rem;
  color: #666;
  font-size: 1.2rem;
  line-height: 1.4;
  text-align: center;
}
.square_list .item_image {
  overflow: hidden;
  aspect-ratio: 4/3;
  margin: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.4rem;
  background: #fff;
}
.square_list .item_image img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.square_list .item_filetype{
  margin-top: auto;
  padding: 1rem 0;
  background: var(--color-main-dark);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  transition: background-color 0.2s ease;
}
.square_list .card_link:hover .item_filetype{
  background: var(--color-main);
}
.square_list .list_item_primary .item_filetype{
  background: #217346;
}
@media screen and (max-width: 700px) { /* SP */
  .square_list .item_name{
    font-size: 1.5rem;
  }
}

/* ---------------------------------------
  .page_note
-----------------------------------------*/
.page_note{
  margin-top: 4rem;
}
.page_note_title{
  font-size: 1.7rem;
  font-weight: 700;
  color: #333;
}
.page_note_list{
  margin-top:1.5rem;
}
.page_note_list li{
  position: relative;
  padding-left: 2rem;
  font-size: 1.5rem;
  line-height: 1.8;
}
.page_note_list li::before{
  content: "•";
  position: absolute;
  left: 0.6rem;
  color: var(--color-main);
  font-weight: 700;
}
.page_note_list li + li{
  margin-top: 1rem;
}

