@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;
}


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;
}

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-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  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-left: 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{
  background-color: var(--main-color);
  padding: 80px 10px 10px 10px;
  color: #fff;
}

.l_footer-wrapper{
  max-width: 1220px;
  margin: 0 auto;
  width: 90%;
  display: flex;
  gap: 10%;
  font-family: "Josefin Sans", sans-serif;
}

.f-title-text{
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  font-style: italic;
}

.f-title-sml{
  font-size: 0.75rem;
}

.links_icon{
  color: #fff;
}

.links_icon img{
  width: 24px;
  margin-top: 16px;
}

.l_footer-nav {
  margin-left: auto;
  margin-right: 8px;
}

.l_footer-nav_item {
  position: relative;
  font-size: 0.75rem;
  font-style: normal;
  letter-spacing: normal;
  border-bottom: 0.75px solid #fff;
  margin-bottom: 8px;
  width: 320px;
}

.l_footer-nav_item a {
  position: relative;
  display: block;
  color: #fff;
  text-decoration: none;
  z-index: 1;
}

.l_footer-nav_item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background-color: #4C5C68;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
}

.l_footer-nav_item a:hover::after {
  transform: scaleX(1);
}

.l_fotter-text{
  margin-top: 64px;
  padding-bottom: 10px;
  text-align: right;
  font-size: 10px;
}

@media (max-width: 768px) {
  .l_footer-wrapper{
    display: block;
  }

  .l-footer-ttl{
    margin-bottom: 32px;
  }
}

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