@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;
  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;
}

/* アニメーション
-------------------------------------*/
/* 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;
}

@-webkit-keyframes loop {
  0% {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

@-webkit-keyframes loop2 {
  0% {
    transform: translateX(0);
  }

  to {
    transform: translateX(-200%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }

  to {
    transform: translateX(-200%);
  }
}

/* ========================================
  @media screen and (min-width: 768px),print 
======================================== */
@media screen and (min-width: 768px), print {
/* base
-------------------------------------*/
body {
  font-size: 16px;
  overflow-x: hidden;
  line-height: 1.6;
  letter-spacing: 0;
  color: #131313;
  font-weight: 400;
}

main{
  max-width: 1920px;
  width: 100%;
  margin-inline: auto;
}

/*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;
  position: relative;
  z-index: 10;
  padding: 30px 40px;
}
#top-header {
  margin-bottom: -116px;
}



/* pc-menu
-------------------------------------*/
.pc-menu {
  position: fixed;
  top: 30px;
  right: 40px;
  z-index: 99;
}
.pc-menu:hover {
  opacity: 0.8;
  cursor: pointer;
  cursor: hand;
}
#pc-menu-open {
  display: none;
  background: #2C2C2C;
  width: 50%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  overflow-y: scroll;

  transform: translateX(100%);
  display: block; 
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}
#pc-menu-open.is-open {
  transform: translateX(0);
}
#pc-menu-open .open-close-01 {
  position: absolute;
  top: 0;
  right: 0;
}

#pc-menu-open .open-main-Box {
  padding-block: 120px;
}
#pc-menu-open .link-Box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px 64px;
  width: min(95%, 528px);
  margin-inline: auto;
  padding-right: 24px;
  margin-bottom: 72px;
}
#pc-menu-open .link li a {
  font-size: 14px;
  line-height: 2.42857;
  color: #fff;
  display: block;
  position: relative;
}
#pc-menu-open .link li a::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 14px;
  transform: translateY(-50%);
  color: #FFFFFF;
}
#pc-menu-open .link-ttl {
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 5px;
  margin-bottom: 18px;
}
#pc-menu-open .info-box {
  width: min(95%, 528px);
  margin-inline: auto;
}
#pc-menu-open .logo {
  margin-bottom: 24px;
}
#pc-menu-open .company {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 14px;
  color: #fff;
}
#pc-menu-open .bottom-wrap {
  display: flex;
  gap: 49px;
  align-items: flex-end;
}
#pc-menu-open .address {
  font-size: 14px;
  line-height: 1.7142857;
  letter-spacing: 0;
  color: #FFFFFF;
}
#pc-menu-open .address a {
  color: #FFFFFF;
}



/* =============================
  丸ボタン本体
============================= */
.menu-btn {
  position: fixed;
  right: 40px;
  top: 30px;
  width: 100px;
  height: 40px;
  border-radius: 200px;
  background-color: transparent; 
  cursor: pointer;
  z-index: 100;
  border: 1px solid #fff;
}

.lower-menu-btn {
  border: 1px solid #131313;
}

/* =============================
  線の共通設定
============================= */
.menu-btn span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 1px;
  background-color: #fff;
  transform: translateX(-50%);
  transition: all .4s ease;
}

.lower-menu-btn span {
  background-color: #131313;
}

/* 初期位置 */
.menu-btn span:nth-of-type(1) {
  top: 14px;
}
.menu-btn span:nth-of-type(2) {
  top: 20px;
}
.menu-btn span:nth-of-type(3) {
  top: 26px;
}

/* =============================
  PCメニュー active（×）
============================= */
.pc-menu.active span:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.pc-menu.active span:nth-of-type(2) {
  opacity: 0;
}

.pc-menu.active span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* =============================
  PCメニュー内 close ボタン（×）
============================= */
#pc-menu-open .closebtn {
  position: absolute; 
}

/* 上の線 */
#pc-menu-open .closebtn span:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* 真ん中は消す */
#pc-menu-open .closebtn span:nth-of-type(2) {
  opacity: 0;
}

/* 下の線 */
#pc-menu-open .closebtn span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}



/* side-fix
-------------------------------------*/
.side-fix {
  position: fixed;
  top: 110px;
  right: 0;
  z-index: 10;
}
.fix-pagetop {
  position: fixed;
  bottom: 170px;
  right: 20px;
  z-index: 10;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.fix-pagetop.is-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Upbunner
-------------------------------------*/
.top-Upbunner{ position: fixed; bottom:30px; right:20px; z-index: 30;}
.top-Upbunner .top-Upbunner-frame{position:relative; }
.top-Upbunner .top-Upbunner-frame .close-icon{position: absolute;top: 8px;right: 10px;z-index: 5;}
.top-Upbunner .top-Upbunner-frame .up-bunner{position:relative;z-index: 2;box-shadow: 0px 10px 10px rgba(44, 44, 44, 0.18);border-radius: 10px;}
.top-Upbunner {transition: all 0.6s ease;transform: translateY(50px);opacity: 0;}
.top-Upbunner.is-lower{
  display:none !important;
}
#contact .top-Upbunner {
  display:none !important;
}

/* footer
-------------------------------------*/
footer {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  background: #2C2C2C;
  padding-bottom: 80px;
}
footer .bg-slide {
  max-width: 1920px;
  z-index: 5;
  padding-bottom: 104px;
}
footer .bg-slide .loop {
  overflow: hidden;
}
footer .bg-slide .loop .loop__box {
  display: flex;
  width: 100vw;
}
footer .bg-slide .loop .loop__box img {
  min-width: 100vw;
}
footer .bg-slide .loop .loop__box img:first-child {
  -webkit-animation: loop 50s -25s linear infinite;
  animation: loop 50s -25s linear infinite;
}
footer .bg-slide .loop .loop__box img:last-child {
  -webkit-animation: loop2 50s linear infinite;
  animation: loop2 50s linear infinite;
}
footer .footer-Box {
  width: min(95%, 1200px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 33.3333% 50%;
  justify-content: space-between;
  padding-bottom: 70px;
  border-bottom: 1px solid #DFDFDF;
  margin-bottom: 21px;
}
footer .logo {
  margin-bottom: 40px;
}
footer .company {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 14px;
  color: #fff;
}
footer .address {
  font-size: 14px;
  line-height: 1.7142857;
  letter-spacing: 0;
  margin-bottom: 68px;
  color: #FFFFFF;
}
footer .address a {
  color: #FFFFFF;
}
footer .copyright {
  font-size: 12px;
  line-height: 2;
  color: #a4a4a4;
  display: block;
  width: min(95%, 1200px);
  margin-inline: auto;
}
footer .footer-right {padding-right: 96px;}
footer .f-link-Box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 55px 64px;
}
footer .f-link li a {
  font-size: 14px;
  line-height: 2.42857;
  color: #fff;
  display: block;
  position: relative;
}
footer .f-link li a::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 14px;
  transform: translateY(-50%);
  color: #FFFFFF;
}
footer .link-ttl {
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 5px;
  margin-bottom: 18px;
}


/* recaptcha
-------------------------------------*/
.grecaptcha-badge {
  z-index: 30;
}

/* common
-------------------------------------*/
.main-ttl {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  background: #FFFFFF;
  text-align: center;
  margin-bottom: 90px;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.47826;
}
.main-enttl {
  font-weight: 600;
  font-size: 23px;
  text-align: center;
  text-transform: uppercase;
  padding-block: 60px 9px;
}
.seo_bread_list {
  width: 1200px;
  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: "";
}

.fit img {
  object-fit: cover;
  font-family: "object-fit: cover;";
}
html {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: none;
  overflow-x: hidden;
}

/* chrome画質悪化の対策*/
img {
  image-rendering: -webkit-optimize-contrast;
}

/* 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;
}
.f-min {
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E",
    "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

.f-min-02 {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Sawarabi Mincho",
    "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.f-gothic {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", Verdana, Meiryo, Osaka, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
}
.f-gothic-02 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.f-gothic-old {
  font-family: "Zen Old Mincho", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.f-gothic-zen {
  font-family: "Zen Kaku Gothic New", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.f-gothic-maru {
  font-family: "Zen Maru Gothic", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

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;
}
/*---------------------------------------- 　　外部サービス ----------------------------------------*/
/* 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:1100px) 
======================================== */
@media screen and (min-width:768px) and (max-width:1100px) {
  header {
    padding: 2.727vw 3.636vw;
    margin-bottom: -11.27vw;
  }
  header .h-logo img {
    width: 30.55vw;
  }

  #pc-menu-open .logo img {
    width: 36.36vw;
  }
  #pc-menu-open .link-Box {
    gap: 4.909vw 5.818vw;
    padding-right: 2.182vw;
    margin-bottom: 6.545vw;
  }
  #pc-menu-open .link-ttl {
    font-size: clamp(1rem, 0.422rem + 1.2vw, 1.25rem);
  }
  #pc-menu-open .link li a {
    font-size: clamp(0.75rem, 0.461rem + 0.6vw, 0.875rem);
  }

  footer .footer-Box {
    grid-template-columns: 40% 55%;
  }
  footer .logo img {
    width: 36.36vw;
  }
  footer .footer-right {padding-right: 8.727vw;}
  footer .f-link-Box {
    gap: 5vw 5.818vw;
  }
  footer .link-ttl {
    font-size: clamp(1rem, 0.422rem + 1.2vw, 1.25rem);
  }
  footer .f-link li a {
    font-size: clamp(0.75rem, 0.461rem + 0.6vw, 0.875rem);
  }
}

/* ========================================
   @media screen and (max-width: 767px)
======================================== */
@media screen and (max-width: 767px) {
html {
  font-size: 62.5%;
}
body {
  overflow: hidden;
  font-size: 3.6vw;
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  line-height: 1.6;
  font-weight: 400;
}
.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;
}



/* =============================
  丸ボタン本体
============================= */
.menu-btn {
  position: fixed;
  width: 24.15vw;
  height: 9.66vw;
  border-radius: 48.31vw;
  background-color: transparent;
  cursor: pointer;
  z-index: 100;
  border: 0.2vw solid #fff;
  right: 4.11vw;
  top: 3.62vw;
}
.lower-menu-btn {
  border: 0.2vw solid #131313;
}

/* =============================
  線の共通設定
============================= */
.menu-btn span {
  position: absolute;
  left: 50%;
  width: 4.35vw;
  height: 0.2vw;
  background-color: #fff;
  transform: translateX(-50%);
  transition: all .4s ease;
}
.lower-menu-btn span {
  background-color: #131313;
}

/* 初期位置 */
.menu-btn span:nth-of-type(1) {
  top: 3.38vw;
}
.menu-btn span:nth-of-type(2) {
  top: 4.83vw;
}
.menu-btn span:nth-of-type(3) {
  top: 6.28vw;
}

/* active時だけ×にする */
#btn01.active span:nth-of-type(1) {
  top: 4.83vw;
  transform: translateX(-50%) rotate(-45deg);
}

#btn01.active span:nth-of-type(2) {
  opacity: 0;
}

#btn01.active span:nth-of-type(3) {
  top: 4.83vw;
  transform: translateX(-50%) rotate(45deg);
}

/* =============================
  グロナビ内 ×ボタン
============================= */
#sp-global-nav .menu-btn span:nth-of-type(1) {
  top: 4.83vw;
  transform: translateX(-50%) rotate(-35deg);
}

#sp-global-nav .menu-btn span:nth-of-type(2) {
  display: none;
}

#sp-global-nav .menu-btn span:nth-of-type(3) {
  top: 4.83vw;
  transform: translateX(-50%) rotate(35deg);
}


#sp-global-nav .closebtn {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity .3s ease, transform .3s ease;
}

#sp-global-nav.is-open .closebtn {
  opacity: 1;
  transform: scale(1);
}


/* sp-header
-------------------------------------*/
.sp-header {padding: 5vw 4vw;position: relative;z-index: 10;}
#top-header .sp-header {
  margin-bottom: -17.44vw;
}
.sp-header .h-logo img {
  height: auto;
  width: 44.69vw;
}
.sp-header .h-menu {
  position: fixed;
  top: 3.5vw;
  right: 4.2vw;
  z-index: 97;
}
.sp-header .h-menu img {
  height: auto;
  width: 24.15vw;
}

  /* sp-global-nav
-------------------------------------*/
nav#sp-global-nav .h-logo {padding: 5vw 4vw;}
nav#sp-global-nav .h-logo img {
  height: auto;
  width: 44.67vw;
}
nav#sp-global-nav {
  font-size:3.14vw;
  z-index: 99;
  overflow: scroll;
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  background-color: #2C2C2C;
  box-sizing: border-box;
  color: #fff;
}
nav#sp-global-nav .open-close-01 {
  position: fixed;
  top: 0;
  right: 0;
  width: 13vw;
  z-index: 98;
}
nav#sp-global-nav .open-close-01 img {
  height: 13vw;
  width: auto;
}

nav#sp-global-nav .open-color-Box {
  padding: 16.5vw 0 20vw;
  width: 82.13vw;
  margin-inline: auto;
}

nav#sp-global-nav .home-link a {
  font-size:3.865vw;
  font-weight: 500;
  line-height: 1.5;
  color: #FFFFFF;
  display: block;
  margin-bottom: 15.46vw;
}
nav#sp-global-nav .link-Box {
  display: grid;
  gap: 16.92vw;
  margin-bottom: 30.82vw;
}
nav#sp-global-nav .link-ttl {
  font-size:3.865vw;
  font-weight: 500;
  line-height: 1.5;
  color: #FFFFFF;
  border-bottom: 0.2vw solid #DFDFDF;
  padding-bottom: 3.86vw;
  margin-bottom: 2.96vw;
}
nav#sp-global-nav .link li a {
  color: #fff;
  line-height: 3.0769;
  text-decoration: none;
  display: block;
  position: relative;
}
nav#sp-global-nav .link li a::after {
  position: absolute;
  content: "→";
  font-size:3.14vw;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #FFFFFF;
}
nav#sp-global-nav .logo {
  margin-bottom: 7.6vw;
}
nav#sp-global-nav .logo img{
  width: 56.52vw;
}
nav#sp-global-nav .company {
  font-weight: 500;
  font-size:3.865vw;
  line-height: 1.5;
  margin-bottom: 3.16vw;
  color: #fff;
}
nav#sp-global-nav .address {
  font-size:3.382vw;
  line-height: 1.7142857;
  letter-spacing: 0;
  margin-bottom: 6.61vw;
  color: #FFFFFF;
}
nav#sp-global-nav .address a {
  color: #FFFFFF;
}
nav#sp-global-nav .insta img {
  width: 10.39vw;
}



/* side-fix
-------------------------------------*/
.side-fix {
  display: none !important;
}
.sp-fix-list {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 96;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: flex-end;
}

 /* Upbunner
-------------------------------------*/
.top-Upbunner{ position: fixed; bottom:11.11vw;z-index: 30;width: 91.79vw;left: 4.11vw;}
.top-Upbunner .top-Upbunner-frame{position:relative; }
.top-Upbunner .top-Upbunner-frame .close-icon{position: absolute;top: 2.42vw;right: 2.42vw;z-index: 5;}
.top-Upbunner .top-Upbunner-frame .up-bunner{position:relative;z-index: 2;box-shadow: 0px 10px 10px rgba(19, 19, 19, 0.2);border-radius: 10px;}
.top-Upbunner {transition: all 0.6s ease;transform: translateY(50px);opacity: 0;}
#contact .top-Upbunner {
  display:none !important;
}



/* sp-page-top
-------------------------------------*/
.sp-page-top a {
  text-align: center;
  display: block;
  padding: 8vw 0 4.8vw;
}
.sp-page-top a img {
  width: 54.11vw;
  height: auto;
}

/* footer
-------------------------------------*/
footer {
  width: 100%;
  max-width: 100vw;
  margin-inline: auto;
  background: #2C2C2C;
  padding-bottom: 45vw;
}
footer .bg-slide {
  max-width: 100vw;
  z-index: 5;
  padding-bottom: 21.50vw;
}
footer .bg-slide .loop {
  overflow: hidden;
}
footer .bg-slide .loop .loop__box {
  display: flex;
  width: 100vw;
}
footer .bg-slide .loop .loop__box img {
  min-width: 194vw;
}
footer .bg-slide .loop .loop__box img:first-child {
  -webkit-animation: loop 50s -25s linear infinite;
  animation: loop 50s -25s linear infinite;
}
footer .bg-slide .loop .loop__box img:last-child {
  -webkit-animation: loop2 50s linear infinite;
  animation: loop2 50s linear infinite;
}
footer .footer-Box {
  width: min(95%, 91.79vw);
  margin-inline: auto;
  display: grid;
  padding-bottom: 8.5vw;
  border-bottom: 0.2vw solid #DFDFDF;
  margin-bottom: 4vw;
}
footer .footer-left {
  width: 82.13vw;
  margin-inline: auto;
}
footer .logo {
  margin-bottom: 7.6vw;
}
footer .logo img {
  width: 56.52vw;
}
footer .company {
  font-weight: 500;
  font-size:3.865vw;
  line-height: 1.5;
  margin-bottom: 3.16vw;
  color: #fff;
}
footer .address {
  font-size:3.382vw;
  line-height: 1.7142857;
  letter-spacing: 0;
  margin-bottom: 13.61vw;
  color: #FFFFFF;
}
footer .address a {
  color: #FFFFFF;
}
footer .insta {text-align: center;}
footer .insta img {
  width: 10.39vw;
}
footer .copyright {
  font-size: 2.42vw;
  line-height: 2.4;
  color: #a4a4a4;
  display: block;
  text-align: center;
}
footer .footer-right {
  width: 82.13vw;
  margin-inline: auto;
}
footer .f-link-Box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5.25vw 7.25vw;
}
footer .f-link li a {
  font-size:3.14vw;
  line-height: 2.3076;
  color: #fff;
  display: block;
  position: relative;
}
footer .f-link li a::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 0;
  font-size:3.14vw;
  transform: translateY(-50%);
  color: #FFFFFF;
}
footer .link-ttl {
  font-weight: 500;
  font-size:3.865vw;
  color: #fff;
  border-bottom: 0.2vw solid #dfdfdf;
  padding-bottom: 2.16vw;
  margin-bottom: 1.31vw;
}


/* recaptcha
-------------------------------------*/
.grecaptcha-badge {
  bottom: 22vw !important;
  z-index: 30;
}

  /* common
-------------------------------------*/
.main-ttl {
  width: 100%;
  background: #FFFFFF;
  text-align: center;
  margin-bottom: 9.5vw;
  font-size:4.348vw;
  font-weight: 700;
  line-height: 1.4444;
}
.main-enttl {
  font-weight: 600;
  font-size:3.865vw;
  line-height: 1.375;
  text-align: center;
  text-transform: uppercase;
  padding-block: 5vw 3vw;
}
.seo_bread_list {
  width: 100%;
  padding: 2vw 0vw 3.5vw;
  margin: 0 auto;
  font-size: 3.382vw;
  color: #2C2C2C;
  line-height: 1.42857;
  max-width: 82.13vw;
  letter-spacing: 0;
}
/*.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 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;
}

/* 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;
}

.f-min {
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E",
    "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

.f-min-02 {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Sawarabi Mincho",
    "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.f-gothic {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", Verdana, Meiryo, Osaka, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
}
.f-gothic-02 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.f-gothic-old {
  font-family: "Zen Old Mincho", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.f-gothic-zen {
  font-family: "Zen Kaku Gothic New", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.f-gothic-maru {
  font-family: "Zen Maru Gothic", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

*: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 {
  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;
  }
}
