@charset "UTF-8";
/* HEADER FOOTER CSS*/
/* -----------------------------------------------
 HEADER
-------------------------------------------------- */
/* js_Header */
#header_bg {
  position: fixed;
  top: 0;
  left: 0;
  height: 90px;
  width: 100%;
  z-index: 999;
  box-shadow: var(--shadow);
  background-color: rgba(255, 255, 255, .9);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  height: 90px;
  width: 100%;
  z-index: 1000;
  font-size: 16px;
}
#header a {
  text-decoration: none;
  font-size: 15px
}
/* ロゴ*/
#h_logo {
  position: fixed;
  z-index: 100;
  left: 23px;
  top: 15px;
}
#h_logo a {
  display: block;
  background-image: url("../images/logo.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 260px auto;
  width: 260px;
  height: 60px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
/* ボタン*/
#contact-btn {
  position: absolute;
  top: 20px;
  right: 150px;
  z-index: 100;
  align-items: center;
}
#contact-btn i {
  display: none
}
#contact-btn a {
  display: block;
  background-color: var(--main);
  color: white;
  padding: 10px 1.6em;
  border-radius: 50px;
  border: 1px solid var(--main);
  font-weight: 500;
  font-size: 15px;
  transition: all .2s;
}
#contact-btn a:hover {
  color: var(--main);
  background-size: 20px 20px;
  background-color: transparent;
  opacity: 1
}
/* メニュー */
.global-nav {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  text-align: left;
  align-items: center;
  font-size: 18px;
  transform: translateX(100%);
  transition: 0.3s ease-in-out;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch; /*慣性スクロールを追加*/
  padding-bottom: 2em;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: var(--shadow)
}
.global-nav .nav-list {
  position: relative;
  width: 70%;
  height: auto; /*必須*/
  display: block;
  margin: 0 auto;
  list-style: none;
  align-items: center;
  padding-right: 0;
  padding-top: 60px;
}
.global-nav > .nav-list > .nav-item > a { /*表示されているメニュー*/
  position: relative;
  width: auto;
  display: block;
  vertical-align: middle;
  text-align: center;
  font-size: 18px;
  height: auto;
  padding: 1em;
  border-bottom: 1px solid rgba(215, 215, 215, 1.00);
}
/* open*/
.open .global-nav {
  width: 51%;
  transform: translateX(99%);
}
/* open*/
.open {
  overflow: hidden;
}
.open .global-nav {
  visibility: visible;
  opacity: 1;
}
#inner-btn {
  width: 100%;
  position: relative;
  margin: 2em auto;
  padding-bottom: 3em
}
#inner-btn a.inner-contact {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: block;
  width: 70%;
  padding: 1em;
  border: 1px solid var(--main);
  border-radius: 50px;
  text-align: center;
  background-color: var(--main);
  color: white
}
/*=============================
ハンバーガボタン
=============================*/
.btn-trigger {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 120px;
  height: 45px;
  cursor: pointer;
  z-index: 1000;
  border: 1px solid #333;
  border-radius: 50px;
  display: flex;
}
.btn-trigger p {
  position: absolute;
  display: block;
  left: 25px;
  top: 10px;
  font-size: 14px
}
.btn-trigger span {
  position: absolute;
  right: 20px;
  width: 30px;
  height: 1px;
  background-color: #333;
}
.btn-trigger, .btn-trigger span {
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}
.btn-trigger span:nth-of-type(1) {
  top: 18px;
}
.btn-trigger span:nth-of-type(2) {
  top: 25px;
}
/*=============================
#btn01
=============================*/
#btn01.active span {
  /*background-color: #5E9961;*/
  padding-right: 10px
}
#btn01.active span:nth-of-type(1) {
  -webkit-transform: translateY(4px) rotate(-45deg);
  transform: translateY(4px) rotate(-45deg);
}
#btn01.active span:nth-of-type(2) {
  -webkit-transform: translateY(-3px) rotate(45deg);
  transform: translateY(-3px) rotate(45deg);
}
@media screen and (max-width: 1024px) {
  /* js_Header */
  #header_bg {
    height: 60px;
  }
  /* header */
  header {
    height: 60px;
    font-size: 14px;
  }
  /* ロゴ*/
  #h_logo {
    left: 8px;
    top: 4px;
  }
  #h_logo a {
    background-size: 200px auto;
    width: 200px;
    height: 50px;
  }
  /* ボタン*/
  #contact-btn {
    top: 10px;
    right: 120px;
  }
  #contact-btn a {
    padding: 8px 1.3em;
    font-size: 13px;
  }
  /*ハンバーガボタン*/
  .btn-trigger {
    position: fixed;
    top: 10px;
    right: 15px;
    width: 100px;
    height: 38px;
  }
  .btn-trigger p {
    position: absolute;
    display: block;
    left: 15px;
    top: 8px;
    font-size: 13px
  }
  .btn-trigger span {
    position: absolute;
    right: 20px;
    width: 20px;
    height: 1px;
    background-color: #333;
  }
  .btn-trigger span:nth-of-type(1) {
    top: 15px;
  }
  .btn-trigger span:nth-of-type(2) {
    top: 22px;
  }
  #btn01.active span {
    padding-right: 20px
  }
}
@media screen and (max-width: 768px) {
  /* open*/
  .open .global-nav {
    width: 100%;
    transform: translateX(0);
  }
}
@media (max-width: 576px) {
  /* ボタン*/
  #contact-btn {
    top: 8px;
    right: 52px;
    text-align: center;
  }
  #contact-btn a {
    padding: 0;
    width: 40px;
    height: 40px;
  }
  #contact-btn i {
    display: block;
    font-size: 18px;
    line-height: 38px
  }
  #contact-btn span {
    display: none
  }
  /*ハンバーガボタン*/
  .btn-trigger {
    position: fixed;
    top: 8px;
    right: 8px;
    width: 38px;
    height: 38px;
  }
  .btn-trigger p {
    display: none
  }
  .btn-trigger span {
    position: absolute;
    right: 8px;
    width: 20px;
    height: 1px;
    background-color: #333;
  }
  .btn-trigger span:nth-of-type(1) {
    top: 15px;
  }
  .btn-trigger span:nth-of-type(2) {
    top: 22px;
  }
}
/* ----- /heaerここまで ------- */
/* -----------------------------------------------
 FOOTER
-------------------------------------------------- */
footer {
  width: 100%;
  margin: 0px;
  padding: 0;
  position: relative;
  clear: both;
  float: none;
}
#f-menu {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
#f-menu li {
  text-align: center;
  border-left: 1px solid var(--bk);
  line-height: 1;
  margin-bottom: .5
}
#f-menu li:first-child {
  border-left: 0
}
#f-menu li a {
  display: block;
  font-size: 14px;
  padding: 0 .7em;
}
#f-menu li a:hover {
  color: var(--main)
}
#f-info { /*parallax*/
  width: 100%;
  margin: 0px;
  padding-top: 80px;
  position: relative;
  z-index: 1;
  background-image: url("../images/infobg.jpg");
  background-attachment: fixed;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
#f-info::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: white;
  mix-blend-mode: multiply;
}
#f-info .contact-btn {
  text-align: center;
}
#f-info .contact-btn a {
  position: relative;
  display: inline-block;
  color: var(--bk);
  padding: 1em 2em;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1.2em;
  border: 1px solid var(--bk)
}
#f-info .contact-btn i {
  font-size: 1.2em;
  padding-right: .5em
}
#f-info .contact-btn a:hover {
  background-color: var(--bk);
  color: white;
  opacity: 1
}
.f-name {
  font-weight: 500;
  font-size: 120%;
  margin-bottom: .5em
}
.f-tel {
  color: var(--bk) !important;
  font-size: 2.4em;
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 0
}
.f-tel i {
  font-size: .8em;
  padding-right: .3em
}
.f-sns {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2em
}
.f-sns li {
  padding: 5px
}
.f-sns li img {
  width: 24px;
  height: 24px
}
.time p {
  font-size: 15px
}
.time p span {
  font-weight: bold;
  margin-left: -10px
}
footer #copy {
  padding: 1em 10%;
  font-size: 13px;
  color: white;
  background-color: rgba(48, 48, 48, 1.00);
}
/* ページTOPに戻る */
.pagetop {
  display: none;
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 100
}
#lineQR {
  border: 1px solid #ccc;
  text-align: center;
  padding: 1em
}
#lineQR img {
  width: 200px
}
#lineQR p {
  font-weight: 400;
  font-size: 13px
}
.pagetop a {
  display: block;
  font-size: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  background: #43A857;
  border-radius: 50%;
  line-height: 50px;
}
.pagetop a i {
  font-size: 20px;
  color: #fff;
  line-height: 50px;
}
@media screen and (max-width: 1200px) {}
/*Tablet以下*/
@media screen and (max-width: 991px) {
  #f-menu {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
  }
  #f-menu li {
    width: 33.33%;
    margin: -1px 0 0 -1px;
    border: 1px solid #ccc;
  }
  #f-menu li a {
    padding: 1em;
  }
  #f-menu li:first-child {
    border: 1px solid #ccc;
  }
}
@media screen and (max-width: 768px) {
  #f-info { /*parallax*/
    background-attachment: scroll;
  }
  #copy {
    font-size: 11px;
  }
  #f-menu li {
    width: 50%;
  }
  #f-menu li:last-child {
    width: 100%;
    margin: -1px 0 0 -1px;
    border: 1px solid #ccc;
  }
}
/* -----------------------------------------------
smartPhone 576以下
-------------------------------------------------- */
@media (max-width: 576px) {
  footer {
    width: 100%;
    margin: 0px;
    padding: 0;
    position: relative;
    clear: both;
    float: none;
  }
  footer p {
    text-align: center
  }
  .f-tel {
    font-size: 1.8em !important;
  }
  #f-info { /*ios用*/
    background-attachment: scroll;
  }
  #f-info .contact-btn a {
    padding: 1em 2.5em;
    font-size: 1em;
  }
  #f-menu li {
    width: 100%;
  }
  .f-sns {
    justify-content: center
  }
}