@charset "UTF-8";
:root {
  --background-drawer: #fff;
  --drawer-nav-position-top: -100%;
  --drawer-nav-height: auto;
}

.drawer-open {
  --background-drawer: rgba(255, 255, 255, 0.8);
  --drawer-nav-position-top: 0;
  --drawer-nav-height: 100%;
  overflow: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  position: relative;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic W3 JIS2004", Verdana, Roboto, "Droid Sans", sans-serif;
  font-feature-settings: "palt" 1;
}

.inner {
  width: 86%;
  max-width: 928px;
  margin: 0 auto;
  text-align: left;
}
#home #main .inner {
  max-width: 1376px;
}

#siteLogo {
  margin-left: 4%;
}
#siteLogo a {
  display: flex;
  align-items: center;
}
#siteLogo a img {
  display: inline-block;
  width: 32%;
  min-width: 50px;
  max-width: 178px;
  margin-right: 0.3rem;
}
#siteLogo a em {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.714rem;
  font-weight: 400;
  line-height: 1.2;
}

#headNav {
  display: none;
}

.drawer-container {
  width: 100%;
  max-width: 100%;
}

.drawer-nav {
  position: fixed;
  top: var(--drawer-nav-position-top);
  left: 0;
  z-index: 103;
  width: 100%;
  height: var(--drawer-nav-height);
  max-height: 100%;
  overflow: hidden;
  background: var(--background-drawer);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.drawer-open .drawer-nav {
  overflow: auto;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.drawer-hamburger {
  position: relative;
  box-sizing: content-box;
  display: block;
  width: 2rem;
  padding-right: 1rem;
  outline: 0;
  background-color: transparent;
  border: 0;
  transform: translate3d(0, 0, 0);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.drawer-hamburger:hover {
  cursor: pointer;
  background-color: transparent;
}
.drawer-hamburger, .drawer-hamburger * {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.drawer-hamburger-icon {
  position: relative;
  display: block;
  margin-top: 10px;
}
.drawer-hamburger-icon, .drawer-hamburger-icon:before, .drawer-hamburger-icon:after {
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.drawer-hamburger-icon:before, .drawer-hamburger-icon:after {
  position: absolute;
  top: -10px;
  left: 0;
  content: " ";
}
.drawer-hamburger-icon:after {
  top: 10px;
}
.drawer-open .drawer-hamburger-icon {
  background-color: transparent;
}
.drawer-open .drawer-hamburger-icon:before, .drawer-open .drawer-hamburger-icon:after {
  top: 0;
}
.drawer-open .drawer-hamburger-icon:before {
  transform: rotate(45deg);
}
.drawer-open .drawer-hamburger-icon:after {
  transform: rotate(-45deg);
}

.drawer-navbar {
  top: 0;
  z-index: 103;
  width: 100%;
}
.drawer-navbartopGutter {
  padding-top: 60px;
}
.drawer-navbar--fixed {
  position: fixed;
}
.drawer-navbar-header {
  position: relative;
  z-index: 104;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  background: #fff;
  box-shadow: 0 3px 6px 3px rgba(0, 0, 0, 0.16);
}

.open .drawer-dropdown-menu {
  top: 100%;
  left: 0;
  display: block;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .drawer--navbarTopGutter {
    padding-top: 100px;
  }
  .drawer-navbar-header {
    max-width: 100%;
    height: 100px;
  }
  #siteLogo a img {
    width: 180px;
    max-width: 180px;
    margin-right: 1rem;
  }
  #siteLogo a em {
    margin-top: 2rem;
    font-size: 1rem;
  }
}
@media screen and (min-width: 1130px) {
  .drawer-navbar .drawer-hamburger {
    display: none;
  }
  .drawer-navbar .drawer-nav {
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    overflow: visible;
    transform: translate3d(0, 0, 0);
  }
  .drawer-dropdown-menu {
    border: 1px solid #ddd;
  }
  li.nav-item-has-submenu {
    position: relative;
  }
  li.nav-item-has-submenu ul.nav-submenu {
    position: absolute;
    top: 0;
    left: calc(100% - 0.75rem);
    background: var(--background-drawer);
    border: 1px solid #ddd;
    border-left: none;
  }
  .drawer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
  }
  .drawer--navbarTopGutter {
    padding-top: 0;
  }
  .drawer-navbar-header {
    height: auto;
    box-shadow: none;
  }
  .drawer-navbar--fixed {
    position: static !important;
  }
  #siteLogo {
    margin-left: 0;
  }
  #siteLogo a em {
    white-space: nowrap;
  }
  .headR {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    text-align: right;
  }
  #headNav {
    display: block;
    width: 100%;
  }
  #headNav a {
    display: inline-block;
    padding: 0.3rem 1.5rem;
    font-size: 0.875rem;
    color: #fff;
    background: #00a897;
    border-radius: 2rem;
  }
  #headNav a img {
    display: inline-block;
    margin-right: 0.5rem;
    vertical-align: middle;
  }
}
@media screen and (max-width: 1129px) {
  .drawer-dropdown-menu * {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .nav-item-has-submenu:hover:before {
    opacity: 0;
  }
  .drawer-dropdown-menu > li,
.nav-submenu > li {
    position: relative;
    padding-left: 1rem;
  }
  .drawer-dropdown-menu > li:before, .drawer-dropdown-menu > li:after,
.nav-submenu > li:before,
.nav-submenu > li:after {
    position: absolute;
    content: "";
    background-color: dimgray;
  }
  .drawer-dropdown-menu > li:before,
.nav-submenu > li:before {
    top: 50%;
    left: 0;
    width: 0.75rem;
    height: 1px;
  }
  .drawer-dropdown-menu > li:after,
.nav-submenu > li:after {
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
  }
  .drawer-dropdown-menu > li:last-child::after,
.nav-submenu > li:last-child::after {
    height: 50%;
  }
}
@media screen and (min-width: 1130px) and (max-width: 1400px) {
  #siteLogo a em {
    display: none;
  }
}
/* globalNav */
#globalNav {
  padding-top: 70px;
  padding-left: 15px;
}
#globalNav > ul {
  text-align: left;
}
#globalNav > ul > li > a {
  font-weight: 700;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  #globalNav {
    padding-top: 150px;
  }
}
@media screen and (min-width: 1130px) {
  #globalNav {
    position: static;
    padding: 0;
  }
  #globalNav > ul {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    font-size: 18px;
    line-height: 1.27;
  }
  #globalNav > ul > li {
    display: flex;
  }
  #globalNav > ul > li > a {
    padding: 1.375rem 0;
  }
  #globalNav > ul > li > a[data-toggle=dropdown] {
    padding-right: 1rem;
  }
  #globalNav > ul > li > ul a {
    display: block;
    padding: 0.75rem;
  }
  #globalNav > ul > li#nav-service, #globalNav > ul > li#nav-company {
    position: relative;
  }
  #globalNav > ul > li#nav-service > ul, #globalNav > ul > li#nav-company > ul {
    position: absolute;
    top: 3rem;
    left: 0;
    z-index: 200;
    display: none;
    font-size: 0.9375rem;
    background: #fff;
  }
  #globalNav > ul > li#nav-service.open > ul, #globalNav > ul > li#nav-company.open > ul {
    display: block;
  }
  #globalNav > ul > li#nav-contact, #globalNav > ul > li#nav-privacy {
    display: none;
  }
  #globalNav #nav-service > a::before,
#globalNav #nav-company > a::before {
    position: absolute;
    top: 1.9rem;
    right: 3px;
    width: 7px;
    height: 7px;
    content: "";
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(135deg);
    transition: all 0.3s ease-in-out;
  }
  #globalNav #nav-service.open > a::before,
#globalNav #nav-company.open > a::before {
    transform: rotate(-45deg);
  }
}
.nav-item-has-submenu .nav-submenu {
  display: none;
  opacity: 0;
  transform: translatex(0px);
  transition: all 0.25s ease-out;
  transition-behavior: allow-discrete;
}
.nav-item-has-submenu:hover {
  cursor: default;
}
.nav-item-has-submenu:hover > ul.nav-submenu {
  display: block;
  opacity: 1;
  transform: translatex(10px);
  transition: all 0.25s ease-in;
  transition-behavior: allow-discrete;
}
@starting-style {
  .nav-item-has-submenu:hover > ul.nav-submenu {
    opacity: 0;
    transform: none;
  }
}

/* heroHeader */
#heroHeader {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
#heroHeader h1 {
  padding: 3em 0;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  text-shadow: 1px 3px 9px rgba(0, 0, 0, 0.6);
}
#heroHeader h1 img {
  height: 23px;
}

@media screen and (min-width: 1025px) {
  #heroHeader h1 {
    padding: 3em 0;
    font-size: 40px;
  }
  #heroHeader h1 img {
    height: 50px;
  }
}
/* main */
.ggmap {
  position: relative;
  height: 40vh;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* btmContact */
#btmContact {
  padding: 2rem 0;
  margin: 0;
  color: #fff;
  background: url("../img/treat.svg") no-repeat 92% 5%;
  background-color: var(--primary-color) !important;
  background-size: 4rem;
}
#btmContact .inner {
  max-width: 92%;
}
#btmContact .label {
  margin-bottom: 1rem;
  color: #fff;
  background: var(--primary-color);
  border-color: #fff;
}
#btmContact a {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4rem;
  padding: 1rem 0;
  color: var(--primary-color);
  background: #fff;
}
#btmContact svg {
  display: inline-block;
  height: 1.4rem;
  fill: var(--primary-color);
}
#btmContact h2 {
  margin-bottom: 1rem !important;
  font-size: 1.14rem !important;
  font-weight: 400 !important;
  line-height: 1.8;
  text-align: left;
}
#btmContact nav {
  max-width: 992px;
  margin: 0 auto;
}
#btmContact nav div {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  margin-top: 1rem;
  color: var(--primary-color);
  background: #fff;
}
#btmContact ul li {
  margin-bottom: 1rem;
}
#btmContact li:first-of-type a {
  font-weight: bold;
  text-align: center;
}
#btmContact li:first-of-type svg {
  margin-right: 0.5rem;
}
#btmContact li:last-of-type a {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
#btmContact li:last-of-type a > span {
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.4;
}
#btmContact li:last-of-type a > svg {
  margin: 0 0.5rem;
}
#btmContact li:last-of-type a > em {
  display: block;
  font-family: "Fjalla One", sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
}
#btmContact li:last-of-type a > em span {
  display: block;
  font-family: initial;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.2;
}

@media screen and (min-width: 768px) {
  #btmContact {
    background-position: 92% 10%;
    background-size: 5rem;
  }
  #btmContact h2 {
    margin-bottom: 2rem !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1.5;
    text-align: center;
  }
  #btmContact ul {
    display: flex;
    justify-content: space-between;
  }
  #btmContact ul li {
    width: 48%;
    margin-bottom: 0;
  }
  #btmContact a {
    height: 6rem;
    padding: 2rem 0;
  }
  #btmContact li:last-of-type a > em {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  #btmContact {
    padding: 4rem 0;
    background-position: 92% 10%;
    background-size: 10rem;
  }
  #btmContact .data {
    max-width: 92%;
  }
  #btmContact h2 {
    margin: 2rem 0;
    font-size: 1.25rem !important;
  }
}
/* footer */
#footer {
  padding: 4em 0;
}

#footLogo {
  margin-bottom: 1rem;
}
#footLogo a,
#footLogo img {
  display: block;
}

#footCom address {
  margin-bottom: 2rem;
  line-height: 1.8;
}
#footCom aside {
  margin-bottom: 7rem;
}
#footCom aside ul li {
  display: block;
  font-size: 0.75rem;
  line-height: 2.1rem;
}
#footCom aside ul li a {
  display: block;
}
#footCom aside ul li img {
  display: inline-block;
  margin-right: 0.5rem;
  vertical-align: middle;
}

#footNav {
  display: none;
}

#copyright {
  font-size: 11px;
  line-height: 1.2;
  text-align: left;
}

@media screen and (min-width: 768px) {
  #footer .inner {
    display: flex;
    justify-content: space-between;
    width: 94%;
  }
  #footCom address span {
    display: block;
  }
  #footNav {
    display: flex;
    justify-content: space-between;
    width: 70%;
    margin-bottom: 3rem;
  }
  #footNav > ul {
    margin-left: 2%;
  }
  #footNav > ul:nth-of-type(3n + 1) {
    margin-left: 0;
  }
  #footNav > ul > li {
    margin-bottom: 0.5rem;
  }
  #footNav > ul ul {
    margin-left: 1rem;
    font-size: 0.75rem;
  }
  #footNav > ul ul li:before {
    content: "- ";
  }
}
@media screen and (min-width: 1025px) {
  #footer .inner {
    max-width: 953px;
  }
  #footCom address span {
    display: inline-block;
    margin-right: 0.5rem;
  }
  #footNav {
    width: 60%;
  }
}
/* wpadminbar */
body.admin-bar #wpadminbar {
  position: fixed;
  top: 0 !important;
}
body.admin-bar #header {
  top: 46px;
}

@media screen and (min-width: 783px) {
  body.admin-bar #wpadminbar {
    top: 0 !important;
  }
  body.admin-bar #header {
    top: 32px;
  }
}