@font-face {
  font-family: 'Roboto';
  font-display: auto;
  font-style: normal;
  font-weight: 300;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/roboto/v50/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuaabVmUiAo.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Roboto';
  font-display: auto;
  font-style: normal;
  font-weight: 500;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/roboto/v50/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWub2bVmUiAo.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

html, body, div, button, p, img, h1, h2, h3, pre
{
	margin  : 0;
	border  : 0;
	padding: 0;
}

html, body {
  height: 100%;
}

html
{
	background              : #c3d4d9;
	-webkit-font-smoothing  : antialiased;
	-moz-osx-font-smoothing : grayscale;
}

body
{
	position    : relative;
	font-family : Roboto, sans-serif;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
.content {
  flex: 1 0 auto;
}

.header
{

	width      : 100%;
	background : #97a8ac;
}
.logo
{
	font-weight		: 500;
	float 			: left;
	font-size		: 32px;
	margin			: 19px 0 19px 20px;
}

.logo a {
    color			: #ffffff;
    text-decoration	: none;
    font-weight		: 500;
    display			: inline-block; 
}

h1
{
	font-weight		: 300;
	color			: #4f595b;
	font-size		: 26px;
	margin			: 10px 20px;
}
h2
{
	font-weight		: 500;
	color			: #4f595b;
	font-size   	: 18px;
	margin      	: 0 10px 10px;
	text-align  	: center;
}
h3
{
	font-weight		: 500;
	font-size		: 28px;
	color			: #333;
	text-align		: center;
	margin			: 10px 20px;
}
.moretxt
{
	font-weight		: 300;
	color			: #333;
	font-weight: 600;
	font-size: 24px;
	margin: 0 10px 10px;
}
@media screen and (max-width : 450px) {
  .header button
  {
	    position: absolute !important;
		width: 1px !important;
		height: 1px !important;
		padding: 0 !important;
		margin: -1px !important;
		overflow: hidden !important;
		clip: rect(0,0,0,0) !important;
		white-space: nowrap !important;
		border: 0 !important;
  }
}

@media screen and (max-width : 600px)
{
	.logo
	{
		font-size	: 28px;
	}
	h1
	{
		font-size	: 20px;
	}

}

.header button
{
	float         : right;
	padding       : 8px 16px 8px 16px;
	margin        : 20px 20px 0 0;
	color         : #ffffff;
	text-shadow   : 0 1px 0 #92a6ab;
	background    : transparent;
	font-size     : 14px;
	font-weight   : 500;
	cursor        : pointer;
	border-radius : 15px;
	outline       : 0;
	border        : 1px solid #e0ebec;
}

.header button:active
{
	background : #c3d4d9;
}

.button {
  cursor: pointer;
  position: relative;
  padding: 10px 24px;
  font-size: 22px;
  color: rgb(51, 51, 51);
  border: 2px solid rgb(151, 168, 172);
  margin: 10px 0 20px;
  border-radius: 26px;
  background-color: transparent;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  overflow: hidden;
}

.button::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 60px;
  height: 30px;
  border-radius: inherit;
  scale: 0;
  z-index: -1;
  background-color: rgb(151, 168, 172);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.button:hover::before {
  scale: 3;
}

.button:hover {
  color: #fff;
  box-shadow: 0 0px 20px rgba(134, 134, 134, 0.4);
}

.button:active {
  scale: 1;
}


@media screen and (max-width : 600px)
{
	.header button
	{
		padding   : 4px 12px 4px 12px;
		margin    : 24px 20px 0 0;
		color     : #ffffff;
		font-size : 13px;
	}
}

.columns
{
    position: relative;
    width: 100%;
    margin-bottom: 30px;
	z-index: 1;
}

.columns .item
{
	display: block;
	opacity: 0;
	transition: opacity 30ms;
	font-weight   : 300;
	border-radius : 3px;
	overflow      : hidden;
	background    : #ffffff;
	font-size     : 13px;
	color         : #212121;
}


.columns .item p
{
	padding : 10px;
}

.columns .item img
{
	width	: 100%;
	height	: auto;
	display	: block;
}
.footer {
	position: relative;
	bottom: auto;
	left: 0;
	width: 100%;
	background-color: #97a8ac;
	padding: 20px 0;
	z-index: 3;
	box-sizing: border-box;
	flex-shrink: 0;
}


.footer-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-family: Roboto, sans-serif;
	color: #ffffff;
	text-shadow: 0 1px 0 #92a6ab;
}

.site-name {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 6px;
}

.footer-links {
	display: flex;
	gap: 20px;
	font-size: 13px;
}

.footer-links a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
}

.footer-links a:hover {
	text-decoration: underline;
}
/*page navi*/
.page_navi {
	margin: 0 0 20px;
	text-align: center;
	z-index: 2;
	position: inherit;
}
.apc {
	font-size: 18px;
	padding: 5px 9px;
	margin: 1px;
	font-weight: bold;
	color: #515151;
	border: 1px solid #687477;
	background-color: #fff;
}

.ap a, .apfar a {
	font-size: 18px;
	color: #687477;
	border: 1px solid #687477;
	padding: 5px 9px;
	margin: 1px;
	text-decoration: none;
}

.ap a:hover, .apfar a:hover {
	background-color: #fff;
	color: #000;
}

.ellipsis {
	font-size: 18px;
	color: #9a9a9a;
	padding: 5px;
	user-select: none;
}

/*page navi end*/
/* contact form  */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.form-table {
  background: #ffffff;
  border-radius: 3px;
  padding: 14px;
  box-sizing: border-box;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  font-family: Roboto, sans-serif;
  font-weight: 300;
  color: #212121;
  margin: 70px;
}

.form-item {
  margin-bottom: 12px;
}

.form-table input[type="text"],
.form-table input[type="email"],
.form-table textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid #e0ebec;
  border-radius: 6px;
  font-size: 14px;
  color: #212121;
  background: #fbfdfe;
  transition: box-shadow 160ms ease, border-color 160ms ease;
  outline: none;
  display: block;
}

.form-table textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.4;
}

.form-table ::placeholder {
  color: #9a9a9a;
  opacity: 1;
}

.form-table input:focus,
.form-table textarea:focus {
  border-color: #7fa4b0;
  box-shadow: 0 0 0 4px rgba(151,168,172,0.06);
}

.form-actions {
  text-align: right;
}
.form-table input[type="submit"] {
  background: #97a8ac;
  color: #ffffff;
  border: 1px solid rgba(224,235,236,0.1);
  padding: 8px 16px;
  font-weight: 500;
  border-radius: 15px;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
  transition: transform 120ms ease, box-shadow 120ms ease, opacity 120ms ease;
}

.form-table input[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.form-table input[type="submit"]:active {
  transform: translateY(0);
  opacity: 0.95;
}

@media screen and (max-width: 600px) {
  .form-table { padding: 12px; }
  .form-table input[type="submit"] { width: 100%; border-radius: 12px; }
  .form-actions { text-align: center; }
}
/* contact form end */
/*exo*/
.side-ban{
	text-align: center;
	height: 280px;
}
.h_ban
{
	display: inline;
	width: 300px;
	height: 250px;
	margin: 8px;
	zoom: 1;
    *display: inline;
}
@media screen and (max-width: 980px) {
.hide {display:none !important;}
}
/*exo end*/
/* thumb top */

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px; 
    margin: 0 auto;
}

.image-item {
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: white;
}

.image-item a {
    display: block;
}

.image-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.image-title {
    padding: 10px;
    font-size: 14px;
    text-align: center;
    color: #000;
    width: 100%;
}


/* end thumb top */