@charset "utf-8";

/*reset*/
* {
  margin: 0;
  padding: 0;
}

.cf:after {
  content: "";
  display: block;
  clear: both;
}

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

/*End reset*/
/* form font */
button {
  font-family: inherit;
  font-size: 100%;
}

/*layout start*/
body {
  font-family: 'Kiwi Maru', serif;
}

/*header*/
.header-bg {
  width: 100%;
  height: 100vh;
  position: relative;
}
.header-bg::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: -1;
}
.header-bg .sp-h1 {
  display: none;
}
@media screen and (max-width:1024px){
  .header-bg .sp-h1 {
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
  }
  .header-bg .sp-h1 i {
    padding-right: 0.3em;
  }
  .header-bg .sp-h1 a {
    color: #fff;
  }
  .header-bg .sp-h1 span {
    font-size: 2em;
  }
}

.header {
  background-color: rgba(255, 255, 255, 0.95);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.title-h1 img {
  height: 4rem;
  float: left;
  margin-left: 1rem;
  margin-top: 0.5rem;
}

/*480px Less than*/
@media screen and (max-width:480px) {
  .header-p {
    font-size: 1rem;
    line-height: 1;
    text-shadow: #fff;
  }
}

/*End 480px Less than*/


/*End header*/

/*nav*/
.nav {
  float: right;
  width: 50%;
  position: relative;
  z-index: 9999;
}

.nav-ul {
  margin: 0 1rem 0;
}

.nav li {
  float: left;
  list-style: none;
  width: 20%;
  text-align: center;
  padding: 1rem 0;
}

.nav li a {
  display: block;
  padding: 1rem 0;
  text-decoration: none;
  color: #595857;
  font-size: 0.8rem;
  transition: 0.5s
}

.nav li a:hover {
  color: #fff;
  background-color: #595857;
  box-shadow: 0 0 5px #fff;
}

.btn {
  font-size: 1rem;
  padding: 0.4rem 0.6rem 0.25rem;
  position: absolute;
  top: -50px;
  right: 1rem;
  display: none;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05rem;
  background-color: #595857;
  border: none;
}

.btn:hover {
  cursor: pointer;
  box-shadow: 0 0 2px 1px #aaa;
}

/*768px Less than*/
@media screen and (max-width:768px) {
  .btn {
    display: block;
  }

  .nav {
    width: 100%;
  }

  .nav-ul {
    display: none;
    float: none;
    background-color: #badcad;
    margin-bottom: 20px;
  }

  .nav li {
    float: none;
    width: 100%;
  }

  .nav li a {
    width: 100%;
    color: #595857;
  }

  .nav li a:hover {
    color: #fff;
    background-color: #595857;
    box-shadow: 0 0 5px #fff;
  }
}

/*End 768px Less than*/

/*480px Less than*/
/* @media screen and (max-width:480px) {
  .btn {
    top: 1.1rem;
  }
} */

/*End 480px Less than*/
/*End nav*/

/*col-1 col-2 col-3 col-4*/
.section-h2 {
  font-size: 1.5rem;
  color: #595857;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 0.3rem;
}

.col-2 {
  font-size: 1rem;
  color: #595857;
  padding-top: 5rem;
  padding-bottom: 5rem;
  text-align: center;
}

.col-1,
.col-3,
.col-4 {
  color: #595857;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 5rem;
  font-size: 1rem;
}

.col-1,
.col-3 {
  background-color: #fff;
}

.col-2,
.col-4 {
  background-color: #badbad;
}

/*End col-1 col-2 col-3*/

/*col-2 about layout*/
.col-2 {
  margin: 0 auto;
  padding-bottom: 12rem;
  letter-spacing: 0.3rem;
  line-height: 2;
}

.col-2 .about-t {
  padding-left: 20rem;
  padding-right: 20rem;
}

/*768px Less than*/
@media screen and (max-width:768px) {
  .about {
    width: 100%;
    margin-bottom: 20px;
  }
  .col-2 .about-t {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}


/*End 768px Less than*/
/*End col-2 about layout*/

/*col-1 menu layout*/
.wrap {
  padding: 30px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.item {
  width: 30%;
  margin-bottom: 20px;
  text-align: center;
}

.item img {
  margin: 5px;
}
.item p {
  text-align: left;
}

@media screen and (max-width:900px) {
  .item {
    width: 31.5%;
  }
}

@media screen and (max-width:728px) {
  .item {
    width: 48%;
  }
}

@media screen and (max-width:640px) {
  .item {
    width: 100%;
  }
}

/*col-3 gallery layout*/
.wrap {
  padding: 30px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.item {
  width: 23.5%;
  margin-bottom: 20px;
}

.item img {
  margin: 5px;
}

@media screen and (max-width:900px) {
  .item {
    width: 31.5%;
  }
}

@media screen and (max-width:728px) {
  .item {
    width: 48%;
  }
}

@media screen and (max-width:640px) {
  .item {
    width: 100%;
  }
}

/*End col-3 menu layout*/

/*col-4 info layout*/

.add-photo {
  width: 100%;
  margin: 0 auto;
  float: right !important;
}

.add-photo img {
  border: #fff 5px solid;
}

.add-info-title {
  width: 25%;
  min-width: 100px;
  margin-bottom: 15px;
}

.sns {
  margin-bottom: 15px;
  clear: both;
  text-align: center;
}

.sns li {
  display: inline-block;
}

.sns a {
  display: block;
  padding: 10px 20px;
  background-color: #badbad;
  color: #595857;
  border-radius: 5px;
  font-size: 30px;
  text-decoration: none;
}

.sns a:hover {
  opacity: 0.7;
}

@media screen and (min-width:640px) {
  .add-photo {
    float: right;
    width: 31.9148%;
    margin-bottom: 20px;
  }

  .add-info {
    float: right;
    width: 65.9574%;
    margin-bottom: 20px;
  }}

  /*End col-4 access layout*/

  /*footer*/
  .footer {
    color: #595857;
    min-height: 100px;
    background-color: #fff;
  }

  .footer-copy p {
    text-align: center;
    margin-top: 80px;
  }

  .footer-text ul {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: right;
  }

  .footer-text ul li a {
    margin: 0 1rem;
    color: #595857;
    text-decoration: none;
  }

  .footer-text ul li a:hover {
    opacity: 0.5;
  }

  /*End footer*/

  /*Top Back*/
  .top-bg {
    background-color: #badbad;
    width: 100%;
  }

  .top a {
    display: block;
    text-decoration: none;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
    color: #595857;
    line-height: 60px;
    text-align: center;
    margin: auto;
    position: relative;
    bottom: -40px;
    transition: 0.5s;
  }

  .top a:hover {
    color: rgba(255, 255, 255, 0.5);
  }

  /*End Top Back*/