@charset "UTF-8";
:root {
  --color-accent-1: #036EB6;
  --color-accent-2: #ff6700;
  --color-bg-1: #f5f5f5;
  --color-text: #333333;
}

html {
  scroll-padding-top: 70px; /* header height */
}

#site-header ul, .site-footer ul, .site-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#site-header ul a, .site-footer ul a, .site-menu ul a {
  color: #333;
  font-weight: 600;
  text-decoration: none;
  display: block;
}
#site-header ul a:hover, .site-footer ul a:hover, .site-menu ul a:hover {
  color: var(--color-accent-1);
}

/*
 * Elementorとbootstrapどちらとも衝突しないCSS
 */
#site-header {
  --opener-size: 28px;
  position: sticky;
  Z-index: 1020;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  padding: 8px 1rem;
}
#site-header .site-header__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#site-header .site-title {
  margin: 0;
}
#site-header .site-title a, #site-header .site-title img {
  display: block;
}
#site-header .site-title img {
  width: 190px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
#site-header .site-branding {
  flex-grow: 1;
}
#site-header .site-navigation--custom {
  display: none;
}
@media screen and (min-width: 992px) {
  #site-header .site-branding {
    flex-grow: 0;
  }
  #site-header .site-header__inner {
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #site-header .site-navigation--custom {
    display: flex;
    margin-left: auto;
  }
  #site-header .header__opener {
    display: none;
  }
}
#site-header .site-navigation--custom {
  justify-content: flex-end;
  align-items: center;
}
#site-header .site-navigation--custom ul {
  display: flex;
  font-size: 14px;
}
#site-header .site-navigation--custom ul a {
  box-sizing: content-box;
  padding: 0.5rem;
  display: block;
}
#site-header .site-navigation--custom .buttons > :nth-child(1) {
  --button-fg: var(--color-accent-1);
  --button-bg: #fff;
  --button-border: var(--color-accent-1);
}
#site-header .site-navigation--custom .buttons > :nth-child(2) {
  --button-bg: var(--color-accent-2);
}
#site-header .site-navigation--custom .buttons > :nth-child(3) {
  --button-bg: var(--color-accent-1);
}
#site-header .site-navigation--custom .buttons a {
  text-decoration: none;
  color: var(--button-fg, #fff);
  background: var(--button-bg);
  border: 2px solid var(--button-border, var(--button-bg));
  border-radius: 5px;
  font-weight: 600;
  margin: 0 6px;
  min-width: 130px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.4) 2px 2px 1px 0;
}
#site-header .site-navigation--custom .buttons a:hover {
  opacity: 0.8;
  box-shadow: rgba(0, 0, 0, 0.4) 2px 2px 3px 0;
}

.header__opener {
  font-size: calc(var(--opener-size) * 0.8);
  height: var(--opener-size);
  width: var(--opener-size);
}

.button--opener {
  background-color: #fff;
  display: block;
  appearance: none;
  border: none;
  width: 100%;
  height: 100%;
  line-height: 1;
  padding: 0;
  position: relative;
}
.button--opener span {
  width: calc(100% - 8px);
  height: 2px;
  background-color: #666;
  display: block;
  position: absolute;
  margin: 0 4px;
}
.button--opener span:nth-child(1) {
  top: calc(50% - 6px);
}
.button--opener span:nth-child(2) {
  top: 50%;
}
.button--opener span:nth-child(3) {
  top: calc(50% + 6px);
}

.no-js .button--opener {
  display: none;
}

.site-footer {
  display: none;
  font-size: 12px;
  padding-top: 100px;
  padding-bottom: 100px;
}
.site-footer .footer__block--logo {
  text-align: center;
}
.site-footer .footer__block--logo img {
  width: 342px;
  max-width: 90vw;
}

@media screen and (min-width: 992px) {
  .site-footer {
    display: initial;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .footer__inner {
    max-width: 1076px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer__blocks {
    display: flex;
    gap: 50px;
  }
  .footer__block--logo {
    margin-right: auto;
  }
  .footer__block--links {
    text-align: left;
    font-weight: 600;
    min-width: 10em;
  }
  .footer__block--links li > a {
    padding-top: 1ex;
    padding-bottom: 1ex;
  }
  .site-logo {
    width: 342px;
  }
}
body:not(.has-drawer) .site-menu {
  display: none;
}

@media (max-width: 991px) {
  body.has-drawer {
    overflow: hidden;
  }
}
.site-menu {
  position: fixed;
  z-index: 1045;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
}
.site-menu li {
  margin-top: 1em;
  margin-bottom: 1em;
}

.site-menu__spacer {
  min-width: 2rem;
  flex-grow: 1;
}

.site-menu__inner {
  overflow-x: hidden;
  overflow-y: scroll;
  padding: 1rem;
  flex-grow: 1;
  max-width: 380px;
  margin-left: auto;
  background-color: #fff;
}

.site-menu__buttons {
  margin-top: 1.5rem;
}
.site-menu__buttons ul > :nth-child(1) {
  --button-fg: var(--color-accent-1);
  --button-bg: #fff;
  --button-border: var(--color-accent-1);
}
.site-menu__buttons ul > :nth-child(2) {
  --button-bg: var(--color-accent-2);
}
.site-menu__buttons ul > :nth-child(3) {
  --button-bg: var(--color-accent-1);
}
.site-menu__buttons ul a {
  text-decoration: none;
  color: var(--button-fg, #fff);
  background: var(--button-bg);
  border: 2px solid var(--button-border, var(--button-bg));
  border-radius: 5px;
  font-weight: 600;
  margin: 0 6px;
  min-width: 130px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.4) 2px 2px 1px 0;
}
.site-menu__buttons ul a:hover {
  opacity: 0.8;
  box-shadow: rgba(0, 0, 0, 0.4) 2px 2px 3px 0;
}
.site-menu__buttons a {
  padding-top: 1ex;
  padding-bottom: 1ex;
}

@media screen and (min-width: 992px) {
  .site-menu, .site-menu.open {
    display: none;
  }
}


