@charset "UTF-8";
/**** 共通カラー ****/
/* CSS Document */
@font-face {
  font-family: "NotoSerifJP";
  src: url("../font/NotoSerifJP-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "NotoSerifJP-Medium";
  src: url("../font/NotoSerifJP-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "NotoSerifJP-Bold";
  src: url("../font/NotoSerifJP-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "bodoni-72-book";
  src: url("../font/bodoni-72-book.ttf") format("truetype");
}
@font-face {
  font-family: "bodoni-72-bold";
  src: url("../font/bodoni-72-bold.ttf") format("truetype");
}
@font-face {
  font-family: "trajan-pro-regular";
  src: url("../font/trajan-pro-regular.ttf") format("truetype");
}
@font-face {
  font-family: "trajan-pro-3-bold";
  src: url("../font/trajan-pro-3-bold.ttf") format("truetype");
}
@font-face {
  font-family: "ZenKurenaido-Regular";
  src: url("../font/ZenKurenaido-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "CormorantGaramond-Medium";
  src: url("../font/CormorantGaramond-Medium.ttf") format("truetype");
}
body.is-splash {
  overflow: hidden;
}

.text-medium {
  font-family: "NotoSerifJP-Medium";
}

.text-bold {
  font-family: "NotoSerifJP-Bold";
}

.text-o {
  font-family: "bodoni-72-book";
}

.text-o-bold {
  font-family: "bodoni-72-bold";
}

.text-t {
  font-family: "trajan-pro-regular";
}

.text-t-b {
  font-family: "trajan-pro-3-bold";
}

html {
  font-size: 62.5%;
  line-height: 1;
  scroll-behavior: smooth;
}

body {
  font-family: "NotoSerifJP", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "游明朝体", "MS PMincho", "serif";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  background-color: #080605;
  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: 992px) {
  main {
    overflow: hidden;
  }
}

img {
  max-width: 100%;
}

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

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

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

.br-sm {
  display: none;
}
@media screen and (max-width: 576px) {
  .br-sm {
    display: block;
  }
}

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

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

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

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

.inner.is-fluid {
  max-width: none;
  width: 100%;
}

.l-flex {
  display: flex;
}

.header.is-bg {
  padding-bottom: 30px;
}
.header.is-bg::after {
  opacity: 1;
  transition: 0.3s;
}
@media screen and (max-width: 992px) {
  .header.is-bg {
    padding-bottom: 0;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  transition: 0.3s;
}
.header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  opacity: 0;
  transition: 0.3s;
}
.header .header-logo img {
  max-width: 120px;
  -o-object-fit: cover;
     object-fit: cover;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 12.7083333333vw;
  background: linear-gradient(rgba(8, 6, 5, 0.8) 0%, rgba(4, 3, 3, 0.28) 70.3%, rgba(0, 0, 0, 0) 100%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}
@media screen and (max-width: 992px) {
  .header::before {
    height: 180px;
  }
}
.header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 83.3333333333vw;
  margin: auto;
  padding-top: 25px;
}
@media screen and (max-width: 992px) {
  .header .header_inner {
    width: 100%;
    padding: 24px 20px 20px 20px;
  }
}
@media screen and (max-width: 992px) {
  .header .header_inner .header-logo {
    width: 21.3333333333vw;
    max-width: 120px;
    z-index: 999;
  }
  .header .header_inner .header-logo img {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .header .header_inner .header-logo {
    width: 80px;
  }
}
.header .header_menu {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .header .header_menu {
    flex-direction: column;
  }
}
.header .header_menu li {
  position: relative;
}
@media screen and (max-width: 992px) {
  .header .header_menu li {
    width: 100%;
  }
}
.header .header_menu li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background-color: #ffffff;
}
.header .header_menu li:nth-child(3) {
  margin-right: 14px;
}
.header .header_menu li:nth-child(3)::after {
  display: none;
}
.header .header_menu li a {
  display: block;
  color: #fff;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  padding: 0 26px;
  transition: 0.3s;
}
.header .header_menu li a:hover {
  color: #b69130;
}
.header .header_menu .tel-btn {
  border: solid 1px #ffffff;
  margin-right: 20px;
  text-align: center;
}
.header .header_menu .tel-btn::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5vw;
  max-width: 36px;
  height: 1px;
  background-color: #ffffff;
}
@media screen and (max-width: 1200px) {
  .header .header_menu .tel-btn::after {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .header .header_menu .tel-btn::after {
    display: inline-block;
  }
}
.header .header_menu .tel-btn a {
  width: 16.6666666667vw;
  max-width: 240px;
  padding: 16px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.header .header_menu .tel-btn a::before {
  display: inline-block;
  content: "";
  background-image: url(../image/common/tel-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 17px;
  height: 17px;
}
.header .header_menu .tel-btn a:hover {
  background-color: #b69130;
  color: #ffffff;
}
.header .header_menu .tel-btn span {
  display: inline-block;
  margin-left: 8px;
}
.header .header_menu .recruit-btn {
  border: solid 1px #ffffff;
  text-align: center;
}
.header .header_menu .recruit-btn::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5vw;
  max-width: 36px;
  height: 1px;
  background-color: #ffffff;
}
@media screen and (max-width: 1200px) {
  .header .header_menu .recruit-btn::after {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .header .header_menu .recruit-btn::after {
    display: inline-block;
  }
}
.header .header_menu .recruit-btn a {
  width: 16.6666666667vw;
  max-width: 240px;
  padding: 16px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.header .header_menu .recruit-btn a::before {
  display: inline-block;
  content: "";
  background-image: url(../image/common/search-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
}
.header .header_menu .recruit-btn a:hover {
  background-color: #b69130;
  color: #ffffff;
}
.header .header_menu .recruit-btn span {
  display: inline-block;
  margin-left: 8px;
}

.sp-menu-tit {
  display: none;
}

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

@media screen and (max-width: 992px) {
  #switch ~ label {
    position: fixed;
    box-sizing: border-box;
    top: 30px;
    right: 20px;
    cursor: pointer;
    z-index: 99;
  }
  #switch ~ label .hamburger {
    width: 50px;
    height: 16px;
  }
  #switch ~ label .hamburger span {
    display: block;
    height: 2px;
    background: #ffffff;
    position: absolute;
    right: 0;
    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 {
    width: 50px;
    top: 0px;
  }
  #switch ~ label .hamburger span:nth-child(2) {
    width: 40px;
    top: 8px;
  }
  #switch ~ label .hamburger span:last-child {
    width: 30px;
    top: 16px;
  }
  #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 {
    top: 8px;
    width: 50px;
    transform: rotate(28deg);
  }
  #switch:checked ~ label .hamburger span:nth-child(2) {
    opacity: 0;
  }
  #switch:checked ~ label .hamburger span:last-child {
    top: 8px;
    width: 50px;
    transform: rotate(-28deg);
  }
  #switch:checked ~ #NavWrap {
    opacity: 1;
    pointer-events: auto;
    /* クリックを有効化 */
    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: rgba(0, 0, 0, 0.6); /* ← 黒寄り */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    padding: 0 20px;
    box-sizing: border-box;
    transition: right 0.5s ease;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
  }
  #switch:checked ~ #NavWrap {
    opacity: 1;
    pointer-events: auto;
  }
  #NavWrap .header_menu {
    margin-top: 100px;
  }
  #NavWrap .header_menu li {
    margin: 0;
    border-bottom: solid 1px #707070;
  }
  #NavWrap .header_menu li:first-child {
    border-top: solid 1px #707070;
  }
  #NavWrap .header_menu li > a {
    font-size: 14px;
    padding: 30px 10px;
    display: flex;
    align-items: center;
  }
  #NavWrap .header_menu li > a .sp-menu-tit {
    display: inline-block;
    font-size: 20px;
    margin-right: 18px;
    width: 40%;
  }
  #NavWrap .header_menu li.tel-btn {
    margin: 40px auto 0;
    width: 280px;
    border: solid 1px #707070;
  }
  #NavWrap .header_menu li.tel-btn a {
    font-size: 16px;
    width: 100%;
    max-width: 100%;
    padding: 14px;
  }
  #NavWrap .header_menu li.tel-btn::after {
    display: block;
    width: 40px;
  }
  #NavWrap .header_menu li::after {
    display: none;
  }
  #NavWrap .header_menu li.recruit-btn {
    margin: 24px auto 0;
    width: 280px;
    border: solid 1px #707070;
  }
  #NavWrap .header_menu li.recruit-btn a {
    font-size: 16px;
    width: 100%;
    max-width: 100%;
    padding: 14px;
  }
  #NavWrap .header_menu li.recruit-btn::after {
    display: block;
    width: 40px;
  }
  #NavWrap .header_menu li::after {
    display: none;
  }
}
footer {
  background-color: #000000;
  padding-top: 70px;
  color: #ffffff;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 0;
  }
}
footer .inner-footer {
  background-color: #080605;
  padding: 46px 0 100px 0;
}
@media screen and (max-width: 768px) {
  footer .inner-footer {
    padding: 100px 0;
  }
}
footer h3 {
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  footer h3 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: left;
    padding-left: 20px;
  }
}
footer .footer-list {
  justify-content: space-between;
  padding-top: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  footer .footer-list {
    padding-top: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
footer .footer-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  opacity: 0.3;
}
footer .footer-list li {
  margin-right: 40px;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
}
@media screen and (max-width: 768px) {
  footer .footer-list li {
    width: 50%;
    text-align: left;
    font-size: 14px;
    margin: 0 0 26px 0;
  }
}
footer .footer-list li a {
  transition: 0.3s;
}
footer .footer-list li a:hover {
  color: #b69130;
}
footer small {
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  display: block;
  text-align: center;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  footer small {
    font-size: 12px;
    text-align: left;
    margin-top: 30px;
    padding-left: 20px;
  }
}

/*ページナビゲーション--------------------------------------*/
.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;
  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;
  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;
  }
}/*# sourceMappingURL=common.css.map */