@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #000; /* RGB */
  background-color: #fcfcfc;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.4rem;
  text-align: center;
  margin: 0;
}
*, *:before, *:after {
  box-sizing: border-box;
}
#header {
  height: 60px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  background-color: #fcfcfc;
}
/*==ふわっと出現させるためのCSS*/
/*　上に上がる動き　*/
#header.UpMove {
  position: fixed;
  width: 100%;
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-60px);
  }
}
/*　下に下がる動き　*/
#header.DownMove {
  position: fixed;
  width: 100%;
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.header_inner {
  display: flex;
  justify-content: space-between;
}
header h1 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  padding-top: 21px;
  padding-left: 40px;
}
header h1 a {
  text-decoration: none;
  color: #000;
}
.header_sp_instagram {
  display: none;
}
header nav {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  padding-top: 15px;
}
header nav ul {
  color: #000;
  display: flex;
  align-items: center;
}
header nav ul li {
  margin-right: 40px;
  position: relative;
}
header nav ul li a:hover {
  color: #7F7F7F;
}
.header_works {
  padding-left: 40px;
}
.header_works::before {
  content: "";
  width: 0.5px;
  height: 12px;
  background-color: #000;
  position: absolute;
  top: 7px;
  left: 0px;
}
.header_contact a {
  border: solid 0.5px #000;
  padding: 5px 15px;
  transition: 0.4s;
}
.header_contact a:hover {
  background-color: #000;
  color: #fff;
  transition: 0.4s;
}
.header_instagram a img {
  width: 20px;
  padding-top: 6px;
}
header nav ul li a {
  color: #000;
  text-decoration: none;
}
@media (max-width:834px) {
  .body.active {
    height: 100%;
    overflow: hidden;
  }
  #header {
    height: 50px;
  }
  .header_sp_instagram {
    display: block;
    position: fixed;
    width: 20px;
    top: 13px;
    right: 70px;
  }
  .header_sp_instagram img {
    width: 100%;
  }
  header nav {
    display: none;
    z-index: 1000;
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #111;
    text-align: center;
    padding-top: 100px;
  }
  header h1 {
    padding-top: 13px;
  }
  header nav ul {
    display: block;
    background-color: transparent;
  }
  header nav ul li {
    padding: 0;
    margin: 0;
  }
  header nav ul li a {
    display: inline-block;
    font-size: 1.6rem;
    width: 50%;
    color: #fff;
    padding-bottom: 50px;
  }
  .header_works {
    padding-left: 0px;
  }
  .header_works::before {
    display: none;
  }
  .header_contact a {
    border: none;
    transition: none;
    padding: 0 0 50px;
  }
  .header_instagram {
    display: none;
  }
  #open-button {
    display: block;
    position: fixed;
    right: 15px;
    top: 3px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1100;
  }
  #open-button span {
    display: block;
    position: absolute;
    top: 12px;
    left: 7px;
    width: 25px;
    height: 1px;
    border-radius: 5px;
    background: #000;
    transition: 0.3s;
  }
  #open-button span:nth-child(2) {
    margin-top: 7px;
    transition: 0.3s;
  }
  #open-button span:last-child {
    margin-top: 14px;
    transition: 0.3s;
  }
  #open-button.open span {
    top: 20px;
    left: 7px;
    width: 25px;
    margin: 0;
  }
  #open-button.open span:first-child {
    transform: rotate(45deg);
  }
  #open-button.open span:nth-child(2) {
    display: none;
  }
  #open-button.open span:last-child {
    transform: rotate(-45deg);
  }
}
@media (max-width:630px) {
  header h1 {
    padding-left: 15px;
  }
}
.arrow {
  width: 20px;
}
.arrow img {
  width: 100%;
}
.contact_pc {
  text-align: center;
  margin: 200px auto;
  max-width: 1200px;
}
.contact_pc_button a {
  display: block;
  width: 100%;
  height: 100%;
  border: solid 0.5px #000;
  text-decoration: none;
  color: #000;
  position: relative;
  transition: all .3s ease 0s;
}
.contact_pc_button a h2 {
  padding: 60px 0 30px;
  text-decoration: none;
  color: #000;
}
.contact_pc_button a p {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  padding-bottom: 60px;
  text-decoration: none;
  color: #000;
}
.contact_pc_button a:hover {
  background-color: #F9F0EA;
  border: solid 0.5px #000;
  border-radius: 200px;
}
.contact_sp {
  display: none;
}
@media (max-width:1200px) {
  .contact_pc_button {
    margin: 0 40px;
  }
}
@media (max-width:800px) {
  .contact_pc {
    display: none;
  }
  .contact_sp {
    display: block;
    text-align: left;
  }
  .contact_sp_inner {
    max-width: 800px;
    margin: 200px 40px;
  }
  .contact_sp_inner p {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 400;
  }
  .contact_sp_inner a {
    color: #000;
    text-decoration: none;
  }
  .contact_button {
    border: solid 0.5px #000;
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }
  .contact_button h2 {
    padding: 30px 0;
    position: relative;
  }
  .contact_button h2::after {
    content: "";
    display: block;
    background-image: url("../images/common/Polygon 2.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 13px;
    height: 23px;
    position: absolute;
    top: 35px;
    right: 30px;
  }
}
@media (max-width:630px) {
  .contact_sp_inner {
    margin: 100px 15px;
  }
}
.footer {
  background-color: #111;
  width: 100%;
  height: 200px;
  position: relative;
}
.footer small {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  position: absolute;
  color: #FFF;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}
#scroll-top {
  width: 40px;
  height: 40px;
  bottom: 3%;
  right: 3%;
  position: fixed;
}
#scroll-top a {
  text-decoration: none;
}
#scroll-top img {
  width: 100%;
  height: 100%;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin-top: 100px;
  padding-left: 40px;
}
.breadcrumb li {
  font-size: 1.4rem;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
}
.breadcrumb li:not(:last-of-type)::after {
  content: "›";
  margin: 1em; /* 記号の左右の余白 */
  color: #000; /* 記号の色 */
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
}
.breadcrumb li:last-child {
  font-weight: 500;
}
.breadcrumb li a {
  color: #000;
  text-decoration: none;
}
.breadcrumb li a:hover {
  color: #7F7F7F;
}
@media (max-width:630px) {
  .breadcrumb {
    padding-left: 15px;
  }
}