@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;
  font-weight: 400;
  color: #1d1d1f;
}

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;
}
header .inner {
  display: flex;
  justify-content: space-between;
  padding: 0 160px 10px 30px;
}
header .logo-wrap {
  display: flex;
  gap: 21px;
  padding: 20px 0 0;
}
header .logo-wrap .txt{
  font-size: 12px;
  line-height: 1.6666;
  letter-spacing: 0;
  color: #839b95;
  padding: 4px 0 0;
}
header .btn-wrap {
  display: flex;
  gap: 23px;
}
header .btn-wrap .tel-box {
  display: flex;
  gap: 17px;
  align-items: center;
  margin: -9px 0 0;
  position:relative;
}
header .btn-wrap .tel-box .tel img {
  vertical-align: middle;
}
header .btn-wrap .tel-box .open{
  font-size: 14px;
  line-height: 1.4285714;
  letter-spacing: 0;
  display: flex;
  gap: 6px;
  margin: 5px 0 0;
}

header .btn-wrap .tel-box .h-tel-txt{
  position: absolute;
  top: 65px;
  left: 0;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
  width: 360px;
  color: #090909;
}


header .btn-wrap .list{
  display: flex;
}

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

#pc-menu-open .menu-open-Box {

}
#pc-menu-open .open-main-Box {
  width: min(95%, 1400px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 23.78% 1fr;
  gap: 181px;
  padding: 155px 0 110px;
}
#pc-menu-open .open-main-Box .info-box {
  padding: 5px 0 0;
}
#pc-menu-open .open-main-Box .info-box .logo {
  margin-bottom: 27px;
}
#pc-menu-open .open-main-Box .info-box .address {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2;
  padding-left: 15px;
  margin-bottom: 11px;
}
#pc-menu-open .open-main-Box .info-box .insta {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 2.3333;
  display: flex;
  gap: 10px;
  align-items: center;
  padding-left: 15px;
}

#pc-menu-open .open-main-Box .link-box {
  display: flex;
  justify-content: space-between;
  padding-right: 117px;
}
#pc-menu-open .open-main-Box .link-box .link {
  background: none;
}
#pc-menu-open .open-main-Box .link-box .link li {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2.571428;
  position: relative;
} 
#pc-menu-open .open-main-Box .link-box .link li::before {
  position: absolute;
  content: ">";
  left: -21px;
  top: 44%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 400;
  line-height: 2.5714;
  letter-spacing: 0.05em;
}
#pc-menu-open .btn-box {
  width: min(95%, 1400px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  padding-bottom: 209px;
}
#pc-menu-open .btn-box li a {
  display: block;
  border-bottom: 1px solid #3A4F44;
  padding-bottom: 12px;
  position: relative;
}
#pc-menu-open .btn-box li a::after {
  position: absolute;
  content: "";
  background: url(../images/common/open-btn-arrow.svg)no-repeat;
  background-size: contain;
  width: 70px;
  height: 70px;
  top: -6px;
  right: 0;
  transition: all 0.2s;
}
#pc-menu-open .btn-box li a:hover::after {
  right: -5px;
}
#pc-menu-open .btn-box li a:hover {
  text-decoration: none;
}
#pc-menu-open .btn-box li .enttl{
  position: relative;
  display: inline-block;
  padding-left: 9px;
  margin-bottom: 4px;
}
#pc-menu-open .btn-box li:nth-child(2) .enttl {padding-left: 5px;}
#pc-menu-open .btn-box li .enttl::after {
  position: absolute;
  content: "";
  width: 120px;
  height: 70px;
  top: 50%;
  right: -156px;
  transform: translateY(-50%);
}
#pc-menu-open .btn-box li:nth-child(1) .enttl::after {
  background: url(../images/common/open-btn-photo01.png)no-repeat;
  background-size: contain;
}
#pc-menu-open .btn-box li:nth-child(2) .enttl::after {
  background: url(../images/common/open-btn-photo02.png)no-repeat;
  background-size: contain;
  right: -149px;
}
#pc-menu-open .btn-box li .ttl{
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 3.15;
  padding-left: 6px;
}

/* side-fix
-------------------------------------*/
.side-fix {
  position: fixed;
  top: 110px;
  right: 0;
  z-index: 10;
}


/* footer
-------------------------------------*/
footer {
  background: url(../images/common/f-bg.png)no-repeat center top / cover;
  position: relative;
  max-width: 1920px;
  width: 100%;
  margin-inline: auto;
}
footer .footer-Box {
  width: min(95%, 1600px);
  margin-inline: auto;
  padding: 253px 0 100px;
}
footer .btn-box {
  display: grid;
  gap: 93px;
  padding-bottom: 69px;
}
footer .btn-box li a {
  display: block;
  border-bottom: 1px solid #3A4F44;
  padding-bottom: 46px;
  position: relative;
}
footer .btn-box li a::after {
  position: absolute;
  content: "";
  background: url(../images/common/f-btn-arrow.svg)no-repeat;
  background-size: contain;
  width: 120px;
  height: 120px;
  top: 8px;
  right: 0;
  transition: all 0.2s;
}
footer .btn-box li a:hover::after {
  right: -5px;
}
footer .btn-box li a:hover {
  text-decoration: none;
}
footer .btn-box li .enttl{
  position: relative;
  display: inline-block;
  padding-left: 15px;
  margin-bottom: 25px;
}
footer .btn-box li:nth-child(2) .enttl {
    padding-left: 7px;
}
footer .btn-box li .enttl::after {
  position: absolute;
  content: "";
  width: 180px;
  height: 110px;
  top: 50%;
  right: -220px;
  transform: translateY(-50%);
}
footer .btn-box li:nth-child(1) .enttl::after {
  background: url(../images/common/f-btn-photo01.png)no-repeat;
  background-size: contain;
}
footer .btn-box li:nth-child(2) .enttl::after {
  background: url(../images/common/f-btn-photo02.png)no-repeat;
  background-size: contain;
  right: -210px;
}
footer .btn-box li .ttl-wrap {
  display: flex;
  gap: 28px;
  align-items: baseline;
}
footer .btn-box li .ttl{
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.05em;
  line-height: 2.25;
  padding-left: 10px;
}
footer .btn-box li .txt{
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2;  
}

footer .tel-box {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 100px;
  position:relative;
}
footer .tel-box .open{
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0;
}
footer .tel-box .f-tel-txt{
color: #090909;
position: absolute; top:40px; left:0;
font-size: 12px; line-height: 1.6; letter-spacing: 0px; 
}


footer .f-home-link {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-bottom: 31px;
}
footer .f-link-inner {
  display: grid;
  grid-template-columns: 1fr 20.8125%;
}
footer .f-link-Box {
  display: flex;
  gap: 80px;
  padding: 0 21px;
}
footer .f-link a{
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2.571428;
  position: relative;
}
footer .f-link a::before {
  position: absolute;
  content: ">";
  top: 47%;
  left: -21px;
  transform: translateY(-50%);
  font-size: 14px;
  line-height: 2.5714;
  letter-spacing: 0.05em;
}
footer .info-box {
  padding: 50px 0 0;
  text-align: right;
}
footer .info-box .logo {
  margin-bottom: 17px;
}
footer .info-box .address {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2;
  padding-left: 15px;
  margin-bottom: 11px;
}
footer .info-box .insta {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 2.3333;
  display: grid;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  grid-template-columns: 1fr 20px;
}
.copyright {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 2.3333;
  margin: -25px 0 0;
  display: block;
}
/* 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-wrap {
  width: 100%;
  background: #F6F6F6;
  padding: 46px 0 51px;
  text-align: center;
  margin-bottom: 5px;
  margin-top: 20px;
  max-width: 1920px;
  margin-inline: auto;
}
.main-ttl-wrap .en {
  font-weight: normal;
  font-size: 15px;
  letter-spacing: 0;
  text-align: center;
  color: #3b8461;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.main-ttl-wrap .ttl {
  font-weight: 500;
  font-size: 25px;
  letter-spacing: 0.05em;
  line-height: 1.32;
  text-align: center;
}

.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-asul {
  font-family: "Asul", 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 (max-width: 1200px) 
======================================== */
@media screen and (max-width: 1200px) {
  html {
    overflow: auto;
  }
  body {
    /* overflow: visible; */
  }
}

/* ========================================
@media screen and (min-width:768px) and (max-width:1500px) 
======================================== */
@media screen and (min-width:768px) and (max-width:1500px) {
header .btn-wrap .tel-box .h-tel-txt {position: absolute; top: 4.333vw; left: 0; font-size: 0.8vw; line-height: 1.5;width: 24vw;}
}


/* ========================================
@media screen and (min-width:768px) and (max-width:1440px) 
======================================== */
@media screen and (min-width:768px) and (max-width:1440px) {
  #pc-menu-open .open-main-Box {
    width: 97.222vw;
    grid-template-columns: 23.78% 1fr;
    gap: 10.569vw;
    padding: 10.764vw 0 7.639vw;
  }
  #pc-menu-open .open-main-Box .info-box .logo img {
    width: 23.125vw;
  }
  #pc-menu-open .open-main-Box .link-box {
    padding-right: 8.125vw;
  }
  #pc-menu-open .btn-box li a::after {
    width: 4.861vw;
    height: 4.861vw;
    top: -0.417vw;
  }
  #pc-menu-open .btn-box li:nth-child(1) .enttl img {
    width: 14.583vw;
  }
  #pc-menu-open .btn-box li:nth-child(2) .enttl img {
    width: 23.611vw;
  }
}

/* ========================================
@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 .link-box .link li {
    font-size: clamp(0.625rem, 0.438rem + 0.39vw, 0.75rem);
  }
  #pc-menu-open .btn-box li .enttl::after {
    position: absolute;
    content: "";
    width: 9.375vw;
    height: 5.469vw;
    top: 50%;
    right: -12.187vw;
    transform: translateY(-50%);
  }
  #pc-menu-open .btn-box li:nth-child(2) .enttl::after {
    background: url(../images/common/open-btn-photo02.png)no-repeat;
    background-size: contain;
    right: -11.641vw;
  }
}

/* ========================================
@media screen and (min-width:768px) and (max-width:1600px) 
======================================== */
@media screen and (min-width:768px) and (max-width:1600px) {
  .pc-menu img {
    width: 10vw;
  }
  header .inner {
    padding: 0 10vw 0 1.875vw;
  }
  header .logo-wrap {
    gap: 1.313vw;
    padding: 1.25vw 0 0;
  }
  header .logo-wrap .h-logo img {
    width: 11.063vw;
  }
  header .logo-wrap .txt{
    font-size: 0.75vw;
    padding: 0.25vw 0 0;
  }
  header .btn-wrap {
    gap: 1.812vw;
  }
  header .btn-wrap .tel-box {
    gap: 1.063vw;
    margin: -0.562vw 0 0;
  }
  header .btn-wrap .tel-box .open{
    font-size: 0.875vw;
    gap: 0.375vw;
    margin: 0.313vw 0 0;
  }
  header .btn-wrap .tel-box .tel img {
    width: 9.438vw;
  }
  header .btn-wrap .list li:nth-child(1) img {
    width: 3.125vw;
  }
  header .btn-wrap .list li:nth-child(2) img {
    width: 15vw;
  }
  header .btn-wrap .list li:nth-child(3) img {
    width: 15vw;
  }
  
}

/* ========================================
@media screen and (min-width:768px) and (max-width:1640px) 
======================================== */
@media screen and (min-width:768px) and (max-width:1640px) {
/* footer
-------------------------------------*/
footer .footer-Box {
  width: 97.561vw;
  padding: 22.134vw 0 6.098vw;
}
footer .btn-box {
  gap: 5.671vw;
  padding-bottom: 4.207vw;
}
footer .btn-box li a {
  padding-bottom: 2.805vw;
}
footer .btn-box li a::after {
  width: 7.317vw;
  height: 7.317vw;
  top: 0.488vw;
}
footer .btn-box li a:hover::after {
  right: -0.305vw;
}
footer .btn-box li .enttl{
  padding-left: 0.915vw;
  margin-bottom: 1.524vw;
}
footer .btn-box li .enttl img {
  width: 22.439vw;
}
footer .btn-box li:nth-child(2) .enttl {
  padding-left: 0.427vw;
}
footer .btn-box li:nth-child(2) .enttl img {
  width: 36.341vw;
}
footer .btn-box li .enttl::after {
  width: 10.976vw;
  height: 6.707vw;
  right: -13.415vw;
}
footer .btn-box li:nth-child(2) .enttl::after {
  right: -12.805vw;
}
footer .btn-box li .ttl-wrap {
  gap: 1.707vw;
}
footer .btn-box li .ttl{
  font-size: 1.707vw;
  padding-left: 0.61vw;
}
footer .tel-box {
  gap: 2.439vw;
  margin-bottom: 4.939vw;
}
footer .tel-box .open{
  font-size: 1.22vw;
}
footer .f-home-link {
  margin-bottom: 1.89vw;
}
footer .f-link-inner {
  grid-template-columns: 1fr 22.8125%;
}
footer .f-link-Box {
  gap: 3.878vw;
  padding: 0 1.28vw;
}
footer .f-link a::before {
  left: -1.28vw;
  line-height: 2.5714;
}
footer .info-box {
  padding: 3.049vw 0 0;
}
footer .info-box .logo {
  margin-bottom: 1.037vw;
}
footer .info-box .logo img {
  width: 20.305vw;
}
footer .info-box .address {
  padding-left: 0.915vw;
  margin-bottom: 0.671vw;
}
footer .info-box .insta {
  gap: 0.61vw;
}
.copyright {
  margin: -1.524vw 0 0;
}
}

/* ========================================
@media screen and (min-width:768px) and (max-width:1440px) 
======================================== */
@media screen and (min-width:768px) and (max-width:1440px) {
  footer .btn-box li .txt{
    font-size: clamp(0.625rem, 0.339rem + 0.6vw, 0.875rem);
  }
  footer .f-home-link {
    font-size: clamp(0.625rem, 0.339rem + 0.6vw, 0.875rem);
  }
  footer .f-link a{
    font-size: clamp(0.625rem, 0.339rem + 0.6vw, 0.875rem);
  }
  footer .f-link a::before {
    font-size: clamp(0.625rem, 0.339rem + 0.6vw, 0.875rem);
  }
  footer .info-box .address {
    font-size: clamp(0.625rem, 0.339rem + 0.6vw, 0.875rem);
  }
  footer .info-box .insta  {
    font-size: clamp(0.625rem, 0.482rem + 0.3vw, 0.75rem);
  }
  .copyright  {
    font-size: clamp(0.625rem, 0.482rem + 0.3vw, 0.75rem);
  }
}

/* ========================================
@media screen and (min-width:768px) and (max-width:1400px) 
======================================== */
@media screen and (min-width:768px) and (max-width:1400px) {
  footer .f-link-Box {
    gap: 3.6vw;
  }
}

/* ========================================
@media screen and (min-width:768px) and (max-width:1280px) 
======================================== */
@media screen and (min-width:768px) and (max-width:1280px) {
  footer .f-link-inner {
    grid-template-columns: 1fr 24.1%;
  }
}

/* ========================================
   @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: #1d1d1f;
  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;
}

/* sp-header
-------------------------------------*/
.sp-header {padding: 4vw 3vw;}
.sp-header .h-logo img {

}
.sp-header .h-menu {
  position: fixed;
  top: 0;
  right: 0;
  /* width: 13vw; */
  z-index: 97;
}
.sp-header .h-menu img {
  height: auto;
  width: 14.49vw;
}

  /* sp-global-nav
-------------------------------------*/
nav#sp-global-nav .h-logo {
  padding: 3.5vw 3vw;
}
nav#sp-global-nav .h-logo img {width: 26.81vw;height: auto;}
nav#sp-global-nav {
  z-index: 99;
  overflow: scroll;
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  background-color: #F1EADA;
  box-sizing: border-box;
}
nav#sp-global-nav .open-close-01 {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 98;
}
nav#sp-global-nav .open-close-01 img {width: 14.49vw;height: auto;}
nav#sp-global-nav .open-color-Box {
  padding: 9.2vw 0 20vw;
  width: 89.37vw;
  margin-inline: auto;
}
nav#sp-global-nav .btn-box {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 10.5vw;
  padding-bottom: 13vw;
}
nav#sp-global-nav .btn-box li a {
  display: block;
  border-bottom: 0.2vw solid #3A4F44;
  padding: 0 0vw 2.7vw;
  position: relative;
}
nav#sp-global-nav .btn-box li a::after {
  position: absolute;
  content: "";
  background: url(../images/common/open-btn-arrow_sp.svg)no-repeat;
  background-size: contain;
  width: 9.66vw;
  height: 9.66vw;
  bottom: 3vw;
  right: 0;
  transition: all 0.2s;
}
nav#sp-global-nav .btn-box li a:hover::after {
  right: -1.21vw;
}
nav#sp-global-nav .btn-box li a:hover {
  text-decoration: none;
}
nav#sp-global-nav .btn-box li .enttl{
  position: relative;
  display: inline-block;
  margin-bottom: 2.9vw;
}
nav#sp-global-nav .btn-box li:nth-child(2) .enttl {
    margin: 0 0 2.9vw -1vw;
}
nav#sp-global-nav .btn-box li .enttl::after {
  position: absolute;
  content: "";
  width: 19.32vw;
  height: 12.08vw;
  top: 50%;
  right: -22.5vw;
  transform: translateY(-50%);
}
nav#sp-global-nav .btn-box li:nth-child(1) .enttl::after {
  background: url(../images/common/open-btn-photo01_sp.png)no-repeat;
  background-size: contain;
}
nav#sp-global-nav .btn-box li:nth-child(2) .enttl::after {
  background: url(../images/common/open-btn-photo02_sp.png)no-repeat;
  background-size: contain;
  right: -21.7vw;
}
nav#sp-global-nav .btn-box li .ttl{
  font-weight: 500;
  font-size:3.865vw;
  letter-spacing: 0.05em;
  line-height: 2.5625;
}
nav#sp-global-nav .link {
  margin: 13.9vw 0 0vw;
  background: none;
}
nav#sp-global-nav .link li:first-child a {
  border-top: 0.2vw solid #D6CCB6;
}
nav#sp-global-nav .home-link a{
  font-size:3.865vw;
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.05em;
  border-bottom: 0.2vw solid #3A4F44;
  display: block;
  padding-bottom: 1.4vw;
}
nav#sp-global-nav .link li a {
  font-size:3.382vw;
  line-height: 1;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 6.4vw 4vw;
  display: block;
  border-bottom: 0.2vw solid #D6CCB6;
  position: relative;
}
nav#sp-global-nav .link li a:hover {
  text-decoration: none;
}
nav#sp-global-nav .link li a::after {
  position: absolute;
  content: "→";
  font-family: "Asul", serif;
  font-size: 3vw;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0;
  top: 52%;
  right: 3.5vw;
  transform: translateY(-50%);
}
nav#sp-global-nav .tel-box {
  text-align: center;
  padding: 17vw 0 15vw;
}
nav#sp-global-nav .tel-box .txt {
  font-size:3.865vw;
  font-weight: 500;
  line-height: 2.5625;
  letter-spacing: 0.05em;
  margin-bottom: 4.4vw;
}
nav#sp-global-nav .tel-box .tel {margin-bottom: 4vw;}
nav#sp-global-nav .tel-box .open {
  font-size:3.865vw;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}

nav#sp-global-nav .tel-box .h-tel-txt {
  margin:5vw 0 0 0;
font-size:3.14vw; line-height: 1.7; letter-spacing: 0; 
}

nav#sp-global-nav .info-box {
  text-align: center;
}
nav#sp-global-nav .info-box .logo {
  margin-bottom: 2.5vw;
}
nav#sp-global-nav .info-box .address {
  font-size:3.382vw;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 2.5vw;
}
nav#sp-global-nav .info-box .insta {
  font-size:2.898vw;
  font-weight: 500;
  line-height: 2.3333;
  letter-spacing: 0.05em;
  display: flex;
  gap: 2vw;
  justify-content: center;
  align-items: center;
}


  /* 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 li a {
  display: block;
}
.sp-fix-list .tel img {
  width: 14.49vw;
  height: auto;
}
.sp-fix-list .icon img {
  width: 42.75vw;
  height: auto;
}

/* end-contact
-------------------------------------*/

/* 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: url(../images/common/f-bg_sp.png)no-repeat center top / cover;
  position: relative;
}
footer .footer-Box {
  width: 91.06vw;
  margin-inline: auto;
  padding: 27vw 0;
}
footer .btn-box {
  display: grid;
  gap: 8vw;
  padding-bottom: 7vw;
}
footer .btn-box li a {
  display: block;
  border-bottom: 0.2vw solid #3A4F44;
  padding-bottom: 3.8vw;
  position: relative;
}
footer .btn-box li a::after {
  position: absolute;
  content: "";
  background: url(../images/common/f-btn-arrow.svg)no-repeat;
  background-size: contain;
  width: 9.66vw;
  height: 9.66vw;
  top: 13.5vw;
  right: 0;
  transition: all 0.2s;
}
footer .btn-box li a:hover::after {
  right: 0.5vw;
}
footer .btn-box li a:hover {
  text-decoration: none;
}
footer .btn-box li .enttl{
  position: relative;
  display: inline-block;
  margin-bottom: 2.5vw;
  padding-left: 0.8vw;
}
footer .btn-box li .enttl img {
  width: 38vw;
}
footer .btn-box li:nth-child(2) .enttl {padding: 0;margin-bottom: 3.4vw;}
footer .btn-box li:nth-child(2) .enttl img{
  width: 61.32vw;
}
footer .btn-box li .enttl::after {
  position: absolute;
  content: "";
  width: 19.32vw;
  height: 12.08vw;
  top: 44%;
  right: -22.5vw;
  transform: translateY(-50%);
}
footer .btn-box li:nth-child(1) .enttl::after {
  background: url(../images/common/f-btn-photo01.png)no-repeat;
  background-size: contain;
}
footer .btn-box li:nth-child(2) .enttl::after {
  background: url(../images/common/f-btn-photo02.png)no-repeat;
  background-size: contain;
  right: -22.2vw;
  top: 53%;
}
footer .btn-box li .ttl-wrap {
  display: grid;
  gap: 0vw;
  align-items: baseline;
  margin: 0 0.8vw;
}
footer .btn-box li .ttl{
  font-weight: 500;
  font-size:3.865vw;
  letter-spacing: 0.05em;
  line-height: 2.5625;
}
footer .btn-box li .txt{
  font-weight: 500;
  font-size:2.898vw;
  letter-spacing: 0.05em;
  line-height: 1.8333;  
}

footer .tel-box {
  display: grid;
  align-items: center;
  justify-content: center;
  padding: 7vw 0;
  position:relative;
}
footer .tel-box .txt {
  text-align: center;
  font-size:3.865vw;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 6vw;
}
footer .tel-box .tel{
    margin-bottom: 4vw;
    text-align: center;
}
footer .tel-box .open{
  font-size:3.865vw;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
  margin: 0 0 3vw 0;
}

footer .tel-box .f-tel-txt{
color: #090909;
font-size:2.90vw; line-height: 1.6; letter-spacing: 0px;
text-align: center;
}


footer .f-home-link {
  display: none;
}
footer .f-link-Box {
  display: none;
}
footer .info-box {
  padding: 7.5vw 0 0;
  text-align: right;
}
footer .info-box .logo {
  margin-bottom: 3vw;
  text-align: center;
}
footer .info-box .logo img {

}
footer .info-box .address {
  font-weight: 500;
  font-size:3.382vw;
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
  margin-bottom: 2.5vw;
}
footer .info-box .insta {
  font-weight: 500;
  font-size:2.898vw;
  letter-spacing: 0.05em;
  line-height: 2.3333;
  display: flex;
  gap: 2vw;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 7.5vw;
}
.copyright {
  font-weight: 500;
  font-size:2.898vw;
  letter-spacing: 0.05em;
  line-height: 2.3333;
  display: block;
  text-align: center;
}

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

  /* common
-------------------------------------*/
.main-ttl-wrap {
  width: 100%;
  background: #F6F6F6;
  padding: 8.5vw 0 8vw;
  text-align: center;
  margin-bottom: 4vw;
  margin-top: 0;
}
.main-ttl-wrap .en {
  font-size:2.898vw;
  letter-spacing: 0;
  text-align: center;
  color: #3b8461;
  margin-bottom: 0vw;
  text-transform: uppercase;
}
.main-ttl-wrap .ttl {
  font-weight: 500;
  font-size:4.348vw;
  letter-spacing: 0.05em;
  line-height: 1.833333;
  text-align: center;
}

.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-asul {
  font-family: "Asul", 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;
  }
}
