@charset "utf-8";
/* common ---------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
}

a {
  text-decoration: none;
  color:#222;
}
a:hover {
  text-decoration: underline;
  color: orange;
}

/* page reyout -------------------------------
　全体のレイアウト
----------------------------------------------*/
body {
  background-color: #fff;
  font-size: 1em;
}
#container {
  width: 100%;
}
header {
  width: 100%;
}
#content { 
  width: 100%;
  margin: 0 auto;
}
main {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  height: auto;
  min-height: calc(100vh - 100px - 300px);
}
footer { border: red 1px;
  width: 100%;
  height: 250px;
}

@media screen and (max-width:768px){  /*横幅768px以下*/
main {
  width: 94%;
  max-width: 94%;
}
footer { border: red 1px;
  height: 120px;
}

}

/* header --------------------------*/
header {
  position: relative;
}
#page header {
  height: 65vh;
}
header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* footer -------------------------------------*/
footer {
  clear: both;
  background-image: url(../images/icon/bg_footer2.png);
  background-size: cover;
  background-position: bottom;
  position: relative;
}
footer small.copyright {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap; /* テキストが折り返さないようにする */
  color: #222;
}
footer small a {
  color: #222;
}
.footer_wrap small {
  display: flex;
}

