@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;
  overflow-x: hidden;
  line-height: 1.6;
  letter-spacing: 0.8px;
  color: #1a1a1a;
  background: #F7F7F7;
}

/*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;
  height: 100px;
}
#lower-header {height: 120px;}
.header-inner {
  display: flex;
  justify-content: space-between;
  padding: 20px 100px 20px 40px;
}
#top-header .header-left {
  visibility: hidden;
}
.header-inner .header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-inner .h-logo {
  width: 201px;
}
.header-inner .h-logo img {
  width: 100%;
  height: auto;
}
.header-inner .h-txt {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.85714;
  margin: 8px 0 0;
}
.header-inner .header-right {
  display: flex;
  gap: 20px;
}
.header-inner .sns-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 10px 0 0;
}
.header-inner .btn-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
}




/* 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: 20px;
  right: 20px;
  z-index:100;
}
.pc-menu:hover {
  opacity: 0.8;
  cursor: pointer;
  cursor: hand;
}
#pc-menu-open {
  display: none;
  background: #fff;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 10000;
  overflow-y: scroll;
}
#pc-menu-open .open-close-01 {
  position: absolute;
  top: 20px;
  right: 20px;
}

#pc-menu-open .open-menu-Box {
  width: min(95%, 1100px);
  margin-inline: auto;
  margin-top: 93px;
}
#pc-menu-open .f-link-Box {
  display: flex;
  gap: 62px;
  justify-content: space-between;
  gap: 100px;
}
#pc-menu-open .f-link {
  width: 33.3%;
}
#pc-menu-open .f-link li {
  font-size: 16px;
  line-height: 2.5;
  letter-spacing: 0em;
  font-weight: 500;
  position: relative;
  padding: 0 0 0 26px;
}
#pc-menu-open .f-link li::before {
  content: ">";
  position: absolute;
  top: 42%;
  left: -1px;
  font-size: 20px;
  transform: translateY(-50%);
  color: #A78F43;
}
#pc-menu-open .en-link {
  font-size: 24px;
  line-height: 1.20833333;
  letter-spacing: 0em;
  font-weight: 500;
  color: #A78F43;
  margin-bottom: 31px;
  padding-bottom: 20px;
  position: relative;
}
#pc-menu-open .en-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #A78F43;
}


/* side-fix
-------------------------------------*/
.side-fix {
  position: fixed;
  top: 90px;
  right: 20px;
  z-index: 100;
}
.side-fix ul {
  display: grid;
  gap: 10px;
}
.fix-pagetop {
  position: fixed;
  bottom: 210px;
  right: 20px;
  z-index: 10;
}

/* g-nav
-------------------------------------*/
#g-nav {
  width: 1100px;
  margin: 0px auto 10px auto;
  padding: 20px 0;
  text-align: center;
  font-size: 16px;
}
#g-nav li.list {
  position: relative;
  display: inline-block;
  margin-right: 2px;
}
#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:first-child a {
  border-left: 1px solid #999;
}
#g-nav .dropmenu li.list ul.sub {
  visibility: hidden;
  opacity: 0;
  transition: 0s;
  position: absolute;
  top: 35px;
  left: 0;
  margin: 0;
  padding: 0;
  z-index: 500;
  width: 220px;
}
#g-nav .dropmenu li.list:hover ul {
  visibility: visible;
  opacity: 1;
  display: block;
}
#g-nav .dropmenu li.list ul li:last-child a {
  border-bottom: 1px solid #ccc;
}
#g-nav .dropmenu li.list ul li a {
  visibility: hidden;
  opacity: 0;
  transition: 0.9s;
  background: #fff;
  display: block;
  width: 220px;
  padding: 10px;
  color: #000;
  border: 1px solid #ccc;
  border-bottom: none;
}
#g-nav .dropmenu li.list:hover ul li a {
  visibility: visible;
  opacity: 1;
}

/* footer
-------------------------------------*/
footer {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  background: #FFFFFF;
}
footer .footer-Box {
  width: min(95%, 1200px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 20.7% 69.5%;
  gap: 116px;
  padding: 100px 0;
}
footer .logo {
  margin-bottom: 17px;
}
footer .address {
  font-size: 14px;
  line-height: 1.8571428571;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-bottom: 37px;
}
footer .sns-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: 190px;
  margin: 0 0 162px;
}
footer .copyright {
  font-size: 12px;
  line-height: 2.1666666667;
  letter-spacing: 0.05em;
  font-weight: 500;
}
footer .footer-right {
  margin: 13px 0 0;
}
footer .f-home-link {
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0em;
  font-weight: 500;
  margin-bottom: 57px;
}
footer .f-link-Box {
  display: flex;
  gap: 62px;
}
footer .f-link li {
  font-size: 16px;
  line-height: 2.5;
  letter-spacing: 0em;
  font-weight: 500;
  position: relative;
  padding: 0 0 0 17px;
}
footer .f-link li::before {
  content: ">";
  position: absolute;
  top: 46%;
  left: -1px;
  font-size: 14px;
  transform: translateY(-50%);
  color: #A78F43;
}
footer .en-link {
  font-size: 18px;
  line-height: 1.2222222222;
  letter-spacing: 0em;
  font-weight: 500;
  color: #A78F43;
  margin-bottom: 16px;
}

/* end-contact
-------------------------------------*/
#end-contact {
  background: url(../images/common/end-contact-bg.png) no-repeat center center / cover;
  max-width: 1920px;
  width: 100%;
  margin-inline: auto;
}
#end-contact .end-contact-inner {
  width: min(95%, 1400px);
  margin-inline: auto;
  padding: 120px 0 116px;
}
#end-contact .end-contact-ttl {
  font-size: 80px;
  line-height: 1.2;
  letter-spacing: 0em;
  font-weight: 600;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 40px;
}
#end-contact .list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  margin-bottom: 49px;
}
#end-contact .list li {
  padding: 36px 40px;
  background: #fff;
  position: relative;
}
#end-contact .list li::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(../images/common/end-bnr-arrow.svg) no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
}
#end-contact .list li h3 {
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0em;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}
#end-contact .list li .img {
  text-align: center;
  margin-bottom: 16px;
}
#end-contact .list li .txt {
  font-size: 14px;
  line-height: 1.8571428571;
  letter-spacing: 0.05em;
  font-weight: 500;
}
#end-contact .tel-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  color: #FFFFFF;
  position: relative;
  padding: 0 0 25px;
  margin-bottom: 38px;
}
#end-contact .tel-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  width: 800px;
  height: 1px;
}
#end-contact .tel-box .txt {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2.25;
}
#end-contact .seo-txt {
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.85714;
  color: #FFFFFF;
  width: min(95%, 1100px);
  margin-inline: auto;
}

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

/* common
-------------------------------------*/
.main-title {
  background: #E9E9E9;
  padding: 63px 0;
  text-align: center;
  margin-bottom: 17px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1818;
  letter-spacing: 0.05em;
}
.main-title .en {
  display: block;
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.main-title .jp {
  display: block;
  font-size: 24px;
  font-weight: bold;
}
h2.sub-title {
  padding: 25px 20px 10px;
  margin-bottom: 50px;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
  border-bottom: solid 2px #000;
}
.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;
}

.f-barlow{
  font-family: "Barlow Condensed", sans-serif;
  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 (min-width:768px) and (max-width:1440px)
======================================== */
@media screen and (min-width:768px) and (max-width:1440px) {
  .pc-menu {
    position: fixed;
    top: 1.389vw;
    right: 1.389vw;
    z-index:100;
  }  
  .pc-menu img {
      width: 4.167vw;
    }
    .side-fix {
      position: fixed;
      top: 6.25vw;
      right: 1.389vw;
      z-index: 100;
      width: 4.167vw;
    }
    .side-fix img {
      width: 100%;
    }
    .side-fix ul {
      display: grid;
      gap: 0.694vw;
  }
}

/* ========================================
@media screen and (min-width:768px) and (max-width:1500px)
======================================== */
@media screen and (min-width:768px) and (max-width:1500px) {
/* header
-------------------------------------*/
header {
  max-width: 128vw;
  width: 100%;
  margin-inline: auto;
  height: 8vw;
}
.header-inner {
  justify-content: space-between;
  padding: 1.333vw 6.667vw 1.333vw 2.667vw;
  display: grid;
  grid-template-columns: 40.22% 50%;
}
#top-header .header-left {
  visibility: hidden;
}
.header-inner .header-left {
  display: flex;
  align-items: center;
  gap: 1.333vw;
}
.header-inner .h-logo {
  width: 13.4vw;
}
.header-inner .h-logo img {
  width: 100%;
  height: auto;
}
.header-inner .h-txt {
  font-weight: 500;
  font-size: 0.933vw;
  letter-spacing: 0.05em;
  line-height: 1.85714;
  margin: 0.533vw 0 0;
}
.header-inner .header-right {
  display: flex;
  gap: 1.333vw;
}
.header-inner .sns-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.667vw;
  margin: 0.667vw 0 0;
}
.header-inner .sns-list img {
  width: 100%;
}
.header-inner .btn-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.267vw;
}
.header-inner .btn-list img {
  width: 100%;
}

}

/* ========================================
@media screen and (min-width:768px) and (max-width:1280px) 
======================================== */
@media screen and (min-width:768px) and (max-width:1280px) {
  footer .footer-Box {
    width: 96.774vw;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 20.7% 69.5%;
    gap: 9.355vw;
    padding: 8.065vw 0;
  }
  footer .logo img {
    width: 19.435vw;
  }
  footer .f-link-Box {
    display: flex;
    gap: 5vw;
  }
  footer .address {
    font-size: clamp(0.75rem, 0.563rem + 0.39vw, 0.875rem);
  }
  footer .f-home-link {
    font-size: clamp(0.875rem, 0.688rem + 0.39vw, 1rem);
  }
  footer .f-link li {
    font-size: clamp(0.875rem, 0.688rem + 0.39vw, 1rem);
  }
  footer .en-link {
    font-size: clamp(1rem, 0.813rem + 0.39vw, 1.125rem);
  }

  /* end-contact
  -------------------------------------*/
  #end-contact .end-contact-inner {
    width: 92vw;
    margin-inline: auto;
    padding: 9.375vw 0 9.063vw;
  }
  #end-contact .end-contact-ttl {
    font-size: 6.25vw;
    margin-bottom: 3.125vw;
  }
  #end-contact .list {
    gap: 3.125vw;
    margin-bottom: 3.828vw;
  }
  #end-contact .list li {
    padding: 2.813vw 3.125vw;
  }
  #end-contact .list li h3 {
    font-size: clamp(0.813rem, 0.531rem + 0.59vw, 1rem);
  }
  #end-contact .list li .img {
    text-align: center;
    margin-bottom: 1.25vw;
  }
  #end-contact .list li .img img {
    width: 9.375vw;
  }
  #end-contact .list li .txt {
    font-size: clamp(0.75rem, 0.563rem + 0.39vw, 0.875rem);
  }
  #end-contact .tel-box {
    gap: 3.125vw;
    padding: 0 0 1.953vw;
    margin-bottom: 2.969vw;
  }
  #end-contact .tel-box .txt {
    font-size: clamp(0.813rem, 0.531rem + 0.59vw, 1rem);
  }
  #end-contact .seo-txt {
    font-size: clamp(0.75rem, 0.563rem + 0.39vw, 0.875rem);
  }

}

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

/* ========================================
  @media screen and (max-width: 1100px) 
======================================== */
@media screen and (max-width: 1100px) {
  html {
    font-size: calc(16 / 1100 * 100vw);
  }
}


/* ========================================
   @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;
  color: #1a1a1a;
  background: #F7F7F7;
}
.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 {padding: 3.4vw;margin-bottom: 1.4vw;}
.sp-header .h-logo img {
  width: 33.575vw;
}
.sp-header .h-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 14.495vw;
  z-index: 997;
}
.sp-header .h-menu img {
  width: 100%;
}

/* sp-global-nav
-------------------------------------*/
nav#sp-global-nav .h-logo {
  background: #fff;
  padding: 3.6vw;
}
nav#sp-global-nav .h-logo img {
  width: 33.575vw;
}
nav#sp-global-nav {
  font-size: 3.8vw;
  z-index: 999;
  overflow: scroll;
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  box-sizing: border-box;
  background: #fff;
  color: #1A1A1A;
}
nav#sp-global-nav .open-close-01 {
  position: fixed;
  top: 0;
  right: 0;
  width: 14.495vw;
  z-index: 998;
}
nav#sp-global-nav .open-close-01 img {
  height: auto;
  width: 100%;
}
nav#sp-global-nav .open-color-Box {
  padding: 6vw 0 20vw;
}
nav#sp-global-nav .btn-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 89.375vw;
  margin-inline: auto;
  gap: 2.4vw;
  margin-bottom: 12.1vw;
}
nav#sp-global-nav .btn-list li {
  background: #E9E9E9;
  padding: 4vw 0 5.4vw;
  position: relative;
}
nav#sp-global-nav .btn-list li::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(../images/common/end-bnr-arrow.svg) no-repeat;
  background-size: contain;
  width: 4.35vw;
  height: 4.35vw;
}
nav#sp-global-nav .btn-list li .img {
  width: 19.326vw;
  margin-inline: auto;
  margin-bottom: 1vw;
}
nav#sp-global-nav .btn-list li .ttl {
  font-size:3.865vw;
  line-height: 1.8125;
  letter-spacing: 0;
  font-weight: 700;
  text-align: center;
}
nav#sp-global-nav .home-link {
  width: 86.96vw;
  margin-inline: auto;
  font-size:4.348vw;
  line-height: 1.2222;
  letter-spacing: 0;
  font-weight: 600;
  position: relative;
  margin-bottom: 17.6vw;
}
nav#sp-global-nav .home-link::before {
  content: ">";
  position: absolute;
  top: 55%;
  left: 11vw;
  transform: translateY(-50%);
  color: #A78F43;
  font-size:4vw;
}
nav#sp-global-nav .home-link::after {
  content: "";
  position: absolute;
  bottom: -5.2vw;
  left: 50%;
  transform: translateX(-50%);
  background: #E9E9E9;
  width: 100%;
  height: 0.245vw;
}
nav#sp-global-nav .home-link a {
  display: block;
}
nav#sp-global-nav .link-Box {
  padding: 0 6.5vw;
}
nav#sp-global-nav .en-link {
  font-size:4.348vw;
  line-height: 1.2222;
  letter-spacing: 0;
  font-weight: 600;
  color: #A78F43;
  position: relative;
  margin-bottom: 7.6vw;
}
nav#sp-global-nav .en-link::after {
  content: "";
  position: absolute;
  bottom: -5.4vw;
  left: 50%;
  transform: translateX(-50%);
  background: #A1A1A1;
  width: 100vw;
  height: 0.245vw;
}
nav#sp-global-nav .link-Box .link {
  margin: 0 0 7vw;
  background: #fff;
  height: auto;
}
nav#sp-global-nav .link-Box li {
  font-size:3.865vw;
  font-weight: 500;
  line-height: 3.125;
  letter-spacing: 0;
  position: relative;
}
nav#sp-global-nav .link-Box li::after {
  content: ">";
  position: absolute;
  top: 36%;
  right: 0;
  transform: translateY(-50%);
  color: #A78F43;
  font-size:4vw;
}
nav#sp-global-nav .link-Box li a {
  display: block;
  padding-bottom: 5.4vw;
  position: relative;
}
nav#sp-global-nav .link-Box li a::after {
  content: "";
  position: absolute;
  bottom: 2.4vw;
  left: 50%;
  transform: translateX(-50%);
  background: #E9E9E9;
  width: 100%;
  height: 0.245vw;
}
nav#sp-global-nav .tel-box {
  width: 82.126vw;
  margin-inline: auto;
  margin-top: 11vw;
  display: grid;
  gap: 1.6vw;
  margin-bottom: 14.5vw;
}
nav#sp-global-nav .tel-box .txt {
  font-size:3.382vw;
  line-height: 2.2857;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: center;
}
nav#sp-global-nav .bottom-box {
  width: 69.568vw;
  margin-inline: auto;
  background: #fff;
}
nav#sp-global-nav .logo {
  text-align: center;
  margin-bottom: 4vw;
}
nav#sp-global-nav .address {
  font-size:3.382vw;
  line-height: 1.8571428571;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-bottom: 9.6vw;
  text-align: center;
}
nav#sp-global-nav .sns-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: center;
  gap: 4vw;
  margin-bottom: 18vw;
}
nav#sp-global-nav .sns-list li {
  width: 14.494vw;
}
nav#sp-global-nav .sns-list li img {
  width: 100%;
}


  /* side-fix
-------------------------------------*/
.side-fix {
  display: none !important;
}
.sp-fix-list {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 996;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: flex-end;
}
.sp-fix-list li {
  width: 25%;
}
.sp-fix-list li img {
  width: 100%;
  height: auto;
}
/* end-contact
-------------------------------------*/
#end-contact {
  background: url(../images/common/end-contact-bg_sp.png) no-repeat center center / cover;
}
#end-contact .end-contact-inner {
  width: 89.375vw;
  margin-inline: auto;
  padding: 14.4vw 0 24vw;
}
#end-contact .end-contact-ttl {
  font-size:12.077vw;
  line-height: 1.2;
  letter-spacing: 0em;
  font-weight: 600;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 7vw;
}
#end-contact .list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6.4vw;
  margin-bottom: 9vw;
  width: 82.126vw;
  margin-inline: auto;
}
#end-contact .list li {

}
#end-contact .list li .content-box {
  background: #fff;
  position: relative;
  padding: 5vw 9.67vw 3vw;
  display: grid;
  grid-template-columns: 30.76% 1fr;
  align-items: center;
  gap: 5vw;
  margin-bottom: 2vw;
}
#end-contact .list li .content-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(../images/common/end-bnr-arrow.svg) no-repeat;
  background-size: contain;
  width: 5.8vw;
  height: 5.8vw;
}
#end-contact .list li h3 {
  font-size:3.865vw;
  line-height: 1.8125;
  letter-spacing: 0em;
  font-weight: 700;
  margin-bottom: 2vw;
  order: 2;
}
#end-contact .list li .img {
  text-align: center;
  margin-bottom: 2vw;
  order: 1;
}
#end-contact .list li .txt {
  font-size:3.382vw;
  line-height: 1.8571428571;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #FFFFFF;
  text-align: center;
}
#end-contact .tel-box {
  display: grid;
  align-items: center;
  justify-content: center;
  gap: 2vw;
  color: #FFFFFF;
  position: relative;
  padding: 8vw 0 0;
  margin-bottom: 9vw;
}
#end-contact .tel-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  width: 100%;
  height: 0.245vw;
}
#end-contact .tel-box .txt {
  font-weight: 500;
  font-size:3.382vw;
  letter-spacing: 0.05em;
  line-height: 2.28571428;
  text-align: center;
}
#end-contact .seo-txt {
  font-weight: 400;
  font-size:2.898vw;
  letter-spacing: 0.05em;
  line-height: 1.83333;
  color: #FFFFFF;
}

/* sp-page-top
-------------------------------------*/
.sp-page-top {
  position: absolute;
  top: -12vw;
  right: 5vw;
  width: 24.156vw;
}
.sp-page-top a {
  display: block;
}
.sp-page-top a img {
  width: 100%;
}

/* footer
-------------------------------------*/
footer {
  position: relative;
  background: #FFFFFF;
}
footer .footer-left {
  width: 69.568vw;
  margin-inline: auto;
  padding: 19vw 0 28vw;
}
footer .logo {
  text-align: center;
  margin-bottom: 4vw;
}
footer .address {
  font-size:3.382vw;
  line-height: 1.8571428571;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-bottom: 9.6vw;
  text-align: center;
}
footer .sns-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: center;
  gap: 4vw;
  margin-bottom: 18vw;
}
footer .sns-list li {
  width: 14.494vw;
}
footer .sns-list li img {
  width: 100%;
}

/* copyright
-------------------------------------*/
.copyright {
  font-size:2.898vw;
  font-weight: 500;
  line-height: 2.1666;
  letter-spacing: 0.05em;
  display: block;
  text-align: center;
}

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

  /* common
-------------------------------------*/
.main-title {
  width: 100%;
  background: #E9E9E9;
  padding: 6.6vw 0;
  text-align: center;
  margin-bottom: 4vw;
  font-size: 4.831vw;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
.main-title .en {
  display: block;
  font-size: 3.2vw;
  margin-bottom: 4vw;
  text-transform: uppercase;
}
.main-title .jp {
  display: block;
  font-size: 4.8vw;
  font-weight: bold;
}
h2.sub-title {
  font-weight: bold;
  padding: 3vw 3vw 1vw;
  margin-bottom: 5vw;
  font-size: 5vw;
  letter-spacing: 0.3vw;
  text-align: center;
  border-bottom: solid #000 0.2vw;
}
.seo_bread_list {
  width: 100%;
  padding: 2vw 2vw 3.5vw;
  margin: 0 auto;
  font-size: 3.2vw;
  color: #666;
  line-height: 1.6;
  display: none;
}
/*.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-barlow{
  font-family: "Barlow Condensed", sans-serif;
  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;
  }
}
