@charset "UTF-8";

/* A4印刷用CSS */
@media print {
  /* ページ設定 */
  @page {
    size: A4;
    margin: 15mm 10mm;
  }

  /* 基本設定 */
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    color-adjust: exact;
  }

  body {
    margin: 0;
    padding: 0;
    font-size: 12pt;
    line-height: 1.6;
    color: #000;
    background: #fff;
  }

  /* 不要な要素を非表示 */
  header nav,
  #sp_trig,
  #sp_close,
  #page-top,
  .entry_btn,
  footer,
  .bg {
    display: none !important;
  }

  /* ヘッダー簡略化 */
  header {
    position: static;
    background: #fff;
    border-bottom: 2px solid #000;
    padding: 10px 0;
    filter: none;
  }

  header h1 img {
    max-width: 150px;
    height: auto;
  }

  /* メインコンテンツ */
  main {
    padding-top: 0;
    margin-top: 20px;
  }

  #wrapper {
    width: 100%;
    max-width: 100%;
  }

  .wrap {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* 見出し */
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
    break-after: avoid;
  }

  h1 {
    font-size: 20pt;
    margin: 0 0 15px 0;
  }

  h2 {
    font-size: 16pt;
    margin: 20px 0 10px 0;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
  }

  h3 {
    font-size: 14pt;
    margin: 15px 0 10px 0;
  }

  /* テキスト */
  p {
    margin: 0 0 10px 0;
    orphans: 3;
    widows: 3;
  }

  /* リンク */
  a {
    color: #000;
    text-decoration: underline;
  }

  /* a[href]:after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #666;
  }

  a[href^="#"]:after,
  a[href^="javascript"]:after {
    content: "";
  } */

  /* 画像 */
  img {
    max-width: 100% !important;
    height: auto !important;
    page-break-inside: avoid;
    break-inside: avoid;
  }

  figure {
    page-break-inside: avoid;
    break-inside: avoid;
    margin: 10px 0;
  }

  /* テーブル */
  table {
    border-collapse: collapse;
    width: 100%;
    page-break-inside: avoid;
    break-inside: avoid;
  }

  table th,
  table td {
    border: 1px solid #333;
    padding: 5px;
    font-size: 10pt;
  }

  table th {
    background-color: #f0f0f0 !important;
    font-weight: bold;
  }

  /* リスト */
  ul, ol {
    margin: 10px 0;
    padding-left: 20px;
  }

  li {
    margin: 5px 0;
  }

  /* 改ページ制御 */
  section,
  article {
    page-break-inside: avoid;
    break-inside: avoid;
  }

  .page-break {
    page-break-before: always;
    break-before: always;
  }

  /* カルーセル（印刷時は全画像表示） */
  .carousel .slick-prev,
  .carousel .slick-next,
  .carousel .slick-dots {
    display: none !important;
  }

  .carousel figure {
    display: block !important;
    opacity: 1 !important;
    margin: 10px 0;
  }

  /* コース情報 */
  .course-info h3 {
    display: block;
  }

  .course-info h3 span {

  }

  .course-info h3 b {
    display: block;
    margin-top: 5px;
  }

  /* トップページ */
  	.toppage {
    background: none !important;
	}
	.toppage section{
	}
  	.toppage h2{
	color:#000!important;
  	}
	h2::before{
		display:none!important;
	}
	.guest {
		 background: none !important;
	}
	.guest_box{
		width: 48% !important;
	}

	.reward .prize_wrap{
		padding:20px;
		background: none !important;
	}
	.reward .prize_wrap .prize li {
		font-size: 16px;
	}
	.reward .prize_wrap .prize li.winner {
		font-size: 20px;
	}
	.entry {
		 background: none !important;
	}

}

