@charset "UTF-8";
* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
}


html {
  font-size: 100%;
}
body {
  color: #383e45;
  font-size: 0.9rem;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
}
li {
  list-style: none;
}
h1 {
  width: 120px;
  line-height: 1px;
  padding: 10px 0;
}
h1 a {
  display: block;
}
h2 {
  display: inline-block;
  font-size: 32px;
  text-align: center;
  margin-bottom: 60px;
  border-bottom: solid 1px #383e45;
}
h3 {
  font-size: 18px;
  margin-bottom: 30px;

}
div.inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 100px;
  padding: 0 4%;
  text-align: center;
  box-sizing: border-box;
}

/*-------------------------------------------
header
-------------------------------------------*/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
header .inner{
  margin: 0 auto;
}
header h1 {
    float: left;
}

header ul {
  display: flex;
  padding: 10px 0;
    float: right;
}
header li {
  margin-left: 30px;
}
header li a {
  color: #24292e;
}
header li a:hover {
  opacity: 0.7;
}

/*-------------------------------------------
Mainvisual
-------------------------------------------*/
#mainvisual {
  width: 100%;
  margin-bottom: 80px;
}

#mainvisual img {
  width: 100%;
  height: auto;
  display: block;
}

/*-------------------------------------------
About
-------------------------------------------*/
#about .content {
  display: flex;
  justify-content: center;
  align-items: center;
}
#about img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 30px;
}
#about .text {
  text-align: left;
}

/*-------------------------------------------
Image
-------------------------------------------*/
#image ul {
  display: flex;
  justify-content: space-between;
}
#image li {
  width: 32%;
}

/*-------------------------------------------
footer
-------------------------------------------*/
footer {
  font-size: 0.5rem;
  padding: 10px 0;
  text-align: center;
}

/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 600px) {

  /*-------------------------------------------
  About
  -------------------------------------------*/
  #about .content {
    flex-direction: column;
  }
  #about img {
    margin-right: 0;
  }

  /*-------------------------------------------
  Image
  -------------------------------------------*/
  #image ul {
    flex-direction: column;
  }
  #image li {
    width: 100%;
    margin-bottom: 30px;
  }
}

/*-------------------------------------------
Map
-------------------------------------------*/
#map .map {
  width: 100%;
}

#map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  display: block;
  border: 0;
}
