@charset "utf-8";

/*------ フォント 
.biz-udpgothic-regular {
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.biz-udpgothic-bold {
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 700;
  font-style: normal;
}
------*/

.rubyful-rt {
	font-size: 0.5em;
	text-align: center;
	margin-bottom: 0.3em;
}

.my-toggle {
	position: fixed;
	bottom: 20px;
	right: 20px;
	padding: 10px 20px;
	background: #fff;
	color: #000;
	border: 1px solid #000;
	border-radius: 4px;
	cursor: pointer;
	transition: 0.3s;
	z-index: 9999;
}

.my-toggle:hover {
	background: #000;
	color: #fff;
}

sup {
	vertical-align: super;
	font-size: 0.5em;
}

@font-face {
	font-family: "lowline-only";
	src: local("Hiragino Sans"), local("Hiragino-Sans"), local("游ゴシック体"), local("YuGothic"), local("Meiryo"), local("Meiryo UI"), local("メイリオ");
	unicode-range: U+005F, U+FF3F;
}

.br-sp {
	display: none;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "lowline-only", "BIZ UDPGothic", sans-serif;
	font-weight: 600;
	line-height: 40px;
}

body h1 {
	font-size: 32px;
}

body h2 {
	font-size: 32px;
}

body h3 {
	font-size: 28px;
}

body p {
	font-size: 16px;
}

body ul {
	font-size: 16px;
}

.loading {
	position: fixed;
  	width: 100%;
  	height: 100vh;
  	background-color: #fff;
  	z-index: 2;
  	top: 0;
 	left: 0;
 	display: flex;
  	justify-content: center;
  	align-items: center;
  	overflow: hidden;
}

.loading img {
	width: 50px;
	animation: load 2s infinite ease-in-out;
}

@keyframes load {
	0%, 100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(30px);
	}
}

header {
	height: 90px;
	width: 100%;
	top: 0;
	background-color: #ffffff;
	border-bottom: 1px solid #000000;
	position: fixed;
	z-index: 1;
}

header .logo {
	height: 90px;
	text-align: center;
}

.header-inner {
	height: 90px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-inner h1 {
	width: 400px;
	margin-left: 60px;
}

.header-inner ul {
	margin-left: auto;
	display: flex;
	margin-right: 15px;
}

.header-inner li {
	margin-right: 30px;
}

.header-inner .header-btn {
	border: 1px solid #000;
	color: #fff;
	background-color: #000;
	border-radius: 7px;
	width: 100px;
	text-align: center;
	transition: background-color 0.5s;
	transition: color 0.5s;
	cursor: pointer;
}

.header-inner .header-btn:hover {
	background-color: #fff;
	color: #000;
}

.breadcrumb-wrapper {
	overflow-x: auto; /* 横スクロールを可能にする */
	white-space: nowrap; /* 改行を防ぐ */
	/*IE(Internet Explorer)・Microsoft Edgeへの対応*/
	-ms-overflow-style: none;
	/*Firefoxへの対応*/
	scrollbar-width: none;
}

/*Google Chrome、Safariへの対応*/
.breadcrumb-wrapper::-webkit-scrollbar{
	display: none;
}

.breadcrumb {
	display: inline-flex; /* 横並びを強制 */
	list-style: none;
	padding: 2px 30px;
	background-color: #000;
	color: #FFFFFF;
	height: 45px;
	min-width: 100svw;
}

.breadcrumb li {
	white-space: nowrap; /* 各アイテムが改行されないように */
}

.breadcrumb li:not(:last-of-type)::after {
	content: "›";
	margin: 0 .6em; /* 記号の左右の余白 */
	color: #c0c0c0; /* 記号の色 */
}


.fv {
	height: calc(100svh - 90px);
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #ffffff;
}

.fv-inner {
	text-align: center;
}

.fv-inner img {
	margin: 50px 0;
}

.fv-inner button {
	border: 1px solid #000;
	background-color: #000;
	color: #fff;
	border-radius: 10px;
	text-align: center;
	transition: background-color 0.5s;
	transition: color 0.5s;
	font-size: 28px;
	padding: 15px;
	cursor: pointer;
}

.fv-inner button:hover {
	background-color: #fff;
	color: #000;
}

.fv-inner a {
	text-decoration: underline 1px;
	text-underline-offset: 5px;
}

.fv-inner p {
	margin-top: 15px;
}

.skill {
	height: calc(100svh - 90px);
	background-color: #f7f7f7;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.skill-inner span {
	background:linear-gradient(transparent 60%, #ff6 60%);
}

.skill-inner {
	margin: 30px 0;
}

.skill-inner p {
	margin: 30px 0;
}

.skill-inner img {
	width: 50%;
}

.how {
	background-color: #ffffff;
	text-align: center;
}

.how-inner {
	margin: 30px 0;
}

.how-inner span {
	background:linear-gradient(transparent 60%, #ff6 60%);
}

.how-inner img {
	margin-top: 50px;
	width: 50%;
}

.how-inner h3 {
	margin: 15px 0;
}

.how-inner p {
	margin-bottom: 30px;
}

.addition {
	height: calc(100svh - 90px);
	background-color: #f7f7f7;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.addition span {
	background:linear-gradient(transparent 60%, #ff6 60%);
}

.addition-inner {
	margin: 30px 0;
}

.addition-inner h2 {
	line-height: 1.5;
	margin-bottom: 60px;
}

.addition-inner p {
	margin-bottom: 30px;
}

.action {
	height: calc(100svh - 90px);
	background-color: #ffffff;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.action-inner h2 span {
	background:linear-gradient(transparent 60%, #ff6 60%);
}

.action-inner p {
	margin-top: 30px;
}

.index-news {
	height: calc(100svh - 90px);
	background-color: #f7f7f7;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.index-news-inner h2 span {
	background:linear-gradient(transparent 60%, #ff6 60%);
}

.news {
	background-color: #ffffff;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 45px;
}

/* カードレイアウト部分をラッピングし、
Flexboxを指定"space-between"で各アイテムを均等に配置し、
最初と最後のアイテムを端に寄せます。*/
.card-wrap {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    margin: 2em auto;
    max-width: 960px;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

/* リンクテキストの下線を非表示 */
a.card-link {
    text-decoration: none;
}

.card-title:hover {
	text-decoration: underline 1px;
	text-underline-offset: 5px;
}

/* カードレイアウト内の画像を幅いっぱいに表示 */
.card-wrap img {
    display: block;
    max-width: 100%;
    height: auto;
}

.card-figure {
    margin: 0;
    padding: 0;
}

/* カードレイアウトのタイトル部分 */
.card-title {
    margin: 15px;
    color: #333;
    text-align: left;
	font-size: 18px;
}

/* カードレイアウトの説明文部分 */
.card-time {
    margin: 0;
    padding: 1em;
    color: #818181;
}

/* カードレイアウトを1カラムで配置 */
.card-list {
    margin: 0.5em auto;
    padding: 0;
    width: 96%;
    background: #f0f0f0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.card-wrap::after{
	content: "";
	display: block;
	width: calc(96% / 3);
}

/* 画面幅768px以上の場合カードレイアウトを2カラムで配置 */
@media all and (min-width: 768px) {
    .card-list {
        margin: 0.5em 0;
        width: calc(96% / 2); /* 96%幅を2で割るという指定 */
    }
}

/* 画面幅992px以上の場合カードレイアウトを3カラムで配置 */
@media all and (min-width: 992px) {
    .card-list {
        width: calc(96% / 3); /* 96%幅を3で割るという指定 */
}
    
/* 最後の行が3列より少ない場合左寄せにレイアウトさせる */
    #card-wrap::after{
        content: "";
        display: block;
        width: calc(96% / 3);
    }
}

.index-news-btn {
	transition: border-bottom 0.5s;
}

.index-news-btn:hover {
	border-bottom: 1px solid #000;
	padding-bottom: 5px;
}

.genre-filter {
	cursor: pointer;
}

/* 検索ボックスのラッパー */
.search-container {
	position: relative;
	display: flex;
	align-items: center;
	max-width: 300px;
	width: 100%;
  }
  
  /* 検索ボックス */
  #news-search {
	width: 100%;
	text-align: left;
	padding: 8px 12px;
	padding-left: 45px;
	font-size: 1rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	outline: none;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  #news-search:focus {
	border-color: #666666;
	box-shadow: 0 0 5px rgba(102, 102, 102, 0.5);
  }
  
  /* 検索アイコン */
  .search-icon {
	position: absolute;
	left: 15px;
	color: #000;
	pointer-events: none; /* クリックできないようにする */
  }

/* コントロールエリア */
.controls {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 30px auto;
	justify-content: space-around;
	min-width: 960px;
	
  }
  
  .controls button,
  .controls input {
	padding: 8px 12px;
	font-size: 1rem;
  }
  
  /* ページネーション */
  #pagination {
	display: flex;
	justify-content: center;
	margin-top: 20px;
	flex-wrap: wrap;
	gap: 5px;
  }
  
  .page-link {
	padding: 6px 12px;
	border: 1px solid #ddd;
	background: #f9f9f9;
	cursor: pointer;
	transition: background-color 0.3s;
  }
  
  .page-link:hover {
	background-color: #e9e9e9;
  }
  
  .page-link.active {
	background-color: #000;
	color: #fff;
	border-color: #000;
  }
  

.info {
	height: calc(100svh - 90px);
	background-color: #ffffff;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.info-inner {
	padding-top: 90px;
}

.info-inner span {
	background:linear-gradient(transparent 60%, #ff6 60%);
}

.info-inner img {
	height: 90px;
}

.info-wrap {
	display: flex;
	margin: 60px 0;
}

.info-list {
	background-color: #f7f7f7;
	margin: 0 30px;
	padding: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 7px;
}

.info-list h2 {
	font-size: 48px;
	margin-right: 30px;
}

.info-list h3 {
	text-align: left;
}

.index-research {
	padding: 60px;
	text-align: center;
	background-color: #f7f7f7;
}

.index-research p {
	margin: 10px;
}

.index-research a {
	text-decoration: underline 1px;
	text-underline-offset: 5px;
}

/* 同意モーダル */
/* モーダルオーバーレイ */
.modal-overlay {
  display: none; /* 初期状態は非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* 透明な黒 */
  z-index: 999;
  justify-content: center;
  align-items: center;
}

/* モーダル本体 */
.modal {
  background: #fff;
  width: 80%;
  max-width: 600px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 80%;
}

/* モーダル上部：進捗表示エリア */
.modal-header {
  padding: 20px;
  background: #f5f5f5;
  position: relative;
  word-break: keep-all;
}

/* 進捗コンテナ */
.progress-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 各ステップ（円＋ラベル） */
.progress-step {
  position: relative;
  text-align: center;
  flex: 1;
}

/* ステップのラベル */
.step-label {
  margin-bottom: 5px;
  font-size: 12px;
  color: #333;
}

/* ステップの円 */
.step-circle {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  background: #ddd;
  color: #fff;
  margin: 0 auto;
  font-size: 16px;
  position: relative;
  z-index: 3; /* 円を線より前面に表示 */
}

/* 現在のステップの場合の色 */
.step-circle.active {
  background: #000;
}

/* モーダル中央：コンテンツエリア（スクロール可能） */
.modal-content {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
  /* 内容が長い場合にスクロール発生 */
  max-height: 300px;
  text-align: left;
}

.modal-content h2 {
  margin-top: 0;
}

.modal-content p {
	margin-bottom: 30px;
}

.modal-content a {
	color: #0066c0;
	text-decoration:underline;
	text-decoration-color: #0066c0;
}

/* モーダル下部：ボタンエリア */
.modal-footer {
  padding: 10px;
  background: #f5f5f5;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.modal-footer button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.btn-disagree {
  background: #ccc;
  color: #333;
}

.btn-agree,
.btn-start {
  background-color: #000;
  color: #fff;
}

/* レスポンシブ対応 */
@media (max-width: 600px) {
  .modal {
    width: 90%;
    max-width: 90%;
    max-height: 90%;
  }
  .modal-header, .modal-footer {
    padding: 10px;
  }
  .progress-container {
    padding: 0 10px;
  }
  .modal-content {
    padding: 10px;
    max-height: 250px;
  }
  .startBtn {
    font-size: 14px;
    padding: 8px 16px;
  }
}
  
/**/

.article {
	min-height: calc(100svh - 90px);
	padding-top: 45px;
	background-color: #f7f7f7;
}

.article-inner {
	margin: 0 20%;
	padding-bottom: 30px;
}

.article-inner h2 {
	line-height: 2;
}

.article-inner h3 {
	font-size: 18px;
	line-height: 2;
}

.article-inner time {
	margin-top: 15px;
	text-align: right;
}

.article-img {
	display: flex;
	justify-content: center;
}

.article p {
	line-height: 2;
	margin-bottom: 15px;
}

.article ul {
	list-style-type: square;
	margin-left: 1rem;
	li {
		margin-bottom: 15px;
	}
}

.article-inner img {
	margin: 15px 0;
	width: 70%;
}

.article a {
	color: #0066c0;
	text-decoration:underline;
	text-decoration-color: #0066c0;
}

.br1 {
	display: none;
}

.start {
	text-align: center;
}

.start p {
	margin-bottom: 50px;
}

.start_btn {
	display: inline-block;
	width: 200px;
	margin: 50px auto 50px auto;
	border: 1px solid #000000;
	background: #fff;
	padding: 15px;
	text-decoration: none;
	text-align: center;
	transition: 0.3s;
	cursor: pointer;
}

.start_btn:hover {
	color: #FFFFFF;
	background-color: #000000;
}

.url {
	color: #0066c0;
	text-decoration:underline;
	text-decoration-color: #0066c0;
}

main {
	margin-top: 120px;
}

main .step {
	margin-top: 50px;
	text-align: center;
}

main h1 {
	text-align: center;
}

.genre_box {
	display: flex;
	flex-wrap: wrap;
	margin: 50px;
	justify-content: center;
	background-color: #EAEAEA;
}

.genre_item {
	border: 1px solid #000000;
	width: 20%;
	text-align: center;
	margin: 25px;
	padding: 15px;
	font-size: 24px;
	background-color: #FFFFFF;
	transition: 0.3s;
}

.genre_item:hover {
	background-color: #000000;
	color: #FFFFFF;
}

.genre_item_close {
	border: 1px solid #000000;
	width: 20%;
	text-align: center;
	margin: 25px;
	padding: 15px;
	font-size: 24px;
	color: #EAEAEA;
	background-color: #FFFFFF;
}

.theme_id {
	margin-top: -120px;
	margin-left: 50px;
	padding-top: 120px;
}

.border {
	margin: 0 50px;
	background: linear-gradient(-45deg, transparent 25%, #000000 25%, #000000 50%, transparent 50%, transparent 75%, #000000 75%) left bottom/7px 7px repeat-x;
	padding-left: 15px;
	padding-bottom: 15px;
}

.theme_box {
	display: flex;
	flex-wrap: wrap;
	margin: 50px;
	justify-content: center;
}

.theme_item {
	border: 1px solid #000000;
	width: 100%;
	text-align: left;
	margin-bottom: 25px;
	padding: 15px;
	font-size: 24px;
}

.theme_item p {
	font-size: 16px;
}


.theme_item span {
	position: relative;
	float: right;
	margin-right: 15px;
}

.theme_item span::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    transform: rotate(45deg);
    border: solid 2px #000000;
    border-bottom-width: 0;
    border-left-width: 0;
    vertical-align: middle;
}

.your_theme {
	margin: 50px;
}

.question_contents_box {
	margin: 50px;
}

.question_contents_box ul {
	margin-top: 25px;
	padding: 15px;
	padding-left: 45px;
	list-style: disc;
	background-color: #EAEAEA;
	font-size: 24px;
}

.question_contents_box li {
	line-height: 60px;
}

.search_contents_box {
	margin: 50px;
}

.search_contents_box ul {
	margin-top: 25px;
	padding: 15px;
	padding-left: 45px;
	list-style: disc;
	background-color: #EAEAEA;
	font-size: 24px;
}

.search_contents_box li {
	line-height: 60px;
}

.search_content {
	margin-top: 25px;
	padding: 15px;
	padding-left: 45px;
	background-color: #EAEAEA;
	font-size: 24px;
}

.work_contents_box {
	margin: 50px;
}

.work_contents_box ul {
	margin-top: 25px;
	padding: 15px;
	padding-left: 45px;
	list-style: disc;
	background-color: #EAEAEA;
	font-size: 24px;
}

.work_contents_box li {
	line-height: 60px;
}

footer {
	height: 100px;
	background-color: #000000;
}

footer p {
	line-height: 50px;
	text-align: center;
	color: #FFFFFF;
}

#footer02 {
	background: #000000;
}

#footer02 .wrap {
	width: 90%;
	margin: 0 auto;
}
   
.ie #footer02 .logo img,
#footer02 .logo {
	display: inline-block;
	width: 300px;
}
   
#footer02 .nav li a {
	padding: 15px;
	color: #ffffff;
}

#footer02 .startBtn {
	cursor: pointer;
    text-decoration: none;
	background-color: #ffffff;
	border: 1px solid #000;
	border-radius: 10px;
	text-align: center;
	transition: background-color 0.5s;
	transition: color 0.5s;
	margin-left: 25px;
	padding: 0 15px;
}

#footer02 .startBtn:hover {
	background-color: #505050;
	color: #000;
}

.copyright{
	text-align: center;
	background-color: #000;
	color: #ffffff;
	padding: 15px 0;
}

#footer02 .sns {
	color: #ffffff;
	background-color: #000000;
	height: 40px;
	margin: 0 auto;
	text-align: center;
}

#footer02 .sns li {
	display: inline-block;
	font-size: 25px;
	line-height: 25px;
	vertical-align: middle;
}

#footer02 .fa-instagram {
	margin-right: 20px;
	margin-left: 20px;
}

#footer02 .fa-youtube {
	margin-right: 10px;
	margin-left: 10px;
}

#footer02 .note-icon {
	height: 40px;
	margin-right: 10px;
	margin-left: 10px;
}

#footer02 .copyright {
	padding-bottom: 30px;
}
   
   
@media screen and (min-width: 641px) {
	#footer02 .logo {
	  padding: 10px 0;
	}
   
	#footer02 .wrap {
	  display: -webkit-box;
	  display: -webkit-flex;
	  display: -ms-flexbox;
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	}
   
	#footer02 .cont {
	  display: -webkit-box;
	  display: -webkit-flex;
	  display: -ms-flexbox;
	  display: flex;
	  flex-direction: row-reverse;
	  align-items: center;
	}
   
	#footer02 .nav {
	  	display: inline-block;
	}
   
	#footer02 .nav li {
	  	display: inline-block;
	}
   
	#footer02 .nav li a:hover {
	  color: #505050;
	}
}

@media only screen and (max-width: 640px) {
	#footer02 {
	  padding: 20px 0 0;
	}
   
	#footer02 .inner-block {
	  padding: 0;
	  background-color: #000000;
	}
   
	.ie #footer02 .logo img,
	#footer02 .logo {
	  display: block;
	  margin: 0 auto 20px;
	}
   
	#footer02 .startBtn {
	  display: block;
	  width: 100%;
	  margin: 20px auto;
	}
   
	#footer02 .nav li {
	  border-top: 1px solid #555;
	}
   
	#footer02 .nav li a {
	  padding: 12px 20px;
	  display: block;
	  background-size: 5px auto;
	  text-align: center;
	}
   
	#footer02 .nav li:last-child {
	  border-bottom: 1px solid #555;
	}

	#footer02 .sns {
		padding-top: 20px;
		padding-bottom: 40px;
	}
}

form {
	margin: 50px 50px 0 50px;
	text-align: center;
}

textarea {
	border: 1px solid #000000;
	width: 100%;
	height: 200px;
	margin-top: 25px;
	text-align: left;
	padding: 0 25px;
	font-size: 24px;
}

.submit_btn {
	display: inline-block;
	width: 200px;
	margin: 50px auto;
	border: 1px solid #000000;
	background: #fff;
	padding: 15px;
	text-decoration: none;
	text-align: center;
	transition: 0.3s;
	cursor: pointer;
}

.submit_btn:hover {
	color: #FFFFFF;
	background-color: #000000;
}

.finish {
	text-align: center;
}

.finish video {
	margin-top: 25px;
	border: 1px solid #000000;
	height: auto;
	width: 620px;
}

.date-info {
	display: flex;
	justify-content: flex-end;
	gap: 20px;
	font-size: 16px;
	margin-right: 50px;
}

.NotFound {
	text-align: center;
}

.NotFound h2 {
	margin-top: 15px;
	margin-bottom: 30px;
}

.NotFound img {
	width: 100px;
}

.NotFound p {
	margin-top: 15px;
}

.maintenance-wrapper {
	display: flex;
 	align-items: center;
	justify-content: center;
	height: 100svh;
}

.maintenance {
	text-align: center;
}

.maintenance img {
	height: 70px;
	margin: 30px 0;
}

.maintenance div {
	margin: 30px 0;
}

.maintenance p {
	margin-bottom: 15px;
}

.terms {
	padding-top: 45px;
	text-align: left;
	margin: 50px;
}

.terms h1 {
	text-align: center;
	margin-bottom: 15px;
}

.terms h2 {
	text-align: left;
	font-size: 18px;
	margin-left: 0;
}

.terms p {
	margin-bottom: 16px;
}

.policy {
	padding-top: 45px;
	text-align: center;
	margin: 50px;
}

.policy h1 {
	margin-bottom: 15px;
}

.policy h2 {
	font-size: 24px;
	margin-left: 0;
}

.policy p {
	margin-bottom: 16px;
}

.support {
	background-color: #EAEAEA;
	margin: 50px;
}

.support h2 {
	text-align: center;
	padding-top: 30px;
}

.support_inner {
	display: flex;
	justify-content: center;
}

.support_inner p {
	margin: 30px;
	text-align: left;
}

.fas_link_anothertab{
	color: #0066c0;
	text-decoration: underline;
	text-decoration-color: #0066c0;
}

.fas_link_anothertab:before{
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font-family: "Font Awesome 5 Free"; 
	font-weight: 400;
	content: '\f24d';
	margin-right: 5px;
}

.print {
	display: block;
	margin: 50px auto;
	border: 1px solid #000000;
	background: #fff;
	padding: 15px 30px;
	text-decoration: none;
	text-align: center;
	transition: 0.3s;
	cursor: pointer;
}

.print:hover {
	color: #FFFFFF;
	background-color: #000000;
}

/* news内、ページボタン */
#pagination {
	margin-bottom: 15px;
}

/* 推奨環境 */
#overall {
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 20px;
}
  
#details {
    background-color: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
	text-align: center;
	width: 60%;
	margin: 15px auto;
}

.system-wrap {
	min-height: calc(100svh - 90px);
	padding-top: 45px;
	background-color: #ffffff;
}

.system-wrap-inner {
	margin: 0 20%;
	padding-bottom: 30px;
}

.system-info h2 {
	text-align: center;
	margin-top: 60px;
}

.system-wrap table {
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: fixed;
	margin: 30px auto;
}

.system-wrap th {
	background-color: #f7f7f7;
	border-top: 2px solid #e5e5e5;
  	border-bottom: 2px solid #e5e5e5;
	padding: 15px;
}

.system-wrap td {
	border-top: 2px solid #e5e5e5;
  	border-bottom: 2px solid #e5e5e5;
	padding: 15px;
}

.support-wrap {
	min-height: calc(100svh - 90px);
	padding-top: 45px;
	background-color: #ffffff;
}

.support-wrap-inner {
	margin: 0 20%;
	padding-bottom: 30px;
}

/* ==============================
   Contact Form Styles
   ============================== */

/* Box sizing for predictable layouts */
.contact_form input,
.contact_form select,
.contact_form textarea,
.contact_form button {
  box-sizing: border-box;
}

/* Form container */
.contact_form {
  max-width: 800px;
  margin: 2em auto;
  padding: 0 1em;
}

/* --------------------------------------
   Form Blocks (label + field pairs)
   -------------------------------------- */
.form_block {
  display: grid;
  grid-template-columns: 12em 1fr;
  grid-gap: 1em;
  align-items: center;
  padding: 1em 0;
  border-top: 1px dotted #606060;
}

/* Label within each block */
.form_label {
  font-weight: bold;
  line-height: 1.4;
  text-align: left;
}

/* Required indicator */
.form-required {
  display: inline-block;
  margin-left: 0.5em;
  padding: 0.2em 0.6em;
  font-size: 0.9rem;
  color: #fff;
  background-color: #000;
  border-radius: 3px;
}

/* --------------------------------------
   Inputs and Selects
   -------------------------------------- */
.form_field {
  width: 100%;
  padding: 0.6em 1em;
  font-size: 1rem;
  line-height: 1.4;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Select-specific tweaks */
.form_field[type="select"],
select.form_field {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 6 5-6H0z' fill='%23666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  background-size: 0.6em auto;
  padding-right: 2em;
  cursor: pointer;
}

/* 共通：グリッドレイアウト＆ボーダー */
.form_block.--textfield {
	display: grid;
	grid-template-columns: 12em 1fr;   /* ラベル 12em + フィールド 残り */
	align-items: start;
	gap: 0.5em 1em;                    /* 上下 0.5em、左右 1em の隙間 */
	border-bottom: 1px dotted #606060;
	padding: 0.5em 0;                  /* 上下余白 */
  }
  
  /* テキストエリア本体 */
  .form_field.--textfield {
	width: 100%;       /* 親幅にフィット */
	min-height: 12em;  /* 小さくなりすぎないように */
	max-height: 30em;  /* 必要以上に伸びすぎないように */
	resize: vertical;  /* 縦方向のみリサイズ可 */
	font-family: inherit;
	font-size: 1rem;
	line-height: 1.5;
	padding: 0.5em;
	box-sizing: border-box;
  }
  
  /* --------------------------------------
   Submit Button
   -------------------------------------- */
.form-btn {
  display: block;
  width: 100%;
  max-width: 14em;
  margin: 2em auto 1em;
  padding: 0.6em;
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
  background-color: #000000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.form-btn:hover,
.form-btn:focus {
  opacity: 0.9;
}

/* --------------------------------------
   Privacy Notice
   -------------------------------------- */
.privacy {
  font-size: 0.9rem;
  text-align: center;
  color: #666;
  margin-top: 0.5em;
}

.support-thanks {
	margin-top: auto;
	transform: translateY(50%);
	text-align: center;
}

.support-thanks h1 {
	margin-bottom: 30px;
}

/* ==============================
   Responsive Adjustments
   ============================== */
@media (max-width: 600px) {
  .form_block {
    grid-template-columns: 1fr;
    grid-gap: 0.5em 0;
    padding: 0.8em 0;
  }

  .form_block.--textfield {
    grid-template-columns: 1fr;     /* 1カラムに切り替え */
  }
  /* ラベルを上に移動して余白を確保 */
  .form_block.--textfield .form_label {
    margin-bottom: 0.25em;
  }

  .form_label {
    margin-bottom: 0.3em;
  }

  .form-btn {
    max-width: 100%;
  }
}

/* ルビフル */
rt.rubyfuljs-insert {
	font-size: 50%;
	margin-bottom: 0.5em;
}

@media screen and (max-width: 1024px) {

	.br-sp {
        display: block;
    }

	header {
		height: 70px;
		width: 100svw;
		top: 0;
		background-color: #ffffff;
		border-bottom: 1px solid #000000;
		position: fixed;
		z-index: 1;
	}

	header .logo {
		height: 70px;
		text-align: center;
	}

	.header-inner {
		height: 70px;
	}

	.header-inner h1 {
		height: 70px;
		margin-left: 0;
		text-align: center;
	}

	main {
		overflow-wrap: keep-all;
		overflow: hidden;
	}

	body h1 {
		font-size: 24px;
	}

	body h2 {
		font-size: 24px;
		margin-left: 0;
	}

	body p {
		font-size: 14px;
	}

	body ul {
		font-size: 14px;
	}

	.br1 {
		display: block;
	}

	.about img {
		margin-top: 25px;
		border: 1px solid #000000;
		height: auto;
		width: 620px;
	}

	.genre_box {
		display: flex;
		flex-wrap: wrap;
		margin: 50px;
		justify-content: center;
		background-color: #EAEAEA;
		flex-direction: column;
	}

	.genre_item {
		border: 1px solid #000000;
		width: auto;
		text-align: center;
		margin: 25px;
		padding: 15px;
		font-size: 24px;
		background-color: #FFFFFF;
		transition: 0.3s;
	}

	.genre_item:hover {
		background-color: #000000;
		color: #FFFFFF;
	}

	.genre_item_close {
		border: 1px solid #000000;
		width: auto;
		text-align: center;
		margin: 25px;
		padding: 15px;
		font-size: 24px;
		color: #EAEAEA;
		background-color: #FFFFFF;
	}

	.finish video {
		margin-top: 25px;
		border: 1px solid #000000;
		height: auto;
		width: 360px;
	}

	.support_inner {
		display: block;
	}

	.header-inner nav {
		display: none;
	}

	.card-wrap {
		justify-content: space-around;
		gap: 15px;
	}

	.card-list {
        margin: 0.5em 0;
        width: 70%;
		flex-direction: column;
    }

	.info-wrap {
		flex-direction: column;
		width: 90%;
		height: auto;
		gap: 15px;
		margin: 30px auto;
	}
	
	.info {
		width: 100svw;
		height: 100%;
	}

	.info-inner img {
		width: 80%;
	}

	.fv {
		text-align: center;
		margin-left: 0;
	}

	.action {
		height: 100%;
	}

	.index-news {
		height: 100%;
	}

	.info-wrap h3 {
		font-size: 16px;
	}

	.index-research {
		padding: 30px 20px;
	}

	.action-inner {
		margin: 30px auto;
	}

	.index-news-inner {
		margin: 30px auto;
	}

	.news-inner {
		margin: 30px auto;
	}

	.how-inner img {
		width: 90%;
	}

	.skill-inner img {
		width: 90%;
	}

	.article {
		min-height: calc(100svh - 70px);
		padding-top: 45px;
		background-color: #f7f7f7;
	}
	
	.article-inner {
		margin: 0 10%;
		padding-bottom: 30px;
	}
	
	.article-inner h2 {
		line-height: 1.8;
	}
		
	.article p {
		line-height: 2;
		margin-bottom: 15px;
	}
	
	.article-inner img {
		margin: 15px 0;
		width: 90%;
	}

	.breadcrumb {
		font-size: 12px;
		min-width: 100vw;
	}

	.controls {
		min-width: 100svw;
	}

	#details {
		width: 100%;
	}
}

/* Notification Banner CSS */

/* セマンティックカラー定義 */
:root {
	--color-error:      #d32f2f;
	--color-text:       #1a1a1a;
	--color-text-secondary: #4a4a4a;
	--radius:           4px;
	--spacing:          16px;
  }
  
  .notification-banner {
	display: flex;
	align-items: center;
	border: 1px solid;
	border-radius: var(--radius);
	padding: var(--spacing);
	background-color: #fff;
	gap: var(--spacing);
	flex-wrap: wrap;
	margin-bottom: var(--spacing);
	max-width: 90%;
	margin-right: auto;
	margin-left: auto;
  }
  
  .notification-banner__icon {
	flex-shrink: 0;
	font-size: 24px;
	line-height: 1;
	color: var(--color-text);
  }
  
  .notification-banner__body {
	flex: 1;
  }
  
  .notification-banner__title {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-text);
  }
  
  .notification-banner__description {
	margin: 4px 0 0;
	font-size: 14px;
	line-height: 1.5;
	color: var(--color-text-secondary);
  }
  
  /* アクションボタン */
  .notification-banner__action {
	flex-shrink: 0;
	display: inline-block;
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	text-align: center;
	border-radius: var(--radius);
	background-color: var(--color-error);
	color: #fff;
	white-space: nowrap;
  }
  
  /* エラータイプの指定 */
  .notification-banner--error {
	border-color: var(--color-error);
  }
  .notification-banner--error .notification-banner__icon {
	color: var(--color-error);
  }

  /* 追加: スマホ向けレスポンシブ */
@media screen and (max-width: 600px) {
	.notification-banner {
	  flex-direction: column;       /* 横並び→縦並びに */
	  align-items: stretch;         /* 子要素を横いっぱいに */
	  text-align: left;             /* テキストを左揃え */
	}
  
	.notification-banner__icon {
	  /* アイコンはそのまま。必要に応じてサイズ調整 */
	  margin-bottom: var(--spacing);
	}
  
	.notification-banner__body {
	  width: 100%;                  /* テキスト領域を横幅いっぱいに */
	}
  
	.notification-banner__title,
	.notification-banner__description {
	  word-break: break-word;       /* 長い文も幅いっぱいで改行 */
	}
  
	.notification-banner__action {
	  display: block;               /* インライン→ブロックに */
	  width: 100%;                  /* 横幅いっぱいに */
	  margin-top: var(--spacing);   /* テキストとの間隔 */
	  box-sizing: border-box;       /* パディング込みで100%幅 */
	}
  }

/* モーダルオーバーレイ */
.cooperate-modal-overlay {
	display: none;
	position: fixed;
	top: 0; left: 0; width: 100%; height: 100%;
	background-color: rgba(0,0,0,0.6);
	z-index: 1000;
  }
  
  /* モーダル本体 */
  .cooperate-modal {
	display: none;
	position: fixed;
	/* ビューポート上下に余白を持たせて中央寄せ */
	top: 10vh;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	max-width: 500px;
	/* 高さは画面の最大80%まで、高さ超過時はスクロール */
	max-height: 80vh;
	overflow-y: auto;
	background: #fff;
	padding: 1.5em;
	border-radius: 4px;
	box-sizing: border-box;
	z-index: 1001;
  }
  
  /* 見出しとクローズボタン */
  .cooperate-modal h2 {
	margin-top: 0;
	margin-bottom: 15px;
  }
  .cooperate-close {
	position: absolute;
	top: 0.5em; right: 0.5em;
	background: none; border: none;
	font-size: 1.2em; cursor: pointer;
  }

  .cooperate-modal textarea {
	border: 1px solid #000000;
	height: 200px;
	text-align: left;
	padding: 0 15px;
	font-size: 16px;
}
  
  /* フォーム内要素のスタイル調整 */
  .cooperate-modal form label {
	display: block;
	margin: 30px 0;
  }
  .cooperate-modal textarea,
  .cooperate-modal input[type="text"],
  .cooperate-modal select {
	width: 100%;
	box-sizing: border-box;
	margin-top: 0.3em;
  }

  #cooperate-theme,
  .cooperate-modal select {
	border: 1px solid #000;
  }
  
  /* 送信ボタン無効時 */
  .cooperate-modal button[type="submit"]:disabled {
	opacity: 0.5;
	cursor: not-allowed;
  }
  
  /* レスポンシブ：非常に狭い画面では余白を少し削減 */
  @media (max-width: 400px) {
	.cooperate-modal {
	  width: 95%;
	  padding: 1em;
	}
  }
  /* 送信完了通知 */
#cooperate-notify {
	display: none;
	position: fixed;
	top: 0; left: 0;
	width: 100%;
	background-color: #4CAF50;
	color: #fff;
	text-align: center;
	padding: 1em 0;
	font-size: 1em;
	z-index: 1002;
  }
  
/* ラベルの疑似要素は span の前マークとして表示 */
.cooperate-policy {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
  }
  .cooperate-policy span {
	position: relative;
	padding-left: 24px;
  }
  
  /* □枠を描画 */
  .cooperate-policy span::before {
	content: '';
	position: absolute;
	left: 0; top: 50%;
	transform: translateY(-50%);
	width: 16px; height: 16px;
	border: 1px solid #231815;
	background: #fff;
  }
  
  /* チェックマーク */
  .cooperate-policy span::after {
	content: '';
	position: absolute;
	left: 4px; top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 7px; height: 10px;
	border-right: 3px solid #000;
	border-bottom: 3px solid #000;
	opacity: 0;
  }
  
  /* input の直後にある span にマッチさせる */
  .cooperate-policy input[type="checkbox"]:checked + span::after {
	opacity: 1;
  }

/* 学習内容の保存・消去 */
.save-wrap {
	text-align: center;
	margin-bottom: 30px;
}

.all-clear-wrap {
	text-align: center;
}

#saveFormBtn {
	display: inline-block;
	width: 210px;
	height: 70px;
	border: 1px solid #000000;
	background: #fff;
	padding: 15px;
	text-decoration: none;
	text-align: center;
	transition: 0.3s;
	cursor: pointer;
}

#saveFormBtn:hover {
	color: #FFFFFF;
	background-color: #000000;
}

#clearFormBtn {
	display: inline-block;
	width: 210px;
	height: 70px;
	border: 1px solid #000000;
	background: #fff;
	padding: 15px;
	text-decoration: none;
	text-align: center;
	transition: 0.3s;
	cursor: pointer;
}

#clearFormBtn:hover {
	color: #FFFFFF;
	background-color: #000000;
}

#clearThemeBtn{
	border-bottom: 1px solid #000000;
	padding-bottom: 2px;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
}

#clearThemeBtn:hover {
	border-bottom: 2px solid #000000;
}

@media screen and (max-width: 600px) {
	#clearFormBtn {
		margin-top: 15px;
	}
}