@charset "UTF-8";
/* CSS Document */

html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}
body {
  min-height: 100vh;
  background-image: linear-gradient(148deg, rgba(255, 255, 255, 1), rgba(209, 254, 202, 1)) !important;
  color: #3C3C3C;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
}
h1 {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  font-style: normal;
}
h2 {
   font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight:300;
  font-style: normal;
  color:  #009759;
}

h3 {
	position:relative;
	padding: 0.7rem 1rem 0.7rem 1rem;
	font-size: 1.3rem;
	border-bottom: 5px double #38BB72;
	margin:auto auto 0.5em auto;
	font-weight:400;
}

h3 + h4 {
	margin: 0 0 1rem 0;
}

h4 {
	line-height: 1.4rem;
	padding: 0.7rem 1.0rem;
	margin: 1rem 0;
	font-size: 1.0rem;
	background: #e3f4ed;
}

h4:first-child {
	line-height: 2.5rem;
	padding-left: 1rem;
	margin: 0 0;
}

h4.mojiind1 + p {
	margin:10px auto 20px 20px;
}

h5 {
	line-height: 2.0rem;
	padding-left: 1rem;
	margin: 1rem 0;
	border-bottom: 1px dotted #ccc;
	font-size: 1.0rem;
}

h5.mojiind2 {
	line-height: 2.0rem;
	padding-left: 1rem;
	margin: 0.5rem 0;
	border-bottom: 1px dotted #ccc;
	font-size: 1.0rem;
}
h5.mojiind2 + p {
	margin:0px auto 20px 20px;
}
h5.mojiind2 + p + h5.mojiind2 + p {
	margin:0px auto 30px 20px;
}


h5:first-child {
	line-height: 2.5rem;
	padding-left: 1rem;
	margin: 0 0;
	border-bottom: 1px dotted #ccc;
}

h6::before {
	content: "";
	position: absolute;
	left: 3px; /* h2の左端からの位置 */
	top: 50%;
	transform: translateY(-50%);
	width: 12px;
	height: 12px;
	background:#009759;
	border-radius: 50%;
}

a {
	color: #009759;
	text-decoration: underline;
}

p {
	margin:10px auto 30px 20px;
	line-height: 1.4rem;
}

p:first-child {
	margin:10px auto 10px 20px;
}

.indent-1 {
	padding-left:1em;
	text-indent:-1em;
	display:inline-block;
}

span.red {
	color:red; 
}


ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
li {
  margin: 0;
  padding: 0;
}

ul.modern {
  list-style: none;
  padding-left: 2.3em;
  margin-bottom:1em;
}

ul.modern li {
  position: relative;
  margin-bottom: 0.3em;
  line-height: 1.6;
}

ul.modern li::before {
  content: "•";
  position: absolute;
  top:12px;
  left: -14px;
  color: #009759;
  font-weight: bold;
  font-size:25px;
  transform: translateY(-50%); /* ← 縦方向に中央揃え */
}

ol.kyotsu {
  counter-reset: item;
  list-style: none;
  padding-left: 2.5em;
  margin-bottom:1em;
}

ol.kyotsu li {
  counter-increment: item;
  margin-bottom: 0.75em;
  position: relative;
  line-height: 1.6;
}

ol.kyotsu li::before {
  content: counter(item) ".";
  position: absolute;
  left: -20px;
  color: #009759;
  font-weight: 600;
}

ol.kyotsu + h3 {
	margin: 1.5rem 0 auto 0;
}

.box-basic {
  border: 1px solid #009759;
  border-radius: 8px;
  padding: 0.2em 1.5em 1.2em 1.5em;
  line-height: 1.6;
  margin-bottom:2em;
}

.box-basic + p.indent-1 {
	margin:-1em auto 1em auto;
}

/*ヘッダー　ーーーーーーーーーーーーーーーーーーーーーーーーーー*/
header.common{
	width: 100%;
	height: 15vh;
	min-height: 50px;
	margin: 0 auto;
}
div.c_header_con {
	width: 95%;
	height: 15vh;
	min-height: 50px;
	margin: 0 auto;
	display: flex;
   align-items: center; /*上下中央*/
}
h1.c_header_h1 {
	width: 70%;
	font-size: 1.3rem;
	line-height:1.4rem;
	color: #5C8FCB;
}
p.c_header_p {
	margin-left: auto;
	color: #F5818E;
	font-size: 0.7rem;
	letter-spacing: 1px;
	font-family: "Vollkorn", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
#menu-btn-check {
	display: none;
}
/*サイドナビ　ーーーーーーーーーーーーーーーーーーーーーーーーーー*/
nav.side-menu {
	 width: 19%;
	 min-width: 200px;
	 font-size: 1rem;
}
nav.side-menu ul {
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	border-radius: 10px;
}
nav.side-menu li {
	height: 3em;
	padding: 3px 15px;
	border-bottom: 1px dotted #38BB72;
	display: flex;
    align-items: center; /* 垂直中央揃え */
	background-color: rgb(255, 255, 255,0.5);
		position: relative;
	 	overflow: hidden;
		transition: all 0.3s ease;/*背景色の変化用*/
}
nav.side-menu li:first-child {
	border-radius: 10px 10px 0 0;
}
nav.side-menu li:last-child {
	border-radius: 0 0 10px 10px;
	border-bottom: none;
}
.side-menu li:hover {/*マウスホバー*/
	color: #fff;
	padding-left:23px;
	background-color: #38BB72;
}

.side-menu li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}
/* ホバー時に背景表示 */
.side-menu li:hover::before {
  opacity: 1;
}
.side-menu li:hover a {
  color: #fff !important;
}

/* リンクの見た目調整 */
.side-menu li a {
  display: block;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: color 0.2s;
  width: 100%;
  color: #38BB72;
}

/* あ追記 */
/* active状態用 */
.side-menu li a.active {
  color: #fff;
}

.side-menu li.active {
  color: #fff;
  padding-left: 23px;
	background-color: #38BB72;
}

/* active状態の背景も表示 */
.side-menu li.active::before {
  opacity: 1;
}

/* リンクの文字色も調整 */
.side-menu li.active a {
  color: #fff;
}

/*ボタン -----------------------------------------------*/
.c-btn {
  border: 2px solid #5C8FCB;
  border-radius: 60px;
  color: #5C8FCB;
  display: block;
  position: relative;
  margin-left: auto;
  max-width: 250px;
  padding: 15px 20px;
  text-align: left;
  transition: all 0.3s ease;
}
.c-btn.reverse:hover {
  background: #5C8FCB;
  color: #fff;
  transition: all 0.3s ease;
}
.c-btn:before,
.c-btn:after {
  position: absolute;
  top: 50%;
  right: 25px;
  height: 2px;/*矢印の太さ*/
  background: #5C8FCB;
  content: '';
  transition: all 0.3s ease;
}
.c-btn:before {/*矢印の横線*/
  width: 25px;
  transform: translateY(-50%);
}
.c-btn:after {/*矢印の斜め線*/
  width: 8px;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}
.c-btn:hover::before,
.c-btn:hover::after {/*矢印のホバーアニメ*/
 background: #fff;
 right: 15px;
 transition: all 0.3s ease;
}

.button_bg {
	background:#f5f5f5;
	padding:10px;
	margin:auto 20px 20px 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 640px;
	margin: 0 auto;
}

.button a {
    display: flex;
	flex: 0 0 calc(50% - 20px); /* ← 2列固定にする！ */
    width: 300px;
	height:60px;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
	border-radius: 9999px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: 0.3s;
    margin: 7px 10px;
    position: relative;
	color:#fff;
    background: linear-gradient(90deg, #009759 0%, #225faf 100%);
    background-size: 200% auto;
    background-position: 50% 50%;
	overflow: hidden;
}

.button a:hover {
    color: #fff;
    background-position: 99% 50%;
    filter: brightness(1.1);
}
.button a::before {
  content: "";
  position: absolute;
  inset: 3px; /* 内側の線の太さ（調整可） */
  border-radius: 9999px;
  border: 2px solid #fff; /* 内側の白い線 */
  pointer-events: none; /* クリックに干渉しない */
}
.button a:after {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}

.button-simple {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 640px;
	margin: 0 auto;
}

.button-simple a {
    display: flex;
	flex: 0 0 calc(50% - 20px); /* ← 2列固定にする！ */
    width: 300px;
	height:50px;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
	border-radius: 9999px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: 0.3s;
    margin: 7px 10px;
    position: relative;
	color:#fff;
    background: linear-gradient(90deg, #009759 0%, #409946 100%);
}
.button-simple a:hover {
    filter: brightness(1.1);
}

.button-simple a i {
    margin-left: 8px; /* 文字との間隔 */
    font-size: 1.1em; /* アイコンを文字サイズに合わせる */
    transition: transform 0.3s;
}

.button-simple a:hover i {
    transform: translateX(2px); /* ホバー時に少し動かすとアクセント */
}

.button-word a {
    background: linear-gradient(90deg, #357ABD 0%, #4a90e2 100%);
    border: 2px solid #357ABD;
	color: #fff;
}

.button-word a:hover {
	color: #fff;
    background: linear-gradient(90deg, #357ABD 0%, #4a90e2 100%);
}

.button-ppt a {
	color: #fff;
    background: linear-gradient(90deg, #f5a623 0%, #f37f2b 100%);
}

.button-ppt a:hover {
	color: #fff;
    background: linear-gradient(90deg, #f37f2b 0%, #f5a623 100%);
}

.button-excel a {
    background: linear-gradient(90deg, #34a853 0%, #0f9d58 100%);
}

.button-excel a:hover {
    background: linear-gradient(90deg, #0f9d58 0%, #34a853 100%);
}

/*================================================
 *  ページトップボタン
================================================*/
#page_top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 10;
}

#page_top a {
	display: block;
	color: #fff;
	padding: 10px;
	text-align: center;
	text-decoration: none;
	background: #38BB72;
	width: 60px;
	height: 60px;
	border-radius: 30px;
	box-shadow: 0 0 6px rgba(0,0,0,.2);
}

#page_top a span {
	font-size: 40px;
}

#page_top a:hover {
	text-decoration: none;
	color: #fff;
	background: #38BB72;
}

#page_top a:active {
}

#page_top a,
#page_top a::before,
#page_top a::after {
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

/*================================================
 *  モーダル　popup
================================================*/

.modal-bg {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
}

.modal-bg.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #fff;
  padding: 50px;
  max-width: 380px;
  margin: 20% auto 0 auto;
  border-radius: 16px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.3s ease;
}

.modal-bg.show .modal-content {
  opacity: 1;
  transform: scale(1);
}

.modal-content p {
  color: #333;
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

.modal-close-btn {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 42px;
  height: 42px;
  background: #fff;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: #333;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: #f5f5f5;
  color: #009759;
}

/*フッター　ーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
footer {
	width: 100%;
	height: 80px;
	margin-top: 75px;
	border-top: 1px solid #38BB72;
	display: flex;
    justify-content: center;  /* 水平方向の中央揃え */
    align-items: center;
}
.footer-p {
	display: inline-block;
	color: #38BB72;
	font-size: 0.7rem;
	letter-spacing: 2px;
}



/*サイドナビはcommon.cssに記載*/
/*サイドナビ・コンテンツのコンテナーーーーーーーーー*/
.layout{
	width: 90%;
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
}
/*TOPページのTOPーーーーーーーーーーーーーーーーーーーー*/
.top_head{
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	margin-bottom: 40px;
	position: relative;
	padding: 0 1rem; /* 少し余白を追加（任意） */
}
.top_head_con {
	width: 100%;
	height: 150px;
	margin: 0 auto;
  	z-index: 1;
	display: flex;
	align-items: center;
	padding: 0 1rem; /* 少し余白を追加（任意） */
}

.top_head_con a {
	text-decoration: none;
	color: #3C3C3C;
}

.top_title {
	font-size: 2.0rem;
	letter-spacing: 3px;
	margin: 1.5rem auto 1.5rem 1rem;
}


.top_title span {
	color:#009759;
	font-weight:1000;
}

.title_line {
  display: flex;
  align-items: center; /* 画像と文字を縦中央に揃える */
}

.title_line img {
  margin-right: 0.6rem; /* ロゴと文字の間だけ余白 */
}

.logo-title1 {
	height: 2.9rem;  /* 文字サイズとほぼ同じ高さ */
	width: auto;
	padding-left:2px;
	padding-right:0px;
}

.logo-title2 {
	height: 2.6rem;  /* 少し小さくして正方形のバランスを取る */
	width: auto;
	padding-top:3px;
}

.top_head_right {
	position: absolute;
	right: 0;
	top: 0px; /* ← 好きな高さに調整 */
	z-index: 100;
}

.top_head_right img {
	height: 120px; /* 画像のサイズ調整 */
	width: auto;
	display: block;
}


.top_head_img_pc {
	position: relative;
	width: 100%;
	height: 65vh;
	min-width: 500px;
	overflow: hidden;
}

/* ===================== テーマ ===================== */
.top_head_img_pc .top_text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 35%; /* お好みで調整 */
  opacity: 0;
  transition: opacity 1.5s ease;
  z-index: 8; /* オーバーレイより前 */
}

/* 表示中スライドの文字をフェードイン */
.top_head_img_pc .top_text.active {
  opacity: 1;
}

/* 各スライド位置調整 */
.top_head_img_pc .text1 {
  right: 5%; /* 右寄り */
}

.top_head_img_pc .text2,
.top_head_img_pc .text3 {
  left: 5%; /* 左寄り */
}

/* ===================== 下部文字 ===================== */
.top_head_img_pc .topunder_image {
  position: absolute;
  bottom: 0; /* 下に固定 */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10; /* 背景より前面 */
  width: 100%; /* 必要に応じて調整 */
}

.top_head_img_pc .topunder_image img {
  width: 100%;         /* 親幅に合わせて自動縮小 */
  height: auto;
  display: block;
}

/* ===================== グラデーションオーバーレイ ===================== */
.top_head_img_pc .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%; /* 文字がある下側だけ */
  background: linear-gradient(
    to top,
    rgba(44,122,50,1.0), /* 濃い緑 */
    rgba(44,122,50,0)    /* 上は透明 */
  );
  mix-blend-mode: multiply; /* 乗算 */
  z-index: 5;
  pointer-events: none; /* クリックを妨げない */
}

/* ===================== トップ画像 ===================== */
.top_head_img_pc .top_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transform: scale(1);
	transition: opacity 2s ease, transform 18s ease;
}

.top_head_img_pc .top_bg.active {
	opacity: 1;
	transform: scale(1.05);
}

.top_head_con-sp{
	display: none;
	width: 100%;
	height: 120px;
	z-index: 100;
}

.top_head_con-sp a {
	text-decoration: none;
	color: #3C3C3C;
}

.top_title-other {
	position: relative;
	width:50%;
	max-width: 500px;
	min-width: 250px;
	aspect-ratio: 17 / 1;
	background-image: url("../img/title-slim.png") ;
	background-size: cover;
	margin: 20px;
}
.top_title-left {
	margin-left: auto;
	margin-right: 20px;
	  font-family: "Vollkorn", serif;
	  font-optical-sizing: auto;
	  font-weight: 400;
	  font-style: normal;
	color: #E35776;
}

.top_head_h1{
	font-size: 2.8rem;
	line-height:2.8rem;
	letter-spacing: 2px;
	color: #5C8FCB;
	margin-top: 10px
}
.h1-small {
	font-size: 2.2rem;
	font-weight: 500;
}
.top_head_p {
	color: #F56575;
	font-size: 0.8rem;
	letter-spacing: 1px;
	font-family: "Vollkorn", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


.top_catch-copy-sp {
	display: none;
}
/*TOP以外の見出し----------------------------------------------*/
.content_header {
	width: 100%;
	max-width: 1440px;
	height: 280px;
	margin:0  auto; 
	border-radius: 0 0 0 0;
	display: flex;
	align-items: center;
	color: #fff;
}
.header-01 {
    position: relative;
    overflow: hidden;
	background-image: linear-gradient(90deg, #009759 30%, transparent);
}

.header-01::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
	background-image:url("../img/top1.jpg?ver=20251023");
    background-size: 70% auto; /* 拡大 */
    background-position: right 45%;
    background-repeat: no-repeat;
    z-index: -1;
}
.header-02 {
    position: relative;
    overflow: hidden;
	background-image: linear-gradient(90deg, #009759 30%, transparent);
}

.header-02::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
	background-image:url("../img/top2.jpg?ver=20251023");
    background-size: 80% auto; /* 拡大 */
    background-position: right 40%;
    background-repeat: no-repeat;
    z-index: -1;
}
.header-03 {
	background-image: linear-gradient(90deg, #009759 30%, transparent),
                      url("../img/top3.jpg?ver=20251023");
	background-size: cover;
	background-position: center 30%;

}
.content_h2_inner{
	padding-left: 40px;
}
.content_header-h2 {
	color: #fff;
	font-size:2.5rem;
}
.content_header-p {
	color: #fff;
	font-size:1.2rem;
	letter-spacing: 1px;
	margin:0px 0px 0px 0px;
}

/*共通項目----------------------------------------------------*/
.top_info{
}
 .top_info-con{
		width: 100%;
		height:auto;
		min-height:600px;
		border-collapse: collapse;
		border-radius: 16px;
		overflow: hidden;
		background: #fff;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
		margin: 0 auto;
		padding:15px;
}

.commom-content_con {
	padding-top: 12px;
	/*border-top: solid 1px #5C8FCB;*/
}
.commom_h4 {
	color: #5C8FCB;
	font-size: 1.8rem;
	margin: 15px 0;
	letter-spacing: 1px;
}
.h4-small {
	color: #5C8FCB;
	font-size: 1rem;
}

/*コンテンツ:top ---------------------------------------------*/
.top_content {
	width: 78%;
	margin-left: 3%;
}

.pc {
	display:block;
}
.pc2 {
	display:inline-block;
}

.sp {
	display:none;
}


/*コンテンツ:topの開催概要 ---------------------------------------------*/
.top_info-table{
	width: 96%;
	margin: 0 auto;
	font-size: 1rem;
}
.top_info-table tr {
      border-bottom: 1px dotted #ccc;
}
.top_info-table tr:last-child {
      border-bottom: none;
}
.top_info-table th,
.top_info-table td {
      padding: 20px;
      text-align: left;
      vertical-align: top;
	 line-height: 1.5rem;
}
.top_info-table th {
	  width:10%; 
      white-space: nowrap;
      font-weight: normal;
	  font-weight: 600;
}
.top_info-table td {
	 width:90%; 
}
.top_info-table td small {
      display: block;
      font-size: 0.95em;
	  line-height: 1.2rem;
	  margin-top: 0.5rem;
}
.top_info-table td small.m-bottom {
	  margin-bottom: 2rem;
}
/*コンテンツ：TOPのNEWS----------------------------------------*/
.top_news{
	margin-top: 0px;
	padding-top: 0px;
}
.top_news-h2{
	font-size: 1.2rem;
	color: #fff;
	background-color:#38BB72;
	padding: 0.8rem 0.5rem;
	padding-left: 1.5rem;
	border-radius: 10px 10px 0px 0px;
}

.top_news_h2 i {
	font-size: 1.3rem; /* アイコンサイズ */
	color: #fff;
}

.top_news-p {
	font-size: 1.1rem;
	color: #5C8FCB;
	margin-top: 5px
}

.news_wrapper{
  width: 100%;
  height: auto; /* 3行分の高さ210px */
  overflow-y: auto;
  border-radius: 0px 0px 16px 16px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin: 0 auto;
  padding: 5px 10px 10px 10px;
}

.news_table{
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.news_table tr{
	display: flex;
	align-items: flex-start;
	border-bottom: 1px dotted #ccc;
}
.news_table tr:last-child{
  border-bottom: none;
}

.news_table th,
.news_table td{
	padding: 15px;
	text-align: left;
	vertical-align: baseline;
}

.news_table th {
	width:100px;
	color:#38BB72;
}
.news_table td {
	width:80%;
	line-height: 1.3;
	vertical-align: top;
	word-break: break-word; 
	padding-top: 14px;
}

/*コンテンツページ：ご挨拶-----------------------------------------------------*/
.name_g {
	font-size: 1.6rem;
	letter-spacing: 3px;
}

.name_p {
	letter-spacing: 3px;
}
.greeting-box {
	display: flex;
	align-items: center;
	margin-top: 20px;
}
.greeting-img {
	width: 160px;
	aspect-ratio: 6 / 7;
	align-self: flex-start;
	margin-right: 2em;
	margin-left:20px;

}
.greeting-text {
	display: flex;
	font-size: 0.9rem;
	width: 65%;
	line-height: 1.1rem;
	flex-direction: column;
	justify-content: center;
}
.greeting-text-2 {
	font-size: 0.9rem;
	line-height: 1.5rem;
	margin:2rem 20px auto 20px;
	text-align: justify; /* ← 両端揃え（右端も揃う）にしたい場合 */
	text-justify: inter-ideograph; /* ← 日本語の両端揃えを自然に */
}

.greeting-text-2 span {
	margin-bottom:1rem;
	display:inline-block;
}

.greeting-kugiri {
	border-bottom:solid 1px #ddd;
	margin:20px 20px 30px 20px;
}

/*コンテンツページ：開催概要-------------------------------------*/
.top_info_border-none {
	border-top:none;
}
/*コンテンツページ：参加登録------------------------------------*/
.top_inner {
	width: 96%;
	padding: 1rem 0;
	margin: 0 auto;
	letter-spacing: 1px;
}
h1.content-h1 {
	font-size: 1.5rem;
	line-height: 2.5rem;
	color: #5C8FCB;
	border-bottom: solid 1px #5C8FCB;
	margin: 1rem 0;
}
h2.content-h2 {
	line-height: 2.5rem;
	padding-left: 1rem;
	margin: 1rem 0;
	color: #fff;
	background-color: #5C8FCB;
}
h4.content-h4 {
	line-height: 2.5rem;
	padding-left: 1rem;
	margin: 1rem 0 arem 0;
	border-bottom: 1px dotted #ccc;
}
p.content-text {
	font-size: 0.85rem;
	line-height: 1.2rem;
	padding-left: 1rem;
	margin: 1rem 0;
}
/*コンテンツページ：会場案内------------------------------------*/
.map-box {
	border-radius: 20px;
	padding:20px;
}
.map-btn {
	margin-top: 1rem;
}

/*================================================
*  タブレット、スマホ向けスタイル 
================================================*/
@media screen and (max-width: 1024px) {
	.top_head {
		padding: 0 0;
	}

	.top_title {
		font-size: 1.3rem;   /* ← 少し小さく */
		letter-spacing: 2px; /* ← 詰めすぎ防止 */
	}
	.top_head_right img {
		height: 100px; /* ← 少し小さく */
	}

	.logo-title1 {
		height: 1.9rem;  /* 文字サイズとほぼ同じ高さ */
		width: auto;
		padding-left:2px;
		padding-right:0px;
	}

	.logo-title2 {
		height: 1.7rem;  /* 少し小さくして正方形のバランスを取る */
		width: auto;
		padding-left:2px;
		padding-top:3px;
	}
}

@media (max-width: 748px) {

	/*header-SP　ーーーーーーーーーーーーーーーーーーーーーーーーーー*/
		.top_head{
			margin-bottom: 0px !important;
		}

		.top_head.top_head-other {
			padding: 0;
			margin:0;
		}
		.top_head_con {
			display: none; 
		}
		.top_head_con-sp{
			display: block;
			position: fixed;
			width: 100%;
			height: 70px;
			z-index: 40;
			margin: 0 auto;
			display: flex;
			align-items: center;
			padding: 0 1rem; /* 少し余白を追加（任意） */
				backdrop-filter: blur(11px);
				-webkit-backdrop-filter: blur(11px); 
				background-color: rgba(255, 255, 255, 0); 
		}
		.top_head_con-sp a {
		display: block;
		text-decoration: none;
		}
		.top_title-sp {
			position: fixed;
			top: 5px;
			left: 12px;
			width: 80%;
			z-index: 50;
			font-size: 0.8rem;
			letter-spacing: 1.7px;
			margin: 1.0rem auto 1.5rem 0;
		}

		.top_title-sp span {
			color:#009759;
			font-weight:1000;
		}

		.top_title-sp-other {
			position: fixed;
			top: 5px;
			left: 5px;
			width: 200px;
			aspect-ratio: 57 / 21;
			background-image: url("../img/title.png") ;
		    background-size: cover;
			z-index: 50;
		}

		.title_line img {
		margin-right: 0.3rem; /* ロゴと文字の間だけ余白 */
		}
		
		.logo-title1 {
			height: 1.2rem;  /* 文字サイズとほぼ同じ高さ */
			width: auto;
			padding-left:2px;
			padding-right:0px;
		}
		
		.logo-title2 {
			height: 1.0rem;  /* 少し小さくして正方形のバランスを取る */
			width: auto;
			padding-left:3px;
			padding-top:3px;
		}

		.top_head_img_sp {
			margin:70px 0 0 0;
			width: 100% !important;
			height: 60vw;
			position: relative;
			overflow: hidden;
			min-width: 0;
		}

		/* ===================== テーマ ===================== */
		.top_head_img_sp .top_text {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 40%; /* スマホ用に少し大きめ */
		opacity: 0;
		transition: opacity 1.5s ease;
		z-index: 8;
		}
		
		/* 表示中スライドの文字をフェードイン */
		.top_head_img_sp .top_text.active {
		opacity: 1;
		}
		
		/* 各スライドの位置調整 */
		.top_head_img_sp .text1 {
		right: 3%; /* 右寄り */
		}
		
		.top_head_img_sp .text2,
		.top_head_img_sp .text3 {
		left: 3%; /* 左寄り */
		}


		/* 文字画像を固定 */
		.top_head_img_sp .topunder_image {
		position: absolute;
		bottom: 0; /* 下に固定 */
		left: 50%;
		transform: translateX(-50%);
		z-index: 10; /* 背景より前面 */
		width: 100%; /* 必要に応じて調整 */
		}
		
		.top_head_img_sp .topunder_image img {
		width: 100%;         /* 親幅に合わせて自動縮小 */
		height: auto;
		display: block;
		}
		
		/* グラデーションオーバーレイ */
		.top_head_img_sp .overlay {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 30%; /* 文字がある下側だけ */
		background: linear-gradient(
			to top,
			rgba(44,122,50,1.0), /* 濃い緑 */
			rgba(44,122,50,0)    /* 上は透明 */
		);
		mix-blend-mode: multiply; /* 乗算 */
		z-index: 5;
		pointer-events: none; /* クリックを妨げない */
		}

		.top_head_img_sp img {
			width: 100%;
			height: auto !important;
			display: block;
			margin:0;
			padding:0;
		}

		.top_head_img_sp .top_bg {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			object-fit: cover;
			opacity: 0;
			transition: opacity 1.5s ease;
		}
		
		.top_head_img_sp .top_bg.active {
			opacity: 1;
			z-index: 1;
		}

		/* green部分 */
		.bottom_image_sp {
		width: 100%;
		max-width: 1440px; /* 必要に応じてPC上限 */
		margin: 0px auto 10px auto;    /* 横中央揃え */
		display: block;
		}
		
		.bottom_image_sp img {
		width: 100%;       /* 横幅に合わせて縮小 */
		height: auto;      /* 縦横比維持 */
		display: block;
		}

		.menu-btn {
			position: fixed;
			top: 10px;
			right: 10px;
			display: flex;
			height: 50px;
			width: 50px;
			justify-content: center;
			align-items: center;
			z-index: 100;
			background-color: #38BB72;
			border-radius: 30px;
		}
		.menu-btn span,
		.menu-btn span:before,
		.menu-btn span:after {
			content: '';
			display: block;
			height: 3px;
			width: 25px;
			border-radius: 3px;
			background-color: #ffffff;
			position: absolute;
			transition: all 0.3s ease;
		}
		.menu-btn span:before {
			bottom: 8px;
		}
		.menu-btn span:after {
			top: 8px;
		}
		#menu-btn-check:checked ~ .menu-btn span {
		background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
			transition: all 0.3s ease;
		}
		#menu-btn-check:checked ~ .menu-btn span::before {
			bottom: 0;
			transform: rotate(45deg);
			transition: all 0.3s ease;
		}
		#menu-btn-check:checked ~ .menu-btn span::after {
			top: 0;
			transform: rotate(-45deg);
			transition: all 0.3s ease;
		}
	/*サイドナビ-sp　ーーーーーーーーーーーーーーーーーーーーーーーーーー*/
		nav.side-menu {
			position: fixed;
			top: 0;
			left: 0;
			width: 100vw;
			height: 100vh;
			padding-top: 70px;
			background-image: linear-gradient(148deg, rgba(255, 255, 255, 1), rgba(227, 244, 255, 1));
			z-index: 90;
			transition: all 0.5s;
			left: 100vw;
			text-align: center;
		}
		nav.side-menu.open {/*サイドメニュー表示*/
		  left: 0;
			transition: all 0.5s;
		}

	/*ページトップボタン-sp　ーーーーーーーーーーーーーーーーーーーーーーーーーー*/
	#page_top {
		position: fixed;
		bottom: 30px;
		right: 30px;
		z-index: 10;
	}
	
	#page_top a {
		display: block;
		color: #fff;
		padding: 10px;
		text-align: center;
		text-decoration: none;
		background: #38BB72;
		width: 50px;
		height: 50px;
		border-radius: 30px;
		box-shadow: 0 0 6px rgba(0,0,0,.2);
	}
	
	#page_top a span {
		font-size: 30px;
	}
	
	#page_top a:hover {
		text-decoration: none;
		color: #008dff;
		background: #fff;
	}
	
	#page_top a:active {
	}
	
	#page_top a,
	#page_top a::before,
	#page_top a::after {
		-webkit-transition: all 0.4s;
		transition: all 0.4s;
	}

	/*モーダル　popup　ーーーーーーーーーーーーーーーーーーーーーーーーーー*/

	.modal-content {
		padding: 40px;
		max-width: 380px;
		margin: 20% 10% 0 10%;
	}

	/*ボタン -----------------------------------------------*/
	.button_bg {
		margin:auto 10px 20px 10px;
	}

	.button {
		flex-direction: column; /* 縦並び */
		align-items: center;
		max-width: none;
	}

	.button a {
		flex: none !important;
		margin: 7px 0;
		width:270px;
	}

	.button-simple {
		flex-direction: column; /* 縦並び */
		align-items: center;
		max-width: none;
	}

	.button-simple a {
		flex: none !important;
		margin: 7px 0;
		width:270px;
	}

	/*フッター　ーーーーーーーーーーーーーーーーーーーーーーーーーー*/
		.footer-p {
			font-size: 0.6rem;
			letter-spacing: 1px;
			padding:10px;
			text-align:center;
		}
	
	/*サイドナビ・コンテンツのコンテナーーーーーーーーー*/
	.layout{
		width: 95%;
		max-width: 1400px;
		margin: 20px auto 0 auto !important;
		display: flex;
	}

	/*TOPページのTOPーーーーーーーーーーーーーーーーーーーー*/
		.top_head{
			width: 100%;
			height:auto;
			margin-bottom: 0px;
			display: flex;
		}	
		.top_title {
			position: absolute;
			top: 0;
			left: 0;
			width: 65%;
			min-width: 280px;
			aspect-ratio: 57 / 21;
			z-index: 1;
			display: none;
		}

		.top_back-1 {
			position: absolute;
			bottom: 12%;
			left: 0;
			width: 90%;
			height: 40%;
		}
		.top_back-2{
			position: absolute;
			top: 18%;
			right: 0;
			width:90%;
			height: 35%;
		}
		.top_catch-copy {
			display: none;
		}
		.top_catch-copy-sp {
			display: inline-block;
			position: absolute;
			font-size: 1.5rem;
			letter-spacing: 2px;
			font-family: "Noto Serif JP", serif;
			font-optical-sizing: auto;
			font-weight: 600;
			font-style: normal;
			color: #F26F7E;
			bottom: 0;
			left: 8%;
		}

		.sp {
			display:block;
		}
		.pc {
			display:none;
		}
		.pc2 {
			display:none;
		}

/*コンテンツ：TOPのNEWS----------------------------------------*/
		.news_table th {
			width:90px;
		}
		.news_table td {
			width:80%;
		}

	/*テーブルレイアウト-------------------------------------*/
		.top_info-table {
			width: 100%;
			border-collapse: separate; /* collapse だと block の tr がうまく線出ないので separate に変更 */
			border-spacing: 0 0;
		}
			.top_info-table tr {
			display: block;
			width: 95%;
			margin: 0 auto;
			box-sizing: border-box;
			border-bottom: 1px dotted #ccc;
			padding: 10px 0 !important;
			font-size: 0.85rem;
			}
		.top_info-table tr:last-child {
			border-bottom: none;
		}
		.top_info-table th,
		.top_info-table td {
			display: block;
			width: 100%;
			padding-left: 10px;
			box-sizing: border-box;
		}
		.top_info-table th {
			height: 2rem;
			padding-left: 0;
		}
	/*コンテンツページのヘッダー-------------------------------*/
		.content_header {
			width: 100%;
			max-width: 1440px;
			height: 160px;
			margin-right:0;
			margin-top: 70px;
			border-radius: 0px 0 0 0px;
			display: flex;
			align-items: center;  
		}
		.header-01 {
			background-image: linear-gradient(90deg, #009759 30%, transparent),
							url("../img/top1.jpg?ver=20251023");
			background-size: cover;
			background-position: right 45%;
		}
		
		.header-01::before {
			display:none;
		}

		.header-02 {
			background-image: linear-gradient(90deg, #009759 30%, transparent),
							url("../img/top2.jpg?ver=20251023");
			background-size: cover;
			background-position: center 40%;
		}
		
		.header-02::before {
			display:none;
		}

		.header-03 {
			background-image: linear-gradient(90deg, #009759 30%, transparent),
							url("../img/top3.jpg?ver=20251023");
			background-size: cover;
			background-position: center 30%;
		}

		.content_h2_inner{
			padding-left: 20px;
		}
		.content_header-h2 {
			font-size:2rem;
		}
		.content_header-p {
			font-size:1rem;
			letter-spacing: 1px;
		}
	/*サイドナビ　ーーーーーーーーーーーーーーーーーーーーーーーーーー*/
	/*コンテンツ：TOPの開催概要--------------------------------*/
		.top_content {
			width: 95%;
			margin-left: 2.5%;
		}
	/**/
	/*コンテンツページ：ご挨拶-----------------------------------------------------*/
		.name_g {
			font-size: 1.4rem;
			letter-spacing: 2px;
			line-height:120%;
			font-weight:500;
		}
		.name_p {
			font-size: 0.9rem;
			line-height:140%;
		}
		.greeting-box {
			flex-direction: column; /* ← 横並び→縦並びに */
			align-items: center;    /* ← 中央寄せ */
			text-align: center;     /* ← テキスト中央揃え */
			margin:15px;
		}
	
		.greeting-img {
			margin: 0 auto 1rem; /* ← 画像を中央にして下に余白 */
			width: 55%;          /* ← スマホで少し小さめに */
		}
	
		.greeting-text {
			width: 100%;         /* ← 横幅いっぱいにして中央寄せ */
			line-height: 1.0rem;
		}
	}
		.greeting-text-2 {
			font-size: 0.9rem;
			line-height: 1.5rem;
			margin:2rem 20px auto 20px;
		}
	
}
