@charset "UTF-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
}

/*―――――――――――――――――――――――――*
*	共通
*―――――――――――――――――――――――――*/
:root {
  --black: #242424;
  --ff: "Zen Kaku Gothic New", sans-serif;
  --en: "Montserrat", sans-serif;
  --mc: #475856;
}

html {
  scroll-padding-top: 120px;
}

body {
  background: #f4f4f4;
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  font-family: var(--ff);
  color: var(--black);
  letter-spacing: 0.04em;
}
body.blog, body.date, body.category {
  background: #fff;
}
body:has(#contact) {
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
  text-decoration: none;
  color: var(--black);
}
.en {
  font-family: var(--en);
  font-weight: 500;
}

.w1100 {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.ttl01 {
  line-height: 1;
  text-align: center;
  margin-bottom: 55px;
}
.ttl01 span {
  display: block;
}
.ttl01 .ja {
  font-size: 30px;
  margin-bottom: 14px;
  font-weight: 500;
}
.ttl01 .en {
  font-size: 12px;
}

.btn01 {
  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;
  width: 260px;
  height: auto;
  aspect-ratio: 260/64;
  background: var(--black);
  color: #fff;
  font-weight: 500;
  margin: 0 auto;
  -webkit-transition: background 0.5s ease;
  transition: background 0.5s ease;
}
.btn01:hover {
  background: var(--mc);
}

.js__fade {
  opacity: 0;
}

/*―――――――――――――――――――――――――*
*	header
*―――――――――――――――――――――――――*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 100;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6)), to(transparent));
  background: linear-gradient(rgba(0, 0, 0, 0.6), transparent);
  border-bottom: solid 1px #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  padding-left: 48px;
}
#header.on {
  background: #fff;
  border-bottom: transparent;
}
#header.on a {
  color: var(--black);
}
#header.on .logo a:after {
  opacity: 1;
}
#header.on .logo a:before {
  opacity: 0;
}
#header.on #g_nav ul a:after {
  background: var(--black);
}
#header.on #g_nav .contact_btn {
  border-left-color: var(--black);
  background: var(--black);
  color: #fff;
}
#header.on #g_nav .contact_btn:hover {
  background: #475856;
}
#header a {
  color: #fff;
}
#header .logo a {
  display: block;
  width: 0;
  height: 0;
  padding: 30px 266px 0 0;
  overflow: hidden;
  position: relative;
  text-indent: -9999px;
}
#header .logo a:after, #header .logo a:before {
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 230/26;
}
#header .logo a:before {
  background: url(../img/common/logo_w.png) no-repeat left top/100% auto;
}
#header .logo a:after {
  opacity: 0;
  background: url(../img/common/logo_b.png) no-repeat left top/100% auto;
}

#g_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
}
#g_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
#g_nav ul a {
  position: relative;
}
#g_nav ul a:hover:after {
  opacity: 1;
}
#g_nav ul a:after {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  position: absolute;
  left: 0;
  bottom: -2px;
  opacity: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
}
#g_nav .contact_btn {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  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;
  width: 200px;
  border-left: solid 1px #fff;
  height: 100px;
  margin-left: 48px;
}
#g_nav .contact_btn:hover {
  background: rgba(71, 88, 86, 0.5);
}

/*―――――――――――――――――――――――――*
*	cta
*―――――――――――――――――――――――――*/
#cta {
  padding: 120px 0;
}
#cta .lead {
  text-align: center;
  margin-bottom: 45px;
}
#cta ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
  gap: 0 40px;
}
#cta .tel,
#cta .mail {
  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;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
  background: var(--black);
  color: #fff;
  width: 380px;
  height: auto;
  aspect-ratio: 380/118;
  line-height: 1;
}
#cta .tel:hover,
#cta .mail:hover {
  background: var(--mc);
}
#cta .tel .bg {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  background: url(../img/common/ic_tel.svg) no-repeat left center/52px auto;
  min-height: 52px;
  padding-left: 70px;
}
#cta .tel .num {
  font-size: 32px;
  letter-spacing: 0.043em;
  margin-bottom: 8px;
}
#cta .tel .text {
  font-size: 12px;
  letter-spacing: 0;
}
#cta .mail {
  font-size: 26px;
}
#cta .mail .bg {
  background: url(../img/common/ic_mail.svg) no-repeat left 3px/50px auto;
  padding-left: 66px;
  padding-bottom: 4px;
}
#cta .mail .bg span {
  font-size: 32px;
}

/*―――――――――――――――――――――――――*
*	footer
*―――――――――――――――――――――――――*/
footer {
  background: var(--black);
  color: #fff;
  padding-top: 65px;
}
footer a {
  color: #fff;
}
footer .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .f_logo {
  width: 280px;
  margin-bottom: 20px;
}
footer address {
  line-height: 1.4814814815;
}
footer address .address {
  margin-bottom: 10px;
}
footer nav {
  width: 435px;
}
footer nav ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  line-height: 1.8;
  gap: 20px 0;
}
footer nav ul li:nth-child(1), footer nav ul li:nth-child(4) {
  width: 125px;
}
footer nav ul li:nth-child(2), footer nav ul li:nth-child(5) {
  width: 100px;
}
footer nav ul li:nth-child(3), footer nav ul li:nth-child(6) {
  width: 120px;
}
footer nav ul a {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
footer nav ul a:hover {
  color: #b6b6b6;
}
footer small {
  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;
  font-size: 12px;
  margin-top: 75px;
  height: 50px;
  border-top: solid 1px #fff;
}

/*―――――――――――――――――――――――――*
*	subpage_mv
*―――――――――――――――――――――――――*/
#subpage_mv {
  height: 400px;
  padding-top: 225px;
  margin-bottom: 24px;
}
#subpage_mv .ttl {
  text-align: center;
  line-height: 1;
  color: #fff;
}
#subpage_mv .ttl span {
  display: block;
}
#subpage_mv .ttl .ja {
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 8px;
}
#subpage_mv .ttl .en {
  font-size: 12px;
}
#subpage_mv.news-case {
  background: url(../img/news-case/mv.jpg) no-repeat center/cover;
}
#subpage_mv.contact {
  background: url(../img/contact/mv.jpg) no-repeat center/cover;
}

/*―――――――――――――――――――――――――*
*	bread
*―――――――――――――――――――――――――*/
#bread {
  max-width: 1100px;
  margin: 0 auto 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  gap: 0 36px;
}
#bread li {
  position: relative;
}
#bread li:not(:last-child):after {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: -21px;
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  background: url(../img/common/bread_arrow.svg) no-repeat left top/100% auto;
}
#bread a {
  color: #b6b6b6;
}

@media screen and (min-width: 768px) and (max-width: 1180px) {
  html {
    scroll-padding-top: calc(120 / 1180 * 100vw);
  }
  body {
    font-size: calc(16 / 1180 * 100vw);
  }
  .w1100 {
    max-width: calc(1100 / 1180 * 100vw);
  }
  .ttl01 {
    margin-bottom: calc(55 / 1180 * 100vw);
  }
  .ttl01 .ja {
    font-size: calc(30 / 1180 * 100vw);
    margin-bottom: calc(14 / 1180 * 100vw);
  }
  .ttl01 .en {
    font-size: calc(12 / 1180 * 100vw);
  }
  .btn01 {
    width: calc(260 / 1180 * 100vw);
  }
  /*―――――――――――――――――――――――――*
  *	header
  *―――――――――――――――――――――――――*/
  #header {
    height: calc(100 / 1180 * 100vw);
    border-bottom: solid 1px #fff;
    padding-left: calc(52 / 1180 * 100vw);
  }
  #header .logo a {
    padding: calc(26 / 1180 * 100vw) calc(230 / 1180 * 100vw) 0 0;
  }
  #g_nav {
    font-size: calc(14 / 1180 * 100vw);
  }
  #g_nav ul {
    gap: calc(32 / 1180 * 100vw);
  }
  #g_nav ul a {
    position: relative;
  }
  #g_nav ul a:hover:after {
    opacity: 1;
  }
  #g_nav ul a:after {
    bottom: calc(-2 / 1180 * 100vw);
  }
  #g_nav .contact_btn {
    width: calc(200 / 1180 * 100vw);
    height: calc(100 / 1180 * 100vw);
    margin-left: calc(48 / 1180 * 100vw);
  }
  /*―――――――――――――――――――――――――*
  *	cta
  *―――――――――――――――――――――――――*/
  #cta {
    padding: calc(120 / 1180 * 100vw) 0;
  }
  #cta .lead {
    margin-bottom: calc(45 / 1180 * 100vw);
  }
  #cta ul {
    gap: 0 calc(40 / 1180 * 100vw);
  }
  #cta .tel,
  #cta .mail {
    width: calc(380 / 1180 * 100vw);
  }
  #cta .tel .bg {
    background: url(../img/common/ic_tel.svg) no-repeat left center/calc(52 / 1180 * 100vw) auto;
    min-height: calc(52 / 1180 * 100vw);
    padding-left: calc(70 / 1180 * 100vw);
  }
  #cta .tel .num {
    font-size: calc(32 / 1180 * 100vw);
    margin-bottom: calc(8 / 1180 * 100vw);
  }
  #cta .tel .text {
    font-size: calc(12 / 1180 * 100vw);
  }
  #cta .mail {
    font-size: calc(26 / 1180 * 100vw);
  }
  #cta .mail .bg {
    background: url(../img/common/ic_mail.svg) no-repeat left calc(3 / 1180 * 100vw)/calc(50 / 1180 * 100vw) auto;
    padding-left: calc(66 / 1180 * 100vw);
    padding-bottom: calc(4 / 1180 * 100vw);
  }
  #cta .mail .bg span {
    font-size: calc(32 / 1180 * 100vw);
  }
  /*―――――――――――――――――――――――――*
  *	footer
  *―――――――――――――――――――――――――*/
  footer {
    padding-top: calc(65 / 1180 * 100vw);
  }
  footer .f_logo {
    width: calc(280 / 1180 * 100vw);
    margin-bottom: calc(20 / 1180 * 100vw);
  }
  footer address {
    line-height: 1.4814814815;
  }
  footer address .address {
    margin-bottom: calc(10 / 1180 * 100vw);
  }
  footer nav {
    width: calc(435 / 1180 * 100vw);
  }
  footer nav ul {
    gap: calc(20 / 1180 * 100vw) 0;
  }
  footer nav ul li:nth-child(1), footer nav ul li:nth-child(4) {
    width: calc(125 / 1180 * 100vw);
  }
  footer nav ul li:nth-child(2), footer nav ul li:nth-child(5) {
    width: calc(100 / 1180 * 100vw);
  }
  footer nav ul li:nth-child(3), footer nav ul li:nth-child(6) {
    width: calc(120 / 1180 * 100vw);
  }
  footer small {
    font-size: calc(12 / 1180 * 100vw);
    margin-top: calc(75 / 1180 * 100vw);
    height: calc(50 / 1180 * 100vw);
  }
  /*―――――――――――――――――――――――――*
  *	subpage_mv
  *―――――――――――――――――――――――――*/
  #subpage_mv {
    height: calc(400 / 1180 * 100vw);
    padding-top: calc(225 / 1180 * 100vw);
    margin-bottom: calc(24 / 1180 * 100vw);
  }
  #subpage_mv .ttl .ja {
    font-size: calc(30 / 1180 * 100vw);
    margin-bottom: calc(8 / 1180 * 100vw);
  }
  #subpage_mv .ttl .en {
    font-size: calc(12 / 1180 * 100vw);
  }
  /*―――――――――――――――――――――――――*
  *	bread
  *―――――――――――――――――――――――――*/
  #bread {
    max-width: calc(1100 / 1180 * 100vw);
    margin: 0 auto calc(120 / 1180 * 100vw);
    font-size: calc(14 / 1180 * 100vw);
    gap: 0 calc(36 / 1180 * 100vw);
  }
  #bread li:not(:last-child):after {
    right: calc(-21 / 1180 * 100vw);
    width: calc(5 / 1180 * 100vw);
    height: calc(9 / 1180 * 100vw);
  }
}
@media screen and (min-width: 768px) {
  .sp-only,
  #hb_btn {
    display: none !important;
  }
  #g_nav {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
  html {
    scroll-padding-top: calc(60 / 375 * 100vw);
  }
  body {
    background: #f4f4f4;
    font-size: calc(14 / 375 * 100vw);
    line-height: 1.7142857143;
  }
  body:has(#contact) {
    background: #f4f4f4;
  }
  .w1100 {
    padding-left: calc(20 / 375 * 100vw);
    padding-right: calc(20 / 375 * 100vw);
  }
  .ttl01 {
    margin-bottom: calc(32 / 375 * 100vw);
  }
  .ttl01 .ja {
    font-size: calc(24 / 375 * 100vw);
    margin-bottom: calc(8 / 375 * 100vw);
  }
  .ttl01 .en {
    font-size: calc(10 / 375 * 100vw);
  }
  .btn01 {
    width: calc(240 / 375 * 100vw);
  }
  .btn01:hover {
    background: var(--black);
  }
  /*―――――――――――――――――――――――――*
  *	header
  *―――――――――――――――――――――――――*/
  #header {
    height: calc(50 / 375 * 100vw);
    padding-left: calc(18 / 375 * 100vw);
  }
  #header.on #g_nav a {
    color: #fff;
  }
  #header.on #g_nav .contact_btn {
    background: #fff;
    color: var(--black);
  }
  #header.on #g_nav .contact_btn:hover {
    background: #fff;
  }
  #header.on + #hb_btn span {
    background: var(--black);
  }
  #header a {
    color: #fff;
  }
  #header .logo a {
    padding: calc(17 / 375 * 100vw) calc(150 / 375 * 100vw) 0 0;
  }
  #g_nav {
    position: fixed;
    z-index: 200;
    display: none;
    width: 100%;
    height: 100vh;
    font-size: calc(14 / 375 * 100vw);
    top: 0;
    left: 0;
    background: var(--black);
    padding: calc(100 / 375 * 100vw) 0 calc(48 / 375 * 100vw);
  }
  #g_nav ul {
    display: -ms-grid;
    display: grid;
    gap: calc(32 / 375 * 100vw);
    margin-bottom: calc(45 / 375 * 100vw);
  }
  #g_nav ul li {
    text-align: center;
    font-weight: 500;
  }
  #g_nav ul a {
    position: relative;
    color: #fff;
    font-size: calc(18 / 375 * 100vw);
    display: inline-block;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
  }
  #g_nav ul a span {
    display: block;
    font-size: calc(10 / 375 * 100vw);
    margin-top: calc(8 / 375 * 100vw);
  }
  #g_nav ul a:hover:after {
    opacity: 1;
  }
  #g_nav ul a:after {
    content: none;
  }
  #g_nav .contact_btn {
    font-weight: 500;
    width: calc(260 / 375 * 100vw);
    border-left: none;
    height: calc(64 / 375 * 100vw);
    color: var(--black);
    background: #fff;
    margin: 0 auto;
    font-size: calc(16 / 375 * 100vw);
  }
  #g_nav .contact_btn:hover {
    background: #fff;
  }
  /*―――――――――――――――――――――――――*
  *	hb_btn
  *―――――――――――――――――――――――――*/
  #hb_btn {
    position: fixed;
    right: calc(10 / 375 * 100vw);
    top: 0;
    z-index: 9999;
    width: 13.3333333333vw;
    height: 13.3333333333vw;
    padding: 3.4666666667vw 3.2vw 0;
    cursor: pointer;
  }
  #hb_btn span {
    height: calc(2 / 375 * 100vw);
    background: #fff;
    display: block;
    margin-bottom: 2.4vw;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    border-radius: calc(5 / 375 * 100vw);
  }
  #hb_btn.open span {
    background: #fff !important;
  }
  #hb_btn.open span:nth-child(1) {
    -webkit-transform: translate(0, 2.6666666667vw) rotate(45deg);
            transform: translate(0, 2.6666666667vw) rotate(45deg);
  }
  #hb_btn.open span:nth-child(2) {
    opacity: 0;
  }
  #hb_btn.open span:nth-child(3) {
    -webkit-transform: translate(0, -3.2vw) rotate(-45deg);
            transform: translate(0, -3.2vw) rotate(-45deg);
  }
  /*―――――――――――――――――――――――――*
  *	cta
  *―――――――――――――――――――――――――*/
  #cta {
    padding: calc(90 / 375 * 100vw) 0 calc(100 / 375 * 100vw);
  }
  #cta .lead {
    margin-bottom: calc(32 / 375 * 100vw);
    line-height: 1.5;
  }
  #cta ul {
    display: -ms-grid;
    display: grid;
    margin: 0 auto;
    gap: calc(16 / 375 * 100vw) 0;
  }
  #cta .tel,
  #cta .mail {
    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;
    width: calc(280 / 375 * 100vw);
    aspect-ratio: 280/80;
  }
  #cta .tel:hover,
  #cta .mail:hover {
    background: var(--black);
  }
  #cta .tel .bg {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    background-size: calc(42 / 375 * 100vw) auto;
    min-height: calc(52 / 375 * 100vw);
    padding-left: calc(55 / 375 * 100vw);
  }
  #cta .tel .num {
    font-size: calc(27 / 375 * 100vw);
    margin-bottom: calc(8 / 375 * 100vw);
  }
  #cta .tel .text {
    font-size: calc(10 / 375 * 100vw);
    letter-spacing: 0.01em;
  }
  #cta .mail {
    font-size: calc(20 / 375 * 100vw);
  }
  #cta .mail .bg {
    background: url(../img/common/ic_mail.svg) no-repeat left top/calc(44 / 375 * 100vw) auto;
    padding: calc(2 / 375 * 100vw) 0 calc(5 / 375 * 100vw) calc(60 / 375 * 100vw);
  }
  #cta .mail .bg span {
    font-size: calc(22 / 375 * 100vw);
  }
  /*―――――――――――――――――――――――――*
  *	footer
  *―――――――――――――――――――――――――*/
  footer {
    padding-top: calc(40 / 375 * 100vw);
  }
  footer .flex {
    display: -ms-grid;
    display: grid;
    gap: calc(80 / 375 * 100vw);
  }
  footer .left,
  footer .right {
    width: 100%;
  }
  footer .right {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  footer .left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  footer .f_logo {
    width: calc(213 / 375 * 100vw);
    margin: 0 auto calc(15 / 375 * 100vw);
  }
  footer address {
    text-align: center;
    font-size: calc(16 / 375 * 100vw);
    line-height: 1.4814814815;
  }
  footer address .address {
    margin-bottom: calc(10 / 375 * 100vw);
  }
  footer nav {
    width: 100%;
  }
  footer nav ul {
    font-size: calc(16 / 375 * 100vw);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    padding-left: calc(25 / 375 * 100vw);
    gap: calc(28 / 375 * 100vw) 0;
  }
  footer nav ul li {
    width: 45% !important;
  }
  footer nav ul li:nth-child(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  footer nav ul li:nth-child(2) {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  footer nav ul li:nth-child(3) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  footer nav ul li:nth-child(4) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  footer nav ul li:nth-child(5) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  footer nav ul li:nth-child(6) {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
    margin-top: calc(-30 / 375 * 100vw);
  }
  footer nav ul a:hover {
    color: #fff;
  }
  footer small {
    font-size: calc(12 / 375 * 100vw);
    margin-top: calc(70 / 375 * 100vw);
    height: calc(34 / 375 * 100vw);
  }
  /*―――――――――――――――――――――――――*
  *	subpage_mv
  *―――――――――――――――――――――――――*/
  #subpage_mv {
    height: calc(250 / 375 * 100vw);
    padding-top: calc(120 / 375 * 100vw);
    margin-bottom: calc(80 / 375 * 100vw);
  }
  #subpage_mv.contact {
    background-image: url(../img/contact/mv_sp.jpg);
  }
  #subpage_mv .ttl span {
    display: block;
  }
  #subpage_mv .ttl .ja {
    font-size: calc(26 / 375 * 100vw);
    margin-bottom: calc(8 / 375 * 100vw);
  }
  #subpage_mv .ttl .en {
    font-size: calc(12 / 375 * 100vw);
  }
  /*―――――――――――――――――――――――――*
  *	bread
  *―――――――――――――――――――――――――*/
  #bread {
    display: none;
    padding-left: calc(20 / 375 * 100vw);
    padding-right: calc(20 / 375 * 100vw);
    margin: 0 auto calc(60 / 375 * 100vw);
    font-size: calc(12 / 375 * 100vw);
    gap: 0 calc(26 / 375 * 100vw);
  }
  #bread li {
    position: relative;
  }
  #bread li:not(:last-child):after {
    top: 52%;
    right: calc(-16 / 375 * 100vw);
    width: calc(4 / 375 * 100vw);
    height: calc(8 / 375 * 100vw);
  }
}
/*―――――――――――――――――――――――――*
*	top
*―――――――――――――――――――――――――*/
#kv {
  position: relative;
  margin-bottom: 13.8888888889vw;
}
#kv h2 {
  z-index: 10;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  bottom: 260px;
  color: #fff;
  line-height: 1;
}
#kv h2 span {
  display: block;
}
#kv h2 .ja {
  font-size: 33px;
  margin-bottom: 20px;
}
#kv h2 .en {
  font-size: 20px;
  letter-spacing: 0.006em;
}
#kv .scroll_down {
  position: absolute;
  bottom: 0;
  right: 65px;
  z-index: 10;
}
#kv .scroll_down span {
  color: #DBDBDB;
  position: absolute;
  left: 5px;
  bottom: 45px;
  font-size: 12px;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  text-decoration: none;
  font-weight: 300;
}
#kv .scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #DBDBDB;
  -webkit-animation: circlemove 1.3s ease-in-out infinite, cirlemovehide 1.3s ease-out infinite;
          animation: circlemove 1.3s ease-in-out infinite, cirlemovehide 1.3s ease-out infinite;
}
#kv .scroll_down:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 80px;
  background: #DBDBDB;
}
@-webkit-keyframes circlemove {
  0% {
    bottom: 80px;
  }
  100% {
    bottom: 0;
  }
}
@keyframes circlemove {
  0% {
    bottom: 80px;
  }
  100% {
    bottom: 0;
  }
}
@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

#kv_slider {
  position: relative;
  width: 100%;
  height: 644px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}
#kv_slider li {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  display: none;
}
#kv_slider li:first-child {
  display: block;
}

#about_us {
  position: relative;
  padding-bottom: 22.2222222222vw;
}
#about_us:before {
  z-index: 5;
  position: absolute;
  top: -5.2083333333vw;
  right: 0;
  content: "";
  display: block;
  aspect-ratio: 640/518;
  width: 44.4444444444vw;
  height: auto;
  background: url(../img/top/au_bg01.jpg) no-repeat center/cover;
}
#about_us:after {
  z-index: 5;
  position: absolute;
  top: 650px;
  left: 0;
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 30.5555555556vw;
  height: auto;
  background: url(../img/top/au_bg02.jpg) no-repeat center/cover;
}
#about_us h2 {
  position: absolute;
  top: 48px;
  left: 0;
  background: var(--mc);
  color: #fff;
  line-height: 1;
  width: calc(50% - 290px);
  z-index: 3;
}
#about_us h2 > span {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-left: auto;
  padding: 14px 40px 14px 0;
}
#about_us h2 span {
  display: block;
}
#about_us h2 .ja {
  font-size: 30px;
  margin-bottom: 14px;
  font-weight: 500;
}
#about_us h2 .en {
  font-size: 12px;
}
#about_us h3 {
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 25px;
}
#about_us .border_box01 {
  position: relative;
  padding-top: 165px;
  width: 50%;
  margin-bottom: 170px;
}
#about_us .border_box01:after {
  top: 0;
  left: -120px;
  position: absolute;
  content: "";
  display: block;
  width: 870px;
  aspect-ratio: 870/685;
  height: auto;
  border: solid 1px #9CA3AF;
}
#about_us .border_box01 p {
  margin-bottom: 1.5em;
}
#about_us .border_box01 p:last-child {
  margin-bottom: 0;
}
#about_us .border_box02 {
  position: relative;
  width: 480px;
  margin-left: auto;
}
#about_us .border_box02:after {
  top: -100px;
  left: -80px;
  position: absolute;
  content: "";
  display: block;
  width: 50vw;
  height: 390px;
  border: solid 1px #9CA3AF;
  border-right: none;
}
#about_us .border_box02 p {
  margin-bottom: 1.5em;
}
#about_us .border_box02 p:last-child {
  margin-bottom: 0;
}

#business {
  padding-bottom: 120px;
}
#business .bg {
  background: url(../img/top/business_bg.jpg) no-repeat right top/50% auto;
  padding-right: 630px;
  min-height: 530px;
  margin-bottom: 64px;
}
#business .bg h3 {
  font-weight: 500;
  line-height: 1;
  font-size: 30px;
  margin-bottom: 16px;
}
#business .bg h3 span {
  font-size: 35px;
}
#business .bg h3:after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #9CA3AF;
  margin-top: 24px;
}
#business .bg h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 28px;
}
#business .bg p {
  line-height: 1.5;
  margin-bottom: 30px;
}
#business .bg dl {
  border-top: solid 1px #9CA3AF;
  border-bottom: solid 1px #9CA3AF;
  padding: 18px 15px 24px;
}
#business .bg dt {
  font-size: 18px;
  margin-bottom: 3px;
}
#business .bg dd {
  font-size: 14px;
  line-height: 1.7142857143;
}
#business .white_box {
  background: #fff;
  max-width: 1000px;
  margin: 0 auto 56px;
  padding: 30px 10px 32px;
}
#business .white_box h4 {
  line-height: 1;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 15px;
}
#business .white_box p {
  text-align: center;
}

#process {
  padding-bottom: 120px;
}
#process h3 {
  font-weight: 500;
  text-align: center;
  font-size: 20px;
  margin-bottom: 24px;
}
#process .lead {
  margin-bottom: 65px;
  text-align: center;
}
#process ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 32px;
}
#process ol li {
  width: 111px;
  height: 300px;
  background: #fff;
  padding-top: 35px;
  color: #fff;
  position: relative;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#process ol li:not(:last-child):after {
  position: absolute;
  content: "";
  display: block;
  width: 20px;
  height: 3px;
  background: url(../img/top/dot.svg) no-repeat center/cover;
  top: 155px;
  right: -25px;
}
#process ol li:nth-child(1), #process ol li:nth-child(2), #process ol li:nth-child(3) {
  background: #929292;
}
#process ol li:nth-child(4), #process ol li:nth-child(5) {
  background: #494949;
}
#process ol li:nth-child(6) {
  background: var(--mc);
}
#process ol li:nth-child(7), #process ol li:nth-child(8) {
  border: solid 1px var(--mc);
  color: var(--mc);
}
#process ol li:nth-child(7) .step, #process ol li:nth-child(8) .step {
  border-bottom-color: var(--mc);
}
#process ol .step {
  font-weight: 500;
  text-align: center;
  line-height: 1.1;
  width: 70px;
  border-bottom: solid 1px #fff;
  padding-bottom: 20px;
  margin: 0 auto 22px;
}
#process ol .step span {
  display: block;
}
#process ol .step span:first-child {
  font-size: 12px;
}
#process ol .step span:last-child {
  font-size: 28px;
}
#process ol .text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 18px;
  font-weight: 500;
  margin: 0 auto;
  letter-spacing: 0.3em;
}
#process h4 {
  margin: 0 0 15px -0.5em;
}
#process ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 56px;
}
#process ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 16px;
}
#process ul li:before {
  content: "";
  display: block;
  width: 50px;
  aspect-ratio: 1/1;
  background: #929292;
}
#process ul li:nth-child(2):before {
  background: #494949;
}
#process ul li:nth-child(3):before {
  background: var(--mc);
}
#process ul .small {
  font-size: 14px;
}

#brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 120px;
}
#brand:before {
  content: "";
  display: block;
  width: 50%;
  height: 598px;
  background: url(../img/top/brand.jpg) no-repeat center/cover;
}
#brand .w_text {
  max-width: 465px;
}
#brand .w_text p {
  margin-bottom: 1em;
}
#brand .w_text p:last-child {
  margin-bottom: 0;
}
#brand .white {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 80px;
  background: #fff;
}
#brand .ttl01 {
  text-align: left;
  margin-bottom: 45px;
}
#brand h3 {
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 20px;
}
#brand h3 span {
  font-size: 24px;
}

#company {
  padding-bottom: 130px;
}
#company table {
  border-top: solid 1px #9CA3AF;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
#company table tr {
  border-bottom: solid 1px #9CA3AF;
}
#company table th {
  width: 220px;
  vertical-align: top;
  padding: 25px 0 27px 8px;
}
#company table td {
  width: calc(100% - 220px);
  padding: 25px 10px 27px 0;
}

#history {
  padding-bottom: 120px;
}
#history .bg {
  background: url(../img/top/history.jpg) no-repeat right top/454px auto;
  overflow: hidden;
}
#history .flex {
  display: -ms-grid;
  display: grid;
  gap: 32px 0;
  padding-left: 55px;
}
#history .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#history .th {
  width: 125px;
  position: relative;
}
#history .th:before {
  position: absolute;
  top: 5px;
  left: -55px;
  content: "";
  display: block;
  border-radius: 50%;
  background: var(--mc);
  width: 16px;
  height: auto;
  aspect-ratio: 1/1;
}
#history .th:after {
  position: absolute;
  content: "";
  display: block;
  left: -48px;
  top: 24px;
  width: 2px;
  height: calc(100% + 10px);
  background: url(../img/top/dot2.svg) repeat-y 0 0/2px auto;
}
#history .td {
  width: calc(100% - 125px);
}

#top_news {
  background: #fff;
  padding: 120px 0;
}
#top_news ul {
  border-top: solid 1px #9CA3AF;
  max-width: 800px;
  margin: 0 auto 48px;
}
#top_news ul li {
  border-bottom: solid 1px #9CA3AF;
}
#top_news ul a {
  position: relative;
  display: block;
  padding: 24px 0 24px 8px;
}
#top_news ul a:hover .ttl {
  color: #B6B6B6;
}
#top_news ul a:hover .cat {
  background: #B6B6B6;
}
#top_news ul a:hover .arrow {
  background: #fff;
  right: 0;
}
#top_news ul a:hover .arrow svg {
  color: var(--mc);
}
#top_news ul .flex {
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 32px;
  margin-bottom: 16px;
}
#top_news ul .date {
  font-size: 18px;
}
#top_news ul .cat {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  background: var(--mc);
  color: #fff;
  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;
  height: 28px;
  padding: 0 17px 3px;
}
#top_news ul .ttl {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  font-size: 18px;
  max-width: 650px;
  line-height: 1.3333333333;
}
#top_news ul .arrow {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: 8px;
  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;
  width: 48px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--mc);
  border: solid 1px var(--mc);
}
#top_news ul .arrow svg {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  color: #fff;
  width: 10px;
}

@media screen and (min-width: 768px) and (max-width: 1180px) {
  #kv h2 {
    bottom: calc(260 / 1180 * 100vw);
  }
  #kv h2 .ja {
    font-size: calc(33 / 1180 * 100vw);
    margin-bottom: calc(20 / 1180 * 100vw);
  }
  #kv h2 .en {
    font-size: calc(20 / 1180 * 100vw);
  }
  #kv .scroll_down {
    right: calc(65 / 1180 * 100vw);
  }
  #kv .scroll_down span {
    left: calc(5 / 1180 * 100vw);
    bottom: calc(45 / 1180 * 100vw);
    font-size: calc(12 / 1180 * 100vw);
  }
  #kv .scroll_down:before {
    left: calc(-3 / 1180 * 100vw);
    width: calc(7 / 1180 * 100vw);
    height: calc(7 / 1180 * 100vw);
  }
  #kv .scroll_down:after {
    width: calc(1 / 1180 * 100vw);
    height: calc(80 / 1180 * 100vw);
  }
  @-webkit-keyframes circlemove {
    0% {
      bottom: calc(80 / 1180 * 100vw);
    }
    100% {
      bottom: 0;
    }
  }
  @keyframes circlemove {
    0% {
      bottom: calc(80 / 1180 * 100vw);
    }
    100% {
      bottom: 0;
    }
  }
  @-webkit-keyframes cirlemovehide {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    80% {
      opacity: 0.9;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes cirlemovehide {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    80% {
      opacity: 0.9;
    }
    100% {
      opacity: 0;
    }
  }
  #kv_slider {
    height: calc(644 / 1180 * 100vw);
  }
  #about_us {
    overflow-x: hidden;
  }
  #about_us:after {
    top: calc(650 / 1180 * 100vw);
  }
  #about_us h2 {
    top: calc(48 / 1180 * 100vw);
    width: calc(50% - calc(290 / 1180 * 100vw));
  }
  #about_us h2 > span {
    padding: calc(14 / 1180 * 100vw) calc(40 / 1180 * 100vw) calc(14 / 1180 * 100vw) 0;
  }
  #about_us h2 .ja {
    font-size: calc(30 / 1180 * 100vw);
    margin-bottom: calc(14 / 1180 * 100vw);
  }
  #about_us h2 .en {
    font-size: calc(12 / 1180 * 100vw);
  }
  #about_us h3 {
    font-size: calc(24 / 1180 * 100vw);
    margin-bottom: calc(25 / 1180 * 100vw);
  }
  #about_us .border_box01 {
    padding-top: calc(165 / 1180 * 100vw);
    margin-bottom: calc(170 / 1180 * 100vw);
  }
  #about_us .border_box01:after {
    left: calc(-120 / 1180 * 100vw);
    width: calc(870 / 1180 * 100vw);
  }
  #about_us .border_box02 {
    width: calc(480 / 1180 * 100vw);
  }
  #about_us .border_box02:after {
    width: 52vw;
    top: calc(-100 / 1180 * 100vw);
    left: calc(-80 / 1180 * 100vw);
    height: calc(390 / 1180 * 100vw);
  }
  #business {
    padding-bottom: calc(120 / 1180 * 100vw);
  }
  #business .bg {
    padding-right: calc(630 / 1180 * 100vw);
    min-height: calc(530 / 1180 * 100vw);
    margin-bottom: calc(64 / 1180 * 100vw);
  }
  #business .bg h3 {
    font-size: calc(30 / 1180 * 100vw);
    margin-bottom: calc(16 / 1180 * 100vw);
  }
  #business .bg h3 span {
    font-size: calc(35 / 1180 * 100vw);
  }
  #business .bg h3:after {
    width: calc(40 / 1180 * 100vw);
    height: calc(1 / 1180 * 100vw);
    margin-top: calc(24 / 1180 * 100vw);
  }
  #business .bg h4 {
    font-size: calc(20 / 1180 * 100vw);
    margin-bottom: calc(28 / 1180 * 100vw);
  }
  #business .bg p {
    margin-bottom: calc(30 / 1180 * 100vw);
  }
  #business .bg dl {
    padding: calc(18 / 1180 * 100vw) calc(15 / 1180 * 100vw) calc(24 / 1180 * 100vw);
  }
  #business .bg dt {
    font-size: calc(18 / 1180 * 100vw);
    margin-bottom: calc(3 / 1180 * 100vw);
  }
  #business .bg dd {
    font-size: calc(14 / 1180 * 100vw);
  }
  #business .white_box {
    max-width: calc(1000 / 1180 * 100vw);
    margin: 0 auto calc(56 / 1180 * 100vw);
    padding: calc(30 / 1180 * 100vw) calc(10 / 1180 * 100vw) calc(32 / 1180 * 100vw);
  }
  #business .white_box h4 {
    font-size: calc(20 / 1180 * 100vw);
    margin-bottom: calc(15 / 1180 * 100vw);
  }
  #process {
    padding-bottom: calc(120 / 1180 * 100vw);
  }
  #process h3 {
    font-size: calc(20 / 1180 * 100vw);
    margin-bottom: calc(24 / 1180 * 100vw);
  }
  #process .lead {
    margin-bottom: calc(65 / 1180 * 100vw);
  }
  #process ol {
    margin-bottom: calc(32 / 1180 * 100vw);
  }
  #process ol li {
    width: calc(111 / 1180 * 100vw);
    height: calc(300 / 1180 * 100vw);
    padding-top: calc(35 / 1180 * 100vw);
  }
  #process ol li:not(:last-child):after {
    width: calc(20 / 1180 * 100vw);
    height: calc(3 / 1180 * 100vw);
    top: calc(155 / 1180 * 100vw);
    right: calc(-25 / 1180 * 100vw);
  }
  #process ol .step {
    width: calc(70 / 1180 * 100vw);
    padding-bottom: calc(20 / 1180 * 100vw);
    margin: 0 auto calc(22 / 1180 * 100vw);
  }
  #process ol .step span:first-child {
    font-size: calc(12 / 1180 * 100vw);
  }
  #process ol .step span:last-child {
    font-size: calc(28 / 1180 * 100vw);
  }
  #process ol .text {
    font-size: calc(18 / 1180 * 100vw);
  }
  #process h4 {
    margin: 0 0 calc(15 / 1180 * 100vw) -0.5em;
  }
  #process ul {
    gap: 0 calc(56 / 1180 * 100vw);
  }
  #process ul li {
    gap: 0 calc(16 / 1180 * 100vw);
  }
  #process ul li:before {
    width: calc(50 / 1180 * 100vw);
  }
  #process ul .small {
    font-size: calc(14 / 1180 * 100vw);
  }
  #brand {
    margin-bottom: calc(120 / 1180 * 100vw);
  }
  #brand:before {
    height: calc(598 / 1180 * 100vw);
  }
  #brand .w_text {
    max-width: calc(465 / 1180 * 100vw);
  }
  #brand .white {
    padding-left: calc(80 / 1180 * 100vw);
  }
  #brand .ttl01 {
    margin-bottom: calc(45 / 1180 * 100vw);
  }
  #brand h3 {
    font-size: calc(30 / 1180 * 100vw);
    margin-bottom: calc(20 / 1180 * 100vw);
  }
  #brand h3 span {
    font-size: calc(24 / 1180 * 100vw);
  }
  #company {
    padding-bottom: calc(130 / 1180 * 100vw);
  }
  #company table {
    max-width: calc(800 / 1180 * 100vw);
  }
  #company table th {
    width: calc(220 / 1180 * 100vw);
    padding: calc(25 / 1180 * 100vw) 0 calc(27 / 1180 * 100vw) calc(8 / 1180 * 100vw);
  }
  #company table td {
    width: calc(100% - calc(220 / 1180 * 100vw));
    padding: calc(25 / 1180 * 100vw) calc(10 / 1180 * 100vw) calc(27 / 1180 * 100vw) 0;
  }
  #history {
    padding-bottom: calc(120 / 1180 * 100vw);
  }
  #history .bg {
    background: url(../img/top/history.jpg) no-repeat right top/calc(454 / 1180 * 100vw) auto;
  }
  #history .flex {
    gap: calc(32 / 1180 * 100vw) 0;
    padding-left: calc(55 / 1180 * 100vw);
  }
  #history .th {
    width: calc(125 / 1180 * 100vw);
  }
  #history .th:before {
    top: calc(5 / 1180 * 100vw);
    left: calc(-55 / 1180 * 100vw);
    width: calc(16 / 1180 * 100vw);
  }
  #history .th:after {
    left: calc(-48 / 1180 * 100vw);
    top: calc(24 / 1180 * 100vw);
    width: calc(2 / 1180 * 100vw);
    height: calc(100% + calc(10 / 1180 * 100vw));
    background: url(../img/top/dot2.svg) repeat-y 0 0/calc(2 / 1180 * 100vw) auto;
  }
  #history .td {
    width: calc(100% - calc(125 / 1180 * 100vw));
  }
  #top_news {
    padding: calc(120 / 1180 * 100vw) 0;
  }
  #top_news ul {
    max-width: calc(800 / 1180 * 100vw);
    margin: 0 auto calc(48 / 1180 * 100vw);
  }
  #top_news ul a {
    padding: calc(24 / 1180 * 100vw) 0 calc(24 / 1180 * 100vw) calc(8 / 1180 * 100vw);
  }
  #top_news ul .flex {
    gap: 0 calc(32 / 1180 * 100vw);
    margin-bottom: calc(16 / 1180 * 100vw);
  }
  #top_news ul .date {
    font-size: calc(18 / 1180 * 100vw);
  }
  #top_news ul .cat {
    height: calc(28 / 1180 * 100vw);
    padding: 0 calc(17 / 1180 * 100vw) calc(3 / 1180 * 100vw);
  }
  #top_news ul .ttl {
    font-size: calc(18 / 1180 * 100vw);
    max-width: calc(650 / 1180 * 100vw);
  }
  #top_news ul .arrow {
    right: calc(8 / 1180 * 100vw);
    width: calc(48 / 1180 * 100vw);
  }
  #top_news ul .arrow svg {
    width: calc(10 / 1180 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  #kv {
    margin-bottom: calc(80 / 375 * 100vw);
  }
  #kv h2 {
    width: 100%;
    left: revert;
    -webkit-transform: revert;
            transform: revert;
    text-align: center;
    bottom: revert;
    top: 46%;
  }
  #kv h2 .ja {
    font-size: calc(21 / 375 * 100vw);
    margin-bottom: calc(12 / 375 * 100vw);
  }
  #kv h2 .en {
    font-size: calc(12 / 375 * 100vw);
  }
  #kv .scroll_down {
    left: 50%;
    right: revert;
  }
  #kv .scroll_down span {
    left: calc(5 / 375 * 100vw);
    bottom: calc(45 / 375 * 100vw);
    font-size: calc(12 / 375 * 100vw);
  }
  #kv .scroll_down:before {
    left: calc(-3 / 375 * 100vw);
    width: calc(7 / 375 * 100vw);
    height: calc(7 / 375 * 100vw);
  }
  #kv .scroll_down:after {
    height: calc(80 / 375 * 100vw);
  }
  @-webkit-keyframes circlemove {
    0% {
      bottom: calc(80 / 375 * 100vw);
    }
    100% {
      bottom: 0;
    }
  }
  @keyframes circlemove {
    0% {
      bottom: calc(80 / 375 * 100vw);
    }
    100% {
      bottom: 0;
    }
  }
  @-webkit-keyframes cirlemovehide {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    80% {
      opacity: 0.9;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes cirlemovehide {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    80% {
      opacity: 0.9;
    }
    100% {
      opacity: 0;
    }
  }
  #kv_slider {
    height: 100svh;
  }
  #kv_slider li {
    background-image: var(--bg_sp);
  }
  #about_us {
    overflow: hidden;
    position: relative;
    padding-bottom: 0;
    margin-bottom: calc(90 / 375 * 100vw);
  }
  #about_us .w1100 {
    padding-left: 0;
    padding-right: 0;
  }
  #about_us:before {
    content: none;
  }
  #about_us:after {
    position: revert;
    top: revert;
    content: "";
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    background: url(../img/top/au_bg02.jpg) no-repeat center/cover;
  }
  #about_us h2 {
    position: absolute;
    top: calc(32 / 375 * 100vw);
    width: calc(240 / 375 * 100vw);
    z-index: 3;
  }
  #about_us h2 > span {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin-left: calc(46 / 375 * 100vw);
    padding: calc(12 / 375 * 100vw) 0;
  }
  #about_us h2 span {
    display: block;
  }
  #about_us h2 .ja {
    font-size: calc(24 / 375 * 100vw);
    margin-bottom: calc(8 / 375 * 100vw);
  }
  #about_us h2 .en {
    font-size: calc(10 / 375 * 100vw);
  }
  #about_us h3 {
    font-weight: 500;
    font-size: calc(18 / 375 * 100vw);
    margin-bottom: calc(25 / 375 * 100vw);
    white-space: nowrap;
  }
  #about_us .border_box01 {
    position: relative;
    padding: calc(130 / 375 * 100vw) calc(46 / 375 * 100vw) calc(40 / 375 * 100vw) calc(30 / 375 * 100vw);
    width: auto;
    border: solid 1px #9CA3AF;
    border-right: none;
    margin-left: calc(20 / 375 * 100vw);
    margin-bottom: calc(358 / 375 * 100vw);
  }
  #about_us .border_box01:after {
    content: none;
  }
  #about_us .border_box01 p {
    margin-bottom: 1.5em;
  }
  #about_us .border_box01 p:last-child {
    margin-bottom: 0;
  }
  #about_us .border_box02 {
    position: relative;
    width: calc(100% - calc(22 / 375 * 100vw));
    border: solid 1px #9CA3AF;
    border-left: none;
    margin: 0 0 calc(40 / 375 * 100vw) 0;
    padding: calc(70 / 375 * 100vw) calc(30 / 375 * 100vw) calc(40 / 375 * 100vw) calc(45 / 375 * 100vw);
  }
  #about_us .border_box02:before {
    position: absolute;
    top: calc(-325 / 375 * 100vw);
    right: calc(-182 / 375 * 100vw);
    content: "";
    display: block;
    width: calc(453 / 375 * 100vw);
    height: calc(367 / 375 * 100vw);
    background: url(../img/top/au_bg01.jpg) no-repeat center/cover;
  }
  #about_us .border_box02:after {
    content: none;
  }
  #about_us .border_box02 p {
    margin-bottom: 1.5em;
  }
  #about_us .border_box02 p:last-child {
    margin-bottom: 0;
  }
  #business {
    padding-top: 0;
  }
  #business .bg {
    background: url(../img/top/business_bg.jpg) no-repeat center top/100% auto;
    padding-top: calc(356 / 375 * 100vw);
    padding-right: 0;
    min-height: 0;
    margin-bottom: calc(32 / 375 * 100vw);
  }
  #business .bg h3 {
    font-size: calc(18 / 375 * 100vw);
    margin-bottom: calc(16 / 375 * 100vw);
  }
  #business .bg h3 span {
    font-size: calc(20 / 375 * 100vw);
  }
  #business .bg h3:after {
    width: calc(40 / 375 * 100vw);
    height: calc(1 / 375 * 100vw);
    margin-top: calc(16 / 375 * 100vw);
  }
  #business .bg h4 {
    font-size: calc(18 / 375 * 100vw);
    margin-bottom: calc(28 / 375 * 100vw);
  }
  #business .bg p {
    font-size: calc(16 / 375 * 100vw);
    line-height: 1.5;
    margin-bottom: calc(30 / 375 * 100vw);
  }
  #business .bg dl {
    border-top: solid 1px #9CA3AF;
    border-bottom: solid 1px #9CA3AF;
    padding: calc(18 / 375 * 100vw) calc(26 / 375 * 100vw);
  }
  #business .bg dt {
    font-size: calc(16 / 375 * 100vw);
    margin-bottom: calc(3 / 375 * 100vw);
  }
  #business .bg dd {
    font-size: calc(14 / 375 * 100vw);
    padding-left: 1em;
    text-indent: -1em;
  }
  #business .white_box {
    margin: 0 auto calc(48 / 375 * 100vw);
    padding: calc(30 / 375 * 100vw) calc(28 / 375 * 100vw);
  }
  #business .white_box h4 {
    font-size: calc(18 / 375 * 100vw);
    margin-bottom: calc(15 / 375 * 100vw);
  }
  #business .white_box p {
    text-align: left;
    font-size: calc(14 / 375 * 100vw);
    line-height: 1.7142857143;
  }
  #process {
    padding-bottom: calc(100 / 375 * 100vw);
  }
  #process h3 {
    font-size: calc(15 / 375 * 100vw);
    margin-bottom: calc(24 / 375 * 100vw);
    white-space: nowrap;
  }
  #process .lead {
    margin-bottom: calc(48 / 375 * 100vw);
    text-align: left;
  }
  #process ol {
    display: -ms-grid;
    display: grid;
    max-width: calc(280 / 375 * 100vw);
    -webkit-box-pack: revert;
        -ms-flex-pack: revert;
            justify-content: revert;
    margin: 0 auto calc(48 / 375 * 100vw);
    gap: calc(30 / 375 * 100vw) 0;
  }
  #process ol li {
    width: 100%;
    height: calc(80 / 375 * 100vw);
    padding-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: revert;
            flex-direction: revert;
  }
  #process ol li:not(:last-child):after {
    position: absolute;
    content: "";
    display: block;
    width: calc(20 / 375 * 100vw);
    height: calc(3 / 375 * 100vw);
    background: url(../img/top/dot.svg) no-repeat center/cover;
    top: revert;
    right: revert;
    left: 50%;
    bottom: calc(-8 / 375 * 100vw);
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  #process ol li:nth-child(7) .step, #process ol li:nth-child(8) .step {
    border-right-color: var(--mc);
  }
  #process ol .step {
    width: calc(60 / 375 * 100vw);
    border-bottom: none;
    border-right: solid 1px #fff;
    padding: 0 calc(5 / 375 * 100vw) 0 0;
    margin: 0 0 0 calc(30 / 375 * 100vw);
  }
  #process ol .step span {
    display: block;
  }
  #process ol .step span:first-child {
    font-size: calc(12 / 375 * 100vw);
  }
  #process ol .step span:last-child {
    font-size: calc(28 / 375 * 100vw);
  }
  #process ol .text {
    -webkit-writing-mode: revert;
        -ms-writing-mode: revert;
            writing-mode: revert;
    font-size: calc(18 / 375 * 100vw);
    margin: 0 0 0 calc(16 / 375 * 100vw);
    letter-spacing: 0.04em;
  }
  #process h4 {
    margin: 0 0 calc(15 / 375 * 100vw) -0.5em;
    font-size: calc(16 / 375 * 100vw);
  }
  #process ul {
    display: -ms-grid;
    display: grid;
    gap: calc(16 / 375 * 100vw);
  }
  #process ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 calc(16 / 375 * 100vw);
    line-height: 1.3846153846;
  }
  #process ul li:before {
    content: "";
    display: block;
    width: calc(50 / 375 * 100vw);
    aspect-ratio: 1/1;
    background: #929292;
  }
  #process ul li:nth-child(2):before {
    background: #494949;
  }
  #process ul li:nth-child(3):before {
    background: var(--mc);
  }
  #process ul .small {
    font-size: calc(13 / 375 * 100vw);
  }
  #brand {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: calc(90 / 375 * 100vw);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #brand:before {
    width: 100%;
    aspect-ratio: 375/310;
    height: auto;
    background: url(../img/top/brand.jpg) no-repeat center/cover;
  }
  #brand .w_text {
    max-width: 100%;
  }
  #brand .w_text p {
    margin-bottom: 1em;
  }
  #brand .w_text p:last-child {
    margin-bottom: 0;
  }
  #brand .white {
    width: 100%;
    padding: calc(40 / 375 * 100vw) calc(45 / 375 * 100vw) calc(40 / 375 * 100vw);
  }
  #brand .ttl01 {
    text-align: left;
    margin-bottom: calc(38 / 375 * 100vw);
  }
  #brand h3 {
    font-weight: 500;
    font-size: calc(20 / 375 * 100vw);
    margin-bottom: calc(15 / 375 * 100vw);
  }
  #brand h3 span {
    font-size: calc(18 / 375 * 100vw);
  }
  #company {
    padding-bottom: calc(90 / 375 * 100vw);
  }
  #company table {
    border-top: solid 1px #9CA3AF;
  }
  #company table tr {
    border-bottom: none;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#9CA3AF), to(#9CA3AF));
    background-image: linear-gradient(#9CA3AF, #9CA3AF);
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: left bottom;
  }
  #company table th, #company table td {
    font-size: calc(13 / 375 * 100vw);
    line-height: 1.3846153846;
  }
  #company table th {
    width: calc(118 / 375 * 100vw);
    vertical-align: top;
    padding: calc(16 / 375 * 100vw) calc(5 / 375 * 100vw) calc(17 / 375 * 100vw) calc(8 / 375 * 100vw);
  }
  #company table td {
    width: calc(100% - calc(118 / 375 * 100vw));
    padding: calc(16 / 375 * 100vw) 0 calc(17 / 375 * 100vw) 0;
  }
  #history {
    padding-bottom: calc(100 / 375 * 100vw);
  }
  #history .w1100:after {
    content: "";
    background: url(../img/top/history.jpg) no-repeat center/cover;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 335/316;
  }
  #history .bg {
    background: none;
    padding-bottom: 0;
    margin-bottom: calc(40 / 375 * 100vw);
  }
  #history .flex {
    gap: calc(32 / 375 * 100vw) 0;
    padding-left: calc(28 / 375 * 100vw);
  }
  #history .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    line-height: 1.5;
  }
  #history .th {
    width: calc(94 / 375 * 100vw);
    position: relative;
  }
  #history .th:before {
    position: absolute;
    top: calc(4 / 375 * 100vw);
    left: calc(-26 / 375 * 100vw);
    content: "";
    display: block;
    border-radius: 50%;
    background: var(--mc);
    width: calc(14 / 375 * 100vw);
    height: auto;
    aspect-ratio: 1/1;
  }
  #history .th:after {
    position: absolute;
    content: "";
    display: block;
    left: calc(-20 / 375 * 100vw);
    top: calc(24 / 375 * 100vw);
    width: calc(2 / 375 * 100vw);
    height: calc(100% + calc(10 / 375 * 100vw));
    background: url(../img/top/dot2.svg) repeat-y 0 0/calc(2 / 375 * 100vw) auto;
  }
  #history .td {
    width: calc(100% - calc(94 / 375 * 100vw));
  }
  #top_news {
    padding: calc(32 / 375 * 100vw) 0;
  }
  #top_news ul {
    margin: 0 auto calc(48 / 375 * 100vw);
  }
  #top_news ul a {
    position: relative;
    display: block;
    padding: calc(24 / 375 * 100vw) 0 calc(24 / 375 * 100vw) calc(8 / 375 * 100vw);
  }
  #top_news ul a:hover .ttl {
    color: var(--black);
  }
  #top_news ul a:hover .cat {
    background: var(--mc);
  }
  #top_news ul a:hover .arrow {
    background: var(--mc);
    right: calc(10 / 375 * 100vw);
  }
  #top_news ul a:hover .arrow svg {
    color: #fff;
  }
  #top_news ul .flex {
    gap: 0 calc(32 / 375 * 100vw);
    margin-bottom: calc(16 / 375 * 100vw);
  }
  #top_news ul .date {
    font-size: calc(18 / 375 * 100vw);
  }
  #top_news ul .cat {
    position: relative;
    top: calc(1 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
    height: calc(24 / 375 * 100vw);
    padding: 0 calc(17 / 375 * 100vw) calc(1 / 375 * 100vw);
  }
  #top_news ul .ttl {
    font-size: calc(14 / 375 * 100vw);
    max-width: calc(260 / 375 * 100vw);
    line-height: 1.5;
  }
  #top_news ul .arrow {
    right: calc(10 / 375 * 100vw);
    width: calc(48 / 375 * 100vw);
  }
  #top_news ul .arrow svg {
    width: calc(10 / 375 * 100vw);
  }
}
/*―――――――――――――――――――――――――*
*	news-case
*―――――――――――――――――――――――――*/
#two_column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#two_column #column_left {
  width: 800px;
}
#two_column #column_right {
  width: 230px;
}
#two_column #column_right select:last-child {
  margin-bottom: 0;
}
#two_column select {
  display: block;
  font-family: inherit;
  font-size: inherit;
  border: none;
  border-radius: 0;
  width: 100%;
  background: #F4F4F4 url(../img/common/select_arrow.svg) no-repeat center right 26px/12px auto;
  padding: 13px 48px 13px 27px;
  margin-bottom: 48px;
  color: var(--black);
}

.news-case_post {
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: solid 1px #9CA3AF;
}
.news-case_post .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin-bottom: 20px;
}
.news-case_post .header .ttl, .news-case_post .header .item {
  width: 100%;
}
.news-case_post .header .ttl {
  font-size: 24px;
  line-height: 1.6666666667;
}
.news-case_post .header .flex {
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 32px;
  margin-bottom: 16px;
}
.news-case_post .header .date {
  font-size: 18px;
}
.news-case_post .header .cat {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  background: var(--mc);
  color: #fff;
  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;
  height: 28px;
  padding: 0 17px 3px;
}
.news-case_post .content p {
  margin: 1em 0;
}
.news-case_post .content p:last-child {
  margin-bottom: 0;
}
.news-case_post .content a {
  text-decoration: none;
}

.pager {
  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;
  font-size: 16px;
  gap: 0 16px;
  font-weight: 500;
  margin-top: 65px;
}
.pager svg {
  width: 7px;
  fill: var(--black);
}
.pager .is-disabled svg {
  fill: #B6B6B6;
}
.pager .pager__prev {
  margin-right: 60px;
}
.pager .pager__next {
  margin-left: 60px;
}
.pager .current {
  color: #B6B6B6;
  text-decoration: underline;
}

.not__found {
  text-align: center;
  padding: 50px;
}

@media screen and (min-width: 768px) and (max-width: 1180px) {
  #two_column #column_left {
    width: calc(800 / 1180 * 100vw);
  }
  #two_column #column_right {
    width: calc(230 / 1180 * 100vw);
  }
  #two_column select {
    background: #F4F4F4 url(../img/common/select_arrow.svg) no-repeat center right calc(26 / 1180 * 100vw)/calc(12 / 1180 * 100vw) auto;
    padding: calc(13 / 1180 * 100vw) calc(48 / 1180 * 100vw) calc(13 / 1180 * 100vw) calc(27 / 1180 * 100vw);
    margin-bottom: calc(48 / 1180 * 100vw);
  }
  .news-case_post {
    padding-bottom: calc(48 / 1180 * 100vw);
    margin-bottom: calc(48 / 1180 * 100vw);
  }
  .news-case_post .header {
    margin-bottom: calc(20 / 1180 * 100vw);
  }
  .news-case_post .header .ttl {
    font-size: calc(24 / 1180 * 100vw);
  }
  .news-case_post .header .flex {
    gap: 0 calc(32 / 1180 * 100vw);
    margin-bottom: calc(16 / 1180 * 100vw);
  }
  .news-case_post .header .date {
    font-size: calc(18 / 1180 * 100vw);
  }
  .news-case_post .header .cat {
    height: calc(28 / 1180 * 100vw);
    padding: 0 calc(17 / 1180 * 100vw) calc(3 / 1180 * 100vw);
  }
  .pager {
    font-size: calc(16 / 1180 * 100vw);
    gap: 0 calc(16 / 1180 * 100vw);
    margin-top: calc(65 / 1180 * 100vw);
  }
  .pager svg {
    width: calc(7 / 1180 * 100vw);
  }
  .pager .pager__prev {
    margin-right: calc(60 / 1180 * 100vw);
  }
  .pager .pager__next {
    margin-left: calc(60 / 1180 * 100vw);
  }
  .not__found {
    padding: calc(50 / 1180 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  #two_column {
    display: -ms-grid;
    display: grid;
    gap: calc(50 / 375 * 100vw) 0;
  }
  #two_column #column_left, #two_column #column_right {
    width: 100%;
  }
  #two_column select {
    background: #F4F4F4 url(../img/common/select_arrow.svg) no-repeat center right calc(26 / 375 * 100vw)/calc(12 / 375 * 100vw) auto;
    padding: calc(13 / 375 * 100vw) calc(48 / 375 * 100vw) calc(13 / 375 * 100vw) calc(27 / 375 * 100vw);
    margin-bottom: calc(20 / 375 * 100vw);
  }
  .news-case_post {
    padding-bottom: calc(48 / 375 * 100vw);
    margin-bottom: calc(48 / 375 * 100vw);
    border-bottom: solid 1px #9CA3AF;
  }
  .news-case_post .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: calc(20 / 375 * 100vw);
  }
  .news-case_post .header .ttl, .news-case_post .header .item {
    width: 100%;
  }
  .news-case_post .header .ttl {
    font-size: calc(20 / 375 * 100vw);
  }
  .news-case_post .header .flex {
    gap: 0 calc(32 / 375 * 100vw);
    margin-bottom: calc(16 / 375 * 100vw);
  }
  .news-case_post .header .date {
    font-size: calc(18 / 375 * 100vw);
  }
  .news-case_post .header .cat {
    position: relative;
    top: calc(1 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
    height: calc(24 / 375 * 100vw);
    padding: 0 calc(17 / 375 * 100vw) calc(2 / 375 * 100vw);
  }
  .pager {
    font-size: calc(15 / 375 * 100vw);
    gap: 0 calc(16 / 375 * 100vw);
    margin-top: calc(65 / 375 * 100vw);
  }
  .pager svg {
    width: calc(7 / 375 * 100vw);
  }
  .pager .pager__prev {
    margin-right: calc(60 / 375 * 100vw);
  }
  .pager .pager__next {
    margin-left: calc(60 / 375 * 100vw);
  }
  .not__found {
    text-align: center;
    padding: calc(50 / 375 * 100vw);
  }
}
/*―――――――――――――――――――――――――*
*	contact
*―――――――――――――――――――――――――*/
#contact .lead {
  font-size: 17px;
  line-height: 1.7647058824;
  margin-bottom: 120px;
}
#contact .lead span {
  font-weight: 500;
}
#contact h2 {
  font-size: 18px;
  color: var(--mc);
}

#contact_tel {
  padding-bottom: 70px;
  border-bottom: solid 1px #9CA3AF;
  margin-bottom: 60px;
  color: var(--mc);
}
#contact_tel a {
  color: var(--mc);
}
#contact_tel .num {
  font-size: 42px;
  font-weight: 500;
  padding-left: 20px;
}
#contact_tel .text {
  position: relative;
  top: -3px;
  font-size: 15px;
  margin-left: 20px;
}

#contact_form {
  padding-bottom: 120px;
}
#contact_form h2 {
  margin-bottom: 65px;
}
#contact_form .btn01 {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: 0.04em;
}
#contact_form table {
  width: 100%;
}
#contact_form table th {
  position: relative;
  width: 320px;
  vertical-align: top;
  padding: 24px 0 24px 20px;
  font-weight: 500;
}
#contact_form table th .rc {
  position: absolute;
  right: 10px;
  color: #AA0000;
  font-weight: 400;
}
#contact_form table td {
  width: calc(100% - 320px);
  padding: 12px 0;
}
#contact_form input[type=text],
#contact_form input[type=email],
#contact_form input[type=tel],
#contact_form textarea,
#contact_form select {
  border-radius: 0;
  color: var(--black);
  display: block;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
  padding: 11px 24px;
  border: solid 1px #707070;
}
#contact_form input[type=text]::-webkit-input-placeholder, #contact_form input[type=email]::-webkit-input-placeholder, #contact_form input[type=tel]::-webkit-input-placeholder, #contact_form textarea::-webkit-input-placeholder, #contact_form select::-webkit-input-placeholder {
  color: #DBDBDB;
}
#contact_form input[type=text]::-moz-placeholder, #contact_form input[type=email]::-moz-placeholder, #contact_form input[type=tel]::-moz-placeholder, #contact_form textarea::-moz-placeholder, #contact_form select::-moz-placeholder {
  color: #DBDBDB;
}
#contact_form input[type=text]:-ms-input-placeholder, #contact_form input[type=email]:-ms-input-placeholder, #contact_form input[type=tel]:-ms-input-placeholder, #contact_form textarea:-ms-input-placeholder, #contact_form select:-ms-input-placeholder {
  color: #DBDBDB;
}
#contact_form input[type=text]::-ms-input-placeholder, #contact_form input[type=email]::-ms-input-placeholder, #contact_form input[type=tel]::-ms-input-placeholder, #contact_form textarea::-ms-input-placeholder, #contact_form select::-ms-input-placeholder {
  color: #DBDBDB;
}
#contact_form input[type=text]::placeholder,
#contact_form input[type=email]::placeholder,
#contact_form input[type=tel]::placeholder,
#contact_form textarea::placeholder,
#contact_form select::placeholder {
  color: #DBDBDB;
}
#contact_form select {
  background: #fff url(../img/common/select_arrow.svg) no-repeat right 24px center/16px auto;
}
#contact_form .zip {
  max-width: 116px;
}
#contact_form textarea {
  height: 230px;
  resize: vertical;
}
#contact_form .is_pp {
  font-size: 17px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 130px auto 80px;
  position: relative;
}
#contact_form .is_pp .wpcf7-list-item {
  margin-left: 0;
}
#contact_form .is_pp .wpcf7-not-valid-tip {
  display: none;
}
#contact_form .is_pp .org-error-message {
  display: none;
  color: #dc3232;
  font-size: 1em;
  font-weight: normal;
  margin-top: 10px;
}
#contact_form .is_pp:has(.wpcf7-not-valid-tip) .org-error-message {
  display: block;
}
#contact_form .is_pp a {
  text-decoration: underline;
}
#contact_form .is_pp .wpcf7-list-item-label {
  display: none;
}
#contact_form .is_pp input[type=checkbox] {
  display: none;
}
#contact_form .is_pp label {
  padding-left: 48px;
  position: relative;
}
#contact_form .is_pp label:has(input:checked):after {
  opacity: 1;
}
#contact_form .is_pp label:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  border: solid 1px #707070;
  background: #fff;
}
#contact_form .is_pp label:after {
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  left: 6px;
  content: "";
  display: block;
  width: 22px;
  height: 18px;
  background: url(../img/contact/check.svg) no-repeat left top/100% auto;
}

@media screen and (min-width: 768px) and (max-width: 1180px) {
  #contact .lead {
    font-size: calc(17 / 1180 * 100vw);
    margin-bottom: calc(120 / 1180 * 100vw);
  }
  #contact h2 {
    font-size: calc(18 / 1180 * 100vw);
  }
  #contact_tel {
    padding-bottom: calc(70 / 1180 * 100vw);
    border-bottom: solid 1px #9CA3AF;
    margin-bottom: calc(60 / 1180 * 100vw);
  }
  #contact_tel .num {
    font-size: calc(42 / 1180 * 100vw);
    padding-left: calc(20 / 1180 * 100vw);
  }
  #contact_tel .text {
    top: calc(-3 / 1180 * 100vw);
    font-size: calc(15 / 1180 * 100vw);
    margin-left: calc(20 / 1180 * 100vw);
  }
  #contact_form {
    padding-bottom: calc(120 / 1180 * 100vw);
  }
  #contact_form h2 {
    margin-bottom: calc(65 / 1180 * 100vw);
  }
  #contact_form table th {
    width: calc(320 / 1180 * 100vw);
    padding: calc(24 / 1180 * 100vw) 0 calc(24 / 1180 * 100vw) calc(20 / 1180 * 100vw);
  }
  #contact_form table th .rc {
    right: calc(10 / 1180 * 100vw);
  }
  #contact_form table td {
    width: calc(100% - calc(320 / 1180 * 100vw));
    padding: calc(12 / 1180 * 100vw) 0;
  }
  #contact_form input[type=text],
  #contact_form input[type=email],
  #contact_form input[type=tel],
  #contact_form textarea,
  #contact_form select {
    padding: calc(11 / 1180 * 100vw) calc(24 / 1180 * 100vw);
  }
  #contact_form select {
    background: #fff url(../img/common/select_arrow.svg) no-repeat right calc(24 / 1180 * 100vw) center/calc(16 / 1180 * 100vw) auto;
  }
  #contact_form .zip {
    max-width: calc(116 / 1180 * 100vw);
  }
  #contact_form textarea {
    height: calc(230 / 1180 * 100vw);
  }
  #contact_form .is_pp {
    font-size: calc(17 / 1180 * 100vw);
    margin: calc(130 / 1180 * 100vw) auto calc(80 / 1180 * 100vw);
  }
  #contact_form .is_pp .org-error-message {
    margin-top: calc(10 / 1180 * 100vw);
    font-size: calc(16 / 1180 * 100vw);
  }
  #contact_form .is_pp label {
    padding-left: calc(48 / 1180 * 100vw);
  }
  #contact_form .is_pp label:before {
    width: calc(32 / 1180 * 100vw);
    height: calc(32 / 1180 * 100vw);
    border: solid calc(1 / 1180 * 100vw) #707070;
  }
  #contact_form .is_pp label:after {
    left: calc(6 / 1180 * 100vw);
    width: calc(22 / 1180 * 100vw);
    height: calc(18 / 1180 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  #contact .lead {
    font-size: calc(16 / 375 * 100vw);
    line-height: 1.5;
    margin-bottom: calc(75 / 375 * 100vw);
  }
  #contact h2 {
    font-size: calc(18 / 375 * 100vw);
  }
  #contact_tel {
    padding-bottom: calc(40 / 375 * 100vw);
    margin-bottom: calc(40 / 375 * 100vw);
  }
  #contact_tel h2 {
    margin-bottom: calc(5 / 375 * 100vw);
  }
  #contact_tel .num {
    line-height: 1;
    font-size: calc(42 / 375 * 100vw);
    font-weight: 500;
    padding-left: calc(20 / 375 * 100vw);
  }
  #contact_tel .text {
    display: block;
    position: relative;
    top: revert;
    font-size: calc(15 / 375 * 100vw);
    margin-left: 0;
    padding-left: calc(12 / 375 * 100vw);
  }
  #contact_form {
    padding-bottom: calc(100 / 375 * 100vw);
  }
  #contact_form h2 {
    margin-bottom: calc(35 / 375 * 100vw);
  }
  #contact_form table {
    width: 100%;
  }
  #contact_form table tr, #contact_form table th, #contact_form table td {
    display: block;
    width: 100%;
  }
  #contact_form table th {
    padding: 0 0 0 calc(20 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
  }
  #contact_form table th .rc {
    position: revert;
    right: revert;
    margin-left: calc(8 / 375 * 100vw);
  }
  #contact_form table td {
    padding: calc(8 / 375 * 100vw) 0 calc(32 / 375 * 100vw) calc(20 / 375 * 100vw);
  }
  #contact_form input[type=text],
  #contact_form input[type=email],
  #contact_form input[type=tel],
  #contact_form textarea,
  #contact_form select {
    font-size: calc(16 / 375 * 100vw);
    padding: calc(11 / 375 * 100vw) calc(24 / 375 * 100vw);
    color: var(--black);
  }
  #contact_form select {
    background: #fff url(../img/common/select_arrow.svg) no-repeat right calc(24 / 375 * 100vw) center/calc(16 / 375 * 100vw) auto;
  }
  #contact_form .zip {
    max-width: calc(116 / 375 * 100vw);
  }
  #contact_form textarea {
    height: calc(230 / 375 * 100vw);
  }
  #contact_form .is_pp {
    font-size: calc(15 / 375 * 100vw);
    margin: calc(16 / 375 * 100vw) auto calc(50 / 375 * 100vw);
  }
  #contact_form .is_pp .org-error-message {
    margin-top: calc(10 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
  }
  #contact_form .is_pp label {
    padding-left: calc(32 / 375 * 100vw);
  }
  #contact_form .is_pp label:before {
    width: calc(24 / 375 * 100vw);
    height: calc(24 / 375 * 100vw);
  }
  #contact_form .is_pp label:after {
    left: calc(6 / 375 * 100vw);
    width: calc(13 / 375 * 100vw);
    height: calc(10 / 375 * 100vw);
  }
}
/*# sourceMappingURL=style.css.map */