@charset "utf-8";

/* import CSS
-----------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");

@import url("animation.css");
@import url("inview.css");
@import url("menuDrower-right.css");


html{
  scroll-behavior: smooth;
}

/* home style 
=============================================================================*/
#container {
	width: 100%;
  position: relative;
}
header {
  width: 100%;
  height: 100vh;
  height:min(80vh,100vh);
}
#content {
	clear: both;
	min-height: calc(100vh - 100px - 110px);
}
main {

}
footer {
	width: 100%;
	margin-top: 80px;
}


.pc_menu {
  width: 60%;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 903;
}
.pc_menu ul {

}
.pc_menu ul li {
  width: 110px;
  float: left;
  margin-left: 5px;
  list-style: none;
  line-height: 1.5rem;
  text-align: center;
  font-size: 90%;
  border-bottom: #0C7789 3px solid;
}
.pc_menu ul li a {
  color: #333;
}
.pc_menu ul li:hover {
  border-bottom: orange 3px solid;
}


.iframe {
	width: 60%;
  height: auto;
  margin: 50px auto;
  overflow: hidden;
}

.header_wrap {
	max-width: 1360px;
	margin: 0 auto;

}

h1.logo_home {
  width: 30%;
  z-index: 901;
  position: absolute;
  top: 150px;
  left: 3%;
}
aside.mainimg {
clear: both;
z-index: 900;
}
aside.mainimg img {
  width: 60%;
}

/* home_link　リンク集
---------------------------------------------------*/
.home_link {
	width: 60%;
  min-height: 900px;
  margin: 50px auto;
  overflow: hidden;
}

.home_link ul {
  width: 100%;
}
.home_link ul li {
  height: 150px;
  padding: 8px 20px;
  list-style: none;
	border-bottom: #333 1px dotted;
}
.home_link ul li img {
  width: 200px;
  height: 150px;
  margin-right: 30px;
  float: left;
  transition:1s all;
  overflow: hidden;
}
.home_link ul li img:hover {
  transform:scale(1.1,1.1);

}
.home_link ul li a {
  display: block;
  font-size: 130%;
}
.home_link ul li a:hover {
  color: orange;
  font-weight: 600;
}
main h2 {
	position: relative;
	color: #0C7789;
	font-size: 2.5rem;
	letter-spacing: 0.2em;
	margin: 0 20px 50px;
	line-height: 1.5;
  text-align: center;
	text-shadow: 3px 3px 5px rgba(14, 51, 29, 0.5)
}
h2 .small {
	display: block;
	font-size: 0.4em;
}
@media screen and (min-width:1360px) {	/* 横幅1360px以上 */
  header{
  height: 110vh;
  }
}
@media screen and (max-width:800px) {	/* 横幅800px以下 */
  header {
    height: 50vh;
  }
  .iframe {
    width: 90%;
  }
  .home_link {
    width: 90%;
  }
  .home_link ul li {
    height: 80px;
    padding: 8px 5px;
  }
 
  .home_link ul li img {
    width: 110px;
    height: 80px;
    margin-right: 10px;
  }

  h1.logo_home {
    position: absolute;
    top: 80px;
    left: 3%;
  }
  .pc_menu {
    display: none;
  }

}
