@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700;900&family=Noto+Serif:wght@500;700&family=Oswald:wght@600");
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Serif", serif;
  font-size: 16px;
  font-weight: 500;
  color: #231815;
  line-height: 1.8888;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: transparent;
  overflow-x: hidden;
  overflow-wrap: break-word;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}

body.page-template-page-standard_go,
body.page-template-page-light_go,
body.page-template-page-wpc_standard_go,
body.page-template-page-wpc_light_go {
  font-family: "Noto Sans JP", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}

iframe {
  max-width: 100%;
}

a {
  cursor: pointer;
  transition: all 0.3s ease 0s;
  color: inherit;
}
a:hover {
  opacity: 0.7;
  color: inherit;
  text-decoration: none;
}

.container {
  width: 1230px;
  max-width: 100%;
  margin: 0 auto;
  height: inherit;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 767px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.container_wide {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.container_wide_left {
  margin-left: calc(50% - 50vw);
}

.container_wide_right {
  margin-right: calc(50% - 50vw);
}

.f_go {
  font-family: "Noto Sans JP", sans-serif;
}

.f_oswald {
  font-family: "Oswald", sans-serif;
}

@media (max-width: 991px) {
  .pc {
    display: none;
  }
}

@media (max-width: 767px) {
  .tapc {
    display: none;
  }
}

.ta {
  display: none;
}
@media (max-width: 991px) {
  .ta {
    display: block;
  }
}
@media (max-width: 767px) {
  .ta {
    display: none;
  }
}

.spta {
  display: none;
}
@media (max-width: 991px) {
  .spta {
    display: block;
  }
}

.sp {
  display: none;
}
@media (max-width: 767px) {
  .sp {
    display: block;
  }
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.jcsb {
  justify-content: space-between;
}

.aic {
  align-items: center;
}

.tac {
  text-align: center;
}

.color_white {
  color: #fff;
}

.color_main {
  color: #4D4039;
}

.c_orange {
  color: #d96929;
}

/*=============================================
# ヘッダー
============================================= */
.header {
  box-shadow: none;
  transition: 1s ease;
  height: 100px;
  background: #fff;
}
@media (max-width: 991px) {
  .header {
    height: 60px;
  }
}
.header .header_container {
  padding-left: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991px) {
  .header .header_container {
    padding-left: 24px;
  }
}
.header .header_logo {
  width: 225px;
  padding: 6px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header .header_logo img {
  max-height: 68px;
  object-fit: contain;
}
@media (max-width: 991px) {
  .header .header_logo {
    width: auto;
  }
  .header .header_logo img {
    max-height: 48px;
  }
}
.header .header_nav_wrap {
  width: 980px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .header .header_nav_wrap {
    width: 800px;
  }
}
@media (max-width: 991px) {
  .header .header_nav_wrap {
    display: none;
  }
}
.header .header_nav_wrap:not(:has(.header_nav)) {
  justify-content: flex-end;
}
.header .header_contact {
  width: 130px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #231815;
}
.header .header_contact .header_contact_img img {
  display: block;
  margin: 0 auto;
}
.header .header_contact .header_contact_text {
  margin-top: 4px;
  color: #fff;
  font-size: 14px;
}
.header .header_nav {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 780px;
}
@media (max-width: 1199px) {
  .header .header_nav {
    width: 640px;
  }
}
.header .header_nav_item {
  text-align: center;
  font-size: 18px;
  color: #4D4039;
  position: relative;
}
@media (max-width: 1199px) {
  .header .header_nav_item {
    font-size: 16px;
  }
}
.header .header_nav_item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  width: 1px;
  height: 70%;
  border-left: 1px solid #4D4039;
  transform: translateY(-50%) rotate(45deg);
}
@media (max-width: 1199px) {
  .header .header_nav_item:not(:first-child)::before {
    left: -18px;
  }
}
.header .header_nav_item a {
  text-decoration: none;
  position: relative;
  padding: 6px 0;
}
.header .header_nav_item a::after {
  content: "";
  background: #4D4039;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
.header .header_nav_item a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

/*
menu-toggle（ハンバーガーアイコン）
=================================== */
.menu-wrapper {
  position: relative;
  z-index: 9999;
  display: none;
}
@media (max-width: 991px) {
  .menu-wrapper {
    display: block !important;
  }
}

.menu-toggle {
  position: fixed;
  right: 16px;
  top: 16px;
  width: 40px;
  height: 30px;
  cursor: pointer;
  z-index: 300;
}

.menu-toggle__line {
  position: absolute;
  width: 40px;
  height: 1px;
  right: 0;
  background-color: #000;
  transition: all 0.5s;
}

.menu-toggle__line--top {
  top: 1px;
}

.menu-toggle__line--middle {
  top: 12px;
}

.menu-toggle__line--bottom {
  top: 24px;
}

.open .menu-toggle__line--top {
  transform: rotate(-45deg);
  top: 11px;
}

.open .menu-toggle__line--middle {
  opacity: 0;
}

.open .menu-toggle__line--bottom {
  transform: rotate(45deg);
  top: 11px;
}

.menu-btn {
  width: 145px;
  padding: 3px 0;
  background-color: #f0844a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  grid-gap: 6px;
  position: fixed;
  top: 15px;
  right: 70px;
}
.menu-btn::before {
  content: "";
  width: 24px;
  height: 18px;
  background: url(../img/mail.svg) center/contain no-repeat;
  display: block;
  flex-shrink: 0;
}
.menu-btn:hover {
  color: #fff;
}
@media (max-width: 767px) {
  .menu-btn {
    display: flex;
  }
}

.menu-panel {
  position: fixed;
  right: -100%;
  top: 0;
  width: 70%;
  height: 100vh;
  background-color: #fff;
  transition: all 0.5s;
  z-index: 200;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-panel li {
  padding: 10px 0;
  text-align: center;
}

.open .menu-panel {
  right: 0;
}

.menu-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100;
}

.open .menu-overlay {
  opacity: 0.3;
  visibility: visible;
}

/*=============================================
# フッター
============================================= */
.footer {
  background: #fff;
}
.footer .footer_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 2.5rem 60px;
  max-width: 1120px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .footer .footer_container {
    padding: 2.5rem 24px 5rem;
  }
}
@media (max-width: 991px) {
  .footer .footer_info {
    width: 100%;
    text-align: center;
  }
}
.footer .footer_companyname {
  font-size: 22px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .footer .footer_companyname {
    font-size: 20px;
  }
}
.footer .footer_address {
  line-height: 1.5;
  margin-top: 4px;
}
.footer .footer_tel_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .footer .footer_tel_wrap {
    margin: 2rem auto 0;
  }
}
@media (max-width: 767px) {
  .footer .footer_tel_wrap {
    margin-top: 1.5rem;
  }
}
.footer .footer_tel_wrap_text {
  font-size: 18px;
  line-height: 1.5;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .footer .footer_tel_wrap_text {
    font-size: 12px;
  }
}
.footer .footer_tel_link a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 6px;
}
.footer .footer_tel_img {
  margin-right: 10px;
}
@media (max-width: 767px) {
  .footer .footer_tel_img {
    width: 20px;
    margin-right: 4px;
  }
}
.footer .footer_tel_num {
  font-size: 52px;
  line-height: 1;
}
@media (max-width: 767px) {
  .footer .footer_tel_num {
    font-size: 26px;
  }
}

.footer_nav {
  width: calc(100% - 50px);
  height: 50px;
  background-color: #fff;
  border-right: 1px solid #fff;
  display: none;
  grid-template-columns: auto 105px;
  grid-gap: 1px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99999;
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
}
@media (max-width: 767px) {
  .footer_nav {
    display: grid;
  }
}

@media (max-width: 767px) {
  .scrolled .footer_nav {
    opacity: 1;
    pointer-events: auto;
  }
}

.footer_nav_contact {
  width: 100%;
  background-color: #f0844a;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 6px;
}
.footer_nav_contact::before {
  content: "";
  width: 34px;
  height: 25px;
  background: url(../img/mail.svg) center/contain no-repeat;
  display: block;
  flex-shrink: 0;
}
.footer_nav_contact:hover {
  color: #fff;
}

.footer_nav_tel {
  width: 100%;
  background: #231815;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 2px;
}
.footer_nav_tel::before {
  content: "";
  width: 25px;
  height: 20px;
  background: url(../img/phone.svg) center/contain no-repeat;
  display: block;
  flex-shrink: 0;
}

/*=============================================
# cmn
============================================= */
.vk-mobile-nav-menu-btn {
  display: none !important;
}
.page_top_btn { /* vk-default */
  position: fixed;
  right: 2%;
  bottom: 3%;
  z-index: 99999;
  width: 40px;
  height: 38px;
  color: transparent;
  border: none;
  background: rgba(0, 0, 0, .8);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .8), 0 0 0 2px rgba(0, 0, 0, .8);
  background-image: url(../img/to-top-btn-icon.svg);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity .3s;
  text-decoration: none;
}
.scrolled .page_top_btn {
  display: block;
  opacity: 1;
  color: transparent;
}
.page_top_btn {
  width: 60px;
  height: 60px;
  box-shadow: none;
  bottom: 0;
  right: 0;
}
@media (max-width: 767px) {
  .page_top_btn {
    width: 50px;
    height: 50px;
    background-color: #231815;
  }
}

.c_main {
  color: #4D4039;
}

.c_white {
  color: #fff;
}

.tdno {
  text-decoration: none;
}

.fadein {
  opacity: 0;
  transition: 1s linear;
  transform: translateY(20px);
}
.fadein.is_active {
  opacity: 1;
  transform: translateY(0);
}
.fadein.delay1 {
  transition-delay: 0.5s;
}
@media (max-width: 767px) {
  .fadein.delay1 {
    transition-delay: 0;
  }
}
.fadein.delay2 {
  transition-delay: 1s;
}
@media (max-width: 767px) {
  .fadein.delay2 {
    transition-delay: 0;
  }
}
.fadein.delay3 {
  transition-delay: 1.5s;
}
@media (max-width: 767px) {
  .fadein.delay3 {
    transition-delay: 0;
  }
}