@charset "UTF-8";

@import url("./contents.css");
@import url("./custom-parts.css");
@import url("./nav-jst.css");
@import url("./template.css");


/*--------------------------------------------------------

ユーザースタイル

--------------------------------------------------------*/


/* =======================================
　制作途中の各種コントロール
======================================= */
/*----------- 完成時のためのコンテンツ（作成途中は非表示） -----------*/
.cc-page.cc-pagemode-default .production {
  display: none !important;
}

.production {
  opacity: .5;
}



/*----- 入校申込、会社概要のナビゲーション -----*/
/* 編集画面で非表示 */
@media screen and (min-width: 790px) {

  li#cc-nav-view-2282980399,
  li#cc-nav-view-2283096699 {
    display: none !important;
  }
}


/*----- 作成ガイド -----*/
.create-guide p {
  color: red !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  padding-bottom: 0 !important;
}

.create-guide.top p {
  border-bottom: 2px dashed red;
}

.create-guide.bottom p {
  border-top: 2px dashed red;
}

.create-guide.top::after {
  content: "↓↓↓";
  display: block;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: red;
  margin-bottom: 40px;
}

.create-guide.bottom::before {
  content: "↑↑↑";
  display: block;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: red;
  margin-top: 40px;
}

.cc-page.cc-pagemode-default .create-guide {
  display: none;
}




/* =======================================
　画像の設定
======================================= */

/*------ メインビジュアル ------*/

/*全ページ共通（デフォルト）*/
#main-visual,
.cc-page-blog.no-imageblog #main-visual {
  background: #FFF;
}


/*トップページのみ*/
.cc-indexpage #main-visual {
  background: transparent;
}


/*------ 上に戻るボタンの画像 ------*/
.cc-FloatingButtonBarContainer .cc-FloatingButtonBarContainer-button-scroll span {
  background-image: url(../images/up-icon.png) !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}




/* =======================================
　基本フォントのスタイル
======================================= */

/*------- 共通フォント -------*/
body,
p,
table,
td {
  color: #161616 !important;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 15px !important;
  line-height: 1.8 !important;
}

main p {
  padding-bottom: 24px;
}

/*------- ヘッダー＆トップナビ -------*/
#top-nav .j-nav-variant-nested.desktop>ul>li>a,
#top-nav a:link,
#top-nav a:visited {
  color: #161616;
}



.cc-indexpage #top-nav .j-nav-variant-nested.desktop>ul>li>a,
.cc-indexpage #top-nav a:link,
.cc-indexpage #top-nav a:visited {
  color: #FFF;
}


/*------- メインエリア -------*/

/*リンク*/
main a,
main a:link,
main a:visited {
  color: #EA3FAD !important;
}




/*------- フッターエリア -------*/

/*通常フォント*/
footer,
footer p,
footer table,
footer td {
  color: #FFF !important;
}


/*リンク*/
footer a,
footer a:link,
footer a:visited {
  color: #CECECE;
}





/* =======================================
　見出しのスタイル
======================================= */

/*------- メインエリア見出し -------*/

/*メインエリア見出し共通*/
main h1,
main h2,
main h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.5;
}


/*メインエリア大見出し*/
main h1 {
  color: #161616;
  font-size: 32px;
  letter-spacing: .4rem;
  text-align: left;
}

.single-column main h1 {
  text-align: center;
}

.j-header h1 {
  text-align: center;
  margin-bottom: 40px;
}

.j-header h1::before {
  content: '';
  display: block;
  width: 187px;
  height: 136px;
  background: url(../images/logomark.png) no-repeat center;
  background-size: contain;
  margin: 0 auto 8px;
}

.cc-indexpage .j-header h1 {
  font-size: 58px;
}


.cc-indexpage .j-header h1::before {
  content: none;
}

@media screen and (max-width: 789px) {
  main h1 {
    font-size: 28px;
  }

  .j-header h1::before {
    width: calc(187px * .5);
    height: calc(136px * .5);
  }
}


/*メインエリア中見出し*/
main h2 {
  color: #161616;
  font-size: 24px;
  letter-spacing: .1rem;
  text-align: left;
}

.j-header h2 {
  background: #EA3FAD;
  color: #FFF;
  padding: 4px 16px;
  border-radius: 4px;
}

.j-header h2::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 40px;
  background: url(../images/icon-heading-h2.png) no-repeat 0 center;
  background-size: contain;
  vertical-align: -13px;
  margin-right: 8px;
}

.cc-indexpage .j-header h2 {
  background: transparent;
  color: #161616;
  padding: 0;
  border-radius: 0;
  font-size: 40px;
}

.cc-indexpage .j-header h2::before {
  content: none;
}


/*メインエリア小見出し*/
main h3 {
  color: #EA3FAD;
  font-size: 19px;
  letter-spacing: .1rem;
  font-weight: 600;
  /* padding-left: 36px;
  padding-top: 16px;*/
  min-height: 36px;
}

.j-header h3::before {
  content: '';
  display: inline-block;
  /* position: absolute; */
  width: 29px;
  height: 53px;
  background: url(../images/icon-heading-h3.png) no-repeat 0 center;
  background-size: contain;
  /* margin-left: -36px;
  margin-top: -16px; */
  padding-right: 8px;
  vertical-align: -13px;
}

.cc-indexpage .j-header h3::before {
  content: none;
}



@media screen and (max-width: 639px) {
  main h1 {
    font-size: 2.6rem;
    letter-spacing: .1rem;
  }

  main h2 {
    font-size: 1.9rem;
    letter-spacing: .1rem;
    text-align: center;
  }
}


/* メインエリアh4見出し */
main h4 {
  font-size: 18px;
  letter-spacing: 1px;
}




/*------- フッターエリア見出し -------*/

/*フッターエリア見出し共通*/
footer h1,
footer h2,
footer h3 {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  text-align: left;
}


/*フッターエリア大見出し*/
footer h1 {
  font-size: 2.4rem;
}


/*フッターエリア中見出し*/
footer h2 {
  font-size: 2rem;
}


/*フッターエリア小見出し*/
footer h3 {
  font-size: 1.7rem;
}





/* =======================================
　ボタンのスタイル（メイン＆サイドバー）
======================================= */

/*------- ボタン共通 -------*/

/*リンク*/
main a.j-calltoaction-link,
main a:link.j-calltoaction-link,
main a:visited.j-calltoaction-link,
footer a.j-calltoaction-link,
footer a:link.j-calltoaction-link,
footer a:visited.j-calltoaction-link {
  text-decoration: none !important;
}

a.j-calltoaction-link.j-calltoaction-link-style-1:after,
a.j-calltoaction-link.j-calltoaction-link-style-2:after,
a.j-calltoaction-link.j-calltoaction-link-style-3:after {
  transition: all .5s !important;
}


a.j-calltoaction-link:after {
  display: inline-block;
  content: '';
}


/*------- ボタン１ -------*/
a.j-calltoaction-link.j-calltoaction-link-style-1 {
  background: #EA3FAD;
  border: 2px solid #EA3FAD;
  border-radius: 9999rem;
  color: #FFF !important;
  font-size: 14px;
  transition: all .5s;
}

.cc-page.cc-pagemode-default a.j-calltoaction-link.j-calltoaction-link-style-1:hover {
  transform: scale(1.2);
}

a.j-calltoaction-link.j-calltoaction-link-style-1:after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 12px;
  background: url(../images/icon-btn-style01.png) no-repeat 0 center;
  background-size: contain;
  vertical-align: 1px;
  margin-left: 4px;
}


/*------- ボタン２ -------*/
a.j-calltoaction-link.j-calltoaction-link-style-2 {
  background: transparent;
  border: 2px solid #EA3FAD;
  color: #EA3FAD !important;
  font-size: 14px;
  transition: all .5s;
}

.cc-page.cc-pagemode-default a.j-calltoaction-link.j-calltoaction-link-style-2:hover {
  transform: scale(1.2);
}

a.j-calltoaction-link.j-calltoaction-link-style-2:after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 12px;
  background: url(../images/icon-btn-style02.png) no-repeat 0 center;
  background-size: contain;
  vertical-align: 1px;
  margin-left: 4px;
}


/*------- ボタン３ -------*/
a.j-calltoaction-link.j-calltoaction-link-style-3 {
  color: #EA3FAD !important;
  font-size: 14px;
  transition: all .5s;
}

.cc-page.cc-pagemode-default a.j-calltoaction-link.j-calltoaction-link-style-3:hover {
  transform: scale(1.2);
}


/*ボタン３の矢印（通常時）*/
a.j-calltoaction-link.j-calltoaction-link-style-3:after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 20px;
  background: url(../images/icon-btn-style03.png) no-repeat 0 center;
  background-size: contain;
  vertical-align: -4px;
  margin-left: 4px;
}





/* =======================================
　ボタンスタイル（フッターエリア）
======================================= */

/*------- フッターボタン１ -------*/
footer a.j-calltoaction-link.j-calltoaction-link-style-1:hover {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .9);
  color: #FFF !important;
}


/*フッターボタン１の矢印（マウスオン時）*/
footer a.j-calltoaction-link.j-calltoaction-link-style-1:hover::after {
  background: url("data:image/svg+xml;utf-8,<svg fill=\"%23333\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 320 512\"><path d=\"M143,352.3,7,216.3a23.9,23.9,0,0,1,0-33.9l22.6-22.6a23.9,23.9,0,0,1,33.9,0l96.4,96.4,96.4-96.4a23.9,23.9,0,0,1,33.9,0l22.6,22.6a23.9,23.9,0,0,1,0,33.9l-136,136a23.78,23.78,0,0,1-33.8,0Z\"/></svg>") no-repeat;
}



/*------- フッターボタン２ -------*/
footer a.j-calltoaction-link.j-calltoaction-link-style-2 {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .9);
  color: #FFF !important;
}


/*フッターボタン２の矢印（通常時）*/
footer a.j-calltoaction-link.j-calltoaction-link-style-2:after {
  background: url("data:image/svg+xml;utf-8,<svg fill=\"%23FFF\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 320 512\"><path d=\"M143,352.3,7,216.3a23.9,23.9,0,0,1,0-33.9l22.6-22.6a23.9,23.9,0,0,1,33.9,0l96.4,96.4,96.4-96.4a23.9,23.9,0,0,1,33.9,0l22.6,22.6a23.9,23.9,0,0,1,0,33.9l-136,136a23.78,23.78,0,0,1-33.8,0Z\"/></svg>") no-repeat;
}


/*フッターボタン２の矢印（マウスオン時）*/
footer a.j-calltoaction-link.j-calltoaction-link-style-2:hover::after {
  background: url("data:image/svg+xml;utf-8,<svg fill=\"%23333\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 320 512\"><path d=\"M143,352.3,7,216.3a23.9,23.9,0,0,1,0-33.9l22.6-22.6a23.9,23.9,0,0,1,33.9,0l96.4,96.4,96.4-96.4a23.9,23.9,0,0,1,33.9,0l22.6,22.6a23.9,23.9,0,0,1,0,33.9l-136,136a23.78,23.78,0,0,1-33.8,0Z\"/></svg>") no-repeat;
}



/*------- フッターボタン３ -------*/
footer a.j-calltoaction-link.j-calltoaction-link-style-3 {
  color: #FFF !important;
}



/*フッターボタン３の矢印（通常時）*/
footer a.j-calltoaction-link.j-calltoaction-link-style-3:after {
  background: url("data:image/svg+xml;utf-8,<svg fill=\"%23FFF\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 320 512\"><path d=\"M143,352.3,7,216.3a23.9,23.9,0,0,1,0-33.9l22.6-22.6a23.9,23.9,0,0,1,33.9,0l96.4,96.4,96.4-96.4a23.9,23.9,0,0,1,33.9,0l22.6,22.6a23.9,23.9,0,0,1,0,33.9l-136,136a23.78,23.78,0,0,1-33.8,0Z\"/></svg>") no-repeat;
}



/*------- フッターエリアのボタンスタイル（マウスオン時） -------*/
footer a.j-calltoaction-link.j-calltoaction-link-style-1:hover,
footer a.j-calltoaction-link.j-calltoaction-link-style-2:hover,
footer a.j-calltoaction-link.j-calltoaction-link-style-3:hover {
  opacity: .7;
}




/* =======================================
　ヘッダーエリアのレイアウト
======================================= */

/*-----  -----*/
header {
  background: transparent;
}

.cc-page.cc-pagemode-default header::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 7vw;
  background: url(../images/header-bg-msk.png) no-repeat center top;
  background-size: contain;
  margin: 0 auto;
}



/*------- PC表示 -------*/
/*ヘッダー背景色*/
#global-header {
  background: #EA3FAD;
  box-sizing: border-box;
  margin-bottom: -4vw;
}

@media screen and (max-width: 789px) {
  #global-header {
    margin-bottom: 0;
    height: 9vw;
  }
}

@media screen and (max-width: 639px) {
  #global-header {
    height: 16vw;
  }
}


/*ヘッダーのリンク色*/
#top-nav a,
#top-nav a:link,
#top-nav a:visited {
  color: #031D29;
}



/* =======================================
　メインビジュアルのスタイル
======================================= */

/*------ デフォルト設定 ------*/
#main-visual {
  overflow: hidden;
}


.cc-page.cc-pagemode-default #main-visual::after {
  content: '';
  display: block;
  width: 100%;
  height: 8vw;
  background: url(../images/mv-msk.png) no-repeat center;
  background-size: contain;
  margin-right: 8px;
  margin-bottom: -5vw;
  position: relative;
}

.cc-indexpage #main-visual::after {
  content: none;
}


/* メインビジュアルインサート */
.cc-page.cc-pagemode-default .mv-insert figure img {
  max-width: 100%;
  width: 100%;
  height: 30vw;
  object-fit: cover;
  object-position: 50% 50%;
  margin-bottom: -3vw;
}


@media screen and (max-width: 639px) {
  .cc-page.cc-pagemode-default .mv-insert figure img {
    height: 30vh;
  }
}


/*------ サブページヘッダー任意差し込み時の設定 ------*/

@media screen and (min-width: 640px) {
  #main-visual .page-mainvisual img {
    height: 35vw;
    max-height: 550px;
    min-height: 400px;
    object-fit: cover;
    object-position: 50% 50%;
    width: 100%;
    /*位置　横：0%→左　縦：0%→上にフィット*/
  }
}


@media screen and (max-width: 639px) {
  #main-visual .page-mainvisual img {
    height: auto;
    object-fit: cover;
    object-position: 50% 50%;
    width: 100%;
    /*位置　横：0%→左　縦：0%→上にフィット*/
  }
}





/* =======================================
　コンテンツエリアのレイアウト
======================================= */

/*------ コンテンツエリア大枠 ------*/

/*コンテンツエリアの背景色（全ページ共通：編集画面）*/
#content-inner {
  background: #FFF;
}

.cc-page.cc-pagemode-default #content-inner {
  background: transparent;
}


/*コンテンツエリアの背景色（全ページ共通：プレビューのみ）*/
#content {
  background: #e9e9e9;
  padding-top: 40px;
  padding-bottom: 40px;
}

.cc-page.cc-pagemode-default #content {
  background: transparent;
  padding-top: 0;
  padding-bottom: 0;
}

.cc-page.cc-pagemode-default #content-inner {
  background: transparent;
}





/* =======================================
　メインエリアのレイアウト
======================================= */

/*------ メインエリア枠 ------*/

/*メインエリアの背景色（全ページ共通）*/
main {
  background: #FFF;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
}


/*メインエリアの背景色（トップページのみ）*/
.cc-indexpage main {
  background: #FFF;
}


/*メインエリアの背景色（サブページの1カラムレイアウトページ）*/
.single-column main {
  background: #FFF;
}





/* =======================================
　フッターエリア
======================================= */

/*------- フッターコンテンツエリアの背景色（全ページ共通） -------*/
#footer-inner {
  background: #EA3FAD;
}

/*----- 　フッターコンテンツ -----*/
/* カラム */
.cc-page.cc-pagemode-default .j-hgrid.footer-main-contents-col .cc-m-hgrid-separator,
.cc-page.cc-pagemode-default .j-hgrid.footer-main-contents-col .cc-m-hgrid-overlay {
  display: none;
}

.cc-page.cc-pagemode-default .j-hgrid.footer-main-contents-col {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}


@media screen and (max-width: 789px) {
  .j-hgrid.footer-main-contents-col .cc-m-hgrid-column {
    width: 48% !important;
  }
}


@media screen and (max-width: 600px) {
  .j-hgrid.footer-main-contents-col .cc-m-hgrid-column {
    width: 100% !important;
  }
}



/* ロゴ */
.cc-page.cc-pagemode-default .footer-logo {
  margin-left: -80px;
}

/* 会社情報 */
.company-info {
  margin: 24px 0 24px;
}


/* フッターサイトリンク */
.j-hgrid.footer-main-contents-col ul {
  margin-top: 40px;
}

.j-hgrid.footer-main-contents-col ul ul {
  margin-top: 0;
}

.cc-page.cc-pagemode-default .j-hgrid.footer-main-contents-col ul {
  list-style: none;
}

.j-hgrid.footer-main-contents-col ul li a {
  color: #FFF !important;
  text-decoration: none !important;
}

.j-hgrid.footer-main-contents-col ul li a:hover {
  text-decoration: underline !important;
}

.j-hgrid.footer-main-contents-col ul>li {
  font-weight: 700;
  margin-top: 40px;
}

.j-hgrid.footer-main-contents-col ul li li {
  font-weight: 400;
  font-size: 14px;
  margin-top: 0;
}

.dropdown-scroller ul li {
  margin-top: 0 !important;
}


@media screen and (max-width: 600px) {
  .j-hgrid.footer-main-contents-col ul {
    margin-top: 0;
  }
}



/*------- フッターボトムエリアの背景色（全ページ共通） -------*/
footer #footer-bottom {
  background: #EA3FAD;
}






/* =======================================
　　ブログのスタイル
======================================= */

/*------ ブログ記事ページ ------*/

/*メインビジュアル背景色*/
body.cc-page-blog #main-visual {
  background: #000;
}


/*ブログ記事ページのメインビジュアル透過率*/
.cc-page-blog #main-visual .j-imageSubtitle img {
  opacity: .5;
}


/*テーマ・日付の文字の色、サイズ*/
.cc-page-blog .n.j-blog-meta.j-blog-post--header .j-text.j-module.n,
.cc-page-blog .n.j-blog-meta.j-blog-post--header .j-text.j-module.n a.j-blog-post--category {
  color: #555 !important;
  font-size: 1.1rem;
}


/*ブログタイトルの字間*/
.cc-page-blog h1.j-blog-header.j-blog-headline.j-blog-post--headline {
  letter-spacing: .15rem;
}


/*カテゴリエリアの仕切り線*/
.j-module.n.j-text.j-blog-post--tags-wrapper {
  border-top: 1px solid #BBB;
}


/*カテゴリの文字色*/
.j-module.n.j-text.j-blog-post--tags-wrapper span {
  color: #555 !important;
}


/*カテゴリのリンク色*/
.j-module.n.j-text.j-blog-post--tags-wrapper span a.j-blog-post--tag {
  color: #FFF !important;
}


/*カテゴリの背景色*/
.j-module.n.j-text.j-blog-post--tags-wrapper span a.j-blog-post--tag {
  background: #333 !important;
}


/*カテゴリの背景色（マウスオン時）*/
main .j-blog-post--tags-list a.j-blog-post--tag:hover {
  opacity: .7;
}


/*SNS アイコン*/
.cc-page-blog .cc-sharebuttons-element.cc-sharebuttons-style-black a::before {
  color: #333 !important;
}

.cc-page-blog div.cc-sharebuttons-size-32 a {
  height: 32px;
  width: 32px;
}

.cc-page-blog div.cc-sharebuttons-size-32 a::before {
  font-size: 22px !important;
}

.cc-page-blog div.cc-sharebuttons-size-32 a::after {
  font-size: 12px !important;
  z-index: 2;
}

/*コメント欄の「コメントをお書きください」*/
main .skiptoform a {
  background: #333;
  color: #FFF !important;
  font-size: 1.2rem !important;
}


/*コメント欄の「コメントをお書きください」（マウスオン時）*/
main .skiptoform a:hover {
  opacity: .7;
}


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

  /*ブログタイトルの文字サイズ、行間*/
  h1.j-blog-header.j-blog-headline.j-blog-post--headline {
    font-size: 2.1rem;
    line-height: 1.3;
  }
}



/*------ ブログ一覧ページメインエリア表示（レイアウト：「横並び」設定時） ------*/

/*ページの大見出し（テーマのタイトル：h1）行間*/
.j-blog.n.clearover.j-blogarticle h1 {
  letter-spacing: .1rem;
}


/*ブログ一覧ページの見出し（h2）の文字色*/
.j-blog-meta h2 {
  color: #333;
  font-size: 1.8rem !important;
  text-align: left !important;
}


/*ブログ一覧ページの見出し（h2：マウスオン時）*/
main .j-blog-meta a h2.j-blog-headline.j-blog-post--headline:hover {
  opacity: .7;
}


/*テーマの文字色*/
main a.j-blog-page--tag,
main a:link.j-blog-page--tag,
main a:visited.j-blog-page--tag {
  color: #555 !important;
  text-decoration: none !important;
}


/*日付の文字色*/
.j-blog.n.clearover.j-blogarticle .cc-m-hgrid-column.last #cc-m-1:nth-of-type(1),
.j-blog.n.clearover.j-blogarticle #cc-matrix- #cc-m-1:nth-of-type(1).j-text {
  color: #555;
  font-size: 1.2rem;
}


/*概要文の文字色、サイズ、行間*/
.j-blog.n.clearover.j-blogarticle .cc-m-hgrid-column.last #cc-m-1:nth-of-type(3),
.j-blog.n.clearover.j-blogarticle #cc-matrix- #cc-m-1:nth-of-type(3) {
  color: #888;
  font-size: 1.2rem;
  line-height: 1.3;
}


/*「続きを読む」の文字色、サイズ、行間*/
.j-blog.n.clearover.j-blogarticle .cc-m-hgrid-column.last #cc-m-1:nth-of-type(4) p a,
.j-blog.n.clearover.j-blogarticle #cc-matrix- #cc-m-1:nth-of-type(4) p a {
  color: #555 !important;
  font-size: 1.2rem;
  line-height: 1.3;
}


/*「さらに表示する」ボタン（ブログ10件以上で表示）*/
#load-more-blog-posts-content a {
  background: #333;
  color: #FFF !important;
}


/*「さらに表示する」ボタン（マウスオン時）*/
#load-more-blog-posts-content a:hover {
  opacity: .7;
}


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

  /*ブログ一覧の見出し（h2：スマホ時）  */
  .j-blog-meta h2 {
    font-size: 1.6rem !important;
  }
}



/*------ ブログ一覧ページサイドバーエリア表示（レイアウト：「横並び」設定時、ブログ記事ページで表示される） ------*/

/*「New Post」見出し（h1）のボーダー、文字色、サイズなど*/
section.Jimdo-blog-feed-sidearea h1 {
  border-bottom: 1px solid #AAA;
  border-top: 1px solid #AAA;
  color: #888;
  font-size: 1.4rem;
  letter-spacing: 0;
  text-align: center;
}


/*ブログタイトル（h2）の文字サイズ*/
section.Jimdo-blog-feed-sidearea .j-blog-meta h2 {
  font-size: 1.4rem !important;
}





/* =======================================
　表のスタイル
======================================= */

/*強制的に線を重ねる*/
table {
  border-collapse: collapse;
}


/*枠組みの線*/
table tr td {
  border: 1px solid #666;
}





/* =======================================
　　画像/画像つき文章
======================================= */

/*キャプションの文字サイズ*/
figcaption {
  font-size: 1.2rem !important;
}





/* =======================================
　　水平線のスタイル
======================================= */

/*水平線の色、線種、太さ*/
.j-hr {
  margin: 24px 0 !important;
}

.hr {
  border-bottom-style: solid !important;
  border-bottom-width: 1px !important;
  border-color: #EA3FAD !important;
}





/* =======================================
　　フォームのスタイル
======================================= */

/*送信ボタンのボーダー、背景色、文字色（通常時）*/
button.button,
input[type=button],
input[type=submit],
.zend_form input[type=submit] {
  background: #EA3FAD !important;
  border: 2px solid #EA3FAD !important;
  color: #FFF !important;
}


/*送信ボタンのボーダー、背景色、文字色（マウスオン時）*/
button.button:hover,
input[type=button]:hover,
input[type=submit]:hover,
zend_form input[type=submit]:hover {
  background: #FFF !important;
  color: #EA3FAD !important;
}


/*フォームの枠色*/
input[type=text],
input[type=email],
input[type=date],
select,
textarea {
  border: 1px solid #DDD;
}


/*フォームテキストエリアの枠*/
.cc-m-form-view-input-wrapper textarea {
  border: 1px solid #DDD;
}


/*ゲストブックテキストエリアの枠*/
textarea[name=comment] {
  border: 1px solid #DDD !important;
}





/* =======================================
　ファイルダウンロードのスタイル
======================================= */

/*------ 「ダウンロード」ボタンのボーダー、背景色、文字色（通常時）------*/
.cc-m-download-file-link a.cc-m-download-link {
  background: #000;
  border: 2px solid #000;
  color: #FFF !important;
}



/*------ 「ダウンロード」ボタンのボーダー、背景色、文字色（マウスオン時） ------*/
.cc-m-download-file-link a.cc-m-download-link:hover {
  background: transparent;
  color: #000 !important;
}





/* =======================================
　　ショップ（メインエリア）のスタイル
======================================= */

/*------ 商品コンテンツ ------*/

/*商品名*/
.cc-shop-product-desc span.fn {
  font-size: 2rem;
}


/*「カートに追加」ボタンのボーダー、背景色（通常時）*/
a.cc-shop-addtocard,
a.cc-shop-addtocard:visited,
input.cc-checkout-btn {
  background: #900 !important;
  border: 2px solid #900 !important;
}


/*「カートに追加」ボタンの文字色（通常時）*/
main a:link.cc-shop-addtocard,
main a.cc-shop-addtocard:visited {
  color: #FFF !important;
  font-size: 1.4rem !important;
}


/*「カートに追加」ボタンの背景色（マウスオン時）*/
a.cc-shop-addtocard:hover {
  background: #FFF !important;
}


/*「カートに追加」ボタンの文字色（マウスオン時）*/
main a.cc-shop-addtocard:hover {
  color: #900 !important;
  font-size: 1.4rem !important;
}


/*セレクトボックス*/
select.cc-product-variant-selectbox.j-product__variants {
  font-size: 1.2rem !important;
}


/*商品価格の文字の色、サイズ*/
.cc-shop-price {
  color: #900 !important;
  font-size: 2.2rem !important;
}


/*注釈*/
p.cc-product-tax-and-shipping-info,
ul.cc-shop-product-availability.j-product-details {
  font-size: 1.2rem !important;
}


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

  /*概要エリアの背景色*/
  .cc-shop-product-desc .description {
    background: #EFEFEF;
  }


  /*概要エリアの文字サイズ、行間*/
  .cc-shop-product-desc .description p {
    font-size: 1.4rem !important;
    line-height: 1.75 !important;
  }
}



/*------ 商品カタログコンテンツ ------*/

/*-- カタログ共通の文字色 --*/
main a.j-catalog-product-title-link,
main a:link.j-catalog-product-title-link,
main a:visited.j-catalog-product-title-link {
  color: #333 !important;
}


/*スタイル3共通の背景色*/
.cc-catalog-st-3 .cc-webview-product.hlisting.j-catalog-product {
  background: #EEE !important;
}


/*スタイル4共通の背景色*/
.cc-catalog-st-4 .cc-webview-product.hlisting.j-catalog-product {
  background: #111 !important;
}


/*スタイル4共通の文字色（メインエリア）*/
main .cc-catalog-st-4 a.j-catalog-product-title-link,
main .cc-catalog-st-4 a:link.j-catalog-product-title-link,
main .cc-catalog-st-4 a:visited.j-catalog-product-title-link,
.cc-catalog-st-4 strong.cc-price.price.j-catalog-price {
  color: #FFF !important;
}



/*-- 並べて表示 --*/

/*スタイル6のリンク色*/
main .cc-catalog-galleryview.cc-catalog-st-6 a.j-catalog-product-title-link,
main .cc-catalog-galleryview.cc-catalog-st-6 a:link.j-catalog-product-title-link,
main .cc-catalog-galleryview.cc-catalog-st-6 a:visited.j-catalog-product-title-link,
.cc-catalog-st-6 strong.cc-price.price.j-catalog-price {
  color: #FFF !important;
}


/*スタイル6の背景色*/
.cc-catalog-container-new .cc-catalog-galleryview.cc-catalog-st-6 .cc-product-details,
.cc-catalog-container-new .cc-catalog-sliderview.cc-catalog-st-6 .cc-product-details {
  background-color: rgba(0, 0, 0, .6) !important;
}



/*-- リスト表示 --*/


/*リスト表示共通の商品名の文字色*/
.cc-catalog-container-new .cc-catalog-listview .cc-product-title {
  line-height: 1.5;
}


/*リスト表示のリンク*/
main .cc-catalog-listview a.j-catalog-product-title-link {
  font-size: 1.8rem;
  text-decoration: none !important;
}


/*リスト表示共通の概要文の文字色*/
.cc-catalog-listview .cc-product-description.description.j-catalog-product-description {
  color: #777;
  font-size: 1.4rem;
  line-height: 1.5;
}


/*リスト表示スタイル2の背景色*/
.cc-catalog-container.j-catalog-container.cc-catalog-listview.cc-catalog-st-2 .cc-webview-product-price.j-catalog-product-price {
  background: #EEE;
}


/*リスト表示スタイル4の文字色*/
.cc-catalog-container.j-catalog-container.cc-catalog-listview.cc-catalog-st-4.cc-catalog-size-3 .cc-product-description.description.j-catalog-product-description {
  color: #999;
}


/*リスト表示スタイル4のリンク色*/
.cc-catalog-container.j-catalog-container.cc-catalog-listview.cc-catalog-st-4 .cc-product-description.description.j-catalog-product-description a {
  color: #FFF !important;
}


/*リスト表示スタイル5の商品価格文字サイズ、行間*/
.cc-catalog-container-new .cc-catalog-listview.cc-catalog-st-5 .cc-webview-product-price strong {
  font-size: 1.5rem !important;
  line-height: 1.5;
}


/*リスト表示スタイル6の文字色*/
.cc-catalog-listview.cc-catalog-st-6 .cc-webview-product-price.j-catalog-product-price strong.cc-price.price.j-catalog-price {
  color: #222 !important;
  font-size: 1.6rem;
}



/*-- スライダー表示 --*/

/*スライダー表示スタイル4の枠線*/
.cc-catalog-container-new .cc-catalog-sliderview.cc-catalog-st-4 {
  border: 2px solid #AAA !important;
}


/*スライダー表示スタイル6のリンク色*/
.cc-catalog-container-new .cc-catalog-sliderview.cc-catalog-st-6 span.cc-product-title.item.j-catalog-product-title a.j-catalog-product-title-link {
  color: #FFF !important;
}




/* =======================================
　　カートアイコンのスタイル（カートに商品が入った時に表示される）
======================================= */

/*アイコン表示位置*/
.j-cart {
  right: .5rem !important;
  top: 6rem !important;
}


/*カートアイコン色*/
.j-cart--hover-popup,
.j-cart-icon {
  background-color: #000 !important;
}





/* =======================================
　トップナビゲーション（メインナビ）のスタイル
======================================= */

/*------- PC表示 -------*/

/*２階層目メニューの文字色（通常時）*/
#top-nav .j-nav-variant-nested li li a {
  color: #FFF;
}


/*２階層目以下メニューのボーダー、背景色（通常時）*/
#top-nav .j-nav-variant-nested li li {
  background: rgba(0, 0, 0, .7);
  border-bottom: 1px solid rgba(255, 255, 255, .5);
}


/*２階層目以下メニューのボーダー、背景色（マウスオン時）*/
#top-nav .j-nav-variant-nested li li:hover {
  background: rgba(0, 0, 0, .5);
}


/*矢印アイコン（サブメニュー右展開の場合）*/
#top-nav .j-nav-variant-nested li.has-sub>a:after {
  background: url("data:image/svg+xml;utf-8,<svg fill=\"%23CCC\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 320 512\"><path d=\"M143,352.3,7,216.3a23.9,23.9,0,0,1,0-33.9l22.6-22.6a23.9,23.9,0,0,1,33.9,0l96.4,96.4,96.4-96.4a23.9,23.9,0,0,1,33.9,0l22.6,22.6a23.9,23.9,0,0,1,0,33.9l-136,136a23.78,23.78,0,0,1-33.8,0Z\"/></svg>") no-repeat;
}


/*矢印アイコン（サブメニュー左展開の場合）*/
#top-nav .j-nav-variant-nested li.drop-left li.has-sub>a:before {
  background: url("data:image/svg+xml;utf-8,<svg fill=\"%23CCC\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 320 512\"><path d=\"M143,352.3,7,216.3a23.9,23.9,0,0,1,0-33.9l22.6-22.6a23.9,23.9,0,0,1,33.9,0l96.4,96.4,96.4-96.4a23.9,23.9,0,0,1,33.9,0l22.6,22.6a23.9,23.9,0,0,1,0,33.9l-136,136a23.78,23.78,0,0,1-33.8,0Z\"/></svg>") no-repeat;
}



/*------- スマホ表示 -------*/

.j-nav-variant-nested .menu-toggle {
  padding: 27px 16px 16px !important;
}


/*スマホメニュー文字色*/
#top-nav .j-nav-variant-nested.mobile li a {
  color: #FFF;
}


/*スマホメニュー全体背景*/
#top-nav .j-nav-variant-nested.mobile {
  backdrop-filter: contrast(1) blur(3px);
  background: transparent;
}


/*ハンバーガーメニュー*/
i.fa.fa-bars:before {
  background: url("data:image/svg+xml;utf-8,<svg fill=\"%23FFF\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z\"/></svg>") no-repeat;
}


/*ハンバーメニューエリアの背景色*/
#top-nav .j-nav-variant-nested.mobile a.menu-toggle.full {
  background: #EA3FAD;
}


/*スマホメニュー１階層目の背景*/
#top-nav .j-nav-variant-nested.mobile li {
  background: #EA3FAD;
}


/*スマホメニュー2階層目の背景*/
#top-nav .j-nav-variant-nested.mobile li li {
  background: #c51b88;
}


/*スマホメニュー３階層の背景*/
#top-nav .j-nav-variant-nested.mobile li li li {
  background: #ab0f73;
}


/*スマホメニューの仕切りライン*/
#top-nav .j-nav-variant-nested.mobile ul li a {
  border-bottom: 1px solid rgba(255, 255, 255, .5);
}


/*Closeボタンの色*/
#top-nav .j-nav-variant-nested .call-btn-mobile,
#top-nav .j-nav-variant-nested .location-btn-mobile,
#top-nav .j-nav-variant-nested .menu-toggle {
  color: #FFF;
}


#top-nav .j-nav-variant-nested .close-menu {
  color: #FFF;
}


/*Closeメニューの背景*/
#top-nav .j-nav-variant-nested.mobile>ul>li:last-child {
  background: #4d1439;
}


/*スマホメニューのCloseアイコン*/
.j-nav-variant-nested.mobile .fa-remove:before,
.j-nav-variant-nested.mobile .fa-close:before,
.j-nav-variant-nested.mobile .fa-times:before {
  background: url("data:image/svg+xml;utf-8,<svg fill=\"%23FFF\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 352 512\"><path d=\"M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z\"/></svg>") no-repeat;
}


/*スマホメニューのプラスアイコン*/
.j-nav-variant-nested.mobile i.fa.fa-plus:before {
  background: url("data:image/svg+xml;utf-8,<svg fill=\"%23FFF\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"/></svg>") no-repeat;
}




/* =======================================
　パンくずリストのスタイル
======================================= */

main .j-nav-variant-breadcrumb ol li a,
main a:link.bread-top,
main a:visited.bread-top,
main a.bread-blog,
main a:link.bread-blog,
main a:visited.bread-blog,
main .j-nav-variant-breadcrumb a.j-blog-post--category {
  color: #999 !important;
  font-size: 1.1rem;
}

main .j-nav-variant-breadcrumb h1.j-blog-header.j-blog-headline.j-blog-post--headline {
  color: #444 !important;
  font-size: 1.1rem;
  font-weight: normal;
  letter-spacing: 0;
}

main a.bread-top:hover,
main .j-nav-variant-breadcrumb ol li a:hover,
main .j-nav-variant-breadcrumb ol li.cc-nav-current.j-nav-current a,
nav#bread-nav a.bread-blog:hover,
nav#bread-nav a.j-blog-post--category:hover {
  color: #444 !important;
}

nav#bread-nav a.j-blog-post--category {
  line-height: 2.2;
}

nav#bread-nav h1.j-blog-header.j-blog-headline.j-blog-post--headline {
  line-height: 2.2;
}



/* =======================================
　サイドバーナビ
======================================= */

/*------- サイドバーナビの背景色 -------*/
body.bottom-side nav#side-nav ul {
  background: #000;
}



/*------- サイドバーナビのタイトル「Contents Menu」背景色、文字色 -------*/
#side ul.mainNav2:before {
  background: #000;
  color: #888;
  content: "Contents Menu";
  content: "Contents Menu";
  font-size: 1.2rem;
  font-style: italic;
  text-align: center;
  text-align: center;
}


/*------- サイドバーナビメニュー -------*/
nav#side-nav ul li a {
  background: #000 !important;
  border-bottom: 1px solid #DDD;
  color: #FFF !important;
}

/*マウスオン、メニュー選択時*/
nav#side-nav ul li a:hover,
nav#side-nav ul li a.current {
  background: #333 !important;
  color: #DDD !important;
}




/* =======================================
　上に戻るボタンのスタイル
======================================= */

.cc-FloatingButtonBarContainer .cc-FloatingButtonBarContainer-button-scroll span {
  background-color: #EA3FAD !important;
}

ul.cc-FloatingButtonBarContainer li a:hover {
  opacity: .7;
}





/* =======================================
　オリジナルコンテンツパーツのスタイル
======================================= */

/*------ フルサイズコンテンツ ------*/

/*フルサイズコンテンツの背景デフォルト色*/
.fullsize,
.fullsize-edit {
  background: #EEE;
}



/*------ 固定コンタクトボタン ------*/
#fixed-contact-btn {
  background: #91005e;
  padding: 12px;
  box-sizing: border-box;
}

#fixed-contact-btn .fixed-btn {
  width: 30%;
}

/*固定コンタクトボタンの色（通常時）*/
#fixed-contact-btn a {
  color: #FFF;
  transition: all .5s;
  border-radius: 8px;
}


/*固定コンタクトボタンのメールアイコン*/
#fixed-contact-btn a::before {
  content: '';
  display: inline-block;
}

/* 電話ボタン */
#fixed-contact-btn .tel-btn a {
  background: #ff9000;
}

#fixed-contact-btn .tel-btn a:hover {
  background: #cd7400;
}

#fixed-contact-btn .tel-btn a::before {
  width: 28px;
  height: 28px;
  background: url(../images/icon-tel-btn.png) no-repeat 0 center;
  background-size: contain;
  vertical-align: -6px;
  margin-right: 8px;
  filter: brightness(100) saturate(100%);
}


/* 入校ボタン */
#fixed-contact-btn .nyuko-btn a {
  background: #5cd435;
}

#fixed-contact-btn .nyuko-btn a:hover {
  background: #42af1f;
}

#fixed-contact-btn .nyuko-btn a::before {
  width: 28px;
  height: 28px;
  background: url(../images/icon-entry-btn.png) no-repeat 0 center;
  background-size: contain;
  vertical-align: -6px;
  margin-right: 8px;
  filter: brightness(100) saturate(100%);
}



/* 合宿ボタン */
#fixed-contact-btn .gasshuku-btn a {
  background: #00b0d3;
}

#fixed-contact-btn .gasshuku-btn a:hover {
  background: #008ba7;
}

#fixed-contact-btn .gasshuku-btn a::before {
  width: 38px;
  height: 38px;
  background: url(../images/icon-gasshuku-btn.png) no-repeat 0 center;
  background-size: contain;
  vertical-align: -11px;
  margin-right: 8px;
  filter: brightness(100) saturate(100%);
}


@media screen and (max-width: 639px) {
  #fixed-contact-btn .fixed-btn {
    width: 33%;
  }

  #fixed-contact-btn a {
    padding: 8px;
    font-size: 16px;
  }

  #fixed-contact-btn .tel-btn a::before,
  #fixed-contact-btn .nyuko-btn a::before {
    width: calc(28px * .5);
    height: calc(28px * .5);
    vertical-align: -2px;
    margin-right: 4px;
  }

  #fixed-contact-btn .gasshuku-btn a::before {
    width: calc(38px * .5);
    height: calc(38px * .5);
    vertical-align: -4px;
    margin-right: 4px;
  }


}





/* =======================================
　編集画面のスタイル
======================================= */

/*------ フッターの「コンテンツを追加」パネル ------*/

.cc-m-map-close>a::after {
  color: #FFF;
}

span.icon.icon-ellipsis-horizontal {
  color: #FFF !important;
}

span.cc-m-map-toggle-text {
  color: #FFF !important;
}

div.cc-m-map .cc-m-map-additionalToggle {
  text-decoration: none !important;
}



/* =======================================
　0.トップページのスタイル
======================================= */

/*----- トピックスのエリア（全体ラップ） -----*/
.top-page-topics-wrap.fullsize {
  background: #EBEBEB url(../images/contents-bg-msk-wh-top01.png) no-repeat center bottom;
  background-size: contain;
  padding-bottom: 12vw;
  margin-bottom: -9vw;
}

@media screen and (max-width: 639px) {
  .top-page-topics-wrap.fullsize {
    padding-bottom: 6vw;
  }
}


/*----- トピックスのエリア（タイトル部） -----*/
/* カラム */
.j-hgrid.top-page-topics.title {
  margin-bottom: 24px;
}

.j-hgrid.top-page-topics {
  background: #EBEBEB;
}

.cc-page.cc-pagemode-default .j-hgrid.top-page-topics {
  background: transparent;
  max-width: 1500px;
}


/* 中見出し */
.j-hgrid.top-page-topics.title h2 {
  text-align: center;
  color: #EA3FAD;
  margin-bottom: 0;
}

.j-hgrid.top-page-topics.title h2::before {
  content: '';
  display: inline-block;
  width: 75px;
  height: 75px;
  background: url(../images/icon-topic.png) no-repeat 0 center;
  background-size: contain;
  vertical-align: -23px;
  margin-right: 2px;
}


/*----- トピックスのエリア（チラシ部） -----*/
.j-hgrid.top-page-topics.leaflet .cc-m-hgrid-column {
  margin-bottom: 40px;
}

.j-hgrid.top-page-topics.leaflet img {
  width: 100%;
}


/*----- トピックスのエリア（ブログ読み込み部） -----*/
/* 枠 */
section.top-topics-feed.blog-feed.fullsize {
  background: transparent;
  margin-top: 3vw;
}

.top-topics-feed-inner {
  max-width: 1130px;
  margin: 0 auto;
}

.j-blog.n.clearover.j-blogarticle {
  border-top: 1px solid #C7C7C7;
  border-bottom: 1px solid #C7C7C7;
  margin-bottom: 16px;
  padding: 16px 0;
}


@media screen and (max-width: 639px) {
  section.top-topics-feed.blog-feed.fullsize {
    padding-top: 10vw;
  }
}


/* TOPICSブログ表示調整 */
.top-topics-feed .j-blog.n.clearover.j-blogarticle .cc-m-hgrid-column:first-child {
  display: none;
}

.top-topics-feed .j-blog.n.clearover.j-blogarticle .cc-m-hgrid-column.last {
  width: 100% !important;
  padding: 16px 8px;
}

.top-topics-feed .j-blog.n.clearover.j-blogarticle #cc-matrix-:first-child {
  border-top: none;
  padding-top: 0;
  padding-bottom: 16px;
}

.top-topics-feed .j-blog.n.clearover.j-blogarticle #cc-matrix- {
  border-top: 1px solid #C7C7C7;
  display: flex;
  padding-top: 16px;
}

.top-topics-feed .j-blog.n.clearover.j-blogarticle .cc-m-hgrid-column.last>#cc-matrix-2 {
  display: flex;
  flex-wrap: wrap;
}

.top-topics-feed .j-blog.n.clearover.j-blogarticle .cc-m-hgrid-column.last #cc-m-1:nth-of-type(1),
.top-topics-feed .j-blog.n.clearover.j-blogarticle #cc-matrix- #cc-m-1:nth-of-type(1).j-text {
  width: 200px;
  font-size: 15px;
  margin-right: 24px;
}

.top-topics-feed .j-blog-meta h2 {
  color: #161616;
  font-size: 15px !important;
  text-align: left !important;
}

.top-topics-feed .j-blog.n.clearover.j-blogarticle .cc-m-hgrid-column.last #cc-m-1:nth-of-type(2),
.top-topics-feed .j-blog.n.clearover.j-blogarticle #cc-matrix- #cc-m-1:nth-of-type(2).j-text {
  width: calc(100% - 224px);
  font-size: 15px;
}

.top-topics-feed .j-blog.n.clearover.j-blogarticle .cc-m-hgrid-column.last #cc-m-1:nth-of-type(3),
.top-topics-feed .j-blog.n.clearover.j-blogarticle #cc-matrix- #cc-m-1:nth-of-type(3),
.top-topics-feed .j-blog.n.clearover.j-blogarticle .cc-m-hgrid-column.last #cc-m-1:nth-of-type(4),
.top-topics-feed .j-blog.n.clearover.j-blogarticle #cc-matrix- #cc-m-1:nth-of-type(4),
.top-topics-feed .j-blog.n.clearover.j-blogarticle #cc-matrix- .cc-m-spacing-wrapper {
  display: none;
}


@media screen and (max-width: 639px) {
  .top-topics-feed .j-blog.n.clearover.j-blogarticle #cc-matrix- {
    flex-direction: column;
    margin-bottom: 0;
    padding: 16px 8px;
  }

  .top-topics-feed .j-blog.n.clearover.j-blogarticle .cc-m-hgrid-column.last>#cc-matrix-2 {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-topics-feed .j-blog.n.clearover.j-blogarticle .cc-m-hgrid-column.last #cc-m-1:nth-of-type(1),
  .top-topics-feed .j-blog.n.clearover.j-blogarticle #cc-matrix- #cc-m-1:nth-of-type(1).j-text,
  .top-topics-feed .j-blog.n.clearover.j-blogarticle .cc-m-hgrid-column.last #cc-m-1:nth-of-type(2),
  .top-topics-feed .j-blog.n.clearover.j-blogarticle #cc-matrix- #cc-m-1:nth-of-type(2).j-text {
    width: 100%;
    margin: 0;
  }

  .top-topics-feed .j-blog.n.clearover.j-blogarticle .cc-m-hgrid-column.last #cc-m-1:nth-of-type(1),
  .top-topics-feed .j-blog.n.clearover.j-blogarticle #cc-matrix- #cc-m-1:nth-of-type(1).j-text {
    font-size: 12px;
  }

}



/*----- #宿毛でよかったエリア -----*/
/* イメージ画像 */
.j-imageSubtitle.fullsize-image.yokatta figure img {
  width: 100%;
  height: 70vw;
  object-fit: cover;
  object-position: 50% 0%;
}



/*----- 選ばれる理由エリア -----*/

/* カラムラップ */
.reason-content-col-wrap.fullsize {
  background: url(../images/point-bg-logo.png) no-repeat center;
  background-size: contain;
  margin: -12vw calc(50% - 50vw) -6vw !important;
  padding: 13vw 16px 6vw;
  background-repeat: no-repeat;
  position: relative;
}

.reason-content-col-wrap.fullsize .j-module.n.j-hgrid.reason-content-col {
  margin: 0 auto 6vw;
  max-width: 1090px;
  width: 100%;
}

@media screen and (max-width: 639px) {
  .reason-content-col-wrap.fullsize .j-module.n.j-hgrid.reason-content-col {
    margin: 0 auto 0;
  }
}


/* カラム */
.cc-page.cc-pagemode-default .j-hgrid.reason-content-col.reason01 .cc-m-hgrid-column.last>div,
.cc-page.cc-pagemode-default .j-hgrid.reason-content-col.reason03 .cc-m-hgrid-column.last>div {
  padding-left: 4vw;
}

.cc-page.cc-pagemode-default .j-hgrid.reason-content-col.reason02 .cc-m-hgrid-column:first-child>div {
  padding-right: 4vw;
}


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

  .cc-page.cc-pagemode-default .j-hgrid.reason-content-col.reason02 {
    display: flex;
    flex-direction: column-reverse;
  }

  .cc-page.cc-pagemode-default .j-hgrid.reason-content-col.reason02 .cc-clear {
    display: none;
  }

  .cc-page.cc-pagemode-default .j-hgrid.reason-content-col.reason01 .cc-m-hgrid-column.last>div,
  .cc-page.cc-pagemode-default .j-hgrid.reason-content-col.reason03 .cc-m-hgrid-column.last>div,
  .cc-page.cc-pagemode-default .j-hgrid.reason-content-col.reason02 .cc-m-hgrid-column:first-child>div {
    padding-left: 0;
    padding-right: 0;
  }

  .cc-page.cc-pagemode-default .j-hgrid.reason-content-col figure img {
    margin-bottom: 72px;
    width: 100%;
  }

}


/* 選ばれる理由（メインタイトル） */
.toppage-yokatta-pr-msk-wrap.fullsize {
  background: url(../images/contents-bg-msk-wh-top01.png) no-repeat center bottom;
  background-size: contain;
  margin-top: -29vw !important;
  position: relative;
}

.toppage-yokatta-pr-msk-wrap.fullsize .j-module.n.j-hgrid {
  margin: 0 auto;
  max-width: 100%;
}

.cc-page.cc-pagemode-default .j-imageSubtitle.reasons-badge img {
  width: 26vw;
  margin-left: 5vw;
}

@media screen and (max-width: 1179px) {
  .toppage-yokatta-pr-msk-wrap.fullsize {
    margin-top: -32vw;
  }
}


@media screen and (max-width: 789px) {
  .toppage-yokatta-pr-msk-wrap.fullsize {
    margin-top: -39vw;
  }
}

/* @media screen and (max-width: 639px) {
  .toppage-yokatta-pr-msk-wrap.fullsize {
    margin-top: -31vw;
  }
} */


/* 選ばれる理由（各コンテンツのカラム） */
.j-hgrid.reason-content-col {
  margin-bottom: 120px;
  background: #f3f3f3;
}

.cc-page.cc-pagemode-default .j-hgrid.reason-content-col {
  background: transparent;
}


/* 選ばれる理由（各コンテンツのタイトル） */
.j-text.reasons-title::before {
  content: '';
  display: inline-block;
  position: absolute;
}

.j-text.reasons-title.title01::before {
  background: url(../images/icon-point01.png) no-repeat 0 center;
  background-size: contain;
}

.j-text.reasons-title.title02::before {
  background: url(../images/icon-point02.png) no-repeat 0 center;
  background-size: contain;
}

.j-text.reasons-title.title03::before {
  background: url(../images/icon-point03.png) no-repeat 0 center;
  background-size: contain;
}

.j-text.reasons-title p {
  line-height: 1.2 !important;
}

@media screen and (min-width: 640px) {
  .j-text.reasons-title p {
    padding-left: 120px;
  }

  .j-text.reasons-title::before {
    width: 115px;
    height: 82px;
  }

  .cc-page.cc-pagemode-default .j-text.reasons-title.sp {
    display: none;
  }
}

@media screen and (max-width: 639px) {
  .j-text.reasons-title p {
    padding-left: calc(120px * .7);
  }

  .j-text.reasons-title::before {
    width: calc(115px * .7);
    height: calc(82px * .7);
  }

  .cc-page.cc-pagemode-default .j-text.reasons-title.pc {
    display: none;
  }
}


@media screen and (max-width: 480px) {
  .j-text.reasons-title::before {
    display: block;
    position: relative;
  }

  .j-text.reasons-title p {
    padding-left: 0;
  }
}







/*----- 笑顔がいっぱい（SNSエリア） -----*/

/* カラムラップ */
.sns-col-wrap.fullsize {
  background: url(../images/contents-bg-msk-wh-top03.png) no-repeat center top,
    url(../images/contents-bg-msk-wh-top02.png) no-repeat center bottom, #EA3FAD;
  background-size: contain;
  padding-bottom: 15vw !important;
}

.sns-col {
  background: #EA3FAD;
}

.cc-page.cc-pagemode-default .sns-col {
  background: transparent;
}


@media screen and (max-width: 789px) {
  .sns-col-wrap.fullsize {
    padding-bottom: 20vw;
    margin-bottom: 10vw;
  }
}



/* タイトル部（全体） */
.sns-title {
  margin-top: 8vw;
  margin-bottom: 4vw;
}

.sns-title img {
  width: 100%;
}


/* タイトル部（笑顔がいっぱい） */
.sns-catch-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

img.sns-egao {
  width: 50%;
}

img.sns-ippai {
  width: 50%;
  margin-top: 15%;
  margin-left: -2%;
}


/* タイトル部（SNSで発信中） */
.sns-catch-sub {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2%;
}

img.sns-sub-front {
  width: 49%;
}

.sub-catch-end-wrap {
  width: 49%;
}

.sub-catch-end-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2%;
}

img.sns-sub-sns {
  width: 49%;
}

img.sns-sub-end {
  width: 49%;
}


/* Instagramエリア（タイトル部） */
.instagram-title h2,
.instagram-title p {
  color: #FFF !important;
  text-align: center;
}

.instagram-title h2 {
  font-size: 56px !important;
  margin-bottom: 0;
}

.instagram-title h2::before {
  content: '';
  display: inline-block;
  width: 64px;
  height: 64px;
  background: url(../images/icon-instagram.png) no-repeat 0 center;
  background-size: contain;
  vertical-align: -11px;
}

.instagram-title h2 a,
.instagram-title p a {
  color: #FFF !important;
  text-decoration: none !important;
}


/* Instagram埋め込みエリア */
.cc-page.cc-pagemode-default .insta-pre {
  display: none !important;
}


/* SNSアイコン */
.sns-small-logo {
  margin: 2vw 0 16px;
}

.sns-small-logo img {
  margin: 0 auto;
  width: 150px;
}

.j-gallery.sns-icon .cc-m-gallery-container.cc-m-gallery-cool {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.j-gallery.sns-icon .cc-m-gallery-cool-item {
  width: 60px;
}

.j-gallery.sns-icon .cc-m-gallery-cool-item img {
  width: 60px !important;
  height: 60px !important;
}


@media screen and (max-width: 639px) {
  .j-gallery.sns-icon .cc-m-gallery-cool-item {
    width: 40px;
  }

  .j-gallery.sns-icon .cc-m-gallery-cool-item img {
    width: 40px !important;
    height: 40px !important;
  }
}



/*----- アクセス -----*/
/* 見出し部 */
.j-hgrid.access-title-col h2 {
  text-align: center;
  color: #EA3FAD;
  margin-bottom: 4vw;
}

.j-hgrid.access-title-col h2::before {
  content: '';
  display: inline-block;
  width: 39px;
  height: 51px;
  background: url(../images/icon-access.png) no-repeat 0 center;
  background-size: contain;
  vertical-align: -7px;
  margin-right: 16px;
}

.j-hgrid.access-contents-col .cc-m-hgrid-column.last>div {
  padding-left: 10%;
}

.j-hgrid.access-contents-col h3 {
  color: #161616;
}



/* =======================================
　1.入校をご検討の方
======================================= */

/*----- プラン読み込み部 -----*/
#plan-insert {
  margin-top: 64px;
}

#plan-insert.fullsize {
  background: transparent;
}

#plan-insert.fullsize .j-hgrid {
  max-width: 1500px;
}

#plan-insert .j-hgrid .j-module.n {
  padding: 0 4% !important;
}

#plan-insert .j-hgrid .j-module.n.j-imageSubtitle {
  padding: 0 0 24px !important;
}


#plan-insert .j-hgrid .j-module.n.j-callToAction {
  padding: 0 !important;
}

#plan-insert.guide {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
}

#plan-menu.guide {
  margin-top: 2vw !important;
}


/*----- プラン説明 -----*/
/* タイトルカバー */
.plan-tag.cover {
  display: flex;
  justify-content: center;
}

.plan-tag.cover p {
  font-size: 20px !important;
}



/* =======================================
　1-1.教習料金
======================================= */

/*----- 料金メニュー -----*/
/* カラム */
.fee-cate-col-wrap.fullsize {
  background: transparent;
  padding: 0;
}

.fee-cate-col-wrap.fullsize .j-module.n.j-hgrid {
  max-width: 1500px;
}

/* 読み込み */
#fee-cate-insert.fullsize {
  background: transparent;
  padding: 40px 16px 0;
}

#fee-cate-insert.fullsize .j-hgrid {
  max-width: 1500px;
}


/* カテゴリータグ */
.fee-category {
  margin-bottom: 16px;
  margin-top: 24px;
}

.fee-category P {
  padding-bottom: 0;
  text-align: center;
  line-height: 1.2 !important;
}

.fee-category p a {
  display: block;
  color: #FFF !important;
  text-decoration: none !important;
  font-size: 20px;
  font-weight: 600;
  padding: 8px 16px;
  background: #EA3FAD;
}


/* 教習料金のカテゴリリンク */
.j-hgrid.fee-cate-col .j-text ul {
  list-style: none;
  padding-left: 8px;
}

.j-hgrid.fee-cate-col .j-text ul li {
  padding-bottom: 8px;
}

.j-hgrid.fee-cate-col .j-text ul li::before {
  content: "▶";
  font-size: 12px;
  vertical-align: 0;
  padding-right: 8px;
  color: #EA3FAD;
}


/*----- 各料金 -----*/
/* h3見出し */
main .fee-heading-h3 h3 {
  font-size: 28px !important;
}


/* h3見出し */
main h4.fee-heading {
  margin-bottom: 4px !important;
}

main h4.fee-heading::before {
  content: "■";
}


/* 区切り線 */
.fee-brake {
  height: 1px;
  background: #EA3FAD;
  margin-top: 5vw;
  margin-bottom: 4vw;
}











/* =======================================
　2.合宿でご予約の方
======================================= */

/*----- リードエリア -----*/
/* カラム */
.gasshuku-lead-col-wrap.insert-bg.fullsize {
  padding: 6vw 16px;
  margin-top: 4vw;
  margin-bottom: 4vw;
}

.cc-page.cc-pagemode-default .j-hgrid.gasshuku-lead-col {
  background: #FFF;
  padding: 24px !important;
  border-radius: 1vw;
}



/*----- コンテンツエリア -----*/
/* 画像 */
.j-hgrid.gasshuku-recommend-col img {
  width: 100%;
}



/* =======================================
　2-1.合宿プラン・入校日
======================================= */
.gasshuku-plan-point {
  background: #efefef;
  padding: 16px 24px;
  margin-bottom: 16px;
}


/*----- Googleカレンダー（レスポンシブ） -----*/
.responsive-calendar {
  position: relative;
  padding-bottom: 75%;
  /* 高さの比率を指定（必要に応じて調整） */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.responsive-calendar iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


@media screen and (max-width: 639px) {
  .responsive-calendar {
    padding-bottom: 100%;
    /* 高さの比率を指定（必要に応じて調整） */
  }
}


/*----- 料金一覧 -----*/
/* アンカー部 */
#gasshuku-fee.anker {
  margin-top: 40px;
}



/* =======================================
　4-1.スタッフ紹介
======================================= */

/*----- スタッフ紹介用カラム大枠 -----*/
/* 共通 */
.j-hgrid.staff-col p {
  padding-bottom: 0 !important;
}

.cc-page.cc-pagemode-default main .j-hgrid.staff-col .j-imageSubtitle {
  margin-bottom: 0;
}

.j-hgrid.staff-col {
  margin-top: 32px;
}


/* ラージスタイル */
.cc-page.cc-pagemode-default .j-hgrid.staff-col.large-style .cc-m-hgrid-column>div {
  padding: 1vw;
}


.j-hgrid.staff-col.large-style {
  border: 4px solid #EA3FAD;
  border-radius: 1.5vw;
  margin-top: 32px;
  background: #fff1fa;
}


/* スモールスタイル */
.j-hgrid.staff-col.small-style .cc-m-hgrid-column>div {
  background: #f7f7f7;
  border-radius: 1.5vw;
}

.j-hgrid.staff-col.small-style .cc-m-hgrid-column>div>.j-module.n {
  padding: 0 16px !important;
}


.j-hgrid.staff-col.small-style .cc-m-hgrid-column>div>.j-module.n:first-child {
  padding-top: 16px !important;
}

.j-hgrid.staff-col.small-style .cc-m-hgrid-column>div>.j-module.n:last-child {
  padding-bottom: 16px !important;
}


/* 肩書 */
.job-title {
  margin-top: 32px;
  margin-bottom: 8px;
}

.job-title .tag {
  display: inline-block;
  background: #EA3FAD;
  padding: 6px 12px;
}

.job-title .tag p {
  color: #FFF !important;
  line-height: 1 !important;
}

.large-style .job-title .tag p {
  font-size: 14px !important;
}

.small-style .job-title .tag p {
  font-size: 12px !important;
}


/* 名前 */
.cc-page.cc-pagemode-default .staff-name {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

main .staff-name p {
  color: #EA3FAD !important;
  font-weight: 500;
  letter-spacing: 2px;
  font-feature-settings: "palt";
  line-height: 1.2 !important;
}

main .large-style .kanji-name p {
  font-size: 32px !important;
}

main .large-style .kana-name p {
  font-size: 18px !important;
}

main .small-style .kanji-name p {
  font-size: 24px !important;
}

main .small-style .kana-name p {
  font-size: 16px !important;
}


/* プロフィールのコメント */
.staff-profile {
  margin-top: 32px;
}


main .small-style .staff-profile p {
  font-size: 14px !important;
}



/* =======================================
　合宿同意フォーム
======================================= */

/*----- フォームスタイル -----*/
@media screen and (min-width: 769px) {
  .gasshuku-form-style .cc-m-form-view-element>label {
    width: 25% !important;
    max-width: 300px !important;
  }

  .gasshuku-form-style .cc-m-form-view-element>.cc-m-form-view-input-wrapper {
    width: 74% !important;
  }
}


@media screen and (max-width: 768px) {
  .gasshuku-form-style form.cc-m-form .cc-m-form-view-element {
    display: flex !important;
    flex-direction: column;
  }

  .gasshuku-form-style .cc-m-form-view-element>label {
    width: 100% !important;
    max-width: 100% !important;
  }

  .gasshuku-form-style .cc-m-form-view-element.cc-m-form-check.cc-m-required {
    display: block !important;
  }

  .gasshuku-form-style .cc-m-form-view-element.cc-m-form-check.cc-m-required>label {
    width: 250px !important;
  }

}