@charset "UTF-8";
/*---------------------------------
  basic
---------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
	color: #333;
  font-family: 游ゴシック, YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Verdana, sans-serif;
  font-size: 16px;
  font-weight: 500;
	line-height: 1.8em;
	margin: 0;
	padding: 0;
}

h1,h2,h3,h4,h5 {
	margin: 0;
	padding: 0;
}

img {
	width: 100%;
	border: 0;
	vertical-align: bottom;
}

p,ul,li,dl,dt,dd,th,td {
	margin: 0;
	padding: 0;
}

ol,ul,li {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

::selection {
	background: #d6f5f5;
}

::-moz-selection {
	background: #d6f5f5;
}

@media screen and (max-width: 896px) {	
	body {
		font-size: 14px;
		min-width: 300px;
	}
}

/*---------------------------------
  ScrollTrigger
---------------------------------*/
.invisible {
  transition: all 1s ease;
  opacity: 0.0;
}

.visible {
  transition: all 1s ease;
  opacity: 1.0;
}

/*---------------------------------
  link
---------------------------------*/
a:link, a:visited, a:hover, a:active {
	color: #333;
	text-decoration: none;
}

.btn {
  height: 50px;
  line-height: 50px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.1em;
  border-radius: 3px;
  display: block;
}

.btn_back {
  width: 300px;
  color: #0097d7 !important;
  background: #fff450;
  margin: 3em auto 0 auto;
}

.btn_back:hover {
  color: #fff !important;
  background: #0097d7;
  transition: 0.3s;
}

@media print, screen and (max-width: 896px) {
  .btn_back {
    width: 80%;
  }
}

/* icon forward */
.hvr-icon-forward {
	display: block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	padding-right: 0;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.1s;
}

.hvr-icon-forward:before {
	content: "\f105";
	position: absolute;
	right: 1em;
	padding: 0 1px;
	font-family: 'Font Awesome 5 Free';
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.hvr-icon-forward:hover:before,
.hvr-icon-forward:focus:before,
.hvr-icon-forward:active:before {
	-webkit-transform: translateX(4px);
	transform: translateX(4px);
}

.hvr-icon-forward:hover {
	opacity: 0.8;
	transition: 0.3s;
}

/* icon back */
.hvr-icon-back {
	display: block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	padding-left: 0;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

.hvr-icon-back:before {
	content: "\f104";
	position: absolute;
	left: 1em;
	padding: 0 1px;
	font-family: 'Font Awesome 5 Free';
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-transition-duration: 0.1s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.hvr-icon-back:hover:before,
.hvr-icon-back:focus:before,
.hvr-icon-back:active:before {
	-webkit-transform: translateX(-4px);
	transform: translateX(-4px);
}

/* zoom img */
.zoom_img img {
	width: 100%;
	display: block;
	transition: 0.3s;
}

.zoom_img img:hover {
	transform: scale(1.1);
  opacity: 0.8;
	transition: 0.3s;
}

/*---------------------------------
  hidden
---------------------------------*/
@media screen and (min-width: 896px) {
	.pc_hidden {
		display: none;
	}
}

@media screen and (max-width: 896px) {
	.tab_hidden {
		display: none;
	}
}

@media screen and (max-width: 480px) {
	.sp_hidden {
		display: none;
	}
}

/*---------------------------------
  pan
---------------------------------*/
.pan_content {
	background: #eee;
	margin-bottom: 3em;
	padding: 3px 0;
}

.pan_content ul {
	display: flex;
	flex-wrap: wrap;
}

.pan_content li {
  color: #666;
	font-size: 12px;
	display: flex;
}

.pan_content li:nth-child(n+2):before {
  content: "\e5cc";
	font-family: 'Material Icons';
	font-size: 16px;
	padding: 0 10px;
}

.pan_content li a {
  color: #666;
}

.pan_content li a:hover {
	text-decoration: underline;
	transition: 0.3s
}

@media screen and (max-width: 896px) {
	.pan_content {
		display: none;
	}
}

/*---------------------------------
  page_nav
---------------------------------*/
.page_nav ul {
  display: flex;
  flex-wrap: wrap;
  border-top: solid 1px #0097d7;
  border-bottom: solid 1px #0097d7;
  border-right: solid 1px #0097d7;
}

.page_nav ul li {
  flex: 1;
  border-left: solid 1px #0097d7;
}

.page_nav ul li a {
  height: 60px;
  line-height: 60px;
  color: #0097d7;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  /*background: #d6f5f5;*/
  display: block;
  padding: 0 5px;
}

.page_nav ul li a:hover {
  color: #fff;
  background: #0097d7;
  transition: 0.3s;
}

.shedule_page_nav li {
  flex: auto !important;
  width: 33.3%;
}

.shedule_page_nav li:nth-child(n+4) {
  border-top: solid 1px #0097d7;
}

@media print, screen and (max-width: 1030px) {
  .page_nav ul li {
    flex: auto;
    width: 50%;
  }
  
  .page_nav ul li:nth-child(n+3) {
    border-top: solid 1px #0097d7;
  }
  
  .page_nav ul li a {
    height: 40px;
    line-height: 40px;
    font-size: 12px;
  }
}

/*---------------------------------
  common
---------------------------------*/
.wrapper {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 10px;
}

h2 {
	font-size: 24px;
	letter-spacing: 0.1em;
	position: relative;
	border-top: solid 1px #fff450;
  margin-bottom: 1.5em;
	padding-top: 1em;
}

h2:before {
	content: "";
  width: 100px;
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff450;
}

.page_content h2 {
  margin: 3em 0 2em 0;
}

.page_content h2+p {
  margin-bottom: 2em;
}

.page_content h3 {
  font-size: 21px;
  font-weight: 600;
  padding: 0.5em 0.7em;
  border-left: solid 5px #fff9a2;
  margin: 2em 0 1.5em 0;
}

.text_box p {
  text-indent: 1em;
}

.text_box p:nth-of-type(n+2) {
  padding-top: 1.5em;
}

.table_content {
  width: 100%;
  margin-top: 2em;
}

.table_content th,
.table_content td {
  font-size: 14px;
  line-height: 1.5em;
  border: solid 1px #ccc;
  padding: 5px;
}

.table_content th {
  color: #333;
  background: #eee;
}

@media print, screen and (max-width: 896px) {
  h2 {
    font-size: 18px;
  }
  
  .page_content h3 {
    font-size: 16px;
  }
  
  .table_content th,
  .table_content td {
    font-size: 12px;
  }
}

/*---------------------------------
  header
---------------------------------*/
header .wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

header h1 {
  width: 265px;
  margin-right: auto;
}

header a {
  margin: 0 0.5em;
}

header h1 a:hover,
.h_btn_content a:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.h_btn_content {
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 600;
}

.h_btn_content a i {
  font-size: 18px !important;
  vertical-align: middle;
  margin-right: 5px;
}

.h_btn_content a {
  width: 130px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 3px;
  display: block;
}

/*
.h_btn_content a:first-child {
  color: #F37121;
  border: solid 1px #F37121;
}

.h_btn_content a:first-child {
  color: #F37121;
  border: solid 1px #F37121;
}
*/

.h_btn_content a:last-child {
  color: #fff;
  background: #F37121;
}

.h_sns_link {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5px;
}

.h_sns_link li {
  line-height: 1em;
  text-align: center;
}

.h_sns_link li a {
  color: #999;
  display: block;
}

.h_sns_link i {
  font-size: 28px !important;
}

.h_sns_link p {
  font-size: 10px;
}

.h_sns_link a:hover {
  transition: 0.3s;
}

.line a:hover {
  color: #00b900;
}

.piazza a:hover {
  color: #fc4a4a;
}

.facebook a:hover {
  color: #4267b2;
}

.twitter a:hover {
  color: #1b95e0;
}
.instagram a:hover {
  color: #000;
}

@media print, screen and (max-width: 896px) {
  header .wrapper {
    flex-direction: column;
  }
  
  .h_btn_content {
    display: none;
  }
  
  .h_sns_link {
    width: 100%;
    justify-content: space-around;
    padding: 1em;
  }
  
  .h_sns_link p {
    display: none;
  }
  
  .line a {
    color: #00b900 !important;
  }
  
  .piazza a {
    color: #fc4a4a !important;
  }
  
  .facebook a {
    color: #4267b2 !important;
  }
  
  .twitter a {
    color: #1b95e0 !important;
  }
  
  .instagram a {
    color: #000 !important;
  }
}

/*---------------------------------
  glonav
---------------------------------*/
.bg_glonav {
	width: 100%;
	background: #fff450;
}

.glonav > ul {
	display: flex;
}

.glonav > ul > li {
  flex: 1;
	height: 70px;
	line-height: 70px;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	z-index: 99;
}

.glonav > ul > li:hover {
	color: #fff;
	background-color: #0097d7;
	transition: 0.3s;
}

.glonav > ul > li:hover > a {
	color: #fff;
}

.glonav > ul > li:hover .menu {
	transition: max-height 1s ease-in;
	max-height: 9999px;
	opacity: 1;
}

.glonav > ul > li > a {
	color: #0097d7;
	display: block;
	transition: all 0.3s ease-in;
}

.glonav > ul .menu {
	transition: all 0.3s ease-in;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	width: 100%;
	left: 0;
	text-align: left;
	position: absolute;
	background: #0097d7;
}

.glonav > ul .menu .menu_inner {
	padding: 1em;
}

.menu_inner {
	display: flex;
	flex-wrap: wrap;
	max-width: 1100px;
	margin: 0 auto;
}

.glonav > ul .menu .menu_inner li {
	width: 25%;
	line-height: 50px;
}

.glonav > ul .menu .menu_inner li a:before {
	content: "\e5c8";
	font-family: 'Material Icons';
	margin-right: 5px;
	vertical-align: bottom;
}

.glonav > ul .menu .menu_inner li a:hover {
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.glonav > ul .menu a {
	color: #fff;
	font-size: 14px;
	display: block;
}

@media screen and (max-width: 895px) {
	.bg_glonav {
		display: none;
	}
}

/*---------------------------------
  burger menu
---------------------------------*/
.burger_area {
	position: absolute;
	top: 0;
	right: 0;
}

.btn_burger {
	display: flex;
	justify-content: flex-end;
}

.btn_burger a {
  width: 30px;
  height: 51px;
	display: block;
  cursor: pointer;
	margin: 15px;
  position: relative;
  z-index: 30;
}

.btn_burger a,
.btn_burger a span {
	display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

.btn_burger a span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: #fff450;
  border-radius: 4px;
}

.btn_burger a span:nth-of-type(1) {
  top: 0;
}

.btn_burger a span:nth-of-type(2) {
  top: 11px;
}

.btn_burger a span:nth-of-type(3) {
  bottom: 24px;
}

.btn_burger a p {
  color: #9aa0a6;
  font-size: 10px;
  position: absolute;
  bottom: 0;
}

.btn_burger a.active span:nth-of-type(1) {
  background: #fff;
  -webkit-transform: translateY(11px) rotate(-45deg);
  transform: translateY(11px) rotate(-45deg);
}

.btn_burger a.active span:nth-of-type(2) {
  opacity: 0;
}

.btn_burger a.active span:nth-of-type(3) {
  background: #fff;
  -webkit-transform: translateY(-11px) rotate(45deg);
  transform: translateY(-11px) rotate(45deg);
}

.burger {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  z-index: 10;
  background: rgba(0, 151, 215, 0.9);
}

.burger.open {
	display: block;
}

.burger.close {
	display: none;
}

.burger_menu {
	height: 100%;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}

.burger_menu li {
	font-weight: 600;
  display: block;
  margin: 2em;
}
	
.burger_menu li:before {
	color: #fff;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	vertical-align: middle;
	margin-right: 10px;
}

.burger_menu li a {
  color: #fff !important;
}

@media screen and (min-width: 896px) {
	.burger_area {
		display: none;
	}
}

/*---------------------------------
  slide
---------------------------------*/
.slide {
	overflow: hidden;
}

.slide_inner {
	max-width: 1100px;
	margin: 0 auto;
}

.slide img {
	width: 100%;
	height: 420px;
	object-fit: cover;
}

.slide .slick-list {
	overflow: visible !important;
}

.slide .slick-slide {
	opacity: 0.5;
	transition: 0.5s;
}

.slide .slick-slide:focus {
	outline: none;
}

.slide .slick-now {
	opacity: 1;
}

.slick-arrow {
	z-index: 5;
}

.slick-prev:before,
.slick-next:before {
	font-family: "Material Icons" !important;
	font-size: 50px !important;
	opacity: 1 !important;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  color: #333;
}

.slick-prev {
	left: 0 !important;
}

.slick-prev:before {
  content: "\e314" !important;
}

.slick-next {
  right: 0 !important;
}

.slick-next:before {
  content: "\e315" !important;
}

.slick-dots li button:before {
  content: '\e3fa' !important;
  font-family: "Material Icons" !important;
  font-size: 12px !important;
  line-height: 20px;
  color: #dfe1e5;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li button:hover:before {
  color: #fff450 !important;
  opacity: 0.8;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #fff450 !important;
}

@media only screen and (max-width: 896px) {
	.slide_inner img {
		width: 100%;
		height: auto;
	}
}

/*---------------------------------

  index

---------------------------------*/
/*---------------------------------
  hero
---------------------------------*/
.hero_wrap {
  margin-bottom: 5em;
}

.hero_content img {
  /*max-height: 800px;*/
  object-fit: cover;
 ?object-position: center top;
}

@media print, screen and (max-width: 896px) {
  .hero_wrap {
    margin-bottom: 4em;
  }
}

@media print, screen and (max-width: 896px) {
  .hero_wrap {
    margin-bottom: 3em;
  }
}

/*---------------------------------
  index pickup
---------------------------------*/
.pickup_box {
  width: calc(100% / 3);
  padding: 0.5em;
}

.pickup_box div {
  height: 160px;
  border: solid 1px #ccc;
  background: #fff450;
  overflow: hidden;
}

.pickup_box div img {
  height: 160px;
  object-fit: cover;
}

.pickup_box:hover img {
	transform: scale(1.1);
  opacity: 0.8;
	transition: 0.3s;
}

.pickup_box h4 {
  text-align: center;
  padding-top: 1em;
}

/*---------------------------------
  ひとびとが躍動し持続発展するまちぎふ
---------------------------------*/
.t_vision_wrap {
  background: url("images/top/bg_pickup.jpg");
  background-repeat: none;
  background-size: cover;
  background-position: bottom center;
  background-attachment: fixed;
  margin: 5em 0;
}

.t_vision_wrap_bg {
	background: rgba(255,255,255,0.8);
  padding: 5em 0;
}

.t_vision_wrap h3 {
  color: #00709f;
  font-size: 24px;
  line-height: 1.8em;
  text-align: center;
  text-shadow: 2px 2px 1px #fff;
  margin-bottom: 1.5em;
}

.t_vision_wrap h3 span {
  font-size: 18px;
  display: block;
}

.t_vision_wrap .text_box {
  color: #00709f;
  font-weight: 600;
  line-height: 2.5em;
  text-shadow: 2px 2px 1px #fff;
}

.t_vision_wrap .btn {
  width: 300px;
  color: #fff;
  background: rgba(0, 151, 215, 0.8);
  display: block;
  margin: 3em auto 0 auto;
}

@media print, screen and (max-width: 896px) {
  .t_vision_wrap {
    background-attachment: inherit;
    margin: 4em 0;
  }
  
  .t_vision_wrap_bg {
    padding: 4em 2em;
  }
  
  .t_vision_wrap h3 {
    font-size: 21px;
  }
  
  .t_vision_wrap h3 span {
    font-size: 15px;
  }
  
  .t_vision_wrap .text_box {
    line-height: 2em;
  }
}

@media print, screen and (max-width: 480px) {
  .t_vision_wrap {
    margin: 3em 0;
  }
  
  .t_vision_wrap h3 {
    font-size: 16px;
  }
  
  .t_vision_wrap h3 span {
    font-size: 11px;
  }
}

/*---------------------------------
  ACTIVITIES
---------------------------------*/
.title_link_btn {
  display: flex;
}

.title_link_btn span {
  margin-left: auto;
}

.title_link_btn span a {
  color: #0097d7;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 2em;
  border-radius: 3px;
  background: #fff450;
  padding: 0 1em;
  display: block;
}

.title_link_btn span a:before {
	content: "\e315";
	font-family: 'Material Icons';
	font-size: 16px;
	vertical-align: bottom;
	margin-right: 5px;
}

.title_link_btn span a:hover {
  opacity: 0.9;
  transition: 0.3s;
}

.t_activities_content {
  display: flex;
  flex-wrap: wrap;
}

.t_activities_box {
  width: calc(100% / 3);
  cursor: pointer;
  padding: 0 1em;
}

.t_activities_box_img {
  height: 185px;
  border: solid 1px #ccc;
  background: #fff450;
  overflow: hidden;
}

.t_activities_box_img img {
  height: 185px;
  object-fit: cover;
}

.t_activities_box:hover .t_activities_box_img img {
	transform: scale(1.1);
  opacity: 0.8;
	transition: 0.3s;
}

.news_date {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  line-height: 1.5em;
}

.news_date li:first-child {
  color: #fff;
  background: #f37121;
  padding: 0.3em 1.5em;
}

.news_date li:last-child {
  color: #999;
}

.news_date li:last-child:before {
  content: "\e916";
  font-family: "Material Icons";
  font-size: 16px;
  vertical-align: sub;
  margin-right: 5px;
}

.t_activities_box_inner .news_date {
  margin-top: auto;
  padding-top: 2em;
}

.t_activities_box_inner h3 {
  font-size: 18px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
  margin: 1em 0 0.5em 0;
}

/*
.t_activities_box:hover h3 a {
  color: #fff450;
  transition: 0.3s
}
*/

.t_activities_box_inner h3+p {
  font-size: 14px;
  line-height: 1.8em;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
  margin-top: 0.5em;
}


@media print, screen and (max-width: 896px) {
  .title_link_btn span a {
    font-size: 12px;
  }
  
  .t_activities_content {
    flex-direction: column;
  }
  
  .t_activities_box {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
  }
  
  .t_activities_box:nth-of-type(n+2) {
    margin-top: 2em;
  }
  
  .t_activities_box_img {
    width: 120px;
    height: 85px;
  }
  
  .t_activities_box_img img {
    height: 85px;
  }
  
  .t_activities_box_inner .news_date {
    padding-top: 0;
  }
  
  .t_activities_box_inner {
    width: calc(100% - 120px);
    padding-left: 1.5em;
  }
  
  .t_activities_box_inner h3 {
    font-size: 14px;
    margin: 0.5em 0 0 0;
  }
  
  .t_activities_box_inner h3+p {
    display: none;
  }
}

/*---------------------------------
  INFORMATION
---------------------------------*/
.t_info_wrap {
  margin-top: 4em;
}

.t_info_wrap .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.t_info_wrap .wrapper > div:first-of-type {
  width: calc(100% - 300px);
  padding-right: 3em;
}

.t_info_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  cursor: pointer;
}

.t_info_box:nth-child(n+2) {
  margin-top: 1em;
}

.t_info_box_img {
  width: 150px;
  height: 90px;
  border: solid 1px #ccc;
  background: #fff450;
  overflow: hidden;
}
  
.t_info_box_img img {
  height: 90px;
  object-fit: cover;
}

.t_info_box:hover img {
	transform: scale(1.1);
  opacity: 0.8;
	transition: 0.3s;
}

.t_info_inner {
  width: calc(100% - 150px);
  padding-left: 2em;
}

.t_info_inner h3 {
  font-size: 18px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
  margin: 1em 0 0.5em 0;
}

.t_info_box:hover h3 a {
  color: #fff450;
  transition: 0.3s
}

@media print, screen and (max-width: 896px) {
  .t_info_wrap .wrapper > div:first-of-type {
    width: 100%;
    padding-right: 0;
  }
  
  .t_info_box_img {
    width: 120px;
    height: 85px;
  }
  
  .t_info_box_img img {
    height: 85px;
  }
  
  .t_info_inner {
    width: calc(100% - 120px);
    padding-left: 1.5em;
  }
  
  .t_info_inner h3 {
    font-size: 14px;
    margin: 0.5em 0 0 0;
  }

  .facebook_content {
    display: none;
  }
}

/*---------------------------------
  青年会議所とは
---------------------------------*/

/*---------------------------------
  岐阜青年会議所について
---------------------------------*/
/* 岐阜青年会議所とは */
.about_city_box {
  background: #f5f5f5;
  margin: 2em 0;
  padding: 2em 1em 1em 1em;
}

.about_city_box > p {
  font-weight: 600;
  text-align: center;
}

.about_city_box ul {
  max-width: 700px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 0 auto;
}

.about_city_box ul li {
  font-size: 14px;
  text-align: center;
  padding: 1em;
}

.about_city_box ul li img {
  max-width: 400px;
  margin-bottom: 1em;
}

@media print, screen and (max-width: 896px) {
  .about_city_box ul li {
    font-size: 12px;
  }
}

/* まちづくり運動ビジョン */
.vision_content .text_box {
  margin-bottom: 2em;
}

.vision_content img {
  max-width: 800px;
  display: block;
  margin: 0 auto;
}

/* 理事長挨拶・所信 */
.greeting_img {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.greeting_img div {
  max-width: 200px;
  border: solid 1px #ccc;
}

.greeting_img h4 {
  font-size: 21px;
  line-height: 1.8em;
  padding: 1em 1em 1em 2em;
}

.belief_content h4 {
  font-size: 18px;
  margin-bottom: 1em;
}

.belief_content h4:nth-of-type(n+2) {
  margin-top: 2em;
}

.basic_policy_content dt {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.5em;
}

.basic_policy_content dt:nth-child(n+2) {
  margin-top: 1.5em;
}

@media print, screen and (max-width: 896px) {
  .greeting_img div {
    max-width: 180px;
  }
  .greeting_img h4 {
    font-size: 16px;
  }
  
  .belief_content h4 {
    font-size: 14px;
  }
  
  .basic_policy_content dt {
    font-size: 14px;
  }
}

@media print, screen and (max-width: 480px) {
  .greeting_img {
    flex-direction: column;
  }
  
  .greeting_img div {
    margin: 0 auto;
  }
  
  .greeting_img h4 {
    text-align: center;
    padding-left: 0;
  }
}

/* メンバー紹介 */
.member_content .member_box:nth-of-type(n+2) {
  margin-top: 2em;
}

.member_box {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}

.member_box li {
  width: 20%;
  padding: 5px;
}

.member_box li:nth-child(n+6) {
  margin-top: 2em;
}

.member_box li div {
  border: solid 1px #ccc;
  border-radius: 50%;
  background: #fff450;
  overflow: hidden;
  margin-bottom: 0.5em;
}

.member_box li a:hover div img {
	transform: scale(1.1);
  opacity: 0.8;
	transition: 0.3s;
}

.member_box li p {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5em;
  margin: 1.5em 0 0.5em 0;
}

.member_box li h4 {
  font-weight: 500;
}

.member_box li a:hover h4 {
  color: #0097d7;
  transition: 0.3s
}

@media print, screen and (max-width: 896px) {
  .member_content .member_box:nth-of-type(n+2) {
    margin-top: 1em;
  }

  .member_box li {
    width: 33%;
  }
  
  .member_box li:nth-child(n+4) {
    margin-top: 1em;
  }
}

@media print, screen and (max-width: 480px) {
  .member_box li {
    width: 50%;
  }
  
  .member_box li:nth-child(n+3) {
    margin-top: 1em;
  }
}

/* 事務局案内 */
.overview_content dl {
  display: flex;
  flex-wrap: wrap;
  border-top: solid 1px #ccc;
  margin-bottom: 2em;
}

.overview_content dt,
.overview_content dd {
  border-bottom: solid 1px #ccc;
  padding: 1em 1.5em;
}

.overview_content dt {
  width: 25%;
  font-weight: 600;
  background: #f5f5f5;
}

.overview_content dd {
  width: 75%;
}

.overview_content dd a:hover {
  color: #1d3994;
  text-decoration: underline;
}

@media print, screen and (max-width: 480px) {
  .overview_content dl {
    flex-direction: column;
  }
  
  .overview_content dt,
  .overview_content dd {
    width: 100%;
  }
  
  .overview_content dt {
    padding: 0.5em 1em;
  }
  
  .overview_content dd {
    padding: 1em;
  }
}

/*---------------------------------
  事業案内・報告／委員会紹介
---------------------------------*/
/* 事業案内・報告 */
.table_report tr td:first-of-type,
.table_report tr td:nth-of-type(2),
.table_report tr td:nth-of-type(4),
.table_report tr td:nth-of-type(5) {
  text-align: center;
}

.table_report tr td:first-of-type,
.table_report tr td:nth-of-type(2) {
  width: 50px;
}

.table_report tr td:nth-of-type(4),
.table_report tr td:nth-of-type(5) {
  width: 100px;
}

.table_report tr td:last-of-type {
  width: 180px;
}

.table_content_btn a img {
  width: 45px;
}

.table_content_btn a:hover {
  opacity: 0.8;
  transition: 0.3s;
}

@media print, screen and (max-width: 896px) {
  .table_report tr td:first-of-type,
  .table_report tr td:nth-of-type(2) {
    width: 30px;
  }
  
  .table_report tr td:nth-of-type(4),
  .table_report tr td:nth-of-type(5) {
    width: 55px;
  }
  
  .table_report tr th:last-of-type,
  .table_report tr td:last-of-type {
    display: none;
  }
}

/* 委員会紹介 */
.introduction_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.introduction_box {
  width: 47%;
  border: solid 1px #fff450;
  padding: 1em;
  cursor: pointer;
}

.introduction_box:nth-child(n+3) {
  margin-top: 3em;
}

.introduction_box h4 {
  position: relative;
}

.introduction_box h4:after {
  content: "\f138";
	font-family: 'Font Awesome 5 Free';
  color: #0097d7;
  font-size: 18px;
  position: absolute;
  top: 25px;
  right: 20px;
}

.introduction_box h4:hover:after {
  color: #0097d7;
  transition: 0.3s;
}

.introduction_box h4 a {
  height: 80px;
  font-size: 18px;
  color: #0097d7;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff450;
  margin-bottom: 1em;
  padding: 0.5em;
}

.introduction_box h4 a:hover {
  color: #0097d7;
  background: #fff9a2;
  transition: 0.3s;
}

.introduction_box ul {
  padding: 0 1em;
}

.introduction_box ul li:before {
  content: "\e315";
  font-family: 'Material Icons';
  color: #fff450;
  font-weight: 600;
  margin-right: 5px;
}

.introduction_box ul li a:hover {
  text-decoration: underline;
}

@media print, screen and (max-width: 896px) {
  .introduction_content {
    flex-direction: column;
  }
  
  .introduction_box {
    width: 100%;
  }
  
  .introduction_box:nth-child(n+2) {
    margin-top: 2em !important;
  }
  
  .introduction_box h4:after {
    font-size: 16px;
    top: 30px;
  }
  
  .introduction_box h4 a {
    height: 80px;
    font-size: 16px;
    padding: 2em;
  }
}

/*---------------------------------

  スケジュール／情報公開

---------------------------------*/
/*---------------------------------
  年間スケジュール
---------------------------------*/
.table_schedule tr td:first-of-type,
.table_schedule tr td:nth-of-type(2) {
  text-align: center;
}

.table_schedule tr td:first-of-type {
  width: 50px;
}

.table_schedule tr td:nth-of-type(2) {
  width: 100px;
}

.table_schedule tr td:last-of-type {
  width: 200px;
}

@media print, screen and (max-width: 896px) {
  .table_schedule tr td:first-of-type {
    width: 30px;
  }
  
  .table_schedule tr td:nth-of-type(2) {
    width: 50px;
  }
  
  .table_schedule tr td:last-of-type {
    width: 60px;
  }
}

/*---------------------------------
  TO THE FUTURE
---------------------------------*/
.tothefuture_content img {
  border: solid 1px #ccc;  
}

.tothefuture_content .btn {
  width: 400px;
  color: #0097d7;
  background: #fff450;
  padding: 0 1em;
}

.tothefuture_content .btn span:last-of-type {
  font-size: 12px;
}

.tothefuture_content i {
  margin-right: 5px;
}

@media print, screen and (max-width: 896px) {
  .tothefuture_content .btn {
    width: 80%;
    margin: 0 auto;
    display: block;
  }
  
  .tothefuture_content .btn span:first-of-type {
    display: none;
  }
}

/*---------------------------------
  2021年度 予算案
---------------------------------*/
.budget_content a:hover {
  color: #0097d7;
  text-decoration: underline;
}

.budget_content a:after {
  content: "\e415";
  color: #0097d7;
  font-family: "Material Icons";
  font-size: 21px;
  margin-left: 5px;
  vertical-align: middle;
}

.budget_content a:hover:after {
  text-decoration: none !important;
}

.budget_content dl dt,
.budget_content dl dd ul li {
  line-height: 2.5em;
}

.budget_content dd {
  padding-left: 1.3em;
}

.budget_content dl dt:before,
.budget_content dl dd ul li:before {
	content: "\ef4a";
	font-family: "Material Icons";
  font-size: 10px;
  margin-right: 1em;
}

/*---------------------------------
  2007～2021年度 決算報告
---------------------------------*/
.settlement_box:nth-of-type(n+2) {
  margin-top: 1.5em;
}

.settlement_box .button {
  width: 100%;
  color: #0097d7;
	font-weight: 600;
	border: none;
	border-radius: 3px;
  background: #fff9a2;
  cursor: pointer;
  position: relative;
  padding: 1em;
}

.settlement_box .button:after {
    content: "\E147";
    font-family: 'Material Icons';
    font-size: 21px;
    position: absolute;
    top: 18px;
    right: 20px;
}

.settlement_box .button.active:after {
    content: "\E15C";
    font-family: 'Material Icons';
}

.settlement_inner {
	border-left: solid 1px #ccc;
	border-right: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
	background: #fff;
	padding: 1em;
}

@media print, screen and (max-width: 896px) {
  .settlement_box .button:after {
    top: 15px;
  }
}

/*---------------------------------
  定款
---------------------------------*/
.articles_content {
  font-size: 14px;
}

.articles_content h4 {
  font-size: 16px;
	font-weight: 600;
	padding-bottom: 1em;
}

.articles_content dl {
  display: flex;
  flex-wrap: wrap;
}

.articles_content dt {
	width: 80px;
	font-weight: 600;
	text-align: center;
}

.articles_content dd {
  width: calc(100% - 80px);
	padding: 0 0 1em 1em;
	position: relative;
}

.articles_content dd:after {
	content: "";
	display: block;
	clear: both;
}

.articles_content dd li {
	padding-left: 2.5em;
	text-indent: -3em;
}

.articles_content p {
	font-size: 14px;
}

.articles_content div:last-of-type {
  margin-top: 1em;
}

@media print, screen and (max-width: 896px) {
  .articles_content {
    font-size: 12px;
    line-height: 1.8em;
  }
  
  .articles_content h4 {
    font-size: 14px;
  }
  
  .articles_content dt {
	  width: 60px;
  }
  
  .articles_content dd {
    width: calc(100% - 60px);
  }
}

/*---------------------------------
  運営規程
---------------------------------*/


/*---------------------------------
  会計規程
---------------------------------*/


/*---------------------------------
  財政調整積立金管理運営規程
---------------------------------*/


/*---------------------------------
  情報開示規程
---------------------------------*/


/*---------------------------------
  プライバシーポリシー
---------------------------------*/
.privacy_content {
  font-size: 14px;
}

.privacy_content .text_box+p {
  text-align: center;
  margin: 3em 0;
}

.privacy_content ul li {
  list-style: decimal inside;
  text-indent: -1em;
  margin-top: 1.5em;
  padding-left: 1em;
}

@media print, screen and (max-width: 896px) {
  .privacy_content {
    font-size: 12px;
  }
}

/*---------------------------------
  新着情報一覧
---------------------------------*/
.info_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  cursor: pointer;
}

.info_box:nth-child(n+2) {
  margin-top: 3em;
}

.info_box_img {
  width: 33%;
  height: 185px;
  border: solid 1px #ccc;
  background: #fff450;
  overflow: hidden;
}

.info_box_img img {
  height: 185px;
  object-fit: cover;
}

.info_box:hover img {
	transform: scale(1.1);
  opacity: 0.8;
	transition: 0.3s;
}

.info_box_text {
  width: calc(100% - 33%);
  padding-left: 2em;
}

.info_box_text h4 {
  font-size: 16px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
  margin-top: 10px;
}

/*
.info_box:hover h4 a {
  color: #fff450;
  transition: 0.3s
}
*/

@media print, screen and (max-width: 896px) {
  .info_box:nth-child(n+2) {
    margin-top: 1em;
  }
  
  .info_box_img {
    width: 110px;
    height: 75px;
  }
  
  .info_box_img img {
    height: 75px;
  }
  
  .info_box_text {
    width: calc(100% - 110px);
    padding-left: 1em;
  }
  
  .info_box_text h4 {
    font-size: 14px;
    margin-top: 5px;
  }
}

/*---------------------------------
  新着情報 投稿
---------------------------------*/
.info_detail_content img {
  border: solid 1px #ccc;
}

.info_detail_content > div:first-of-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info_detail_content .info_date li:last-child {
  margin-left: 1em;
}

.info_detail_content > div:first-of-type div {
  width: 85px;
}

.info_detail_main {
  max-width: 700px;
  background: #ccc;
  margin: 0 auto 2em auto;
}

.info_detail_text img {
  max-width: 500px;
  height: auto;
}

.info_detail_text a {
  color: #0097d7;
  font-weight: 600;
  text-decoration: underline;
}

@media print, screen and (max-width: 896px) {
  .info_detail_content > div:first-of-type div {
    display: none;
  }
  
  .info_detail_content .info_date {
    width: 100%;
    justify-content: space-between;
  }
}

/*---------------------------------
  LINE公式アカウントのご案内
---------------------------------*/
.sns_info {
  display: flex;
  flex-wrap: wrap;
  border-top:  solid 1px #ccc;
}

.sns_info dt,
.sns_info dd {
  border-bottom: solid 1px #ccc;
  padding: 1em;
}

.sns_info dt {
  width: 25%;
  font-weight: 600;
  background: #f5f5f5;
}

.sns_info dd {
  width: 75%;
}

.sns_info+a {
  display: block;
  margin-top: 2em;
}

.line_content h4 {
  color: #fff450;
  margin-bottom: 0.5em;
}

.line_content h4:nth-of-type(n+2) {
  margin-top: 2em;
}

.line_content img {
  max-width: 180px;
  margin-top: 1em;
}

.line_content img:first-of-type {
  border: solid 1px #ccc;
}

@media print, screen and (max-width: 896px) {
  .sns_info dt,
  .sns_info dd {
    width: 100%;
  }
  
  .sns_info dt {
    padding: 0.5em 1em;
  }
}

/*---------------------------------
  個人ページ
---------------------------------*/
.group_name {
  color: #0097d7;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.1em;
  background: #fff450;
  padding: 1em;
}
.user_name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3em;
}

.user_name dt {
  width: 20%;
  border: solid 1px #ccc;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 3em;
}

.user_name dd {
  font-size: 21px;
  font-weight: 600;
}

.plan_box dl {
  display: flex;
  flex-wrap: wrap;
}

.plan_box dl dt {
  width: 120px;
}

.plan_box dl dd {
  width: calc(100% - 120px);
  margin-bottom: 1em;
}

@media print, screen and (max-width: 480px) {
  .group_name {
    font-size: 18px;
  }
  
  .user_name {
    margin-bottom: 2em;
  }
  
  .user_name dt {
    margin-right: 1.5em;
  }
  
  .user_name dd {
    font-size: 16px;
  }
  
  .plan_box dl dt {
    width: 100px;
  }
  
  .plan_box dl dd {
    width: calc(100% - 100px);
  }
}

/*---------------------------------
  過去のサイト一覧
---------------------------------*/
.archive_list {
  margin-top: 2em;
}

.archive_list li:nth-child(n+2) {
  margin-top: 1em;
}

.archive_list li:before {
  content: "\e895";
  color: #fff450;
	font-family: 'Material Icons';
  font-size: 1.6rem;
  vertical-align: middle;
  margin-right: 5px;
}

.archive_list li a:hover {
  color: #fff450;
  text-decoration: underline;
}

/*---------------------------------
  お問い合わせ
---------------------------------*/
/*
.mailform {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	border-bottom: solid 1px #dfe1e5;
	margin: 3em 0;
}

.mailform dt,
.mailform dd {
	border-top: 1px solid #dfe1e5;
	padding: 15px 20px;
}

.mailform dt {
	width: 35%;
	font-weight: 600;
	display: flex;
	align-items: center;
}

.mailform dd {
	width: 65%;
}

.required,
.optional {
	width: 35px;
	height: 25px;
	line-height: 25px;
	color: #fff;
	font-size: 0.7em;
	font-weight: 600;
	text-align: center;
	border-radius: 3px;
	margin-right: 10px;
}

.required {
	background: #f37121;
}

.optional {
	background: #ccc;
}

.contact_category {
	display: flex;
	flex-wrap: wrap;
}

.contact_category label {
	width: 50%;
}

.contact_category label:nth-child(n+3) {
	margin-top: 15px;
}

.mailform+div {
	display: flex;
	justify-content: space-around;
}

@media screen and (max-width: 896px) {
  .mailform {
    flex-direction: column;
  }
  
	.mailform dt {
		padding: 1em 0;
	}
	
	.mailform dd {
    border-top: none;
		padding: 0 0 1.5em 0;
	}
	
	.mailform dt,
	.mailform dd {
		width: 100%;
	}
	
	.required,
	.optional {
		height: 20px;
		line-height: 20px;
	}
}
*/

/*---------------------------------
  form
---------------------------------*/
/*
button,
input,
select,
textarea {
	font-size: 100%;
  font-family: 游ゴシック, YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Verdana, sans-serif;
}

input,
select,
textarea {
	border: solid 1px #dfe1e5;
	border-radius: 3px;
	-webkit-appearance: none;
	box-sizing: border-box;
}

input,
select {
	padding: 0.5em 1em;
}

textarea {
	max-width: 100%;
	min-width: 70%;
	min-height: 150px;
	padding: 0.5em;
}

.mf {
	width: 70% !important;
}

input[type="submit"],
input[type="reset"]  {
	color: #fff;
	font-weight: 600;
	cursor: pointer;
	border: none;
}

input[type="submit"],
input[type="reset"]  {
	width: 30%;
	height: 50px;
	line-height: 50px;
	text-align: center;
	padding: 0;
}

input[type="submit"] {
	color: #0097d7;
	background: #fff450;
}

input[type="reset"] {
	background: #ddd;
}

input[type="submit"]:hover,
input[type="reset"]:hover,
.button:hover  {
	opacity: 0.8;
	transition: 0.3s;
}

::-webkit-input-placeholder {
  color: #ddd;
  font-size: 14px;
}

.selectbox {
  width: 70%;
  position: relative;
}

.selectbox select {
  width: 100%;
  padding: 0.7em 1em;
  cursor: pointer;
}

.selectbox::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  right: 20px;
  top: 40%;
  border-bottom: #333 2px solid;
  border-right: #333 2px solid;
  transform: rotate(45deg)translateY(-30%);
}

@media screen and (max-width: 896px) {
	input,
  select {
		font-size: 16px;
	}
	
  .selectbox,
	.mf {
		width: 100% !important;
	}
	
	.input_middle {
		width: 50% !important;
	}
	
	textarea {
	  min-width: 100%;
		font-size: 16px;
	}
	
	input[type="submit"],
	input[type="reset"]  {
		width: 48%;
		font-size: 14px;
	}
}
*/

/*---------------------------------
  thanks
---------------------------------*/
.thanks_content .text_box+p	{
  color: #0097d7;
	font-size: 24px;
	font-weight: 600;
  margin: 1em 0;
}

.thanks_content .text_box+p a {
  color: #0097d7;
}

.thanks_content .text_box+p:before {
  color: #0097d7;
  content: "\f095";
	font-family: 'Font Awesome 5 Free';
  transform: scale(-1, 1);
  display: inline-block;
	vertical-align: middle;
  margin-right: 0.5em;
}

@media print, screen and (max-width: 896px) {
  .thanks_content .text_box+p	{
    font-size: 18px;
  }
}

/*---------------------------------
  link
---------------------------------*/
.link_wrap {
  background: #eee;
  margin-top: 4em;
  padding: 1.5em 0;
}

.link_wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.link_wrap ul li {
  flex: 1;
  padding: 0.5em;
}

.link_wrap ul li img:hover {
  opacity: 0.8;
  transition: 0.3s;
}

@media print, screen and (max-width: 896px) {
  .link_wrap {
    margin-top: 3em;
  }
  
  .link_wrap ul li {
    flex: auto;
    width: 48%;
  }
  
  .link_wrap ul li img {
    max-width: 200px;
    margin: 0 auto;
    display: block;
  }
}

/*---------------------------------
  footer
---------------------------------*/
footer {
	color: #0097d7;
	background: #fff450;
	padding: 3em 0;
}

footer a {
	color: #0097d7 !important;
}

.sitemap_content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.sitemap_content dt {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 10px;
}

.sitemap_content dt a:hover {
	opacity: 0.8;
	transition: 0.3s;
}

.sitemap_content dd {
	font-size: 12px;
  text-indent: -1.5em;
  padding-left: 1.5em;
}

.sitemap_content dd:before {
	content: "\e315";
	font-family: 'Material Icons';
	font-size: 14px;
	vertical-align: bottom;
	margin-right: 5px;
}

.sitemap_content dd a:hover {
	text-decoration: underline;
}

.f_address_content {
	display: flex;
	justify-content: space-between;
  align-items: center;
	border-top: solid 1px #0097d7;
	border-bottom: solid 1px #0097d7;
	margin: 3em 0;
	padding: 15px;
}

.f_address_content p {
	font-size: 14px;
}

.f_address_content ul {
	display: flex;
}

.f_address_content li {
	padding: 0 0.5em;
}

.f_address_content li a:hover {
	opacity: 0.8;
	transition: 0.3s;
}

.f_address_content i {
	font-size: 28px;
}

address {
	font-size: 0.7em;
	font-style: normal;
	text-align: center;
	margin-top: 20px;
}

@media print, screen and (max-width: 896px) {
  footer {
    padding: 2em 0;
  }
  
  .sitemap_content dl {
    width: 48%;
  }
  
  .sitemap_content dl:nth-child(n+3) {
    margin-top: 1.5em;
  }
  
  .sitemap_content dt {
	  font-size: 12px;
  }
  
  .sitemap_content dd {
	  font-size: 10px;
  }
  
  .sitemap_content dl:last-of-type {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .sitemap_content dl:last-of-type dt {
    width: 48%;
  }
  
  .f_address_content {
    flex-direction: column;
    margin: 2em 0;
  }
  
  .f_address_content p {
    text-align: center;
  }
  
  .f_address_content ul {
    margin-top: 1em;
  }
  
  .f_address_content li {
    padding: 0 1em;
  }
}

/*---------------------------------
  side contact
---------------------------------*/
.btn_side_contact {
  color: #fff !important;
  font-weight: 600;
  border-radius: 0.5em 0 0 0.5em;
  background: #F37121;
  padding: 2em 1em;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
  display: block;
  position: fixed;
  top: 40%;
  right: 0;
}

.btn_side_contact:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.btn_side_contact i {
  transform: rotate(-90deg);
  margin-bottom: 5px;
}

@media screen and (max-width: 896px) {
	.btn_side_contact {
		display: none;
	}
}

/*---------------------------------
  pagetop
---------------------------------*/
.pagetop {
	width: 60px;
	height: 60px;
	line-height: 40px;
	border-radius: 50%;
	color: #fff !important;
	font-size: 36px;
	text-align: center;
	background: rgba(0, 151, 215, 0.9);
	display: block;
	position: fixed;
	right: 40px;
	bottom: 40px;
	z-index: 1000;
}

.pagetop i {
  margin-top: 15px;
  font-size: 24px;
  transform: rotate(-90deg);
}

.pagetop:hover {
	opacity: 0.8;
	transition: 0.3s;
}

@media print, screen and (max-width: 896px) {
  .pagetop {
    display: none !important;
  }
}
