@charset "UTF-8";
/**** 共通カラー ****/
/* CSS Document */
@font-face {
  font-family: "NotoSerifJP-Black";
  src: url("../font/NotoSerifJP-Black.ttf");
}
@font-face {
  font-family: "NotoSerifJP-Bold";
  src: url("../font/NotoSerifJP-Bold.ttf");
}
@font-face {
  font-family: "NotoSerifJP-SemiBold";
  src: url("../font/NotoSerifJP-SemiBold.ttf");
}
@font-face {
  font-family: "NotoSerifJP-Medium";
  src: url("../font/NotoSerifJP-Medium.ttf");
}
@font-face {
  font-family: "NotoSerifJP-Regular";
  src: url("../font/NotoSerifJP-Regular.ttf");
}
@font-face {
  font-family: "NotoSerifJP-Light";
  src: url("../font/NotoSerifJP-Light.ttf");
}
@font-face {
  font-family: "NotoSansJP-Regular";
  src: url("../font/NotoSansJP-Regular.ttf");
}
html {
  font-size: 62.5%;
  line-height: 1;
  scroll-behavior: smooth;
}

body {
  font-family: "NotoSerifJP-Medium", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "游明朝体", "MS PMincho", "serif";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  color: #3e3a39;
  background-color: #ffffff;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  box-sizing: border-box;
  background-repeat: repeat-y;
  background-size: 100%;
}

@media screen and (max-width: 768px) {
  main {
    overflow: hidden;
  }
}

img {
  max-width: 100%;
}

a {
  display: block;
  width: 100%;
}

.display_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .display_sp {
    display: block;
  }
}

.display_pc {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .display_pc {
    display: none;
  }
}

.nul {
  position: relative;
  top: -100px;
}

.w1200 {
  max-width: 1200px;
  width: calc(100% - 40px);
  margin: auto;
}

.header {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 60px;
}
.header .header_inner {
  width: 100%;
  height: 60px;
  background: #f0ebe6;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 98;
}
.header .header_inner .header-logo img {
  max-width: 192px;
}

/*ハンバーガー--------------------------------------*/
#switch {
  display: none;
}

#switch ~ label {
  position: fixed;
  box-sizing: border-box;
  top: 18px;
  right: 22px;
  cursor: pointer;
  z-index: 99;
}

#switch ~ label .hamburger {
  height: 16px;
}

#switch ~ label .hamburger span {
  display: block;
  width: 30px;
  height: 2px;
  background: #3e3a39;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out, top 0.3s ease-in-out;
}

#switch ~ label .hamburger span:first-child {
  top: 0px;
}

#switch ~ label .hamburger span:nth-child(2) {
  top: 8px;
}

#switch ~ label .hamburger span:last-child {
  top: 16px;
}

#switch ~ label .menu {
  font-family: "NotoSerifJP-Black";
  margin-top: 5px;
  font-size: 0.9rem;
  line-height: 1.4444444444;
}

#switch ~ label .menu .close {
  display: none;
}

#switch ~ .header_nav_cover {
  width: 100%;
  height: 100vh;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.2);
  visibility: hidden;
  transition: opacity 0.5s ease;
}

#switch:checked ~ .header_nav_cover {
  opacity: 1;
  visibility: visible;
}

/* チェック時のアニメーション */
#switch:checked ~ label .hamburger span:first-child {
  transform: rotate(30deg);
  top: 12px;
}

#switch:checked ~ label .hamburger span:nth-child(2) {
  opacity: 0;
}

#switch:checked ~ label .hamburger span:last-child {
  transform: rotate(-30deg);
  top: 12px;
}

#switch:checked ~ #NavWrap {
  opacity: 1;
  pointer-events: auto;
  /* クリックを有効化 */
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  /* クリップを解除 */
  transition: opacity 0.2s ease-out;
}

#switch:checked ~ label .menu .open {
  display: none;
}

#switch:checked ~ label .menu .close {
  display: block;
}

#NavWrap {
  position: fixed;
  z-index: 97;
  background: #ffffff;
  top: 0;
  right: -100%;
  width: 28.8194444444vw;
  max-width: 415px;
  height: 100vh;
  padding: 0 40px;
  box-sizing: border-box;
  transition: right 0.5s ease;
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  #NavWrap {
    width: 100%;
  }
}

#switch:checked ~ #NavWrap {
  right: 0;
  transition: 0.5s;
}

#NavWrap .header_menu {
  margin-top: 130px;
}
#NavWrap .header_menu li {
  border-bottom: solid 1px #3e3a39;
  margin-bottom: 22px;
}
#NavWrap .header_menu li > a {
  font-size: clamp(1.8rem, 2vw, 2rem);
  padding-bottom: 24px;
}
#NavWrap .header_menu li > a > span {
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-family: "NotoSerifJP-Regular";
  display: inline-block;
  margin-left: 20px;
}
#NavWrap .header_menu .law_link {
  border: none;
  margin-bottom: 0;
  margin-top: 44px;
}
@media screen and (max-width: 768px) {
  #NavWrap .header_menu .law_link {
    margin-top: 20px;
  }
}
#NavWrap .header_menu .law_link a {
  padding: 24px 0;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
}
@media screen and (max-width: 768px) {
  #NavWrap .header_menu .law_link a {
    padding: 12px 0;
  }
}

.site_tittle {
  text-align: center;
  background-color: #ffffff;
  padding: 110px 0 50px 0;
}
@media screen and (max-width: 768px) {
  .site_tittle {
    padding: 105px 0 50px 0;
  }
}
.site_tittle img {
  max-width: 75px;
}
@media screen and (max-width: 768px) {
  .site_tittle img {
    max-width: 105px;
  }
}

footer .footer-wrapper {
  background-color: #f0ebe6;
  padding-top: 72px;
  padding-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  footer .footer-wrapper {
    padding-top: 57px;
    padding-bottom: 100px;
  }
}
footer .footer-wrapper .w1200 {
  position: relative;
}
footer .footer-wrapper .w1200::after {
  content: "";
  position: absolute;
  background-image: url(../image/footer_logo.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100px;
  height: 34px;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  footer .footer-wrapper .w1200::after {
    bottom: -26px;
    transform: translateY(50%);
  }
}
footer .footer-wrapper p > span {
  display: inline-block;
  margin-right: 10px;
}
footer .company_name {
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
  margin-bottom: 30px;
}
footer .tel {
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  margin-bottom: 9px;
}
footer .fax {
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  margin-bottom: 9px;
}
footer .time {
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  margin-bottom: 19px;
}
footer .access {
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  line-height: 1.8;
}

.members_btn {
  position: fixed;
  z-index: 99;
  bottom: 18px;
  right: 18px;
  width: 70px;
  height: 70px;
  background-color: #3e3a39;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.members_btn img {
  max-width: 43px;
}

/*ページナビゲーション--------------------------------------*/
.navigation {
  width: 100%;
}

.wp-pagenavi {
  clear: both;
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin: auto;
}

.navigation .pages {
  display: none;
}

.wp-pagenavi a,
.wp-pagenavi span {
  width: 40px;
  height: 40px;
  margin: 0 4px;
  white-space: nowrap;
  border-radius: 10px;
  transition: 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wp-pagenavi a:hover {
  color: #fff;
}
.wp-pagenavi a:hover:before {
  background-color: #fff;
}

.wp-pagenavi .previouspostslink {
  position: relative;
}
.wp-pagenavi .previouspostslink:before {
  content: "";
  display: block;
  -webkit-clip-path: polygon(0 7%, 7% 0, 57% 50%, 7% 100%, 0 93%, 43% 50%, 0 7%);
          clip-path: polygon(0 7%, 7% 0, 57% 50%, 7% 100%, 0 93%, 43% 50%, 0 7%);
  height: 14px;
  aspect-ratio: 1;
  transform: scale(-1, 1);
  transition: 0.2s ease-in-out;
  position: absolute;
  top: 14px;
  left: 8px;
}

.wp-pagenavi .nextpostslink {
  position: relative;
}
.wp-pagenavi .nextpostslink:before {
  content: "";
  display: block;
  -webkit-clip-path: polygon(0 7%, 7% 0, 57% 50%, 7% 100%, 0 93%, 43% 50%, 0 7%);
          clip-path: polygon(0 7%, 7% 0, 57% 50%, 7% 100%, 0 93%, 43% 50%, 0 7%);
  height: 14px;
  aspect-ratio: 1;
  transition: 0.2s ease-in-out;
  position: absolute;
  top: 14px;
  right: 8px;
}

/*ページナビここまで--------------------------------------*/
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/*404---------------------------------------------------*/
.page404 h1 {
  text-align: center;
  margin-bottom: 37px;
  font-size: clamp(2.8rem, 3.2vw, 4.2rem);
}
.page404 h1 span {
  display: block;
  margin-top: 20px;
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
}
.page404 .error-wrapper {
  text-align: center;
  line-height: 1.8;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
}
.page404 .error-wrapper .description {
  margin-bottom: 37px;
}
.page404 .error-wrapper .top-back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
}
.page404 .error-wrapper .top-back-btn a {
  display: inline-block;
  padding: 10px 20px;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  background-color: #3e3a39;
  color: #fff;
  max-width: 240px;
}

body {
  display: flex;
  flex-flow: column;
  min-height: 100vh;
}

main {
  flex: 1;
}/*# sourceMappingURL=common.css.map */