@charset "UTF-8";

html {
  margin: 0;
  padding: 0;
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.6rem;
  line-height: 2.1;
  color: #797e81;
}

a {
  font-family: 'Architects Daughter', serif;
  color: #797e81;
  text-decoration: none;
}

h1 {
  font-family: 'Architects Daughter', serif;
  line-height: 4rem;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

p, ul, dd {
  margin: 0;
  padding: 0;
}

ul li {
  list-style-type: none;
  padding: 0;
}

.wrap {
  overflow: hidden;
}

.under-p{
  font-family: 'M PLUS Rounded 1c', sans-serif;
}

/* ------------------------------------------------------------------------ヘッダー */
.header-nav {
  display: flex;
  justify-content: space-around;
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  background-color: white;
  z-index: 10;
  box-shadow: 0 0 5px rgba(204, 204, 204, 0.25);
}

.header-nav .logo ul li a img {
  width: 50px;
  height: auto;
}

.header-nav ul {
  display: flex;
  padding-right: 3rem;
}

.header-nav ul li {
  margin: 0 0 0 30px;
  font-size: 2rem;
}

.header-nav a:last-child {
  border-right: none;
}

.header-nav a:hover {
  text-shadow: 0 0 20px rgba(204, 204, 204, 0.5);
  ease-out;
  color: #333;
}

.sp{
  display: none;
}

/* ---------------------------------------------------------------TOPページ */
#top {
  width: 100%;
  height: 600px;
  margin: 0 auto;
  background: url(../img/sozai/back.jpg) no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
}

#top .text{
  display: none;
}

#top .logo {
  display: flex;
  justify-content: center;
}

#top .logo img {
  width: 300px;
  height: auto;
  position: absolute;
  margin-top: 10%;
}

#top #link {
  font-size: 3rem;
  display: flex;
  justify-content: center;
  position: relative;
  top: 70%;
}

#top #link a:hover {
  color: #333;
  text-shadow: 0 2px 5px rgba(255, 255, 255, .25);
}

#link ul {
  display: flex;
}

#link ul li {
  padding: 0 20px;
  color: white;
  text-shadow:
    white 2px 0px, white -2px 0px,
    white 0px -2px, white 0px 2px,
    white 2px 2px, white -2px 2px,
    white 2px -2px, white -2px -2px,
    white 1px 2px, white -1px 2px,
    white 1px -2px, white -1px -2px,
    white 2px 1px, white -2px 1px,
    white 2px -1px, white -2px -1px;
}

/* -----------------------------------------------------------aboutページ*/
#about {
  width: 1024px;
  height: 500px;
  margin: 0 auto;
  padding: 50px 0 0;
  background: url(../img/sozai/aboutcover.jpg)no-repeat center top;
  background-size: cover;
  background-position: bottom;
}


#about h1 {
  position: relative;
  top: 150px;
  left: 150px;
}

#about h1::after {
  display: block;
  content: '';
  width: 60px;
  height: 2px;
  margin: 0 auto 80px 10px;
  background: #c2c2c2;
}

#about p {
  position: relative;
  top: 70px;
  left: 140px;
  right: auto;
  font-size: 1.3rem;
}

#about section {
  position: relative;
  top: 100px;
  left: 50px;
}

#about section br:nth-child(even){
  display: none
}

#about .btn {
  margin: 50px auto 0 90px;
}

#about .btn a{
  background: white;
}

#about .btn a:hover {
  background-color: #797e81;
  color: white;
  border: none;
}

#about section a {
  padding: 10px;
  border: 1.5px solid #c2c2c2;
  border-radius: 25px;
}

/* ------------------------------------------------------portfolioページ */
#portfolio {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 50px 0 0;
}

#portfolio h1, #portfolio p {
  text-align: center;
}

#portfolio h1::after {
  display: block;
  content: '';
  width: 60px;
  height: 2px;
  margin: 0 auto 10px;
  background: #c2c2c2;
}

#portfolio p {
  font-size: 1.3rem;
  line-height: 5px;
}

#portfolio .grid-blk {
  display: block;
  content: '';
  width: 80%;
  height: 500px;
  margin: 60px auto 30px;
  display: grid;
}

#portfolio .grid-blk :hover {
  width: 100%;
  height: auto;
}

#product .grid-blk {
  border: 1px solid #797e81;
  margin: 30px auto 100px;
  grid-template-columns: 25% 25% 25% 25%;
  grid-template-rows: 25% 25% 25% 25%;
  grid-template-areas:
    "a a b b"
    "a a c c"
    "d e e e"
    "d e e e";
}

#product .grid-blk .grid-a {
  grid-area: a;
  background-image: url(../img/product/HCB02.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#product .grid-blk .grid-b {
  grid-area: b;
  background-image: url(../img/product/SomeNoCover01.jpg);
  background-size: 150%;
  background-position: top right;
}

#product .grid-blk .grid-c {
  grid-area: c;
  background-image: url(../img/product/SammerColor05.jpg);
  background-size: 100%;
  background-position: center;
}

#product .grid-blk .grid-d {
  grid-area: d;
  background-image: url(../img/product/karen01.jpg);
  background-position: center;
}

#product .grid-blk .grid-e {
  grid-area: e;
  background-image: url(../img/product/SkyShade05.jpg);
  background-size: 100%;
  background-position: center;
}

#photo .grid-blk {
  margin: 30px auto 80px;
  grid-template-columns: 30% 25% 25% 20%;
  grid-template-rows: 25% 25% 25% 25%;
  grid-template-areas:
    "a a a b"
    "a a a b"
    "c d d d"
    "c d d d";
}

#borderline {
  margin: 50px auto;
  height: 5px;
  background-image: repeating-linear-gradient(45deg, #ccc 0, #ccc 1px, transparent 0, transparent 50%);
  background-size: 8px 8px;
}

#photo .grid-blk .grid-a {
  grid-area: a;
  background-image: url(../img/photo/crystal01.jpg);
  background-size: 100%;
  background-position:right bottom;
}

#photo .grid-blk .grid-b {
  grid-area: b;
  background-image: url(../img/photo/film02.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#photo .grid-blk .grid-c {
  grid-area: c;
  background-image: url(../img/photo/nature04.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

#photo .grid-blk .grid-d {
  grid-area: d;
  background-image: url(../img/photo/light04.jpg);
  background-size: 130%;
  background-position: center;
}

.more p {
  margin: -20px 0 80px;
}

.more p a {
  font-size: 2rem;
  padding: 5px 30px;
  border: 1.5px solid #c2c2c2;
  border-radius: 25px;
}

.more p a:hover {
  background-color: #797e81;
  color: white;
  border: none;
}

/* ------------------------------------------------------contactページ */

#contact {
  position: relative;
  margin-top: 40px;
  padding: 10px 0 20px;
  background: url(../img/photo/film02.jpg) no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
}

#contact::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  content: "";
}

#contact .middle {
  text-align: center;
  color: white;
  position: relative;
  z-index: 5;
}

#contact h1 {
  margin: 50px auto 0;
}

#contact h1, #contact p {
  text-align: center;
}

#contact p {
  font-size: 1.3rem;
  line-height: 5px;
}

#contact h1::after {
  display: block;
  content: '';
  width: 60px;
  height: 2px;
  margin: 0 auto 10px;
  background: white;
}

#contact .btn {
  width: 60px;
  margin: 30px auto;
}

/* ------------------------------------------------------php用/*/
/*
#contact dl {
  width: 600px;
  margin: 0 auto;
}

#contact dt {
  padding: 20px 0 0;
  text-align: left;
  text-indent: 20px;
}

#contact dd {
  color: #555;
  text-align: left;
  text-indent: 20px;
}

#contact input {
  width: 300px;
  height: 25px;
  border-radius: 10px;
}

#contact textarea {
  width: 500px;
  height: 150px;
  padding: 10px;
  line-height: 2rem;
  border-radius: 10px;
  resize: none;
} */

/* ------------------------------------------------------contactページ */
/* ------------------------------------------------------googleフォーム用/*/
#googleform{
  margin: 50px auto 100px;
}

#googleform p{
  line-height:2rem;
  margin: 30px auto;
}

#googleform p br:first-child,#googleform p br:last-child{
  display: none;
}

#googleform .btn{
  width: 200px;
  height: 30px;
}

#googleform .btn a{
  padding: 5px 15px;
  border: 1px solid white;
  border-radius: 15px;
  background-color: white;
  color:#797e81;
  font-weight: bold;
  margin: 50px auto;
}

#googleform .btn a:hover{
  border: none;
  background-color:  #797e81;
  color: white;
}


/* -------------------------------------------------------------------フッター */
#copyright {
  text-align: center;
  margin: 20px auto;
}
