@charset "UTF-8";

.header_banner {
	width: 100%;
	max-height: 70px;
	height: 7.5%;
	min-height: 40px;
	background: #c2d3c3;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	display: grid;
  grid-template-columns: 3fr 4fr 3fr;
	align-items: center;
	transition: .6s;
}

.header_banner_2 {
	width: 100%;
	max-height: 105px;
	height: 11.25%;
	min-height: 60px;
	background: #c2d3c3;
	top:0;
	position: fixed;
	left: 0;
	z-index: 95;
	display: grid;
	grid-template-rows:1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr;
	align-items: center;
	justify-items: center;
	transition: .6s;
	border-bottom: 1px solid;
}

.header_banner_div{
	justify-self: start;
	max-height: 50px;
	height: 100%;
	min-height: 35px;
	margin-left: 10px;
}

.header_banner_div_title{
	justify-self: center;
}


.user_icon{
	max-height: 50px;
	height: 90%;
	min-height: 35px;
}

.icon{
  width: 50px;
  height: 50px;
}

.title_logo{
	height: 90%;
	font-size: 1.5em;
	font-family: cursive;
}

a.title_logo_a ,a.title_logo_a:hover,a.title_logo_a:visited{
    color: inherit;
		text-decoration: none;
}

.footer_banner {
	width: 100%;
	max-height: 70px;
	height: 7.5%;
	min-height: 40px;
  justify-content: space-between;
	text-align: center;
	background: #c2d3c3;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 100;
	display: grid;
	grid-template-columns: 3fr 4fr 3fr;
	align-items: center;
	justify-content: center;
	transition: .6s;
}

.footer_banner_div{
	  flex: 1;
		text-align: center;
		position: relative; /* 基準値とする */
	max-height: 50px;
	height: 100%;
	min-height: 35px;
	margin-left: 10px;
}

.footer_banner_icon {
	max-height: 50px;
	height: 90%;
	min-height: 35px;

}

.footer_banner_div span {
  position: absolute;     /* 相対位置に指定 */
  top: 5px;             /* 表示位置を上から-10pxの位置にする */
  /* left: calc(100% - 10px); 表示位置を右から内側に10pxの位置 */
  color: #FFF;            /* 文字色を白に指定 */
  font-weight: bold;      /* 太文字にする */
  line-height: 20px;      /* 行の高さを指定 */
  text-align: center;     /* 文字を中央揃えにする */
  background: #E68031;    /* 背景色をオレンジに指定 */
  border-radius: 10px;    /* line-heightの半分の角丸を指定 */
  min-width: 20px;        /* 最低幅を指定 */
  padding: 0 3px;         /* 左右に少しだけ余白を設定 */
  box-sizing: border-box; /* 計算しやすいように */
}

.hide {
	bottom: -70px;
}

.hide_top {
	top: -70px;
}

.hide_top_2 {
	top: -140px;
}

.top_margin{
  margin-top: 105px;
}

.content_list_div{
	margin-top: 10px;
  border-bottom: 1px solid;
}

.content_title{
  font-size: 1.2em;
	font-weight: bold;
}

.content_list_nice_icon{
  height: 1em;
	margin-right: 1px;
}

.marginright5{
	margin-right: 10px;
}

.under {
  border-bottom: solid 3px #87CEFA;
}

.right {
    text-align: right;
}

.comm_top {
	width: 100%;
	display: grid;
  grid-template-columns: 1fr 1fr;
}

.comm_main {
	width: 100%;
	min-height: 35px;
}

a.inherit,a.inherit:hover,a.inherit:visited{
    color: inherit;
		text-decoration: none;
		width: 100%;
}


.thumb {

 }
 .thumb__items {
	 display: flex;
	 flex-flow: wrap;
	 position: relative;
	 z-index: 10;
 }
 .thumb__items > li {
	 flex: 0 1 25%;
	 list-style: none;
	 cursor: pointer;
	 position: relative;
 }
 .thumb__items > li img {
	 max-width: 100%;
	 position: relative;
	 vertical-align: bottom;
 }
 .thumb__items > li:before {
	 content: "";
	 display: block;
	 opacity: 0;
	 background: rgba(0, 0, 0, 0.6);
	 width: 100%;
	 height: 100%;
	 position: absolute;
	 left: 0;
	 top: 0;
	 z-index: 10;
	 transition: all 0.5s 0.3s ease;
 }
 .thumb__items > li:hover::before {
	 opacity: 1;
 }

 .modal {
	display: none;
	 width: 100%;
	 height: 100vh;
	 position: fixed;
	 left: 0;
	 top: 0;
	 z-index: 9999;
 }

 .modal-wrap {
	 width: 100%;
	 height: 100%;
	 text-align: center;
	 padding: 1px;
	 overflow: auto;
	 -webkit-overflow-scrolling: touch;
	 -ms-overflow-style: none;
	 overflow: -moz-scrollbars-none;
	 white-space: nowrap;
 }
 .modal-wrap::-webkit-scrollbar {
	 display: none;
 }
 .modal-wrap:after {
	 content: '';
	 display: inline-block;
	 vertical-align: middle;
	 width: 1px;
	 height: 100%;
 }
 .modal-overlay {
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(51, 51, 51, 0.8);
	width: 100%;
	height: 100%;
}

.modal__item {
	width: fit-content;
	max-width: 1200px;
	display: inline-block;
	vertical-align: middle;
	position: relative;
}


 .modal.visible {
	display: block;
 }

 .modal__item img {
 	max-width: 100vw;
 	max-height: 90vh;
 	vertical-align: middle;
 }
 .modal__caption {
 	position: absolute;
 	color: #fff;
 	line-height: 1.6;
 	padding: 10px;
 }

 .modal__close {
 	position: fixed;
 	top: 10px;
 	right: 10px;
 	z-index: 9999;
 }

 .modal__prev {
 	position: fixed;
 	bottom: 5px;
 	left: 10px;
 	z-index: 9999;
 }
 .modal__next {
 	position: fixed;
 	bottom: 5px;
 	right: 10px;
 	z-index: 9999;
 }

 .fas {
	height: 40px;
 	cursor: pointer;
 }

 .fas2 {
	height: 60px;
 	cursor: pointer;
 }

 .fadein {
 animation: fadein .3s;
 }

 .fadeout {
 	animation: fadeout .3s;
 	animation-fill-mode: forwards;
 }
 @keyframes fadein {
 	0% {
 			opacity: 0;
 	}
 	100% {
 			opacity: 1;
 	}
 }
 @keyframes fadeout {
 	0% {
 			opacity: 1;
 	}
 	100% {
 			opacity: 0;
 			display: none;
 	}
 }

 .share_messeage{
    padding: 0.5em 1em;
    margin: 2em 0;
    background: #FFF;
    border: solid 1px;/*線*/
    border-radius: 10px;/*角の丸み*/
}

/*searchフォーム*/

.search-form-3 {
    display: grid;
		grid-template-columns: 99fr 1fr;
/*    justify-content: space-between; */
    align-items: center;
    overflow: hidden;
    border: 1px solid #777777;
    border-radius: 3px;
}

.search-form-3 input {
    width: 100%;
    height: 45px;
    padding: 5px 15px;
    border: none;
    box-sizing: border-box;
    font-size: 1em;
    outline: none;
}

.search-form-3 input::placeholder{
    color: #777777;
}

.search-form-3 button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 45px;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.search-form-3 button::after {
    width: 24px;
    height: 24px;
    background-image: url("https://cf202711.cloudfree.jp/admin_pic/search.svg");
    background-repeat: no-repeat;
		background-size: contain;
    content: '';
}

.space{
	width: 100%;
	height: 1000px;
}
