@charset "UTF-8";

/* ==================================================
	WEB FONT bootstrap
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");
@import url("bootstrap/bootstrap.min.css");


/* ==================================================
	RESET
*/
:root {
	--color-glay: #222222;
	--color-pglay: #f5f5f2;
	--color-pgreen: #81c98f;
	--color-ygreen : #a5d150;
	--color-green : #6eb204;
	--color-dgreen : #48995b;
	--color-pblue: #53c3e5;
	--color-blue: #059dc1;
	--color-porange: #eda34a;
	--color-orange: #dd8403;
	--color-red : #e56453;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-color: transparent;
	background-repeat: no-repeat;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	font-style: normal;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: inherit;
	line-height: 150%;
	color: var(--color-glay);
}
html, body {

}
body {

}
h1, h2, h3, h4, h5 {
	margin-bottom: 0;
}
h1 {
	font-size: 36px;
}
h2 {
	font-size: 32px;
	font-weight:600;
}
h3 {
	font-size: 24px;
}
h4, h5 {
	font-size: 20px;
}
strong {
	color: unset;
}
.br-sp {
      display: none;
}

@media screen and (min-width: 992px) {

}

@media screen and (max-width: 991.98px) {
h1 {
    width: 60%;
	min-width: 200px;
}
}

@media screen and (max-width: 767.98px) {
h2 {
	font-size: 24px;
}
h3 {
	font-size: 22px;
}
h4, h5 {
	font-size: 20px;
}
.br-sp {
	display: inline;
	}

}

p {

}
ul {
	padding-left: 0;
}
li {
	list-style: none;
	}

a {
  text-decoration: none;
  color: var(--color-mains);
  transition: 0.3s;
}

a:hover {
  opacity: 0.5;
}

a span:hover {
  text-decoration: underline;
}

button {
  transition: 0.3s;
}

button:hover {
  opacity: 0.5;
}

figure table {
    margin: 0px 0 3rem;
}

/* ==================================================
	GUTENBERG BLOCKS
*/
.wp-block-gallery {
	--gallery-columns: auto-fit;
	--gallery-min-size: 180px;
	display: grid !important;
	grid-template-columns: repeat(var(--gallery-columns), minmax(var(--gallery-min-size), 1fr));
	gap: var(--wp--style--unstable-gallery-gap, var(--wp--style--gallery-gap-default, 20px)) !important;
	margin: 32px 0;
	padding: 0;
	list-style: none;
}

.wp-block-gallery .blocks-gallery-grid {
	--gallery-columns: inherit;
	--gallery-min-size: inherit;
	display: contents;
	gap: inherit;
	margin: 0;
	padding: 0;
	list-style: none;
}

.wp-block-gallery[class*="wp-block-gallery-"] {
	gap: var(--wp--style--unstable-gallery-gap, var(--wp--style--gallery-gap-default, 20px)) !important;
}

.wp-block-gallery .wp-block-image,
.wp-block-gallery .blocks-gallery-item {
	margin: 0;
}

.wp-block-gallery img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
	object-fit: cover;
}

.wp-block-gallery.columns-1,
.wp-block-gallery .blocks-gallery-grid.columns-1 {
	--gallery-columns: 1;
	--gallery-min-size: 0px;
}

.wp-block-gallery.columns-2,
.wp-block-gallery .blocks-gallery-grid.columns-2 {
	--gallery-columns: 2;
	--gallery-min-size: 0px;
}

.wp-block-gallery.columns-3,
.wp-block-gallery .blocks-gallery-grid.columns-3 {
	--gallery-columns: 3;
	--gallery-min-size: 0px;
}

.wp-block-gallery.columns-4,
.wp-block-gallery .blocks-gallery-grid.columns-4 {
	--gallery-columns: 4;
	--gallery-min-size: 0px;
}

.wp-block-gallery.columns-5,
.wp-block-gallery .blocks-gallery-grid.columns-5 {
	--gallery-columns: 5;
	--gallery-min-size: 0px;
}

.wp-block-gallery.columns-6,
.wp-block-gallery .blocks-gallery-grid.columns-6 {
	--gallery-columns: 6;
	--gallery-min-size: 0px;
}

.wp-block-gallery.columns-7,
.wp-block-gallery .blocks-gallery-grid.columns-7 {
	--gallery-columns: 7;
	--gallery-min-size: 0px;
}

.wp-block-gallery.columns-8,
.wp-block-gallery .blocks-gallery-grid.columns-8 {
	--gallery-columns: 8;
	--gallery-min-size: 0px;
}

.wp-block-file {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin: 30px 0 48px 0;
  justify-content: left;
}

.wp-block-file a {
	font-weight: 600;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

.wp-block-file__button {
	background-color: var(--color-pgreen);
	border-radius: 8px;
	color: #ffffff !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	padding: 8px 20px;
	text-decoration: none !important;
	transition: background-color 0.3s ease, opacity 0.3s ease;
}

.wp-block-file__button:hover {
	background-color: var(--color-dgreen);
	opacity: 1;
}

.wp-block-buttons {
	margin: 30px 0 48px 0;
}

.wp-block-button__link {
	background-color: var(--color-pgreen);
	border-radius: 8px;
	color: #ffffff !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	padding: 14px 32px;
	text-decoration: none !important;
  font-size: 1.5em;
	transition: background-color 0.3s ease, opacity 0.3s ease;
}

.wp-block-button__link:hover,
.wp-block-button__link:focus {
	background-color: var(--color-dgreen);
	opacity: 1;
}

.wp-block-button__link::after {
	content: "\2192";
	margin-left: 0.6em;
	font-size: 1em;
	line-height: 1;
	transition: transform 0.3s ease;
}

/* .wp-block-button__link:hover::after,
.wp-block-button__link:focus::after {
	transform: translateX(4px);
} */

.wp-block-button.is-style-outline .wp-block-button__link {
	background-color: transparent;
	border: 2px solid var(--color-green);
	color: var(--color-green);
}

.wp-block-button.is-style-outline .wp-block-button__link:hover,
.wp-block-button.is-style-outline .wp-block-button__link:focus {
	background-color: var(--color-green);
	color: #ffffff;
}

.wp-block-button.s-size .wp-block-button__link,
.wp-block-button__link.s-size {
	font-size: 1.125em;
	padding: 8px 24px;
	border-radius: 6px;
}

.wp-block-button.s-size .wp-block-button__link::after,
.wp-block-button__link.s-size::after {
	margin-left: 0.6em;
	font-size: 0.9em;
}

.wp-block-list,
.wp-block-list ul,
.wp-block-list ol {
	margin: 0px 0 50px 0;
	padding-left: 1.5em;
}

ol.wp-block-list {
	list-style: decimal;
}

ul.wp-block-list {
	list-style: disc;
}

.wp-block-list li {
	margin-bottom: 8px;
}

ol.wp-block-list li {
  list-style: unset !important;
}

.wp-block-list li:last-child {
	margin-bottom: 0;
}

.wp-block-list li::marker {
	color: var(--color-glay);
	font-weight: 600;
}

.has-text-color {
	color: inherit;
}

.has-background {
	padding: 16px;
	border-radius: 8px;
}

.has-color-glay-color,
.has-glay-color {
	color: var(--color-glay);
}

.has-color-pglay-color,
.has-pglay-color {
	color: var(--color-pglay);
}

.has-color-pgreen-color,
.has-pgreen-color {
	color: var(--color-pgreen);
}

.has-color-green-color,
.has-green-color {
	color: var(--color-green);
}

.has-color-dgreen-color,
.has-dgreen-color {
	color: var(--color-dgreen);
}

.has-color-pblue-color,
.has-pblue-color {
	color: var(--color-pblue);
}

.has-color-blue-color,
.has-blue-color {
	color: var(--color-blue);
}

.has-color-porange-color,
.has-porange-color {
	color: var(--color-porange);
}

.has-color-orange-color,
.has-orange-color {
	color: var(--color-orange);
}

.has-color-red-color,
.has-red-color {
	color: var(--color-red);
}

.has-color-glay-background-color,
.has-glay-background-color {
	background-color: var(--color-glay);
	color: #ffffff;
}

.has-color-pglay-background-color,
.has-pglay-background-color {
	background-color: var(--color-pglay);
}

.has-color-pgreen-background-color,
.has-pgreen-background-color {
	background-color: var(--color-pgreen);
}

.has-color-green-background-color,
.has-green-background-color {
	background-color: var(--color-green);
	color: #ffffff;
}

.has-color-dgreen-background-color,
.has-dgreen-background-color {
	background-color: var(--color-dgreen);
	color: #ffffff;
}

.has-color-pblue-background-color,
.has-pblue-background-color {
	background-color: var(--color-pblue);
}

.has-color-blue-background-color,
.has-blue-background-color {
	background-color: var(--color-blue);
	color: #ffffff;
}

.has-color-porange-background-color,
.has-porange-background-color {
	background-color: var(--color-porange);
}

.has-color-orange-background-color,
.has-orange-background-color {
	background-color: var(--color-orange);
	color: #ffffff;
}

.has-color-red-background-color,
.has-red-background-color {
	background-color: var(--color-red);
	color: #ffffff;
}

.has-color-glay-background-color .wp-block-button__link,
.has-color-green-background-color .wp-block-button__link,
.has-color-blue-background-color .wp-block-button__link,
.has-color-red-background-color .wp-block-button__link {
	color: #ffffff;
}

@media screen and (max-width: 575.98px) {
	.wp-block-gallery:not([class*="columns-"]) {
		--wp--style--unstable-gallery-gap: 12px;
		--gallery-min-size: 140px;
	}

	.wp-block-button__link {
		width: 100%;
		justify-content: center;
	}
}
.red {
	color: var(--color-red);
	font-size: inherit;
}

@media screen and (min-width: 992px) {
	.pc-none {
		display: none !important;
	}
  .modal.show .modal-dialog {
  max-width: 800px;
  }
}

@media screen and (max-width: 991.98px) {
  nav {
    width: 95%;
    margin: auto;
  }
  .sp-none {
  display: none !important;
  }
  .modal.show .modal-dialog {
  max-width: 80%;
  }
}

@media screen and (max-width: 767.98px) {
  .modal.show .modal-dialog {
  max-width: 90%;
  }
}

@media screen and (max-width: 575.98px) {
  .modal.show .modal-dialog {
  max-width: 100%;
  }
}

/* ==================================================
	layout
*/
.wrapper {
	display: flex;
	padding:0;
	justify-content: center;
}

.container-left-wrapper {
	margin: 0 200px 0 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-image: url("../../images/main-bg.jpg");
	overflow: hidden;
  background-size:auto;
  background-position:50% 0%;
}

.bgp {
	background-image: url("../../images/main-bg-p.jpg");
}

.container-left-w {
	margin: 0;
	padding:0;
    width: 100%;
	max-width: 960px;
	display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.container-left-g {
	margin: 0;
	padding:0;
	width: 100%;
	display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
	background-color: var(--color-pglay);
}

.container-left-pw {
	margin: 0;
	padding:0;
    width: 100%;
	max-width: 960px;
	display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.container-left-foot {
  display: flex;
  justify-content: space-around;
	background-image: url("../../images/foot-bg.jpg");
	padding: 70px;
	width: 100%;
  background-size:auto;
  background-position:50% 0%;
}

.container-right {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
	width: 100%;
    max-width: 200px;
    /* overflow-y: auto; */
    align-items: flex-start;
    position: fixed;
    right: 0;
}

.container-right .side-menu {
	min-width: 200px;
    background-color: var(--color-pglay);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 1200px) {
  .container-right {
    height: 100vh;
  }

  .container-right .side-menu {
    height: 100%;
    max-height: 100vh;
    /* overflow-y: auto;
    padding-right: 8px; */
    padding-bottom: 32px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
  }

  .container-right .side-menu ul.d-btn {
    margin-top: auto;
    padding-top: 24px;
    padding-bottom: 16px;
  }

  .container-right .side-menu::-webkit-scrollbar {
    width: 8px;
  }

  .container-right .side-menu::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 4px;
  }
}

.container-right .side-menu ul {
	display: flex;
	flex-direction: column;
}

.container-right .side-menu ul li {
	margin: 5px 0 0 20px;
}

.container-right .side-menu ul li a {
	display: flex;
	align-items: center;
	flex-direction: column;
    width: 100%;
    max-width: 160px;
	font-size: 14px;
	position: relative;
	padding-bottom: 10px;
}

.container-right .side-menu ul li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-image: url("../../images/menu-line.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  bottom: 0;
  left: 0;
}

.container-right .side-menu ul li:last-child a::after {
  content: none;
}

.container-right .side-menu ul li a:not(:last-child)::after {

}

.container-right .side-menu ul li a img {
    max-width: 120px;
	height: auto;
}

.container-right .side-menu ul li a span {
	display: block;
	margin-top: 10px;
}

.container-right .side-menu ul li a img {
    max-width: 120px;
	height: auto;
}

.container-right .side-menu ul li a span {
	display: flex;
	margin-top: 10px;
	align-items: center;
}

.container-right .side-menu ul li a span:hover {
	text-decoration: none;
}

.container-right .side-menu ul li a.beginner span:hover {
	text-decoration: none;
}

.container-right .side-menu ul li a.beginner span::before {
  content: "";
  display: inline-block;
  width: 56px;
  height: 56px;
  background-image: url("../../images/menu-04.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
}

.container-right .side-menu ul li a.beginner span {
	margin-top: 10px;
}

.container-right .side-menu ul li a.beginner {
	background-color: #fff;
	border-radius: 8px;
	padding: 8px 16px;
    max-width: 160px;
    margin-top: 10px;
	transition: 0.3s;
}

.container-right .side-menu ul li a.beginner span::before {
  content: "";
  display: inline-block;
  width: 56px;
  height: 56px;
  background-image: url("../../images/menu-04.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
}

.container-right .side-menu ul li a.beginner span {
		margin-top: 5px;
}

.container-right .side-menu ul.d-btn {
	list-style: none;
	padding: 0;
	margin-top: -6px;
}

.container-right .side-menu ul.d-btn li {

}

.container-right .side-menu ul.d-btn li a {
  max-width: 160px;
  padding: 0 15px;
  border-radius: 8px;
  color: white;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.container-right .side-menu ul.d-btn li a::after {
  content: none ;
}

.container-right .side-menu ul.d-btn li a span {
	padding: 0;
	margin-bottom: 10px;
	border-radius: 15px;
	color: white;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.container-right .side-menu ul.d-btn li a span:hover {
	text-decoration: none;
}

.d-btn li a.about {
  background-color: var(--color-pblue);
}

.d-btn li a.exchange {
  background-color: var(--color-ygreen);
}

.d-btn li a.multiculture {
  background-color: var(--color-porange);
}

.d-btn li a i {
	font-size: 18px;
	color: white;
}

nav.breadcrumb-nav {
	--bs-breadcrumb-divider: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z' fill='%236c757d'/%3E%3C/svg%3E");
}

.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb .breadcrumb-item a {
	color: var(--color-dgreen);
}

.breadcrumb .breadcrumb-item a:hover {
	text-decoration: underline;
}

.container-2c {
	display: flex;
	flex-direction: row;
    justify-content: space-between;
}

.container-2c.onecolumn .container-left-left {
	display: none;
}

.container-left-left {
	width: 20%;
    margin-top: 50px;
}

.container-left-right {
	width: 70%;
	margin-bottom: 80px;
}

.onecolumn .container-left-right {
	width: 100%;
}

.container-left-left ul.container-project {
	background-color: var(--color-pglay);
	border-radius: 15px;
	padding: 15px;
}

.container-left-left ul.container-project li {
	padding: 15px 0;

}

.container-left-left ul.container-project li::after {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background-image: url("../../images/menu-line.png");
	background-size: contain;
	background-repeat: repeat-x;
	background-position: center bottom;
	position: relative;
	bottom: -15px;
	left: 0;
}

.container-left-left ul.container-project li:last-child::after {
  content: none;
}

.container-left-right .info-data
 {
	display: flex;
	justify-content: space-between;
    align-items: center;
	margin-bottom: 40px;
}

.container-left-right .info-data p
 {
	background-color: #e56453;
	padding: 10px;
	color: white;
	margin-bottom: 0;
}

.container-left-right .info-data date
{
	margin: auto;
    text-align: left;
    margin-right: 0;
}

.Project-detai h2 ,
.container-left-right h2 {
	color: var(--color-dgreen);
	padding-bottom: 48px;
  padding-top: 5px;
}

.Project-detai h3 ,
.container-left-right h3 {
	color: var(--color-dgreen);
    padding-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.Project-detai h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 4px;
  background-color: var(--color-pgreen);
}

.Project-detai h4 ,
.container-left-right h4 {
	color: var(--color-dgreen);
  font-weight: 700;
	padding-bottom: 30px;
}

.Project-detai h5 ,
.container-left-right h5 {
	color: var(--color-dgreen);
  font-weight: 700;
	padding-bottom: 30px;
}

.Project-detai img {
	width: 100%;
	height: auto;
	border-radius: 15px;
	margin-bottom: 2rem;
}

.Project-detai p ,
.container-left-right p {
	margin-bottom: 40px;
}

.Project-detai a ,
.container-left-right a
 {
	color: #007095;
  text-decoration: underline;
}

.Project-detai a:hover,
.container-left-right a:hover {
  text-decoration: none;
}

.Project-detai ul ,
.container-left-right ul:not(.pagination) {
    list-style: none;
    padding-left: 0;
  }

.Project-detai ul li ,
.container-left-right ul:not(.pagination) li {
    position: relative;
    padding-left: 1.5em;
    line-height: 1.6;
  }

.Project-detai ul li::before ,
.container-left-right ul:not(.pagination) li::before
 {
    content: "●";
    color: var(--color-dgreen);
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.6;
  }

.Project-detai table ,
.container-left-right table ,
.Group-detai table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ccc;
    margin-bottom: 3rem;
  }

  .Project-detai table td ,
  .Project-detai table th ,
  .container-left-right table td ,
  .container-left-right table th ,
  .Group-detai table td ,
  .Group-detai table th {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
    width: auto;
    min-width: 20%;
  }

.Project-detai table td:first-child ,
.Project-detai table th:first-child ,
.container-left-right table td:first-child ,
.container-left-right table th:first-child ,
.Group-detai table td:first-child ,
.Group-detai table th:first-child {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
  background-color: var(--color-pglay);
  width: auto;
  }

/* 一行目のみBGつき */
.Project-detai figure.class-01 tr:first-child td ,
.Project-detai figure.class-01 tr:first-child th ,
.container-left-right figure.class-01 tr:first-child td ,
.container-left-right figure.class-01 tr:first-child th ,
.Group-detai figure.class-01 tr:first-child td ,
.Group-detai figure.class-01 tr:first-child th {
  background-color: var(--color-pglay);
  width: auto;
}

.Project-detai figure.class-01 tr:not(:first-child) td ,
.Project-detai figure.class-01 tr:not(:first-child) th ,
.container-left-right figure.class-01 tr:not(:first-child) td ,
.container-left-right figure.class-01 tr:not(:first-child) th ,
.Group-detai figure.class-01 tr:not(:first-child) td ,
.Group-detai figure.class-01 tr:not(:first-child) th {
  background-color: transparent;
  width: auto;
}

/* 一行目と１列目のみBGつき */
.Project-detai figure.class-02 tr:first-child td ,
.Project-detai figure.class-02 tr:first-child th ,
.container-left-right figure.class-02 tr:first-child td ,
.container-left-right figure.class-02 tr:first-child th ,
.Group-detai figure.class-02 tr:first-child td ,
.Group-detai figure.class-02 tr:first-child th  {
  background-color: var(--color-pglay);
  width: auto;
}

/* BGなし */
.Project-detai figure.class-03 tr td ,
.Project-detai figure.class-03 tr th ,
.container-left-right figure.class-03 tr td ,
.container-left-right figure.class-03 tr th ,
.Group-detai figure.class-03 tr td ,
.Group-detai figure.class-03 tr th {
  background-color: transparent;
  width: auto;
}

@media screen and (max-width: 1200px) {
.container-right {
	display: none;
}

.container-left-wrapper {
    margin: 0;
}

.container-2c {
	justify-content: space-around;
}

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

.container {
	width: 100%;
}

.container-right {
	display: none;
}

.container-left-wrapper {
	margin: 0;
}

nav.pagination-nav {
    margin-left: 15px;
}

.container-2c {
    flex-direction: column-reverse;
}

.container-left-left {
    width: 100%;
    margin: 0 0 30px;
}

.container-left-right {
    width: 90%;
    margin: auto auto 0;
}

.onecolumn .container-left-right {
	width: 90%;
}

.container-left-right .info-data {
	flex-direction: column;
	align-items: flex-start;
}

.container-left-left ul.container-project {
    display: none;
}

}

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

.container-right {
	display: none;
	margin-bottom: 40px;
}

.container-left-wrapper {
	margin: 0;
    padding: 0;
}

.container-left-foot {
  padding: 30px;
}

.Project-detai .is-layout-flex ,
.container-left-right .is-layout-flex
 {
  flex-direction: column;
}

}

/* ==================================================
　search-container
*/

.search-container {
  display: flex;
  align-items: center;
  background: #e2f2e5;
  border-radius: 12px;
  padding: 20px 20px;
  gap: 20px;
  margin-bottom: 80px;
}

.search-box {
  display: flex;
  flex: 1;
  background: white;
  border-radius: 9999px;
  overflow: hidden;
  padding: 4px;
  gap: 8px;
}

.search-box input[type="text"] {
  border: none;
  padding: 12px 16px;
  border-radius: 9999px;
  flex: 1;
  font-size: 16px;
  outline: none;
}

.search-box button {
	background-color: var(--color-dgreen);
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 9999px;
	font-size: 16px;
	display: flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	white-space: nowrap;
	border: 3px solid white;
	width: 20%;
	justify-content: center;
}

.search-box button i {
  color: white;
}

.detail-border {
	border-left: 1px dashed var(--color-pgreen);
    width: 25%;
    padding-left: 22px;
}

.detail-button {
	background-color: var(--color-pgreen);
	color: white;
	border: none;
	padding: 12px 24px;
	border-radius: 9999px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	white-space: nowrap;
	width: 100%;
}

@media screen and (max-width: 991.98px) {
.search-container {
  flex-direction: column;
}
.search-box {
    width: 100%;
}
}

@media screen and (max-width: 575.98px) {
.search-box input[type="text"] {
    width: 50%;
}
.search-box button {
    padding: 10px 20px;
    width: 28%;
}
}

/* ==================================================
	head
*/
.container-fluid {
    --bs-gutter-x: 0;
}

.navbar-expand-lg {
    width: 100%;
}

.navbar>.container, .navbar>.container-fluid, .navbar>.container-lg, .navbar>.container-md, .navbar>.container-sm, .navbar>.container-xl, .navbar>.container-xxl {
    flex-wrap: inherit;
    justify-content: space-between;
    flex-wrap: inherit;
}

.navbar-expand-lg .navbar-collapse {
	/* flex-basis: auto; */
    align-items: flex-end;
    flex-direction: column;
	padding-top: 20px;
}

/* ハンバーガーアイコン */
.custom-toggler .navbar-toggler-icon {
  background-image: none;
  width: 30px;
  height: 20px;
  position: relative;
  display: inline-block;
}

.custom-toggler .navbar-toggler-icon::before,
.custom-toggler .navbar-toggler-icon::after,
.custom-toggler .navbar-toggler-icon span {
  content: "";
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: var(--color-dgreen);
  transition: 0.3s ease;
}

.custom-toggler .navbar-toggler-icon {
  display: inline-block;
  position: relative;
  width: 30px;
  height: 20px;
}

.custom-toggler .navbar-toggler-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: var(--color-dgreen);
  left: 0;
  transition: 0.3s ease;
}

.custom-toggler .navbar-toggler-icon span:nth-child(1) {
  top: 0;
}
.custom-toggler .navbar-toggler-icon span:nth-child(2) {
  top: 9px;
}
.custom-toggler .navbar-toggler-icon span:nth-child(3) {
  bottom: 0;
}

/* 展開時（×に変形） */
.custom-toggler:not(.collapsed) .navbar-toggler-icon span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}
.custom-toggler:not(.collapsed) .navbar-toggler-icon span:nth-child(2) {
  opacity: 0;
}
.custom-toggler:not(.collapsed) .navbar-toggler-icon span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 9px;
}

.custom-toggler .navbar-toggler-icon::before {
  top: 0;
}
.custom-toggler .navbar-toggler-icon span {
  top: 9px;
}
.custom-toggler .navbar-toggler-icon::after {
  bottom: 0;
}

/* 展開時に×マークへ */
.custom-toggler.collapsed .navbar-toggler-icon::before {
  transform: rotate(0deg);
}
.custom-toggler.collapsed .navbar-toggler-icon::after {
  transform: rotate(0deg);
}
.custom-toggler:not(.collapsed) .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 9px;
}
.custom-toggler:not(.collapsed) .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  bottom: 9px;
}
.custom-toggler:not(.collapsed) .navbar-toggler-icon span {
  opacity: 0;
}

  /* .navbar-expand-lg .navbar-collapse.show {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: white;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    overflow-y: auto;
  } */

.navbar-nav {
	width: 100%;
	justify-content: flex-end;
	align-items: center;
	gap: 1rem;
}

.navbar-toggler {
	padding: 10px;
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: var(--bs-navbar-color);
    background-color: transparent;
    border: 1px solid var(--color-dgreen);
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
}

.navbar-toggler-icon {
    background-image: var(--bs-navbar-toggler-icon-bg) stroke='rgba(0, 0, 0, 0.5)';
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  box-shadow: none;
}

/* デフォルトの背景画像を無効にする */
.navbar-toggler-icon {
  display: inline-block;
  width: 24px;
  height: 18px;
  position: relative;
  background: none;
}

/* 各線の共通スタイル */
.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-pgreen);
  transition: 0.3s;
}

/* 上の線 */
.navbar-toggler-icon::before {
  top: 0;
}

/* 真ん中の線（span本体） */
.navbar-toggler-icon span {
  top: 8px;
}

/* 下の線 */
.navbar-toggler-icon::after {
  bottom: 0;
}


.d-flex {
    display: flex !important;
	width: 180px;
}


.furigana {
	max-width: 96px;
	height: 40px;
	border-radius: 8px;
	color: white;
	background-color: var(--color-pgreen);
	padding: 8px 20px;
	cursor : pointer;
}

.language-dropdown .nav-link {
	width: 140px;
	border: 2px solid var(--color-pgreen);
	border-radius: 8px;
	padding: 6px 16px;
	color: var(--color-pgreen);
	background-color: white;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: background-color 0.2s ease;
	justify-content: space-evenly;
}

.language-dropdown .nav-link:hover {
  background-color: #f2fef2;
  color: var(--color-pgreen);
}

.language-dropdown .nav-link span {
  color: var(--color-pgreen);
	font-weight: bold;
}

.language-dropdown .nav-link span:hover {
  text-decoration: none;
}

.language-dropdown .nav-link i {
  color: var(--color-pgreen);
}

.dropdown-toggle::after {
    content:none;
}

/* ドロップダウンメニューのスタイル調整（任意） */
.language-dropdown .dropdown-menu {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 0;
  min-width: 160px;
  transition: 0.3s;
}

.language-dropdown .dropdown-menu .dropdown-menu.show {
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

[data-stt-disabled] * {
color: #999;
}

.language-dropdown .dropdown-item {
  padding: 8px 10px;
}

.language-dropdown .dropdown-item:hover {
  background-color: #f0f0f0;
}


.modal-backdrop {
    z-index: 0;
}


.language-dropdown .modal.show .modal-dialog {
  max-width: 500px;
}

.language-dropdown .modal-content {
  background-color: #444444;
}

.language-dropdown .modal-body {
  padding: 40px 30px 15px;
  text-align: center;
}

.language-dropdown .modal-body p {
  color: #FFF;
}

.language-dropdown .modal-footer {
  border-top: 0; 
  padding: 0 30px 40px;
}

.language-dropdown .modal-footer  button.btn {
  min-width: 160px;
  padding: 10px;
  border-radius: 8px !important;
  color: white;
  background-color: var(--color-pgreen);
  --bs-btn-border-color: var(--color-pgreen);
  --bs-btn-hover-border-color: var(--color-pgreen);
  transition: 0.3s;
}


.custom-search-form {
	width: 180px;
	height: 40px;
	display: flex;
	align-items: center;
	background-color: #ededed;
	border-radius: 30px;
	padding: 2px 8px;
}

.custom-search-form input[type="search"] {
  border: none;
  background-color: transparent;
  outline: none;
  width: 100%;
  font-size: 14px;
  padding-left: 5px;
}

.custom-search-form .btn {
  background: none;
  border: none;
  padding: 0 5px 0 0;
  margin-left: auto;
  cursor: pointer;
}

.custom-search-form .btn i {
  color: var(--color-dgreen);
}

.nav-btn {
	display: flex;
	margin-top: 1rem;
	list-style: none;
	padding: 0;
	margin: 1.5rem 0 1.5rem;
}

.nav-btn li , .nav-btn-sp li {
	padding: 0 18px;
	position: relative;
	display: flex;
	align-items: center;
}

.nav-btn li:first-child {
  padding: 0 18px 0 0;
}

.nav-btn li:last-child {
  padding: 0 0 0 18px;
}

.nav-btn li + li::before {
  content: '';
  display: inline-block;
  height: 16px;
  width: 1px;
  background-color: #ccc; /* ラインの色 */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.nav-btn li span {
	display: block;
}

.nav-btn li span:hover {
	text-decoration: none;
}

.nav-btn li span i {
	display: inline-block;
	padding-right: 5px;
	color: var(--color-pgreen);
}

hr {
	margin: 4rem auto;
    width: 80%;
}

@media screen and (min-width: 992px) {

}

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


.navbar>.container, .navbar>.container-fluid, .navbar>.container-lg, .navbar>.container-md, .navbar>.container-sm, .navbar>.container-xl, .navbar>.container-xxl {
	padding: 0 5px;
}

.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    text-decoration: none;
    white-space: nowrap;
    width: 43%;
}

.navbar-brand img {
    height: auto;
}

.navbar .container-fluid .sp-nav {
	display: flex;
}

.navbar-nav {
	gap: 1.5rem;
}


/* メニュー開閉時　初期状態：非表示 */
.menu-btn {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* メニューが開いた状態（.collapse.show のとき）に表示 */
.collapse.show .menu-btn {
  opacity: 1;
  pointer-events: auto;
}

/* アニメーション中（.collapsing のとき）も非表示に */
.collapse.collapsing .menu-btn {
  opacity: 0;
  pointer-events: none;
}

.sp-nav-item-l {
	position: absolute;
	left: 7%;
	top: 150px;
	z-index: 1;
}

.sp-nav-item-r {
	position: absolute;
	right: 7%;
	top: 150px;
	z-index: 1;
}

.custom-search-form {
    width: 300px;
}

.custom-search-form input[type="search"] {
	text-align: center;
	padding-left: 23px;
}

.nav-btn-sp-flex {
	display: flex;
	justify-content: space-around;
	margin-top: 70px;
}

.nav-btn , .nav-btn-sp {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 1.5rem 0 1.5rem;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	align-items: flex-start;
}

.furigana {
    display: block;
    text-align: center;
	max-width: none;
	width: 240px;
}

.language-dropdown .nav-link {
    align-items: center;
    gap: 6px;
	justify-content: center;
	width: 240px;
}



.language-dropdown .modal.show .modal-dialog {
    max-width: 87%;
}

.language-dropdown .modal-content {
    background-color: #444444;
}



.nav-btn li + li::before {
  content: none;
}

.nav-btn li , .nav-btn-sp li {
	padding: 10px 0;
}

.nav-btn-sp li a i {
	color: var(--color-pgreen);
}

.nav-btn li:first-child {
	padding: 10px 0;
}

.nav-btn li:last-child {
	padding: 10px 0;
}

}

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

}

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

.navbar-brand {
	min-width:200px;
}

.navbar-brand img {
	width:100%;
}

.sp-nav-item-l{
	top: 140px;
}

.sp-nav-item-r{
	top: 140px;
}

.furigana {
	width: 150px;
}

.language-dropdown .nav-link {
	width: 160px;
}

.language-dropdown .modal.show .modal-dialog {
    max-width: 95%;
}

.language-dropdown .modal-dialog {
    margin: 16px;
}

}

/* ==================================================
	foot
*/
.container-left-foot footer {
	display: flex;
    width: 100%;
    max-width: 960px;
    gap: 1rem;
    flex-direction: column;
	font-size: 14px;
}

.container-left-foot footer .add {
	display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.container-left-foot footer ul {
    display: flex;
    flex-direction: column;
}

.container-left-foot footer ul li {
	list-style: none;
    font-size: 14px;
    padding: 5px 8px;
    display: inline-block;
}

.container-left-foot footer ul li a {
	text-decoration: none;
	position: relative;
	padding-left: 20px;
	display: inline-block;
}

.container-left-foot footer ul li a:hover {
	text-decoration:underline;
}

.container-left-foot footer ul li a::before {
	content: "\f105"; /* fa-angle-right */
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.container-left-foot footer .copy {
	font-size: 14px;
}

@media screen and (min-width: 992px) {

}

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

.container-left-foot footer .copy {
    font-size: 10px;
}

}

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

.container-left-foot footer .add {
	display: flex;
	justify-content: space-around;
	flex-direction: column;
}

.container-left-foot footer ul {
margin-top: 2rem;
}

.container-left-foot footer {
    font-size: 16px;
}


}

/* ==================================================
	contents
*/

.TOP-emergency {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	background-color: white;
	padding: 20px 25px;
	border-radius: 15px;
	border: 2px solid #e83828;
	margin-bottom: 20px;
	flex-direction: column;
    align-items: flex-start;
	width: 100%;
}

.TOP-emergency p {
	font-size: 18px;
	font-weight: 700;
	color: #e83828;
	margin-bottom: 0;
}

.TOP-emergency .info-emergency {
	margin-bottom: 0px;
}


.TOP-emergency .info-item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 8px;
  }

.TOP-emergency .info-item dt {
    width: 150px;
    font-weight: bold;
    color: #333;
  }

.TOP-emergency .info-item dd {
    margin: 0;
    flex: 1;
    padding-left: 10px;
  }

.TOP-emergency .info-item dd a:hover {
    text-decoration: underline;
  }

.TOP-info {
width: 100%;
}

.TOP-info ul {
	display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: clamp(10px, calc(3vw + 1rem), 40px);
    flex-wrap: wrap;
	width: 100%;
}

.TOP-info ul li {
	width: 47%;
}

.TOP-info ul li img {
    width: -webkit-fill-available;
	height: 280px;
	object-fit: cover;
	display: block;
	border-radius: 15px;
}

.TOP-info ul li span {
	display: block;
	margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
}

@media screen and (min-width: 992px) {

}

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

.TOP-emergency {
	width: 95%;
	margin: 10px auto auto;
}

.TOP-emergency .info-item {
    margin-bottom: 5px;
    flex-direction: column;
}

.TOP-emergency .info-item dd {
    padding-left: 0;
}

.TOP-info ul {
	margin-top: 30px;
	display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.TOP-info ul li {
	width: 47%;
}

}

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

.TOP-info  {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
}

.TOP-info ul {
	margin-top: 20px;
	display: flex;
	flex-direction: row;
	gap: 0.5rem;
	width: 100%;
	flex-wrap: wrap;
	justify-content: space-evenly;
}

.TOP-info ul li {
    width: 45%;
}

.TOP-info ul li img {
	height: 30vw;
	width: 100%;
}

.TOP-info ul li span {
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
}

}

.TOP-news {
	margin-bottom: 50px;
}

.TOP-menu-title {
	padding: 50px 0 30px;
}

.TOP-menu-title48 {
	padding: 40px 0 50px;
	font-size: 48px;
}

.TOP-menu-title36 {
	padding: 40px 0 45px !important;
	font-size: 36px;
	color: var(--color-glay) !important;
}

.TOP-news ul {
	display: flex;
    flex-direction: column;
	margin-bottom: 50px;
}

.TOP-news ul li {
	padding: 25px 0 22px;
    border-bottom: 1px solid #b5b5b6;
	display: flex;
	align-items: center;
}

.TOP-news ul li::after {
	content: "";
	display: inline-block;
	position: relative;
	width: 64px;
	height: 74px;
	background-image: none;
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 8px;
	vertical-align: middle;
}

.TOP-news ul li.new::after {
	background-image: url(../../images/icon-new.png);
}

.TOP-news ul li a {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.TOP-news ul li a span {
	display:inline-block;
	width: 90%;
}

.TOP-news ul li .date {
	display: flex;
    flex-direction: row;
	gap: 0 20px;
	margin-bottom: 10px;
	text-decoration:none;
}

.TOP-news ul li .date:hover {
	text-decoration:none;
}

.TOP-news ul li .date .tag-01 {
    border: 1px solid;
	color: var(--color-pblue);
	border-radius: 15px;
	font-size: 14px;
	padding: 0 25px;
	min-width: 110px;
	display: flex;
    justify-content: center;
    align-items: center;
}

.TOP-news ul li .date .tag-02 {
    border: 1px solid;
	color: var(--color-green);
	border-radius: 15px;
	font-size: 14px;
	padding: 0 25px;
	min-width: 110px;
	display: flex;
    justify-content: center;
    align-items: center;
}

.TOP-news ul li .date .tag-03 {
  border: 1px solid;
	color: var(--color-porange);
	border-radius: 15px;
	font-size: 14px;
	padding: 0 25px;
	min-width: 110px;
	display: flex;
  justify-content: center;
  align-items: center;
}

.more {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.more .btn-success {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--color-pgreen);
    --bs-btn-border-color: var(--color-pgreen);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--color-green);
    --bs-btn-hover-border-color: var(--color-green);
    --bs-btn-focus-shadow-rgb: 60, 153, 110;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--color-pgreen);
    --bs-btn-active-border-color: var(--color-green);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--color-pgreen);
    --bs-btn-disabled-border-color: var(--color-pgreen);
	padding: 10px 20px;
	width: 240px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 18px;
	height: 70px;
}

.more .btn-success img.btn-icon {
	width: 21px;
	height: 11px;
	margin-left: 8px;
	vertical-align: middle;
}

.more .btn-light {
    --bs-btn-color: var(--color-blue);
    --bs-btn-bg: #fff;
    --bs-btn-border-color: var(--color-blue);
    --bs-btn-hover-color: var(--color-blue);
    --bs-btn-hover-bg: var(--color-pglay);
    --bs-btn-hover-border-color: var(--color-blue);
    --bs-btn-focus-shadow-rgb: 60, 153, 110;
    --bs-btn-active-color: var(--color-blue);
    --bs-btn-active-bg: #fff;
    --bs-btn-active-border-color: var(--color-blue);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--color-blue);
    --bs-btn-disabled-bg: var(--color-blue);
    --bs-btn-disabled-border-color: var(--color-blue);
	padding: 10px 18px;
	max-width: 400px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 18px;
}

.more .btn-success img.btn-icon {
	width: 21px;
	height: 11px;
	margin-left: 8px;
	vertical-align: middle;
}

@media screen and (min-width: 992px) {

}

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

.TOP-news {
	margin-bottom: 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 5px;
}

.TOP-news ul {
    width: 90%;
}

.TOP-menu-title48 {
	padding: 30px 0 30px;
	font-size: 36px;
	text-align: center;
}

}

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

.more {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	gap: 1rem;
	margin-left: 5px;
	padding: 0 5px;
}

.Report-under .more {
	margin-left: 0;
}

.more .btn-light {
	width: 98%;
}

.more .btn-success {
	width: 50%;
	min-width: 200px;
}

.TOP-menu-title {
    padding: 30px 0 30px;
    text-align: center;
}

.TOP-news ul li .date {
	gap: 0 10px;
}

.TOP-news ul li::after {
	display: none;
}

.TOP-news ul li a span {
	width: 100%;
}

.TOP-news ul li.new .date::after {
  content: "";
  display: inline-block;
  position: relative;
  width: 50px;
  height: 24px;
  background-image: none;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
  vertical-align: middle;
	background-image: url(../../images/icon-new-sp.png);
}

}

.TOP-report {
	margin-bottom: 50px;
}

.TOP-report ul {
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
	gap: 2rem;
	margin-bottom: 50px;
}

.TOP-report ul li {
	display: flex;
	position: relative;
	flex: 1 1 calc(30% - 16px); /* カード3列の例 */
}

.TOP-report ul li::after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 64px;
    height: 74px;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
	right: -8px;
    top: -20px;
}

.TOP-report ul li.new::after {
	background-image: url(../../images/icon-new.png);
}

.card {
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
	overflow: hidden;
    --bs-card-border-color:transparent;
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.card-body .card-text {
	margin-top: 10px;
}

.card-body .tag {
	margin-top: 10px;
	color: var(--color-dgreen);
}

.card-link {
	display: flex;
	height: 100%;
	gap: 0.5rem;
	flex-direction: column;
}

.card-img-top {
  display: block;
  height: 190px;
  width: 100%;
  object-fit: cover;
}

.TOP-report ul li a ,
.report-card li a {
  min-width: 298px;
}

@media screen and (min-width: 992px) {

}

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

.TOP-report {
    padding: 0 5px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.TOP-report ul li a,
.report-card li a  {
  min-width: auto;
}

.card-link {
	gap: 0.2rem;
}


}

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

.TOP-report ul {
	gap: 1rem;
	justify-content: center;
	margin-top: 20px;
}

.TOP-report ul li {
	display: flex;
	position: relative;
	flex: 0 1 calc(50% - 16px);
}

.card-img-top {
    height: 30vw;
    width: 100%;
    object-fit: cover;
}

}

.TOP-yakudachi {
	margin-bottom: 50px;
	max-width: 960px;
	display: flex;
    flex-direction: column;
	align-items: flex-start;

}
.TOP-yakudachi ul {
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
	gap: 2.4rem;
	margin-bottom: 10px;
	flex: auto;
  justify-content: flex-start;
}

.TOP-yakudachi ul li {
	display: flex;
	width: 30%;
	flex-direction: column;
}

.TOP-yakudachi .card {
	box-shadow: none;
	height: auto;
}

@media screen and (min-width: 992px) {

}

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

.TOP-yakudachi {
	padding: 0 5px;
	margin-bottom: 20px;
}

}

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

.TOP-yakudachi ul {
	gap: 0.5rem;
}

}

.TOP-bnr {
	border: 1px solid #cccccc;
	display: flex;
	margin: 80px auto;
	padding: 25px;
	flex-direction: column;
}

.TOP-bnr ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap:1rem;
	margin-bottom: 0;
	flex: auto;
    justify-content: space-between;
}

.TOP-bnr ul li {
	display: flex;
	width: 23%;
	align-items: center;
}

.TOP-bnr ul li img {
	width: 100%;
    height: fit-content;
}

@media screen and (min-width: 992px) {

}

@media screen and (max-width: 991.98px) {
.TOP-bnr {
    width: 96%;
	margin: 30px auto;
}
}

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

.TOP-bnr p {
	text-align: center;
	margin-bottom: 30px;
	font-size: 18px;
}

.TOP-bnr ul {
gap: 2rem;
}


.TOP-bnr ul li {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
}

}

.TOP-link {
	max-width: 960px;
	display: flex;
	margin: 80px auto;
    justify-content: center;
}

.TOP-link ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 0;
    justify-content: space-between;
	flex: auto;
}

.TOP-link ul li {
	width: 30%;
	display: inline-flex;
	align-items: center;
	border: 1px solid #80c28c; /* 薄い緑 */
	border-radius: 8px;
	padding: 10px 16px;
	background-color: #fff;
	font-size: 16px;
	color: #222;
	gap: 8px;
	justify-content: space-around;
}

.TOP-link ul li a {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
}

.TOP-link .dot {
	width: 10px;
    height: 10px;
    margin-right: 10px;
	background-color: #2e7d32; /* 緑色 */
	border-radius: 50%;
	flex-shrink: 0;
	display: block;
}

.label {
	line-height: 1.5;
	display: block;
}

@media screen and (min-width: 992px) {

}

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

.TOP-link {
    margin: 40px auto;
	padding: 0 0.5rem;
}

.TOP-link ul {
    justify-content: space-evenly;
}

}

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

.TOP-link ul {
	flex-direction: column;
}

.TOP-link ul li {
    width: 100%;
    display: inline-flex;
    align-items: center;
    border: 1px solid #80c28c;
    border-radius: 8px;
    padding: 10px 16px;
    background-color: #fff;
    font-size: 16px;
    color: #222;
    gap: 8px;
    justify-content: space-around;
}

}

.Overview {
	margin-bottom: 80px;
}

.Overview .wrap-overview {
	display: flex;
	flex-wrap: wrap;
	gap: 3rem;
}

.Overview .wrap-overview .bg {
	background-color: var(--color-pglay);
	display: flex;
	flex-direction: column;
	padding: 30px;
	border-radius: 20px;
	width: 47%;
}

.Overview .wrap-overview .bg h3 {
	font-weight: 700;
	width: 100%;
	margin: 30px auto 20px auto;
}

.Overview .wrap-overview .bg h3 a:hover {
    text-decoration: underline;
}

.Overview .wrap-overview .bg h3::after {
	content: "";
	display: block;
	height: 6px;
	width: 100%;
	background-image: url(../../images/exchange-line.png);
	background-repeat: no-repeat;
	background-size: contain;
	margin-top: 20px;
}

.Overview .wrap-overview .bg ul {
	display: flex;
    flex-direction: column;
    gap: 1rem;
}

.Overview .wrap-overview .bg ul li {
	display: flex;
	align-items: flex-start;
}

.Overview .wrap-overview .bg ul li a:hover {
	text-decoration: underline;
}
.Overview .wrap-overview .bg ul li span {
	color: var(--color-dgreen);
	flex-shrink: 0;
	margin-right: 1em;
	line-height: 1.5;
}

.Overview .wrap-overview .bg.closed::before {
    background-image: url(../../images/badge-closed.png);
}

.Overview .wrap-overview .bg::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 280px;
    height: 48px;
    background-image: none;
    background-size: contain;
    background-repeat: no-repeat;
	margin-left: -30px;
	margin-top: -30px;
    vertical-align: middle;
}

@media screen and (min-width: 992px) {

}

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

.Overview .wrap-overview {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

}

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

}

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

.Overview .wrap-overview .bg {
    width: 90%;
}

}

.Report {
	margin-bottom: 80px;
}

.Report .report-tag {
	display: flex;
	flex-direction: row;
}

.Report .report-tag p {
	display: inline-block;
    width: 40%;
	margin-right: 1rem;
}

.Report .report-tag ul {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.Report .report-tag ul li {
	border: 1px solid;
  color: var(--color-dgreen);
  border-radius: 15px;
  font-size: 16px;
  padding: 3px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
	background-color: #fff;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.Report .report-tag ul li a {
	color: inherit;
}

.Report .report-tag ul li.active {
	background-color: var(--color-dgreen);
	color: #ffffff;
}

.Report .report-tag ul li.active span,
.Report .report-tag ul li.active a {
	color: #ffffff;
}

.wp-block-post-content p.gray,
.wp-block-post-content p.green,
.wp-block-post-content p.yellow,
p.gray,
p.green,
p.yellow {
	padding: 14px 16px;
	border: 2px solid transparent;
	margin-bottom: 2rem;
}

.wp-block-post-content p.gray,
p.gray {
	border-color: #444444;
}

.wp-block-post-content p.green,
p.green {
	border-color: var(--color-dgreen);
}

.wp-block-post-content p.yellow,
p.yellow {
	border-color: var(--color-porange);
}

.Report .report-tag ul li span {
	color: var(--color-dgreen);
	flex-shrink: 0;
	margin-right: 0.5em;
	line-height: 1.5;
}

.Report ul.report-card {
	display: flex;
    gap: 2rem;
    margin-top: 50px;
    flex-direction: row;
    flex-wrap: wrap;
	margin-bottom: 80px;
}

.Report ul.report-card li {
	display: flex;
	position: relative;
	width: 30%;
}

.Report ul.report-card li::after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 64px;
    height: 74px;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
	right: -8px;
    top: -20px;
}

.Report ul.report-card li.new::after {
	background-image: url(../../images/icon-new.png);
}

.pagination {
	display: flex;
	justify-content: center;
	gap: 16px;
	list-style: none;
	padding: 0;
	align-items: flex-end;
}

.page-item {
  display: flex;
  align-items: center;
}

.pagination .page-item:first-child.active,
.pagination .page-item:last-child.active {
	display: none;
}

.pagination .page-item.disabled span {
	font-size: 80% !important;
  margin-bottom: -5px;
}

.page-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  background-color: #9bd3a9; /* 緑色の背景 */
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
  border: none;
}

.page-link:hover {
    background-color: #9bd3a9; /* 緑色の背景 */
}

.page-link span {
  font-size: 20px;
  color: #fff;
}

.page-link span i {
  color: #fff;
}

.page-item.active .page-link {
  background-color: transparent;
  color: #333;
  font-weight: bold;
  pointer-events: none;
  font-size: 28px;
  text-decoration: none;
}

.page-item:not(.active):not(:first-child):not(:last-child) .page-link {
	background-color: transparent;
	color: #9bd3a9;
	font-weight: normal;
	font-size: 28px;
}

.page-item:not(.active):not(:first-child):not(:last-child) .page-link:hover {
  text-decoration: underline;
}

.page-item:first-child,
.page-item:last-child {
  flex-direction: column;
  text-align: center;
  gap: 4px;
}

.page-item:first-child::before {
  content: "まえへ";
  font-size: 12px;
  color: #666;
}

.page-item:last-child::before {
  content: "つぎへ";
  font-size: 12px;
  color: #666;
}

@media screen and (max-width: 767.98px) {
	.pagination {
		gap: 0;
	}

	.page-link {
		width: 30px;
		height: 32px;
		font-size: 14px;
	}

	.page-link span {
		font-size: 16px;
	}

  .page-item:first-child,
  .page-item:last-child {
      margin: 0 5px;
  }
	.page-item.active .page-link,
	.page-item:not(.active):not(:first-child):not(:last-child) .page-link {
		font-size: 20px;
	}

	.pagination .page-item.disabled span {
		font-size: 70% !important;
	}

	.page-item:first-child::before,
	.page-item:last-child::before {
		font-size: 9px;
	}
}

@media screen and (min-width: 992px) {

}

@media screen and (max-width: 991.98px) {
.Report {
    width: 92%;
}

.Report .report-tag {
	flex-direction: column;
	align-items: center;
}

.Report .report-tag ul {
    gap: 0.5rem;
}

.Report .report-tag p {
    width: 100%;
    text-align: center;
}

.Report ul.report-card {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
}

.Report ul.report-card li {
	width: 44%;
}

.Report ul.report-card li::after {
    width: 55px;
    height: 63px;
}

}

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

.Report {
	margin-bottom: 40px;
}

.Report ul.report-card {
	gap: 1rem;
	justify-content: center;
	margin-top: 20px;
}

.Report ul.report-card li {
	display: flex;
	position: relative;
	flex: 0 1 calc(50% - 16px);
}

}


.Group {
	margin-bottom: 80px;
}

.group-card {
  list-style: none;
  padding: 0;
  margin: 0;
}

.group-card li {
  background: var(--color-pglay);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 60px;
}

.group-header {
	display: flex;
	align-items: center;
	font-weight: bold;
	color: #2f8a4d;
	margin-bottom: 7px;
	position: relative;
	top: -34px;
	left: 15px;
}

.group-header i {
  color: #2f8a4d;
}

.group-header .icon {
  font-size: 24px;
  margin-right: 15px;
}

.group-header h3 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
}

.group-header h3:hover {
  text-decoration: underline;
}

.group-body {
  padding: 0 20px 20px;
  font-size: 16px;
  line-height: 1.7;
}

.area-form {
  font-family: sans-serif;
  max-width: 700px;
  margin: 0 auto;
}

.area-form h3 {
  color: var(--color-dgreen);
  font-weight: 700;
  margin-bottom: 10px;
}

.area-group {
  margin-bottom: 16px;
  background-color: var(--color-pglay);
  padding: 12px;
  border-radius: 4px;
}

.area-label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  border-left: 4px solid var(--color-dgreen);
  padding-left: 8px;
}

.area-sub {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  padding-left: 12px;
}

.area-sub label {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.area-submit {
  text-align: center;
  margin-top: 24px;
}

.area-submit button {
  background-color: var(--color-dgreen);
  color: white;
  border: none;
  padding: 12px 32px;
  font-size: 16px;
  border-radius: 15px;
  cursor: pointer;
}

label[for="activity-select"] {
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
  color: var(--color-dgreen);
}

#activity-select {
  width: 100%;
  max-width: 600px;
  padding: 8px;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

@media screen and (min-width: 992px) {

}

@media screen and (max-width: 991.98px) {
.Group {
	width: 92%;
}
.search-container {
  flex-direction: column;
}
.search-box {
    width: 100%;
}
.detail-border {
	border-left: 0;
	width: 100%;
	padding-left: 0;
}
.group-header {
    align-items: flex-start;
    margin-bottom: 0;
}
.group-header .icon {
    padding-top: 3px;
}
.group-card li {
    padding: 15px;
    border-radius: 15px;
}
}

@media screen and (max-width: 767.98px) {
.Group {
	margin-bottom: 40px;
}

.group-header {
	top: -30px;
	left: 10px;
}
}

@media screen and (max-width: 575.98px) {
.search-box input[type="text"] {
    width: 50%;
}
.search-box button {
    padding: 10px 20px;
    width: 28%;
}
}

.Classroom {
	margin-bottom: 80px;
}

.classroom-card {
  list-style: none;
  padding: 0;
  margin: 0;
}

.classroom-card li {
  background: var(--color-pglay);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 80px;
}

.classroom-header {
	display: flex;
	font-weight: bold;
	color: #2f8a4d;
	margin-bottom: 7px;
	position: relative;
	top: -38px;
	left: 15px;
	justify-content: space-between;
	align-items: flex-start;
}

.classroom-header date {
	margin-right: 15px;
	color: #2f8a4d;
	min-width: 200px;
    text-align: right;
}

.classroom-header h3 {
  margin: 0 30px 0 0;
  font-size: 24px;
  font-weight: bold;
}

.classroom-body {
	margin-top: -10px;

}

.classroom-body .info-list {
    margin: 0px 0px 25px;;
    padding: 0 15px;
  }

.classroom-body .info-item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }

.classroom-body .info-item dt {
    width: 150px;
    font-weight: bold;
    color: #333;
  }

.classroom-body .info-item dd {
    margin: 0;
    flex: 1;
    padding-left: 10px;
    min-width: 0;
  }

.classroom-body .info-item dd a {
    display: inline;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-all;
    vertical-align: top;
  }

.download-section {
	display: flex;
	align-items: center;
	gap: 16px;
	font-family: sans-serif;
	flex-wrap: wrap;
	/* background-color: var(--color-pglay);
	padding: 20px;*/
	border-radius: 15px;
	margin-bottom: 20px;
}

.download-section p {
	font-weight: bold;
	margin: 0;
}

.download-buttons {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.download-button {
	display: flex;
	align-items: center;
	gap: 6px;
	background-color: #e66b6b;
	color: white;
	padding: 8px 14px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: bold;
	transition: background-color 0.3s;
}

.download-button i {
	color: white;
}

.download-button:hover {
	background-color: #d15555;
}

.download-button i {
	font-size: 14px;
}

@media screen and (max-width: 991.98px) {
.Classroom {
	width: 92%;
}
.classroom-header {
    top: -34px;
    left: 10px;
    flex-direction: column;
    align-items: flex-start;
}
.classroom-header h3 {
    margin-right: 0;
}
.classroom-header date {
    text-align: left;
}
.classroom-body .info-item {
    margin-bottom: 20px;
    flex-direction: column;
}
.classroom-body .info-item dd {
    padding-left: 0;
}
}

@media screen and (max-width: 767.98px) {
.Classroom {
	margin-bottom: 40px;
}

.classroom-header {
    left: 0;
}
}

@media screen and (max-width: 575.98px) {
.classroom-body .info-list {
    padding: 0;
}

}

.Report-under {
	margin-bottom: 80px;
	background-color: var(--color-pglay);
	border-radius: 15px;
	padding: 30px 30px;
  margin-top: 50px;
}

.Report-under h3 {
	margin-bottom: -20px;
	position: relative;
	top: -45px;
	font-weight: 700;
	font-size: 28px;
}

.report-carousel-wrapper {
position: relative;
overflow: hidden;
padding: 0 20px;
}

.Report-under ul.report-card {
	display: flex;
    transition: transform 0.3s ease;
    gap: 2rem;
	padding: 5px;
}

.Report-under ul.report-card li {
	flex: 0 0 200px;
    list-style: none;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
}

.carousel-button {
	top: 50%;
	transform: translateY(-50%);
	background: var(--color-dgreen);
	border: 0;
	border-radius: 50px;
	padding: 8px 16px;
	cursor: pointer;
	z-index: 20;
	color: white;
	position: absolute;
}

.carousel-button i {
	color: white;
}

.carousel-button.prev {
	left: -5px;
}

.carousel-button.next {
	right: -5px;
}

.Report-under ul.report-card li::after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 64px;
    height: 74px;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
	right: -8px;
    top: -20px;
}

.Report-under ul.report-card li.new::after {
	background-image: url(../../images/icon-new.png);
}

@media screen and (min-width: 992px) {

}

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

}

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

.Report-under {
	margin-bottom: 40px;
  margin-top: 0;
}

.Report-under ul.report-card {
    gap: 1rem;
}

.report-carousel-wrapper {
  margin-bottom: 20px;
}

.Report-under ul.report-card {
  flex-wrap: nowrap;
  width: max-content;
  gap: 1rem;
}

.Report-under ul.report-card li {
	flex: 0 0 200px;
}

}

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

.Report-under ul.report-card li {
	flex: 0 0 200px;
  list-style: none;
}

.Report-under ul.report-card li time {
	font-size: 12px;
}
.Report-under ul.report-card li p.card-text {
	font-size: 14px;
}
.Report-under ul.report-card li .tag {
	font-size: 14px;
}

.carousel-button {
  display: none;
}
.report-carousel-wrapper {
  overflow-x: auto;
  margin-bottom: 20px;
  padding: 0;
}
.report-carousel-wrapper::-webkit-scrollbar {
  height: 6px;
}

.report-carousel-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.report-carousel-wrapper::-webkit-scrollbar-thumb {
  background-color: rgba(74, 177, 43, 0.2);
  border-radius: 3px;
}
}
.category-box {
  width: 100%;
  font-family: sans-serif;
}

.back-btn {
  display: block;
  text-align: center;
  background: #f5f5f5;
  border-radius: 24px;
  padding: 10px 0;
  font-weight: bold;
  text-decoration: none;
  color: #000;
  margin-bottom: 50px;
}

.category-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list .cat {
  display: flex;
  align-items: center;
  border: 2px solid;
  border-radius: 24px;
  padding: 6px 12px;
  margin-bottom: 10px;
  font-size: 14px;
  text-decoration: none;
  font-weight: bold;
  color: inherit;
}

.category-list .cat-news {
  border-color: var(--color-blue);
  color:  var(--color-blue);
}

.category-list .cat-event {
  border-color: var(--color-green);
  color:  var(--color-green);
}

.category-list .cat-seminar {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.category-list .cat-tag {
  border-color: var(--color-dgreen);
  color: var(--color-dgreen);
}

.category-list .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  min-width: 8px;
}

.category-list .blue { background-color:  var(--color-blue); }
.category-list .green { background-color:  var(--color-green); }
.category-list .orange { background-color: var(--color-orange); }
.category-list .dgreen { background-color: var(--color-dgreen); }


.container-left-right .news-card {
  list-style: none;
  padding: 0;
  margin: 0;
  margin: 80px 0 0;
}

.container-left-right .news-card li {
  background: var(--color-pglay);
  padding: 20px;
  border-radius: 12px;
}

.container-left-right ul.news-card li::before {
    content: "";
}

.container-left-right .news-header {
	display: flex;
	font-weight: bold;
	color: #2f8a4d;
	margin-bottom: 7px;
	position: relative;
	top: -38px;
	left: 15px;
	justify-content: space-between;
	align-items: flex-start;
}
.container-left-right .news-header h3 {
  margin: 0;
  font-size: 28px;
  font-weight: bold;
}

.container-left-right .news-header h3::after {
    content: "";
    position: unset;
    background-color: transparent;
}

.container-left-right .news-body {
	margin-top: -10px;

}

.container-left-right .news-body .info-list {
    margin: 0px 0px 25px;;
    padding: 0 15px;
  }

.container-left-right .news-body .info-item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }

.container-left-right .news-body .info-item dt {
    width: 150px;
    font-weight: bold;
    color: #333;
  }

.container-left-right .news-body .info-item dd {
    margin: 0;
    flex: 1;
    padding-left: 10px;
  }

.container-left-right .news-body .info-item dd a:hover {
    text-decoration: underline;
  }

.container-left-right .news-body dd.news-btn {
	display: flex;
	justify-content: center;
	margin-top: 50px;
  }

.container-left-right .news-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-pgreen);
  color: #fff;
  padding: 12px 24px;
  font-weight: bold;
  font-size: 18px;
  border-radius: 999px;
  text-decoration: none;
  transition: 0.3s;
}

.container-left-right .news-contact-btn i {
  font-size: 18px;
    color: #fff;
}

.container-left-right .news-contact-btn:hover {
  background-color: #77b983;
}

.News-list ul.News-list-ul {
	display: flex;
    flex-direction: column;
	margin-bottom: 50px;
}

.News-list ul.News-list-ul li {
	padding: 25px 0 22px;
    border-bottom: 1px solid #b5b5b6;
	display: flex;
	align-items: center;
}

.News-list ul.News-list-ul li::after {
	content: "";
	display: inline-block;
	position: relative;
	width: 64px;
	height: 74px;
	background-image: none;
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 8px;
	vertical-align: middle;
}

.News-list ul.News-list-ul li.new::after {
	background-image: url(../../images/icon-new.png);
}

.News-list ul.News-list-ul li a {
	display: flex;
	flex-direction: column;
	width: 100%;
  text-decoration: none;
}

.News-list ul.News-list-ul li a span {
	display:inline-block;
	width: 90%;
}

.News-list ul.News-list-ul li .date {
	display: flex;
    flex-direction: row;
	gap: 0 20px;
	margin-bottom: 10px;
	text-decoration:none;
}

.News-list ul.News-list-ul li .date:hover {
	text-decoration:none;
}

.News-list ul.News-list-ul li .date .tag-01 {
    border: 1px solid;
	color: var(--color-pblue);
	border-radius: 15px;
	font-size: 14px;
	padding: 0 25px;
	min-width: 120px;
	display: flex;
    justify-content: center;
    align-items: center;
}

.News-list ul.News-list-ul li .date .tag-02 {
    border: 1px solid;
	color: var(--color-green);
	border-radius: 15px;
	font-size: 14px;
	padding: 0 25px;
	min-width: 120px;
	display: flex;
    justify-content: center;
    align-items: center;
}

.News-list ul.News-list-ul li .date .tag-03 {
    border: 1px solid;
	color: var(--color-porange);
	border-radius: 15px;
	font-size: 14px;
	padding: 0 25px;
	min-width: 120px;
	display: flex;
    justify-content: center;
    align-items: center;
}

.News-list ul.News-list-ul li::before {
    content: "";
}

@media screen and (min-width: 992px) {

}

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

.category-title.no-display {
  display: none;
}

.category-list.no-display {
    display: none;
}

  .category-box {
  width: 90%;
  margin: 50px auto 0;
}
.category-list .cat {
    width: 100%;
	justify-content: center;
}
}

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

.container-left-right .news-body .info-item {
    flex-direction: column;
}

.container-left-right .news-body .info-item dd {
    padding-left: 0;
}

.News-list ul.News-list-ul li::after {
    display: none;
}

.News-list ul li.new .date::after {
  content: "";
  display: inline-block;
  position: relative;
  width: 50px;
  height: 24px;
  background-image: none;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
  vertical-align: middle;
  background-image: url(../../images/icon-new-sp.png);
}

.News-list ul.News-list-ul li a span {
    width: 100%;
}


}

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

.container-left-right .news-card li {
  padding: 15px;
}
}
.Group-detai .TOP-menu-title36 {
	padding: 40px 0 15px !important;
}

.Group-detai h3 {
	color: var(--color-dgreen);
    padding-bottom: 15px;
    font-weight: 700;
}

.Group-detai p {
	padding-bottom: 2rem;
}

.Group-detai .info-data span {
  display: block;
}

.Group-detai .news-card {
  list-style: none;
  padding: 0;
  margin: 0;
  margin: 60px 0;
}

.Group-detai .news-card p {
	padding-bottom: 0;
	margin: -20px 25px 25px;
}

.Group-detai .news-card li {
  background: var(--color-pglay);
  padding: 20px;
  border-radius: 12px;
}

.Group-detai .news-body .info-list {
    margin: 25px;;
    padding: 0;
  }

.Group-detai .news-body .info-item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }

.Group-detai .news-body .info-item p {
  margin: 0;
}

.Group-detai .news-body .info-list-column {
	margin: -20px 25px 25px;
    padding: 0;
  }

.Group-detai .news-body .m0 {
	margin: -20px 25px 25px;
}

  .Group-detai .news-body .info-item-column {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 15px;
  }

.Group-detai .news-body .info-item dt {
    width: 150px;
    font-weight: bold;
    color: #333;
  }

.Group-detai .news-body .info-item dd {
    margin: 0;
    flex: 1;
    padding-left: 10px;
    min-width: 0;
  }

  .Group-detai .news-body .info-item dd a:hover {
    text-decoration: underline;
  }

.Group-detai .news-body .info-item dd a {
    display: inline;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

.Group-detai table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ccc;
    margin-bottom: 4.5rem;
  }

.Group-detai table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
  }

.Group-detai table td:first-child {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
	background-color: var(--color-pglay);
	width: 35%;
  }

@media screen and (min-width: 992px) {

}

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

}

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

}

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

.Group-detai .news-card li {
  padding: 15px;
}
.Group-detai .news-body .info-item {
    flex-direction: column;
}

.Group-detai .news-body .info-item dd {
    padding-left: 0;
}
}

/* =============================
   CF7 基本スタイル（.input_area配下のみ）
   ============================= */
.input_area {
  --c-bg: #fff;
  --c-text: var(--color-glay);
  --c-muted:  var(--color-glay);
  --c-accent: var(--color-dgreen);
  --c-accent-weak: rgba(72, 153, 91, 0.22);
  --c-border: #c2c2c2;
  --c-border-strong: var(--color-pgreen);
  --c-danger: var(--color-red);
  --c-success: var(--color-dgreen);
  --radius: 10px;
  --gap: 25px;
  --gap-lg: 24px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  font-family: var(--font);
  color: var(--c-text);
}

/* 上部説明文 */
.input_area .contact-sub-title {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c-muted);
}
.input_area .caution {
  margin: 0 0 14px;
  color: var(--c-muted);
}

.input_area .caution2 {
  margin: 0 0 14px;
  color: #ff0000;
}

.input_area .caution::before,
.input_area .caution2::before {
  content: "※ ";
}

/* 各項目の段落余白・ラベル */
.input_area > div > p,
.input_area .content-box-list > p,
.input_area .content-box-radio > p {
  margin: 0 0 var(--gap);
}

.input_area .content-box > p {
  margin: 20px 0 0;
}

.input_area label {
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.3;
  font-size: 18px;
}

.input_area label.required::after {
  content: "必須";
  display: inline-block;
  margin-left: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--c-danger);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

/* ラベル内補足（メール確認など） */
.input_area label span {
  display: block;
  margin-top: 4px;
  font-weight: 400;
  font-size: 16px;
}

/* テキスト系フォーム要素 */
.input_area input[type="text"],
.input_area input[type="email"],
.input_area input[type="tel"],
.input_area input[type="url"],
.input_area textarea,
.input_area select {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
  outline: none;
  border: 1px solid var(--c-border);
}

.input_area select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.input_area .wpcf7-form-control-wrap:has(> select) {
  position: relative;
}

.input_area .wpcf7-form-control-wrap:has(> select)::after {
  content: "";
  position: absolute;
  pointer-events: none;
  top: calc(50% - 4px);
  right: 18px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--c-accent);
}

.input_area p span.info {
  margin-top: -15px;
  display: block;
}

.input_area input[type="file"] {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
  outline: none;
}

.input_area textarea {
  min-height: 160px;
  resize: vertical;
}

/* :focus 視認性 */
.input_area input:focus,
.input_area textarea:focus,
.input_area select:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px var(--c-accent-weak);
}

/* 無効状態 */
.input_area input[disabled],
.input_area textarea[disabled] {
  background: var(--color-pglay);
  color: #98a298;
  cursor: not-allowed;
}

/* チェックボックス・ラジオ（アクセント色で統一） */
.input_area input[type="checkbox"],
.input_area input[type="radio"] {
  accent-color: var(--c-accent); /* 近代ブラウザ */
}

/* チェックボックスの並び（複数選択） */
.input_area .content-box-list .wpcf7-form-control.wpcf7-checkbox,
.input_area .content-box-radio .wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.input_area .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  margin: 0; /* gapで管理 */
}

.input_area .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}

.input_area .wpcf7-list-item input {
  margin: 0;
  margin-top: 5px;
}

/* アップロード（file）最小高さ合わせ */
.input_area input[type="file"] {
  padding: 10px;
}

/* ボトムの同意チェック */
.input_area .bottom-acceptance-wrapper {
  margin-top: var(--gap-lg);
  padding: 5px 10px 9px;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  background-color: var(--color-pglay);
}

.input_area .bottom-acceptance p {
  margin: 0;
}

/* 送信（確認）ボタン */
.input_area .controls {
  margin-top: 20px;
  margin-bottom: 20px;
}

.input_area .confirm_button {
  display: inline-block;
  min-width: 200px;
  padding: 12px 18px;
  border: 1px solid var(--color-pgreen);
  border-radius: 999px;
  background: var(--color-pgreen);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, opacity .15s ease, transform .02s ease-in-out;
}
.input_area .confirm_button:hover ,
 .input_area .confirm_button[disabled]:hover {
  background: var(--color-dgreen);
  border-color: var(--color-dgreen);
}
.input_area .confirm_button:active { transform: translateY(1px); }
.input_area .confirm_button[disabled] {
  background: var(--color-pgreen);
  border-color: var(--color-pgreen);
  color: #fff;
  cursor: not-allowed;
  opacity: .8;
}

/* リンク・ポリシー文 */
.input_area .policy-info,
.input_area .recaptcha-info {
  margin-top: 12px;
  color: var(--c-muted);
  margin-bottom: 20px;
}
.input_area .policy-info a,
.input_area .recaptcha-info a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.input_area .policy-info a:hover,
.input_area .recaptcha-info a:hover {
  text-decoration-thickness: 2px;
}

/* =============================
   CF7 バリデーション状態
   ============================= */
/* 入力エラーの枠色（CF7 が付与） */
.input_area .wpcf7-not-valid {
  border-color: var(--c-danger) !important;
  background: #fbeceb;
}

/* エラーメッセージ（各フィールドの下に出る） */
.input_area .wpcf7-not-valid-tip {
  margin-top: 6px;
  display: block;
  color: var(--c-danger);
}

/* 送信後の全体メッセージ */
.input_area .wpcf7 form .wpcf7-response-output,
.input_area .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  background: #fff;
}

.input_area .wpcf7 form.invalid .wpcf7-response-output {
  border-color: var(--c-danger);
  background: #fbeceb;
  color: var(--c-danger);
}
.input_area .wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--c-success);
  background: #edf7f0;
  color: var(--c-success);
}

/* =============================
   CF7 確認画面スタイル
============================= */
.confirm_area {
  --c-bg: #fff;
  --c-text: var(--color-glay);
  --c-muted: #5f6d61;
  --c-accent: var(--color-dgreen);
  --c-border: #cdd8cd;
  --gap: 16px;
  --gap-lg: 24px;
  --radius: 10px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  max-width: 840px;
  margin: 0 auto;
  font-family: var(--font);
  color: var(--c-text);
}

.confirm_area .contact-sub-title {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.7;
}

.confirm_area .info {
  margin: 0 0 var(--gap-lg);
  color: #ff0000;
}

.confirm_area > div {
  margin-bottom: var(--gap);
}

.confirm_area > div:last-child {
  margin-bottom: 0;
}

.confirm_area .content-box,
.confirm_area > div:not(.controls):not(.bottom-acceptance) {
  border-radius: var(--radius);
}

.confirm_area .content-box > p:first-child,
.confirm_area > div:not(.controls):not(.bottom-acceptance) > p:first-child {
  margin-bottom: 8px;
}

.confirm_area label {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.3;
}

.confirm_area label span {
  display: block;
  margin-top: 4px;
  font-weight: 400;
  color: var(--c-muted);
}

.confirm_area label.required::after {
  content: "必須";
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--color-red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.confirm_area p[class^="confirm_"] {
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--color-pglay);
  font-size: .98rem;
  line-height: 1.6;
}

.confirm_area .confirm_add-file {
  word-break: break-word;
}

.confirm_area .bottom-acceptance {
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--color-pglay);
}

.confirm_area .bottom-acceptance .ac {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.confirm_area .bottom-acceptance p {
  margin: 0;
  color: var(--c-text);
}

.confirm_area .bottom-acceptance input {
  margin-top: 4px;
}

.confirm_area .controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--gap-lg);
}

.confirm_area .back_button,
.confirm_area .submit_button_wrapper .wpcf7-submit {
  display: inline-block;
  min-width: 180px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease, opacity .15s ease;
}

.confirm_area .back_button {
  border: 1px solid var(--c-border);
  background: var(--c-bg);
  color: var(--c-text);
}

.confirm_area .back_button:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  background: var(--color-pglay);
}

.confirm_area .submit_button_wrapper {
  position: relative;
}

.confirm_area .submit_button_wrapper .wpcf7-submit {
  border: 1px solid var(--color-green);
  background: var(--color-green);
  color: #fff;
}

.confirm_area .submit_button_wrapper .wpcf7-submit:hover {
  border-color: var(--color-dgreen);
  background: var(--color-dgreen);
}

.confirm_area .submit_button_wrapper .wpcf7-submit[disabled] {
  border-color: var(--color-pgreen);
  background: var(--color-pgreen);
  color: #fff;
  cursor: not-allowed;
  opacity: .8;
}
.confirm_area .submit_button_wrapper .wpcf7-submit[disabled]:hover {
  border-color: var(--color-dgreen);
  background: var(--color-dgreen);
  color: #fff;
  opacity: .8;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: unset;
    border: 0px;
    margin: 2em 0em;
    padding: 0;
}

@media screen and (min-width: 992px) {
  .input_area {
    max-width: 840px;
    margin: 0 auto;
  }
  .confirm_area {
    padding: 0;
  }
}

@media screen and (max-width: 991.98px) {
  .input_area label {
    font-size: 0.98rem;
  }
  .confirm_area label {
    font-size: 0.98rem;
  }
}

@media screen and (max-width: 767.98px) {
  .input_area .confirm_button {
    width: 100%;
    min-width: 0;
  }
  .input_area {
    padding: 0 12px;
  }
  .confirm_area {
    padding: 0 12px;
  }
  .confirm_area .controls {
    flex-direction: column;
    align-items: stretch;
  }
  .confirm_area .back_button,
  .confirm_area .submit_button_wrapper .wpcf7-submit {
    width: 100%;
    min-width: 0;
    text-align: center;
  }
  /* .confirm_area .bottom-acceptance .ac {
    flex-direction: column;
  } */
}

@media screen and (max-width: 575.98px) {
  .input_area label {
    font-size: 0.9rem;
  }
  .input_area input,
  .input_area textarea {
    font-size: 0.95rem;
  }
  .input_area .confirm_button {
    font-size: 0.95rem;
    padding: 10px 14px;
  }
  .confirm_area p[class^="confirm_"] {
    font-size: 0.92rem;
  }
  .confirm_area .back_button,
  .confirm_area .submit_button_wrapper .wpcf7-submit {
    font-size: 0.95rem;
    padding: 10px 14px;
  }
}










@media screen and (min-width: 992px) {

}

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

}

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

}

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


}
