@charset "UTF-8";

/* CSS Document */

/* http://meyerweb.com/eric/tools/css/reset/
  v2.0 | 20110126
  License: none (public domain)
*/

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-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
picture,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

html {
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}

/* フォント設定 */
body {
  font-family:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "Yu Gothic Medium", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

/* WEB FONTs 游ゴシックかすれ予防*/
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}
@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 100;
}
@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 200;
}

/* クラス名でのfont-family設定 */
/* ゴシック系 */
.f-gothic {
  font-family:
    -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic Medium",
    "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",
    sans-serif;
}
.f-gothic-02 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
}
.f-gothic-zen {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-optical-sizing: auto;
}
.f-gothic-maru {
  font-family: "Zen Maru Gothic", sans-serif;
  font-optical-sizing: auto;
}

/* 明朝系 */
.f-min {
  font-family:
    "Yu Mincho", "游明朝", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN",
    "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.f-min-02 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
}
.f-min-zen {
  font-family: "Zen Old Mincho", serif;
  font-optical-sizing: auto;
}

/* chrome画質悪化の対策*/
img {
  image-rendering: -webkit-optimize-contrast;
}

/* アニメーション
-------------------------------------*/
/* ScrollTrigger マーカーを強制的に非表示にする */
.gsap-marker-scroller-end,
.gsap-marker-start,
.gsap-marker-end,
.gsap-marker-scroller-start {
  display: none !important;
}

/*fadein*/
.animated__fadeIn {
  opacity: 0;
  translate: 0 40px;
  transition:
    opacity 0.8s ease,
    translate 0.8s ease;
}

.animated__fadeIn.js-show {
  opacity: 1;
  translate: 0 0;
}

/*片側から出現*/
.animated__clipView {
  clip-path: inset(0 100% 0 0); /*before (出現前)*/
  transition: clip-path 0.8s ease;
}

/*after (出現後)*/
.animated__clipView.js-show {
  clip-path: inset(0 0 0 0);
}

/*左からスライドするアニメーション*/
.animated__slideIn--left {
  opacity: 0; /*before (出現前)*/
  transition:
    opacity 0.5s ease,
    translate 0.5s ease;
  translate: -1000px;
}

.animated__slideIn--left.js-show {
  opacity: 1;
  translate: 0;
}

/*右からスライドするアニメーション*/
.animated__slideIn--right {
  opacity: 0; /*before (出現前)*/
  transition:
    opacity 0.5s ease,
    translate 0.5s ease;
  translate: 1000px;
}

.animated__slideIn--right.js-show {
  opacity: 1; /*before (出現前)*/
  translate: 0;
}

/* ===============================================================
      【PC】  @media screen and (min-width: 768px),print 
============================================================== */
@media screen and (min-width: 768px), print {
  /* base
-------------------------------------*/
  body {
    overflow-x: hidden;
  }

  /*pc・タブレットcss*/
  /*pc_defaultset*/
  .pc,
  .p {
    display: block !important;
  }
  /*pcのみ表示ブロック*/
  .pc2 {
    display: inline-block !important;
  }
  /*pcのみ表示ブロック*/
  .sp,
  .sp2 {
    display: none !important;
  }
  /*スマホのみ表示ブロック*/
  .h_menu {
    display: none;
  }
  /*スマホ用ヘッダ*/
  .sp-header {
    display: none;
  }
  /*スマホ用メニュー*/
  #sp-g-nav {
    display: none;
  }
  /*スマホ用メニュー*/
  .sp-fix-list {
    display: none;
  }

  /* header
-------------------------------------*/
  /* -header.php- */
  header {
    max-width: 1920px;
    width: 100%;
    margin-inline: auto;
    position: relative;
    z-index: 120;

    /* --pc-menu-trigger-size: 80px; ハンバーガーメニューのサイズ */
    --pc-menu-trigger-size: clamp(
      40px,
      13.333px + 3.472vw,
      80px
    ); /* 768 ~ 1920px */
  }

  /* （PC: 左 .header__inner | 中央 #g-nav 伸縮 | 右 .pc-menu-btn） */
  header .site-header-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(12px, 2vw, 32px);
    padding-top: 16px;
    padding-bottom: clamp(16px, 10.667px + 0.694vw, 24px);
    padding-left: clamp(16px, 5.333px + 1.389vw, 32px); /* 768 ~ 1920px */
    padding-right: clamp(16px, -90.667px + 13.889vw, 176px); /* 768 ~ 1920px */
  }
  header .site-header-row .header__inner.pc {
    flex: 0 0 auto;
    position: relative;
    z-index: 95;
  }
  header .site-header-row #g-nav {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 95;
  }
  header .site-header-row > .pc-menu-btn {
    flex: 0 0 auto;
    margin-left: auto;
    align-self: center;
  }

  /* -common.header.php- */
  /* header logo */
  header .header__logo-wrap {
    display: flex;
    align-items: space-between;
    justify-content: center;
    gap: 25px;
  }
  header .header__logo-link {
    display: block;
    width: clamp(189px, 63px + 16.406vw, 378px); /* 768 ~ 1920px */
    height: auto;
    aspect-ratio: 378 / 50;
  }
  header .header__logo-link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  header .header__logo p {
    font-size: 14px;
    color: #222;
  }
  header .header__catch {
    font-size: clamp(10px, 7.333px + 0.347vw, 14px); /* 768 ~ 1920px */
    font-weight: 400;
    line-height: 1.428571;
    letter-spacing: 0;
    color: #222;
    padding: 5px 0px 0px 0px;
  }
  @media screen and (max-width: 1000px) {
    header .header__catch {
      display: none;
    }
  }

  /* -common_gnavi.php- */
  /* header gnav */
  #g-nav .g-nav__inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(8px, 0.833vw, 16px);
    width: 100%;
  }

  #g-nav .g-nav__tel {
    flex: 0 1 auto;
    width: clamp(148px, 12.292vw, 236px); /* 768 ~ 1920px */
  }
  #g-nav .g-nav__tel img {
    display: block;
    width: 100%;
    height: auto;
  }
  #g-nav .g-nav__tel-area {
    display: flex;
    align-items: center;
    gap: clamp(4px, 0.521vw, 10px);
    flex: 0 1 auto;
    min-width: 0;
  }
  @media screen and (max-width: 1800px) {
    #g-nav .g-nav__tel-area {
      flex-direction: column;
    }
  }
  #g-nav .g-nav__tel-text {
    font-size: clamp(10px, 7.333px + 0.347vw, 14px); /* 768 ~ 1920px */
    font-weight: 400;
    line-height: 1.428571;
    letter-spacing: 0;
    color: #222;
  }

  #g-nav .g-nav__list {
    display: flex;
    align-items: center;
    gap: clamp(4px, 0.417vw, 8px);
    flex: 0 1 auto;
    min-width: 0;
  }
  #g-nav .g-nav__item {
    flex: 0 1 auto;
    min-width: 0;
  }
  #g-nav .g-nav__item img {
    display: block;
    width: 100%;
    height: auto;
  }
  #g-nav .g-nav__item:nth-child(1) {
    width: clamp(38px, 2.708vw, 52px);
  }
  #g-nav .g-nav__item:nth-child(2) {
    width: clamp(136px, 10.313vw, 198px);
  }
  #g-nav .g-nav__item:nth-child(3) {
    width: clamp(165px, 12.5vw, 240px);
  }

  /* pc-menu-btn　　（ハンバーガーメニュー） */
  .pc-menu-btn {
    position: fixed;
    top: 0;
    right: clamp(40px, -80px + 8.333vw, 80px); /*1440 ~ 1920px */
    width: var(--pc-menu-trigger-size);
    height: var(--pc-menu-trigger-size);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    background-color: #4b4035;
    z-index: 99;
  }
  @media screen and (max-width: 1439px) {
    .pc-menu-btn {
      right: 0;
    }
  }
  @media screen and (min-width: 1921px) {
    .pc-menu-btn {
      right: calc(((100vw - 1920px) / 2) + 80px);
    }
  }

  .pc-menu-btn .pc-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(5px, 1.667px + 0.434vw, 10px); /* 768 ~ 1920px */
    margin-top: clamp(4px, 1.333px + 0.347vw, 8px); /* 768 ~ 1920px */
  }
  .pc-menu-btn .pc-menu__bar-wrap {
    --pc-menu-bar-gap: clamp(4px, 1.333px + 0.347vw, 8px); /* 768 ~ 1920px */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--pc-menu-bar-gap);
    width: 100%;
    min-height: calc((var(--pc-menu-bar-gap) * 2) + 3px);
  }
  .pc-menu-btn .pc-menu__bar {
    display: block;
    width: 40%;
    min-width: 16px;
    height: 1px;
    background-color: #fff;
    transform-origin: center;
    transition:
      transform 0.28s ease,
      opacity 0.2s ease,
      width 0.28s ease;
  }
  .pc-menu-btn .pc-menu__bar:nth-child(2) {
    width: 20%;
    min-width: 10px;
  }
  .pc-menu-btn.is-open .pc-menu__bar-wrap {
    gap: var(--pc-menu-bar-gap);
  }
  .pc-menu-btn.is-open .pc-menu__bar:nth-child(1) {
    width: 50%;
    transform: translateY(calc(var(--pc-menu-bar-gap) + 1px)) rotate(28deg);
  }
  .pc-menu-btn.is-open .pc-menu__bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .pc-menu-btn.is-open .pc-menu__bar:nth-child(3) {
    width: 50%;
    transform: translateY(calc((var(--pc-menu-bar-gap) * -1) - 1px))
      rotate(-28deg);
  }
  .pc-menu-btn .pc-menu__text {
    font-size: clamp(8px, 5.333px + 0.347vw, 12px); /* 768 ~ 1920px */
    color: #fff;
  }
  .pc-menu-btn:hover {
    opacity: 0.8;
    cursor: pointer;
    cursor: hand;
  }

  /* パネル展開時のメニュー */
  #pc-menu-open {
    display: none;
    position: fixed;
    inset: 0;
    margin: 0;
    box-sizing: border-box;
    min-height: 100vh;
    min-height: 100dvh;
    background: #fff;
    overflow-y: auto;
    z-index: 90;
  }
  #pc-menu-open.pc-panel-menu {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
  }

  /* 閉じるボタン */
  #pc-menu-open .open-close-01 {
    position: absolute;
    top: 0;
    right: max(
      var(--pc-menu-trigger-size),
      calc(((100vw - 1920px) / 2) + var(--pc-menu-trigger-size))
    );
  }

  #pc-menu-open .pc-panel-menu__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: min(95%, 1240px);
    margin-inline: auto;
    min-height: 100vh;
    min-height: 100dvh;
    min-width: 0;
  }
  #pc-menu-open .pc-panel-menu__wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(24px, -57.333px + 10.59vw, 146px); /* 768 ~ 1920px */
    width: 100%;
    min-width: 0;
  }

  #pc-menu-open .pc-panel-menu__nav {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-width: 0;
    gap: clamp(20px, -14px + 3.8vw, 64px); /* 768 ~ 1920px */
  }
  #pc-menu-open .pc-panel-menu__list {
    flex: 0 0 auto;
    width: max-content;
    min-width: max-content;
    max-width: none;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: clamp(12px, 8.667px + 0.278vw, 14px); /* 1200 ~ 1440px */
    color: #333;
  }
  #pc-menu-open .pc-panel-menu__item {
    margin: 0;
    padding: 0;
  }
  #pc-menu-open .pc-panel-menu__item + .pc-panel-menu__item {
    margin-top: 28px;
  }
  #pc-menu-open .pc-panel-menu__item-title {
    margin-bottom: 16px;
    padding-bottom: 16px;
    font-size: clamp(12px, 9.333px + 0.347vw, 16px); /* 768 ~ 1920px */
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    border-bottom: 1px solid #ccc;
  }

  #pc-menu-open .pc-panel-menu__sublist {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  #pc-menu-open .pc-panel-menu__subitem + .pc-panel-menu__subitem {
    margin-top: 0;
  }
  #pc-menu-open .pc-panel-menu__sublink {
    display: inline-block;

    font-size: clamp(12px, 10.667px + 0.174vw, 14px); /* 768 ~ 1920px */
    font-weight: 400;
    color: #222;
    line-height: 2.142;
    letter-spacing: 0;
    white-space: nowrap;
  }
  #pc-menu-open .pc-panel-menu__sublink::before {
    content: "> ";
    margin-right: 8px;
  }

  #pc-menu-open .pc-panel-menu__company-info {
    width: clamp(220px, 169.333px + 6.597vw, 296px); /* 768 ~ 1920px */
    max-width: 100%;
    font-size: 13px;
    color: #333;
    line-height: 1.65;
  }
  #pc-menu-open .pc-panel-menu__logo {
    margin-bottom: 20px;
    height: auto;
    aspect-ratio: 296 / 39;
  }
  #pc-menu-open .pc-panel-menu__logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  #pc-menu-open .pc-panel-menu__main-office,
  #pc-menu-open .pc-panel-menu__model-house,
  #pc-menu-open .pc-panel-menu__factory {
    margin-bottom: 16px;
    font-size: 14px;
    font-size: clamp(12px, 10.667px + 0.174vw, 14px); /* 768 ~ 1920px */
    font-weight: 400;
    line-height: 1.71428571;
    letter-spacing: 0;
    color: #222;
  }
  #pc-menu-open .pc-panel-menu__license {
    margin-top: 20px;
    font-size: clamp(10px, 8.667px + 0.174vw, 12px); /* 768 ~ 1920px */
    font-weight: 400;
    line-height: 1.833333;
    letter-spacing: 0;
    color: #888;
  }

  /* パンくずリスト　　　
-------------------------------------*/
  .seo_bread_list {
    margin: 0 auto 20px;
  }
  .seo_bread_list li {
    margin-right: 20px;
    float: left;
  }
  .seo_bread_list li::after {
    content: " >";
  }
  .seo_bread_list li:last-child::after {
    content: "";
  }

  /* footer
-------------------------------------*/
  footer {
    position: relative;
    max-width: 1920px;
    margin-inline: auto;
    background-color: #222222;
  }

  /* footer (pc-panel-menuベースを移植) */
  footer .footer__inner {
    width: min(95%, 1440px);
    margin-inline: auto;
    padding-block: 80px;
    min-width: 0;
  }
  footer .footer__flex-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* gap: 380px; */
    gap: clamp(20px, -220px + 31.25vw, 380px); /* 768 ~ 1920px */
    /* gap: clamp(24px, -8px + 3.5vw, 64px); 768 ~ 1920px */
    width: 100%;
    min-width: 0;
    color: #fff;
  }
  footer .footer__nav {
    display: grid;
    grid-template-columns: 198fr 160fr 240fr;
    justify-content: center;
    align-items: flex-start;
    min-width: 0;
    gap: clamp(16px, -26.667px + 5.556vw, 80px); /* 768 ~ 1920px */
  }
  footer .footer__list {
    flex: 0 0 auto;
    width: 100%;
    min-width: max-content;
    max-width: none;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: clamp(12px, 8.667px + 0.278vw, 14px); /* 1200 ~ 1440px */
    color: #333;
  }
  footer .footer__item {
    margin: 0;
    padding: 0;
  }
  footer .footer__item + .footer__item {
    margin-top: 28px;
  }
  footer .footer__item-title {
    margin-bottom: 16px;
    padding-bottom: 16px;
    font-size: clamp(12px, 9.333px + 0.347vw, 16px); /* 768 ~ 1920px */
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
    border-bottom: 1px solid #fff;
  }
  footer .footer__sublist {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  footer .footer__subitem + .footer__subitem {
    margin-top: 0;
  }
  footer .footer__sublink {
    display: inline-block;
    font-size: clamp(12px, 10.667px + 0.174vw, 14px); /* 768 ~ 1920px */
    font-weight: 400;
    color: #fff;
    line-height: 2.142;
    letter-spacing: 0;
    white-space: nowrap;
  }
  footer .footer__sublink::before {
    content: "> ";
    margin-right: 8px;
  }
  footer .footer__company-info {
    width: clamp(220px, 169.333px + 6.597vw, 296px); /* 768 ~ 1920px */
    max-width: 100%;
    font-size: 13px;
    color: #fff;
    line-height: 1.65;
  }
  footer .footer__logo {
    margin-bottom: 20px;
    height: auto;
    aspect-ratio: 296 / 39;
  }
  footer .footer__logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  footer .footer__main-office,
  footer .footer__model-house,
  footer .footer__factory {
    margin-bottom: 16px;
    font-size: clamp(10px, 7.333px + 0.347vw, 14px); /* 768 ~ 1920px */
    font-weight: 400;
    line-height: 1.71428571;
    letter-spacing: 0;
    color: #fff;
  }
  footer .footer__license {
    margin-top: 20px;
    font-size: clamp(10px, 8.667px + 0.174vw, 12px); /* 768 ~ 1920px */
    font-weight: 400;
    line-height: 1.833333;
    letter-spacing: 0;
    color: #888;
  }
  footer .footer__sns-list {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
  }
  footer .footer__sns-item {
    margin: 0;
    width: 44px;
    height: 44px;
  }
  footer .footer__sns-link {
    display: block;
    width: 100%;
    height: 100%;
  }
  footer .footer__sns-link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .pc-fix-formbtn {
    position: fixed;
    bottom: 0px;
    right: 0;
  }

  /* copyright
-------------------------------------*/
  .copyright {
    display: block;
    margin-top: 60px;
    font-size: clamp(10px, 8.667px + 0.174vw, 12px); /* 768 ~ 1920px */
    font-weight: 400;
    line-height: 1.833333;
    letter-spacing: 0;
    color: #888;
    text-align: left;
    white-space: nowrap;
  }

  /* page-top　　　　（SPトップに戻るボタン）
-------------------------------------*/
  .page-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: auto;
    aspect-ratio: 80 / 80;
  }
  .page-top img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .page-top a {
    display: block;
  }

  /* end-contact
-------------------------------------*/
  #end-contact {
    max-width: 1920px;
    margin-inline: auto;
    background: url(../images/common/end-contact-bg.jpg) no-repeat center center;
    background-size: cover;
  }
  #end-contact .end-contact__inner {
    width: min(95%, 1440px);
    margin-inline: auto;
    padding-block: clamp(60px, 46.667px + 1.736vw, 80px);
  }
  .end-contact__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(0px, -53.333px + 6.944vw, 80px); /* 768 ~ 1920px */
  }
  .end-contact__text-area {
    width: 42%;
    /* flex-shrink: 0; */
  }
  .end-contact__title {
    font-size: clamp(32px, 26.667px + 0.694vw, 40px); /* 768 ~ 1920px */
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
  }
  .end-contact__lead {
    margin-top: clamp(20px, 6.667px + 1.736vw, 40px); /* 768 ~ 1920px */
    font-size: clamp(12px, 9.333px + 0.347vw, 16px);
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.05em;
    color: #fff;
  }
  .end-contact__tel-area {
    margin-top: clamp(16px, 5.333px + 1.389vw, 32px); /* 768 ~ 1920px */
    display: flex;
    align-items: center;
    column-gap: 8px;
  }
  @media screen and (max-width: 1439px) {
    .end-contact__tel-area {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  .end-contact__tel {
    width: 238px;
    height: auto;
    aspect-ratio: 238 / 46;
  }
  .end-contact__tel img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .end-contact__tel-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
  }

  .end-contact__btn-list {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 960px;
    margin-inline: auto;
  }
  .end-contact__btn-item {
    display: flex;
    flex-direction: column;
    align-items: center;

    flex: 1 1 0;
    min-width: 0;
    max-width: 320px;
    padding-block: clamp(20px, 6.667px + 1.736vw, 40px);
  }
  .end-contact__btn-item + .end-contact__btn-item {
    border-left: 1px solid #fff;
  }
  .end-contact__btn-link {
    display: inline-block;
  }
  .end-contact__btn-icon {
    width: clamp(80px, 53.333px + 3.472vw, 120px); /* 768 ~ 1920px */
    height: auto;
    margin-inline: auto;
    aspect-ratio: 1 / 1;
  }
  .end-contact__btn-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .end-contact__btn-title-wrap {
    margin-top: 16px;
    text-align: center;
  }
  .end-contact__btn-title-en {
    margin-inline: auto;
  }
  /* 各アイテムのタイトルの英文字部分のサイズ設定 */
  .end-contact__btn-item--catalog .end-contact__btn-title-en {
    width: 46px;
    height: auto;
    aspect-ratio: 45.37 / 8.47;
  }
  .end-contact__btn-item--consultation .end-contact__btn-title-en {
    width: 80px;
    height: auto;
    aspect-ratio: 77.68 / 8.47;
  }
  .end-contact__btn-item--contact .end-contact__btn-title-en {
    width: 26px;
    height: auto;
    aspect-ratio: 24.29 / 8.28;
  }

  .end-contact__btn-title-en img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .end-contact__btn-title {
    margin-top: 15px;
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
  }

  .end-contact__btn-text {
    position: relative;
    margin-top: 24px;
    padding-bottom: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
    border-bottom: 1px solid #fff;
  }
  .end-contact__btn-text::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    translate: 0 -78%;
    width: 11px;
    height: 10px;
    background: url(../images/common/end-contact-list-arrow.svg) no-repeat
      center center;
    background-size: contain;
  }

  /* スクロール連動ポップアップバナー
-------------------------------------*/
  .scroll-popup-banner {
    position: fixed;
    bottom: calc(92px + env(safe-area-inset-bottom, 0px));
    right: max(24px, env(safe-area-inset-right, 0px));
    z-index: 150;
    /* 1920px 時 約380px に合わせる: 380 / 1920 ≈ 19.7917vw */
    width: clamp(112px, 19.7917vw, min(380px, calc(100vw - 40px)));
    box-sizing: border-box;
    visibility: hidden;
    opacity: 0;
    transform: translate3d(0, 10px, 0);
    pointer-events: none;
    transition:
      opacity 0.35s ease,
      transform 0.35s ease,
      visibility 0.35s;
  }
  .scroll-popup-banner.is-visible {
    visibility: visible;
    opacity: 1;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
  }
  .scroll-popup-banner.is-dismissed {
    display: none !important;
  }
  .scroll-popup-banner__inner {
    position: relative;
    display: block;
    border-radius: 6px;
    overflow: visible;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
    background-color: #e8e8e8;
  }
  .scroll-popup-banner__link {
    display: block;
    aspect-ratio: 1 / 1;
    text-decoration: none;
    border-radius: 6px;
    overflow: hidden;
  }
  .scroll-popup-banner__link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .scroll-popup-banner__close {
    position: absolute;
    top: -8px;
    right: -8px;
    z-index: 2;
    width: clamp(26px, 7.75%, 36px);
    height: clamp(26px, 7.75%, 36px);
    border: none;
    margin: 0;
    padding: 0;
    border-radius: 50%;
    background: rgba(75, 64, 53, 0.92);
    color: #fff;
    font-size: clamp(12px, 2.85vw, 16px);
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.18);
    aspect-ratio: 1;
    flex-shrink: 0;
  }

  /* common
-------------------------------------*/
  .title-box {
    max-width: 1920px;
    margin-inline: auto;
    position: relative;
    background: #f1ede7;
  }
  .title-box .title-box-inner {
    width: min(95%, 1100px);
    margin-inline: auto;
    padding-top: clamp(20px, 6.667px + 1.736vw, 40px); /* 768 ~ 1920px */
    padding-bottom: clamp(60px, 33.333px + 3.472vw, 100px); /* 768 ~ 1920px */
  }
  .title-box .main-title {
    width: 100%;
    text-align: center;
    color: #222;
  }
  .title-box .sub-title {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    color: #222;
    text-align: center;
  }
  .title-box .main-title {
    display: block;
    font-size: clamp(30px, 23.333px + 0.868vw, 40px); /* 768 ~ 1920px */
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.2em;
  }

  /* 画像の縦横比を保持 */
  .fit img {
    object-fit: cover;
    font-family: "object-fit: cover;";
  }
  html {
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: none;
    overflow-x: hidden;
  }

  body {
    -webkit-text-size-adjust: 100%;
  }
  img {
    vertical-align: bottom;
  }
  a {
    text-decoration: none;
    color: #090909;
  }
  a:hover {
    text-decoration: underline;
  }
  .nobd a:hover {
    text-decoration: none !important;
  }

  /* clearfix */
  .clearfix {
    zoom: 1;
  }
  .clearfix:after {
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
    line-height: 0;
    content: ".";
  }

  /* リンク透明 */
  a img:hover {
    -ms-filter: "alpha( opacity=80 )";
    filter: alpha(opacity=80);
    opacity: 0.8;
  }
  /* リンク透明にしない */
  .noop a img:hover {
    -ms-filter: "alpha( opacity=100 )";
    filter: alpha(opacity=100);
    opacity: 1;
  }

  /*---------------------------------------- 　　外部サービス ----------------------------------------*/
  /* recaptcha */
  .grecaptcha-badge {
    z-index: 30;
  }

  /* ggmap */
  /* <div class="ggmap">iframeのコピーしたコード</div> */
  .ggmap {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
  }
  .ggmap iframe,
  .ggmap object,
  .ggmap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /* <div class="youtube"><iframe  src="youtubeのURL?rel=0" frameborder="0" allowfullscreen></iframe></div> */
  .youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
  }
  .youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
  }

  /*---------------------------------------- 　　webフォント（サーバー置き）　 ----------------------------------------*/
  @font-face {
    font-family: "jp-sttl01";
    /* お好きな名前にしましょう */
    src: url("../font/.eot");
    /* IE9以上用 */
    src:
      url("../font/bokutachi.eot?#iefix") format("embedded-opentype"),
      url("../font/NotoSansCJKjp-Medium.woff") format("woff"),
      url("../font/NotoSansCJKjp-Medium.woff") format("woff");
    /* iOS, Android用 */
    /* 念の為指定しておきます */
    font-weight: normal;
    /* 念の為指定しておきます */
    font-style: normal;
    vertical-align: top;
    margin: 0px;
    padding: 0px;
  }
  .myWebFontClass {
    font-family: "jp-sttl01";
  }
}

/* ===============================================================
    　【PC】　　@media screen and (max-width: 1200px)
============================================================== */
@media screen and (max-width: 1200px) {
  html {
    overflow: auto;
  }
  body {
    overflow: visible;
  }
}

/* ===============================================================
    　【SP】　　@media screen and (max-width: 767px)
============================================================== */
@media screen and (max-width: 767px) {
  body {
    font-size: 3.9vw;
    overflow: hidden;
  }
  .pc,
  .pc2,
  .p {
    display: none !important;
  }
  /*pcのみ表示ブロック*/
  .sp {
    display: block !important;
  }
  /*スマホのみ表示ブロック*/
  .sp2 {
    display: inline-block !important;
  }
  /*スマホのみ表示ブロック*/
  .no-br {
    display: none;
  }
  /*スマホでbrを解除したい場合に使用*/
  .sp_display_block {
    display: block !important;
  }
  /*スマホでflexboxを解除したい場合等に使用*/
  .pc-menu-btn {
    display: none;
  }
  .side-fix {
    display: none;
  }
  .fix-list {
    display: none;
  }
  #pc-menu-open {
    display: none;
  }
  #g-nav {
    display: none;
  }

  /* sp-header
-------------------------------------*/
  /* common.header.php */
  .sp-header {
    position: relative;
    padding-block: 2.4154vw;
    padding-left: 2.89855vw;
    background-color: #fff;
    z-index: 100;
  }
  .sp-header .h-logo {
    aspect-ratio: 230 / 30;
    width: 55.5555vw;
    height: auto;
  }
  .sp-header .h-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .sp-header .h-catch {
    margin-top: 0.966vw;
    font-size: 2.4154vw;
    font-weight: 400;
    line-height: 1.33333;
    letter-spacing: 0;
    color: #222;
  }

  /* -common_gnavi.php- */
  /* sp-menu-btn　　（ハンバーガーメニュー） */
  .sp-menu-btn {
    -webkit-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    position: fixed;
    top: 0;
    right: 0;
    width: 15.4589vw;
    height: 15.4589vw;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.45vw;
    margin: 0;
    background-color: #4b4035;
    z-index: 100;
  }
  .sp-menu-btn .sp-menu__inner {
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 0;
    line-height: 1;
  }

  .sp-menu-btn .sp-menu__bar-wrap {
    --sp-menu-bar-gap: 1.449vw;
    position: absolute;
    top: 4.14vw;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-menu-bar-gap);
    width: 100%;
    min-height: calc((var(--sp-menu-bar-gap) * 2) + 3px);
  }
  .sp-menu-btn .sp-menu__bar {
    display: block;
    width: 5.797vw;
    height: 1px;
    background-color: #fff;
    transform-origin: center;
    transition:
      transform 0.28s ease,
      opacity 0.2s ease,
      width 0.28s ease;
  }
  .sp-menu-btn .sp-menu__bar:nth-child(2) {
    width: 3.8647vw;
  }

  .sp-menu-btn.is-open .sp-menu__bar-wrap {
    gap: var(--sp-menu-bar-gap);
  }
  .sp-menu-btn.is-open .sp-menu__bar:nth-child(1) {
    width: 7.7294vw;
    transform: translateY(calc(var(--sp-menu-bar-gap) + 1px)) rotate(28deg);
  }
  .sp-menu-btn.is-open .sp-menu__bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .sp-menu-btn.is-open .sp-menu__bar:nth-child(3) {
    width: 7.7294vw;
    transform: translateY(calc((var(--sp-menu-bar-gap) * -1) - 1px))
      rotate(-28deg);
  }

  .sp-menu-btn .sp-menu__text {
    position: absolute;
    left: 50%;
    bottom: 3.41vw;
    transform: translateX(-50%);
    display: block;
    margin: 0;
    line-height: 0;
    width: 7.7294vw;
    height: auto;
    aspect-ratio: 32.08 / 9.09;
    color: #fff;
  }
  .sp-menu-btn .sp-menu__text img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 100%;
  }
  .sp-menu-btn:hover {
    opacity: 0.8;
    cursor: pointer;
    cursor: hand;
  }

  /* sp-g-nav
-------------------------------------*/
  #sp-g-nav {
    display: none;
    position: fixed;
    inset: 0;
    min-width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;
    background-color: #fff;
    overflow-y: auto;
    z-index: 90;
  }

  #sp-g-nav .sp-panel-menu__inner {
    padding-block: 34.7826vw;
  }

  #sp-g-nav .sp-panel-menu__list-wrap {
    padding-inline: 8.9372vw;
  }
  #sp-g-nav .sp-panel-menu__list-wrap + .sp-panel-menu__list-wrap {
    margin-top: 12.0773vw;
  }
  #sp-g-nav .sp-panel-menu__list-title {
    margin-bottom: 3.8647vw;
    padding-bottom: 3.8647vw;
    font-size: 3.8647vw;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    color: #222;
    border-bottom: 1px solid #888;
  }
  #sp-g-nav .sp-panel-menu__item > a {
    position: relative;
    display: inline-block;
    font-size: 3.3816vw;
    font-weight: 400;
    line-height: 2.2857;
    letter-spacing: 0;
    color: #222;
  }
  #sp-g-nav .sp-panel-menu__item > a::before {
    content: ">";
    margin-right: 1.9324vw;
  }

  #sp-g-nav .sp-panel-menu__tel-area {
    margin-top: 24.1546vw;
    padding-inline: 8.9372vw;
  }

  #sp-g-nav .sp-panel-menu__tel-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-block: 6.2802vw;
    border: 1px solid #1a1a1a;
    border-radius: 999px;
  }
  #sp-g-nav .sp-panel-menu__tel-btn img {
    width: 57.4879vw;
    height: auto;
    aspect-ratio: 238 / 46;
  }

  #sp-g-nav .sp-panel-menu__tel-text {
    margin-top: 2.4155vw;
    font-size: 3.3816vw;
    font-weight: 400;
    line-height: 1.42857142;
    letter-spacing: 0;
    text-align: center;
    color: #222;
  }
  #sp-g-nav .sp-panel-menu__company-info {
    margin-top: 16.9082vw;
    padding-inline: 8.9372vw;
  }
  #sp-g-nav .sp-panel-menu__logo {
    width: 68.8406vw;
    height: auto;
    aspect-ratio: 285 / 39;
  }
  #sp-g-nav .sp-panel-menu__logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  #sp-g-nav .sp-panel-menu__main-office {
    margin-top: 4.8309vw;
  }
  #sp-g-nav .sp-panel-menu__model-house,
  #sp-g-nav .sp-panel-menu__factory {
    margin-top: 3.8647vw;
  }

  #sp-g-nav .sp-panel-menu__office-label {
    font-size: 3.3816vw;
    font-weight: 400;
    line-height: 1.7142857;
    letter-spacing: 0;
    color: #222;
  }

  #sp-g-nav .sp-panel-menu__license {
    margin-top: 7.2464vw;
    font-size: 2.8986vw;
    font-weight: 400;
    line-height: 1.833333;
    letter-spacing: 0;
    color: #888;
  }

  #sp-g-nav .sp-panel-menu__sns-list {
    margin-top: 9.6618vw;
    padding-inline: 8.9372vw;
    display: flex;
  }
  #sp-g-nav .sp-panel-menu__sns-item {
    width: 9.6618vw;
    height: 9.6618vw;
  }
  #sp-g-nav .sp-panel-menu__sns-link {
    display: block;
    width: 14.4928vw;
    height: 14.4928vw;
    aspect-ratio: 1 / 1;
  }
  #sp-g-nav .sp-panel-menu__sns-link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* sp-fix-list　　　　（追従ナビゲーション）
-------------------------------------*/
  .sp-fix-list {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    z-index: 999;
    padding-bottom: env(safe-area-inset-bottom);
    background-color: #fff;
  }
  .sp-fix-list__inner {
    width: 100%;
    background: none !important; /* 背景を完全に消す */
  background-color: transparent !important;
  }
  .sp-fix-list__list {
    display: grid;
    grid-template-columns: 72fr 159fr 183fr;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .sp-fix-list__item {
    margin: 0;
    padding: 0;
  }
  .sp-fix-list__item > a,
  .sp-fix-list__item > img,
  .sp-fix-list__item > a > img {
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1.01);
    image-rendering: -webkit-optimize-contrast;
  }

  /* sp-fix-list　　　　（追従ナビゲーション）
-------------------------------------*/
  .sp-fix-list-systemform {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    z-index: 96;
    padding-bottom: env(safe-area-inset-bottom);
    background-color: #fff;
  }
  .sp-fix-list-systemform .sp-fix-list__inner {
    width: 100%;
  }
  .sp-fix-list-systemform .sp-fix-list__list {
    display: grid;
    grid-template-columns: 50vw 50vw;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .sp-fix-list-systemform .sp-fix-list__item {
    margin: 0;
    padding: 0;
  }
  .sp-fix-list-systemform .sp-fix-list__item > a,
  .sp-fix-list-systemform .sp-fix-list__item > img,
  .sp-fix-list-systemform .sp-fix-list__item > a > img {
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1.01);
    image-rendering: -webkit-optimize-contrast;
  }

  /* end-contact
-------------------------------------*/
  #end-contact {
    aspect-ratio: 414 / 812;
    background: url(../images/common/end-contact-bg.jpg) no-repeat center center;
    background-size: cover;
  }
  #end-contact .end-contact__inner {
    padding-block: 19.32vw;
    padding-inline: 8.94vw;
  }
  .end-contact__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .end-contact__text-area {
    display: contents;
  }
  /* 各要素の順番 */
  .end-contact__title {
    order: 1;
  }
  .end-contact__lead {
    order: 2;
  }
  .end-contact__tel-area {
    order: 4;
  }
  .end-contact__btn-list {
    order: 3;
  }

  .end-contact__title {
    font-size: 7.73vw;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
  }
  .end-contact__lead {
    margin-top: 3.86vw;
    font-size: 3.38vw;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.05em;
    text-align: center;
    color: #fff;
  }

  .end-contact__tel-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 2.42vw;
    width: 100%;
    margin-top: 9.66vw;
  }
  .end-contact__tel-area a {
    display: block;
    width: 100%;
  }
  .end-contact__tel {
    display: block;
    width: 100%;
    padding-block: 6.28vw 6.76vw;
    border: 1px solid #fff;
    border-radius: 999px;
  }
  .end-contact__tel img {
    display: block;
    width: 57.49vw;
    height: auto;
    aspect-ratio: 238 / 46;
    margin-inline: auto;
  }
  .end-contact__tel-text {
    font-size: 3.38vw;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
  }

  .end-contact__btn-list {
    width: 100%;
    max-width: 77.29vw;
    margin-inline: auto;
  }
  .end-contact__btn-item + .end-contact__btn-item {
    margin-top: 3.86vw;
  }

  .end-contact__btn-link {
    display: grid;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: start;
    column-gap: 5.8vw;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "icon title"
      "icon btn";
    width: 100%;
    margin-top: 9.66vw;
  }
  /* 配置決め */
  .end-contact__btn-icon {
    grid-area: icon;
  }
  .end-contact__btn-title-wrap {
    grid-area: title;
  }
  .end-contact__btn-text {
    grid-area: btn;
  }

  .end-contact__btn-icon {
    width: 24.15vw;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .end-contact__btn-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .end-contact__btn-title-wrap {
    text-align: left;
  }

  /* 各アイテムのタイトルの英文字部分のサイズ設定 */
  .end-contact__btn-item--catalog .end-contact__btn-title-en {
    width: 7.49vw;
    height: auto;
    aspect-ratio: 30.25 / 5.65;
  }
  .end-contact__btn-item--consultation .end-contact__btn-title-en {
    width: 12.8vw;
    height: auto;
    aspect-ratio: 51.64 / 5.65;
  }
  .end-contact__btn-item--contact .end-contact__btn-title-en {
    width: 4.11vw;
    height: auto;
    aspect-ratio: 16.19 / 5.52;
  }
  .end-contact__btn-title-en img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .end-contact__btn-title-wrap {
    align-self: end;
  }
  .end-contact__btn-title {
    margin-top: 1.93vw;
    font-size: 3.86vw;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
  }

  .end-contact__btn-text {
    position: relative;
    align-self: start;
    margin-top: 3.86vw;
    padding-bottom: 1.93vw;
    font-size: 2.9vw;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
    border-bottom: 1px solid #fff;
  }
  .end-contact__btn-text::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    translate: 0 -78%;
    width: 2.66vw;
    height: 2.42vw;
    background: url(../images/common/end-contact-list-arrow.svg) no-repeat
      center center;
    background-size: contain;
  }

  /* スクロール連動ポップアップバナー 【SP】（PCの min-width:768 と重複させてメディア内で完結）
-------------------------------------*/
  @media screen and (max-width: 767px) {
    .scroll-popup-banner {
      position: fixed;
      bottom: calc(75 / 414 * 100vw + env(safe-area-inset-bottom, 0px) + 92px);
      right: max(12px, env(safe-area-inset-right, 0px));
      z-index: 150;
      width: 45vw;
      box-sizing: border-box;
      visibility: hidden;
      opacity: 0;
      transform: translate3d(0, 10px, 0);
      pointer-events: none;
      transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        visibility 0.35s;
    }
    .scroll-popup-banner.is-visible {
      visibility: visible;
      opacity: 1;
      transform: translate3d(0, 0, 0);
      pointer-events: auto;
    }
    .scroll-popup-banner.is-dismissed {
      display: none !important;
    }
    .scroll-popup-banner__inner {
      position: relative;
      display: block;
      border-radius: 6px;
      overflow: visible;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
      background-color: #e8e8e8;
    }
    .scroll-popup-banner__link {
      display: block;
      aspect-ratio: 1 / 1;
      text-decoration: none;
      border-radius: 6px;
      overflow: hidden;
    }
    .scroll-popup-banner__link img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .scroll-popup-banner__close {
      position: absolute;
      top: -8px;
      right: -8px;
      z-index: 2;
      width: clamp(26px, 7.75%, 36px);
      height: clamp(26px, 7.75%, 36px);
      border: none;
      margin: 0;
      padding: 0;
      border-radius: 50%;
      background: rgba(75, 64, 53, 0.92);
      color: #fff;
      font-size: clamp(12px, 2.85vw, 16px);
      line-height: 1;
      font-weight: 500;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      -webkit-tap-highlight-color: transparent;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.18);
      aspect-ratio: 1;
      flex-shrink: 0;
    }
  }

  /* footer
-------------------------------------*/
  footer {
    position: relative;
    background-color: #222222;
  }
  .footer__nav {
    display: none;
  }

  footer .footer__inner {
    padding-top: 19.32vw;
    padding-bottom: 32.61vw;
    padding-inline: 8.93vw;
  }

  footer .footer__logo {
    width: 82.12vw;
    height: auto;
    aspect-ratio: 340 / 45;
  }
  footer .footer__logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  footer .footer__main-office {
    margin-top: 7.24vw;
  }
  footer .footer__model-house,
  footer .footer__factory {
    margin-top: 3.86vw;
  }
  footer .footer__office-label,
  footer .footer__address,
  footer .footer__tel {
    font-size: 3.38vw;
    font-weight: 400;
    line-height: 1.7142857;
    letter-spacing: 0;
    color: #fff;
  }
  footer .footer__license {
    margin-top: 7.24vw;
    font-size: 2.9vw;
    font-weight: 400;
    line-height: 1.833333;
    letter-spacing: 0;
    color: #888;
  }
  footer .footer__sns-list {
    margin-top: 4.83vw;
    display: flex;
  }
  footer .footer__sns-item--instagram {
    width: 14.49vw;
    height: 14.49vw;
    aspect-ratio: 1 / 1;
  }
  footer .footer__sns-link {
    display: inline-block;
    width: 100%;
    height: 100%;
  }
  footer .footer__sns-link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* copyright
-------------------------------------*/
  .copyright {
    display: block;
    margin-top: 9.18vw;
    font-size: 2.89vw;
    line-height: 1.83333;
    text-align: center;
    color: #888;
  }

  /* page-top　　　　（SPトップに戻るボタン）
-------------------------------------*/
  .page-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 19.32vw;
    height: auto;
    aspect-ratio: 80 / 60;
  }
  .page-top a {
    display: block;
  }
  .sp-page-top img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* common
-------------------------------------*/
  /* ページタイトル部分 */
  .title-box {
    background: #f1ede7;
  }
  .title-box .title-box-inner {
    padding-top: 3.38vw;
    padding-bottom: 20vw;
  }
  .title-box .sub-title {
    margin-bottom: 4px;
    font-size: 3.38vw;
    line-height: 1.36;
    letter-spacing: 0;
    text-align: center;
    color: #222;
  }
  .title-box .main-title {
    font-size: 6vw;
    font-weight: 500;
    line-height: 1.42;
    letter-spacing: 0.2em;
    text-align: center;
    color: #222;
  }

  /* パンくずリスト */
  .seo_bread_list {
    width: 100%;
    margin-bottom: 10vw;
    padding-left: 4.11vw;
    font-size: 2.9vw;
    color: #777470;
    line-height: 1.416666;
  }
  /*.seo_bread_list{display: none;}*/
  .seo_bread_list a {
    color: #777470;
  }
  .seo_bread_list li {
    margin-right: 1.5vw;
    float: left;
  }
  .seo_bread_list li::after {
    content: ">";
  }
  .seo_bread_list li:last-child::after {
    content: none;
  }

  .fit img {
    object-fit: cover;
  }
  .wysiwyg img {
    width: auto !important;
    height: auto !important;
  }
  html {
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: none;
    overflow-x: hidden;
  }

  /* 2カラムサイト---------------- */
  #tow-cl #side {
    display: none;
  }

  *:focus {
    outline: none !important;
  }
  a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    cursor: pointer;
  }

  body {
    -webkit-text-size-adjust: 100%;
  }
  img {
    vertical-align: bottom;
    max-width: 100%;
    height: auto;
  }
  a {
    text-decoration: none;
    color: #090909;
  }
  a:hover {
    text-decoration: underline;
  }
  .nobd a:hover {
    text-decoration: none !important;
  }
  .clearfix {
    zoom: 1;
  }
  .clearfix:after {
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
    line-height: 0;
    content: ".";
  }

  /* img-block */
  /* アンカーリンク調整 */
  .hideAnchor {
    display: block;
    height: 0;
    overflow: hidden;
    text-indent: -9999px;
    margin-top: -2vw;
    padding-bottom: 2vw;
  }
  /* スクロール縦 */
  .scroll-y {
    overflow-y: scroll;
    transform: translateZ(0);
  }
  /* リンク透明 */
  a img:hover {
    -ms-filter: "alpha( opacity=80 )";
    filter: alpha(opacity=80);
    opacity: 0.8;
  }
  /* リンク透明にしない */
  .noop a img:hover {
    -ms-filter: "alpha( opacity=100 )";
    filter: alpha(opacity=100);
    opacity: 1;
  }
  /*---------------------------------------- 　　外部サービス ----------------------------------------*/
  /* recaptcha */
  .grecaptcha-badge {
    bottom: 22vw !important;
    z-index: 30;
  }

  /* ggmap */
  /* <div class="ggmap">iframeのコピーしたコード</div> */
  .sp-ggmap {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 5vw;
    height: 0;
    overflow: hidden;
  }
  .sp-ggmap iframe,
  .sp-ggmap object,
  .sp-ggmap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /* <div class="youtube"><iframe  src="youtubeのURL?rel=0" frameborder="0" allowfullscreen></iframe></div> */
  .youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
  }
  .youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
  }
  /*---------------------------------------- 　　webフォント（サーバー置き）　 ----------------------------------------*/
  @font-face {
    font-family: "jp-sttl01";
    /* お好きな名前にしましょう */
    src: url("../font/.eot");
    /* IE9以上用 */
    src:
      url("../font/bokutachi.eot?#iefix") format("embedded-opentype"),
      url("../font/NotoSansCJKjp-Medium.woff") format("woff"),
      url("../font/NotoSansCJKjp-Medium.woff") format("woff");
    /* iOS, Android用 */
    /* 念の為指定しておきます */
    font-weight: normal;
    /* 念の為指定しておきます */
    font-style: normal;
    vertical-align: top;
    margin: 0px;
    padding: 0px;
  }
  .myWebFontClass {
    font-family: "jp-sttl01";
  }
}

@media screen and (max-width: 767px) and (max-height: 450px) {
  .scroll-popup-banner {
    bottom: calc(env(safe-area-inset-bottom, 0px) + 92px);
  }
}

/* ========================================
    【SP】  @media screen and (max-height: 450px)
======================================== */
@media screen and (max-height: 450px) {
  /* 高さ450px以下の場合 andoroidのフォーム対策 ストーカーバナー用　*/
  .sp-fix-list {
    display: none;
  }
}

/* hero (fv swiper)
-------------------------------------*/
#hero {
  overflow: hidden;
}
#hero .fv-swiper {
  width: 100%;
}
#hero .fv-swiper .swiper-slide {
  width: 1160px;
}
#hero .fv-swiper picture {
  display: block;
  width: 100%;
  aspect-ratio: 1160 / 660;
}
#hero .fv-swiper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#hero .fv-swiper .swiper-pagination {
  bottom: 12px;
}
@media screen and (max-width: 767px) {
  #hero .fv-swiper .swiper-slide {
    width: 100%;
  }
  #hero .fv-swiper picture {
    aspect-ratio: auto;
  }
}
