@charset "UTF-8";
/* color */
:root {
  --white: #ffffff;
  --black: #000000;
  --mid_gray: #475157;
  --dark_gray: #2E2E2E;
  --light_gray: #E4E4E4;
  --black-a60: rgba(0, 0, 0, 0.6);
  --black-a15: rgba(0, 0, 0, 0.15);
  --mid_gray-a30: rgba(71, 81, 87, 0.3);
  --mid_gray-a10: rgba(71, 81, 87, 0.1);
  --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: #574D47;
  --beige-half: rgba(100, 92, 77, 0.5);
  --beige-a10: rgba(100, 92, 77, 0.1);
  --loc_gray: #f4f4f4;
  --loc_red: #9A263E;
  --loc_white: #F8F8F7;
  --plan_red: #9D3C2A;
  --plan_beige: #EDEBEA;
  --scrollbar: 0;
  --font-serif: "Noto Serif JP", serif;
  --font-lato: "Lato", sans-serif;
  --font-cg: "Cormorant Garamond", serif;
  --font-line: "LineSeedJp", sans-serif;
}

/* font */
@font-face {
  font-family: "LineSeedJp";
  src: url("../fonts/LINESeedJP_OTF_Rg.woff2") format("woff2"), url("../fonts/LINESeedJP_OTF_Bd.woff2") format("woff2"), url("../fonts/LINESeedJP_OTF_Eb.woff2") format("woff2"), url("../fonts/LINESeedJP_OTF_Th.woff2") format("woff2");
}
body {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  letter-spacing: 0.04em;
  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;
  background-color: transparent;
}

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 {
  max-width: 100%;
  height: auto;
  /* vertical-align: bottom; */
  -o-object-fit: cover;
  object-fit: cover;
}
img.w100 {
  width: 100%;
}

/* 改行 */
.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: 1.8125;
}

.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(--black);
  background-size: cover;
  position: fixed;
  opacity: 0;
  top: 0;
  right: 0;
  width: 0;
  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;
  width: 420px;
}
#g-nav.panelactive::after.panelactive {
  opacity: 1;
  z-index: 1000;
}

.g-nav_wrap {
  width: 100%;
  padding-top: 180px;
  padding-left: 80px;
}
.g-nav_wrap > div {
  margin-bottom: 40px;
}

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

/*========= アンダーライン ===============*/
#g-nav a {
  display: inline-block;
  position: relative;
  padding-bottom: 15px;
  font-size: 24px;
  font-family: var(--font-cg);
  font-weight: 400;
  text-decoration: none;
  text-transform: capitalize;
  color: var(--white);
}
#g-nav a::before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 1px;
  background: var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#g-nav a:hover::before {
  width: 100%;
}

/*========= ハンバーガー 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-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: 2px;
  border-radius: 10px;
  background-color: #fff;
  width: 50px;
}

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

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

.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;
}

/*========= ページ共通タイトル設定 ===============*/
/*========= under-box ===============*/
.c-under {
  background: #000;
}

.c-under-wrap {
  max-width: 720px;
  margin: auto;
  padding: 90px 0 40px;
}

.c-under-navibox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-under-navibox__item a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 10px;
  color: var(--white);
  font-family: var(--font-cg);
  font-size: 24px;
  text-transform: capitalize;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.c-under-navibox__item a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 10px);
  width: 20px;
  height: 1px;
  background-color: var(--white);
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-under-navibox__item a:hover {
  color: var(--white);
}

.c-under-navibox__item a:hover::before {
  width: 100%;
  left: 0;
}

.c-under-navibox__item a span {
  z-index: 2;
}

.c-under-notice {
  margin-top: 80px;
  color: var(--white);
  letter-spacing: 0.035em;
}

/*========= footer PC ===============*/
#footer {
  background: var(--black);
  height: auto;
  padding-top: 0;
  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: 720px;
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4375;
  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: 38px;
}

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

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

.c-footer-box-title {
  display: block;
  margin-left: -10px;
}

.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: 0;
}

.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: 0;
}

.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;
  line-height: 1.5;
  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: 1.75;
  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: 38.86px;
}

.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-family: var(--font-lato);
  font-size: 52px;
  font-weight: bold;
  line-height: 1.1538461538;
  letter-spacing: 0em;
}

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

.footer_03__timeinfo {
  font-size: 16px;
  line-height: 1.4375;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.footer_03__notice {
  font-size: 10px;
  line-height: 1.5;
  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-size: 10px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  /* width: 698px; */
  height: auto;
  margin-top: 80px;
  gap: 30px;
}

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

.sikibetsu-num {
  display: block;
}

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

/* ページ見出し */
.c-page-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
  padding-top: 160px;
}
.c-page-head__headBlock {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.c-page-head__textBlock {
  padding-top: 24px;
  border-top: 1px solid var(--dark_gray);
}
.c-page-head__text {
  color: var(--dark_gray);
  font-size: 14px;
  letter-spacing: 0.12;
  line-height: 2;
}

.c-page-heading {
  color: var(--dark_gray);
  font-family: var(--font-cg);
  font-size: clamp(44px, 3.8vw, 52px);
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
}
.c-page-heading__sub {
  display: block;
  font-family: var(--font-serif);
  margin-top: 15px;
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.5;
  text-transform: none;
}

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

/* コンテンツ見出し */
.c-headText {
  margin-bottom: 40px;
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.6;
}

/* 本文 */
.c-normalText {
  font-size: clamp(12px, 1vw, 14px);
  line-height: 2.2;
  font-weight: 300;
}

/* 注釈 */
.c-noteText {
  font-size: 10px;
}

.pc-none {
  display: none;
}

.sp-on {
  display: none;
}

.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;
}

/*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(75.390625%, 772px);
    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 ===============*/
  .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: 1.25;
    letter-spacing: 0.04em;
  }
  .openbtn1 {
    text-align: center;
  }
  .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では電話番号をクリックしても無効 */
  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_wrap {
    padding-top: 60px;
  }
  #g-nav a {
    font-size: 24px;
  }
  #g-nav a span {
    display: inline-block;
    margin-right: -0.6em;
  }
  /*========= アンダーライン ===============*/
  #g-nav a::before {
    height: 1px;
  }
  #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);
  }
  #g-nav.panelactive {
    width: 370px;
  }
  /* ページ見出し */
  .c-page-head {
    gap: 30px;
    margin-bottom: 60px;
  }
  .c-page-head__headBlock {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .c-page-head__textBlock {
    padding-top: clamp(12px, 1.5625vw, 16px);
  }
  .c-page-head__text {
    font-size: 14px;
    font-size: min(1.3671875vw, 14px);
    line-height: 1.8;
  }
  .c-page-heading {
    font-size: clamp(40px, 4.8828125vw, 50px);
  }
  .c-page-heading__sub {
    margin-top: min(3.6764705882%, 20px);
    font-size: clamp(12px, 1.5625vw, 16px);
  }
  .c-page-desc {
    padding-bottom: clamp(80px, 12.9533678756%, 100px);
  }
  /* コンテンツ見出し */
  .c-headText {
    margin-bottom: min(3.6764705882%, 20px);
    font-size: min(2.5390625vw, 30px);
    line-height: 1.5384;
  }
  /* 本文 */
  .c-normalText {
    font-size: min(1.3671875vw, 14px);
  }
  /* 注釈 */
  .c-noteText {
    font-size: clamp(8px, 0.9765625vw, 10px);
  }
  /*========= under-box ===============*/
  .c-under {
    aspect-ratio: auto;
  }
  .c-under-wrap {
    width: min(75.390625%, 772px);
    margin: 0 auto;
    padding: 90px 0 40px;
  }
  .c-under-navibox {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .c-under-navibox__item a {
    height: 52px;
    font-size: clamp(10px, 2.34375vw, 24px);
  }
  /*========= footer SP ===============*/
  #footer {
    /* background: var(--white); */
    width: 100%;
    height: auto;
    padding-top: 0;
    padding-bottom: 40px;
    position: relative;
    /* z-index: 1; */
  }
  /* new */
  .c-footer-wrap {
    width: min(75.390625%, 772px);
    max-width: 720px;
    margin: 0 auto;
  }
  .c-footer-upbox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 35px;
  }
  .c-footer-lwbox {
    width: 100%;
  }
  .footer_03_inner {
    gap: 0 20px;
  }
  .footer_03__telnumbox {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .footer_03__inforbox {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .footer_03__telnum {
    font-size: clamp(10px, 5.078125vw, 52px);
  }
  .footer_03__timeinfo {
    font-size: clamp(10px, 1.5625vw, 16px);
  }
  .footer_03__notice {
    font-size: 10px;
  }
}
/*576px以下*/
@media screen and (max-width: 576px) {
  /* ラッパー */
  .c-page-wrap {
    width: min(87.6923076923%, 544px);
  }
  .c-kaigyou-sp-s {
    display: block;
  }
  .c-page-desc {
    padding-bottom: 80px;
  }
  .g-nav_wrap {
    padding-left: min(17.9487179487%, 70px);
  }
  #g-nav.panelactive {
    width: 260px;
  }
  /* ページ見出し */
  .c-page-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    margin-bottom: min(17.5438596491%, 60px);
  }
  .c-page-head__textBlock {
    margin-top: min(5.2631578947%, 18px);
    padding-top: min(4.6783625731%, 16px);
  }
  .c-page-head__text {
    font-size: 12px;
  }
  .c-kaigyou-line {
    line-height: 1.625;
  }
  .sp_n-on {
    display: initial;
  }
  /* コンテンツ見出し */
  .c-headText {
    margin-bottom: min(8.1871345029%, 28px);
    font-size: clamp(24px, 2.5390625vw, 26px);
  }
  /* 本文 */
  .c-normalText {
    font-size: clamp(12px, 1.3671875vw, 14px);
  }
  /* 注釈 */
  .c-noteText {
    font-size: clamp(8px, 2.5641025641vw, 10px);
  }
  /*========= under-box ===============*/
  .c-under-wrap {
    width: min(87.6923076923%, 544px);
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .c-under-navibox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px 0;
  }
  .c-under-navibox__item {
    width: 50%;
  }
  .c-under-navibox__item a {
    font-size: clamp(12px, 6.1538461538vw, 24px);
  }
  .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_gray); */
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8571428571;
    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: 1.4166666667;
    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: 1.2083333333;
    letter-spacing: 0em;
  }
  .footer_03__timeinfo,
  .footer_03__notice {
    display: inline-block;
  }
  .footer_03__timeinfo {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8571428571;
    letter-spacing: 0.04em;
    margin-bottom: 28px;
  }
  .footer_03__notice {
    font-size: 10px;
    font-weight: 400;
    line-height: 1.5;
    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: 1.4;
    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: 1.4;
    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;
  }
}
/*400px以下*/
@media screen and (max-width: 400px) {
  .footer_03__telnum {
    font-size: clamp(40px, 12.3076923077vw, 48px);
    min-height: 0vw;
  }
}