@charset "UTF-8";

:root {
  --black-color:#252525;
  --gray-color:#888888;
  --main-color:#C35A57;
  --white-color:#fff;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  color: var(--black-color);
  font-size: 15px;
  line-height: 1.8;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

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

a:hover {
  opacity: 0.7;
}

.header {
  position: fixed;
  height: 4.0rem;
  width: 100%;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: var(--white-color);
  border-bottom: 1px solid var(--black-color);
  overflow: hidden;
}

.h_logo img{
  max-width: 200px;
}

.h_menu{
  display: flex;
  gap: 2.0rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.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 {
  display: none;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 500;
  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%);
}


.m_hamburger.is-active .m_hamburger-bar:first-child {
  transform: translate(-50%, 12px) rotate(45deg);
}

.m_hamburger.is-active .m_hamburger-bar:nth-child(2) {
  opacity: 0;
}

.m_hamburger.is-active .m_hamburger-bar:last-child {
  transform: translate(-50%, -11px) rotate(-45deg);
}

@media screen and (max-width: 800px) {
  .h_menu{
    display: none;
  }
  .m_hamburger {
    display: block;
  }

}

/*footer*/

.fotter{
  background-color: #252525;
  color: #fff;
  padding: 1.25rem 0 1.25rem;
}

.f_logo{
  width: 100%;
  text-align: center;
  padding: 1.25rem 0 2.5rem
}

.f_logo img{
  max-width: 250px;
}

.f_menu{
  width: 100%;
  text-align: center;
  padding: 1.25rem 0 1.25rem;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  display: flex;
  justify-content: center;
}

.f_menu-item{
  position: relative;
  padding: 0 8vw;
  font-weight: 500;
}

.f_menu-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background-color: #ccc;
}

.f_bottom{
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 2.5rem;
}


@media screen and (max-width: 800px) {
  .f_menu-item{
    padding: 0 6vw;
    font-size: 0.8rem;
  }
  .f_bottom{
    font-size: 0.5rem;
}
}

@media screen and (max-width: 600px) {
  .f_menu {
    flex-direction: column;
  }

  .f_menu-item:not(:last-child)::after {
    content: none !important;
  }
}

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