@charset "utf-8";
/* CSS Document */
/* ssk-support: 特定技能外国人のスキルアップと働きやすい職場づくり支援 */

/* ========================================
   カラーパレット（BEM modifier用）
   ======================================== */
:root {
  --ssk-skill-bg: #c5efff;
  --ssk-skill-border: #64D7FF;
  --ssk-skill-accent: #006695;
  --ssk-skill-bar: #00a7e0;
  --ssk-workplace-bg: #ffd8a7;
  --ssk-workplace-border: #ffb255;
  --ssk-workplace-accent: #7e4500;
  --ssk-workplace-bar: #f39c12;
  --ssk-daily-bg: #d4eda9;
  --ssk-daily-border: #aadd56;
  --ssk-daily-accent: #1e7600;
  --ssk-daily-bar: #43a047;
  --ssk-btn-bg: #00c0ff;
  --ssk-btn-hover: #0091c9;
  --ssk-text: #363b43;
  --ssk-text-light: #666;
}

/* ========================================
   ベース
   ======================================== */
.ssk-support {
  /*font-family: "HiraMaruPro W4-83pv-RKSJ-H*", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "Rounded Mplus 1c", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
  color: var(--ssk-text);
  @media screen and (max-width: 768px) {
    padding-bottom: 36px;
  }
}

/* メイン見出し */
.ssk-support__heading {
  position: relative;
  padding-left: 16px;
  margin-bottom: 1em;
  font-size: clamp(20px, 4vw, 24px);
  font-weight: bold;
  line-height: 1.4;
  @media screen and (max-width: 680px) {
    padding-left: 12px;
    margin-bottom: 0.8em;
  }
}

.ssk-support__heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  bottom: 0.1em;
  width: 4px;
  background: var(--ssk-skill-bar);
  border-radius: 2px;
  @media screen and (max-width: 680px) {
    width: 3px;
  }
}

/* リード文 */
.ssk-support__lead {
  margin-bottom: 2em;
  font-size: clamp(15px, 3.5vw, 16px);
  line-height: 1.8;
  @media screen and (max-width: 680px) {
    margin-bottom: 1.5em;
    margin-top: 40px;
  }
}

/* ========================================
   カテゴリ概要ボックス
   ======================================== */
.ssk-support__category-carousel {
  margin-bottom: 2em;
}

.ssk-support__category-carousel-viewport {
  overflow: visible;
}

.ssk-support__category-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  @media screen and (max-width: 1000px) {
    gap: 16px;
  }
  @media screen and (max-width: 680px) {
    display: flex;
    flex-direction: column;
    grid-template-columns: unset;
    gap: 10px;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 680px) {
  .ssk-support__category-carousel {
    margin-bottom: 30px;
  }

  .ssk-support__category-carousel-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .ssk-support__category-carousel-viewport::-webkit-scrollbar {
    display: none;
  }
}

.ssk-support__category-item {
  padding: 24px 20px;
  border-radius: 12px;
  text-align: center;
  transition: box-shadow 0.2s;
  @media screen and (max-width: 1000px) {
    padding: 20px 16px;
  }
  @media screen and (max-width: 680px) {
    flex: 0 0 auto;
    /* width: calc(100vw - 120px);
    min-width: 260px;
    max-width: 320px; */
    padding: 14px 24px;
    /* scroll-snap-align: start; */
  }
}

.ssk-support__category-item:nth-child(1) {
  background: var(--ssk-skill-bg);
  border-color: var(--ssk-skill-border);
}

.ssk-support__category-item:nth-child(1) .ssk-support__category-title {
  color: var(--ssk-skill-accent);
}

.ssk-support__category-item:nth-child(2) {
  background: var(--ssk-workplace-bg);
  border-color: var(--ssk-workplace-border);
}

.ssk-support__category-item:nth-child(2) .ssk-support__category-title {
  color: var(--ssk-workplace-accent);
}

.ssk-support__category-item:nth-child(3) {
  background: var(--ssk-daily-bg);
  border-color: var(--ssk-daily-border);
}

.ssk-support__category-item:nth-child(3) .ssk-support__category-title {
  color: var(--ssk-daily-accent);
}

.ssk-support__category-icon {
  margin-bottom: 12px;
  gap: 10px;
  display: flex;
  align-items: center;
  text-align: left;
}

.ssk-support__category-icon img {
  width: 73px;
  height: 84px;
  object-fit: contain;
  @media screen and (max-width: 1000px) {
    width: 50px;
    height: 50px;
  }
  @media screen and (max-width: 680px) {
    width: 52px;
    height: 52px;
  }
}

.ssk-support__category-title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
  @media screen and (max-width: 1000px) {
    font-size: 18px;
  }
}

.ssk-support__category-desc {
  margin: 0;
  font-size: 16px;
  text-align: left;
  line-height: 1.6;
  color: var(--ssk-text);
  @media screen and (max-width: 1000px) {
    font-size: 13px;
  }
}

/* ========================================
   案内文
   ======================================== */
.ssk-support__notice {
  margin-bottom: 90px;
  font-size: clamp(15px, 3.5vw, 16px);
  line-height: 1.8;
  @media screen and (max-width: 680px) {
    margin-bottom: 60px;
  }
}

/* ========================================
   セクション
   ======================================== */
.ssk-support__section {
  margin-bottom: 70px;
  @media screen and (max-width: 768px) {
    margin-bottom: 60px;
  }
}

.ssk-support__section-heading {
  position: relative;
  margin: 0 0 0.5em;
  padding: 14px 20px 14px 52px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  border-radius: 6px 6px 0 0;
  @media screen and (max-width: 680px) {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 20px 30px 20px 103px;
    font-size: 18px;
    border-radius: 0;
    box-sizing: border-box;
    margin-bottom: 20px;
  }
}

.ssk-support__section-heading::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 27px;
  height: 27px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  @media screen and (max-width: 680px) {
    width: 65px;
    height: 65px;
    left: 20px;
  }
}

.ssk-support__section:nth-of-type(2) .ssk-support__section-heading {
  background: var(--ssk-skill-bg);
  color: var(--ssk-skill-accent);
}

.ssk-support__section:nth-of-type(2) .ssk-support__section-heading::before {
  background-image: url(/support-service/files/lineup-icon1.svg);
}

.ssk-support__section:nth-of-type(2) .ssk-support__card {
  border-color: var(--ssk-skill-border);
}

.ssk-support__section:nth-of-type(3) .ssk-support__section-heading {
  background: var(--ssk-workplace-bg);
  color: var(--ssk-workplace-accent);
}

.ssk-support__section:nth-of-type(3) .ssk-support__section-heading::before {
  background-image: url(/support-service/files/lineup-icon2.svg);
}

.ssk-support__section:nth-of-type(3) .ssk-support__card {
  border-color: var(--ssk-workplace-border);
}

.ssk-support__section:nth-of-type(4) .ssk-support__section-heading {
  background: var(--ssk-daily-bg);
  color: var(--ssk-daily-accent);
}

.ssk-support__section:nth-of-type(4) .ssk-support__section-heading::before {
  background-image: url(/support-service/files/lineup-icon3.svg);
}

.ssk-support__section:nth-of-type(4) .ssk-support__card {
  border-color: var(--ssk-daily-border);
}

.ssk-support__section-desc {
  margin: 0 0 0 24px;
  display: inline-block;
  color: #363b43;
  font-size: clamp(15px, 3.5vw, 16px);
  @media screen and (max-width: 680px) {
    margin-bottom: 1.2em;
    font-size: 14px;
    margin-left: 0;
    margin-bottom: 0;
  }
}

/* ========================================
   サービスカード
   ======================================== */
.ssk-support__card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  @media screen and (max-width: 1000px) {
    gap: 20px 16px;
  }
  @media screen and (max-width: 680px) {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.ssk-support__card {
  /* display: flex;
  flex-direction: column; */
  padding: 24px 20px;
  background: #fff;
  border: 4px solid;
  border-radius: 5px;
  transition: box-shadow 0.2s;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 0;
  @media screen and (max-width: 680px) {
    padding: 16px 20px;
  }
}

.ssk-support__card-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.system-change2__text{
  display: inline-block;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  line-height: 1.2;
  padding: 2px 6px;
  background-color: #d01900;
}

.ssk-support__card--has-system-change .system-change__text {
  display: inline-block;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.2;
  padding: 6px 12px;
  border-radius: 5px;
  background-color: #D01900;
}

.ssk-support__card--has-system-change .ssk-support__card-desc{
  margin-bottom: 10px;
}

.ssk-support__card-icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 84px;
  width: 100%;
  margin: 0 auto 20px;
}

.ssk-support__card-icon img{
  width: 98px;
}

/* .ssk-support__card:nth-child(4) .ssk-support__card-icon,
.ssk-support__card:nth-child(5) .ssk-support__card-icon{
  min-height: 100px;
}
.ssk-support__section:nth-of-type(3) .ssk-support__card:nth-child(1) .ssk-support__card-icon,
.ssk-support__section:nth-of-type(3) .ssk-support__card:nth-child(2) .ssk-support__card-icon,
.ssk-support__section:nth-of-type(3) .ssk-support__card:nth-child(3) .ssk-support__card-icon{
  min-height: 102px;
}

.ssk-support__section:nth-of-type(3) .ssk-support__card:nth-child(4) .ssk-support__card-icon,
.ssk-support__section:nth-of-type(3) .ssk-support__card:nth-child(5) .ssk-support__card-icon{
  min-height: 101px;
}

.ssk-support__section:nth-of-type(3) .ssk-support__card:nth-child(4) .ssk-support__card-icon{
  margin-bottom: 49px;
  @media screen and (max-width: 768px) {
    margin-bottom: 20px;
  }
}

.ssk-support__section:nth-of-type(3) .ssk-support__card:nth-child(5) .ssk-support__card-icon{
  min-height: 101px;
}

.ssk-support__section:nth-of-type(4) .ssk-support__card:nth-child(1) .ssk-support__card-icon,
.ssk-support__section:nth-of-type(4) .ssk-support__card:nth-child(2) .ssk-support__card-icon{
  min-height: 111px;
} */

.ssk-support__card:nth-child(2) .ssk-support__card-icon img{
  width: 145px;
}
.ssk-support__card:nth-child(3) .ssk-support__card-icon img{
width: 156px;
}
.ssk-support__card:nth-child(4) .ssk-support__card-icon img{
width: 121px;
}
.ssk-support__card:nth-child(5) .ssk-support__card-icon img{
  width: 105px;
}

.ssk-support__section:nth-of-type(3) .ssk-support__card:nth-child(1) .ssk-support__card-icon img{
  width: 112px;
}
.ssk-support__section:nth-of-type(3) .ssk-support__card:nth-child(2) .ssk-support__card-icon img{
  width: 123px;
}
.ssk-support__section:nth-of-type(3) .ssk-support__card:nth-child(3) .ssk-support__card-icon img{
  width: 105px;
}
.ssk-support__section:nth-of-type(3) .ssk-support__card:nth-child(4) .ssk-support__card-icon img{
  width: 133px;
}
.ssk-support__section:nth-of-type(3) .ssk-support__card:nth-child(5) .ssk-support__card-icon img{
  width: 145px;
}

.ssk-support__section:nth-of-type(4) .ssk-support__card:nth-child(1) .ssk-support__card-icon img{
  width: 129px;
}
.ssk-support__section:nth-of-type(4) .ssk-support__card:nth-child(2) .ssk-support__card-icon img{
  width: 199px;
}

.ssk-support__card-title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  color: var(--ssk-text);
  text-align: center;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ssk-support__card-desc {
  flex: 1;
  margin: 0 0 20px;
  font-size: 15px !important;
  line-height: 1.7;
  color: var(--ssk-text);
}

.ssk-support__card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--ssk-btn-bg);
  color: #fff !important;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none !important;
  border-radius: 8px;
  transition: background 0.2s;
  margin-top: auto;
  min-width: inherit;
  @media screen and (max-width: 680px) {
    padding: 10px 16px;
    font-size: 14px;
  }
}

a.blue_btn.ssk-support__card-link {
  min-width: inherit;
  font-size: 16px;
  box-shadow: none;
  padding: 0.8em 1em;
  margin-bottom: 0;
}

.ssk-support__card-link:hover {
  background: var(--ssk-btn-hover);
  color: #fff !important;
}

.ssk-support__card-link.arrow_b {
  position: relative;
  padding-right: 36px;
}

.ssk-support__card-link.arrow_b::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 14'%3E%3Cpath fill='%23fff' d='M1 0L7 7 1 14V0z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

/* ========================================
   パンフレット
   ======================================== */
.ssk-support__pamphlet {
  margin-top: 2.5em;
  padding-top: 2em;
  @media screen and (max-width: 680px) {
    margin-top: 2em;
    padding-top: 1.5em;
  }
}

.ssk-support__pamphlet-text {
  margin: 0 0 12px;
  font-size: clamp(15px, 3.5vw, 16px);
  line-height: 1.8;
}

.ssk-support__pamphlet-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: bold;
  color: var(--ssk-skill-accent) !important;
  text-decoration: underline !important;
  transition: color 0.2s;
  @media screen and (max-width: 680px) {
    font-size: 15px;
  }
}

.ssk-support__pamphlet-link:hover {
  color: var(--ssk-btn-hover) !important;
}

.ssk-support__pamphlet-link.arrow_b {
  position: relative;
  padding-left: 24px;
}

.ssk-support__pamphlet-link.arrow_b::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%230091c9' d='M4 0l8 6-8 6V6L12 6V0H4z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.ssk-support__pamphlet-link.pdf_back {
  position: relative;
  padding-right: 28px;
}

.ssk-support__pamphlet-link.pdf_back::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(/shared/img/icon/pdf.png) no-repeat center;
  background-size: contain;
}


/* ========================================
   母国から教える日本語講座（モンゴル語）
   ======================================== */
.page-cont-wrap--ja-native-teachers {
  color: var(--ssk-text);
}

/* read（ヒーロー・Index 2カラム） */
.page-cont-wrap--ja-native-teachers .read {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px 40px;
  padding: 32px 0 0 20px;
  margin-bottom: 48px;
  @media screen and (max-width: 680px) {
    flex-direction: column;
    padding: 24px 20px;
    margin-bottom: 36px;
    gap: 10px;
  }
}

.page-cont-wrap--ja-native-teachers .read .hero {
  flex: 1;
  min-width: 0;
  @media screen and (min-width: 681px) {
    flex: 1 1 60%;
  }
}

.page-cont-wrap--ja-native-teachers .read .index {
  flex: 0 0 auto;
  width: 100%;
  max-width: 320px;
  @media screen and (min-width: 681px) {
    flex: 0 0 calc(35% - 40px);
    max-width: none;
  }
}

/* ヒーロー */
.page-cont-wrap--ja-native-teachers .hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px 40px;
  @media screen and (max-width: 680px) {
    flex-direction: column;
    gap: 40px;
  }
}

.page-cont-wrap--ja-native-teachers .hero__imgs {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex-shrink: 0;
  min-width: 154px;
  @media screen and (max-width: 680px) {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    box-sizing: border-box;
    gap: 16px;
  }
}

.page-cont-wrap--ja-native-teachers .hero__img {
  max-width: 154px;
  height: auto;
  @media screen and (max-width: 680px) {
    max-width: 61.8%;
  }
}

.page-cont-wrap--ja-native-teachers .hero__img:nth-child(2) {
  @media screen and (max-width: 680px) {
    max-width: calc(100% - 61.8% - 16px);
  }
}

.page-cont-wrap--ja-native-teachers .hero__body {
  flex: 1;
  min-width: 0;
}

.page-cont-wrap--ja-native-teachers .hero__text {
  font-size: clamp(18px, 3.5vw, 18px);
  font-weight: bold;
  line-height: 1.75;
  margin: 0 0 0.8em;
  color: #363b43;
}

.page-cont-wrap--ja-native-teachers .hero__desc {
  font-size: clamp(15px, 3.5vw, 16px);
  line-height: 1.8;
  margin: 0 0 0.5em;
  color: #363b43;
}

.page-cont-wrap--ja-native-teachers .hero__note {
  font-size: 14px;
  color: var(--ssk-text-light);
  margin: 0.5em 0 0;
}

/* Index（目次）- page_index と同じ装飾（他ページと統一） */
.page-cont-wrap--ja-native-teachers .index.page_index {
  /* flex レイアウト内では float を無効化 */
  float: none;
  width: 29%;
  border: 4px solid #FFFFFF;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  padding: 1em 1.1em;
  position: relative;
  @media screen and (max-width: 768px) {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }
}
.page-cont-wrap--ja-native-teachers .index.page_index::before {
  position: absolute;
  content: "";
  color: #86939F;
  font-weight: bold;
  display: inline-block;
  border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  background: #FFFFFF url(/shared/img/parts/index.png) no-repeat center center/auto 60%;
  font-size: 1.9em;
  height: 1.2em;
  width: 4em;
  right: 12px;
  top: -1.3em;
}
.page-cont-wrap--ja-native-teachers .index.page_index ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
}
.page-cont-wrap--ja-native-teachers .index.page_index ul li:last-child {
  margin: 0;
}
.page-cont-wrap--ja-native-teachers .index.page_index ul li a {
  color: #363B43;
  position: relative;
  padding-left: 2em;
  line-height: 1.2;
  display: block;
}
.page-cont-wrap--ja-native-teachers .index.page_index ul li a:hover {
  color: #FF8F00;
}
.page-cont-wrap--ja-native-teachers .index.page_index ul li a:before {
  content: "";
  background: #00C0FF url(/shared/img/icon/arrow_b.svg) no-repeat center center/contain;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  width: 15px;
  height: 15px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 2px;
  transition: all 0.25s;
  
}
.page-cont-wrap--ja-native-teachers .index.page_index ul li a:hover:before {
  background: #FF8F00 url(/shared/img/icon/arrow_b.svg) no-repeat center center/contain;
}

/* 講師セクション */
.page-cont-wrap--ja-native-teachers .teacher {
}

.page-cont-wrap--ja-native-teachers .teacher__title {
  font-size: clamp(22px, 4vw, 22px);
  font-weight: bold;
  color: #333;
  margin: 0 0 32px;
  padding-left: 16px;
  border-left: 5px solid #00bcd4;
}

.page-cont-wrap--ja-native-teachers .teacher__column {
	display: grid;
    justify-content: space-between;
    grid-auto-rows: 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  @media screen and (max-width: 680px) {
    flex-direction: column;
    gap: 24px;
    grid-template-columns: none;
    grid-auto-rows: auto;
  }
}

.page-cont-wrap--ja-native-teachers .teacher__inner {
	padding: 20px 15px;
	border: 6px solid #c7f1ff;
	border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
  @media screen and (max-width: 680px) {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
}

.page-cont-wrap--ja-native-teachers .teacher__img-wrap {
  flex-shrink: 0;
  width: 100%;
  max-width: 222px;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
  @media screen and (max-width: 680px) {
    width: 206px;
    border-radius: 16px;
  }
}

.page-cont-wrap--ja-native-teachers .teacher__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-cont-wrap--ja-native-teachers .teacher__body {
  flex: 1;
  min-width: 0;
}

.page-cont-wrap--ja-native-teachers .teacher__name {
  font-size: clamp(18px, 3.5vw, 18px);
  font-weight: bold;
  color: #333;
  margin: 10px 0;
  @media screen and (max-width: 768px) {
    margin-left: 0px;
  }
}

.page-cont-wrap--ja-native-teachers .teacher__profile {
  font-size: clamp(15px, 3vw, 16px);
  line-height: 1.75;
  margin: 0;
}

/* 開講スケジュール */
.page-cont-wrap--ja-native-teachers .schedule {
}

.page-cont-wrap--ja-native-teachers .schedule__title {
  font-size: clamp(22px, 4vw, 26px);
  font-weight: bold;
  color: #333;
  margin: 0 0 28px;
  padding-left: 16px;
  border-left: 5px solid #00bcd4;

}

.page-cont-wrap--ja-native-teachers .schedule__cal {
  margin-bottom: 38px;
  padding: 24px 0 0;
  background: #fff;
  border: 4px solid #C7F1FF;
  border-radius: 10px;
  @media screen and (max-width: 680px) {
    padding: 6px 0 0;
    margin-bottom: 20px;
  }
}

.page-cont-wrap--ja-native-teachers .schedule__cal:last-of-type {
  margin-bottom: 20px;
}

.page-cont-wrap--ja-native-teachers .schedule__month {
  font-size: 22px;
  font-weight: bold;
  margin: 0 0 32px;
  text-align: center;
  @media screen and (max-width: 768px) {
    font-size: 16px;
    margin-bottom: 6px;
  }
}

.page-cont-wrap--ja-native-teachers .schedule__table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(12px, 2.5vw, 14px);
  table-layout: fixed;
  font-family: 'Roboto', sans-serif;
}

.page-cont-wrap--ja-native-teachers .schedule__th {
  padding: 4px 8px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: #363B43;
  border: 2px solid #C7F1FF;
  font-size: 12px;

  @media screen and (max-width: 680px) {
    padding: 6px 4px;
  }
}

.page-cont-wrap--ja-native-teachers .schedule__th--sun {
  background: #e41a2b;
}

.page-cont-wrap--ja-native-teachers .schedule__cell {
  padding: 8px 0 28px;
  border: 2px solid #C7F1FF;
  vertical-align: top;
  height: 84px;
  box-sizing: border-box;
  
  @media screen and (max-width: 680px) {
    padding: 6px 0px;
    font-size: 11px;
    height: 44px;
  }
}

.page-cont-wrap--ja-native-teachers .schedule__cell--empty {
  background: #D3DEE6;
}

.page-cont-wrap--ja-native-teachers .schedule__cell--date {
  background: #fff;
}

.page-cont-wrap--ja-native-teachers .schedule__cell--sun .schedule__day {
  color: #e41a2b;
}

.page-cont-wrap--ja-native-teachers .schedule__cell--sat .schedule__day {
  color: #0093CB;
}

.page-cont-wrap--ja-native-teachers .schedule__day {
  display: block;
  font-weight: 500;
  margin-bottom: 4px;
  text-align: center;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 0;
  @media screen and (max-width: 768px) {
    font-size: 12px;
  }
}

.page-cont-wrap--ja-native-teachers .schedule__time {
  display: block;
  padding: 2px 8px;
  line-height: 1;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  @media screen and (max-width: 680px) {
    font-size: 10px;
    padding: 3px 6px;
  }
}

/* はみ出しそうな文言のみ徐々に透明に（背景はそのまま） */
.page-cont-wrap--ja-native-teachers .schedule__time::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 15%;
  pointer-events: none;
}

.page-cont-wrap--ja-native-teachers .schedule__time--blue {
  background: #00C0FF;
}

.page-cont-wrap--ja-native-teachers .schedule__time--blue::after {
  background: linear-gradient(to right, transparent, #00bcd4);
}

.page-cont-wrap--ja-native-teachers .schedule__time--green {
  background: #8bc34a;
}

.page-cont-wrap--ja-native-teachers .schedule__time--green::after {
  background: linear-gradient(to right, transparent, #8bc34a);
}

.page-cont-wrap--ja-native-teachers .schedule__note {
  font-size: 16px;
  color: #555;
  margin: 0;
  @media screen and (max-width: 768px) {
    text-indent: -1em;
    margin-left: 1em;
    font-size: 15px;
  }
}

/* ワンポイントレッスン動画 */
.page-cont-wrap--ja-native-teachers .video {
  @media screen and (max-width: 768px) {
    margin-bottom: 20px;
  }
}

.page-cont-wrap--ja-native-teachers .video__title {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 24px;
  padding-left: 16px;
  border-left: 4px solid var(--ssk-skill-bar);
}

.page-cont-wrap--ja-native-teachers .video__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 20px;
  @media screen and (max-width: 680px) {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.page-cont-wrap--ja-native-teachers .video__item {
  background: #fff;
  border: 4px solid var(--ssk-skill-border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s;
  text-align: left;
  @media screen and (max-width: 768px) {
    width: 83.25%;
    margin: 0 auto;
  }
}

.page-cont-wrap--ja-native-teachers .video__thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.page-cont-wrap--ja-native-teachers .video__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-cont-wrap--ja-native-teachers .video__label {
  font-size: 14px;
  color: #86939F;
  margin: 0;
  padding: 0px 14px 10px;
}

.page-cont-wrap--ja-native-teachers .video__name {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  padding: 7px 14px 0px;
}

/* 申込み・参加方法 */
.page-cont-wrap--ja-native-teachers .apply {
}

.page-cont-wrap--ja-native-teachers .apply__title {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 24px;
  padding-left: 16px;
  border-left: 4px solid var(--ssk-skill-bar);
}

.page-cont-wrap--ja-native-teachers .apply__section {
  margin-bottom: 48px;
}

.page-cont-wrap--ja-native-teachers .apply__section:last-of-type {
  margin-bottom: 16px;
}

.page-cont-wrap--ja-native-teachers .apply__head {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 12px;
}

.page-cont-wrap--ja-native-teachers .apply__lead {
  font-size: clamp(15px, 3.5vw, 16px);
  margin: 0 0 12px;
}

.page-cont-wrap--ja-native-teachers .apply__steps {
  margin: 0;
}

.page-cont-wrap--ja-native-teachers .apply__step {
  font-size: clamp(15px, 3.5vw, 16px);
  line-height: 1.8;
  margin: 0 0 12px;
}

.page-cont-wrap--ja-native-teachers .apply__ref {
  font-size: 14px;
  margin: 0 0 12px;
  padding-left: 1em;
  @media screen and (max-width: 768px) {
    padding-left: 0;
  }
}

.page-cont-wrap--ja-native-teachers .apply__link {
  color: var(--ssk-skill-accent);
  text-decoration: underline;
}

.page-cont-wrap--ja-native-teachers .apply__link:hover {
  color: var(--ssk-btn-hover);
}

.page-cont-wrap--ja-native-teachers .apply__help {
  font-size: 16px;
  margin: 0.5em 0 0;
  @media screen and (max-width: 768px) {
    font-size: 15px;
  }
}

.page-cont-wrap--ja-native-teachers .apply__desc {
  font-size: clamp(15px, 3.5vw, 16px);
  line-height: 1.8;
  margin: 0 0 12px;
}

.page-cont-wrap--ja-native-teachers .apply__notes {
  margin-top: 2em;
}

.page-cont-wrap--ja-native-teachers .apply__notes .apply__head {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: bold;
}

.page-cont-wrap--ja-native-teachers .apply__list {
  margin: 0;
  font-size: clamp(14px, 3vw, 15px);
  line-height: 1.8;
}

.page-cont-wrap--ja-native-teachers .apply__list li {
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 1em;
  @media screen and (max-width: 768px) {
    font-size: 14px;
  }
}
.page-cont-wrap--ja-native-teachers .apply__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: #84919D;
  border-radius: 50%;
}

.page-cont-wrap--ja-native-teachers .apply__list li:last-child {
  margin-bottom: 0;
}

/* お問合せ */
.page-cont-wrap--ja-native-teachers .contact {
}

.page-cont-wrap--ja-native-teachers .contact__title {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 16px;
  padding-left: 16px;
  border-left: 4px solid var(--ssk-skill-bar);
}

.page-cont-wrap--ja-native-teachers .contact__tel,
.page-cont-wrap--ja-native-teachers .contact__mail {
  font-size: clamp(15px, 3.5vw, 16px);
  line-height: 1.8;
  margin: 0 0 8px;
}

.page-cont-wrap--ja-native-teachers .contact__link {
  font-size: 18px;
  font-weight: bold;
}
