@charset "UTF-8";
/*!
 * copyright grindworks inc.
 * theme name:Academia
 * author:udagawa/grindworks inc.
 * version:1.0.0
 * releaseDate:2024-12.14
 */
*,
*::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;
}

@font-face {
  font-family: 'Font98';
  src: url('Font98.ttf') format('truetype');
  size-adjust:200%;
}

@font-face {
  font-family: 'Font98_small';
  src: url('Font98.ttf') format('truetype');
  size-adjust:100%;
}

body {
/*  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;*/
  font-family: "Hiragino Kaku Gothic Pro",Meiryo,"ＭＳ Ｐゴシック",Verdana,Arial,sans-serif;
/*  font-family: Font98,sans-serif;*/
  line-height: 1.8;
  min-height: 100vh;
  margin: 0;
  letter-spacing: 0.01em;
  word-break: break-word;
  margin-left: 3em;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
ul,
dl,
dd {
  margin-block-start: 0;
  margin-block-end: 0;
}

.blockquote {
  background:black;
  color:white;
  font-size:16px;
  padding: 0.7em;
  font-family:Font98;
  word-break: break-all;
}

a {
}

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;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.inner {
  width: 100%;
}
.innerBox {
  width: 96%;
 /* max-width: 1180px;*/
/*  max-width 2500px;*/
  margin: 0 auto;
}

.radius {
  border-radius: 0.3em;
}

a {
  transition: all 0.3s;
  text-decoration: none;
  word-break: break-all;
}
a[href^="tel:"] {
  cursor: default;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  a[href^="tel:"] {
    cursor: pointer;
    pointer-events: auto;
  }
  body {
   margin-left: 0em;
  }
}
a.disabled {
  pointer-events: none;
}
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 #ccc;
}
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: bold;
  padding: 0.6em;
  text-align: center;
  border: solid 1px rgba(20, 20, 20, 0.2);
  background: rgba(239, 239, 239, 0.8);
}
table td {
  padding: 0.6em;
  border: solid 1px rgba(20, 20, 20, 0.2);
}

hr {
  margin: 2em 0;
  border-top: 1px solid #ccc;
  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) {
  .body {
    margin-left: 0em;
  }
  .pconly {
    display: none !important;
  }
  .sponly {
    display: block !important;
  }
  .br-sp {
    display: inline-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;
  background-color: #efefef;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.1);
  justify-content: center;
  align-items: center;
  border-radius: 0.3em;
}

#scrollToTopBtn {
  position: fixed;
  z-index: 99;
  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: #b45b6a;
  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;*/
/*  max-width: 2500px;*/
  margin: 0 auto;
  padding: 3em 1em 5em;
  background-color: #fff;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  section.contents {
    flex-direction: column;
    padding: 4vw 2vw 5vw;
  }
}

header {
  position: fixed;
}

main {
/*  width: 65%;*/
  width: 73%;
}

aside {
/*  width: 32%;*/
  width: 25%;
}

article {
  width: 100%;
}

#Home section.contents {
  flex-direction: column;
}
#Home main,
#Home aside {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  main,
  aside {
    width: 100%;
  }
  aside {
    margin-top: 10vw;
  }
}
body:not(#Home) .header--001.static {
  border-bottom: 1px solid rgba(204, 204, 204, 0.3);
  background-color: white;
}
body:not(#Home) .header--001.static .page-title a {
  color: #141414;
}
body:not(#Home) .header--001.static .navigation .ul-level-1 li a {
  transition: color 0.8s ease;
  color: #141414;
}
body:not(#Home) .header--001.static .navigation .li-level-1.current a {
  transition: color 0.8s ease;
  color: #141414;
}
body:not(#Home) .header--001.scrolled {
  transition: background-color 0.8s ease, box-shadow 0.8s ease;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0.1em 0.1em 0.6em 0.03em rgba(9, 9, 9, 0.1);
  -webkit-backdrop-filter: blur(6px) contrast(0.8);
          backdrop-filter: blur(6px) contrast(0.8);
}

.header--001 {
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  transition: background-color 0.8s ease, opacity 0.8s ease;
  border-bottom: 1px solid transparent;
  background-color: transparent;
}
.header--001.scrolled {
  border-bottom: 1px solid rgba(9, 9, 9, 0.1);
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0.1em 0.1em 0.6em 0.03em rgba(9, 9, 9, 0.05);
  -webkit-backdrop-filter: blur(6px) contrast(0.8);
          backdrop-filter: blur(6px) contrast(0.8);
}
.header--001.scrolled .page-title a {
  transition: color 0.8s ease;
  color: #141414;
}
.header--001.scrolled .navigation .ul-level-1 li a {
  transition: color 0.8s ease;
  color: #141414;
}
.header--001.scrolled .navigation .li-level-1.current a {
  transition: color 0.8s ease;
  color: #141414;
}
.header--001 .inner {
  position: relative;
  display: flex;
  padding: 0.4em 0.8em;
  justify-content: space-between;
  align-items: center;
  gap: 1em 0;
}
@media only screen and (max-width: 767px) {
  .header--001 .inner {
    padding: 0.4em;
  }
}
.header--001 .page-title {
  font-size: 1.6em;
  display: inline-flex;
  letter-spacing: 0.02em;
  color: #fff;
  flex: 0.3;
}
@media only screen and (max-width: 1280px) {
  .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.88;
  }
}
.header--001 .page-title img {
  display: inline-block;
  max-width: 38px;
  height: auto;
  margin-top: 0;
  margin-right: 0.3em;
}
.header--001 .page-title a {
  display: inline-flex;
  color: #fff;
  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 {
  font-size: 0.8em;
  flex: 0.7;
}
@media only screen and (max-width: 1280px) {
  .navigation {
    flex: 0.6;
  }
}
@media only screen and (max-width: 992px) {
  .navigation {
    flex: 0.5;
  }
}
@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.2em 2.2em;
}
.navigation .ul-level-1 li {
  list-style: none;
}
.navigation .ul-level-1 li a {
  color: #fff;
}
.navigation .li-level-1 {
  position: relative;
}
.navigation .li-level-1.current a {
  color: #fff;
}
.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: #b45b6a;
}
.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 rgba(204, 204, 204, 0.4);
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0.3em 0.3em 0.5em 0.05em rgba(9, 9, 9, 0.2);
}
.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: 200;
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100vw;
    height: 100vh;
    cursor: pointer;
    transition-duration: 0.4s;
    opacity: 0;
    background-color: #090909;
  }
  .navigation {
    font-size: 0.9em;
    position: fixed;
    z-index: 400;
    top: 0;
    right: -80%;
    overflow: hidden;
    overflow-y: auto;
    width: 80%;
    max-width: 420px;
    height: 100vh;
    padding: 4em 1.6em;
    transition-duration: 0.4s;
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    background-color: #fff;
  }
  .navigation .bs-widget {
    margin-bottom: 2em;
  }
  .navigation .bs-widget h2 {
    font-size: 1.2em;
    letter-spacing: 0.2em;
    color: #141414;
    border-bottom: 1px solid #ccc;
  }
  .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: #141414;
  }
  .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 rgba(204, 204, 204, 0.4);
  }
  .navigation .ul-level-1 .li-level-1 a {
    display: block;
    padding: 0.8em 0.2em;
    color: #141414;
  }
  .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: #141414;
  }
  .navigation .ul-level-1 .li-level-2 {
    width: 100%;
    border-bottom: 1px dotted rgba(204, 204, 204, 0.5);
    background-color: #fff;
    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 rgba(255, 255, 255, 0.5);
  }
  .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: 500;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: background-color 0.4s ease;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
  }
  .navToggle:hover {
    transition: background-color 0.4s ease;
    background-color: white;
  }
  .navToggle .buns {
    position: absolute;
    top: 30px;
    left: 50%;
    width: 20px;
    height: 2px;
    transition: transform 0.4s ease, top 0.4s ease, width 0.4s ease;
    transform: translateX(-50%);
    background-color: #090909;
  }
  .navToggle .bunsTop {
    top: 14px;
  }
  .navToggle .bunsCenter {
    top: 20px;
  }
  .navToggle .bunsBottom {
    top: 26px;
  }
  .nav-open .navigation {
    right: 0;
  }
  .nav-open .fadeLayer {
    visibility: visible;
    opacity: 0.8;
  }
  .nav-open .bunsTop {
    width: 25px;
    transform: rotate(45deg) translateY(6px);
  }
  .nav-open .bunsCenter {
    transform: scale(0.5);
    opacity: 0;
  }
  .nav-open .bunsBottom {
    width: 25px;
    transform: rotate(-45deg) translateY(-6px);
  }
  .navToggle {
    position: fixed;
    z-index: 500;
    top: 10px;
    right: 15px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
  }
  .navToggle .buns {
    position: absolute;
    top: 20px;
    right: 0;
    width: 20px;
    height: 2px;
    transition-duration: 0.4s;
    background-color: #090909;
  }
  .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 {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2em 1em;
  text-align: center;
  color: #b45b6a;
  background-color: #fff;
  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;
  color: #b45b6a;
}
.footer--001 .copyright {
  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;
}
.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: #b45b6a;
  background-color: #fff;
  box-shadow: 0 0.2em 1em 0.2em rgba(9, 9, 9, 0.1);
  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;
  color: #b45b6a;
}

.aside--001 {
  line-height: 1.4;
  position: relative;
  display: flex;
  flex-direction: column;
  color: #090909;
  align-items: center;
}
.aside--001 .aside_inner {
  width: 100%;
  position: sticky;
  top: 4rem;
}
.aside--001 h2 {
  font-size: 1em;
  font-weight: bold;
  position: relative;
  margin-bottom: 1em;
  padding: 0.4em 0.05em;
  color: #b25867;
  border-bottom: 2px solid #efefef;
}
.aside--001 h2::before {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40%;
  height: 2px;
  content: "";
  background-color: #b45b6a;
}

li.menu-content.current{
  background-color: #ffeef0;
}

.hero--001 .inner {
  position: relative;
  overflow: hidden;
  height: auto;
  margin-bottom: -4em;
}
.hero--001 .inner img {
  width: 100%;
  height: auto;
  -webkit-clip-path: ellipse(200% 120% at 40% -20%);
          clip-path: ellipse(200% 120% at 40% -20%);
}
.hero--001 .inner .copy {
  width: 100%;
  height: auto;
  padding: 1em;
  text-align: center;
  letter-spacing: 0.1em;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero--001 .inner .copy h2 {
  line-height: 1.4;
}
.hero--001 .inner p {
  margin-top: 1em;
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  margin-top: 0.8em;
  margin-bottom: 0.8em;
}
.content p,
.content pre,
.content table,
.content figure,
.content blockquote,
.content ol,
.content ul,
.content dl,
.content dd {
  margin-top: 1em;
  margin-bottom: 1em;
}
.content button {
  margin: 0.5em;
}
.content .page-content {
  margin-bottom: 1.5em;
  padding-bottom: 1.5em;
  border-bottom: 1px dotted rgba(9, 9, 9, 0.2);
}
.content .page-heading,
.content .bs-blog-title,
.content .bs-blog-post-title,
.content .bs-blog-category-title,
.content .bs-mail-title,
.content .contents-head {
  font-size: 1.4em;
  margin-top: 0 !important;
  border-bottom: none;
  position: relative;
  letter-spacing: 0.04em;
  color: #b45b6a;
  background-color: #fff;
  line-height: 1.3;
  padding: 0.6em 0.05em;
}
.content .page-heading:after,
.content .bs-blog-title:after,
.content .bs-blog-post-title:after,
.content .bs-blog-category-title:after,
.content .bs-mail-title:after,
.content .contents-head:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: "";
  background-image: linear-gradient(to right, #d78e9c 0%, #fad0c4 100%);
}
.content ul,
.content ol {
  margin-left: 2.0em;
}
.content ul li,
.content ol li {
  margin-top: 0em;
  margin-bottom: 0em;
}
.content ul li > ul,
.content ol li > ul {
/*  margin-top: 0.5em;
  margin-bottom: 0.5em;
  margin-left: 1.3em;*/
  margin-top: 0em;
  margin-bottom: 0em;
  margin-left: 2.6em;
}
.content ul li > ol,
.content ol li > ol {
/*  margin-top: 0.5em;
  margin-bottom: 0.5em;
  margin-left: 1.4em;*/

  margin-left: 2.6em;
}
.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 {
  color: #fff;
  background-color: #b45b6a;
  line-height: 1.7;
  padding: 0.6em 1em;
  font-size: 1.6em;
}
.content h2:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: "";
  background-image: linear-gradient(to right, #d78e9c 0%, #fad0c4 100%);
}
.content h2 {
  position: relative;
  letter-spacing: 0.04em;
  color: #b45b6a;
  background-color: #fff;
  line-height: 1.2;
  padding: 0.6em 0.05em;
  font-size: 1.5em;
}
.content h3 {
  color: #b45b6a;
  border-bottom: 1px solid #b45b6a;
  line-height: 1.3;
  padding: 0.2em 0;
}
.content h4 {
  border-bottom: 1px solid rgba(9, 9, 9, 0.8);
  line-height: 1.3;
  padding: 0.2em 0;
}
.content h5 {
  border-bottom: 1px dotted rgba(9, 9, 9, 0.4);
  line-height: 1.3;
  padding: 0.2em 0;
}
.content h6 {
  border-bottom: 1px dashed rgba(9, 9, 9, 0.4);
  line-height: 1.3;
  padding: 0.2em 0;
}
.content [class*=box-] {
  margin-top: 1.5em;
  padding: 1.5em;
}
.content .box-border {
  border: 1px solid #ccc;
}
.content .box-border2 {
  border: 4px double #ccc;
}
.content .box-bg {
  background: rgba(239, 239, 239, 0.6);
}
.content .box-paper {
  position: relative;
  background: rgba(239, 239, 239, 0.6);
}
.content .box-paper::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  border-width: 0 0 1.2em 1.2em;
  border-style: solid;
  border-color: #ccc #fff #fff #ccc;
}
.content .box-bold {
  font-weight: bold;
  border: 3px solid #090909;
}
.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 #090909;
  border-left: 1px solid #090909;
}
.content .box-brackets:after {
  right: 0;
  bottom: 0;
  border-right: 1px solid #090909;
  border-bottom: 1px solid #090909;
}
.content .box-question,
.content .box-exclamation {
  position: relative;
  padding: 1em 1em 1em 4em;
  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: #06a0d3;
}
.content .box-exclamation::before {
  content: "!";
  background: #cf3a29;
}
.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: #fff;
}
.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: #fff;
}
.content .annotation {
  font-size: 0.8em;
  display: block;
  color: rgba(9, 9, 9, 0.8);
}
.content .marker-yellow {
  background: linear-gradient(transparent 70%, #ffff93 70%);
}
.content .marker-yellow-all {
  background: linear-gradient(transparent 0%, #ffff93 0%);
}
.content .marker-blue {
  background: linear-gradient(transparent 70%, #c7e3ff 70%);
}
.content .marker-blue-all {
  background: linear-gradient(transparent 0%, #c7e3ff 0%);
}
.content .marker-pink {
  background: linear-gradient(transparent 70%, #ffd3e8 70%);
}
.content .marker-pink-all {
  background: linear-gradient(transparent 0%, #ffd3e8 0%);
}

.related-page {
  margin-top: 3em;
}
.related-page .related-lists {
  display: flex;
  width: 100%;
  margin: 1em 0;
  color: #b45b6a;
  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: #090909;
}
.related-page .related-lists .related-link .related-timestamp {
  font-size: 0.8em;
  display: flex;
  margin-top: 0.2em;
  color: rgba(9, 9, 9, 0.6);
  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;
  background-color: rgba(239, 239, 239, 0.4);
}
.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: #090909;
}

@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(180, 91, 106, 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: #b45b6a;
}

.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-blog-contents-navi,
.bs-post-navi {
  display: flex;
  margin-top: 1.5em;
  justify-content: space-between;
  align-items: center;
}

.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;
  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;
}
.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;
}

.bs-top-post,
.bs-blog-post {
  display: flex;
  width: 100%;
  margin-left: 0;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1em 1%;
}
.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: 1em;
  font-weight: bold;
  line-height: 1.4;
  display: flex;
  margin-bottom: auto;
  color: #090909;
  align-items: flex-start;
}
.bs-top-post__item-detail,
.bs-blog-post__item-detail {
  font-size: 0.8em;
  margin-top: 0.2em;
  color: #090909;
}
.bs-top-post__item-info,
.bs-blog-post__item-info {
  font-size: 0.9em;
  display: flex;
  gap: 2%;
  align-items: center;
}
.bs-top-post__item-date,
.bs-blog-post__item-date {
  display: flex;
  margin-top: auto;
  padding: 0.3em 0;
  white-space: nowrap;
}
.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;
}

.home .bs-top-post__item,
.home .bs-blog-post__item {
  width: 24%;
}
@media only screen and (max-width: 767px) {
  .home .bs-top-post__item,
  .home .bs-blog-post__item {
    width: 100%;
  }
}

.top-page-news {
  margin: 1em 0;
}
.top-page-news .bs-top-post {
  margin: 2em 0 1em;
  text-align: left;
}
.top-page-news .bs-top-post li {
  padding: 0 0 0.8em;
  border-bottom: 1px solid #f4caca;
}
.top-page-news .bs-top-post__item {
  width: 100%;
  padding: 0 0 0.8em;
  border-bottom: 1px solid #090909;
}
.top-page-news .bs-top-post__item a {
  display: inline-block;
}
.top-page-news .bs-top-post__item-info {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .top-page-news .bs-top-post__item-info {
    flex-direction: column;
    align-items: flex-start;
  }
}
.top-page-news .bs-top-post__item__date-category {
  display: flex;
  flex-basis: 25%;
  align-items: center;
}
.top-page-news .bs-top-post__item-category {
  font-size: 0.7em;
  z-index: 3;
  display: inline-flex;
  padding: 0.3em 0.8em;
  white-space: nowrap;
  color: #fff;
  background-color: #b45b6a;
}
.top-page-news .bs-top-post__item-category::before {
  content: none;
}
.top-page-news .bs-top-post__item-title {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.4;
  margin: 0;
  color: rgba(9, 9, 9, 0.8);
}
.top-page-news .bs-top-post__item-detail {
  font-size: 0.8em;
  margin-top: 0.6em;
  color: #090909;
}
.top-page-news .bs-top-post__item-date {
  font-size: 1em;
  margin: 0 1em 0 0;
  white-space: nowrap;
}
.top-page-news .bs-top-post__item-date::before {
  margin-right: 0.2em;
  content: "\ebcc";
  font-family: "Material Symbols Outlined";
  font-size: inherit;
  display: flex;
  align-items: center;
}
.top-page-news .bs-info-title {
  line-height: 1.3;
  position: relative;
  margin-top: 0 !important;
  padding: 0.5em 0 0.5em 1.5em;
}
.top-page-news .bs-info-title::before, .top-page-news .bs-info-title::after {
  position: absolute;
  display: inline-block;
  width: 13px;
  height: 13px;
  content: "";
  transform: translateY(-50%);
  border: 2px solid #b45b6a;
}
.top-page-news .bs-info-title::before {
  top: calc(50% - 3px);
  left: 0;
}
.top-page-news .bs-info-title::after {
  top: calc(50% + 3px);
  left: 5px;
}

.top-page-links .bs-top-post {
  margin: 1em 0;
}
.top-page-links .bs-top-post__item a {
  color: #090909;
}
.top-page-links .bs-top-post__item-category:hover {
  color: rgba(180, 91, 106, 0.9) !important;
}
.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 #b45b6a;
}
.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: 1em 0;
}
.top-page-cards .bs-top-post__item,
.top-page-cards .bs-blog-post__item {
  background: linear-gradient(178deg, #fff 0%, #fff 20%, #141414 calc(20% + 1px), #141414 100%);
  background-color: #141414;
  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.2em 1em 0.2em rgba(9, 9, 9, 0.5);
}
.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 solid rgba(204, 204, 204, 0.8);
  background-color: #090909;
  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.3em 0.4em 0.2em 0.7em;
  background-color: rgba(255, 215, 0, 0.5);
}
.top-page-cards .bs-top-post__item-category:hover,
.top-page-cards .bs-blog-post__item-category:hover {
  font-weight: bold;
  opacity: 1;
  background-color: rgba(255, 215, 0, 0.7);
}
.top-page-cards .bs-top-post__item-title,
.top-page-cards .bs-blog-post__item-title {
  font-size: 1em;
  line-height: 1.4;
  margin: 0 0.8em;
  padding: 0.8em 0;
  color: #fff;
}
.top-page-cards .bs-top-post__item-detail,
.top-page-cards .bs-blog-post__item-detail {
  font-size: 0.8em;
  line-height: 1.4;
  margin: 0 0.8em;
  padding: 1em 0;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px dotted rgba(204, 204, 204, 0.2);
}

.bs-top-post-to-list {
  display: flex;
  margin: 1em 0 3em;
  justify-content: flex-end;
}
@media only screen and (max-width: 767px) {
  .bs-top-post-to-list {
    margin: 2em 0 3em;
    justify-content: center;
  }
}
.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 !important;
  border-radius: 0.2em;
  background-color: rgba(9, 9, 9, 0.9);
  align-items: center;
}
.bs-top-post-to-list a:hover {
  opacity: 1;
  background-color: rgba(9, 9, 9, 0.7);
}
.bs-top-post-to-list a::after {
  font-size: 1.4em !important;
  margin-left: 0.5em;
  content: "\e896";
  font-family: "Material Symbols Outlined";
  font-size: inherit;
  display: flex;
  align-items: center;
}

.bs-blog-no-data {
  font-size: 1.2em;
}

.bs-widget-search-box .bs-widget-form form {
  display: flex;
  background-color: #fff;
  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: #090909;
  border: 1px solid #ccc;
}
.bs-widget-search-box .bs-widget-form form input[type=text]:focus {
  transition: 0.5s ease;
  border: 1px solid rgba(180, 91, 106, 0.5);
  outline: none;
  background: rgba(244, 202, 202, 0.1);
  box-shadow: 0 0 3em -1.5em rgba(0, 123, 255, 0.25);
}
.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=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:-ms-placeholder {
  -ms-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 #090909;
  background-color: #090909;
  flex-basis: 20%;
}
.bs-widget-search-box .bs-widget-form form label,
.bs-widget-search-box .bs-widget-form form select {
  font-size: small;
  font-weight: bold;
  padding: 0.3em;
}

.bs-widget,
.widget {
  margin-bottom: 2em;
}
.bs-widget-text p,
.widget-text p {
  font-size: 0.9em;
  line-height: 1.6;
}
.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;
  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: #b45b6a;
  border: 1px solid #efefef;
  border-radius: 0.3em;
  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: #b45b6a;
}
.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;
}
.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;
  border-bottom: 1px solid #ccc;
}
.bs-widget.bs-widget-blog-calendar table th a,
.widget.bs-widget-blog-calendar table th a {
  display: block;
  color: #090909;
}
.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: #b45b6a;
}
.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: #ab350e;
}
.bs-widget.bs-widget-blog-calendar table .saturday,
.widget.bs-widget-blog-calendar table .saturday {
  color: #4a61a9;
}
.bs-widget.bs-widget-blog-calendar table .today,
.widget.bs-widget-blog-calendar table .today {
  background-color: #efefef;
}

.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: #b45b6a;
  border: 1px solid #efefef;
  border-radius: 0.3em;
  align-items: flex-start;
}
.bs-blog-tag a:hover {
  transition-duration: 0.3s;
  opacity: 1;
  color: #fff;
  background-color: #b45b6a;
}
.bs-blog-tag a::before {
  margin-right: 0.1em;
  content: "\e9ef";
  font-family: "Material Symbols Outlined";
  font-size: inherit;
  display: flex;
  align-items: center;
}

.content .refresh {
  display: none;
}

.bs-blog-related-posts {
  margin-top: 2em;
}

.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: #090909;
  background-color: #efefef;
  border-radius: 0.3em;
  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;
  opacity: 1;
  color: #fff;
  background-color: #b45b6a;
  box-shadow: 0 0 0.6em 0 rgba(9, 9, 9, 0.3);
}
.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: #090909;
  background-color: rgba(20, 20, 20, 0.3);
}
.bs-pagination .current,
.bs-post-navi .current {
  color: #fff;
  background-color: #b45b6a;
}

.bs-blog-comment {
  margin-top: 5em;
  padding: 0;
}
.bs-blog-comment__head {
  margin-bottom: 0.2em;
  border-bottom: 1px solid rgba(9, 9, 9, 0.8);
  line-height: 1.3;
  padding: 0.2em 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 #ccc dotted;
}
.bs-blog-comment__list-item:first-child {
  padding-top: 0.5em;
}
.bs-blog-comment__list-item-name {
  font-weight: bold;
  margin-bottom: 0.2em;
}
.bs-blog-comment__list-item-name a {
  color: #090909 !important;
}
.bs-blog-comment__list-item-name a:visited {
  color: rgba(9, 9, 9, 0.7) !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.2em 1em;
  text-align: center;
  letter-spacing: 0.1em;
  color: #090909;
  border: 1px solid #ccc;
}
.bs-blog-comment__auth-captcha input[type=text]:focus {
  transition: 0.5s ease;
  border: 1px solid rgba(180, 91, 106, 0.5);
  outline: none;
  background: rgba(244, 202, 202, 0.1);
  box-shadow: 0 0 3em -1.5em rgba(0, 123, 255, 0.25);
}
.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__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:-ms-placeholder {
  -ms-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: #b45b6a;
  justify-content: center;
  align-items: center;
  border-radius: 0.3em;
}
.bs-blog-comment__submit button:hover {
  transition: all 0.5s;
  opacity: 0.7;
}
.bs-blog-comment__form {
  width: 100%;
  border-collapse: collapse;
}
@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;
}
.bs-blog-comment__form input[type=text],
.bs-blog-comment__form textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 0.5em 1em;
  color: #090909;
  border: 1px solid #ccc;
}
.bs-blog-comment__form input[type=text]:focus,
.bs-blog-comment__form textarea:focus {
  transition: 0.5s ease;
  border: 1px solid rgba(180, 91, 106, 0.5);
  outline: none;
  background: rgba(244, 202, 202, 0.1);
  box-shadow: 0 0 3em -1.5em rgba(0, 123, 255, 0.25);
}
.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 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:-ms-placeholder,
.bs-blog-comment__form textarea:focus:-ms-placeholder {
  -ms-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;
  font-weight: bold;
  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: #b45b6a;
  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;
  border-radius: 0.6em;
  background-color: rgba(239, 239, 239, 0.4);
  box-shadow: 3px 3px 0 0 rgba(9, 9, 9, 0.1);
}
.bs-blog-comment__list-item-message .comment-date {
  font-size: 0.8em;
  position: absolute;
  right: 1.3em;
  bottom: 0.8em;
  color: rgba(9, 9, 9, 0.5);
}
.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(239, 239, 239, 0.4);
}
.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: #d00;
}
#BlogCommentAddForm .normal {
  color: #fff;
  background-color: rgba(9, 9, 9, 0.7);
}

.bs-mail-form .form-error {
  background-color: #fcf5eb;
}
.bs-mail-form .error-message {
  font-size: small;
  font-weight: bold;
  padding: 0.2em;
  color: #d00;
}
.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: #090909;
  border: 1px solid #ccc;
}
.bs-mail-form-auth-captcha input[type=text]:focus {
  transition: 0.5s ease;
  border: 1px solid rgba(180, 91, 106, 0.5);
  outline: none;
  background: rgba(244, 202, 202, 0.1);
  box-shadow: 0 0 3em -1.5em rgba(0, 123, 255, 0.25);
}
.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-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:-ms-placeholder {
  -ms-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0;
}
.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: #b45b6a;
  justify-content: center;
  align-items: center;
  border-radius: 0.3em;
}
.bs-mail-form-submit input:hover {
  transition: all 0.5s;
  opacity: 0.7;
}

.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;
  font-weight: bold;
  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: #090909;
  border: 1px solid #ccc;
}
.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;
  border: 1px solid rgba(180, 91, 106, 0.5);
  outline: none;
  background: rgba(244, 202, 202, 0.1);
  box-shadow: 0 0 3em -1.5em rgba(0, 123, 255, 0.25);
}
.bs-mail-form-body input[type=password]:focus::-webkit-input-placeholder,
.bs-mail-form-body input[type=text]:focus::-webkit-input-placeholder,
.bs-mail-form-body input[type=email]:focus::-webkit-input-placeholder,
.bs-mail-form-body input[type=tel]:focus::-webkit-input-placeholder,
.bs-mail-form-body input[type=number]:focus::-webkit-input-placeholder,
.bs-mail-form-body select:focus::-webkit-input-placeholder,
.bs-mail-form-body textarea:focus::-webkit-input-placeholder {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0;
}
.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:-ms-placeholder,
.bs-mail-form-body input[type=text]:focus:-ms-placeholder,
.bs-mail-form-body input[type=email]:focus:-ms-placeholder,
.bs-mail-form-body input[type=tel]:focus:-ms-placeholder,
.bs-mail-form-body input[type=number]:focus:-ms-placeholder,
.bs-mail-form-body select:focus:-ms-placeholder,
.bs-mail-form-body textarea:focus:-ms-placeholder {
  -ms-transition: opacity 0.5s ease;
  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: #d00;
}
.bs-mail-form-body .normal {
  color: #fff;
  background-color: rgba(9, 9, 9, 0.7);
}

.bs-mail-form-auth-captcha .auth-captcha-image {
  position: relative;
  vertical-align: middle;
}

#CaptchaLoader {
  width: 66px;
  height: 66px;
  margin: 2em auto;
}

.post-body {
  line-height: 1.8;
  position: relative;
  position: relative;
  margin-top: 2em;
  margin-bottom: 2em;
  padding: 1em 2em;
  border: 4px double #f4caca;
  background: rgba(244, 202, 202, 0.1);
}

.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: #090909;
  border: 1px solid #ccc;
}
.bs-search-form input[type=text]:focus,
.bs-search-form input[type=submit]:focus,
.bs-search-form select:focus {
  transition: 0.5s ease;
  border: 1px solid rgba(180, 91, 106, 0.5);
  outline: none;
  background: rgba(244, 202, 202, 0.1);
  box-shadow: 0 0 3em -1.5em rgba(0, 123, 255, 0.25);
}
.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;
}
.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:-ms-placeholder,
.bs-search-form input[type=submit]:focus:-ms-placeholder,
.bs-search-form select:focus:-ms-placeholder {
  -ms-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: #fff;
  border: 1px solid #090909;
  background-color: #090909;
}

.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 #ccc;
  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: "";
}

#Home .bs-widget-area {
  display: flex;
  flex-direction: row;
  margin-top: 3em;
  flex-wrap: wrap;
  gap: 3.5%;
}
@media only screen and (max-width: 992px) {
  #Home .bs-widget-area {
    flex-direction: column;
    margin-top: 0;
  }
}
#Home .bs-widget-area .bs-widget {
  width: 31%;
}
@media only screen and (max-width: 992px) {
  #Home .bs-widget-area .bs-widget {
    width: 100%;
  }
}

/* footer--002 */
.footer--002 {
  position: relative;
  background: #f8f8f8;
}
.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;
  border-bottom: 1px solid #ccc;
}
/*# sourceMappingURL=base.css.map */
