
.nav-menu {
  background-color: #333;
  color: #fff;
}
.menu-list {
  display: flex;
  justify-content: center;
}
.menu-item {
  background-color: #333;
  border-left: 1px solid #fff;
  position: relative;
  transition: background-color .3s;
}
.menu-item:last-child {
  border-right: 1px solid #fff;
}


.menu-item:hover .drop-menu-list {
  transform: scaleY(1);
}
.menu-item:hover {
  background-color: #696969;
  transition: background-color .3s;
}
.drop-menu-item:hover {
  opacity: .8;
  transition: opacity .3s;
}

.menu-item a {
  align-items: center;
  color: #fff;
  display: flex;
  height: 50px;
  justify-content: center;
  text-decoration: none;
  width: 120px;
}


.drop-menu {
  position: relative;
}
.drop-menu-list {
  left: 0;
  position: absolute;
  top: 100%;
  transform: scaleY(0);
  transform-origin: center top;
  transition: transform .3s;
  width: max-content;
  z-index: 1;
}
.drop-menu-item {
  background-color: #696969;
  transition: opacity .3s;
}

ul {
  list-style: none;
  padding-left: 0em; 
}


html {
  scroll-behavior: smooth;
}

/***追従するトップへ戻るボタン***/
#page-top {
  position: fixed;
  right: 5px;
  bottom: 20px;
  height: 50px;
  text-decoration: none;
  font-weight: bold;
  transform: rotate(90deg);
  font-size: 90%;
  line-height: 1.5rem;
  color: #737373;
  padding: 0 0 0 35px;
  border-top: solid 1px;
}
#page-top::before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0px;
  width: 15px;
  border-top: solid 1px;
  transform: rotate(35deg);
  transform-origin: left top;
}
/***トップへ戻るボタンここまで***/

/***ここからピクトグラム***/
section{
  padding:20px;
  font-family:  serif,'arial black'; 
  font-size: 20px;
  margin:auto;
  display:block;
}

.hover {
  position: relative;
  width: 350px;
  height:330px;
}
.hover .hover-img {
  margin: 0;
  padding: 0;
}
.hover-img img {
  width: 100%;
  height: 100%;
}
.hover .hover-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #fff;
  background-color: rgba(0,0,0,0.65);
  opacity: 0;
  transition: .3s ease-in-out;
}
.hover .hover-text .text1 {
  font-size: 30px;
  padding: 10px 20px;
}
.hover .hover-text .text2 {
  font-size: 20px;
  padding: 0 20px;
}
/*ホバーエフェクト*/
.hover:hover .hover-text {
  /*不透明にして表示*/
  opacity: 1;
  padding-top: 10px;
}
/***ここまでピクトグラム***/


.footer02 {
  color: #808080;
  background: #e5e5e5;
  text-align: center;
  padding: 30px;
 }
 .footer02 a {
  color: #808080;
  text-decoration: none;
 }
 .footer02 a:hover {
  text-decoration: underline;
 }
 .footer02 .menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
 }
 .footer02 .menu li {
  margin: 0;
  padding: 0 20px;
 }
 .footer02 .copyright {
  margin: 0;
  padding: 20px 0 0 0;
 }



 .frame{
  padding: 0.5em 1em;
  margin: 1em 0;
  background: #f4f4f4;
  border-left: solid 6px #5bb7ae;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.33);
}
.frame {
  margin: 0px 350px; 
  padding: 10px;
}

.origami {
display: inline-block;
position: relative;
}
.origami:after {
position: absolute;
display: block;
content: "";
top: 0;
left: 0;
width: 100%;
height: 100%;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
transform: rotate(3deg); /* 回転させる */
background: #fff;
z-index: -1;
}

.contents {
	margin: 16px auto;
	text-align: center;
	border: 1px solid #000;
}
.contents__ul {
	padding-left: 0;
	list-style: none;
	display: inline-block;
}
.contents__li {
	text-align: left;
}

/* Lazy Load Styles */
.card-image {
  display: block;
  min-height: 20rem; /* layout hack */
  background: #fff center center no-repeat;
  background-size: cover;
  filter: blur(3px); /* blur the lowres image */
}

.card-image > img {
  display: block;
  width: 100%;
  opacity: 0; /* visually hide the img element */
}

.card-image.is-loaded {
  filter: none; /* remove the blur on fullres image */
  transition: filter 1s;
}




/* Layout Styles */
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  font-size: 16px;
  font-family: sans-serif;
}

.card-list {
  display: block;
  margin: 1rem auto;
  padding: 0;
  font-size: 0;
  text-align: center;
  list-style: none;
}

.card {
  display: inline-block;
  width: 90%;
  max-width: 20rem;
  margin: 1rem;
  font-size: 1rem;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 0 3rem -1rem rgba(0,0,0,0.5);
  transition: transform 0.1s ease-in-out, box-shadow 0.1s;
}

.card:hover {
  transform: translateY(-0.5rem) scale(1.0125);
  box-shadow: 0 0.5em 3rem -1rem rgba(0,0,0,0.5);
}

.card-description {
  display: block;
  padding: 1em 0.5em;
  color: #515151;
  text-decoration: none;
}

.card-description > h2 {
  margin: 0 0 0.5em;
}

.card-description > p {
  margin: 0;
}