@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;
}



/* ========================================
  @media screen and (min-width: 768px),print 
======================================== */
@media screen and (min-width: 768px), print {
/* base
-------------------------------------*/
body {
  font-size: 16px;
  font-weight: 400;
  /* overflow-x: hidden; */
  line-height: 1.6;
  letter-spacing: 0.8px;
  color: #1A1A1A;
}

/*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;
  margin-bottom: -122px;
  position: relative;
  z-index: 10;
  padding-block: 50px 0;
}
header .h-logo {
  text-align: center;
}

#lower-header {
  background: #E5E2DD;
  margin-bottom: 0;
  padding-block: 50px 68px;
}

/* 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
-------------------------------------*/
.pc-menu {
  position: fixed;
  top: 30px;
  right: 24px;
  z-index: 99;
}
.pc-menu:hover {
  opacity: 0.8;
  cursor: pointer;
  cursor: hand;
}
#pc-menu-open {
  display: none;
  background: #f8f8f8;
  width: 68.85%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  overflow-y: scroll;
}
#pc-menu-open .open-close-01 {
  position: absolute;
  top: 41px;
  right: 29px;
}

#pc-menu-open {
  background: #F2F2F2;
}
#pc-menu-open .open-main-Box {
  width: min(95%, 1222px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 43.2%;
  justify-content: space-between;
  padding-block: 88px 300px;
  align-items: flex-end;
}
#pc-menu-open .left {
  padding-left: 139px;
}
#pc-menu-open .link-box {
  margin: 90px 0 0;
  width: min(95%, 300px);
}
#pc-menu-open .link-box li a{
  font-size: 16px;
  line-height: 2.125;
  letter-spacing: 0.05em;
  font-weight: 400;
  border-bottom: 1px solid #1A1A1A;
  position: relative;
  padding: 13px 0 12px 13px;
  display: block;
}
#pc-menu-open .link-box li a::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 9px;
  transform: translateY(-50%);
  font-size: 18px;
  transition: .3s;
}
#pc-menu-open .link-box li a:hover::after {
  right: 4px;
}
#pc-menu-open .address-box {
  margin-top: 65px;
  font-size: 14px;
  line-height: 1.7857142857;
  letter-spacing: 0em;
  font-weight: 400;
}
#pc-menu-open .tel-box {
  display: flex;
  gap: 11px;
}
#pc-menu-open .sns-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(95%, 120px);
  margin: 10px 0 0;
}
#pc-menu-open .sns-list li img {
  width: 100%;
}
#pc-menu-open .right {
  display: grid;
  grid-template-columns: 34.76% 48.5%;
  justify-content: space-between;
  position: relative;
  top: 5px;
}
#pc-menu-open .menu-list:not(:nth-last-of-type(1)) {
  margin-bottom: 31px;
}
#pc-menu-open .menu-list li {
  font-size: 16px;
  line-height: 1.9375;
  letter-spacing: 0em;
  font-weight: 400;
  position: relative;
}
#pc-menu-open .menu-list li::before {
  content: "-";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}

/* side-fix
-------------------------------------*/
.side-fix {
  position: fixed;
  top: 110px;
  right: 0;
  z-index: 10;
}

/* footer
-------------------------------------*/
footer {
  background: #F2F2F2;
  max-width: 1920px;
  width: 100%;
  margin-inline: auto;
}
footer .footer-inner {
  width: min(95%, 1288px);
  margin-inline: auto;
  padding: 70px 0 40px;
}
footer .footer-innerBox {
  display: grid;
  grid-template-columns: 42.25% 37.4%;
  justify-content: space-between;
}
footer .footer-left {
  padding-left: 44px;
}
footer .f-name {
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin: 20px 0 0;
}
footer .link-box {
  margin: 39px 0 0;
  display: flex;
  flex-direction: column;
  width: min(95%, 300px);
}
footer .link-box li a{
  font-size: 16px;
  line-height: 2.125;
  letter-spacing: 0.05em;
  font-weight: 400;
  border-bottom: 1px solid #1A1A1A;
  position: relative;
  padding: 13px 0 12px 13px;
  display: block;
}
footer .link-box li a::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 9px;
  transform: translateY(-50%);
  font-size: 18px;
  transition: .3s;
}
footer .link-box li a:hover::after {
  right: 4px;
}
footer .address-box {
  margin-top: 65px;
  font-size: 14px;
  line-height: 1.7857142857;
  letter-spacing: 0em;
  font-weight: 400;
}
footer .tel-box {
  display: flex;
  gap: 11px;
}
footer .sns-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(95%, 120px);
  margin: 10px 0 0;
}
footer .sns-list li img {
  width: 100%;
}
footer .footer-right {
  display: grid;
  grid-template-columns: 34.76% 43.2%;
  justify-content: space-between;
  margin: 41px 0 0;
}
footer .menu-list:not(:nth-last-of-type(1)) {
  margin-bottom: 31px;
}
footer .menu-list li {
  font-size: 16px;
  line-height: 1.9375;
  letter-spacing: 0em;
  font-weight: 400;
  position: relative;
}
footer .menu-list li::before {
  content: "-";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}
footer .copyright {
  font-size: 12px;
  line-height: 2.0833333333;
  letter-spacing: 0em;
  font-weight: 400;
  text-align: right;
  display: block;
  margin: 48px 0 0;
  padding-right: 44px;
}

/* end-contact
-------------------------------------*/
#end-contact {
  background: #eee;
  padding: 50px 0;
}
#end-contact .end-contact-ttl {
  margin-bottom: 50px;
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
}
#end-contact p {
  text-align: center;
  margin-bottom: 20px;
  font-size: 16px;
}
#end-contact .end-bx {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#end-contact .tel {
  margin-right: 20px;
}
#end-contact .btn a {
  font-weight: bold;
  margin: 0 auto;
  color: #fff;
  padding: 10px 50px;
  font-size: 18px;
  text-align: center;
  display: inline-block;
  background: #000;
}
#end-contact .btn a:hover {
  background: #333;
  text-decoration: none;
}

/* recaptcha
-------------------------------------*/
.grecaptcha-badge {
  z-index: 30;
}

/* common
-------------------------------------*/
.main-ttl-box {
  width: 100%;
  max-width: 1920px;
  max-height: 772px;
  margin-inline: auto;
  display: grid;
  place-content: center;
}
.main-ttl-box .ttl-wrap {
  position: relative;
  top: 8px;
}
.main-ttl-box .enttl {
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 0.08em;
  line-height: 1.3125;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}
.main-ttl-box .main-ttl{
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.32em;
  line-height: 2.8125;
  text-align: center;
  color: #fff;
}

.seo_bread_list {
  width: 1200px;
  margin: 0 auto 20px;
  text-transform: uppercase; 
}
.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;
}

.f-serif {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal; 
}

.f-shippori {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  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:1520px)
======================================== */
@media screen and (min-width:768px) and (max-width:1520px) {
  #pc-menu-open .open-main-Box {
    grid-template-columns: 1fr 53.2%;
  }
  #pc-menu-open .left {
    padding-left: 3.14vw;
  }
}


/* ========================================
@media screen and (min-width:768px) and (max-width:1280px)
======================================== */
@media screen and (min-width:768px) and (max-width:1280px) {
  #pc-menu-open .open-main-Box {
    grid-template-columns: 1fr 54%;
  }
  #pc-menu-open .left {
    padding-left: 1.22vw;
  }
  #pc-menu-open .link-box {
    width: 22.75vw;
    margin: 7.03vw 0 0;
  }
  #pc-menu-open .link-box li a {
    font-size: clamp(0.688rem, 0.219rem + 0.98vw, 1rem);
  }
  #pc-menu-open .link-box li a::after {
    font-size: 1.406vw;
  }
  #pc-menu-open .menu-list li {
    font-size: clamp(0.688rem, 0.219rem + 0.98vw, 1rem);
  }
  #pc-menu-open .address-box {
    font-size: clamp(0.625rem, 0.25rem + 0.78vw, 0.875rem);
  }
}

/* ========================================
@media screen and (min-width:768px) and (max-width:1100px)
======================================== */
@media screen and (min-width:768px) and (max-width:1100px) {
  #pc-menu-open .open-main-Box {
    grid-template-columns: 42% 54%;
    gap: 2.5vw;
  }
}

/* ========================================
@media screen and (min-width:768px) and (max-width:1440px)
======================================== */
@media screen and (min-width:768px) and (max-width:1440px) {
/* footer
-------------------------------------*/
footer .footer-inner {
  width: 89.444vw;
  padding: 4.861vw 0 2.778vw;
}
footer .footer-innerBox {
  grid-template-columns: 49.25% 44.4%;
}
footer .footer-left {
  padding-left: 3.056vw;
}
footer .f-name {
  font-size: clamp(0.875rem, 0.589rem + 0.6vw, 1.125rem);
  margin: 1.389vw 0 0;
}
footer .link-box {
  margin: 2.708vw 0 0;
  display: flex;
  flex-direction: column;
  width:22.67vw;
}
footer .menu-list li {
  font-size: clamp(0.75rem, 0.464rem + 0.6vw, 1rem);
}
footer .link-box li a{
  font-size: clamp(0.75rem, 0.464rem + 0.6vw, 1rem);
  padding: 0.903vw 0 0.833vw 0.903vw;
}
footer .link-box li a::after {
  top: 50%;
  right: 0.625vw;
  font-size: 1.25vw;
}
footer .link-box li a:hover::after {
  right: 0.278vw;
}
footer .address-box {
  margin-top: 4.514vw;
  font-size: clamp(0.625rem, 0.339rem + 0.6vw, 0.875rem);
}
footer .tel-box {
  gap: 0.764vw;
}
footer .sns-list {
  width: 8.33vw;
  margin: 0.694vw 0 0;
}
footer .sns-list li img {
  width: 100%;
}
footer .footer-right {
  grid-template-columns: 34.76% 43.2%;
  margin: 2.847vw 0 0;
}
footer .menu-list:not(:nth-last-of-type(1)) {
  margin-bottom: 2.153vw;
}
footer .menu-list li::before {
  left: -1.389vw;
  font-size: 1.111vw;
}
footer .copyright {
  font-size: clamp(0.625rem, 0.482rem + 0.3vw, 0.75rem);
  margin: 3.333vw 0 0;
  padding-right: 3.056vw;
}
    
}

/* ========================================
@media screen and (min-width:768px) and (max-width:1100px)
======================================== */
@media screen and (min-width:768px) and (max-width:1100px) {
footer .footer-innerBox {
  grid-template-columns: 52.25% 42.4%;
}
footer .f-name {
  font-size: clamp(0.75rem, 0.172rem + 1.2vw, 1rem);
}
footer .link-box li a{
  font-size: clamp(0.688rem, -0.035rem + 1.4vw, 1rem);
}
footer .footer-right {
  grid-template-columns: 34.76% 46.2%;
}
}

/* ========================================
   @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-weight: 400;
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  line-height: 1.6;
  color: #1A1A1A;
}
.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;
  padding-block: 3.86vw 0;
  margin-bottom: -13.24vw;
}
.sp-header .h-logo {
  text-align: center;
}
.sp-header .h-logo img {
  height: auto;
  width: 15.70vw;
}
.sp-header .h-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 17vw;
  z-index: 97;
}
.sp-header .h-menu img {
  height: auto;
  width: 100%;
}

#lower-header .sp-header{
  background: #E5E2DD;
  margin-bottom: 0;
  padding-block: 3.99vw 5.92vw;
}

/* sp-global-nav
-------------------------------------*/
nav#sp-global-nav .h-logo {
  text-align: center;
  padding: 4.11vw 0 0;
}
nav#sp-global-nav .h-logo img {
  width: 15.70vw;
}
nav#sp-global-nav {
  font-size:3.865vw;
  z-index: 99;
  overflow: scroll;
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  background-color: #F2F2F2;
  box-sizing: border-box;
}
nav#sp-global-nav .open-close-01 {
  position: fixed;
  top: 5.31vw;
  right: 5.80vw;
  z-index: 98;
}
nav#sp-global-nav .open-close-01 img {
  width: 5.07vw;
}
nav#sp-global-nav .open-color-Box {
  width: 82.13vw;
  margin-inline: auto;
  padding: 28.99vw 0;
}
nav#sp-global-nav .link-box {
  display: grid;
  margin-bottom: 12.06vw;
}
nav#sp-global-nav .link-box li a{
  font-size:3.865vw;
  line-height: 2.125;
  letter-spacing: 0.05em;
  font-weight: 400;
  border-bottom: 0.2vw solid #1A1A1A;
  position: relative;
  padding: 3.14vw 0 2.90vw 3.14vw;
  display: block;
}
nav#sp-global-nav .link-box li a::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 2.17vw;
  transform: translateY(-50%);
  font-size:4.348vw;
  transition: .3s;
}
nav#sp-global-nav .link-box li a:hover::after {
  right: 0.96vw;
}
nav#sp-global-nav .menu-list{
  margin-bottom: 12.2vw;
}
nav#sp-global-nav .menu-list:nth-of-type(6) {
  margin-bottom: 10.29vw;
}
nav#sp-global-nav .menu-list li {
  font-size:3.865vw;
  line-height: 3.125;
  letter-spacing: 0em;
  position: relative;
  padding-left: 5vw;
}
nav#sp-global-nav .menu-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size:3.865vw;
}
nav#sp-global-nav .sns-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 50.72vw;
}


  /* 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;
}
.sp-fix-list .tel img{
  width: 19.32vw;
}
.sp-fix-list .icon01 img,
.sp-fix-list .icon03 img {
  width: 26.81vw;
}
.sp-fix-list .icon02 img {
  width: 27.05vw;
}

/* end-contact
-------------------------------------*/
#end-contact {
  background: #eee;
  padding: 10vw 5vw;
}
#end-contact .end-contact-ttl {
  margin-bottom: 10vw;
  text-align: center;
  font-size: 4.3vw;
  font-weight: bold;
}
#end-contact p {
  text-align: center;
  margin-bottom: 5vw;
  font-size: 4vw;
}
#end-contact .tel {
  margin: 0 10vw 10vw;
}
#end-contact .btn a {
  font-weight: bold;
  margin: 0 auto;
  color: #fff;
  padding: 5vw 5vw;
  text-align: center;
  display: block;
  background: #000;
}

/* sp-page-top
-------------------------------------*/
.sp-page-top a {
  text-align: center;
  display: block;
  padding: 5vw 3vw;
}
.sp-page-top a img {
  width: 20vw;
  height: auto;
}

/* footer
-------------------------------------*/
footer {
  background: #F2F2F2;
}
footer .f-logo {
  width: 14.5vw;
}
footer .f-logo img {
  height: auto;
  width: 100%;
}
footer .footer-inner {
  width: min(95%, 89.4vw);
  margin-inline: auto;
  padding: 22vw 0 40vw;
}
footer .footer-left {
  margin: 0 0 0 2vw;
}
footer .f-name {
  font-size:4.348vw;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin: 4vw 0 0;
}
footer .address-box {
  margin-top: 7.5vw;
  font-size:3.382vw;
  line-height: 1.7857142857;
  letter-spacing: 0em;
  font-weight: 400;
}
footer .tel-box {
  display: flex;
  gap: 3.2vw;
}
footer .sns-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(95%, 50.8vw);
  margin: 6.8vw 0 0;
}
footer .sns-list li img {
  width: 100%;
}
footer .copyright {
  font-size: 2.657vw;
  line-height: 2.0833333333;
  letter-spacing: 0em;
  font-weight: 400;
  text-align: right;
  display: block;
  margin: 9.8vw 0 0;
}

footer .footer-right {
  display: none;
}


/* recaptcha
-------------------------------------*/
.grecaptcha-badge {
  bottom: 22vw !important;
  z-index: 30;
}

  /* common
-------------------------------------*/
.main-ttl-box {
  width: 100%;
  max-width: 100vw;
  margin-inline: auto;
  display: grid;
  place-content: center;
}
.main-ttl-box .ttl-wrap {
  position: relative;
  top: 0vw;
}
.main-ttl-box .enttl {
  font-weight: 600;
  font-size:4.831vw;
  letter-spacing: 0.06em;
  line-height: 1.8375;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}
.main-ttl-box .main-ttl{
  font-weight: 600;
  font-size:3.382vw;
  letter-spacing: 0.26em;
  line-height: 1.5;
  text-align: center;
  color: #fff;
}

/* .seo_bread_list {
  width: 100%;
  padding: 2vw 2vw 3.5vw;
  margin: 0 auto;
  font-size: 3.2vw;
  color: #666;
  line-height: 1.6;
} */
.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;
}

.f-serif {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal; 
}

.f-shippori {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  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;
  }
}
