@charset "UTF-8";
/*!
 * copyright grindworks inc.
 * theme name:Cosmo
 * author:udagawa/grindworks inc.
 * version:1.0.0
 * releaseDate:2024-11-17
 */
@media (prefers-color-scheme: light) {
  body:not(.dark-mode) {
    --bg-color: #fff;
    --inverse-bg-color: #0f0f0f;
    --speech-bg-color: #eaf2fc;
    --breadcrumb-color: rgba(69,230,149, 0.1);
    --toc-color: rgba(255,242,168,0.2);
    --header-color: rgba(254, 254, 254, 0.94);
    --footer-color: #fafafa;
    --cosmo-color: #3dcc85;
    --text-color: #333366;
    --inverse-text-color: #fff;
    --cosmo-white-color: #45e695;
    --border-color: #ccc;
    --tags-color: #45e695;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --icon-color: #000;
  }
}
@media (prefers-color-scheme: dark) {
  body:not(.light-mode) {
    --bg-color: #0f0f0f;
    --inverse-bg-color: #fff;
    --speech-bg-color: #fff;
    --breadcrumb-color: rgba(0, 0, 0, 0.1);
    --toc-color: rgba(0, 0, 0, 0.5);
    --header-color: rgba(0, 0, 0, 0.94);
    --footer-color: #040404;
    --cosmo-color: #0675e4;
    --text-color: #fff;
    --inverse-text-color: #000;
    --cosmo-white-color: #fff;
    --border-color: #444;
    --tags-color: #7fbfff;
    --shadow-color: rgba(255, 255, 255, 0.1);
    --icon-color: #fff;
  }
}
.light-mode {
  --bg-color: #fff;
  --inverse-bg-color: #0f0f0f;
  --speech-bg-color: #eaf2fc;
  --breadcrumb-color: rgba(69,230,149, 0.1);
  --toc-color: rgba(255,242,168,0.2);
  --header-color: rgba(254, 254, 254, 0.94);
  --footer-color: #fafafa;
  --cosmo-color: #3dcc85;
  --text-color: #333366;
  --inverse-text-color: #fff;
  --cosmo-white-color: #45e695;
  --border-color: #ccc;
  --tags-color: #45e695;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --icon-color: #000;
}

.dark-mode {
  --bg-color: #0f0f0f;
  --inverse-bg-color: #fff;
  --speech-bg-color: #fff;
  --breadcrumb-color: rgba(255, 255, 255, 0.1);
  --toc-color: rgba(0, 0, 0, 0.3);
  --header-color: rgba(0, 0, 0, 0.94);
  --footer-color: #040404;
  --cosmo-color: #0580fb;
  --text-color: #fff;
  --inverse-text-color: #000;
  --cosmo-white-color: #fff;
  --border-color: #444;
  --tags-color: #1986f3;
  --shadow-color: rgba(255, 255, 255, 0.1);
  --icon-color: #fff;
}

.theme-controls {
  position: fixed;
  top: 50%;
  right: 0.7rem;
  display: flex;
  flex-direction: column;
  transform: translateY(-50%);
  gap: 0.6rem;
  z-index: 0;
}
.theme-controls button {
  font-size: 1.2rem;
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-color);
  border: none;
  border-radius: 50%;
  background-color: var(--bg-color);
  box-shadow: 0 0 0.5em 0.04em var(--shadow-color);
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
  opacity: 0.5;
}
.theme-controls button:hover {
  border: none;
  box-shadow: 0 0 0.5em 0.04em var(--shadow-color);
  opacity: 1;
}
.theme-controls button:active {
  border: none;
  box-shadow: 0 0 0.5em 0.04em var(--shadow-color);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
}

body {
  font-family: "M PLUS 1p", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
 font-weight: 400;
  font-style: normal;
  line-height: 1.8;
  min-height: 100vh;
  margin: 0;
  letter-spacing: 0.01em;
  word-break: break-word;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
ul,
dl,
dd {
  margin-block-start: 0;
  margin-block-end: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

fieldset {
  padding: 0;
  border: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img,
figure,
picture {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

body {
  transition: background-color 0.3s, color 0.3s;
  color: var(--text-color);
  background-color: var(--bg-color);
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.inner {
  width: 100%;
}
.innerBox {
  width: 96%;
  max-width: 1180px;
  margin: 0 auto;
}

.radius {
  border-radius: 0.5em;
}

a {
  transition: all 0.3s;
  text-decoration: none;
  color: var(--cosmo-color);
}
a[href^="tel:"] {
  cursor: default;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  a[href^="tel:"] {
    cursor: pointer;
    pointer-events: auto;
  }
}
a.disabled {
  pointer-events: none;
}
a:visited {
  color: var(--cosmo-color);
}
a:hover {
  transition: all 0.3s;
  text-decoration: none;
  opacity: 0.7;
}

figcaption {
  font-size: 1.2em;
  font-weight: bold;
  padding: 0.4em;
  text-align: center;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 767px) {
  p img.left, p img.right, p img.center {
    display: inline-block;
    max-width: 50%;
  }
}
p img.border {
  border: 1px solid var(--border-color);
}
p img.left {
  float: left;
  margin-right: 1em;
}
p img.right {
  float: right;
  margin-left: 1em;
}
p img.center {
  display: block;
  margin-right: auto;
  margin-bottom: 0.5em;
  margin-left: auto;
}

table {
  width: 100%;
  margin-bottom: 2em;
  border-collapse: collapse;
  border-color: inherit;
}
@media only screen and (max-width: 992px) {
  table.responsive th,
  table.responsive td {
    display: block;
    width: 100%;
  }
}
table th,
table td {
  box-sizing: border-box;
}
table caption {
  font-size: 1.2em;
  font-weight: bold;
  padding: 0.4em;
  text-align: center;
  letter-spacing: 0.1em;
}
table th {
  font-weight: normal;
  padding: 0.6em 1.2em;
  text-align: center;
  border: solid 1px var(--border-color);
  background: var(--bg-color);
}
table td {
  padding: 0.6em 1.2em;
  border: solid 1px var(--border-color);
  background: var(--bg-color);
}

hr {
  margin: 2em 0;
  border-top: 1px solid var(--border-color);
  border-right: none;
  border-bottom: none;
  border-left: none;
  background: none;
}
hr.spacer {
  border-color: transparent;
}
hr.solid {
  border-top-style: solid;
}
hr.dotted {
  border-top-style: dotted;
}
hr.dashed {
  border-top-style: dashed;
}

.sponly,
.ssponly {
  display: none !important;
}

@media only screen and (max-width: 767px) {
  .pconly {
    display: none !important;
  }
  .sponly {
    display: block !important;
  }
}
@media only screen and (max-width: 576px) {
  .ssponly {
    display: block !important;
  }
}
.btn {
  display: flex;
  margin-top: 2em;
  list-style-type: none;
  align-items: center;
  gap: 0.6em;
}
.btn a {
  display: flex;
  padding: 0.5em 1.5em;
  color: var(--cosmo-color);
  background-color: #a8a8a8;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.1);
  justify-content: center;
  align-items: center;
  border-radius: 0.3em;
}
.btn a:hover {
  box-shadow: 0 0.1em 1em 0.1em var(--shadow-color);
}

#scrollToTopBtn {
  position: fixed;
  z-index: 999;
  right: 0.5em;
  bottom: 0.5em;
  display: none;
  padding: 0.5em;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
  opacity: 0.7;
  color: #fff;
  border: none;
  background-color: #45e695;
  border-radius: 0.3em;
}
#scrollToTopBtn:hover {
  opacity: 1;
}
#scrollToTopBtn span {
  display: flex;
  align-items: center;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 600, "GRAD" 0, "opsz" 24;
}

.icons {
  display: flex;
  gap: 0.3em;
  align-items: flex-start;
}
.icons.folder::before {
  content: "\e2c7";
  font-family: "Material Symbols Outlined";
  font-size: inherit;
  display: flex;
  align-items: center;
}
.icons.refresh::before {
  content: "\e5d5";
  font-family: "Material Symbols Outlined";
  font-size: inherit;
  display: flex;
  align-items: center;
}
.icons.calendar::before {
  content: "\ebcc";
  font-family: "Material Symbols Outlined";
  font-size: inherit;
  display: flex;
  align-items: center;
}
.icons.timer::before {
  content: "\e8b5";
  font-family: "Material Symbols Outlined";
  font-size: inherit;
  display: flex;
  align-items: center;
}
.icons.tag {
  gap: 0.1em;
}
.icons.tag::before {
  font-weight: normal;
  line-height: inherit;
  content: "\e9ef";
  font-family: "Material Symbols Outlined";
  font-size: inherit;
  display: flex;
  align-items: center;
}

section.contents {
  display: flex;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 3em 1em 5em;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  section.contents {
    flex-direction: column;
    padding: 3vw 2vw 5vw;
  }
}

header {
  position: sticky;
}

main {
  width: 65%;
}

aside {
  width: 32%;
}

article {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  main,
  aside {
    width: 100%;
  }
  aside {
    margin-top: 10vw;
  }
}
.header--001 {
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--header-color);
  box-shadow: 0 0 0.8em 0.05em rgba(0, 0, 0, 0.15);
}
.header--001 .inner {
  position: relative;
  display: flex;
  padding: 0.6em 1.2em;
  justify-content: space-between;
  align-items: center;
  gap: 1em 0;
}
.header--001 .page-title {
  font-size: 1.5em;
  display: inline-flex;
  letter-spacing: 0.05em;
  flex: 0.3;
}
@media only screen and (max-width: 1200px) {
  .header--001 .page-title {
    flex: 0.4;
  }
}
@media only screen and (max-width: 992px) {
  .header--001 .page-title {
    flex: 0.5;
  }
}
@media only screen and (max-width: 767px) {
  .header--001 .page-title {
    flex: 0.8;
  }
}
.header--001 .page-title img {
  display: inline-block;
  max-width: 400px;
  height: auto;
  margin-right: 0.1em;
}
.header--001 .page-title a {
  display: inline-flex;
  color: var(--text-color);
  align-items: center;
}
.header--001 .page-title a:hover {
  opacity: 1;
}
.header--001 .page-title a:hover strong {
  transition-duration: 0.5s;
  opacity: 0.8;
}

.navigation {
  flex: 0.5;
}
@media only screen and (max-width: 1200px) {
  .navigation {
    flex: 0.5;
  }
}
@media only screen and (max-width: 992px) {
  .navigation {
    flex: 0.4;
  }
}
@media only screen and (max-width: 767px) {
  .navigation {
    flex: 0.2;
  }
}
.navigation .ul-level-1 {
  display: flex;
  text-align: right;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5em 1.6em;
}
.navigation .ul-level-1 li {
  list-style: none;
}
.navigation .ul-level-1 li a {
  color: var(--text-color);
}
.navigation .li-level-1 {
  position: relative;
}
.navigation .li-level-1.current a {
  color: var(--text-color);
}
.navigation .bs-global-menu-sub {
  position: absolute;
  z-index: 1000;
  top: 100%;
  right: 0;
  display: none;
  visibility: hidden;
  padding-top: 0.3em;
  opacity: 0;
}
.navigation .li-level-1:hover .bs-global-menu-sub {
  display: block;
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}
.navigation .ul-level-2 {
  line-height: 1.3;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
.navigation .ul-level-2 a {
  font-weight: normal;
  display: block;
  padding: 0.8em 1.2em;
}
.navigation .ul-level-2 a:link, .navigation .ul-level-2 a:visited {
  color: var(--text-color);
}
.navigation .ul-level-2 .li-level-2:nth-child(1) {
  animation-delay: 0s;
}
.navigation .ul-level-2 .li-level-2:nth-child(2) {
  animation-delay: 0.1s;
}
.navigation .ul-level-2 .li-level-2:nth-child(3) {
  animation-delay: 0.2s;
}
.navigation .ul-level-2 .li-level-2:nth-child(4) {
  animation-delay: 0.3s;
}
.navigation .ul-level-2 .li-level-2:nth-child(5) {
  animation-delay: 0.4s;
}
.navigation .ul-level-2 .li-level-2:nth-child(6) {
  animation-delay: 0.5s;
}
.navigation .ul-level-2 .li-level-2:nth-child(7) {
  animation-delay: 0.6s;
}
.navigation .ul-level-2 .li-level-2:nth-child(8) {
  animation-delay: 0.7s;
}
.navigation .ul-level-2 .li-level-2:nth-child(9) {
  animation-delay: 0.8s;
}
.navigation .ul-level-2 .li-level-2:nth-child(10) {
  animation-delay: 0.9s;
}
.navigation .li-level-2 {
  width: 260px;
  transform: translateX(-100%);
  animation: fadeInLeft 0.5s ease-out forwards;
  opacity: 0;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-color);
  box-shadow: 0.2em 0.2em 0.5em 0.04em var(--shadow-color);
}
.navigation .li-level-2 a {
  font-weight: normal;
  display: flex;
  justify-content: space-between;
}
.navigation .li-level-2 a::after {
  margin-left: 1em;
  content: "\e5cc";
  font-family: "Material Symbols Outlined";
  font-size: inherit;
  display: flex;
  align-items: center;
}
.navigation .li-level-2:last-child {
  border-bottom: none;
}
@keyframes fadeInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media only screen and (max-width: 767px) {
  .header--001 .fadeLayer {
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100vw;
    height: 100vh;
    cursor: pointer;
    transition-duration: 0.4s;
    opacity: 0;
    background-color: #000;
  }
  .navigation {
    font-size: 0.8em;
    position: fixed;
    z-index: 4000;
    top: 0;
    right: -80%;
    overflow: hidden;
    overflow-y: auto;
    width: 80%;
    max-width: 480px;
    height: 100vh;
    padding: 4em 1.2em;
    transition-duration: 0.4s;
    background-color: var(--bg-color);
  }
  .navigation .bs-widget {
    margin-bottom: 2em;
  }
  .navigation .bs-widget h2 {
    font-size: 1.2em;
    letter-spacing: 0.2em;
    color: var(--text-color);
    border-bottom: 3px solid var(--border-color);
  }
  .navigation .ul-level-1 {
    position: relative;
    width: 100%;
    text-align: left;
  }
  .navigation .ul-level-1 li.sns {
    width: 100%;
    margin-left: 0;
    padding: 1.5em 0;
    text-align: left;
  }
  .navigation .ul-level-1 li.sns .sns-list {
    display: flex;
    width: 100%;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5em;
  }
  .navigation .ul-level-1 li.sns .sns-list li {
    text-align: center;
  }
  .navigation .ul-level-1 li.sns .sns-label {
    display: none;
    color: #fff;
  }
  .navigation .ul-level-1 li.sns .sns-icon {
    display: inline-block;
    width: 15px;
    height: auto;
  }
  .navigation .ul-level-1 .li-level-1 {
    width: 100%;
    margin-left: 0;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
  }
  .navigation .ul-level-1 .li-level-1 a {
    display: block;
    padding: 0.8em 0.2em;
    color: var(--text-color);
  }
  .navigation .ul-level-1 .bs-global-menu-sub {
    position: relative;
    top: 0;
    display: block;
    visibility: visible;
    transition: max-height 0.3s ease-out;
    opacity: 1;
  }
  .navigation .ul-level-1 .bs-global-menu-sub.active {
    display: block;
  }
  .navigation .ul-level-1 .li-level-1:hover .bs-global-menu-sub {
    display: block;
  }
  .navigation .ul-level-1 .ul-level-2 a {
    display: block;
    padding: 1em;
  }
  .navigation .ul-level-1 .ul-level-2 a:link, .navigation .ul-level-1 .ul-level-2 a:visited {
    color: var(--text-color);
  }
  .navigation .ul-level-1 .li-level-2 {
    width: 100%;
    border-bottom: 1px dotted var(--border-color);
    box-shadow: none;
  }
  .navigation .ul-level-1 .li-level-2 a {
    display: flex;
    justify-content: flex-start;
  }
  .navigation .ul-level-1 .li-level-2 a::after {
    content: none;
  }
  .navigation .ul-level-1 .li-level-2 a::before {
    margin-right: 1em;
    margin-left: -1em;
    content: "\e5cc";
    font-family: "Material Symbols Outlined";
    font-size: inherit;
    display: flex;
    align-items: center;
  }
  .navigation .ul-level-1 .li-level-2:first-child {
    border-top: 1px dotted var(--border-color);
  }
  .navigation .ul-level-1 .li-level-2:last-child {
    border-bottom: none;
  }
  @keyframes fadeInTop {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  .navToggle {
    position: fixed;
    z-index: 5000;
    top: 15px;
    right: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background-color: transparent;
    border-radius: 50%;
  }
  .navToggle .buns {
    position: absolute;
    top: 20px;
    right: 0;
    width: 20px;
    height: 2px;
    transition-duration: 0.4s;
    background-color: var(--inverse-bg-color);
  }
  .navToggle .bunsTop {
    top: 15px;
  }
  .navToggle .bunsBottom {
    top: 25px;
  }
  .nav-open .navigation {
    right: 0;
  }
  .nav-open .fadeLayer {
    visibility: visible;
    opacity: 0.8;
  }
  .nav-open .bunsTop {
    right: 50%;
  }
  .nav-open .bunsCenter {
    right: 25%;
  }
  .nav-open .bunsBottom {
    right: 0;
  }
}
.footer--001 {
  font-weight: normal;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2em 1em;
  text-align: center;
  color: var(--text-color);
  background-color: var(--footer-color);
  align-items: center;
}
.footer--001 a {
  opacity: 1;
}
.footer--001 a:hover {
  opacity: 1;
}
.footer--001 .title a {
  transition: all 0.6s;
  white-space: normal;
}
.footer--001 .copyright {
  font-weight: normal;
  margin-top: 0.8em;
  word-break: break-all;
}

.sns-list {
  display: flex;
  margin-top: 0.5em;
  list-style-type: none;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
.sns-list li {
  position: relative;
  display: inline-block;
  color: var(--icon-color);
}
.sns-list li img {
  fill: currentColor;
}
.sns-list li span.sns-label {
  font-size: 0.8em;
  position: absolute;
  top: -36px;
  left: 50%;
  display: flex;
  visibility: hidden;
  padding: 0.3em 0.8em 0.2em;
  transition: opacity 0.3s;
  transform: translateX(-50%);
  white-space: nowrap;
  opacity: 0;
  color: var(--text-color);
  background-color: var(--bg-color);
  box-shadow: 0 0.1em 0.5em 0.1em var(--shadow-color);
  border-radius: 0.3em;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .sns-list li span.sns-label {
    display: none;
  }
}
.sns-list li span.sns-label::before {
  position: absolute;
  bottom: -6px;
  width: 10px;
  height: 8px;
  content: "";
  background: inherit;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.sns-list a:hover > span.sns-label {
  visibility: visible;
  opacity: 1;
}

.sns-icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%);
  opacity: 0.9;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
@media (prefers-color-scheme: dark) {
  body:not(.light-mode) .sns-icon {
    filter: brightness(0) saturate(100%) invert(1);
  }
}

.aside--001 {
  line-height: 1.4;
  position: relative;
  display: flex;
  flex-direction: column;
  color: var(--text-color);
  align-items: center;
}
.aside--001 .aside_inner {
  width: 100%;
}
.aside--001 h2 {
  font-size: 1em;
  font-weight: bold;
  position: relative;
  margin-bottom: 1em;
  padding: 0.6em 0.1em;
  color: var(--text-color);
  border-bottom: 2px solid #a8a8a8;
}
.aside--001 h2::before {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40%;
  height: 2px;
  content: "";
  background-color: var(--cosmo-color);
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  font-size: 1.2em;
  margin-top: 1em;
  margin-bottom: 1em;
}
.content p,
.content pre,
.content table,
.content figure,
.content blockquote,
.content ol,
.content ul,
.content dl,
.content dd {
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.content button {
  margin: 0.6em;
}
.content .page-content {
  margin-bottom: 1.5em;
  padding-bottom: 1.5em;
  border-bottom: 1px dotted var(--border-color);
}
.content .page-heading,
.content .bs-blog-title,
.content .bs-blog-post-title,
.content .bs-blog-category-title,
.content .contents-head,
.content .bs-contents-title {
  font-size: 1.8em;
  margin: 0;
  border-bottom: 2px solid var(--text-color);
  display: flex;
  color: var(--text-color);
  line-height: 1.4;
  padding: 0.7em 0;
  letter-spacing: 0.05em;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .content .page-heading,
  .content .bs-blog-title,
  .content .bs-blog-post-title,
  .content .bs-blog-category-title,
  .content .contents-head,
  .content .bs-contents-title {
    font-size: 1.6em;
    line-height: 1.4;
    padding: 0.5em 0.1em;
    letter-spacing: 0.05em;
  }
}
.content ul,
.content ol {
  margin-left: 1.3em;
}
.content ul li,
.content ol li {
  margin-bottom: 0.5em;
}
.content ul li > ul,
.content ol li > ul {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  margin-left: 1.3em;
}
.content ul li > ol,
.content ol li > ol {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  margin-left: 1.4em;
}
.content ul {
  list-style-type: disc;
}
.content ol {
  list-style-type: decimal;
}
.content dl dt {
  font-weight: bold;
}
.content dl dd {
  margin-bottom: 0.5em;
}
.content ol p,
.content ul p {
  margin-top: 0;
  margin-bottom: 0;
}
.content .instagram-media,
.content .instagram,
.content .twitter-tweet,
.content .twitter {
  margin: 1em 0;
}
.content .youtube {
  position: relative;
  width: 100%;
  margin: 1em 0;
  padding-top: 56.25%;
}
.content .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.content h1 {
  display: flex;
  color: var(--text-color);
  line-height: 1.4;
  padding: 0.7em 0;
  letter-spacing: 0.05em;
  align-items: center;
}
.content h2 {
  color: #fff;
  background-color: var(--cosmo-white-color);
  line-height: 1.4;
  padding: 0.6em 1.2em;
  letter-spacing: 0.05em;
}
.content h3 {
  color: var(--text-color);
  border-bottom: 2px solid var(--cosmo-white-color);
  line-height: 1.4;
  padding: 0.6em 0;
  letter-spacing: 0.05em;
}
.content h4 {
  border-bottom: 1px solid var(--cosmo-white-color);
  line-height: 1.4;
  padding: 0.4em 0;
  letter-spacing: 0.05em;
}
.content h5 {
  border-bottom: 1px dashed var(--cosmo-white-color);
  line-height: 1.4;
  padding: 0.4em 0;
  letter-spacing: 0.05em;
}
.content h6 {
  border-bottom: 1px dotted var(--cosmo-white-color);
  line-height: 1.4;
  padding: 0.4em 0;
  letter-spacing: 0.05em;
}
.content blockquote {
  position: relative;
  padding: 2em 3em 1em 4em;
  border-left: 5px solid var(--cosmo-color);
  background-color: rgba(69,230,149, 0.1);
}
.content blockquote::before {
  position: absolute;
  top: 0.8em;
  left: 1em;
  display: inline-block;
  width: 1.0em;
  height: 1.0em;
  content: "";
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%232589d0%22%20d%3D%22M21.8%2012H18V9c0-1.7%201.3-3%203-3h.4c.6%200%201.1-.5%201.1-1.1V2.6c0-.6-.5-1.1-1.1-1.1H21c-4.1%200-7.5%203.4-7.5%207.5v11.2c0%201.2%201%202.2%202.2%202.2h6c1.2%200%202.2-1%202.2-2.2v-6C24%2013%2023%2012%2021.8%2012zM8.2%2012H4.5V9c0-1.7%201.3-3%203-3h.4C8.5%206%209%205.5%209%204.9V2.6c0-.6-.5-1.1-1.1-1.1h-.4C3.4%201.5%200%204.9%200%209v11.2c0%201.2%201%202.2%202.2%202.2h6c1.2%200%202.2-1%202.2-2.2v-6c.1-1.2-.9-2.2-2.2-2.2z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
}
.content blockquote cite {
  font-size: 0.8em;
  display: block;
  text-align: right;
  color: #a8a8a8;
}
.content blockquote,
.content [class*=box-] {
  margin-top: 1.5em;
  padding: 1.5em;
}
.content .box-border {
  border: 1px solid var(--border-color);
}
.content .box-border2 {
  border: 4px double var(--border-color);
}
.content .box-bg {
  color: var(--inverse-text-color);
  background: var(--inverse-bg-color);
}
.content .box-paper {
  position: relative;
  color: #000;
  background: #e6fff7;
}
.content .box-paper::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  border-width: 0 0 1.2em 1.2em;
  border-style: solid;
  border-color: #ccffef var(--bg-color) var(--bg-color) #ccffef;
}
.content .box-bold {
  font-weight: bold;
  border: 3px solid var(--inverse-bg-color);
}
.content .box-brackets {
  position: relative;
}
.content .box-brackets:before, .content .box-brackets:after {
  position: absolute;
  display: inline-block;
  width: 2em;
  height: 2em;
  content: "";
}
.content .box-brackets:before {
  top: 0;
  left: 0;
  border-top: 1px solid var(--inverse-bg-color);
  border-left: 1px solid var(--inverse-bg-color);
}
.content .box-brackets:after {
  right: 0;
  bottom: 0;
  border-right: 1px solid var(--inverse-bg-color);
  border-bottom: 1px solid var(--inverse-bg-color);
}
.content .box-question,
.content .box-exclamation {
  position: relative;
  padding: 1em 1em 1em 4em;
  color: #000;
  border-radius: 0.3em;
}
.content .box-question {
  background-color: #e8f9ff;
}
.content .box-exclamation {
  background-color: #feefee;
}
.content .box-question::before,
.content .box-exclamation::before {
  font-size: 1em;
  font-weight: 700;
  line-height: 2em;
  position: absolute;
  top: 1em;
  left: 1em;
  width: 2em;
  height: 2em;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  border-radius: 100vh;
}
.content .box-question::before {
  content: "?";
  background: #07aee6;
}
.content .box-exclamation::before {
  content: "!";
  background: #ff6600;
}
.content .box-point {
  position: relative;
  margin-top: 2em;
  border: 2px solid #c52b1a;
  border-radius: 0.3em;
}
.content .box-point::before {
  font-size: 1.2em;
  font-weight: bold;
  position: absolute;
  top: -0.7em;
  left: 1em;
  padding: 0 0.8em;
  content: "POINT";
  color: #c52b1a;
  background-color: var(--bg-color);
}
.content .box-text {
  position: relative;
  margin-top: 2em;
  border: 2px solid #c52b1a;
  border-radius: 0.3em;
}
.content .box-text strong {
  font-size: 1.2em;
  font-weight: bold;
  position: absolute;
  top: -0.7em;
  left: 1em;
  padding: 0 0.8em;
  color: #c52b1a;
  background-color: var(--bg-color);
}
.content .annotation {
  font-size: 0.8em;
  display: block;
  color: rgba(255, 255, 255, 0.8);
}
.content .marker-yellow {
  color: var(--text-color);
  background: linear-gradient(transparent 70%, rgba(255, 255, 11, 0.6) 70%);
}
.content .marker-yellow-all {
  color: #000;
  background: linear-gradient(transparent 0%, #ffff0b 0%);
}
.content .marker-blue {
  color: var(--text-color);
  background: linear-gradient(transparent 70%, rgba(29, 142, 255, 0.6) 70%);
}
.content .marker-blue-all {
  color: #fff;
  background: linear-gradient(transparent 0%, #1d8eff 0%);
}
.content .marker-pink {
  color: var(--text-color);
  background: linear-gradient(transparent 70%, rgba(255, 11, 129, 0.6) 70%);
}
.content .marker-pink-all {
  color: #fff;
  background: linear-gradient(transparent 0%, #ff0b81 0%);
}

.related-page {
  margin-top: 3em;
}
.related-page .related-lists {
  display: flex;
  width: 100%;
  margin: 1em 0;
  color: var(--cosmo-color);
  flex-wrap: wrap;
  gap: 2%;
}
.related-page .related-lists .related-link {
  display: flex;
  flex-direction: column;
  width: 32%;
  margin-top: 1em;
}
@media only screen and (max-width: 767px) {
  .related-page .related-lists .related-link {
    width: 49%;
  }
}
.related-page .related-lists .related-link .related-img {
  position: relative;
  overflow: hidden;
  height: auto;
  max-height: 12em;
}
.related-page .related-lists .related-link .related-img:hover {
  opacity: 0.7;
}
.related-page .related-lists .related-link .related-img img {
  width: 100%;
  height: auto;
}
.related-page .related-lists .related-link .related-title {
  line-height: 1.4;
  margin-top: 0.3em;
}
.related-page .related-lists .related-link .related-title a {
  font-size: 0.9em;
  font-weight: bold;
  margin-top: 0.2em;
  color: var(--text-color);
}
.related-page .related-lists .related-link .related-timestamp {
  font-size: 0.8em;
  display: flex;
  margin-top: 0.2em;
  color: var(--text-color);
  align-items: center;
}
.related-page .related-lists .related-link .related-timestamp::before {
  margin-right: 0.2em;
  content: "\ebcc";
  font-family: "Material Symbols Outlined";
  font-size: inherit;
  display: flex;
  align-items: center;
}

.breadcrumb--001 {
  font-size: 0.8em;
  display: flex;
  overflow-x: scroll;
  margin-bottom: 1em;
  margin-left: 0;
  padding: 0.5em 1em;
  list-style: none;
  color: var(--text-color);
  background-color: var(--breadcrumb-color);
}
.breadcrumb--001::-webkit-scrollbar {
  display: none;
}
.breadcrumb--001 li {
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
}
.breadcrumb--001 li:first-child::before {
  margin-right: 0.4em;
  content: "\e88a";
  font-family: "Material Symbols Outlined";
  font-size: inherit;
  display: flex;
  align-items: center;
}
.breadcrumb--001 li:not(:last-child) {
  white-space: nowrap;
}
.breadcrumb--001 a {
  color: var(--text-color);
}
.breadcrumb--001 a:hover {
  opacity: 1;
  color: var(--cosmo-color);
}

code,
pre {
  font-family: "SF Mono", "Fira Code", Menlo, Monaco, monospace;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-wrap: normal;
  word-break: normal;
  -moz-tab-size: 4;
    -o-tab-size: 4;
       tab-size: 4;
  -webkit-hyphens: none;
          hyphens: none;
  color: #fff;
}

:not(pre) > code,
pre {
  background: #000;
}

pre {
  overflow: auto;
  padding: 1em;
  border-radius: 0.3em;
}

code::-moz-selection, pre::-moz-selection {
  background: var(--cosmo-color);
  text-shadow: none;
}

code::selection,
pre::selection {
  background: var(--cosmo-color);
  text-shadow: none;
}

:not(pre) > code {
  font-size: 0.9em;
  overflow: hidden;
  margin: 0 0.2em;
  padding: 0.1em 0.2em;
  white-space: normal;
  border-radius: 0.3em;
}

div.code-toolbar {
  position: relative;
}

pre[class*=language-] {
  padding: 3.2em 1em 1.6em;
  border: none;
  background: #000;
  box-shadow: none;
  border-radius: 0.3em;
}

:not(pre) > code[class*=language-] {
  padding: 0.1em 0.2em 0;
  border: none;
  box-shadow: none;
  border-radius: 0.3em;
}

div.code-toolbar > .toolbar {
  width: 100%;
  opacity: 1;
}

div.code-toolbar > .toolbar > .toolbar-item button {
  position: absolute;
  top: 0.6em;
  right: 0.6em;
  margin: 0;
  opacity: 1;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.2em;
  box-shadow: none;
}
div.code-toolbar > .toolbar > .toolbar-item button:focus, div.code-toolbar > .toolbar > .toolbar-item button:hover {
  transition: opacity 0.3s ease-in-out;
  text-decoration: none;
  opacity: 1;
  color: white;
}
div.code-toolbar > .toolbar > .toolbar-item span {
  position: absolute;
  top: 0.6em;
  left: 1.2em;
  color: #fff;
  border-radius: 0.2em;
}
div.code-toolbar > .toolbar > .toolbar-item span:focus, div.code-toolbar > .toolbar > .toolbar-item span:hover {
  text-decoration: none;
  color: #fff;
}

.animate-on-scroll {
  transition: opacity 1s ease, transform 1s ease;
  opacity: 0;
}
.animate-on-scroll.in-view {
  opacity: 1;
}
.animate-on-scroll.in-view.from-left {
  animation: fromLeft 1s ease forwards;
}
.animate-on-scroll.in-view.from-right {
  animation: fromRight 1s ease forwards;
}
.animate-on-scroll.in-view.from-bottom {
  animation: fromBottom 1s ease forwards;
}
.animate-on-scroll.in-view.scale-up {
  animation: scaleUp 1s ease forwards;
}

@keyframes fromLeft {
  0% {
    transform: translateX(-20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fromRight {
  0% {
    transform: translateX(20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fromBottom {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes scaleUp {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.speech {
  display: flex;
  margin: 2em 0;
  align-items: start;
  gap: 0 20px;
}
.speech :not(pre) > code {
  background: #046cc1;
}
.speech span {
  font-size: 0.8em;
  display: block;
  text-align: center;
}
.speech .face {
  width: 20%;
  max-width: 80px;
}
.speech img {
  width: 100%;
  height: auto;
  border: 1px solid var(--border-color);
  border-radius: 50%;
}
.speech p {
  position: relative;
  width: calc(90% - 2em);
  max-width: 520px;
  padding: 0.8em;
  color: #333366;
  border-radius: 6px;
  background-color: var(--speech-bg-color);
}
.speech p::before {
  position: absolute;
  left: -13px;
  width: 14px;
  height: 25px;
  content: "";
  background-color: var(--speech-bg-color);
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
.speech.left-face {
  justify-content: flex-start;
}
.speech.right-face {
  flex-direction: row-reverse;
  text-align: right;
}
.speech.right-face p::before {
  right: -13px;
  left: auto;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}

  /* Top用ふきだし */
.fuki-br p {
  position: relative;
  padding: 0.6em;
  color: #333366;
  background-color:#dfefff;
  border-radius: 7px;
}
.fuki-br p:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 80%;
  border: 15px solid transparent;
  border-top: 15px solid #dfefff;
  width: 0;
  height: 0;
}

#toc {
  margin: 2em 0;
  color: var(--cosmo-color);
  background-color: var(--toc-color);
}
#toc .toc-title {
  font-weight: bold;
  position: relative;
  padding: 1em 2em;
  cursor: pointer;
}
#toc .toc-title::-moz-selection {
  background: transparent;
}
#toc .toc-title::selection {
  background: transparent;
}
#toc .toc-container {
  line-height: 2;
  margin-top: 0;
  margin-left: 0.7em;
  padding: 0 2.5em 1.2em;
  list-style: disc;
}
#toc .toc-container::-moz-selection {
  background: transparent;
}
#toc .toc-container::selection {
  background: transparent;
}
#toc .toc-container li::-moz-selection {
  background: transparent;
}
#toc .toc-container li::selection {
  background: transparent;
}
#toc .toc-container li > ul {
  margin-top: 0.5em;
  list-style: disc;
}
#toc .toc-container a {
  display: block;
  color: var(--cosmo-color);
  border-bottom: 1px dotted var(--border-color);
}
#toc .toc-container a::-moz-selection {
  background: transparent;
}
#toc .toc-container a::selection {
  background: transparent;
}
#toc[open] {
  transition: all 0.4s;
}
#toc .toc-title:after {
  font-size: 0.8em;
  font-weight: normal;
  margin-left: 0.8em;
  content: "【 表示 】";
}
#toc[open] .toc-title:after {
  content: "【 非表示 】";
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
#authMessage,
#flashMessage,
#AlertMessage,
#BcSystemMessage,
#UpdateMessage {
  font-size: 1em;
  font-weight: normal;
  line-height: 3;
  position: fixed;
  z-index: 9999;
  top: 20%;
  right: 0;
  left: 0;
  display: block;
  margin: 0 0 1em;
  padding: 0.5em;
  transition: opacity 1s ease-out;
  text-align: center;
  letter-spacing: 0.05em;
  opacity: 1;
  color: #fff;
  background-color: rgba(6, 117, 228, 0.8);
}

#ResultMessage {
  font-size: 1.1em;
  font-weight: normal;
  line-height: 1.3;
  margin-top: 1em;
  text-align: center;
  letter-spacing: 0.05em;
  color: var(--cosmo-color);
}

.bca-toolbar {
  opacity: 0.9;
}

.bc-update-info {
  margin-top: 5em;
}
.bc-update-info dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.2em;
}
.bc-update-info dl dt,
.bc-update-info dl dd {
  display: flex;
  margin: 0;
  align-items: center;
}
.bc-update-info dl dt span {
  font-size: 95%;
}
.bc-update-info dl dd {
  margin-right: 1em;
}

.bs-single-post {
  margin-top: 0;
  padding-top: 0;
}
.bs-single-post__meta {
  font-size: 0.86em;
  display: flex;
  padding: 0.4em 0 0.5em;
  border-bottom: 1px dotted var(--border-color);
  gap: 1% 2%;
  align-items: center;
}
.bs-single-post__meta-date {
  display: flex;
  margin-top: auto;
  white-space: nowrap;
}
.bs-single-post__meta-date::before {
  margin-right: 0.2em;
  content: "\ebcc";
  font-family: "Material Symbols Outlined";
  font-size: inherit;
  display: flex;
  align-items: center;
}
.bs-single-post__meta-category {
  z-index: 3;
  display: flex;
  white-space: nowrap;
  color: var(--text-color);
}
.bs-single-post__meta-category:hover {
  opacity: 1;
  color: var(--cosmo-color);
}
.bs-single-post__meta-category::before {
  margin-right: 0.2em;
  content: "\e2c7";
  font-family: "Material Symbols Outlined";
  font-size: inherit;
  display: flex;
  align-items: center;
}
.bs-single-post__eye-catch {
  margin-top: 0;
}
.bs-single-post__eye-catch img {
  width: 100% !important;
  height: 300px;
  object-fit: cover;
}

h2.top-page-header {
  margin-top: 3em;
 background-color: rgba(50,186,64,0.7);
}

.bs-top-post,
.bs-blog-post {
  display: flex;
  width: 100%;
  margin-left: 0;
  flex-wrap: wrap;
  gap: 1em 2%;
}
.bs-top-post__item,
.bs-blog-post__item {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  width: 49%;
  height: auto;
  transition-duration: 0.3s;
}
@media only screen and (max-width: 767px) {
  .bs-top-post__item,
  .bs-blog-post__item {
    width: 100%;
  }
}
.bs-top-post__item img,
.bs-blog-post__item img {
  transition-duration: 0.6s;
}
.bs-top-post__item a,
.bs-blog-post__item a {
  position: relative;
  z-index: 2;
  transition: all 300ms;
  text-decoration: none;
}
.bs-top-post__item:hover,
.bs-blog-post__item:hover {
  cursor: pointer;
  transition-duration: 0.3s;
  opacity: 0.86;
}
.bs-top-post__item:hover img,
.bs-blog-post__item:hover img {
  transition-duration: 0.6s;
  transform: scale(1.1);
}
.bs-top-post__item::before,
.bs-blog-post__item::before {
  background-color: #fff;
}
.bs-top-post__item::after,
.bs-blog-post__item::after {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.bs-top-post__item-eye-catch,
.bs-blog-post__item-eye-catch {
  overflow: hidden;
  width: 100%;
  height: auto;
  margin: 0 auto;
  aspect-ratio: 5/3;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .bs-top-post__item-eye-catch,
  .bs-blog-post__item-eye-catch {
    max-height: none;
  }
}
.bs-top-post__item-eye-catch img,
.bs-blog-post__item-eye-catch img {
  width: 100% !important;
}
.bs-top-post__item-eye-catch:hover,
.bs-blog-post__item-eye-catch:hover {
  opacity: 1;
}
.bs-top-post__item .img-eye-catch,
.bs-blog-post__item .img-eye-catch {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.bs-top-post__item-title,
.bs-blog-post__item-title {
  font-size: 1.4em;
  font-weight: bold;
  line-height: 1.2;
  display: flex;
  margin-bottom: auto;
  padding-bottom: 0.5em;
  align-items: flex-start;
}
.bs-top-post__item-detail,
.bs-blog-post__item-detail {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 0.6em;
  color: var(--text-color);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.bs-top-post__item-info,
.bs-blog-post__item-info {
  font-size: 0.9em;
  display: flex;
  border-bottom: 1px dotted var(--border-color);
  gap: 2%;
  align-items: center;
}
.bs-top-post__item-date,
.bs-blog-post__item-date {
  display: flex;
  margin-top: auto;
  padding: 0.6em 0;
  white-space: nowrap;
  color: var(--text-color);
}
.bs-top-post__item-date::before,
.bs-blog-post__item-date::before {
  margin-right: 0.2em;
  content: "\ebcc";
  font-family: "Material Symbols Outlined";
  font-size: inherit;
  display: flex;
  align-items: center;
}
.bs-top-post__item-category,
.bs-blog-post__item-category {
  z-index: 3;
  display: flex;
  white-space: nowrap;
}
.bs-top-post__item-category::before,
.bs-blog-post__item-category::before {
  margin-right: 0.2em;
  content: "\e2c7";
  font-family: "Material Symbols Outlined";
  font-size: inherit;
  display: flex;
  align-items: center;
}

.top-page-links .bs-top-post {
  margin: 1em 0;
  gap: 2em 2%;
}
.top-page-links .bs-top-post__item-title {
  color: var(--text-color);
}
.top-page-links .bs-top-post__item-title::before {
  font-weight: normal;
  margin-right: 0.4em;
  content: "\e02f";
  color: var(--text-color);
  font-family: "Material Symbols Outlined";
  font-size: inherit;
  display: flex;
  align-items: center;
}
.top-page-links .bs-top-post__item-category {
  color: var(--text-color);
}
.top-page-links .bs-top-post__item-category:hover {
  color: #ffea00;
}
.top-page-links .bs-top-post__item-detail {
  font-size: 1em;
  line-height: 1.5;
  margin: 0;
  padding: 1em 0;
}
.top-page-links .bs-info-title {
  line-height: 1.3;
  position: relative;
  margin-top: 0 !important;
  padding: 0.5em 0 0.5em 1.5em;
}
.top-page-links .bs-info-title::before, .top-page-links .bs-info-title::after {
  position: absolute;
  display: inline-block;
  width: 13px;
  height: 13px;
  content: "";
  transform: translateY(-50%);
  border: 2px solid var(--cosmo-color);
}
.top-page-links .bs-info-title::before {
  top: calc(50% - 3px);
  left: 0;
}
.top-page-links .bs-info-title::after {
  top: calc(50% + 3px);
  left: 5px;
}

.top-page-cards .bs-top-post,
.top-page-cards .bs-blog-post {
  margin: 2em 0 1em;
}
.top-page-cards .bs-top-post__item,
.top-page-cards .bs-blog-post__item {
  background-color: #1a1a1a;
  border-radius: 0.3em;
}
.top-page-cards .bs-top-post__item a,
.top-page-cards .bs-blog-post__item a {
  color: #fff;
}
.top-page-cards .bs-top-post__item:hover,
.top-page-cards .bs-blog-post__item:hover {
  box-shadow: 0 0.1em 0.8em 0.1em var(--shadow-color);
}
.top-page-cards .bs-top-post__item-date,
.top-page-cards .bs-blog-post__item-date {
  font-size: 0.8em;
  padding: 0.4em 1em;
  color: #fff;
  border-top: 1px dotted rgba(168, 168, 168, 0.5);
  background-color: #1a1a1a;
  order: 1;
}
.top-page-cards .bs-top-post__item-category,
.top-page-cards .bs-blog-post__item-category {
  font-size: 0.7em;
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  padding: 0.4em 0.4em 0.3em 0.8em;
  background-color: rgba(141, 217, 255, 0.7);
}
.top-page-cards .bs-top-post__item-category:hover,
.top-page-cards .bs-blog-post__item-category:hover {
  opacity: 1;
  background-color: rgba(141, 217, 255, 0.9);
}
.top-page-cards .bs-top-post__item-title,
.top-page-cards .bs-blog-post__item-title {
  font-size: 1.1em;
  line-height: 1.5;
  margin: 0 0.8em;
  padding: 0.8em 0;
  color: #fff;
  border-bottom: 1px dotted rgba(168, 168, 168, 0.5);
}
.top-page-cards .bs-top-post__item-detail,
.top-page-cards .bs-blog-post__item-detail {
  font-size: 1em;
  line-height: 1.4;
  margin: 0 0.8em;
  padding: 1em 0;
  color: #fff;
}

.bs-top-post-to-list {
  display: flex;
  justify-content: flex-end;
}
.bs-top-post-to-list a {
  font-size: 0.8em;
  font-weight: bold;
  display: inline-flex;
  padding: 0.5em 1em 0.5em 2em;
  transition: all 300ms;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
  border-radius: 0.5em;
  background-color: #1a1a1a;
  align-items: center;
}
.bs-top-post-to-list a:hover {
  box-shadow: 0 0.1em 0.8em 0.1em var(--shadow-color);
}
.bs-top-post-to-list a::after {
  font-size: 1.4em !important;
  margin-left: 0.5em;
  content: "\e5c8";
  font-family: "Material Symbols Outlined";
  font-size: inherit;
  display: flex;
  align-items: center;
}

.top-page-links .bs-top-post-to-list {
  margin-top: -1em;
}

.bs-blog-no-data {
  font-size: 1.2em;
}

.bs-widget-search-box .bs-widget-form form {
  display: flex;
  color: var(--text-color);
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5em 0;
  align-items: stretch;
}
.bs-widget-search-box .bs-widget-form form span {
  flex-basis: 79%;
}
.bs-widget-search-box .bs-widget-form form input[type=text] {
  width: 100%;
  padding: 0.5em 1em;
  color: var(--text-color);
  border: 1px solid #a8a8a8;
  background-color: var(--bg-color);
}
.bs-widget-search-box .bs-widget-form form input[type=text]:focus {
  transition: 0.5s ease;
  color: var(--text-color);
  border: 1px solid rgba(6, 117, 228, 0.5);
  outline: none;
  background: var(--bg-color);
  box-shadow: 0 0 0.8em 0.05em var(--shadow-color);
}
.bs-widget-search-box .bs-widget-form form input[type=text]:focus::-moz-placeholder {
  -moz-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0;
}
.bs-widget-search-box .bs-widget-form form input[type=text]:focus::placeholder {
  transition: opacity 0.5s ease;
  opacity: 0;
}
.bs-widget-search-box .bs-widget-form form input[type=text]:focus::-webkit-input-placeholder {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0;
}
.bs-widget-search-box .bs-widget-form form input[type=submit] {
  font-size: small;
  padding: 0.5em 1em;
  letter-spacing: 0.2em;
  color: #fff;
  border: 1px solid #a8a8a8;
  background-color: #00b33c;
  flex-basis: 20%;
}
.bs-widget-search-box .bs-widget-form form label,
.bs-widget-search-box .bs-widget-form form select {
  font-size: small;
  padding: 0.3em;
}

.content .refresh {
  display: none;
}

.bs-widget,
.widget {
  margin-bottom: 2em;
}
.bs-widget-text p,
.widget-text p {
  font-size: 0.9em;
  line-height: 1.6;
  color: var(--text-color);
}
.bs-widget-text p:nth-child(n+1),
.widget-text p:nth-child(n+1) {
  margin-top: 1em;
}
.bs-widget ul,
.widget ul {
  margin-left: 0;
}
.bs-widget ul li,
.widget ul li {
  display: flex;
  margin-bottom: 0.5em;
  flex-wrap: wrap;
}
.bs-widget ul li a,
.widget ul li a {
  display: flex;
  white-space: normal;
  color: var(--cosmo-color);
  align-items: flex-start;
}
.bs-widget ul li a::before,
.widget ul li a::before {
  margin-right: 0.4em;
  content: "\e409";
  font-family: "Material Symbols Outlined";
  font-size: inherit;
  display: flex;
  align-items: center;
}
.bs-widget ul li.subpage a::before,
.widget ul li.subpage a::before {
  content: "\e5da";
}
.bs-widget [class^=bc-blog-category-],
.widget [class^=bc-blog-category-] {
  display: flex;
  flex-direction: column;
}
.bs-widget [class^=bc-blog-category-] li a::before,
.widget [class^=bc-blog-category-] li a::before {
  font-size: 95%;
  content: "\e2c7";
}
.bs-widget [class^=bc-blog-category-] li .count,
.widget [class^=bc-blog-category-] li .count {
  display: inline-block;
  margin-left: 0.5em;
  text-align: center;
  white-space: nowrap;
}
.bs-widget [class^=bc-blog-category-] li .count .num,
.widget [class^=bc-blog-category-] li .count .num {
  font-size: 0.8em;
  margin: 0.1em;
  padding: 0.16em;
}
.bs-widget [class^=bc-blog-category-] li ul,
.widget [class^=bc-blog-category-] li ul {
  margin-top: 0.2em;
  margin-left: 1.4em;
}
.bs-widget ul.bc-blog-tags,
.widget ul.bc-blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}
.bs-widget ul.bc-blog-tags li,
.widget ul.bc-blog-tags li {
  font-size: 0.8em;
  margin: 0;
  align-items: center;
}
.bs-widget ul.bc-blog-tags li::before,
.widget ul.bc-blog-tags li::before {
  display: none;
}
.bs-widget ul.bc-blog-tags li a,
.widget ul.bc-blog-tags li a {
  display: flex;
  padding: 0.4em 0.8em;
  transition-duration: 0.3s;
  color: var(--tags-color);
  border: 1px dotted var(--tags-color);
  border-radius: 0.5em;
  align-items: flex-start;
}
.bs-widget ul.bc-blog-tags li a:hover,
.widget ul.bc-blog-tags li a:hover {
  transition-duration: 0.3s;
  opacity: 1;
  color: #fff;
  background-color: var(--tags-color);
}
.bs-widget ul.bc-blog-tags li a::before,
.widget ul.bc-blog-tags li a::before {
  margin-right: 0.1em;
  content: "\e9ef";
  font-family: "Material Symbols Outlined";
  font-size: inherit;
  display: flex;
  align-items: center;
}
.bs-widget.bs-widget-blog-calendar table,
.widget.bs-widget-blog-calendar table {
  font-size: 0.8em;
  width: 100%;
  white-space: nowrap;
  color: var(--text-color);
}
.bs-widget.bs-widget-blog-calendar table a,
.widget.bs-widget-blog-calendar table a {
  display: inline-block !important;
}
.bs-widget.bs-widget-blog-calendar table th,
.widget.bs-widget-blog-calendar table th {
  padding: 0.6em 0;
  text-align: center;
  background-color: var(--bg-color);
}
.bs-widget.bs-widget-blog-calendar table th a,
.widget.bs-widget-blog-calendar table th a {
  display: block;
}
.bs-widget.bs-widget-blog-calendar table th a:hover,
.widget.bs-widget-blog-calendar table th a:hover {
  text-decoration: none;
}
.bs-widget.bs-widget-blog-calendar table td,
.widget.bs-widget-blog-calendar table td {
  padding: 0.6em 0;
  text-align: center;
  align-items: center;
}
.bs-widget.bs-widget-blog-calendar table td a,
.widget.bs-widget-blog-calendar table td a {
  display: block;
  color: var(--cosmo-color);
}
.bs-widget.bs-widget-blog-calendar table td a:hover,
.widget.bs-widget-blog-calendar table td a:hover {
  text-decoration: none;
}
.bs-widget.bs-widget-blog-calendar table .sunday,
.widget.bs-widget-blog-calendar table .sunday {
  color: #a00000;
}
.bs-widget.bs-widget-blog-calendar table .saturday,
.widget.bs-widget-blog-calendar table .saturday {
  color: #0675e4;
}
.bs-widget.bs-widget-blog-calendar table .today,
.widget.bs-widget-blog-calendar table .today {
  color: #000;
  background-color: #f3f3f3;
}
.bs-widget.bs-widget-blog-calendar table .today a,
.widget.bs-widget-blog-calendar table .today a {
  color: #00366b;
}

.bs-blog-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}
.bs-blog-tag::before {
  display: none;
}
.bs-blog-tag a {
  font-size: 0.8em;
  display: flex;
  padding: 0.4em 0.8em;
  transition-duration: 0.3s;
  color: var(--tags-color);
  border: 1px dotted var(--tags-color);
  border-radius: 0.5em;
  align-items: flex-start;
}
.bs-blog-tag a:hover {
  transition-duration: 0.3s;
  opacity: 1;
  color: #fff;
  background-color: var(--tags-color);
}
.bs-blog-tag a::before {
  margin-right: 0.1em;
  content: "\e9ef";
  font-family: "Material Symbols Outlined";
  font-size: inherit;
  display: flex;
  align-items: center;
}

.bs-blog-related-posts {
  margin-top: 2em;
}

.bs-blog-contents-navi,
.bs-post-navi {
  display: flex;
  margin-top: 1.5em;
  justify-content: space-between;
  align-items: center;
}

.bs-pagination,
.bs-post-navi {
  display: flex;
  margin-top: 1.5em;
  justify-content: center;
  gap: 0.4em;
  align-items: stretch;
  flex-wrap: nowrap;
}
.bs-pagination a,
.bs-pagination b,
.bs-post-navi a,
.bs-post-navi b {
  font-size: 0.9em;
  display: flex;
  padding: 0.4em 0.8em;
  transition-duration: 0.3s;
  color: #fff;
  background-color: rgba(26, 26, 26, 0.9);
  border-radius: 0.5em;
  align-items: center;
  justify-content: center;
}
.bs-pagination a.dots,
.bs-pagination b.dots,
.bs-post-navi a.dots,
.bs-post-navi b.dots {
  font-size: 0.7em;
}
.bs-pagination a:hover,
.bs-pagination b:hover,
.bs-post-navi a:hover,
.bs-post-navi b:hover {
  transition-duration: 0.3s;
  box-shadow: 0 0.1em 1em 0.1em var(--shadow-color);
}
.bs-pagination a:not(:hover),
.bs-pagination b:not(:hover),
.bs-post-navi a:not(:hover),
.bs-post-navi b:not(:hover) {
  text-decoration: none;
}
.bs-pagination .disabled,
.bs-post-navi .disabled {
  display: none;
  cursor: default;
  color: #000;
  background-color: #1a1a1a;
}
.bs-pagination .current,
.bs-post-navi .current {
  pointer-events: none;
  color: #fff;
  background-color: #1a1a1a;
}

.bs-blog-comment {
  margin-top: 5em;
  padding: 0;
}

/*
 .bs-blog-comment__head {
  margin-bottom: 0.2em;
  border-bottom: 1px solid var(--cosmo-white-color);
  line-height: 1.4;
  padding: 0.4em 0;
  letter-spacing: 0.05em;
*/

h4.bs-blog-comment__head {
  position: relative;
  padding: 0.6em;
  background: rgba(191,226,255,0.5);
  border-radius: 7px;
  border-bottom :0px solid rgba(191,226,255,0.5);
}
h4.bs-blog-comment__head::after {
  position: absolute;
  content: '';
  top: 100%;
  left: 30px;
  border: 15px solid transparent;
  border-top: 15px solid rgba(191,226,255,0.5);
  width: 0;
  height: 0;
}

.bs-blog-comment__list {
  margin-bottom: 0.5em;
  padding-bottom: 2em;
}
.bs-blog-comment__list-item {
  margin: 0 1em;
  padding: 0.2em 0;
  border-bottom: 1px dotted #ccc;
}
.bs-blog-comment__list-item:first-child {
  padding-top: 0.5em;
}
.bs-blog-comment__list-item-name {
  margin-bottom: 0.2em;
  color: var(--text-color) !important;
}
.bs-blog-comment__list-item-name a {
  color: var(--text-color) !important;
}
.bs-blog-comment__list-item-name a:visited {
  color: var(--text-color) !important;
}
.bs-blog-comment__auth-captcha {
  display: flex;
  flex-direction: column;
  width: 40%;
  margin: 0 auto 1em;
  text-align: center;
  justify-content: flex-start;
}
@media only screen and (max-width: 767px) {
  .bs-blog-comment__auth-captcha {
    width: 60%;
  }
}
.bs-blog-comment__auth-captcha input[type=text] {
  font-size: 1.6em;
  width: 100%;
  padding: 0.5em 1em;
  text-align: center;
  letter-spacing: 0.1em;
  color: var(--text-color);
  border: 1px solid rgba(168, 168, 168, 0.5);
  background-color: var(--bg-color);
}
.bs-blog-comment__auth-captcha input[type=text]:focus {
  transition: 0.5s ease;
  color: var(--text-color);
  border: 1px solid rgba(6, 117, 228, 0.5);
  outline: none;
  background: var(--bg-color);
  box-shadow: 0 0 0.8em 0.05em var(--shadow-color);
}
.bs-blog-comment__auth-captcha input[type=text]:focus::-moz-placeholder {
  -moz-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0;
}
.bs-blog-comment__auth-captcha input[type=text]:focus::placeholder {
  transition: opacity 0.5s ease;
  opacity: 0;
}
.bs-blog-comment__auth-captcha input[type=text]:focus::-webkit-input-placeholder {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0;
}
.bs-blog-comment__submit {
  display: flex;
  justify-content: center;
}
.bs-blog-comment__submit button {
  display: flex;
  padding: 0.5em 1.5em;
  cursor: pointer;
  color: #fff;
  border: none;
  background-color: #046cc1;
  justify-content: center;
  align-items: center;
  border-radius: 0.3em;
}
.bs-blog-comment__submit button:hover {
  transition: all 0.5s;
  opacity: 0.7;
  box-shadow: 0 0.1em 1em 0.1em var(--shadow-color);
}
.bs-blog-comment__form {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--bg-color);
}
@media only screen and (max-width: 992px) {
  .bs-blog-comment__form th,
  .bs-blog-comment__form td {
    display: block;
    width: 100%;
  }
}
.bs-blog-comment__form th,
.bs-blog-comment__form td {
  box-sizing: border-box;
  color: var(--text-color);
}
.bs-blog-comment__form input[type=text],
.bs-blog-comment__form textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 0.5em 1em;
  color: var(--text-color);
  border: 1px solid #a8a8a8;
  background-color: var(--bg-color);
}
.bs-blog-comment__form input[type=text]:focus,
.bs-blog-comment__form textarea:focus {
  transition: 0.5s ease;
  color: var(--text-color);
  border: 1px solid rgba(6, 117, 228, 0.5);
  outline: none;
  background: var(--bg-color);
  box-shadow: 0 0 0.8em 0.05em var(--shadow-color);
}
.bs-blog-comment__form input[type=text]:focus::-moz-placeholder, .bs-blog-comment__form textarea:focus::-moz-placeholder {
  -moz-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0;
}
.bs-blog-comment__form input[type=text]:focus::placeholder,
.bs-blog-comment__form textarea:focus::placeholder {
  transition: opacity 0.5s ease;
  opacity: 0;
}
.bs-blog-comment__form input[type=text]:focus::-webkit-input-placeholder,
.bs-blog-comment__form textarea:focus::-webkit-input-placeholder {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0;
}
.bs-blog-comment__form label,
.bs-blog-comment__form select {
  font-size: 1em;
  padding: 0.3em;
}
.bs-blog-comment__form small {
  font-size: 0.8em;
  display: block;
  margin-top: 0.2em;
}
.bs-blog-comment__list-item {
  margin: 1em 0;
}
.bs-blog-comment__list-item-name {
  line-height: 1.6;
  text-align: center;
}
.bs-blog-comment__list-item-name a {
  display: flex;
  color: var(--cosmo-color);
  align-items: center;
}
.bs-blog-comment__list-item-name a::after {
  margin-left: 0.2em;
  content: "\f8ce";
  font-family: "Material Symbols Outlined";
  font-size: inherit;
  display: flex;
  align-items: center;
}
.bs-blog-comment__list-item-message {
  position: relative;
  display: block;
  margin: 1em 0;
  padding: 1.5em 1.5em 3em;
  color: var(--text-color);
  border-radius: 0.6em;
  background-color: rgba(168, 168, 168, 0.1);
}
.bs-blog-comment__list-item-message .comment-date {
  font-size: 0.8em;
  position: absolute;
  right: 1.3em;
  bottom: 0.8em;
  color: var(--text2-color);
}
.bs-blog-comment__list-item-message::after {
  position: absolute;
  top: 0;
  content: "";
  border-width: 0 8px 16px 8px;
  border-style: solid;
  border-color: transparent transparent rgba(168, 168, 168, 0.1);
}
.bs-blog-comment [id^=Comment]:nth-of-type(odd) .bs-blog-comment__list-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.bs-blog-comment [id^=Comment]:nth-of-type(odd) .bs-blog-comment__list-item-name {
  text-align: left;
}
.bs-blog-comment [id^=Comment]:nth-of-type(odd) .bs-blog-comment__list-item-name a {
  justify-content: flex-start;
}
.bs-blog-comment [id^=Comment]:nth-of-type(odd) .bs-blog-comment__list-item-message::after {
  left: 2em;
  transform: translateY(-100%) skewX(20deg);
}
.bs-blog-comment [id^=Comment]:nth-of-type(even) .bs-blog-comment__list-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.bs-blog-comment [id^=Comment]:nth-of-type(even) .bs-blog-comment__list-item-name {
  text-align: right;
}
.bs-blog-comment [id^=Comment]:nth-of-type(even) .bs-blog-comment__list-item-name a {
  justify-content: flex-end;
}
.bs-blog-comment [id^=Comment]:nth-of-type(even) .bs-blog-comment__list-item-message::after {
  right: 2em;
  transform: translateY(-100%) skewX(-20deg);
}

@media only screen and (max-width: 767px) {
  #BlogCommentAddForm .bs-blog-comment {
    margin-top: 2em;
  }
  #BlogCommentAddForm .bs-blog-comment__list {
    margin: 0;
    padding: 0.5em;
  }
  #BlogCommentAddForm .bs-blog-comment__list-item {
    margin: 0;
    padding: 0.2em 0;
    border-bottom: none;
  }
}
#BlogCommentAddForm .required,
#BlogCommentAddForm .normal {
  font-size: 0.7em;
  margin-left: 0.2em;
  padding: 0.2em 0.4em;
  vertical-align: middle;
  white-space: nowrap;
  border-radius: 0.4em;
}
#BlogCommentAddForm .required {
  color: #fff;
  background-color: #a00000;
}
#BlogCommentAddForm .normal {
  color: var(--inverse-text-color);
  background-color: var(--inverse-bg-color);
}

.bs-mail-form .form-error {
  background-color: #fcf5eb;
}
.bs-mail-form .error-message {
  font-size: small;
  font-weight: bold;
  padding: 0.2em;
  color: #a00000;
}
.bs-mail-form .error-message:before {
  content: "！";
}
.bs-mail-form-auth-captcha {
  display: flex;
  flex-direction: column;
  width: 40%;
  margin: 0 auto 1em;
  text-align: center;
  justify-content: flex-start;
}
@media only screen and (max-width: 767px) {
  .bs-mail-form-auth-captcha {
    width: 60%;
  }
}
.bs-mail-form-auth-captcha img {
  width: 100%;
}
.bs-mail-form-auth-captcha input[type=text] {
  font-size: 1.6em;
  width: 100%;
  padding: 0.2em 1em;
  text-align: center;
  letter-spacing: 0.1em;
  color: var(--text-color);
  border: 1px solid #a8a8a8;
  background-color: var(--bg-color);
}
.bs-mail-form-auth-captcha input[type=text]:focus {
  transition: 0.5s ease;
  color: var(--text-color);
  border: 1px solid rgba(6, 117, 228, 0.5);
  outline: none;
  background: var(--bg-color);
  box-shadow: 0 0 0.8em 0.05em var(--shadow-color);
}
.bs-mail-form-auth-captcha input[type=text]:focus::-moz-placeholder {
  -moz-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0;
}
.bs-mail-form-auth-captcha input[type=text]:focus::placeholder {
  transition: opacity 0.5s ease;
  opacity: 0;
}
.bs-mail-form-auth-captcha input[type=text]:focus::-webkit-input-placeholder {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0;
}
.bs-mail-form input[type=submit] {
  font-size: small;
  padding: 0.5em 1em;
  letter-spacing: 0.2em;
  color: #fff;
  border: 1px solid #a8a8a8;
  background-color: rgba(0, 0, 0, 0.8);
  flex-basis: 20%;
}
.bs-mail-form-submit {
  display: flex;
  justify-content: center;
  gap: 1em;
}
.bs-mail-form-submit input {
  display: flex;
  padding: 0.5em 1.5em;
  cursor: pointer;
  color: #fff;
  border: none;
  background-color: #046cc1;
  justify-content: center;
  align-items: center;
  border-radius: 0.3em;
}
.bs-mail-form-submit input:hover {
  transition: all 0.5s;
  opacity: 0.7;
  box-shadow: 0 0 0.8em 0.05em var(--shadow-color);
}

.bs-mail-form-body {
  width: 100%;
  border-collapse: collapse;
}
@media only screen and (max-width: 992px) {
  .bs-mail-form-body th,
  .bs-mail-form-body td {
    display: block;
    width: 100%;
  }
}
.bs-mail-form-body th,
.bs-mail-form-body td {
  box-sizing: border-box;
}
.bs-mail-form-body th {
  width: 30%;
}
.bs-mail-form-body label,
.bs-mail-form-body select {
  font-size: 1em;
  padding: 0.3em;
}
.bs-mail-form-body small {
  font-size: 0.8em;
  display: block;
  margin-top: 0.2em;
}
.bs-mail-form-body input[type=password],
.bs-mail-form-body input[type=text],
.bs-mail-form-body input[type=email],
.bs-mail-form-body input[type=tel],
.bs-mail-form-body input[type=number],
.bs-mail-form-body select,
.bs-mail-form-body textarea {
  box-sizing: border-box;
  width: 100%;
  max-width: 500px;
  margin: 0.3em 0;
  padding: 0.5em 1em;
  color: var(--text-color);
  border: 1px solid #a8a8a8;
  background-color: var(--bg-color);
}
.bs-mail-form-body input[type=password]:focus,
.bs-mail-form-body input[type=text]:focus,
.bs-mail-form-body input[type=email]:focus,
.bs-mail-form-body input[type=tel]:focus,
.bs-mail-form-body input[type=number]:focus,
.bs-mail-form-body select:focus,
.bs-mail-form-body textarea:focus {
  transition: 0.5s ease;
  color: var(--text-color);
  border: 1px solid rgba(6, 117, 228, 0.5);
  outline: none;
  background: var(--bg-color);
  box-shadow: 0 0 0.8em 0.05em var(--shadow-color);
}
.bs-mail-form-body input[type=password]:focus::-moz-placeholder, .bs-mail-form-body input[type=text]:focus::-moz-placeholder, .bs-mail-form-body input[type=email]:focus::-moz-placeholder, .bs-mail-form-body input[type=tel]:focus::-moz-placeholder, .bs-mail-form-body input[type=number]:focus::-moz-placeholder, .bs-mail-form-body select:focus::-moz-placeholder, .bs-mail-form-body textarea:focus::-moz-placeholder {
  -moz-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0;
}
.bs-mail-form-body input[type=password]:focus::placeholder,
.bs-mail-form-body input[type=text]:focus::placeholder,
.bs-mail-form-body input[type=email]:focus::placeholder,
.bs-mail-form-body input[type=tel]:focus::placeholder,
.bs-mail-form-body input[type=number]:focus::placeholder,
.bs-mail-form-body select:focus::placeholder,
.bs-mail-form-body textarea:focus::placeholder {
  transition: opacity 0.5s ease;
  opacity: 0;
}
.bs-mail-form-body input[type=password]::-moz-placeholder, .bs-mail-form-body input[type=text]::-moz-placeholder, .bs-mail-form-body input[type=email]::-moz-placeholder, .bs-mail-form-body input[type=tel]::-moz-placeholder, .bs-mail-form-body input[type=number]::-moz-placeholder, .bs-mail-form-body select::-moz-placeholder, .bs-mail-form-body textarea::-moz-placeholder {
  font-size: 0.8em;
  letter-spacing: 0.05em;
}
.bs-mail-form-body input[type=password]::placeholder,
.bs-mail-form-body input[type=text]::placeholder,
.bs-mail-form-body input[type=email]::placeholder,
.bs-mail-form-body input[type=tel]::placeholder,
.bs-mail-form-body input[type=number]::placeholder,
.bs-mail-form-body select::placeholder,
.bs-mail-form-body textarea::placeholder {
  font-size: 0.8em;
  letter-spacing: 0.05em;
}
.bs-mail-form-body select {
  display: flex;
  width: auto;
}
.bs-mail-form-body #FieldMessageZip input {
  width: 100%;
  max-width: 180px;
}
.bs-mail-form-body .required,
.bs-mail-form-body .normal {
  font-size: 0.7em;
  margin-left: 0.2em;
  padding: 0.2em 0.4em;
  vertical-align: middle;
  white-space: nowrap;
  border-radius: 0.4em;
}
.bs-mail-form-body .required {
  color: #fff;
  background-color: #a00000;
}
.bs-mail-form-body .normal {
  color: #000;
  background-color: #fff;
}

.bs-mail-form-auth-captcha .auth-captcha-image {
  position: relative;
  vertical-align: middle;
}

#CaptchaLoader {
  width: 66px;
  height: 66px;
  margin: 2em auto;
}

.post-body {
  position: relative;
  margin-top: 2em;
  padding: 0.5em 2em;
  color: #000;
  background: #f4f9ff;
}
.post-body::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  border-width: 0 0 1.2em 1.2em;
  border-style: solid;
  border-color: #cce3ff var(--bg-color) var(--bg-color) #cce3ff;
}

.bs-mail-form-submit {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}
@media only screen and (max-width: 992px) {
  .bs-mail-form-submit input[type=submit],
  .bs-mail-form-submit input[type=reset] {
    width: 100%;
    margin: 10px 0;
    cursor: pointer;
  }
}

.error-message:has(.error-message):before {
  content: "";
}
.error-message:has(.error-message) .error-message {
  margin: 0;
  padding: 0 0 0 15px;
}
.error-message:has(.error-message) .error-message:before {
  top: auto;
  background: none;
}

.bs-search-form select {
  font-size: 1em;
  font-weight: bold;
  display: flex;
  width: auto;
  padding: 0.3em;
}
.bs-search-form small {
  font-size: 0.8em;
  display: block;
  margin-top: 0.2em;
}
.bs-search-form input[type=text],
.bs-search-form input[type=submit],
.bs-search-form select {
  box-sizing: border-box;
  margin: 0.3em 0;
  padding: 0.5em 1em;
  color: #000;
  border: 1px solid var(--border-color);
}
.bs-search-form input[type=text]:focus,
.bs-search-form input[type=submit]:focus,
.bs-search-form select:focus {
  transition: 0.5s ease;
  color: var(--text-color);
  border: 1px solid rgba(6, 117, 228, 0.5);
  outline: none;
  background: var(--bg-color);
  box-shadow: 0 0 0.8em 0.05em var(--shadow-color);
}
.bs-search-form input[type=text]:focus::-moz-placeholder, .bs-search-form input[type=submit]:focus::-moz-placeholder, .bs-search-form select:focus::-moz-placeholder {
  -moz-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0;
}
.bs-search-form input[type=text]:focus::placeholder,
.bs-search-form input[type=submit]:focus::placeholder,
.bs-search-form select:focus::placeholder {
  transition: opacity 0.5s ease;
  opacity: 0;
}
.bs-search-form input[type=text]:focus::-webkit-input-placeholder,
.bs-search-form input[type=submit]:focus::-webkit-input-placeholder,
.bs-search-form select:focus::-webkit-input-placeholder {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0;
}
@media only screen and (max-width: 992px) {
  .bs-search-form input[type=text],
  .bs-search-form input[type=submit],
  .bs-search-form select {
    width: 100%;
  }
}
.bs-search-form input[type=text]::-moz-placeholder, .bs-search-form input[type=submit]::-moz-placeholder, .bs-search-form select::-moz-placeholder {
  font-size: 0.9em;
  letter-spacing: 0.05em;
}
.bs-search-form input[type=text]::placeholder,
.bs-search-form input[type=submit]::placeholder,
.bs-search-form select::placeholder {
  font-size: 0.9em;
  letter-spacing: 0.05em;
}
.bs-search-form input[type=text] {
  width: 79%;
}
.bs-search-form input[type=submit] {
  width: 20%;
  cursor: pointer;
  color: var(--text-color);
  border: 1px solid #000;
  background-color: var(--bg-color);
}

.bs-list-num {
  margin: 0.5em 0;
}
.bs-list-num strong {
  font-weight: bold;
  margin-right: 10px;
}
.bs-list-num a:hover {
  text-decoration: none;
}
.bs-list-num .current {
  font-weight: bold;
}

.bs-search-result__item {
  margin-top: 2em;
}
.bs-search-result__item-head a {
  display: flex;
  padding: 0.2em 0;
}
.bs-search-result__item-head a::before {
  margin-right: 0.4em;
  content: "\e5c8";
  font-family: "Material Symbols Outlined";
  font-size: inherit;
  display: flex;
  align-items: center;
}
.bs-search-result__item-head a a:link,
.bs-search-result__item-head a a:visited {
  text-decoration: none;
}
.bs-search-result__item-link {
  line-height: 1 !important;
  margin: 0 !important;
  text-align: right;
}

ul.bs-contents-list {
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  margin: 2em 0 3em;
}
ul.bs-contents-list li {
  display: flex;
  margin-bottom: 0.5em;
  padding: 0.5em 0;
  list-style: none;
  border-bottom: 1px dotted var(--border-color);
  align-items: center;
}
ul.bs-contents-list a {
  font-size: 1.1em;
  display: inline-flex;
  letter-spacing: 0.1em;
}
ul.bs-contents-list a::before {
  margin-right: 0.3em;
  content: "\e5c8";
  font-family: "Material Symbols Outlined";
  font-size: inherit;
  display: flex;
  align-items: center;
}
ul.bs-contents-list a:hover {
  opacity: 0.7;
}
ul.bs-contents-list small {
  display: inline-flex;
  margin-left: 1em;
  align-items: center;
}
ul.bs-contents-list small a::before {
  content: "";
}

/* footer--002 */
.footer--002 {
  position: relative;
  background: #efefef;
}
.footer--002 .footer_inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 3em 1em;
}
.footer--002 .footerNavi {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .footer--002 .footerNavi {
    flex-direction: column;
    padding: 3vw 2vw 4vw;
  }
}
.footer--002 .footerNavi ul {
  flex-basis: 30%;
}
@media only screen and (max-width: 767px) {
  .footer--002 .footerNavi ul {
    margin-bottom: 1.5em;
  }
  .footer--002 .footerNavi ul.contact {
    order: 3;
  }
}
.footer--002 .footerNavi ul li {
  margin-bottom: 0.5em;
}
.footer--002 .footerNavi ul li h3 {
  font-size: 1.1em;
  font-weight: bold;
  display: block;
  margin-bottom: 0.8em;
}
.footer--002 .footerNavi ul li a {
  font-size: 0.8em;
  font-weight: bold;
  display: block;
  padding: 0.2em 0 0.4em;
}

.logo {
  animation-name: rotateIn;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
}

@keyframes rotateIn {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
a:hover .logo {
  animation-name: rotateHover;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
}

@keyframes rotateHover {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(720deg);
  }
}/*# sourceMappingURL=base.css.map */