@charset "UTF-8";
/*about*/


/*page-header　他の指定はstyle.css*/
.page-header {
  background-image: url("../img/bg_pagetitle.jpg");
  background-size: cover;
  background-position: center bottom;
}


/*----- greeting -----*/
#greeting {
  padding: 40px 0;
}
.greeting__inner {
}

.greeting__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* テキストエリア */
.greeting__body {
  display: flex;
  flex-direction: column;
}
.greeting__signature {
  text-align: right;
  margin-top: 32px;
}

/* 画像 */
.greeting__image-wrapper {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
/*  background-color: var(--base4-color);
  aspect-ratio: 3 / 4;*/
}
.greeting__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-fit-position: top;/* トリミングの基準点を「上」 */
  display: block;
}

@media (min-width: 768px) {
	#greeting {
	  padding: 40px 0 80px;
	}
  .greeting__content {
    flex-direction: row;
    gap: 60px;
	align-items: flex-start;
  }
  .greeting__body {
    flex: 1;
  }
  .greeting__signature {
    margin-top: auto; /* コンテンツ高さが画像より大きい/小さい場合でも下揃え気味 */
  }
  .greeting__image-wrapper {
    flex: 0 0 320px; /* 画像エリアを固定幅 */
    aspect-ratio: 3 / 4;
  }
}
@media (max-width: 767px) {
	.greeting__image-wrapper {
		margin-left: 40px;
		margin-right: 40px;
	}
}


/*------ outline ------*/
#outline {
	background: linear-gradient(90deg, #C4EEFA 0%, #CBF0FB 11.87%, #F1FBFE 80%);
	padding-top: 40px;
	padding-bottom: 200px;
}

.outline__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* テキストエリア */
.outline__body {
  display: flex;
  flex-direction: column;
}

.outline__image-wrapper {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--base4-color);
  aspect-ratio: 3 / 2;
}
.outline__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 900px) {/*768px*/
	#outline {
		padding-top: 80px;
	}
  .outline__content {
    flex-direction: row;
    gap: 60px;
  }
  .outline__body {
    flex: 1;
  }
  .outline__image-wrapper {
    flex: 0 0 480px;
    aspect-ratio: 16 / 9;
  }
}

#outline .container {
	position: relative;
}
.outline__figure {
	position: absolute;
  top: 600px;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
	background: var(--white-color);
	border-radius: 12px;
}
.outline__figure__image {
	max-width: 780px;
}
@media (max-width: 899px) {
	#outline {
		padding-bottom: 120px;
	}
	.outline__figure {
	  top: 940px;
	}
	.outline__figure__image {
		max-width: 650px;
	}
}
@media (max-width: 500px) {
	.outline__figure {
	  top: 680px;
	}
	.outline__figure__image {
		max-width: 420px;
	}	
}


/*----- local-contribution -----*/
#local-contribution {
	padding-top: 60px;
	padding-bottom: 60px;
	background: url("../img/bg_page1.jpg") no-repeat top center;
}

.contribution__inner {
	margin-bottom: 40px;
}
.contribution__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contribution__body {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
	#local-contribution {
		padding-top: 300px;
		padding-bottom: 60px;
	}
  .contribution__content {
    gap: 60px;
  }
  .contribution__body {
    /*flex: 1;*/
	  max-width: 80%;
  }
}

/* image-galleryはstyle.css */
