* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  min-width: 375px;
  width: 100%;
  height: 100%;
  background: #B4ADA9;
  line-height: 1.15;
  letter-spacing: 0.05em;
}

body {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.05em;
  margin: 0;
  color: #666666;
}

a {
  text-decoration: none;
  transition-duration: 0.5s;
}
a:hover {
  opacity: 0.5;
}
img {
  vertical-align: bottom;
}

button {
  cursor: pointer;
}

/* Reset input[type="search"] */
.wrapper {
  height: 100%;
}

.inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
/* header */
.header {
  width: 100%;
  min-width: 375px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}
.header .header_inner {
  display: flex;
  justify-content: space-between;
  padding: 40px;
}
.header .header_logo {
  z-index: 51;
}
.header .header_logoLink {
  display: block;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 0.07em;
}
.header .header_menu {
  letter-spacing: 0.07em;
  font-size: 13px;
  font-size: 1.3rem;
  z-index: 51;
}
.header.header-menuOpen .menu_inner {
  transform: translateY(0);
}

/* header */
.menu {
  display: none;
  z-index: 50;
  background: #B4ADA9;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.menu .menu_inner {
  transform: translateY(10px);
  transition: transform 1s;
}
.menu .menu_content {
  transform: translateX(-4px) translateY(-70px) rotate(90deg);
  transform-origin: 0 bottom;
}
.menu .menu_list {
  margin-bottom: 30px;
}
.menu .menu_link {
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1.5;
}
.menu .menu_instagram {
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 130px;
  bottom: 4px;
  transform: rotate(-90deg);
}

/* menu */
.main {
  position: relative;
  margin-top: 130px;
  padding-bottom: 80px;
}

/* footer */
.fadeInOnShow {
  opacity: 0;
}
.fadeInOnShow.show {
  animation-name: fadeIn;
  animation-duration: 2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.zoomOutOnShow.show {
  animation-name: zoomOut;
  animation-duration: 2s;
  animation-timing-function: ease;
}

@keyframes zoomOut {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.loadingIcon {
  margin: 0 auto 10px;
  display: block;
  width: 20px;
  height: 20px;
  border: 4px rgba(102, 102, 102, 0.25) solid;
  border-top: 4px #666666 solid;
  border-radius: 50%;
  -webkit-animation: spCircRot 0.6s infinite linear;
  animation: spCircRot 0.6s infinite linear;
}

@-webkit-keyframes spCircRot {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes spCircRot {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.loadingText {
  text-align: center;
  font-size: 10px;
  font-size: 1rem;
}

.template_for_loadnext {
  display: none;
}

/* wordpress contents */
.wpArticleContent {
  text-align: justify;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 2;
}
.wpArticleContent img {
  width: 100%;
  display: block;
}
.wpArticleContent h1, .wpArticleContent h2, .wpArticleContent h3, .wpArticleContent h4, .wpArticleContent h5, .wpArticleContent h6, .wpArticleContent ul, .wpArticleContent ol {
  margin-bottom: 5px;
}
.wpArticleContent p {
  margin-bottom: 10px;
}
.wpArticleContent p:has(img) {
  margin-bottom: 5px;
}
.wpArticleContent strong {
  font-weight: bold;
}
.wpArticleContent em {
  font-style: italic;
}
.wpArticleContent a {
  text-decoration: underline;
}