@charset "utf-8";

/* color */
:root {
  --white: #ffffff;
  --black: #000000;
  --black-a60: rgba(0, 0, 0, 0.6);
  --black-a15: rgba(0, 0, 0, 0.15);

  --base_green: #568136;
  --lit_green: #EAF2E4;
  --green-half: rgba(86, 129, 54, 0.5);
  --green-a05: rgba(86, 129, 54, 0.05);
  --green-a10: rgba(86, 129, 54, 0.1);
  --green-a30: rgba(86, 129, 54, 0.3);

  --exlit_green: #EEF4EA;


  --white-a20: rgba(255, 255, 255, 0.2);
  --beige: #645C4D;
  --beige-half: rgba(100, 92, 77, 0.5);
  --beige-a10: rgba(100, 92, 77, 0.1);

  --mid-chacol: #34302E;

  --loc_gray: #DEDEDE;
  --loc_red: #9A263E;
  --loc_white: #F8F8F7;

  --plan_red: #9D3C2A;
  --plan_beige: #EDEBEA;



  --scrollbar: 0;

}

body {
  font-family: 'Noto Serif JP', serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  text-align: justify;
  line-break: strict;
  word-break: break-all;
  overflow-wrap: break-word;
  word-wrap: break-word;
  overflow-x: hidden;
  overflow-y: scroll;
  background-color: var(--white);
}

/* フッター画面の下部に固定する */
.p-site-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  min-height: 100lvh;

}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-x: hidden;
  position: relative;
}

#header {
  width: 100vw;
}

h1 {
  position: fixed;
  width: 180px;
  height: 80px;
  background-color: black;
  margin-left: clamp(30px, 5.952vw - 34.2857px, 80px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
  top: 0;
}

.c-header-logo {
  display: block;
  width: 132px;
  height: auto;
}

.c-header-logo img {
  display: block;
  width: 100%;
  height: auto;
}

/* img  */
img {
  display: block;
  width: 100%;
  height: auto;
  /* vertical-align: bottom; */
  -o-object-fit: cover;
  object-fit: cover;
}

/* 改行 */
.c-kaigyou {
  display: block;
}

/* PCのみ改行 */
.c-kaigyou-pc {
  display: block;
}

/* 1024px under */
.c-kaigyou-sp {
  display: inline;
}

/* small-size under */
.c-kaigyou-sp-s {
  display: inline;
}


.c-kaigyou-line {
  line-height: calc(29/16);
}

.c-kaigyou-line-up {
  padding: 10px 0 0 0;
}

.c-kaigyou-line-low {
  padding: 0 0 10px 0;
}




/* 下層ページ　背景 */
.c-common-bg {
  display: block;
  /* background-color: var(--white); */
  background-size: cover;
  background-position: center top;
  width: 100%;
  height: auto;
  /* margin: 0 calc(50% - 50vw); */
  position: relative;
  z-index: 0;
  overflow-x: hidden;

}

.ff-lato {
  font-family: "Lato", sans-serif;
}

.ff-cardo {
  font-family: 'Cardo', serif;
}

/* 文字揃え */

/* 文字間 */

/* カラー設定 */

/* マージン設定 */

/*========= nav PC ===============*/
/* .g-nav-container {
  display: block;
  overflow-x: hidden;
} */

/* #g-nav, */
.g-nav-bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--white);
  background-size: cover;
  position: fixed;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  height: 100dvh;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  z-index: -1;
}

#g-nav.panelactive {
  opacity: 1;
  z-index: 999;
}

#g-nav::after.panelactive {
  opacity: 1;
  z-index: 1000;
}


.g-nav_wrap {
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 690px;
  /* height: 480px; */
  height: 392px;
  grid-template-rows: repeat(3, 44px);
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 82px;
  grid-column-gap: 4%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  padding-top: 44px;
  z-index: 999;
}

.navbox1,
.navbox3_lc {
  grid-row: 1;

}

.navbox2_eq,
.navbox3_qua {
  grid-row: 2;

}

.navbox2_plan,
.navbox3_out {
  grid-row: 3;

}

#g-nav a {
  display: block;
  color: var(--base_green);
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.6em;
  line-height: 44px;
  font-family: 'Cardo', serif;
  font-weight: 400;
  text-align: center;
}

#g-nav a span {
  display: inline-block;
  margin-right: -0.6em;
}


.navbox1 {
  display: block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}


/*========= アンダーライン ===============*/
#g-nav a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  /* color: #000; */
}

#g-nav a::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--base_green);
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;

}

#g-nav a::after {
  content: "";
  width: 100%;
  /* width: 40px; */
  height: 1px;
  background: var(--base_green);
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;

  -webkit-transform: scale(0, 1);

          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

#g-nav a:hover::after {
  /* width: 90%; */

  -webkit-transform: scale(1, 1);

          transform: scale(1, 1);
}


/*========= ハンバーガー PC ===============*/
.openbtn1 {
  display: block;
  font-weight: 700;
  background-color: var(--black);
  width: 100px;
  height: 140px;
  cursor: pointer;
  /* outline: none; */
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  margin-right: 80px;
  margin-right: clamp(30px, 5.952vw - 34.2857px, 80px);
  padding: 0;
}

.openbtn1 {
  text-align: center;
  border: none;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* .openbtn1 p {
  margin-top: -28px;
  color: #fff;
}

.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 25%;
  height: 4px;
  border-radius: 2px;
  background-color: #fff;
  width: 50px;
}

.openbtn1 span:nth-of-type(1) {
  top: 78px;
}

.openbtn1 span:nth-of-type(2) {
  top: 96px;
}

.openbtn1 span:nth-of-type(3) {
  top: 113px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 88px;
  left: 25%;
  transform: translateY(6px) rotate(-45deg);
  width: 50px;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 100px;
  left: 25%;
  transform: translateY(-6px) rotate(45deg);
  width: 50px;
} */

.openbtn1-menu {
  display: block;
  color: #fff;
  text-transform: uppercase;
  /* margin-top: 40px; */
  margin-top: -28px;

}

.openbtn1-line span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 25%;
  height: 4px;
  border-radius: 2px;
  background-color: #fff;
  width: 50px;
}

.openbtn1-line span:nth-of-type(1) {
  top: 78px;
}

.openbtn1-line span:nth-of-type(2) {
  top: 96px;
}

.openbtn1-line span:nth-of-type(3) {
  top: 113px;
}

.openbtn1.active .openbtn1-line span:nth-of-type(1) {
  top: 88px;
  left: 25%;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 50px;
}

.openbtn1.active .openbtn1-line span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active .openbtn1-line span:nth-of-type(3) {
  top: 100px;
  left: 25%;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 50px;
}

/*========= ページ共通タイトル設定 ===============*/


/*========= footer PC ===============*/
#footer {
  background: var(--base_green);
  height: auto;
  padding-top: 60px;
  padding-bottom: 40px;
  position: relative;
  overflow-x: hidden;
}

.c-footer-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1024px;
  margin: 0 auto;
}

.c-footer-upbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: calc(23/16);
  letter-spacing: 0.04em;
  width: 100%;
  height: auto;
  margin-bottom: 33px;
}

.c-footer-upbox-jigyou,
.c-footer-upbox-kashi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-footer-upbox-jigyou__logobox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 30px;
}

.c-footer-upbox-jigyou {
  margin-right: 96px;
}

.c-footer-upbox-kashi {
  margin-right: 16px;
}

.c-footer-box-title {
  display: block;
}

.c-footer-upbox a {
  display: block;
}

.c-footer-upbox a img {
  display: block;
  width: 100%;
  height: auto;
  /* vertical-align: bottom; */
  -o-object-fit: cover;
  object-fit: cover;
}

.c-footer-box-logo__mira {
  width: 220px;
  height: auto;
  margin-top: 20px;
  margin-left: 10px;
}

.c-footer-box-logo__takara {
  width: 180px;
  height: auto;
  margin-top: 10px;
  /* margin-left: 10px; */

}

.c-footer-box-logo__leben {
  width: 160px;
  height: auto;
  margin-top: 10px;
  margin-left: 10px;

}

.c-footer-lwbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  line-height: calc(24/16);
  letter-spacing: 0.04em;
  /* width: 698px; */
  height: auto;
  /* margin-left: 14px; */
}

.c-footer-lwbox-title {
  display: block;
  width: 100%;
  margin-bottom: 4px;
}

.c-footer-lwbox-title__txt {
  line-height: calc(28/16);
  text-align: left;
}


.footer_03 {
  display: block;
  width: 100%;

}

/* PCでは電話番号をクリックしても無効 */


.footer_03_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  gap: 18px;
}

.footer_03__telnumbox {
  display: block;
  /* margin-right: 21px; */
}

.footer_03__inforbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  /* width: 100%; */
}

.footer_03__telnum {
  font-size: 52px;
  font-weight: bold;
  line-height: calc(60/52);
  letter-spacing: 0em;
}

.footer_03__timeinfo,
.footer_03__notice {
  display: inline-block;
}


.footer_03__timeinfo {
  font-size: 16px;
  font-weight: 500;
  line-height: calc(23/16);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.footer_03__notice {
  font-size: 10px;
  font-weight: 400;
  line-height: calc(15/10);
  letter-spacing: 0.04em;
}

.c-footer-lastbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--white);
  font-family: 'Cardo', serif;
  font-size: 10px;
  font-weight: 500;
  line-height: calc(15/10);
  letter-spacing: 0.04em;
  /* width: 698px; */
  height: auto;
  margin-top: 43px;
  gap: 30px;

}

.copyright {
  display: block;
  color: var(--white);
  font-size: 10px;
  font-weight: 400;
  line-height: calc(14/10);
  letter-spacing: 0.04em;
  text-align: center;
  /* margin-top: 40px; */
  margin-right: 0px;
}

.sikibetsu-num {
  display: block;
}



/*  共通デザイン */
/* ラッパー */
.c-page-wrap {
  /* width: min(100%, 1080px); */
  /* width: min(calc(1020/1080 * 100%), 1080px); */
  width: min(calc(1660/1920 * 100%), 1080px);
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

/* ページ見出し */
.c-page-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  height: 196px;
  border-bottom: 1px solid var(--black);
  padding-bottom: 3px;
  margin-bottom: 20px;
}

.c-page-heading {
  display: inline-block;
  color: var(--black);
  font-family: 'Cardo', serif;
  font-size: 38px;
  font-weight: 400;
  line-height: calc(54/38);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-right: 16px;
  padding-left: 42px;
  position: relative;
}

.c-page-heading::before {
  content: '';
  /* background-image: linear-gradient(to top right, #B58234, #FFCA5F); */
  background-color: var(--base_green);
  width: 28px;
  height: 28px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}

.c-page-heading__sub {

  font-size: 18px;
  font-weight: 500;
  line-height: calc(50/18);
  letter-spacing: 0.300em;
  text-transform: none;

}

.c-page-desc {
  padding-bottom: 120px;
}

.c-page-desc__txt {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: calc(46/16);
  /* line-height: 1.5; */
  letter-spacing: 0.02em;
}

.c-page-desc__txt--eq {
  line-height: calc(24/16);

}

/* .c-page-desc__txt--lh {
  line-height: calc(46/18);
} */

.pc-none {
  display: none;
}

.sp-on {
  display: none;
}

/* sidetxt fixed */
.c-side-txt {
  display: block;
  /* flex-direction: row;
  justify-content: space-between;
  align-items: center; */
  color: var(--base_green);
  font-family: 'Cardo', serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.400em;
  /* width: 100vw; */
  width: 100%;
  height: 100vh;
  /* margin: 0 calc(50% - 50vw); */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  /* opacity: 0;
  visibility: hidden; */
  pointer-events: none;
  overflow-x: hidden;
}

.c-side-txt-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: auto;
  height: 100%;
  margin-left: clamp(30px, 5.952vw - 34.2857px, 80px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

.c-side-txt-wrap--right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: auto;
  height: 100%;
  margin-right: clamp(30px, 5.952vw - 34.2857px, 80px);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
}

.c-side-txt-left-fadein,
.c-side-txt-left {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
  /* transform: rotate(90deg) translate(-50%, -100%); */
  -webkit-transform: rotate(90deg) translate(-40%, -100%);
          transform: rotate(90deg) translate(-40%, -100%);
}

.c-side-txt-left,
.c-side-txt-right {
  opacity: 1;
  visibility: visible;
}

.c-side-txt-left-fadein,
.c-side-txt-right-fadein {
  opacity: 0;
  visibility: hidden;
}

.c-side-txt-left-fadein.is-active,
.c-side-txt-right-fadein.is-active {
  -webkit-animation: fade-in ease-in-out 1s forwards;
          animation: fade-in ease-in-out 1s forwards;
}

@-webkit-keyframes fade-in {
  from {
    opacity: 0;
    visibility: hidden;
  }

  to {
    opacity: 1;
    visibility: visible;

  }

}

@keyframes fade-in {
  from {
    opacity: 0;
    visibility: hidden;
  }

  to {
    opacity: 1;
    visibility: visible;

  }

}

.c-side-txt-right-fadein,
.c-side-txt-right {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  /* transform-origin: 50% 50%; */
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
  -webkit-transform: rotate(90deg) translate(50%, 100%);
          transform: rotate(90deg) translate(50%, 100%);
}

.c-side-txt-left__desc,
.c-side-txt-right__desc {
  display: inline-block;
}

.c-side-txt-left__desc {
  /* margin-bottom: clamp(30px, 5.952vw - 34.2857px, 80px); */

  /* transform-origin: 0 50%;
  transform: rotate(90deg) translate(0,-50%); */

}

.c-side-txt-left-fadein.is-active.is-hide,
.c-side-txt-right-fadein.is-active.is-hide,
.c-side-txt-left.is-hide,
.c-side-txt-right.is-hide {
  -webkit-animation: fade-out ease-in-out 1s forwards;
          animation: fade-out ease-in-out 1s forwards;
}

@-webkit-keyframes fade-out {
  from {
    opacity: 1;
    visibility: visible;
  }

  to {
    opacity: 0;
    visibility: hidden;

  }


}

@keyframes fade-out {
  from {
    opacity: 1;
    visibility: visible;
  }

  to {
    opacity: 0;
    visibility: hidden;

  }


}

.c-acc-kigou {
  font-size: 12px;
  line-height: 1;
  vertical-align: text-top;
  display: inline-block;
  margin-top: 7px;
}

.c-acc-under {
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.01em;
  vertical-align: text-bottom;
  display: inline-block;
  margin-bottom: 5px;
}

/******************** sidetxt fixed ctrl ****************/
@media screen and (max-width: 1600px) {
  .c-side-txt {
    display: none;
  }
}

/*1500px以下 (コンテンツ幅が1280以下になるあたり）*/
@media screen and (max-width: 1500px) {
  .c-acc-kigou {
    margin-top: clamp(5px, 0.46vw, 7px);
    min-height: 0vw;

  }

  .c-acc-under {
    /* margin-bottom: 3px; */
    margin-bottom: clamp(3px, 0.33vw, 5px);
    min-height: 0vw;
  }
}

/* 1500px以下 (コンテンツ幅が1280以下になるあたり）
@media screen and (max-width: 1200px) {
  .c-acc-under {
    margin-bottom: 0px;

  }
} */


/******************** SP all ****************/

@media screen and (max-width: 1024px) {

  /* 改行 */
  .c-kaigyou-pc {
    display: inline;
  }

  .c-kaigyou-sp {
    display: block;
  }

  .sp-none {
    display: none;
  }

  .sp-on {
    display: block;
  }

  /* ラッパー */
  .c-page-wrap {
    width: min(calc(342/390 * 100%), 544px);
    margin: 0 auto;
    position: relative;
  }

  /*========= header logo ===============*/

  h1 {
    position: fixed;
    width: 126px;
    height: 56px;
    background-color: black;
    /* margin-left: clamp(30px, 5.952vw - 34.2857px, 80px); */
    margin-left: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 9999;
    top: 0;
  }

  .c-header-logo {
    display: block;
    width: 91px;
    height: auto;
  }

  .c-header-logo img {
    display: block;
    width: 100%;
    height: auto;
  }



  /*========= ハンバーガー SP ===============*/
  /* .g-nav-bg::after {
    background-image: url(../images/top/texture_sp@2x.png);
    height: calc(100vh + 200px);
    height: calc((var(--vh, 1vh) * 100) + 200px);
    height: calc(100lvh + 200px);

  } */

  .openbtn1 {
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    cursor: pointer;
    width: 80px;
    height: 100px;
    background-color: #000;
    margin-right: 0px;
    /* margin-right: clamp(30px, 5.952vw - 34.2857px, 80px); */
    padding: 0;
    font-weight: 700;
    font-size: 12px;
    line-height: calc(15/12);
    letter-spacing: 0.04em;
  }

  .openbtn1 {
    text-align: center;
  }

  /* .openbtn1 p {
    margin-top: -22px;
    color: #fff;
  }

  .openbtn1 span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 25%;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    width: 40px;
  }

  .openbtn1 span:nth-of-type(1) {
    top: 50px;
  }

  .openbtn1 span:nth-of-type(2) {
    top: 64px;
  }

  .openbtn1 span:nth-of-type(3) {
    top: 77px;
  }

  .openbtn1.active span:nth-of-type(1) {
    top: 52px;
    left: 25%;
    transform: translateY(12px) rotate(-45deg);
    width: 38px;
  }

  .openbtn1.active span:nth-of-type(2) {
    opacity: 0;
  }

  .openbtn1.active span:nth-of-type(3) {
    top: 76px;
    left: 25%;
    transform: translateY(-12px) rotate(45deg);
    width: 38px;
  } */

  .openbtn1-menu {
    margin-top: -22px;
    color: #fff;
  }

  .openbtn1-line span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    left: 25%;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    width: 40px;
  }

  .openbtn1-line span:nth-of-type(1) {
    top: 50px;
  }

  .openbtn1-line span:nth-of-type(2) {
    top: 64px;
  }

  .openbtn1-line span:nth-of-type(3) {
    top: 77px;
  }

  .openbtn1.active .openbtn1-line span:nth-of-type(1) {
    top: 52px;
    left: 25%;
    -webkit-transform: translateY(12px) rotate(-45deg);
            transform: translateY(12px) rotate(-45deg);
    width: 38px;
  }

  .openbtn1.active .openbtn1-line span:nth-of-type(2) {
    opacity: 0;
  }

  .openbtn1.active .openbtn1-line span:nth-of-type(3) {
    top: 76px;
    left: 25%;
    -webkit-transform: translateY(-12px) rotate(45deg);
            transform: translateY(-12px) rotate(45deg);
    width: 38px;
  }

  /* PCでは電話番号をクリックしても無効 */


  /* .copyright {
    width: 80vw;
    margin: 0 auto;
    letter-spacing: 1px;
  } */

  h1 {
    margin-left: 0%;
  }

  /*========= nav SP ===============*/
  .navbox1 {
    grid-row: 1;
    grid-column: 1;
    /* width: 140px; */
    justify-self: center;
  }

  .navbox3_lc {
    grid-row: 3;
  }

  .navbox2_eq {
    grid-row: 4;
  }

  .navbox3_qua {
    grid-row: 5;

  }

  .navbox2_plan {
    grid-row: 6;
  }

  .navbox3_out {
    grid-row: 7;
  }

  .g-nav-bg {
    /* background-image: url(../images/common/texture_01_sp@2x.png); */

  }

  .g-nav_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 480px;
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    padding-top: 0px;
    padding-bottom: 0px;
    z-index: 999;
    grid-row-gap: unset;
    grid-column-gap: unset;

  }



  #g-nav a {
    display: block;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 0.6em;
    line-height: 44px;
    font-weight: 400;
    text-align: center;

  }

  #g-nav a span {
    display: inline-block;
    margin-right: -0.6em;
  }


  /*========= アンダーライン ===============*/
  #g-nav a::before {
    content: "";
    width: 40px;
    height: 1px;
    /* background: var(--white); */
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;

  }

  #g-nav a::after {
    content: "";
    width: 100%;
    /* width: 40px; */
    height: 1px;
    /* background: var(--white); */
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;

    -webkit-transform: scale(0, 1);

            transform: scale(0, 1);
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }

  #g-nav a:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }

  /* ページ見出し */
  .c-page-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    width: 100%;
    height: 168px;
    /* border-bottom: 1px solid var(--white); */
    padding-bottom: 3px;
    margin-bottom: 20px;
  }

  .c-page-heading {
    display: inline-block;
    font-size: 24px;
    font-weight: 400;
    /* line-height: calc(58/24); */
    line-height: calc(36/24);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding-right: 8px;
    padding-left: 26px;
    position: relative;
  }

  .c-page-heading::before {
    content: '';
    /* background-image: linear-gradient(to top right, #B58234, #FFCA5F); */
    width: 18px;
    height: 18px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
  }

  .c-page-heading__sub {
    font-size: 12px;
    font-weight: 500;
    line-height: calc(32/12);
    letter-spacing: 0.300em;
    text-transform: none;

  }

  .c-page-desc {
    padding-bottom: 50px;
  }

  .c-page-desc__txt {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: calc(26/14);
    letter-spacing: 0.04em;

  }


  /*========= footer SP ===============*/

  #footer {
    /* background: var(--white); */
    width: 100%;
    height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
    /* z-index: 1; */
  }

  /* new */
  .c-footer-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: min(calc(342/390 * 100%), 544px);
    margin: 0 auto;
  }

  .c-footer-upbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    /* color: var(--mid-chacol); */
    font-size: 14px;
    font-weight: 400;
    line-height: calc(26/14);
    letter-spacing: 0.04em;
    width: 100%;
    height: auto;
    margin-bottom: 12px;
    gap: 0px;
  }

  .c-footer-upbox-jigyou,
  .c-footer-upbox-kashi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .c-footer-upbox-jigyou__logobox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
  }

  .c-footer-upbox-jigyou {
    margin-right: 0px;
    margin-bottom: 31px;
  }

  .c-footer-upbox-kashi {
    margin-right: 0px;
    margin-bottom: 19px;
  }

  .c-footer-box-title {
    display: block;
  }

  .c-footer-upbox a {
    display: block;
  }

  .c-footer-upbox a img {
    display: block;
    width: 100%;
    height: auto;
    /* vertical-align: bottom; */
    -o-object-fit: cover;
    object-fit: cover;
  }

  .c-footer-box-logo__mira {
    width: 220px;
    height: auto;
    margin-top: 14px;
    margin-left: 0px;
  }

  .c-footer-box-logo__takara {
    width: 180px;
    height: auto;
    margin-top: 12px;
    margin-left: 0px;

  }

  .c-footer-box-logo__leben {
    width: 160px;
    height: auto;
    margin-top: 14px;
    margin-left: 0px;

  }

  .c-footer-lwbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    /* color: var(--black); */
    font-size: 14px;
    font-weight: 500;
    line-height: calc(17/12);
    letter-spacing: 0.04em;
    /* width: 698px; */
    height: auto;
  }

  .c-footer-lwbox-title {
    display: block;
    width: 100%;
    margin-bottom: 4px;
  }

  .c-footer-lwbox-title__txt {
    text-align: center;
  }


  .footer_03 {
    display: block;
    width: 100%;

  }

  .footer_03_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    gap: 0;
  }

  .footer_03__telnumbox {
    display: block;
    /* margin-right: 21px; */
  }

  .footer_03__inforbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    /* width: 100%; */
  }

  .footer_03__telnum {
    font-size: 48px;
    font-weight: bold;
    line-height: calc(58/48);
    letter-spacing: 0em;
  }

  .footer_03__timeinfo,
  .footer_03__notice {
    display: inline-block;
  }


  .footer_03__timeinfo {
    font-size: 14px;
    font-weight: 400;
    line-height: calc(26/14);
    letter-spacing: 0.04em;
    margin-bottom: 28px;
  }

  .footer_03__notice {
    font-size: 10px;
    font-weight: 400;
    line-height: calc(15/10);
    letter-spacing: 0.04em;
    text-align: center;
  }

  .c-footer-lastbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    /* color: var(--black); */
    font-size: 10px;
    font-weight: 400;
    line-height: calc(14/10);
    letter-spacing: 0.04em;
    /* width: 698px; */
    height: auto;
    margin-top: 42px;
    gap: 0;

  }

  .copyright {
    display: block;
    /* color: var(--black); */
    font-size: 10px;
    font-weight: 400;
    line-height: calc(14/10);
    letter-spacing: 0.04em;
    text-align: center;
    /* margin-top: 40px; */
    margin-right: 0px;
    margin-bottom: 5px;
  }

  .sikibetsu-num {
    display: block;
  }

  .c-acc-under {
    margin-top: 10px;
    margin-bottom: 3px;
  }


}

/*576px以下*/
@media screen and (max-width: 576px) {
  .c-kaigyou-sp-s {
    display: block;
  }
  .c-page-desc {
    padding-bottom: 48px;
  }
  .c-page-head {
    margin-bottom: 18px;
  }
  .c-kaigyou-line {
    line-height: calc(26/16);
  }
  
}

/*400px以下*/
@media screen and (max-width: 400px) {
  .footer_03__telnum {
    font-size: clamp(40px, calc(48/390 * 100vw), 48px);
    min-height: 0vw;
  }
}