@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,
caption,
table,
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;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}
body {
  line-height: 1;
}
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 {
  background-color: #fff;
}

/* font-family
-------------------------------------*/
body {
  font-family:
    -apple-system,
    /* iOS・macOS */ BlinkMacSystemFont,
    /* Chrome on macOS */ "Helvetica Neue",
    "Hiragino Kaku Gothic ProN",
    /* iOS・macOS フォールバック */ "Yu Gothic",
    /* Windows 游ゴシック */ YuGothic,
    sans-serif; /* Android */

  font-style: normal;
}

/* ゴシック体 sans-serif体 */
/* f-gothicは bodyと同じ。 body全体を明朝体にしたときに、ゴシック体で表示されるようにするために使用。 */
.f-gothic {
  font-family:
    -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
}
.f-gothic-noto {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
}
/* 明朝体 serif体 */
.f-min {
  font-family:
    "Hiragino Mincho ProN",
    /* iOS・macOS */ "Yu Mincho Medium",
    /* Windows */ "Yu Mincho",
    YuMincho,
    "Noto Serif JP",
    /* Android */ serif;
}
.f-min-old {
  font-family: "Zen Old Mincho", serif;
  font-optical-sizing: auto;
}
.f-min-02 {
  font-family:
    "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Sawarabi Mincho",
    "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.f-en {
  font-family: "Marcellus", serif;
  font-optical-sizing: auto;
}

/* 游ゴシック かすれ対策 */
@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;
}

/* Windows用：游ゴシックの擬似ボールド（文字のにじみ・潰れ）対策 */
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}

/* アニメーション
-------------------------------------*/
/* 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;
}

main {
  color: #403f3f;
  margin-inline: auto;
  width: min(100%, 1920px);
}

.p-contact .p-contact__item a:hover,
.p-contact .p-contact__item02 a:hover {
  text-decoration: none;
}

.p-contact .p-contact__item a:hover .left {
  text-decoration: underline;
}

.p-contact .p-contact__item02 a:hover p {
  text-decoration: underline;
}

/* ========================================
  @media screen and (min-width: 768px),print 
======================================== */
@media screen and (min-width: 768px), print {
  /* base
-------------------------------------*/
  body {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.8px;
    background-color: #fff;
  }

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

  /* header
-------------------------------------*/
  header {
    max-width: 1920px;
    width: 100%;
    margin-inline: auto;
  }

  .l-header {
    position: relative;
    z-index: 10;
  }

  .l-header .l-inner {
    display: flex;
    justify-content: space-between;
    padding-block: 54px 0;
    padding-block: clamp(1.688rem, 0.563rem + 2.34vw, 3.375rem) 0;
    padding-inline: 96px 84px;
    padding-inline: clamp(3rem, 1rem + 4.17vw, 6rem)
      clamp(2.625rem, 0.875rem + 3.65vw, 5.25rem);
  }

  .l-header .l-header__logo a {
    display: block;
  }

  .l-header .l-header__logo a img {
    height: auto;
    width: 161px;
  }
  
  .l-header .l-header__nav {
    display: flex;
    gap: 0 73px;
  }

  .l-header .l-header__nav ul {
    display: grid;
    gap: 17px 0;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .l-header .l-header__nav ul.link li a {
    padding-inline: 0 20px;
    position: relative;
  }

  .l-header .l-header__nav ul.link li a::after {
    color: #ffffff;
    content: "→";
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.0584615385em;
    line-height: 1;
    position: absolute;
    right: 0;
    top: 0;
    transform: rotate(-40.954deg);
    color: #403F3F;
  }

  #index .l-header .l-header__nav ul.link li a::after {
    color: #ffffff;
  }

  .l-header .l-header__nav ul li a {
    color: #403F3F;
    display: block;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.0584615385em;
    line-height: 1;
    padding-inline: 0 20px;
    position: relative;
  }

  #index .l-header .l-header__nav ul li a {
    color: #ffffff;
  }

  .l-header .l-header__nav ul li a::after {
    color: #ffffff;
    content: "→";
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.0584615385em;
    line-height: 1;
    position: absolute;
    right: 0;
    top: 0;
    transform: rotate(-40.954deg);
    color: #403F3F;
  }

  #index .l-header .l-header__nav ul li a::after {
    color: #ffffff;
  }



  /* pullnavi */
  #pullnavi {
    opacity: 0;
    transition:
      opacity 0.3s,
      transform 0.3s;
    transform: translateY(-100%);
  }
  #pullnavi.upMove {
    opacity: 0;
    transform: translateY(-100%);
  }
  #pullnavi.dwMove {
    opacity: 1;
    transform: translateY(0);
  }

  #pullnavi {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }
  #pullnavi {
    background: #fff;
    width: 100%;
    box-shadow: 0px 3px 20px #00000029;
  }
  #pullnavi .inbox {
    width: 100%;
    min-width: 1280px;
    height: 70px;
    margin: 0px auto 20px auto;
    padding-top: 14px;
    position: relative;
  }

  /* pc-menu
-------------------------------------*/
  /* 開くボタン（FVを過ぎたらふわっと出現・追従） */
  .pc-menu {
    appearance: none;
    background: #daddd8;
    border: 0;
    box-sizing: border-box;
    cursor: pointer;
    display: grid;
    height: 46px;
    padding: 0;
    opacity: 0;
    place-items: center;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 20px;
    transition: opacity 0.6s ease;
    width: 46px;
    z-index: 998;
  }

  .pc-menu.js-show {
    opacity: 1;
    pointer-events: auto;
  }

  .pc-menu.js-show:hover {
    opacity: 0.8;
  }

  .pc-menu img {
    display: block;
    height: 24px;
    width: 24px;
  }

  /* メニュー本体 */
  #pc-menu-open {
    background: #fffffc url(../images/common/pc-menu-bg.jpg) no-repeat center
      center/cover;
    display: none;
    height: 100vh;
    left: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    /* スクロールバーが出ても中身が左にずれないよう左右に同じ幅を確保 */
    scrollbar-gutter: stable both-edges;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
  }

  /* 閉じるボタン */
  #pc-menu-open .pc-menu-close {
    align-items: center;
    appearance: none;
    background: #daddd8;
    border: 0;
    border-radius: 40px;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    height: 40px;
    justify-content: space-between;
    padding-block: 0;
    padding-inline: 28px;
    position: absolute;
    right: 30px;
    top: 20px;
    width: 168px;
  }

  #pc-menu-open .pc-menu-close:hover {
    opacity: 0.8;
  }

  #pc-menu-open .pc-menu-close span {
    color: #403f3f;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1;
  }

  #pc-menu-open .pc-menu-close img {
    display: block;
    height: auto;
    width: 18px;
  }

  /* EVENT / CATALOG / CONTACT */
  #pc-menu-open .pc-menu-open__contact {
    display: grid;
    gap: 0 6.6917%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-inline: auto;
    padding-top: 180px;
    padding-top: clamp(6.25rem, 2.917rem + 6.94vw, 11.25rem);
    width: min(95%, 1330px);
  }

  #pc-menu-open .pc-menu-open__contact li a {
    align-items: flex-end;
    border-bottom: 1px solid #ffffff;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    padding-block: 0 22px;
    padding-inline: 23px 21px;
    padding-inline: clamp(0.75rem, 0.333rem + 0.87vw, 1.375rem);
  }

  #pc-menu-open .pc-menu-open__contact li a:hover {
    text-decoration: none;
  }

  #pc-menu-open .pc-menu-open__contact li a:hover .left p {
    text-decoration: underline;
  }

  #pc-menu-open .pc-menu-open__contact .left {
    display: grid;
    gap: 23px 0;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  #pc-menu-open .pc-menu-open__contact .left span {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1;
  }

  #pc-menu-open .pc-menu-open__contact .left p {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1;
  }

  #pc-menu-open .pc-menu-open__contact .arrow {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1;
    width: 40px;
  }

  /* 下段（ロゴ・住所・SNS / サイトマップ） */
  #pc-menu-open .pc-menu-open__con {
    display: flex;
    gap: 0 clamp(1.5rem, 0.5rem + 2.08vw, 3rem);
    justify-content: space-between;
    margin-inline: auto;
    padding-block: 160px 100px;
    padding-block: clamp(5rem, 1.667rem + 6.94vw, 10rem)
      clamp(3.75rem, 2.083rem + 3.47vw, 6.25rem);
    width: min(95%, 1537px);
  }

  #pc-menu-open .pc-menu-open__con-left .logo {
    margin-bottom: 30px;
  }

  /* インライン画像のベースライン下の余白を消す（縦位置がずれるため） */
  #pc-menu-open .pc-menu-open__con-left .logo a {
    display: block;
  }

  #pc-menu-open .pc-menu-open__con-left .logo a img {
    display: block;
    height: auto;
    width: 192px;
  }

  #pc-menu-open .pc-menu-open__con-left .address {
    margin-bottom: 48px;
  }

  #pc-menu-open .pc-menu-open__con-left .address p {
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 2;
    margin-bottom: 3px;
  }

  /* TEL はスマホUAのとき JS で <a> に包まれる。共通の a { color:#403f3f } を打ち消す */
  #pc-menu-open .pc-menu-open__con-left .address a {
    color: #ffffff;
  }

  #pc-menu-open .pc-menu-open__con-left .sns {
    display: flex;
    gap: 0;
  }

  /* body のストラットを受けないよう li 自体をフレックスにする */
  #pc-menu-open .pc-menu-open__con-left .sns li {
    display: flex;
    line-height: 1;
    width: 108px;
  }

  #pc-menu-open .pc-menu-open__con-left .sns li:last-child {
    width: auto;
  }

  #pc-menu-open .pc-menu-open__con-left .sns li a {
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1;
    padding-inline: 0 13px;
    position: relative;
  }

  #pc-menu-open .pc-menu-open__con-left .sns li a::after {
    content: "→";
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1;
    position: absolute;
    right: -9px;
    top: 50%;
    transform: translateY(-50%) rotate(-40.954deg);
  }

  #pc-menu-open .pc-menu-open__garage {
    margin-top: 57px;
    width: 150px;
  }

  #pc-menu-open .pc-menu-open__garage a {
    display: block;
  }

  #pc-menu-open .pc-menu-open__garage a img {
    display: block;
    height: auto;
    width: 100%;
  }

  /* 余った幅を列間に回す。791px はデザイン上のnav幅の上限 */
  #pc-menu-open .pc-menu-open__con-right {
    flex: 1 1 auto;
    max-width: 791px;
  }

  #pc-menu-open .pc-menu-open__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0 8px;
    justify-content: space-between;
  }

  #pc-menu-open .pc-menu-open__nav .home {
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1;
  }

  #pc-menu-open .pc-menu-open__nav .list li {
    margin-bottom: 20px;
  }

  #pc-menu-open .pc-menu-open__nav .list li:last-child {
    margin-bottom: 0;
  }

  #pc-menu-open .pc-menu-open__nav .list li a {
    color: #ffffff;
    display: grid;
    gap: 10px 0;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  #pc-menu-open .pc-menu-open__nav .list li a span {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1;
  }

  #pc-menu-open .pc-menu-open__nav .list li a p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1;
  }

  /* side-fix
-------------------------------------*/
  .side-fix {
    position: fixed;
    top: 15%;
    right: 0;
    z-index: 10;
    display: block;
  }

  /* g-nav
-------------------------------------*/
  #g-nav {
    margin: 0 auto 10px auto;
    padding: 20px 0;
    font-size: 16px;
  }
  #g-nav .navi-inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  #g-nav li.list {
    position: relative;
  }
  #g-nav li.list span {
    cursor: pointer;
  }
  #g-nav li.list span,
  #g-nav li.list a {
    border-right: 1px solid #999;
    display: block;
    text-align: center;
    padding: 10px 20px;
  }
  #g-nav li.list:last-child span,
  #g-nav li.list:last-child a {
    border-right: none;
  }
  #g-nav .dropmenu li.list ul.sub {
    visibility: hidden;
    opacity: 0;
    transition:
      opacity 0.2s ease,
      visibility 0.2s ease;
    position: absolute;
    top: 100%;
    left: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 50;
    width: 220px;
  }
  #g-nav .dropmenu li.list:hover ul.sub {
    visibility: visible;
    opacity: 1;
  }
  #g-nav .dropmenu li.list ul.sub li:last-child a {
    border-bottom: 1px solid #ccc;
  }
  #g-nav .dropmenu li.list ul.sub li a {
    opacity: 0;
    transition: opacity 0.2s ease;
    background: #fff;
    display: block;
    width: 220px;
    padding: 10px;
    color: #000;
    border: 1px solid #ccc;
    border-bottom: none;
  }
  #g-nav .dropmenu li.list:hover ul.sub li a {
    opacity: 1;
  }

  /* footer
-------------------------------------*/
  .l-footer {
    background: #fffffc;
    color: #403f3f;
    padding-block: 100px 0px;
  }

  .l-footer .l-footer__con {
    display: flex;
    justify-content: space-between;
    margin-bottom: 42px;
    margin-inline: auto;
    width: min(95%, 1537px);
  }

  .l-footer .l-footer__con-left .logo {
    margin-bottom: 25px;
  }

  .l-footer .l-footer__con-left .logo a img {
    height: auto;
    width: 192px;
  }

  .l-footer .l-footer__con-left .address {
    margin-bottom: 40px;
  }

  .l-footer .l-footer__con-left .address p {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 2;
    margin-bottom: 1px;
  }

  .l-footer .l-footer__con-left .sns {
    display: flex;
    gap: 0 32px;
  }

  .l-footer .l-footer__con-left .sns li a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1;
    padding-inline: 0 13px;
    position: relative;
  }

  .l-footer .l-footer__con-left .sns li a::after {
    content: "→";
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1;
    position: absolute;
    right: -9px;
    top: 50%;
    transform: translateY(-50%) rotate(-40.954deg);
  }

  .l-footer .l-footer-con-right-nav {
    display: flex;
    gap: 0 48px;
  }

  .l-footer .home {
    color: #403f3f;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1;
  }

  .l-footer .list li {
    margin-bottom: 18px;
  }

  .l-footer .list li a {
    color: #403f3f;
    display: grid;
    gap: 10px 0;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .l-footer .list li a span {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1;
  }

  .l-footer .list li a p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1;
  }

  .l-footer .l-footer__garage {
    margin-bottom: 42px;
    margin-inline: auto;
    width: min(95%, 1537px);
  }

  .l-footer .l-footer__garage a {
    display: block;
    margin-left: auto;
    width: 150px;
  }

  .l-footer .l-footer__garage a img {
    height: auto;
    width: 100%;
  }

  .copyright {
    color: #808080;
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0em;
    line-height: 1;
    text-align: center;
    margin-block: 0 34px;
  }

  /* end-contact
-------------------------------------*/
  .p-contact {
    background: url(../images/common/contact_bg.jpg) no-repeat top center/cover;
    color: #ffffff;
    margin-inline: auto;
    max-width: 1920px;
    width: 100%;
  }

  .p-contact .l-inner.l-contact {
    padding-block: 105px 100px;
  }

  .p-contact .c-contact__en {
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1;
    margin-bottom: 130px;
    text-align: center;
  }

  .p-contact .p-contact__items {
    display: grid;
    gap: 0 6.6%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 70px;
    margin-inline: auto;
    width: min(95%, 1330px);
  }

  .p-contact .p-contact__item a {
    align-items: flex-end;
    border-bottom: 1px solid #ffffff;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    padding-block: 0 22px;
    padding-inline: 23px clamp(1rem, -0.042rem + 2.17vw, 2.563rem);
  }

  .p-contact .p-contact__item a .left {
    display: grid;
    gap: 14px 0;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .p-contact .p-contact__item a .left span {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1;
    margin-bottom: 4px;
  }

  .p-contact .p-contact__item a .left p {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1;
  }

  .p-contact .p-contact__item a .arrow {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1;
  }

  .p-contact .p-contact__items02 {
    display: grid;
    gap: 0 80px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-inline: auto;
    width: min(95%, 1150px);
  }

  .p-contact .p-contact__item02 a {
    color: #ffffff;
  }

  .p-contact .p-contact__item02.--tel div {
    align-items: center;
    border: 1px solid #fff;
    color: #ffffff;
    display: block;
    display: flex;
    justify-content: space-between;
    padding: 16px 40px;
    padding: 16px clamp(1.25rem, 0.417rem + 1.74vw, 2.5rem);
  }

  .p-contact .p-contact__item02.--tel p {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 2.9090909091;
  }

  .p-contact .p-contact__item02.--tel span {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 3.2;
  }

  .p-contact .p-contact__item02 a {
    align-items: center;
    border: 1px solid #fff;
    color: #ffffff;
    display: block;
    display: flex;
    justify-content: space-between;
    padding: 16px clamp(1.25rem, 0.417rem + 1.74vw, 2.5rem);
  }

  .p-contact .p-contact__item02 a p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 3.5555555556;
  }

  .p-contact .p-contact__item02 a span {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 3.2;
  }

  /* recaptcha
-------------------------------------*/
  .grecaptcha-badge {
    z-index: 30;
  }

  /* common
-------------------------------------*/
  /* 幅・中央寄せは page-system.css の .seo_bread_list と .system-contents で統一 */
  .seo_bread_list li {
    margin-right: 20px;
    float: left;
  }
  .seo_bread_list li::after {
    content: " >";
  }
  .seo_bread_list li:last-child::after {
    content: "";
  }

  /* レガシー用。新規の一覧サムネは page-system.css の aspect-ratio 3/2 を使う */
  .fit img {
    object-fit: cover;
  }
  html {
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: none;
    overflow-x: hidden;
  }

  /* chrome画質悪化の対策*/
  img {
    image-rendering: -webkit-optimize-contrast;
  }
  body {
    -webkit-text-size-adjust: 100%;
  }
  img {
    vertical-align: bottom;
  }
  a {
    text-decoration: none;
    color: #090909;
    color: #403f3f;
  }
  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;
  }
  /*---------------------------------------- 　　外部サービス ----------------------------------------*/
  /* 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";
  }
}

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

/* ========================================
@media screen and (min-width:768px) and ( max-width:950px) {
======================================== */
@media screen and (min-width: 768px) and (max-width: 950px) {
  .l-footer .l-footer-con-right-nav {
    gap: 0 clamp(0.5rem, -10.049rem + 21.98vw, 3rem);
  }

  /* PCメニュー：この幅だけ文字とロゴを一段落として2カラムを保つ */
  #pc-menu-open .pc-menu-open__con-left .logo a img {
    width: clamp(10rem, 1.561rem + 17.58vw, 12rem);
  }

  #pc-menu-open .pc-menu-open__con-left .sns li {
    width: clamp(5.5rem, 0.225rem + 10.99vw, 6.75rem);
  }

  #pc-menu-open .pc-menu-open__nav .home,
  #pc-menu-open .pc-menu-open__nav .list li a span {
    font-size: clamp(0.75rem, 0.486rem + 0.55vw, 0.8125rem);
  }

  #pc-menu-open .pc-menu-open__nav .list li a p {
    font-size: clamp(0.75rem, 0.222rem + 1.1vw, 0.875rem);
  }
}

/* ========================================
   @media screen and (max-width: 767px)
======================================== */
@media screen and (max-width: 767px) {
  html {
    font-size: 62.5%;
    background-color: #fff;
  }
  body {
    /* overflow: hidden; */
    font-size: 3.6vw;
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    line-height: 1.6;
    min-height: 100%;
    min-height: 100dvh;
    min-height: -webkit-fill-available;
    background-color: #fff;
    padding-bottom: env(safe-area-inset-bottom);
  }
  .pc,
  .pc2 {
    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 {
    display: none;
  }
  .side-fix {
    display: none;
  }
  .fix-list {
    display: none;
  }
  #pc-menu-open {
    display: none;
  }
  #g-nav {
    display: none;
  }

  /* sp-header
-------------------------------------*/
  .sp-header {
    position: relative;
    z-index: 10;
  }
  .sp-header .h-logo img {
  }
  .sp-header .h-menu {
    position: fixed;
    z-index: 97;
  }
  .sp-header .h-menu img {
  }
  .sp-header .h-logo {
    padding-block: 7.246vw 0;
    padding-inline: 4.106vw 0;
  }

  .sp-header .h-logo a {
    display: block;
    width: 26.57vw;
  }

  .sp-header .h-logo a img {
    height: auto;
    width: 100%;
  }

  .sp-header .h-menu {
    right: 4.106vw;
    top: 5.072vw;
  }

  .sp-header .h-menu img {
    height: auto;
    width: 8.213vw;
  }

  /* sp-global-nav
-------------------------------------*/
  nav#sp-global-nav .h-logo {
  }
  nav#sp-global-nav .h-logo img {
  }
  nav#sp-global-nav {
    z-index: 99;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    display: none;
    box-sizing: border-box;
  }
  nav#sp-global-nav .open-close-01 {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 98;
  }
  nav#sp-global-nav .open-close-01 img {
  }

  nav#sp-global-nav {
    background: #fffffc;
    padding-block: 0 40vw;
  }

  nav#sp-global-nav .h-logo {
    padding-block: 7.246vw 0;
    padding-inline: 4.106vw 0;
  }

  nav#sp-global-nav .h-logo a {
    display: block;
  }

  nav#sp-global-nav .h-logo a img {
    height: auto;
    width: 26.57vw;
  }

  nav#sp-global-nav .open-close-01 {
    right: 5.106vw;
    top: 6.072vw;
  }

  nav#sp-global-nav .open-close-01 img {
    height: auto;
    width: 5.213vw;
  }

  nav#sp-global-nav .list {
    display: grid;
    gap: 3.865vw 0;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin-block: 11.662vw 10.662vw;
    margin-inline: auto;
    width: min(95%, 81.1594202899vw);
  }

  nav#sp-global-nav .list li a {
    border: 1px solid #403f3f;
    display: block;
    font-size: 3.865vw;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 2;
    padding-inline: 5.865vw 6.28vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 2.5vw;
  }

  nav#sp-global-nav .list li span {
    font-size: 20px;
    font-weight: 400;
    line-height: 2;
  }

  nav#sp-global-nav .home {
    margin-bottom: 9.662vw;
    margin-inline: auto;
    width: min(95%, 81.1594202899vw);
  }

  nav#sp-global-nav .home a {
    display: block;
    font-size: 4.348vw;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1;
  }

  nav#sp-global-nav .list02 {
    display: grid;
    gap: 2vw 5.797vw;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 17.324vw;
    margin-inline: auto;
    width: min(95%, 81.1594202899vw);
  }

  nav#sp-global-nav .list02 li {
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
  }

  nav#sp-global-nav .list02 li a {
    border-bottom: 1px solid #dcdcdc;
    display: block;
    padding-block: 0 4.106vw;
  }

  nav#sp-global-nav .list02 li a span {
    font-size: 3.865vw;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1;
    margin-bottom: 2.449vw;
    display: inline-block;
  }

  nav#sp-global-nav .list02 li a p {
    font-size: 3.14vw;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1.5;
  }

  nav#sp-global-nav .logo {
    margin-bottom: 6.937vw;
    text-align: center;
  }

  nav#sp-global-nav .logo a {
    display: inline-block;
    padding: 1.932vw 3.865vw;
  }

  nav#sp-global-nav .logo a img {
    height: auto;
    width: 46.377vw;
  }

  nav#sp-global-nav .address {
    margin-bottom: 6.662vw;
    margin-inline: auto;
    width: min(95%, 170px);
  }

  nav#sp-global-nav .address p {
    font-size: 2.899vw;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 2;
    margin-bottom: 0.932vw;
    color: #403f3f;
  }

  nav#sp-global-nav .sns {
    display: flex;
    justify-content: center;
    gap: 0 0vw;
    margin-bottom: 9.662vw;
  }

  nav#sp-global-nav .sns li a {
    font-size: 3.14vw;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1;
    padding-inline: 0 12.14vw;
    position: relative;
  }

  nav#sp-global-nav .sns li a::after {
    content: "→";
    font-size: 3.14vw;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1;
    position: absolute;
    right: 8vw;
    top: 50%;
    transform: translateY(-50%) rotate(-40.954deg);
  }

  nav#sp-global-nav .garage a {
    display: block;
    margin-inline: auto;
    text-align: center;
    width: 36.232vw;
  }

  /* side-fix
-------------------------------------*/
  .side-fix {
    display: none !important;
  }
  .sp-fix-list {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 96;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sp-fix-list li {
    text-align: center;
  }

  .sp-fix-list li a {
    display: block;
    padding-block: 12px;
    background: #757470;
    color: #fff;
    border-right: 1px solid #4d4c47;
  }

  .sp-fix-list li:last-child a {
    border-right: none;
  }

  .sp-fix-list li a span {
    color: #fff;
    text-align: center;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.6px;
    margin-bottom: 4px;
  }

  .sp-fix-list li a p {
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
  }

  /* footer
-------------------------------------*/
  .l-footer {
    background: #fffffc;
    color: #403f3f;
    padding-block: 80px 15vw;
  }

  .l-footer .l-footer__con {
    display: block;
    margin-inline: auto;
    width: 100%;
    margin-bottom: 16vw;
  }

  .l-footer .l-footer__con-left .logo {
    margin-bottom: -1.068vw;
    text-align: center;
  }

  .l-footer .l-footer__con-left .logo a {
    display: inline-block;
    padding: 1.932vw 3.865vw;
  }

  .l-footer .l-footer__con-left .logo a img {
    height: auto;
    width: 46.377vw;
  }

  .l-footer .l-footer__con-left .address {
    margin-inline: auto;
    width: min(95%, 172px);
    margin-bottom: 7vw;
  }

  .l-footer .l-footer__con-left .address p {
    font-size: 2.899vw;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 2;
    margin-bottom: 0.932vw;
  }

  .l-footer .l-footer__con-left .sns {
    display: flex;
    justify-content: center;
    gap: 0 0vw;
  }

  .l-footer .l-footer__con-left .sns li a {
    font-size: 3.14vw;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1;
    position: relative;
    padding-inline: 0 12.5vw;
  }

  .l-footer .l-footer__con-left .sns li a::after {
    font-size: 3.14vw;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1;
    right: 7vw;
    top: 50%;
    transform: translateY(-50%) rotate(-40.954deg);
    position: absolute;
    content: "→";
  }

  .copyright {
    color: #808080;
    display: block;
    font-size: 2.899vw;
    font-weight: 500;
    letter-spacing: 0em;
    line-height: 1;
    margin-bottom: 16.232vw;
    text-align: center;
  }

  /* end-contact
-------------------------------------*/
  .p-contact {
    background: url(../images/common/contact_bg_sp.jpg) no-repeat top
      center/cover;
    color: #ffffff;
  }

  .p-contact .l-inner.l-contact {
    padding-block: 14.493vw 14.493vw;
  }

  .p-contact .c-contact__en {
    font-size: 7.729vw;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1;
    margin-bottom: 11.662vw;
    text-align: center;
  }

  .p-contact .p-contact__items {
    gap: 10.662vw 0;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin-bottom: 16.662vw;
    margin-inline: auto;
    width: min(95%, 86.9vw);
    display: grid;
  }

  .p-contact .p-contact__item a {
    align-items: flex-end;
    border-bottom: 1px solid #ffffff;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    padding-block: 0 4.831vw;
    padding-inline: 2.415vw 7.415vw;
  }

  .p-contact .p-contact__item a .left {
    display: grid;
    gap: 4.932vw 0;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .p-contact .p-contact__item a .left span {
    font-size: 3.382vw;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1;
  }

  .p-contact .p-contact__item a .left p {
    font-size: 4.348vw;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1;
  }

  .p-contact .p-contact__item a .arrow {
    font-size: 4.831vw;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1;
  }

  .p-contact .p-contact__items02 {
    display: grid;
    gap: 5.797vw 0;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin-inline: auto;
    width: min(95%, 86.9vw);
  }

  /* .p-contact .p-contact__item02.--tel {
    align-items: center;
    border: 1px solid #fff;
    color: #ffffff;
    display: block;
    display: flex;
    justify-content: space-between;
    padding: 0px 6.522vw;
  } */

  .p-contact .p-contact__item02.--tel a {
    display: block;
  }

  .p-contact .p-contact__item02.--tel a div {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 0px;
  }

  .p-contact .p-contact__item02.--tel p {
    font-size: 5.314vw;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 2.9090909091;
  }

  .p-contact .p-contact__item02.--tel span {
    font-size: 4.831vw;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 3.2;
  }

  .p-contact .p-contact__item02 a {
    align-items: center;
    border: 1px solid #fff;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    padding: 0px 6.522vw;
  }

  .p-contact .p-contact__item02 a p {
    font-size: 4.348vw;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 3.5555555556;
  }

  .p-contact .p-contact__item02 a span {
    font-size: 4.831vw;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 3.2;
  }

  /* recaptcha
-------------------------------------*/
  .grecaptcha-badge {
    bottom: 22vw !important;
    z-index: 30;
  }

  /* common
-------------------------------------*/
  .seo_bread_list {
    color: #666;
  }
  /*.seo_bread_list{display: none;}*/
  .seo_bread_list a {
    color: #666;
  }
  .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 同上（SP） */
  .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; */
  }

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

  /* 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;
    color: #403f3f;
  }
  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 {
    box-sizing: border-box;
    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;
  }
  /*---------------------------------------- 　　外部サービス ----------------------------------------*/
  /* 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-height: 450px)
======================================== */
@media screen and (max-height: 450px) {
  /* 高さ450px以下の場合 andoroidのフォーム対策 ストーカーバナー用　*/
  .sp-fix-list {
    display: none;
  }
}
