/* ホバー効果の調整 */
header ul.gnav-navi-1 li:hover {
  background: #FF7F50;
  transform: scale(1.05);
  border-radius: 4px; /* 角丸を追加 */
}

ul.gnav-navi-1 li:hover {
background: #FF7F50;
  transform: scale(1.05); /* ホバー時に少し拡大 */
}

/* ホバー時に下からラインが伸びるアニメーション */
ul.gnav-navi-1 li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: #FF7F50;
  transition: width 0.3s ease;
}

.color {
	color:#e48898;
}

h2 {
  font-size: 20px;
  color: black;
}

h3 {
  font-size: 18px;
}
img {
    width: 80%;
max-width: 100%;
    height: auto;
}

a {
  text-decoration: none;
	color: red;/*<a>のリンクがある箇所の色*/
}

a:hover {
	background: #FF7F50;
  color: #d08047;/*リンクがある箇所の上に来た時に変わる色*/
}

.purple {
	color: purple;
}

.darkMagenta {
	color: darkmagenta;
	font-size: 20px;
	font-weight: bold;
	}
.round {
		color: #ff4455;
	}
p.underline {
  text-decoration: underline;
}
span.alert {
text-decoration: underline;
	color:blue;
}
span.red4 {
	color: red;
	font-size: 4;
}

.left {
		text-align: left;
	}
.bottom {
  vertical-align: bottom;
}
/* 追加スタイル */
.image-wrapper {
  margin: 10px 0;
}

.name {
  display: block;
  margin: 10px 0;
}

.description {
  display: block;
  text-align: left;
  margin: 10px 0;
  padding: 0 10%;  /*必要に応じて調整 */
}
.table_center {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

table {
  border-collapse: collapse;
  border: solid 1px white;
}
.jiko_table {
  width: 50%;
  margin: 0 auto;
  border-collapse: collapse;
  text-align: center;
  background-color: #fff; 
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.borderless-table {
border:none !important;
border-collapse: collapse;
width: 100%;
}

.borderless-table th, .borderless-table td {
border: none;
padding: 8px;
}
.borderless th {
  background-color: #f8f8f8;
}
.jiko-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

td {
  vertical-align: top; /* 上詰め指定 */
  padding: 8px;
  border: 1px solid #ccc;
}
.nowrap {
  white-space: nowrap; /* 勝手に折り返さない */
}
.youtube-variable {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube-variable iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.crayon-orange {
  box-shadow: 0px -6px 5px -3px rgba(247,198,104,0.6) inset,0px 8px 4px -2px #f7c668;
  font-weight: bold;
}

ul.gnav-navi-1 li a {
  position: relative;
  overflow: hidden;
}

/* ホバー時に下からラインが伸びるアニメーション */
ul.gnav-navi-1 li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: #FF7F50;
  transition: width 0.3s ease;
}

ul.gnav-navi-1 li a:hover::after {
  width: 100%;
}

/* アクティブなメニューの表示 */
ul.gnav-navi-1 li.active a {
  color: #FF4500;
  font-weight: 800;
}


