html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
}

body {
  width: 100%;
  margin: 0;
  font-family: YuGothic, 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
  word-break: break-all;
  color: #4C4948;
}
.grecaptcha-badge { visibility: hidden; }

p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
}

li {
  list-style: none;
}

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

.img_cap {
  position: absolute;
  color: #fff;
  right: 10px;
  bottom: 10px;
  text-shadow: black 1px 1px 10px, black -1px 1px 10px, black 1px -1px 10px, black -1px -1px 10px;
  font-size: 12px;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 798px) {
  .img_cap {
    font-size: 10px;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

header {
  width: 100%;
  margin: 0 auto;
  padding: 10px;
  position: fixed;
  top: 0;
  z-index: 888;
  transition: 0.3s;
  line-height: 2em;
  border-top: 10px solid #00ADA9;
  background-color: #fff;
}

header h1 {
  max-width: 20%;
  margin: 10px auto 10px;
}

header nav {}

header ul {
  display: flex;
  /* フレックスボックスにする */
  align-items: flex-start;
  /* 縦の位置指定 */
  justify-content: space-between;
  /* 横の位置指定 */
  flex-direction: row;
  /* 要素の並び順 */
  flex-wrap: wrap;
  /* 折り返し指定 */
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

header li:nth-of-type(1) {
  border-left: 1px solid #4C4948;
}

header li {
  border-right: 1px solid #4C4948;
  width: 25%;
  text-align: center;
  padding: 10px 0;
}

header nav a {
  font-size: 1.3rem;
  color: #4C4948;
  font-weight: bold;
}

#sp-icon {
  display: none;
}

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

  header h1 {
    max-width: 50%;
    margin: 0px auto;
  }
  header nav {
    display: none;
  }

  div#sp-icon {
    display: block;
    width: 70px;
        height: 70px;
    position: fixed;
    right: 0px;
    top: 10px;
    z-index: 99999;
  }

  div#sp-icon:hover {
    cursor: pointer;
    opacity: 0.7;
  }

  div#sp-icon span,
  div#sp-icon span:before,
  div#sp-icon span:after {
    display: inline-block;
    width: 30px;
    height: 3px;
    background: #00ADA9;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.3s;
  }

  div#sp-icon span {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  div#sp-icon span:before {
    content: "";
    transform: translateY(-10px) rotate(0deg);
  }

  div#sp-icon span:after {
    content: "";
    transform: translateY(10px) rotate(0deg);
  }

  div.sp-open span {
    background: transparent !important;
  }

  div.sp-open span:before {
    transform: rotate(45deg) !important;
  }

  div.sp-open span:after {
    transform: rotate(-45deg) !important;
  }

  header li {
    border-right: none;
    width: 100%;
    text-align: left;
    padding: 10px 0 20px 1em;
    border-bottom: 1px dotted #00ADA9;
    border-left: 1px dotted #00ADA9;
  }

  header li+li {
    margin-top: 20px;
  }

  header li:nth-of-type(1) {
    border-left: 1px dotted #00ADA9;
  }

  header li a {}

  header li span.sp {
    display: inline-block;
    padding-left: 1em;
  }


}

/*instagram*/
.instagram {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
  padding-top: 81px;
  background: #fff;
}

.instagram img {
  margin-right: 20px;
  width: 295px;
  height: 60px;
}

.instagram a {
  padding: 5px 10px;
  background: #1E2B69;
  text-decoration: none;
  border-radius: 15px;
  line-height: 1;
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 798px) {
  .instagram {
    margin-bottom: 0px;
    padding: 80px 10%;
    display: block;
  }

  .instagram img {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }

  .instagram a {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    background: #1E2B69;
    text-decoration: none;
    border-radius: 15px;
    line-height: 1;
    color: #fff;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/*footer*/

footer {
  background: #221714;
}

footer .wrap {
  width: 1270px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
}

footer .wrap .box {
  color: #fff;
}

footer .wrap .box p.title {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
  font-size: 2.2rem;
}

footer .wrap .box p.title:hover {
  color: #ee0;
}

footer .wrap .box p.title a {
  text-decoration: none;
}

footer .wrap .box p.not-link:hover {
  color: #fff;
}

footer .wrap .box ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}

footer .wrap .box ul li {
  width: 25%;
  margin: 10px 0;
  list-style-type: none;
}

footer .wrap .box ul li a {
  text-decoration: none;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.2;
}

footer .wrap .box ul li a:hover {
  color: #ee0;
}

footer .wrap .box:nth-of-type(1) {
  width: 100px;
}

footer .wrap .box:nth-of-type(2) {
  width: 850px;
}

footer .wrap .box:nth-of-type(3) {
  width: 320px;
  padding-left: 20px;
}

footer .wrap .box:nth-of-type(3) .footer-logo {
  margin: 20px 0;
}

footer .wrap .box:nth-of-type(3) .footer-logo img {
  width: 90px;
  height: auto;
}

footer .wrap .box:nth-of-type(3) .copyright small {
  font-size: 9px;
  font-size: 0.9rem;
}

.page_top {
  position: fixed;
  right: 30px;
  z-index: 9990;
}

.page_top a {
  display: block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  border-radius: 30px;
  background: #a19586;
}

.page_top a:hover {
  background: #b87474;
}

.txt-404 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: bold;
}

a.for-top {
  display: block;
  font-size: 16px;
  width: 280px;
  padding: 10px 0;
  margin: 0 auto;
  background: #000;
  color: #fff;
}
.page_top.show{
  transform: translateY(0);
  opacity: 1;
}

@media screen and (max-width: 798px) {
  .page_top {
    bottom: 30px;
  }

  footer .wrap {
    width: 90%;
    margin: 0 auto;
    padding: 30px 0;
  }

  footer .wrap .box {
    color: #fff;
    padding: 0;
  }

  footer .wrap .box:nth-of-type(1),
  footer .wrap .box:nth-of-type(2) {
    display: none;
  }

  footer .wrap .box:nth-of-type(3) p {
    display: none;
  }

  footer .wrap .box:nth-of-type(3) .footer-logo {
    margin: 20px 0;
    text-align: center;
  }

  footer .wrap .box:nth-of-type(3) .footer-logo img {
    width: 150px;
    margin: 0 auto;
  }

  footer .wrap .box:nth-of-type(3) .copyright {
    text-align: center;
  }

  footer .wrap .box:nth-of-type(3) .copyright small {
    font-size: 9px;
    font-size: 0.9rem;
  }
}

.fade {
  opacity: 0;
  /* 最初は非表示にしておく */
  transition: all 2s;
  /* 動きを滑らかに */
}

/* フェードイン用のクラス */
.fadeIn {
  opacity: 1;
}

.cate_h4 {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin: 30px auto;
  position: relative;
}

.heading::before {
  background-color: #9D8D83;
  top: -20px;
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 70px;
}
@media screen and (max-width: 798px) {
  .cate_h4 {
    font-size: 16px;
  }
}