/* ===== main.css ===== */
@import "normalize.css";

html {
  font-size: 1rem;
}

@media (max-width: 768px) {
  html {
    font-size: 0.875rem;
  }
}

/* カスタムスタイル */
:root {
  --color-header-text: #333;
  --color-hero-text: #333;
  --color-hero-bgGradient-0: #e7eb0a;
  --color-hero-bgGradient-100: #dadf00;

  --color-primary: #dadf00;
  --color-primary-hover: #e7eb0a;
  --color-primary-text: #333;

  /*--color-eyebrow: #2F5051;  */
  --color-eyebrow: #055CD2;

  --color-secondary: #2F5051;
  --color-secondary-hover: #355d5e;
  --color-text: #333;
  --color-background: #f4f4f4;
  --color-cta: #fff;

  --color-number-badge: #5389D6;
  --color-number-badge-text: #fff;

  --font-base: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-header: "Noto Sans JP", sans-serif;

  --width-xs: 480px;
  --width-ms: 768px;
  --width-md: 1024px;
  --width-lg: 1280px;

  --margin-header-bar: 12px;
}
/* マージン定義 */

/* ========================
   レイアウトユーティリティ
======================== */
.mt-10{ margin-top: 1rem; }
.mt-20{ margin-top: 2rem; }
.mt-30{ margin-top: 3rem; }
.mt-40{ margin-top: 3rem; }
.mb-10{ margin-bottom: 1rem; }
.mb-20{ margin-bottom: 2rem; }
.mb-30{ margin-bottom: 3rem; }
.mb-40{ margin-bottom: 3rem; }

a{ color: inherit; }

/***************************************/
/** Flex定義 */
.flex {
  display: flex;
  justify-content: space-between;
  gap: 1em;
}
.flex.rows { flex-direction: row; }
.flex.cols { flex-direction: column; }

.flex.center { justify-content: center; }
.flex.start { justify-content: flex-start; }
.flex.end { justify-content: flex-end; }
.flex.between { justify-content: space-between; }
.flex.around { justify-content: space-around; }
.flex.evenly { justify-content: space-evenly; }

.flex.align-start { align-items: flex-start; }
.flex.align-center { align-items: center; }
.flex.align-end { align-items: flex-end; }
.flex.align-stretch { align-items: stretch; }

.flex.wrap { flex-wrap: wrap; }
.flex.nowrap { flex-wrap: nowrap; }
.flex.wrap-reverse { flex-wrap: wrap-reverse; }

.flex.gap-sm { gap: 0.5em; }
.flex.gap-md { gap: 1em; }
.flex.gap-lg { gap: 2em; }

.flex > * {
  flex: 1;
  min-width: 0%;
}

/* デフォルトgap-md (1em) の場合 */
.flex.c2 > * {
  flex: 0 0 50%;
  max-width: calc(50% - 1em);
}
.flex.c3 > * {
  flex: 0 0 33.3333%;
  max-width: calc(33.3333% - 1em);
}
.flex.c4 > * {
  flex: 0 0 25%;
  max-width: calc(25% - 1em);
}
/* gapが0.5emの場合 */
.flex.gap-sm.c2 > * {
  max-width: calc(50% - 0.5em);
}
.flex.gap-sm.c3 > * {
  max-width: calc(33.3333% - 0.5em);
}
.flex.gap-sm.c4 > * {
  max-width: calc(25% - 0.5em);
}
/* gapが2emの場合 */
.flex.gap-lg.c2 > * {
  max-width: calc(50% - 2em);
}
.flex.gap-lg.c3 > * {
  max-width: calc(33.3333% - 2em);
}
.flex.gap-lg.c4 > * {
  max-width: calc(25% - 2em);
}
/** レスポンシブ対応 */
@media (max-width: 768px) {
  .flex {
    flex-direction: column;
  }
  .flex > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/***************************************/
/* 小さい画面で非表示 */
@media (max-width: 768px) {
  .hide-sm {
    display: none !important;
  }

  .show-sm {
    display: block !important;
  }
}

/* 中以上の画面で非表示 */
@media (min-width: 769px) {
  .hide-md-up {
    display: none !important;
  }

  .show-md-up {
    display: block !important;
  }
}

body {
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-base);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background: none;
  display: block;
  width: 100%;
  font-family: var(--font-header);
  z-index: 100;
  border-top: 5px solid #000;
}
header.page-hader{
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
/*
header.sticky {
  top: 0;
  left: 0;
  position: sticky;
}
*/

body.home header {
  position: absolute;
  top: 0;
  left: 0;
}

main {
 /* overflow: auto; */
 padding-bottom: 2rem;
}

footer {
  padding: 2.5rem 1rem 2rem;
  border-top: 1px solid #000;
  font-size: 0.95rem;
}

/* セクション */
main section {
  padding: 2rem 0;
  text-align: center;
}

main section h2 {
  font-size: 1.6rem;
  margin-bottom: 40px;
}

main section h2 .eyebrow {
  color: var(--color-eyebrow);
  font-family: 'Overpass', sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 1rem;
  text-transform: uppercase;
}


/* ========================
   メインコンテンツ・レイアウト
======================== */
.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 20px;
}

.container.content-wrapper{
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.main-content{
  width: 100%;
}

footer {
  margin-top: auto;
  text-align: center;
  padding: 1em 0;
}

/* 全体のヘッダー */

/* ========================
   ヘッダー・ヒーローエリア
======================== */
.header-padding {
  padding-top: 60px;
}
header h1 {
  padding: 0;
  margin: 0;
}

header .header-contents {
  margin: var(--margin-header-bar);
  display: flex; align-items: center;
  justify-content: space-between;
  align-items: start;
}

.header-left {
  display: flex; align-items: center;
  justify-content: space-between;
}

.header-right {
  margin-left: auto;
  display: flex; align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-header-text);
  font-size: 1.2rem;
  font-weight: bold;
}

.logo-link img {
  height: 2rem;
  margin-right: .5rem;
}

.header-text-flex{
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: center;
  font-size: 1.3rem;
}
.header-subtitle{
  font-size: 0.5em;
  line-height: 1;
  margin-bottom: 0.5em;
}
.header-title{
  font-size: 1em;
  line-height: 1;
}

.header-contact {
  border-radius: 4px;
  padding: 5px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-contact img {
  height: 1em;
}

.header-contact .tel-label {
  font-size: 0.8em;
  color: var(--color-header-text);
}

.header-contact .tel-number {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  text-decoration: none;
  font-weight: bold;
  color: var(--color-header-text);
}

/* 初期状態：透明＆下にずらす */
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 表示されたときの状態 */
.fade-in-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}

/***************************************/
.hero {
  background-color: var(--color-hero-bgGradient-100);
  color: var(--color-hero-text);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  /* 画面が小さくなったときに要素を折り返す */
  gap: 2rem;

  /* 画像/文字の左右反転 */
  /** 文字を下に表示 */
  flex-direction: row-reverse;
  align-items: end;
}

.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: auto;
  /* 必要に応じて調整 */
}

.hero-text {
  flex: 1;
  text-align: left;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.2rem;
}

/***************************************/
@media (max-width: 768px) {

/* ========================
   メインコンテンツ・レイアウト
======================== */
  .container {
    padding: 20px 1em;
  }

  main section h2 .eyebrow {
    font-size: 2rem;
  }


/* ========================
   ヘッダー・ヒーローエリア
======================== */
  .header-text-flex{
    font-size: 1.2rem;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 0;
  }

  .hero-image {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .hero-text p {
    font-size: 1rem;
  }
  /*
  .header-subtitle {
    display: none;
  }
  .header-contact {
    display: none;
  }
  */

  .header-menu{
    display: none;
  }

/* ========================
   サイドバー関連
======================== */
  .sidebar-content{
    display: none;
  }
}

/***************************************/

/** フロントPage */
.front-page-flex-item {
  text-align: center;
}
.front-page-flex-item img {
  height: auto;
  border-radius: 8px;
}
.front-page-flex-item h3 {
  font-size: 1.8rem;
  margin: 20px 0;
}
.front-page-flex-item p {
  font-size: 1rem;
}

/***************************************/
@media (max-width: 768px) {
  .cta-button {
    font-size: 1.2rem;
    padding: 15px 25px;
  }
}

/***************************************/

/* 特徴セクション：紹介文 */
#features .section-intro {
  font-size: 1rem;
  color: var(--color-text);
  max-width: 700px;
  margin: 0 auto 40px;
}

/* 特徴セクション：個別アイテム */
#features .flex-item img {
  max-width: 80px;
  margin-bottom: 20px;
  padding: 10px;
}

#features .flex-item h3 {
  font-size: 1.2rem;
  color: var(--color-secondary);
  margin-bottom: 10px;
}

#features .flex-item p {
  font-size: 0.95rem;
  color: #555;
}

/*****************/
.horiemon-banner {
  display: inline-block;
  margin: 2em 0;
  max-width: 1200px;
  padding: 0;
}

.horiemon-banner img {
  max-width: 100%;
}

.link-banner {
  display: inline-block;
  margin: 5em 0 2em;
}

.link-banner img {
  max-width: 500px;
  width: 100%;
}

/***************************************/


/* ========================
   レイアウトユーティリティ
======================== */
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  /* 好みに応じて調整 */
  aspect-ratio: 16 / 9;
  /* モダンブラウザ対応 */
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/***************************************/

/* ========================
   フッター・ボタン・マップ
======================== */
.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
}

.footer-left {
  flex: 1;
  min-width: 250px;
  text-align: left;

  display: flex;
  flex-direction: column;
  gap: 1.2em;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  font-weight: bold;
}
.footer-logo img {
  height: 1.2em;
  width: auto;
  margin-right: .2em;
}
.footer-contact .tel{
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 1.2em;
}
.footer-contact .tel img{
  height: 1.3em;
  width: auto;
}
.footer-contact .bizhours{
  font-weight: bold;
}
.footer-links {
  display: flex;
  flex-direction: row;
  gap: 1em;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-bottom: 1em;
  font-size: 1rem;
}
.footer-links li{
  white-space: nowrap;
}
.footer-right {
  flex: 1;
  text-align: right;
  min-width: 250px;
}
.footer-copyright{
  margin-top: 1em;
  margin-bottom: 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--color-text);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
}

.social-links a {
  margin-left: 10px;
  display: inline-block;
}

.social-links img {
  width: 2rem;
  height: auto;
  transition: transform 0.3s ease;
}

.social-links img:hover {
  transform: scale(1.1);
}

/* レスポンシブ */
@media (max-width: 768px) {
  .footer-flex {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 20px;
  }

  .footer-left {
    text-align: center;
  }
  .footer-right {
    text-align: center;
  }

  .footer-links{
    justify-content: center;
  }

}

.btn-cta, .kengaku_button {
  display: inline-block;
  background: var(--color-secondary);
  color: var(--color-cta);

  font-size: 1.2em;
  font-weight: bold;

  margin-top: 0.5em;
  padding: 0.7em 3em;
  display: inline-block;
  border-radius: 8px;

  border: none;
  outline: none;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-cta:hover, .kengaku_button:hover {
  background: var(--color-secondary-hover);
}


/* ========================
   メインコンテンツ・レイアウト
======================== */
.maplist{
  display: flex;
  list-style: none;
  font-size: 1.1rem;
}
.maplist li{
  margin: 0;
  padding: 0;
}
.maplist li:not(:last-child)::after {
  margin: 0 .5em;
  content: '|';
}

.gmap{
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin: 1em 0;
}
.gmap iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.gmapLink {
  color: #fff;
  background: #2F5051;
  padding: 1rem 2rem;
  width: 50%;
  text-align: center;
  margin: 0 auto;
  margin-top: 1em;
}

#mapflow {
  width: 70%;
  margin: 0 auto;
  padding-top: 2rem;
}
#mapflow ul {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  list-style: none;
}
#mapflow ul li {
  max-width: 300px;
  margin: 1rem;
  text-align: left;
}
#mapflow ul li .size-full, #map-flow ul li p {
  margin: 0;
}
#mapflow img{
  width: 100%;
  height: auto;
}

/* Post/Page  *********************************************/
.eyecatch{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  margin-top: 10px;
}
.eyecatch img{
  max-width: 100%;
  height: auto;
}

/** 作品一覧など用 */
.grid-list{
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1em;
  
  min-width: 0;
  padding: 0;
  margin: 0;
}
.grid-item{
  flex: 0 0  calc(33.333% - 1rem);
  min-width: 0;
  text-align: center;
  
  background-color: #fff;
  display: block;
  border-radius: 10px;
  padding: 1.5em 1em;
}
.grid-list.c-2 .grid-item{ flex: 0 0  calc(50% - 1rem); }
/* タブレット幅以下で2列 */
@media (max-width: 768px) {
  .grid-list.c-3 .grid-item{ flex: 0 0  calc(50% - 1rem); }
  .grid-list.c-2 .grid-item{ flex: 1 1 calc(100% - 1rem); }
}
/* スマホ幅以下で1列 */
@media (max-width: 480px) {
  .grid-list.c-3 .grid-item{ flex: 1 1 calc(100% - 1rem); }
  .grid-list.c-2 .grid-item{ flex: 1 1 calc(100% - 1rem); }
  .grid-item{ flex: 1 1 calc(100% - 1rem); }
}
a.grid-item:hover{
  background-color: #fafafa;
}
.grid-item-title {
  font-weight: bold;
  color: #333;
  margin-bottom: 1em;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.grid-item-item{
  width: 100%;
  display: inline-block;
}
.grid-item-bg-img{
  display: block;              /* または inline-block */
  width: 100%;
  aspect-ratio: 16 / 9; /* ここを画像の比率に合わせる */
  background-color: #eee;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.grid-item-comment{
  margin: .5em 0 ;
  color: #333;
}

/* ===== caca-renew.css ===== */
.red {
    color: #D94409;
    font-weight: bold;
}

.center {
    margin-top: 10px;
    display: block;
    text-align: center;
}

.main-content h3,
h4,
h5,
h6,
p {
    margin: .5em 0 1em 0em;
}

.main-content h4 {
    font-size: 1.3125em;
}

/* テーブル */
.main-content table.table {
    margin: 5px 0 0 0;
    width: 100%;
    background-color: #fff;
    border-collapse: collapse;
}

.main-content table.table th,
.main-content table.table td {
    border: 1px solid #000;
    padding: 1em;
}

.main-content table.table th {
    text-wrap: nowrap;
}

@media screen and (max-width: 641px) {

    .main-content table.table,
    .main-content table.table tbody,
    .main-content table.table tr,
    .main-content table.table th,
    .main-content table.table td {
        display: block;
        width: 100%;
    }

    .main-content table.table {
        border: solid 1px #000;
        border-top: none;
    }

    .main-content table.table th,
    .main-content table.table td {
        text-wrap: auto;
        text-align: left;
        border: none;
        border-top: solid 1px #000;
    }
}

/** 矢印系 */

/* ========================
   コンポーネント・パーツ
======================== */
.arrow-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0.5em;
}

.arrow {
    width: 0;
    height: 0;
    transition: transform 0.3s ease;
    align-self: center;
}

/* 向き別 */
.arrow.--up {
    border-left: 1.5em solid transparent;
    border-right: 1.5em solid transparent;
    border-bottom: 1em solid currentColor;
}

.arrow.--down {
    border-left: 1.5em solid transparent;
    border-right: 1.5em solid transparent;
    border-top: 1em solid currentColor;
}

.arrow.--left {
    border-top: 1.5em solid transparent;
    border-bottom: 1.5em solid transparent;
    border-left: 1em solid currentColor;
}

.arrow.--right {
    border-top: 1.5em solid transparent;
    border-bottom: 1.5em solid transparent;
    border-right: 1em solid currentColor;
}

/* 色変更用クラス（currentColorを活かす） */
.arrow.--red { color: #E94C3D; }
.arrow.--green { color: #2ECC71; }
.arrow.--blue { color: #2980b9; }
.arrow.--yellow{ color: #EBC610; }

/* サイドバー */

/* ========================
   サイドバー関連
======================== */
.sidebar-nav{
    font-size: 14px;
    margin-bottom: 2em;
}
.sidebar-nav-item{
    padding-left: 5px;
    padding-bottom: 5px;
}
.sidebar-nav-item:before {
    content: "\f055";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    vertical-align: middle;
    position: relative;
    margin-right: 8px;
    display: inline-block;
    z-index: 1;
}

.sidebar-nav-sub{
  font-size: 14px;
  /* padding-left: 15px; */
}


.sidecourse {
    width: 250px;
    background-repeat: no-repeat;
    margin: 0 auto 40px;
    background-color: #fff;
    padding-bottom: 10px;

    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    line-height: 21px;
}

.sidecoursehead {
    margin-bottom: 10px;
}

.sidecourse section {
    padding: 5px 10px;
}

.side-sec-title {
    background-color: #8CB929;
    color: #fff;

    width: 100%;
    padding: 10px;
    font-weight: bold;
    display: inline-block;
    position: relative;
    margin-bottom: 10px;
}

.side-sec-title::after {
    content: '';
    position: absolute;
    top: 100%;
    /* 矢印を質問の下に配置 */
    left: calc(100% - 28px);
    /* 矢印を右に配置 */
    transform: unset;
    border-bottom: none;
    border-top: 8px solid #8CB929;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    transform: translateX(-50%);
}

.side-sec-dot {
    width: 100%;
    padding: 10px;

    background-image: repeating-linear-gradient(90deg, #d3d3d387, #d3d3d387 12px, transparent 12px, transparent 16px), repeating-linear-gradient(180deg, #d3d3d387, #d3d3d387 12px, transparent 12px, transparent 16px), repeating-linear-gradient(90deg, #d3d3d387, #d3d3d387 12px, transparent 12px, transparent 16px), repeating-linear-gradient(180deg, #d3d3d387, #d3d3d387 12px, transparent 12px, transparent 16px);
    background-position: left top, right top, left bottom, left top;
    background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
    background-size: 100% 2px, 2px 100%, 100% 2px, 2px 100%;
    margin-bottom: 10px;
}

.side-sec-dot b{
    font-size: 1.2em;
}

.sidelastday {
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 60px;
    display: inline-block;
    position: relative;
}

.sidelastday .deadline {
    position: absolute;
    color: #f00;

    font-size: 40px;
    font-weight: bold;
    right: 45px;
    top: 15px;
}

.sidedetail {
    text-align: left;
    font-weight: bold;
}

.sidedetail .detail-header {
    text-align: center;
    background-color: #5DB7E8;
    color: #fff;
    padding: 5px;
    margin-bottom: 10px;
}


/* リクルートテーブル  */
.recruitTable table {
    margin: 5px 0 0 0;
    width: 100%;
    background-color: #fff;
    border-collapse: collapse;
}

.recruitTable table th,
.recruitTable table td {
    text-align: left;
    border: 1px solid #000;
    padding: 1em;
}

.recruitTable table th {
    text-wrap: nowrap;
    background-color: #eee;
    width: 20%;
}

@media screen and (max-width: 641px) {

    .recruitTable table,
    .recruitTable table tbody,
    .recruitTable table tr,
    .recruitTable table th,
    .recruitTable table td {
        display: block;
        width: 100%;
    }

    .recruitTable table {
        border: solid 1px #000;
        border-top: none;
    }

    .recruitTable table th,
    .recruitTable table td {
        text-wrap: auto;
        text-align: left;
        border: none;
        border-top: solid 1px #000;
    }

    .recruitTable table th {
        width: 100%;
    }
}

/* エントリーボタン  */

/* ========================
   特殊ブロック・訴求系
======================== */
.entryBtn {
    display: block;
    text-align: center;
    margin: 0 auto;
    width: 90%;
    background: #5db7e8;
    background-image: -webkit-linear-gradient(top, #5db7e8, #4a93ba);
    background-image: -moz-linear-gradient(top, #5db7e8, #4a93ba);
    background-image: -ms-linear-gradient(top, #5db7e8, #4a93ba);
    background-image: -o-linear-gradient(top, #5db7e8, #4a93ba);
    background-image: linear-gradient(to bottom, #5db7e8, #4a93ba);
    -webkit-border-radius: 10;
    -moz-border-radius: 10;
    border-radius: 10px;
    font-family: 'Noto Sans JP', Arial;
    color: #ffffff;
    font-size: 20px;
    padding: 10px 20px 10px 20px;
    text-decoration: none;
    box-sizing: border-box;
    width: 50%;
    margin-top: 1em;
    margin-bottom: 1em;
}

.entryBtn:hover {
    background: #3cb0fd;
    background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
    background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
    background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
    background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
    background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
    text-decoration: none;
    color: #fff;
}

.whitespace {
    text-align: left;
    background-color: #fff;
    padding: 1em;
    margin-bottom: 2em;
}
.c_syousai{
    display: flex;
    flex-direction: row;
    gap: 1em;
    align-items: start;
}
.c_syousai_b{
    flex-direction: column;
}
@media (max-width: 768px) {
  .c_syousai{
    flex-direction: column;
  }
}

.number-badge {
    display: block;
    text-align: center;
    margin-right: 10px;
    float: left;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 20px;
    -moz-border-radius: 20px;
    background: var(--color-number-badge);
    color: var(--color-number-badge-text);
}


/* ========================
   メインコンテンツ・レイアウト
======================== */
.main-content h1 {
    font-size: 3em;
    line-height: 1em;
    margin-bottom: .5em;
}

.main-content h2,

/* ========================
   サイドバー関連
======================== */
.sidebar-content h2 {
    position: relative;
    font-size: 1.2em;
    background-color: #FFF100;
    color: #000;
    border: 5px solid #000;
    padding: .2em .5em;
    margin: 0 0 1em;
}


/* ========================
   メインコンテンツ・レイアウト
======================== */
.main-content h3 {
    text-align: center;
    border: 1px solid black;
    font-weight: normal;
    padding: 5px;
    font-size: 20px;
}


.main-content .whitespace h3 {
    border: none;
    text-align: left;
    font-weight: bold;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: start;
}

.main-content .whitespace h3:not(:first-child) {
    margin-top: 20px;
}

/* 訓練内容 ======================= */
/** color-space用 */

/* ========================
   コンポーネント・パーツ
======================== */
.colorspace-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.colorspace {
    flex: 1 1 calc(50% - 8px);
    /* 横2つでgap考慮 */
    box-sizing: border-box;
    background: #f0f0f0;
    padding: 20px;
    text-align: center;
    padding: 1em 1.2em;
    border-radius: 10px;

    text-decoration: none;
    color: inherit;
}

/* 画面が狭いときは1列にする */
@media screen and (max-width: 600px) {
    .colorspace {
        flex: 1 1 100%;
    }
}

/* お問い合わせフォーム ======================= */
.bluewrapper {
    padding: 15px;
    border-radius: 10px;
    background: #5DB7E8;

    margin-bottom: 3em;
}

.tel_info {
    border: solid 1px #FFF;
    border-radius: 10px;
    padding: 20px;
    color: #FFF;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 16px;
}

.tel_info_header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.tel_info_header p {
    margin: 0;
    padding: 0;
}

.tel_info_left {
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.tel_info_left .biz_header {
    width: 100%;
    padding: 5px 20px 4px 20px;
    background: #0486DC;
    border-radius: 10px 10px 0 0;
}

.tel_info_left .biz_text {
    padding: 5px 20px 4px 20px;
    font-weight: bold;
    background: #FFF;
    color: #0486DC;
    border-radius: 0 0 10px 10px;
}

.tel_info_right {
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    line-height: 0px;
    padding: 0 20px;
    background: #FFF;
    color: #0486DC;
    border-radius: 10px;
    font-size: 30px;
}

.tel_info_right .tel_icon {
    display: inline-block;
    width: 30px;
    height: auto;
    margin: 10px 10px 10px 0;
}

.tel_info_right .tel_number {
    font-size: 30px;
    font-weight: bold;
    white-space: nowrap;
}

/* 画面が狭いときは1列にする */
@media screen and (max-width: 680px) {

    .tel_info_left,
    .tel_info_right {
        width: 100%;
        max-width: 100%;
        font-size: 16px;
    }
}

/* ========================
   コンポーネント・パーツ
======================== */
.size-full {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.reskilling a {
    display: inline-block;
    color: blue;
    margin: 0 0 1em .5em;
}

.doublebox {
    padding: 5px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.doublebox.bg-red {
    background-color: #E94C3D;
}

.doublebox.bg-green {
    background-color: #2ecc71;
}

.doublebox.bg-blue {
    background-color: #2980b9;
}

.doublebox-inner {
    background-color: #fff;
    color: #000;
    padding: 1em;
    height: 100%;
}

.doublebox-inner ul {
    list-style: disc;
    padding-left: 1em;
}

.doublebox h3 {
    border: none;
    margin: 0;
    padding: 0;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 10px;
}

.doublebox h4 {
    border: none;
    margin: 0;
    padding: 0;
    color: #000;
    font-weight: bold;
    text-align: center;
}

.green-box {
    background: #FFF;
    padding: 1em;
    border: solid 3px #2ECC71;
}

.green-box h3 {
    border: none;
    margin: 0;
    padding: 5px;
    background: #2ECC71;
    color: #FFF;
    font-weight: bold;
    line-height: 30px;
    border-radius: 10px;
}

.qualif-round {
    margin-left: 0px;
    margin-top: 4px;
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background: #93B8CA;
    margin-right: 10px;
}

.qualif-alert {
    margin: .5em 0;
    padding-bottom: .5em;

    border-bottom: 1px solid #000;
    width: 100%;
    font-weight: bold;
}


/* ========================
   TOP-PAGE系
======================== */
.top-page-the-content{
  max-width: 960px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2em;
  margin: auto;
  margin-bottom: 2em;
}
.top-page-the-content img{
  height: auto;
}
.top-page-cols{
  display: flex;
  flex-direction: row;
  gap: 2em;
}

.youtube-wrap {
  width: 100%;
  display: flex;
  gap: 1em;
  justify-content: center;
}
.youtube-box{
  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
}

@media (max-width: 768px) {
  .top-page-cols-left {
    display: none;
  }
  .youtube-wrap{
    flex-direction: column;
  }
}

h3.pop {
  margin-top: 1em;
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
  border: none;
  color: #2F5051;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: dotted 5px #2F5051;
  line-height: 1.25;
  margin-bottom: 10px;
}

h3.pop:before {
  margin-right: 0.5em;
  display: block;
  float: left;
  content: "\f086";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #2F5051;
}

/* ========================
   benefit系
======================== */
.benefit-wrap {
    margin: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
}

.benefit-circle {
    width: 280px;
    height: 280px;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.benefit-circle.circle-color1 {
    background: #E94C3D;
}

.benefit-circle.circle-color2 {
    background: #2980b9;
}

.benefit-plus {
    color: #000;
    font-size: 3rem;
    width: 3rem;
    text-align: center;
    font-weight: bold;
}

.benefit-circle h3 {
    background: none;
    color: #fff;
    display: block;
    width: 100%;
}

@media (max-width: 768px) {

/* ========================
   コンポーネント・パーツ
======================== */
    .doublebox {
        width: 100%;
    }

/* ========================
   特殊ブロック・訴求系
======================== */
    .benefit-wrap {
        flex-direction: column;
    }
}


@media (max-width: 768px) {

/* ========================
   メインコンテンツ・レイアウト
======================== */
    .main-content h1 {
        font-size: 2em;
    }
    .main-content h3 {
        font-size: 1.1em;
    }

/* ========================
   特殊ブロック・訴求系
======================== */
    .entryBtn {
        font-size: 16px;
        padding: 8px 16px;
    }
    .tel_info_right,

/* ========================
   コンポーネント・パーツ
======================== */
    .tel_info_right .tel_number {
        font-size: 20px;
    }

/* ========================
   特殊ブロック・訴求系
======================== */
    .benefit-plus {
        font-size: 2rem;
    }
}


/* top course banner */
.pc-img:hover {
  opacity: 0.75;
}
.sp-img {
  display: none;
}
@media screen and (max-width:640px){
  .sp-img {
    display: block;
  }
  .pc-img {
    display: none;
  }
}