@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%;
}
body {
  width: 100%;
  background: #fff;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: #333;
  font-weight: normal;
  word-break: break-all;
}
@media(min-width:770px) {
  body {
    font-size: 1.6rem;
    letter-spacing: 0.2em;
    line-height: 2;
  }
}
a {
  text-decoration: none;
  color: inherit;
}
a :hover {
  transition: all 0.4s ease-out;
  color: #a8a8a8;
}
/*▼h2,h3*/
h2 {
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  line-height: 1.8;
  font-weight: 700;
}
h3 {
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
p {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media(min-width:770px) {
  h2 {
    font-size: 2.2rem;
  }
  h3 {
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    font-size: 2rem;
  }
  p {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    line-height: 1.6;
  }
}
/*▲h2,h3*/
/*▼button*/
.button {
  display: flex;
  justify-content: center;
}
.button a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 100px;
  font-size: 1.4rem;
  font-weight: normal;
  letter-spacing: 0.2em;
  text-decoration: none;
  outline: none;
  transition: all 0.8s ease-out;
}
.button a:hover {
  opacity: 0.5;
  animation: infinite;
}
@media(min-width:770px) {
  .button a {
    font-size: 1.6rem;
  }
}
/*▲button*/
*, *::before, *::after {
  box-sizing: border-box;
}
/*▲basic*/
/*▼hamburgerbutton*/
.hamburgerbutton-decoration {
  position: fixed;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  border-radius: 100px;
  background: #fff;
  cursor: pointer;
  transition: all 1s ease-out;
  width: 36px;
  height: 36px;
  top: 12px;
  right: 12px;
  z-index: 1001;
  transform: translate(-0%, -0%);
}
@media(min-width:770px) {
  .hamburgerbutton-decoration {
    width: 80px;
    height: 40px;
    top: 20px;
    right: 40px;
  }
}
.hamburgerbutton-decoration:hover {
  background: #ddd;
}
.hamburgerbutton-decoration span, .hamburgerbutton-decoration span:before, .hamburgerbutton-decoration span:after {
  content: '';
  display: block;
  height: 1.8px;
  width: 18px;
  border-radius: 3px;
  background-color: #333;
  position: absolute;
}
.hamburgerbutton-decoration span:before {
  bottom: 7px;
}
.hamburgerbutton-decoration span:after {
  top: 7px;
}
/*▲top-button*/
/*▼open*/
#check-button:checked ~ .hamburgerbutton-decoration span {
  background-color: rgba(255, 255, 255, 0);
}
#check-button:checked ~ .hamburgerbutton-decoration span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#check-button:checked ~ .hamburgerbutton-decoration span::after {
  top: 0;
  transform: rotate(-45deg);
}
#check-button {
  display: none;
}
#check-button:checked ~ .open-page {
  left: 10%;
}
@media(min-width:770px) {
  #check-button:checked ~ .open-page {
    left: 60%;
  }
}
/*▲open*/
/*▼close*/
.hamburgerbutton-decoration:hover span::before {
  background-color: #fff;
}
.hamburgerbutton-decoration:hover span::after {
  background-color: #fff;
}
.hamburgerbutton-decoration:hover span {
  background-color: #fff;
}
/*▲close*/
/*▲top-button*/
/*▼open-page*/
.open-page {
  width: 100%;
  height: 100%;
  padding: 40px 10px;
  top: 0;
  left: 100%;
  position: fixed;
  background-color: #f4f5f7;
  transition: all 0.8s;
  z-index: 1000;
  overflow-y: scroll;
}
.open-page-about {
  width: 100%;
  padding: 20px 20px 0 30px;
}
.open-page-miya {
  display: flex;
  flex-direction: column;
  padding: 20px 20px 10px 20px;
}
.open-page-miyanoya {
  display: flex;
  flex-direction: column;
  padding: 20px 20px 20px 20px;
}
.open-page-link {
  display: flex;
}
.open-page-link img {
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, .5);
  transition: all 0.4s ease-out;
  border-radius: 10px;
}
.open-page-link img:hover {
  filter: brightness(80%);
}
.open-page-name {
  margin: 3px 0 0 10px;
}
.open-page-name h3 {
  font-size: 1.6rem;
  line-height: 1.4;
  padding: 3px 0 10px;
}
.open-page-name-eg {
  line-height: 1.4;
  font-size: 1rem;
}
.open-page-link-about {
  width: 100%;
  padding: 0 10px 30px;
  border-bottom: #e8e8e8 0.1rem solid;
}
.open-page-about ul {
  flex-direction: column;
  margin: 0px 10px;
}
.open-page-link-list {
  list-style: none;
  margin-bottom: 14px;
}
.open-page-link-list h3 {
  font-size: 1.6rem;
  font-weight: 500;
}
.open-page-link-list-translation {
  color: #9F9F9F;
  font-size: 1.2rem;
  line-height: 1;
  padding-top: 2px;
}
/*▲open-page*/
/*▼footer*/
.footer-area {
  padding: 60px 3% 60px;
  background: #333;
  color: #a8a8a8;
}
.footer-shop a:hover {
  color: #606060;
  transition: all 0.4s ease-out;
}
.footer-title-list {
  width: 100%;
  display: flex;
  flex-direction: row;
}
.footer-title {
  width: 50%;
  margin: 0 2%;
}
.footer-title h3 {
  font-size: 1.6rem;
  line-height: 1.4;
  padding-bottom: 2px;
}
.footer-sub-title-list {
  width: 100%;
  display: flex;
  flex-direction: row;
}
.footer-sub-title {
  width: 50%;
  margin: 5px 2% 10px;
  padding-bottom: 10px;
  border-bottom: #a8a8a8 0.01rem solid;
}
.footer-title-en {
  font-size: 1rem;
  line-height: 1.4;
}
.footer-item-list {
  width: 100%;
  display: flex;
  flex-direction: row;
}
.footer-item {
  width: 50%;
  margin: 0 2%;
}
.footer-item ul {
  list-style: none;
}
.footer-item ul li {
  padding-bottom: 10px;
}
.footer-item a {
  font-size: 1.4rem;
}
.footer-item p {
  font-size: 1.2rem;
  color: #606060;
}
.instagram-title {
  font-size: 1.2rem;
}
.instagram-title:hover {
  color: #606060;
  transition: all 0.4s ease-out;
}
@media(min-width:770px) {
  .footer-area {
    padding: 80px 10%;
  }
  .footer-title {
    width: 240px;
  }
  .footer-title h3 {
    font-size: 1.6rem;
  }
  .footer-sub-title {
    width: 240px;
  }
  .footer-title-en {
    font-size: 1.2rem;
  }
  .footer-item {
    width: 240px;
  }
  .footer-item a {
    font-size: 1.6rem;
  }
  .footer-item p {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    line-height: 1;
  }
}
/*▼c*/
.copyright {
  background: #f4f5f7;
  font-size: 0.8rem;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  text-align: center;
  color: #B8B8B8;
  padding: 20px 0;
}
/*▲c*/
/*▲footer*/