@charset "UTF-8";
/* CSS Document */
/* Body Html Fonts
------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
:root {
  interpolate-size: allow-keywords;
}

html {
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-size: 14px;
  background-color: #FFF;
}
@media screen and (max-width: 700px) {
  html {
    font-size: 13px;
  }
}

body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  position: relative;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #000;
  line-height: 1.8;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.06em;
}
body.fixed {
  position: fixed;
}
body a {
  color: #2a90cd;
  text-decoration: none;
  transition: color 0.3s ease;
}
body a:hover {
  text-decoration: underline;
}
body a img {
  transition: opacity 0.3s ease;
  backface-visibility: hidden;
}
body a img:hover {
  opacity: 0.7;
}
body img, body picture {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
body iframe {
  vertical-align: top;
}
body .wrap {
  width: 1100px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
body ::selection {
  background: rgba(42, 144, 205, 0.2); /* Safari */
}
body ::-moz-selection {
  background: rgba(42, 144, 205, 0.2); /* Firefox */
}

/* header
------------------------------------------------------------*/
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  z-index: 10;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 38px 60px 22px;
  box-sizing: border-box;
  background: #FFF;
}
header .head-logo {
  margin-right: auto;
}
header .head-logo .tagline {
  font-size: 12px;
  font-size: 0.8571428571rem;
  font-weight: normal;
  margin-bottom: 5px;
  margin-top: -20px;
}
header .head-logo a {
  display: block;
  line-height: 0;
}
header .head-nav {
  display: flex;
}
header .head-nav ul {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 48px;
}
header .head-nav ul li {
  font-size: 15px;
  font-size: 1.0714285714rem;
  font-weight: 500;
}
header .head-nav ul li a {
  color: #000;
}
header .head-menu, header .head-hidden {
  display: none;
}
@media screen and (min-width: 701px) and (max-width: 1100px) {
  header {
    padding-left: 20px;
    padding-right: 20px;
  }
  header .head-nav ul {
    gap: 20px;
  }
  header .head-nav ul li {
    font-size: 14px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 700px) {
  header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    padding: 0 0 0 10px;
  }
  header .head-logo {
    position: relative;
    z-index: 4;
  }
  header .head-logo .tagline {
    margin-top: -5px;
    font-size: 11px;
    font-size: 0.7857142857rem;
  }
  header .head-logo img {
    width: 150px;
    height: 30px;
  }
  header .head-nav {
    display: none;
  }
  header .head-menu {
    margin-left: auto;
    display: flex;
    -webkit-box-orient: vertical;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: 0;
    height: 60px;
    width: 60px;
    text-align: center;
    box-sizing: border-box;
    z-index: 4;
    cursor: pointer;
    overflow: hidden;
    background: #000;
  }
  header .head-menu span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 0 auto;
    background-color: #FFF;
    transition: all 0.3s ease;
  }
  header .head-menu span:last-child {
    margin-bottom: 0;
  }
  header .head-menu span.top {
    transform: translateY(-8px);
  }
  header .head-menu span.middle {
    margin-top: -2px;
    left: 0;
    position: relative;
  }
  header .head-menu span.bottom {
    margin-top: -2px;
    transform: translateY(8px);
  }
  header .head-hidden {
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0px;
    width: 200px;
    height: 100%;
    right: 0;
    display: block;
    transform: translateX(100%);
    z-index: 2;
    pointer-events: none;
    background: #FFF;
  }
  header .head-hidden nav {
    display: block;
    padding-top: 60px;
  }
  header .head-hidden nav ul {
    display: block;
  }
  header .head-hidden nav ul li {
    border-top: 1px solid #ddd;
  }
  header .head-hidden nav ul li a {
    display: block;
    padding: 10px 15px;
  }
  header.active .head-menu .middle {
    opacity: 0;
    left: 20px;
  }
  header.active .head-menu .top {
    transform: rotate(-45deg);
    transform-origin: center center;
  }
  header.active .head-menu .bottom {
    transform: rotate(45deg);
    transform-origin: center center;
  }
  header.active .head-hidden {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }
}

/* footer
------------------------------------------------------------*/
footer {
  background: #444444;
  color: #FFF;
  padding: 100px 60px 40px;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 40px;
}
footer .foot-logo {
  margin-right: 80px;
}
footer .foot-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}
footer .foot-nav li {
  font-size: 13px;
  font-size: 0.9285714286rem;
  font-weight: 500;
}
footer .foot-nav li a {
  color: #FFF;
}
footer .foot-bottom {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 30px;
}
footer .foot-bottom a {
  font-size: 13px;
  font-size: 0.9285714286rem;
  color: #FFF;
}
footer .foot-bottom .copy {
  font-size: 12px;
  font-size: 0.8571428571rem;
  color: #CCCCCC;
}
@media screen and (min-width: 701px) and (max-width: 1100px) {
  footer {
    padding: 80px 40px 30px;
  }
  footer .foot-logo {
    margin-right: 40px;
  }
  footer .foot-nav {
    gap: 25px;
  }
}
@media screen and (max-width: 700px) {
  footer {
    padding: 20px;
    row-gap: 20px;
  }
  footer .foot-logo {
    margin-right: 0;
    width: 100%;
    text-align: center;
  }
  footer .foot-nav {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    gap: 15px;
    row-gap: 10px;
  }
  footer .foot-bottom {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 15px;
    row-gap: 10px;
  }
}

html {
  margin-top: 0 !important;
}

#body_wrap {
  padding-top: 100px;
}
@media screen and (max-width: 700px) {
  #body_wrap {
    padding-top: 60px;
  }
}

.single .p-breadcrumb__item:last-child > span.p-breadcrumb__text {
  display: inline-flex;
}

#wpadminbar {
  -ms-filter: "alpha( opacity=20 )";
  filter: alpha(opacity=20);
  opacity: 0.2;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#wpadminbar:hover {
  -ms-filter: "alpha( opacity=100 )";
  filter: alpha(opacity=100);
  opacity: 1;
}
