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

.flex_1 {
	display: flex;
	padding: 1.5rem;
	gap:1em;
	align-items: flex-start;
}
@media (max-width: 640px){
	.flex_1 {
		display: block;
		padding: 1rem 0.25rem;
	}
}

.dl_outline,
.dl_outline_s {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}
.dl_outline dt {
	width: 20%;
	display: block;
}
.dl_outline dd {
	width: 80%;
	display: block;
	padding-left: 0.5em;
	position: relative;
}
.dl_outline dd::before {
	content: ":";
	position: absolute;
	left: -0.5em;
}

.img_right_45 {
	width: 45%;
	min-width: 200px;
}
.img_right_45 img {
	width: 100%;
}
@media (max-width: 640px){
	.img_right_45 {
		width: 80%;
		display: block;
		margin: 1em auto;
	}
}

.img_right_50 {
	width: 50%;
	min-width: 200px;
}
.img_right_50 img {
	width: 100%;
}
@media (max-width: 640px){
	.img_right_50 {
		width: 80%;
		display: block;
		margin: 1em auto;
	}
}


.txt2 {
	padding: 0 1.5rem;
}
@media (max-width: 1024px){
	.txt2 {
		padding: 1rem 0.25rem;
	}
}

.ex {
	font-size: 0.9em;
}

.top_narrow_1 {
	margin: -1.5rem 0 1.5rem;
}
@media (max-width: 1024px){
	.top_narrow_1 {
		margin: 0 auto;
	}
}


.blog_title_m {
	margin-top: 2rem;
	margin-bottom: 1rem;
	padding-left: 1rem;
	padding-right: 1rem;
	text-align: center;
	font-size: 1.6rem;
	line-height: 1.8rem;
	font-weight: 700;
	color: #FFFFFF;
}

@media (max-width: 640px) {
  .blog_title_m {
    font-size: 1.4rem;
  }
}


.pd_15 {
	padding: 1.5rem;
}
@media (max-width: 1024px) {
	.pd_15 {
		padding: 1rem 0.25rem;
	}
}



/*　※モーダルが必要な時用　ここから　*/

.modal-wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 40px 10px;
  text-align: center;
}

.modal-trigger img {
	aspect-ratio: auto;
}


/*ラベルホバー時*/
.modal-trigger:hover {
  color: #FFFFFF;
  background-color: #4f96f6;
  transition: .6s;
}

.modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}

.modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}

.modal-wrapper .modal-window {
  box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  width: 80%;
  max-width: 700px;
  padding: 10px 30px 25px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, .6);
  vertical-align: middle
}

.modal-wrapper .modal-window .modal-content {
  max-height: 90vh;
  overflow-y: auto;
  text-align: left
}


.modal-content img {
  height: 100%;
	aspect-ratio: auto;
}

.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}

.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 5px;
  right: 5px;
  width: 35px;
  color: #95979c !important;
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.modal-wrapper .modal-close:hover {
  color: #2b2e38 !important
}

/*　※モーダルが必要な時用　ここまで　*/



/*　マーカー　*/
.marker_yellow {
	background: linear-gradient(transparent 70%, #FFED00 90%);
}


/*　記事間調整用　*/

.pdb_1 {
	padding-bottom: 1rem;
}

