@charset "utf-8";

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding: 110px
}

body {
  color: #595959;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 1.6;
  letter-spacing: .05em;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

#wrapper {
  width: 100%;
}

.inner {
  max-width: 1000px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}

img {
  max-width: 100%;
  height: auto;
}


/* ================================== global navi================================== */

header .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}

header .globalnavi {
  margin-right: 20px;
}

header h1 {
  font-size: 35px;
  margin-left: 20px;
}

header ul {
  display: flex;
  height: 100px;
  align-items: center;
  gap: 0 10px;
  padding-top: 8px;
}

header li {
  list-style-type: none;
}

header a{
  transition: .2s color ease-out;
  align-items: center;
}

a {
  text-decoration: none;
  color: #595959;
}

a:hover {
  color: #a2a2a2
}

.sp-only{
  display: none;
}

.hamburger{
  display: none;
}



/* ================================== about ================================== */

#about .inner .about-heading{
  display: flex;
  align-items: center;
  font-size: 30px;
  margin-bottom: 80px;
}

#about .inner .about-heading div{
  width: 100%;
  height: 1px;
  background-color: #595959;
  margin-left: 15px;
}

#about .inner .prfphoto{
  width: 50%;
  margin-right: 30px;
}

#about .inner .about{
  width: 50%;
}

#about .about .naruse{
  font-size: 18px;
}

.about01 {
  margin-bottom: 10px;
}

#about .inner .prf{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px 10px;
}

#about{
  margin-bottom: 180px;
}


/* ================================== works ================================== */

#works{
  margin-bottom: 180px;
}

.gallery01 li{
  border-radius: 1px;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25);
}

#works .inner .works-heading{
  display: flex;
  align-items: center;
  font-size: 30px;
  margin-bottom: 80px;
}

#works .inner .works-heading div{
  width: 100%;
  height: 1px;
  background-color: #595959;
  margin-left: 15px;
}

#works .works-ex{
  margin: 15px;
}


/* ================================== photo ================================== */

#photo{
  margin-bottom: 180px;
}

#photo .inner .photo-heading{
  display: flex;
  align-items: center;
  font-size: 30px;
  margin-bottom: 80px;
}

#photo .inner .photo-heading div{
  width: 100%;
  height: 1px;
  background-color: #595959;
  margin-left: 15px;
}

#photo .photo-ex{
  margin: 15px;
}


/* ================================== contact ================================== */

#contact{
  margin-bottom: 180px;
}

#contact .inner .contact-heading{
  display: flex;
  align-items: center;
  font-size: 30px;
  margin-bottom: 80px;
}

#contact .inner .contact-heading div{
  width: 100%;
  height: 1px;
  background-color: #595959;
  margin-left: 15px;
}

#contact a{
  background-image: url(../img/contact.png);
  background-repeat: no-repeat;
  background-position: left 4px;
  font-size: 20px;
  padding-left: 30px;
}



/* ================================== footer ================================== */

footer{
  height: 20vh;
  background: url("../img/P3158610.jpg") no-repeat center/cover;
  position: relative;
}

footer small{
  position: absolute;
  font-size: 14px;
  text-align: center;
  color: #545454

}

@media screen and (max-width: 768px){

body {
  font-size: 15px;
}

.inner{
  padding: 10px;
}

header h1{
  padding: 0 10px 0 10px;
  font-size: 28px;
}

.sp-only{
  display: inline;
}

.top nav{
  display: none;
}

.top{
  display: flex;
}

.prf{
  flex-direction: column;
}

.hamburger{
  display: inline;
  margin-right: 10px;
}

#about {
  margin-bottom: 80px;
}

#about .about .naruse{
  font-size: 16px;
}

#about .about01 {
  margin-bottom: 8px;
}

#about .about02 {
  font-size: 15px;
}

#works{
  margin-bottom: 80px;
}

#photo{
  margin-bottom: 80px;
}

#contact{
  margin-bottom: 80px;
}

}