@charset "UTF-8";

:root {
  --main-color: #4C5C68;
  --white-color: #fff;
  --gray-color: #aaa;
  --gray-color02: #fafafa;
  --primary-color:  #F6BBC6;
  --accent-color:#C4A484;
}

:root {
  --content-width-sm: 800px;
  --content-width: 960px;
  --content-width-lg: 1088px;
}

:root {
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  color: var(--black-color);
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.8;
  letter-spacing: 0.1em;
  background-color: #F0F0F0;
}

body.js_body.is-active {
  overflow: hidden;
}

.l_header {
  position: fixed;
  height: 80px;
  width: 100%;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
}

.l_header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9); /* 白透明 */
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.l_header-nav.is-active {
  display: flex;
  opacity: 1;
}

.l_header-nav_item {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: normal;
  margin-bottom: 32px
}

.l_header_links_list{
  display: flex;
  gap: 24px;
}

.m_hamburger {
  width: 32px;
  height: 24px;
  position: relative;
  z-index: var(--z-index-menu);
  margin-right: auto;
  cursor: pointer;
}

.m_hamburger-bar {
  width: 100%;
  height: 2px;
  position: absolute;
  background: var(--black-color);
  left: 50%;
  transition: 0.3s ease;
}

.m_hamburger-bar:first-child {
  top: 0;
  transform: translate(-50%, 0);
}

.m_hamburger-bar:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.m_hamburger-bar:last-child {
  top: 100%;
  transform: translate(-50%, -100%);
}


.l_fotter{
  margin-top: 120px;
  color: #fff;
}

.l_fotter-bottom{
  background-color: #AEB4C4;
  padding-top: 80px;
}

.l_fotter-text{
  padding-bottom: 12px;
  text-align: center;
  font-size: 10px;
  font-weight: 400;

}

@media screen and (max-width: 768px) {
  .l_footer-links{
    gap:32px;
  }
}

.fixed-banner {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999;
}

.fixed-banner img{
  width: 120px;
}

.banner-link {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.banner-link:hover {
  opacity: 0.7;
}

@media screen and (max-width: 500px) {
  .fixed-banner img{
    width: 100px;
  }
}

.wp-block-paragraph {
  white-space: normal !important;
}