@charset "UTF-8";
/* -------------------------------------------------------------------------- */
/*                                   Colors                                   */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                              Default Functions                             */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                               Default Mixins                               */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                                Custom Layout                               */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                                  Defaults                                  */
/* -------------------------------------------------------------------------- */
.cmn-py {
  padding-block: 80px;
}

.cmn-mb {
  margin-bottom: 6rem;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-100 {
  margin-right: 100px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-100 {
  margin-left: 100px;
}

.cmn-limit1 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.cmn-limit2 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.cmn-limit3 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.cmn-hl {
  background-color: #fffb83;
}

.cmn-bouten {
  position: relative;
}
.cmn-bouten::before {
  width: calc(25% + 1px);
  height: auto;
  border-radius: 50%;
  aspect-ratio: 1;
  content: "";
  inset: -5px 0 auto 0;
  position: absolute;
  margin-inline: auto;
  background-color: #d1171b;
}

.fixed {
  height: 50px;
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 150;
}

.break {
  flex-basis: 100%;
  height: 0;
}

/* ------------------------------ Hover Effects ----------------------------- */
.cmn-hover:hover {
  opacity: 0.7;
}

.cmn-glow:hover {
  filter: drop-shadow(0px 0px 8px #d1171b);
}
.cmn-glow--main:hover {
  filter: drop-shadow(0px 0px 8px #322740);
}
.cmn-glow--sub:hover {
  filter: drop-shadow(0px 0px 8px #fffb83);
}
.cmn-glow--accent:hover {
  filter: drop-shadow(0px 0px 8px #d1171b);
}
.cmn-glow--bg:hover {
  filter: drop-shadow(0px 0px 8px #f7f7f7);
}
.cmn-glow--text:hover {
  filter: drop-shadow(0px 0px 8px #171616);
}

.move-t1:hover {
  transform: translateY(-3px);
}

.move-t2:hover {
  transform: translateY(-6px);
}

.move-t3:hover {
  transform: translateY(-9px);
}

.move-r1:hover {
  transform: translateX(3px);
}

.move-r2:hover {
  transform: translateX(6px);
}

.move-r3:hover {
  transform: translateX(9px);
}

.move-b1:hover {
  transform: translateY(3px);
}

.move-b2:hover {
  transform: translateY(6px);
}

.move-b3:hover {
  transform: translateY(9px);
}

.move-l1:hover {
  transform: translateX(-3px);
}

.move-l2:hover {
  transform: translateX(-6px);
}

.move-l3:hover {
  transform: translateX(-9px);
}

/* ------------------------------ Defaults (SP) ----------------------------- */
@media screen and (width <= 768px) {
  .cmn-py {
    padding-block: 48px;
  }
  .cmn-mb {
    margin-bottom: 3rem;
  }
  .fixed {
    height: 46px;
  }
  .sp-px {
    padding-inline: 16px;
  }
}
/* -------------------------------------------------------------------------- */
/*                                    Table                                   */
/* -------------------------------------------------------------------------- */
.cmn-table {
  width: 100%;
  table-layout: fixed;
}
.cmn-table tr {
  border-bottom: 1px solid #171616;
}
.cmn-table th,
.cmn-table td {
  padding: clamp(14px, 2.5vw, 16px) 0;
}
.cmn-table th {
  width: 15%;
  position: relative;
  vertical-align: middle;
}
.cmn-table td a {
  width: fit-content;
}
.cmn-table td a:hover {
  opacity: 0.7;
}
.cmn-table--contact {
  width: 100%;
  table-layout: fixed;
}
.cmn-table--contact th {
  width: 35%;
}

@media screen and (width <= 768px) {
  .cmn-table th {
    width: 45%;
  }
}
/* -------------------------------------------------------------------------- */
/*                                 Information                                */
/* -------------------------------------------------------------------------- */
.cmn-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row nowrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.cmn-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row nowrap;
  gap: 1rem;
}

.cmn-address {
  width: fit-content;
}

.cmn-tel {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column nowrap;
}
.cmn-tel span {
  font-weight: 700;
}

/* -------------------------------------------------------------------------- */
/*                                Common Style                                */
/* -------------------------------------------------------------------------- */
.color-main {
  color: #322740;
}
.color-sub {
  color: #fffb83;
}
.color-accent {
  color: #d1171b;
}
.color-bg {
  color: #f7f7f7;
}
.color-text {
  color: #171616;
}

.shadow--main {
  text-shadow: 0 0 5px #322740, 0 0 10px #322740, 0 0 15px #322740,
    0 0 20px #322740, 0 0 25px #322740;
}
.shadow--sub {
  text-shadow: 0 0 5px #fffb83, 0 0 10px #fffb83, 0 0 15px #fffb83,
    0 0 20px #fffb83, 0 0 25px #fffb83;
}
.shadow--accent {
  text-shadow: 0 0 5px #d1171b, 0 0 10px #d1171b, 0 0 15px #d1171b,
    0 0 20px #d1171b, 0 0 25px #d1171b;
}
.shadow--bg {
  text-shadow: 0 0 5px #f7f7f7, 0 0 10px #f7f7f7, 0 0 15px #f7f7f7,
    0 0 20px #f7f7f7, 0 0 25px #f7f7f7;
}
.shadow--text {
  text-shadow: 0 0 5px #171616, 0 0 10px #171616, 0 0 15px #171616,
    0 0 20px #171616, 0 0 25px #171616;
}

.cmn-text,
.privacy__box p,
.privacy__box ul,
.cmn-textbox p {
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 1.5;
}
.cmn-text a,
.privacy__box p a,
.privacy__box ul a,
.cmn-textbox p a {
  display: inline-flex;
  text-decoration: underline;
}

.cmn-textbox {
  text-align: justify;
}
.cmn-textbox p:not(:last-child) {
  margin-bottom: clamp(20px, 2.5vw, 25px);
}
.cmn-textbox--left {
  text-align: left;
}
.cmn-textbox--center {
  text-align: center;
}
.cmn-textbox--right {
  text-align: right;
}
.cmn-textbox--justify {
  text-align: justify;
}

.cmn-button {
  width: fit-content;
  height: 56px;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
  background-color: #171616;
  padding-inline: 16px;
  background-color: #d1171b;
}
.cmn-button span {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  padding-right: 24px;
}
.cmn-button span::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  margin-block: auto;
  width: 8px;
  height: 12px;
  border-radius: 0;
  background: no-repeat center/contain
    url("/assets/images/common/cmn-button_deco.webp");
  transition: transform 0.3s;
}
.cmn-button:hover span::before {
  transform: translateX(3px);
}

.cmn-button:hover {
  background-color: rgb(232.4956896552, 50.5043103448, 54.4181034483);
}
.cmn-button--black {
  background-color: #171616;
}
.cmn-button--black:hover {
  background-color: rgb(49.0666666667, 46.9333333333, 46.9333333333);
}
.cmn-button--disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.6;
}

@media screen and (width <= 768px) {
  .cmn-button {
    width: min(100%, 358px);
    height: 56px;
    border-radius: 0;
  }
}
.cmn-header {
  margin-bottom: 32px;
  position: relative;
}
.cmn-header p {
  width: fit-content;
  position: absolute;
  inset: auto auto 0 0;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 7.5rem;
  font-weight: 700;
  line-height: 8rem;
  color: #f7f7f7;
  text-transform: uppercase;
  z-index: -20;
  transform: translateY(8px);
}
.cmn-header h3 {
  font-size: 32px;
  font-weight: 700;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-flow: row nowrap;
}
.cmn-header h3 span {
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 24px;
  padding-left: 16px;
  margin-left: 16px;
  border-left: 1px solid #171616;
  transform: translateY(2px);
}

@media screen and (width <= 768px) {
  .cmn-header {
    margin-bottom: 24px;
  }
  .cmn-header p {
    font-size: 5.5rem;
    line-height: 1;
    transform: translate(0, 12px);
  }
  .cmn-header h3 {
    position: relative;
    padding-top: 20px;
    font-size: 26px;
  }
  .cmn-header h3 span {
    position: absolute;
    inset: 0 auto auto 0;
    line-height: 16px;
    padding-left: 8px;
    margin-left: 0;
  }
}
.cmn-header2 {
  margin-bottom: 16px;
}
.cmn-header2 h4 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.cmn-list li {
  padding-block: 8px;
  border-bottom: 1px dashed #171616;
  position: relative;
  padding-left: 2rem;
}
.cmn-list li::before {
  content: "・";
  line-height: 2.5;
  position: absolute;
  inset: 0 auto auto 0;
}

/* -------------------------------------------------------------------------- */
/*                                 Breadcrumbs                                */
/* -------------------------------------------------------------------------- */
.breadcrumbs {
  padding-block: 8px;
  z-index: 100;
  background-color: #f7f7f7;
}
.breadcrumbs__wrapper-m {
  display: flex;
  justify-content: start;
  align-items: start;
  margin-inline: auto;
}
.breadcrumbs__item {
  font-size: 1.2rem;
  text-align: left;
}
.breadcrumbs__item:last-child {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  max-width: 30ch;
  text-align: inherit;
}
.breadcrumbs__item:not(:last-child) {
  position: relative;
  padding-right: 25px;
  white-space: nowrap;
}
.breadcrumbs__item:not(:last-child)::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 0;
  border-bottom: 1px solid #171616;
  border-right: 1px solid #171616;
  position: absolute;
  inset: 0 0 0 auto;
  margin: auto;
  transform: translate(-9px, 1px) rotate(-45deg);
}
.breadcrumbs__item a:hover {
  color: #d1171b;
}

@media screen and (width <= 768px) {
  .breadcrumbs {
    padding-block: 4px;
  }
  .breadcrumbs__item {
    font-size: 1rem;
  }
}
/* -------------------------------------------------------------------------- */
/*                                 Pagination                                 */
/* -------------------------------------------------------------------------- */
.pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row nowrap;
  gap: 0 1rem;
  margin-top: clamp(45px, 2.5vw, 60px);
}
.pagenation li {
  width: 40px;
  height: 40px;
  border-radius: 3px;
}
.pagenation li a,
.pagenation li span {
  width: inherit;
  height: inherit;
  border-radius: 0;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #171616;
  border: 1px solid #171616;
}
.pagenation li a:not(.current):hover,
.pagenation li span:not(.current):hover {
  color: #ffffff;
  background-color: #171616;
}
.pagenation .current a,
.pagenation .current span {
  color: #ffffff;
  background-color: #171616;
}

/* -------------------------------------------------------------------------- */
/*                                 Navigation                                 */
/* -------------------------------------------------------------------------- */
.navigation__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
  gap: 1rem;
}
.navigation__item-link:hover {
  color: #d1171b;
}
.navigation__item-na {
  color: #d9d9d9;
}
.navigation__item:nth-child(1),
.navigation__item:nth-child(3) {
  width: 3.7rem;
  padding-inline: 1rem;
}
.navigation__item:nth-child(1) {
  border-right: 1px solid #171616;
}
.navigation__item:nth-child(3) {
  border-left: 1px solid #171616;
}

/* -------------------------------------------------------------------------- */
/*                          Top Navigation (PageTop)                          */
/* -------------------------------------------------------------------------- */
.sideb {
  width: fit-content;
  position: fixed;
  inset: 40vh 0 auto auto;
  z-index: 100;
}
.sideb__link {
  display: flex;
  padding: 16px;
  background-color: #d1171b;
  border-radius: 4px 0 0 4px;
}
.sideb__link span {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
  writing-mode: vertical-rl;
  position: relative;
  padding-top: 40px;
}
.sideb__link span::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  margin: auto;
  width: 30px;
  height: 30px;
  border-radius: 0;
  background: no-repeat center/contain
    url("/assets/images/common/sideb_deco.webp");
}
.sideb__link:hover {
  background-color: rgb(232.4956896552, 50.5043103448, 54.4181034483);
}

/* -------------------------------------------------------------------------- */
/*                              Google Map (map)                              */
/* -------------------------------------------------------------------------- */
.map iframe {
  width: 100%;
  height: 275px;
  border-radius: 0;
}

/* -------------------------------------------------------------------------- */
/*                                 Error (404)                                */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                               Privacy Policy                               */
/* -------------------------------------------------------------------------- */
.privacy__box {
  background-color: #f7f7f7;
  padding: 24px;
}
.privacy__box:not(:last-child) {
  margin-bottom: 16px;
}
.privacy__box h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}
@media screen and (width <= 768px) {
  .privacy__box {
    padding: 16px;
  }
}
/* -------------------------------------------------------------------------- */
/*                               Sitemap (site)                               */
/* -------------------------------------------------------------------------- */
.site__wrapper {
  width: min(100%, 750px);
  margin-inline: auto;
}
.site__item:not(:last-child) {
  margin-bottom: 16px;
}
.site__item-link {
  width: inherit;
  height: inherit;
  border-radius: 0;
  position: relative;
  padding-bottom: 8px;
  border-bottom: 1px dashed #171616;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s;
}
.site__item-link::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  margin-block: auto;
  width: 16px;
  height: 16px;
  border-radius: 0;
  background: no-repeat center/contain
    url("/assets/images/common/sec06_deco.webp");
}
.site__item-link:hover {
  opacity: 0.7;
}

/* -------------------------------------------------------------------------- */
/*                                  Complete                                  */
/* -------------------------------------------------------------------------- */
.complete__link {
  margin-inline: auto;
  width: fit-content;
}
.complete__link span {
  text-decoration: underline;
}

/* -------------------------------------------------------------------------- */
/*                                    News                                    */
/* -------------------------------------------------------------------------- */
.news__wrapper-m {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: row nowrap;
  gap: 16px 40px;
}
.news__lbox {
  width: min(100%, 218px);
  flex-shrink: 0;
}
.news__list {
  width: 100%;
}
.news__item:first-child .news__item-link {
  padding-top: 0;
}
.news__item-link {
  padding: 16px 64px 16px 0;
  border-bottom: 1px dashed #171616;
  display: flex;
  flex-flow: row nowrap;
  justify-content: start;
  align-items: center;
  gap: clamp(15px, 2.5vw, 20px);
  position: relative;
}
.news__item-link::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  margin-block: auto;
  width: 16px;
  height: 16px;
  border-radius: 0;
  background: no-repeat center/contain
    url("/assets/images/common/sec06_deco.webp");
  transition: transform 0.3s;
}
.news__item-link:hover::before {
  transform: translateX(3px);
}

.news__item-link:hover {
  opacity: 0.7;
}
.news__item-img {
  flex-shrink: 0;
}
.news__item-img img {
  width: 100px;
  height: 100px;
  border-radius: 0;
}
.news__item-box {
  text-align: left;
}
.news__item-info {
  display: flex;
  align-items: center;
}
.news__item-date,
.news__item-title {
  flex-shrink: 0;
}
.news__item-date {
  position: relative;
}
.news__item-date:has(+ .news-tag) {
  padding-right: 8px;
  margin-right: 8px;
}
.news__item-date:has(+ .news-tag)::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  margin-block: auto;
  width: 1px;
  height: 14px;
  border-radius: 0;
  background-color: #171616;
}
.news__item-title {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 18px;
  font-weight: 700;
}
.news-tag {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: row wrap;
}
.news-tag__item {
  white-space: nowrap;
  font-size: 14px;
}
.news-tag__item:not(:last-child)::after {
  content: "、";
}

@media screen and (width <= 768px) {
  .news__wrapper-m {
    flex-flow: column nowrap;
  }
  .news__item-link {
    padding: 16px 32px 16px 0;
  }
  .news__item-img img {
    width: 70px;
    height: 70px;
    border-radius: 0;
  }
  .news__item-title {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
/* ------------------------------ News (index) ------------------------------ */
/* -------------------------- News (Tag Exapanded) -------------------------- */
.custom-expand {
  padding: clamp(15px, 2.5vw, 25px);
  border: 1px solid #fffb83;
  margin-bottom: 2.5rem;
}
.custom-expand__note {
  margin-bottom: clamp(10px, 2.5vw, 20px);
  text-align: left;
}
.custom-expand__list {
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
}
.custom-expand__item-link {
  position: relative;
  padding: 0.8rem 1rem 0.8rem 3rem;
  white-space: nowrap;
  border: 1px solid #fffb83;
}
.custom-expand__item-link::before {
  width: 12px;
  height: 12px;
  border-radius: 0;
  content: "";
  position: absolute;
  margin-block: auto;
  inset: 0 auto 0 10px;
  border-radius: 50%;
  transition: all 0.3s;
  background-color: rgb(74.7572815534, 58.3106796117, 95.6893203883);
}
.custom-expand__item-link:hover::before,
.custom-expand__item-link--current::before {
  background-color: #d1171b;
}

/* ---------------------------- News (Tag Option) --------------------------- */
.custom-select {
  padding: 0px;
  margin: 0 0 32px auto;
  width: min(100%, 375px);
}
.custom-select__list {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 2.5vw, 16px);
  width: min(100%, 375px);
  padding: 0.8rem 1rem;
  background-color: #fff;
  border: 1px solid #171616;
}

/* ------------------------------ News (detail) ----------------------------- */
.newsd__header {
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px dashed #171616;
}
.newsd__header h3 {
  font-size: 26px;
  font-weight: 700;
}
.newsd__list {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-flow: row wrap;
  margin-bottom: 24px;
}
.newsd__item {
  font-size: 14px;
}
.newsd__item:nth-child(1) {
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
}
.newsd__item:nth-child(1):has(+ .newsd__item)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 15px;
  border-radius: 0;
  inset: 0 0 0 auto;
  background-color: #171616;
  margin-block: auto;
  transform: translateY(1px);
}
.newsd__item:not(:last-child)::after {
  content: "、";
}

/* -------------------------------------------------------------------------- */
/*                                 Animations                                 */
/* -------------------------------------------------------------------------- */
@keyframes animateShadow {
  0%,
  85% {
    box-shadow: 0px 0px 7px 3px transparent;
  }
  100% {
    box-shadow: 0px 0px 7px 3px #322740;
  }
}
